@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: black;
}

/* BACKGROUND IMG */
.main {
    background-image: url(assets/img/bg.jpg);
    background-position: center center;
    background-size: max(1200px, 100vw);
    /* background-repeat: no-repeat; */
    height: 70vh;
    position: relative;


}

.main .box {
    position: absolute;
    top: 0;
    height: 70vh;
    width: 100%;
    background-color: black;
    opacity: 0.70;
}

/* NAV BAR */

nav {
    height: 63px;
    max-width: 75vw;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

nav img {
    padding-top: 29px;
    color: red;
    width: 145px;
    position: relative;
    z-index: 10;
}

nav button {
    position: relative;
    z-index: 10;
}



@media screen and (max-width:1100px) {

    nav {
        height: 55px;
    }

    nav img {
        width: 120px;
        z-index: 10;
    }
}

@media screen and (max-width:600px) {


    nav {
        height: 45px;
    }

    nav img {
        width: 100px;
        z-index: 10;
    }

    .btn-lang {
        /* padding: 4px 25px; */
        font-size: 10px;

    }

    .btn {
        font-size: 10px;

    }

    #lang {
        padding: 4px 20px;
        font-size: 10px;
    }

    .button1 {
        display: flex;
        gap: 3px;
        padding-top: 8px;
    }

}

@media screen and (max-width:460px) {


    .btn-lang {
        font-size: 9px;
    }

    .btn {
        font-size: 9px;
    }

    #lang {
        padding: 3px 17px;
        font-size: 9px;
    }

    .button1 {
        display: flex;
        gap: 3px;
        padding-top: 8px;
    }
}




