.main{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*image-background*/
.background-image {
    background: 
        url('../images/background-2.webp') 90%/cover no-repeat,
        url('../images/background-1.webp') center bottom 10%/cover no-repeat,
        var(--blue);         
    width: 100vw;
}
/*footer,header*/
.footer,.header{
    background: var(--blue);
}
.mobile{
    display: none;
}
.desktop{
    display: flex;
}
.content{
    width: 100%;
}
.sponsors__block{
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(4,auto);
    gap:50px
}
.sponsors-item img{
    width: max-content;
}
@media(max-width:1200px){
    .about__wrapper .content{
    flex-direction: column;
}
.about__wrapper .content .left{
    flex-direction: row;
}
.about__left-content{
    justify-content: space-between;
    flex-direction: row;
}
.right {
    align-items: center;
    gap:20px
}
.sponsors__block{
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-template-columns: repeat(3,auto);
    gap:50px
}
}
@media(max-width:1024px){
    .footer-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer_nav,.header__nav {
        display: grid;
        grid-template-columns: repeat(2,auto);
        gap:1.25rem
    }
}
@media(max-width:767px){
    .header__nav .link{
        font-size: 1.25rem;
    }
    .about__left-content{
        flex-direction: column;
    }
    .about__wrapper .content{
        align-items: center;
    }
    .about__wrapper{
        align-items: center;
    }
    .sponsors__block{
    display: grid;
    grid-template-rows: repeat(6, auto);
    grid-template-columns: repeat(2,auto);
    gap:50px
}
}
@media(max-width:480px){
    .footer_nav {
        display: flex;
        flex-direction: column;
        gap:0.625rem
    }
    .info__wrapper{
        flex-direction: column;
    }
    .info__text, .info__text .link{
        font-size: 10px !important;
    }
    .info__wrapper {
        align-items: center;
    }
    .images-content{
        flex-direction: column;
        align-items: center;
    }
    .mobile{
        display: flex;
    }
    .certificate{
        width: 200px;
    }
.desktop{
    display: none;
}
    .sponsors__block{
    display: grid;
    grid-template-rows: repeat(12, auto);
    grid-template-columns: repeat(1,auto);
    gap:50px
}
.sponsors-item{
    align-items: center;
}
}

/*telegram-block*/
.telegram-wrapper{
    border: 2px solid var(--light-blue);
}
/*404*/
.title-404{
    font-size: 9.375rem;
}
.subtitle-404{
    margin:10px 0 50px
}
.hero__wrapper{
    height: 400px;
}
@media(max-width:1200px){
    .hero__wrapper{
        height: 373px;
    }
}
@media(max-width:1024px){
    .hero__wrapper{
        height: 350px;
    }
}
@media(max-width:767px){
    .hero__wrapper{
        height: 245px;
    }
}
@media(max-width:480px){
    .hero__wrapper{
        height: 200px;
    }
    .hero__text {
        margin-top: 4.5rem;
    }
    .hero__text h1{
        font-size: 3rem !important;
    }
    .hero__text h2{
        font-size: 1.6rem !important;
    }
    .hero__text p{
        margin-top: 2.5rem !important;
    }
    .text-absolute {
top: -20%;
left: 11%;
color: #0E3B53;
}
}
.header__logo{
    width: 16rem;
}
.hero__text h1{
    font-size: 3.75rem;
}
.text-white{
    color:var(--white)
}