@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
::-webkit-scrollbar {
    width: 7px;
    background: #151515;
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #222 #151515;
}

:root{
    --red: #FF0000;
}
html{
    scroll-behavior: smooth;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
}
a{
    text-decoration: none;
    color: #ffffff;
}
button{
    border: none;
    background: none;
    cursor: pointer;
}
body{
    background-color: #000000;
}
.app{
    position: relative;
}
.container{
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.dn{
    display: none!important;
}
/* header */
.header{
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 95px;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}
.header_logo{
    max-width: 250px;
    width: 100%;
    /* flex-shrink: 0; */
}
.header_logo img{
    width: 100%;
    object-fit: cover;
}
.header_menu{
    display: flex;
    justify-content: center;
    gap: 35px;
    background: #32555434;
    backdrop-filter: blur(10px);
    padding: 23px 60px;
    border-radius: 100px;
}
.header_menu a{
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
    color: #ffffff;
}
.header_menu a:hover{
    color: var(--red);
}
.header_menu_button{
    display: none;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}
.header_menu_button svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    fill: #ffffff;
}
/* hero */
.hero{
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    /* min-height: 100vh; */
    height: 100vh;
    max-height: 1100px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.hero_video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero_cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, .5) 60%, #000000 100%)
}
.hero h1{
    position: relative;
    text-align: center;
    z-index: 1;
    color: #ffffff;
    font-size: 80px;
    line-height: 1;
    font-weight: 900;
}
.hero_play{
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    z-index: 10;
    
}
.hero_play svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    fill: #ffffff;
}
/* slider */
.slider{
    /* padding-top: 100px; */
}
.slider_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.slider_wrapper h2{
    font-size: 80px;
    text-align: center;
    color: #ffffff;
    font-weight: 900;
    display: none;
}
.slider_wrapper p{
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #ffffff;
    font-weight: 400;
}
/* popup's */
.popup{
    padding: 20px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}
