main {
    background-color: #0f1f1a;
    position: relative;

    overflow: hidden;
}
    
.hero {
    padding: 2rem 1rem 2rem 1rem;
    display: flex;
    gap: 1rem;
}

.mainImg {
    width: 100%;
    height: 500px;

    border-radius: 1rem;
    box-shadow: 0 0 3px #fff;
    overflow: hidden;

    position: relative;
    z-index: 1;

    & img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1/1;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #1111114f;
        backdrop-filter: blur(.15rem);
        z-index: -1;
    }
}
    
.sponsors-wrap {
    color: white;
        color: blue;
    font-family: oswaldo;

    padding: 4rem 1rem 2rem 1rem;

    & h3 {
        font-size: 3rem;
        font-family: oswaldo;
    }

    .sponsors {
        height: 200px;
        overflow: hidden;
        border-radius: 1rem;
    
    
        color: #fff;
        font-family: oswaldo;
    }
}
    
.gallery-wrap {
    width: 96%;
    margin: 0 auto;

    margin-bottom: 2rem;

    & h3 {
        color: white;
        font-size: 3rem;
        font-family: oswaldo;
    }

    .sponsors {
        border-radius: 1rem;
    }
}

@keyframes getready {
    0% {
        scale: 100%;
    }
    50% {
        scale: 125%;
    }
    100% {
        scale: 100%;
    }
}


@media(min-width: 1024px) {
    header {
        display: none;
    }

    main {
        background-color: #111;
    
        position: relative;
        z-index: 1;
    
        .main-wrap {
            display: flex;
            flex-direction: column;
            position: relative;
        }
    
        &::before {
            content: '';
    
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(../img/bg.webp);
            opacity: .1;
    
            z-index: -1;
        }
    }
    
    .main {
        grid-column: 2/3;
        height: 100%;
        width: 100%;
    
        padding: 1rem;
    }
    
    .hero {
        padding: 0 0 2rem 0;
        display: flex;
        gap: 1rem;
    }
    
    .mainImg {
        width: 100%;
        height: 500px;
    
        border-radius: 1rem;
        box-shadow: 0 0 3px #fff;
        overflow: hidden;

        position: relative;
        z-index: 1;
    
        & img {
            width: 100%;
            height: 100%;
            aspect-ratio: 1/1;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #1111114f;
            backdrop-filter: blur(.15rem);
            z-index: -1;
        }
    }
    
    .mainTxt {
        width: 50%;
        font-family: oswald;
        color: #fff;

        display: flex;
        flex-direction: column;
        justify-content: center;
    
        & h1 {
            font-size: 3rem;
            text-align: center;
        }
    
        & h3 {
            font-size: 4rem;
            text-align: center;
            
            animation: getready 1000ms ease-in-out infinite;
        }
    }
    
    .sponsors-wrap {
        color: white;
        font-family: oswaldo;
    
        padding: 2rem 0 2rem 0;

        & h3 {
            font-size: 2rem;
        }
    
        .sponsors {
            height: 200px;
            overflow: hidden;
            /* box-shadow: 0 0 5px rgb(182, 252, 102); */
            border-radius: 1rem;
        
        
            color: #fff;
            font-family: oswaldo;
        }
    }
    
    .gallery-wrap {
        width: 100%;
        color: white;
    
        padding: 0;
        margin: 0;
        margin-bottom: 2rem;

        & h3 {
            font-size: 2rem;
            font-family: oswaldo;
        }
    }
}

@media(min-width: 1440px) {
    
    

    .hero .mainImg {
        height: 750px;
    }
}