@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&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');


* {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
}

body {
    background-color: black;
}

.main {
    background-image: url(Assets/Images/bg.jpg);
    height: 70vh;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: max(1200px, 100vw);


}

.main .box {
    height: 70vh;
    width: 100%;
    opacity: 0.44;
    background-color: black;
    position: absolute;
    top: 0;
}

nav {
    display: flex;
    align-items: center;
    max-width: 80vw;
    margin: auto;
    justify-content: space-between;
    height: 65px;

}

nav img {
    color: red;
    width: 145;
    position: relative;
    z-index: 15;
}

nav button {
    position: relative;
    z-index: 15;
}

.hero {
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    gap: 15px;
}

.hero> :nth-child(1) {
    font-family: "Martel Sans", sans-serif;
    font-weight: 900;
    font-size: 38px;
    line-height: 40px;
    text-align: center;

}

.hero> :nth-child(2) {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}



.hero> :nth-child(3) {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}

.separation {
    height: 4px;
    background-color: rgb(81, 81, 81);

}

.btn {
    padding: 3px 5px;
    background-color: white;
    font-weight: bolder;
}

.btn-red {
    background-color: red;
    color: white;
    padding: 12px 22px;
    border-radius: 4px;
}

.btn-red-sm {
    background-color: red;
    color: white;
    border: 1px solid black;
    padding: 3px 24px 3px;
    cursor: pointer;
    font-weight: 600;

}

.btn-lang {
    background-color: rgba(56, 56, 56, 0.2);
    color: white;
    padding: 3px 24px 3px;
    border: 0.5px solid rgba(255, 255, 255, 0.258);
    cursor: pointer;
    font-weight: 400;
}

.main input {
    background-color: rgba(23, 23, 23, 0.2);
    padding: 12px 22px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.464);
    color: white;

}


.first {
    color: white;
    display: flex;
    justify-content: center;
    margin: auto;
    max-width: 70vw;
    align-items: center;
}

.first>div :first-child {
    font-size: 48px;
    font-weight: bolder;
}

section.first>div {
    display: flex;
    flex-direction: column;
}

.first>div :nth-child(2) {
    font-size: 24px;
}

.secImg img {
    width: 555px;
    position: relative;
    z-index: 10
}

.faq h2{
    text-align: center;
    font-size: 45px;
}
.faq{
    background-color: black;
    color: white;
    padding: 34px;
}

.faqbox:hover {
    background-color: rgb(90, 90, 90);
}
.faqbox{
    transition: all 0.2s ease-in-out;
    display: flex;
    background-color: rgb(71, 71, 71);
    padding: 24px;
    max-width: 60vw;
    margin: 20px auto;
    justify-content: space-between;
    cursor: pointer ;
}

.footer-container {
    max-width: 70vw;
    margin: 0 auto;
    padding: 40px 0 20px 0;
    color: #b3b3b3;
    font-size: 16px;
}

.footer-questions {
    margin-bottom: 24px;
}

.footer-questions a {
    color: #fff;
    text-decoration: none;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.footer-item {
    flex: 1 1 180px;
    min-width: 150px;
}

.footer-item ul {
    list-style: none;
    padding: 0;
}

.footer-item ul li {
    margin-bottom: 12px;
}

.footer-item ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-item ul li a:hover {
    text-decoration: underline;
}

.footer-country {
    margin-top: 20px;
    font-size: 14px;
    color: #b3b3b3;
}

@media (max-width: 900px) {
    .main {
        height: 60vh;
        background-size: cover;
    }
    nav {
        max-width: 95vw;
        height: 55px;
    }
    .hero > :nth-child(1) {
        font-size: 28px;
        line-height: 32px;
    }
    .hero > :nth-child(2) {
        font-size: 16px;
    }
    .hero > :nth-child(3) {
        font-size: 14px;
    }
    .first, .footer-container {
        max-width: 90vw;
    }
    .footer {
        gap: 16px;
    }
    .secImg img {
        width: 350px;
    }
}

@media (max-width: 600px) {
    .main {
        height: 50vh;
        background-size: cover;
    }
    nav {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 10px 0;
    }
    nav img {
        width: 90px;
    }
    .hero {
        gap: 10px;
        padding: 0 10px;
    }
    .hero > :nth-child(1) {
        font-size: 18px;
        line-height: 22px;
        text-align: center;
    }
    .hero > :nth-child(2),
    .hero > :nth-child(3) {
        text-align: center;
    }
    .hero input,
    .hero button {
        width: 100%;
        margin-top: 8px;
    }
    .first {
        flex-direction: column;
        max-width: 98vw;
        padding: 0 8px;
        gap: 20px;
    }
    .secImg img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }
    .faq h2 {
        font-size: 28px;
    }
    .faqbox {
        max-width: 98vw;
        padding: 16px;
        font-size: 14px;
    }
    .footer-container {
        max-width: 98vw;
        font-size: 14px;
        padding: 30px 0 10px 0;
    }
    .footer {
        flex-direction: column;
        gap: 0;
    }
    .footer-item {
        margin-bottom: 10px;
    }
    .footer-questions {
        font-size: 13px;
    }
    .footer-country {
        font-size: 13px;
    }
}