.popup.active{
    display: flex;
}
.popup_video_inner{
    padding: 10px;
    background-color: #00000071;
    backdrop-filter: blur(10px);
    position: relative;
    max-width: 800px;
    width: 100%;
    height: 400px;
}
.popup_video_close{
    position: absolute;
    top: -30px;
    right: 0px;
    width: 32px;
    height: 32px;
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
}
.popup_video_close svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    fill: #ffffff;
}
/* --- */
.popup_details_inner{
    background-color: #1f2f2e3f;
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 30px;
    max-width: 700px;
    width: 100%;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    position: relative;
    min-height: 490px;
}
.popup_details_close{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
}
.popup_details_close svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    fill: #ffffff;
}
.popup_details_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.popup_details_content{
    display: flex;
    flex-direction: column;
}
.popup_details_content h3{
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    padding-right: 50px;
    margin-top: 15px;
    margin-bottom: 30px;
}
.popup_details_content h4{
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}
.popup_details_content p{
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.7;
    margin-bottom: 10px;
}
.popup_details_line{
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    opacity: 0.1;
    margin-bottom: 10px;
}
.popup_details_buttons{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
}
.popup_details_buttons a{
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    padding: 10px 40px;
    border-radius: 100px;
    border: 1px solid #ffffff;
    transition: background-color 0.3s ease;
}
.popup_details_buttons a:hover{
    background-color: var(--red);
    color: #ffffff;
    border: 1px solid var(--red);
}
/* partners */
.partners{
    padding-top: 50px;
    padding-bottom: 150px;
}
/* awards */
.awards{
    margin-bottom: 150px;
}
.awards_title{
    text-align: center;
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 50px;
    word-wrap: balance;
}
.awards_box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}
.awards_box_item{
    background-color: #101010;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    transition: background-color 0.3s ease;
    flex-direction: column;
}
.awards_box_item:hover{
    background-color: #000000;
    /* box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2); */
}
.awards_box_text{
    padding: 30px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.awards_box_text span{
    font-size: 16px;
    font-weight: 200;
    color: #ffffff;
    text-align: center;
}
.awards_box_text h3{
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}
.awards_box_text p{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    opacity: 0.7;
}
.awards_box_text p a{
    color: var(--red);
    /* text-decoration: underline; */
    transition: color 0.3s ease;
}
.awards_box_text p a:hover{
    color: #ffffff;
}
.awards_festival_title{
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.awards_festival{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.awards_festival_item{
    background-color: #101010;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    position: relative;
}
.awards_festival_item::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(to right, #FF0000, #4D00FF);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.awards_festival_item:hover{
    background-color: #000000;
}
.awards_festival_item:hover::before{
    opacity: 1;
}
.awards_festival_item span{
    font-size: 30px;
    font-weight: 200;
    color: #ffffff;
}
.awards_festival_item h3{
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}
.awards_festival_item p{
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}
/* gallery */
.gallery{
    margin-bottom: 150px;
}
.gallery_title{
    text-align: center;
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
}
.gallery_box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.gallery_box_col_1{
    display: grid;
    grid-template-rows: 1.5fr 1fr;
    gap: 30px;
}
.gallery_box_col_2{
    display: grid;
    grid-template-rows: 1fr 1.5fr;
    gap: 30px;
}
.gallery_box_item{
    border-radius: 30px;
    overflow: hidden;
}
.gallery_box_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery_box_item:hover img{
    transform: scale(1.05);
}
/* founder */
.founder{
    /* margin-bottom: 150px; */
}
.founder_wrapper{
    display: grid;
    grid-template-columns: 570px 1fr;
    align-items: center;
    gap: 60px;
}
.founder_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
}
.founder_content{
    display: flex;
    flex-direction: column;
}
.founder_content_name{
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}
.founder_content_title{
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}
.founder_content_text{
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    color: #ffffff;
}
.founder_content_text span{
    font-weight: 700;
}
.founder_box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}
.founder_box_item{
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #ffffff;
    padding: 10px 50px;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.founder_box_item:hover{
    transform: translateY(-5px);
}
.founder_box_item img,
.founder_box_item svg{
    width: 40px;
    height: 40px;
    object-fit: cover;
    /* fill: #ffffff; */
}
.founder_box_item_text{
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    color: #ffffff;
}
.founder_box_item_text span{
    font-weight: 700;
}
/* contact */
.contact{
  
    padding-bottom: 150px;
    padding-top: 150px;
    margin-top: 50px;
}
.founder_group{
    background: url(img/contact_bg.png) no-repeat bottom center;
}
.contact_wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.contact_logo{
    max-width: 331px;
    width: 100%;
    object-fit: cover;
}
.contact_imdb_link{
    max-width: 330px;
    width: 100%;
    border: 1px solid #ffffff;
    padding: 10px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: background-color 0.3s ease;
}
.contact_imdb_link span{
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
}
.contact_imdb_link:hover{
    border: 1px solid var(--red);
}
.contact_address_link,
.contact_mail_link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.contact_mail_link img,
.contact_address_link svg{
    display: block;
    width: 32px;
    fill: #ffffff;
    object-fit: cover;
}
.contact_address_link span,
.contact_mail_link span{
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
    transition: color 0.3s ease;
}
.contact_address_link:hover span,
.contact_mail_link:hover span{
    color: var(--red);
}
.contact_title{
    text-align: center;
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* footer */
.footer{
    background: linear-gradient(180deg, #212121 0%, #101010 100%);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_menu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.footer_menu a{
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    transition: color 0.3s ease;
}
.footer_menu a:hover{
    color: var(--red);
}


/* media */
@media (max-width: 1400px) {
    .founder_wrapper{
        gap: 25px;
    }

}
@media (max-width: 1240px) {
    .founder_box{
        gap: 20px;
    }
}
@media (max-width: 1210px) {
    .gallery{
        margin-bottom: 100px;
    }
    .contact_title,
    .gallery_title,
    .awards_festival_title,
    .awards_title{
        font-size: 50px;
    }
    .awards_festival,
    .awards_box{
        gap: 20px;
    }
}
@media (max-width: 1080px) {
    .contact{
        padding-top: 80px;
        padding-bottom: 80px;
        margin-top: 20px;
    }
    .contact_wrapper{
        flex-direction: column;
    }
    .founder_img img{
        object-fit: contain;
        height: auto;
    } 
    .founder_img{
        display: flex;
        align-items: flex-start;
    }
    .founder_box_item img{
        width: 40px;
        height: 40px;
        object-fit: cover;
    }
}
@media (max-width: 1030px) {
    .header{
        gap: 20px;
        justify-content: space-between;
    }

    .gallery_title{
        font-size: 38px;
    }
    .partners{
        padding-bottom: 100px;
    }
    .awards_box{
        margin-bottom: 70px;
    }
    .contact_title,
    .awards_festival_title, .awards_title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    .slider_wrapper h2,
    .hero h1{
        font-size: 50px;
        line-height: 60px;
    }
    .header_menu{
        padding: 23px 80px;
    }
    .hero_video{
        object-position: 40% center;
    }
}
@media (max-width: 1000px) {
    .founder_wrapper{
        grid-template-columns: 1fr 1fr;
    }
    .awards_box_text h3 {
        font-size: 18px;
        line-height: 25px;
    }
    .awards_box_text{
        padding: 20px 20px 30px 20px;
    }
    .awards_festival_item{
        padding: 30px 20px;
    }
}
@media (max-width: 960px) {
    .header_menu{
        padding: 23px 40px;
    }
}
@media (max-width: 900px) {
    .founder_wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .founder_content_text,
    .founder_content_name,
    .founder_content_title{
        text-align: center;
    }
}
@media (max-width: 870px) {
    .header_menu a {
        font-size: 16px;
    }
    .header_menu {
        display: flex;
        justify-content: center;
        gap: 25px;
    }
}
@media (max-width: 820px) {
    .awards_box,
    .awards_festival{
        grid-template-columns: repeat(2, 1fr);
    }
    .contact_title,
    .gallery_title {
        font-size: 30px;
    }
    .gallery_box,
    .gallery_box_col_1,
    .gallery_box_col_2{
        gap: 20px;
    }
    .gallery_box{
        margin-top: 40px;
    }
}
@media (max-width: 770px) {
    .awards_festival_title, .awards_title {
        font-size: 30px;
    }
    .gallery_box_item{
        border-radius: 15px;
    }
}
@media (max-width: 700px) {
    .awards{
        margin-bottom: 100px;
    }
    .awards_festival_item h3{
        font-size: 18px;
    }
    .header_menu{
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        background: #32555434;
        backdrop-filter: blur(10px);
        padding: 23px 100px;
        border-radius: 30px;
        position: absolute;
        right: 20px;
        top: 100px;
        transition: right 0.3s ease;
    }
    .header_menu.active{
        display: flex;
    }
    .header_menu_button{
        display: block;
    }
    .header{
        padding-top: 20px;
        justify-content: space-between;
    }
}
@media (max-width: 650px) {
    .popup{
        overflow-y: scroll;
        align-items: flex-start;
    }
    .popup_details_inner{
        display: flex;
        flex-direction: column;
        max-width: 400px;
    }
    .popup_details_close {
        top: 25px;
        right: 25px;
    }
}
@media (max-width: 580px) {
    .footer_menu{
        flex-wrap: wrap;
        justify-content: center;
        padding: 30px 20px;
        row-gap: 20px;
    }
    .footer{
        height: auto;
    }
    .awards{
        margin-bottom: 80px;
    }
    .gallery_title {
        font-size: 23px;
    }
    .awards_box, .awards_festival{
        grid-template-columns: repeat(1, 1fr);
    }
    .awards_box_text{
        min-height: 200px;
        justify-content: center;
    }
    .hero h1{
        font-size: 40px;
        line-height: 55px;
    }
    .slider_wrapper h2, .hero h1 {
        font-size: 35px;
        line-height: 45px;
    }
    
    .slider_wrapper {
        gap: 10px;
    }
    .slider_wrapper p{
        font-size: 16px;
        margin-bottom: 35px;
    }
}
@media (max-width: 520px) {
    .awards_festival_title, .awards_title {
        font-size: 27px;
    }
    .hero{
        padding-bottom: 15px;
    }
    .founder_box{
        margin-top: 30px;
    }
}
@media (max-width: 470px) {
    .founder_content_title {
        font-size: 43px;
        line-height: 47px;
    }
    .founder_box_item {
        padding: 7px 24px
    }
}
@media (max-width: 450px) {
    .hero_play{
        right: 5px;
    }
    .contact_address_link span, .contact_mail_link span{
        font-size: 20px;
    }
    .slider_wrapper h2{
        font-size: 30px;
        line-height: 35px;
    }
    .hero h1{
        font-size: 30px;
        line-height: 45px;
    }
    .slider_wrapper p{
        margin-bottom: 0;
    }
}
