* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: #031540;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #00abf0;
}

.home {
    height: 100vh;
    background: linear-gradient(-90deg, #031540 65%, #fff 35%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
}

.home-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left:125px;
    width: 500px;
    height: 500px;
    background: #031540;
    border-radius: 50%;
    border: 25px solid #fff;
    outline: 25px solid #031540;
}

.home-image img {
    position: relative;
    bottom: 20px;
    max-width: 500px;
}

.home-content {
    max-width: 600px;
    color: #fff;
    text-align: right;
}

.home-content h1 {
    font-size: 55px;
    line-height: 1.2;
}

.home-content h3 {
    font-size: 40px;
    color: transparent;
    -webkit-text-stroke: .5px #fff;
    background-image: linear-gradient(#00abf0, #00abf0);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: -410px 0;
    animation: animateText 6s linear infinite;

}

@keyframes animateText {

    0%,
    95%,
    100% {
        background-position: -600px 0;
    }

    65%,
    85% {
        background-position: 0 0;
    }
}

.home-content p {
    font-size: 16px;
    margin-top: 20px;
}

.home-sci {
    margin: 25px 0 40px;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 20px;
    color: #00abf0;
    text-decoration: none;
    margin-left: 12px;
    transition: .5s;
}

.home-sci a:hover {
    background: #00abf0;
    color: #fff;
    border-color: #00abf0;
    box-shadow: 0 0 10px #00abf0;
}

.btn {
    padding: 12px 35px;
    background: #00abf0;
    border-radius: 40px;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 0 10px #00abf0;
    transition: .5s;
}

.btn:hover {
    box-shadow: none;
}

@media (max-width: 1024px) {
    .home {
        padding: 0 5%;
        background: linear-gradient(-90deg, #031540 60%, #fff 40%);
    }

    .home-image {
        width: 80vw;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 20px auto;
        background: #031540;
        border-radius: 50%;
        border: 6vw solid #fff;
        outline: 6vw solid #031540;
    }

    .home-image img {
        width: 100%;
        height: auto;
        position: relative;
        bottom: 5%;
    }

    .home-content h1 {
        font-size: 45px;
    }

    .home-content h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 5%;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar {
        margin-top: 10px;
    }

    .navbar a {
        font-size: 16px;
        margin-left: 20px;
    }

    .home {
        flex-direction: column-reverse;
        text-align: center;
        height: auto;
        padding: 80px 5% 40px;
        background: linear-gradient(to bottom, #031540 60%, #fff 40%);
    }

    .home-content {
        max-width: 100%;
        color: #fff;
        text-align: center;
    }

    .home-content h1 {
        font-size: 35px;
    }

    .home-content h3 {
        font-size: 28px;
    }

    .home-image {
        margin: 20px 0;
        width: 300px;
        height: 300px;
        margin-left: 0;
    }

    .btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .home-content h1 {
        font-size: 28px;
    }

    .home-content h3 {
        font-size: 22px;
    }

    .home-content p {
        font-size: 14px;
    }

    .home-image {
        max-width: 220px;
        border: 5vw solid #fff;
        outline: 5vw solid #031540;
    }

    .home-sci a {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-left: 8px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}