.hero {
    font-family: "Martel Sans", sans-serif !important;
    font-weight: 600;
    font-style: normal;
    height: calc(100% - 63px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    position: relative;
    gap: 10px;
    padding: 0 30px;

}

.hero> :nth-child(1) {
    font-size: 48px;
    font-weight: 600;
    text-align: center;

}

.hero> :nth-child(2) {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.hero> :nth-child(3) {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}



@media screen and (max-width:1100px) {

    .hero {
        height: calc(100% - 55px);
    }

    .hero> :nth-child(1) {
        font-size: 40px;
    }

    .hero> :nth-child(2) {
        font-size: 20px;
    }

    .hero> :nth-child(3) {
        font-size: 17px;
    }
}



@media screen and (max-width:600px) {

    .hero {
        height: calc(100% - 45px);
    }

    .hero> :nth-child(1) {
        font-size: 35px;
    }

    .hero> :nth-child(2) {
        font-size: 16px;
    }

    .hero> :nth-child(3) {
        font-size: 14px;
    }


}

@media screen and (max-width:460px) {

    .hero {
        height: calc(100% - 45px);
    }

    .hero> :nth-child(1) {
        font-size: 30px;
    }

    .hero> :nth-child(2) {
        font-size: 15px;
    }

    .hero> :nth-child(3) {
        font-size: 13px;
    }


}


.separation {
    height: 7px;
    background-color: rgba(74, 74, 74, 0.847);
}

#lang {
    padding: 4px 30px;
    color: white;
    border: 1px solid rgba(218, 218, 218, 0.5);
    border-radius: 4px;
    /* background: transparent; */
    background-color: rgba(23, 23, 23, 0.455);
    cursor: pointer;

}

.button1 {
    display: flex;
    gap: 10px;
    padding-top: 15px;


}

.btn-lang {
    background-color: transparent;
    border: none;
}

.btn {
    border-radius: 4px;
    border: none;
    padding: 4px 12px;
    font-weight: bold;
    color: white;
    background-color: red;
    cursor: pointer;
}

.btn-red {
    border-radius: 4px;
    border: none;
    padding: 4px 12px;
    font-weight: bold;
    color: white;
    background-color: red;
    font-size: 20px;
    padding: 9px 18px;
}

input {
    font-size: 15px;
    border-radius: 4px;
    padding: 12px 100px 10px 25px;
    background-color: rgba(24, 24, 24, 0.8);
    border: 1px solid rgba(195, 194, 194, 0.5);
    font-weight: 400;
    color: rgb(255, 255, 255);

}

.hero-buttons {
    display: flex;
    gap: 8px;
    /* flex-wrap: wrap; */
}

@media screen and (max-width:1100px) {
    .hero-buttons {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .first {
        flex-wrap: wrap;

    }
}

@media screen and (max-width:600px) {
    .hero-buttons {
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .first {
        flex-wrap: wrap;

    }
}

@media screen and (max-width:460px) {

    nav {
        height: 45px;
    }

    nav img {
        width: 80px;
    }
}

/* first  */
.first {

    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    max-width: 80vw;
    margin: 30px auto 25px;


}

.first-text {
    display: flex;
    flex-direction: column;
    gap: 12px;

}

.first-text :first-child {

    font-size: 48px;
    font-weight: bold;
    text-align: center;

}

.first-text :nth-child(2) {
    text-align: center;
    font-size: 22px;
    font-weight: 300px;


}

@media screen and (max-width:600px) {

    .first-text {
        display: flex;
        flex-direction: column;
        gap: 12px;

    }

    .first-text :first-child {

        font-size: 35px;
        font-weight: bold;
        text-align: center;

    }

    .first-text :nth-child(2) {
        text-align: center;
        font-size: 17px;
        font-weight: 300px;


    }

}

@media screen and (max-width:460px) {

    .first-text :first-child {

        font-size: 32px;
        font-weight: bold;
        text-align: center;

    }

    .first-text :nth-child(2) {
        text-align: center;
        font-size: 14px;
        font-weight: 300px;


    }
}

.secImg img {

    width: 555px;
    position: relative;
    z-index: 10;
}

.secImg {
    position: relative;
    margin-top: 10px;

}

.secImg video {
    width: 419px;
    position: absolute;
    top: 71px;
    right: 63px;

}

.secImg22 {
    position: relative;
    margin-top: 10px;

}

.secImg22 video {
    width: 269px;
    position: absolute;
    right: 51px;
    top: calc(22px + 50px);

    z-index: 1;
    /* object-fit: cover; */
}

.secImg22 img {
    position: relative;
    z-index: 10;
    width: 370px;
    /* overflow: hidden; */
    margin-bottom: 50px;
    margin-top: 50px;
    /* margin-left: 50px; */
}

@media screen and (max-width:600px) {

    .secImg img {
        width: 380px;
    }

    .secImg video {
        width: 278px;
        top: 60px;
        right: 53px;
    }

    .secImg22 video {
        width: 180px;
        right: 36px;
        top: calc(10px + 58px);

    }

    .secImg22 img {
        width: 250px;

    }
}



/* FAQ */



#h2 {
    background-color: black;
    text-align: center;
    color: white;
    padding: 34px;
    font-size: 48px;
    font-weight: bold;
}


@media screen and (max-width:600px) {
    #h2 {
        font-size: 35px;
    }

    .faq-box span {
        font-size: 12px;
    }

    .question {
        font-size: 14px;

    }



}



.faq-box {
    transition: all 1s ease-out;
    display: flex;
    font-size: 24px;
    justify-content: space-between;
    max-width: 60vw;
    margin: auto;
    margin-top: 8px;
    font-weight: 600;
    color: white;
    background-color: rgb(45, 45, 45, 1);
    padding: 15px 40px;
    cursor: pointer;
}

.faq-box:hover {
    background-color: rgba(255, 255, 255, 0.40);
}

/* footer */

.questions {
    color: white;
    margin: 10px 0px 30px;

}






footer {
    max-width: 60vw;
    margin: 50px auto;


}

.footer {
    line-height: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: white;

}

.footer-item {
    display: flex;
    flex-direction: column;
}

a {
    font-size: 14px;
    color: white;
}

@media screen and (max-width:600px) {

    .footer {
        grid-template-columns: 1fr 1fr;
        line-height: 20px;
    }

    a {
        font-size: 10px;
    }
}