/*
====================================================
    BANNER
=====================================================
*/

#home {
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.banner .banner-content {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /*margin-top: 500px;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    /*align-items: center;*/
}

.banner h1{
    color: #FFF;
    text-align: center;
    font-family: "PP Supply Mono", serif;
    font-size: clamp(18px, 4vw, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 2rem;

}

.banner h1 span {
    color: var(--clr-primary-cyan);
}

.banner .lower-intro {
    font-family: "Supply Light", PP Supply Mono, serif;
    font-size: clamp(10px, 2vw, 12px);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 8px;
    line-height: clamp(18px, 2vw, 28px);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.main-content {
    position: relative;
}

.ellipse {
    position: fixed;
    width: 600px;
    height: 600px;
    flex-shrink: 0;
    z-index: -100;

    border-radius: 759px;
    background: var(--clr-secondary-blue);
    filter: blur(250px);
}


/*
====================================================
    FLOATING IMAGES
=====================================================
*/

.floating-image img {
    position: absolute;
    display: flex;
    justify-content: center;
    animation: fadeInFromTop 1s linear forwards, floating ease 4s infinite;
}

.floating-image .floating-image1 {
    top: 50px;
    left: -30%;
}

.floating-image .floating-image2 {
    top: 100px;
    right: -20%;
    animation: fadeInFromTop 1s linear forwards, floating ease 6s infinite;
}

.floating-image .floating-image3 {
    top: -180px;
    right: 20px;
    animation: fadeInFromTop 1s linear forwards, floating ease 5s infinite;
}


.floating-image .floating-image4 {
    top: -10em;
    left: 020px;
    animation: fadeInFromTop 1s linear forwards, floating ease 6s infinite;
}

.floating-image .floating-image5 {
    animation: fadeInFromTop 1s linear forwards, floating ease 7s infinite;
}

@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes floating {
    0% {
        transform: translate(0%, 0%) rotate(360deg);
    }
    25% {
        transform: translate(5%, 15%) rotate(360deg);
    }
    50% {
        transform: translate(10%, 5%) rotate(360deg);
    }
    75% {
        transform: translate(0%, 15%) rotate(360deg);
    }
    100% {
        transform: translate(0%, 0%) rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .floating-image {
        display: none;
    }
}