@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: black;
    overflow-x: hidden;
}

.main {
    background-image: url("assests/images/bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 79vh;
    min-height: 480px;
    position: relative;
}

.main .box {
    height: 100%;
    width: 100%;
    opacity: 0.69;
    position: absolute;
    top: 0;
    background-color: black;
}

nav {
    width: 90%;
    max-width: 1200px;
    justify-content: space-between;
    margin: auto;
    display: flex;
    align-items: center;
    height: 62px;
    position: relative;
    z-index: 10;
}

nav img {
    color: red;
    width: 114px;
    position: relative;
    z-index: 10;
}

nav button {
    position: relative;
    z-index: 10;
}

nav>div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero {
    font-family: 'Martel Sans', sans-serif;
    height: calc(100% - 62px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    position: relative;
    gap: 17px;
    padding: 0 20px;
    text-align: center;
}

.hero> :nth-child(1) {
    font-weight: 900;
    font-size: clamp(22px, 4vw, 39px);
    text-align: center;
}

.hero> :nth-child(2) {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 500;
    text-align: center;
}

.hero> :nth-child(3) {
    font-size: clamp(13px, 1.8vw, 18px);
    font-weight: 500;
    text-align: center;
}

.separation {
    height: 4px;
    background-color: rgb(33, 31, 31);
    position: relative;
    z-index: 20;
}

.btn {
    padding: 4.5px 20px;
    font-weight: 100;
    color: white;
    background-color: rgba(248, 243, 243, 0.021);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.407);
    cursor: pointer;
    white-space: nowrap;
}

.btn-red {
    background-color: red;
    color: white;
    padding: 8.5px 24px;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 100;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-red-sm {
    background-color: red;
    color: white;
    padding: 4px 10px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 700px;
    flex-wrap: wrap;
}

.main input {
    flex: 1;
    min-width: 200px;
    max-width: 400px;
    padding: 9px 14px;
    color: white;
    font-weight: 530;
    font-size: 14px;
    border-radius: 4px;
    background-color: rgba(23, 23, 23, 0.7);
    border: 1px solid rgba(246, 238, 238, 0.5);
}


.first {
    display: flex;
    justify-content: center;
    max-width: 1100px;
    width: 90%;
    margin: auto;
    color: white;
    align-items: center;
    padding: 40px 0;
    gap: 30px;
}

.secImg {
    position: relative;
    flex-shrink: 0;
}

.secImg img {
    width: min(555px, 90vw);
    position: relative;
    z-index: 10;
    display: block;
}

.secImg video {
    position: absolute;
    top: 51px;
    right: 0;
    width: min(555px, 90vw);
}

section.first>div {
    display: flex;
    flex-direction: column;
}

section.first>div :nth-child(1) {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: bolder;
}

section.first>div :nth-child(2) {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    padding: 14px 0;
}


.faq h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    padding-bottom: 7px;
}

.faq {
    background: black;
    color: white;
    padding: 30px 5px;
}

.faqbox:hover {
    background-color: #414141;
    color: white;
}

.faqbox svg {
    filter: invert(1);
    flex-shrink: 0;
}

.faqbox {
    transition: all 0.5s ease-out;
    font-size: clamp(16px, 2.2vw, 24px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2d2d2d;
    padding: 22px;
    max-width: 800px;
    width: 90%;
    margin: 7px auto;
    cursor: pointer;
    gap: 12px;
}


footer {
    color: white;
    max-width: 900px;
    width: 90%;
    margin: auto;
    padding: 40px 14px;
}

footer .questions {
    padding: 34px 0;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    color: white;
}

.footer a {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.disclaimer {
    text-align: center;
    font-size: 16px;
    color: gray;
    padding: 20px 0;
}

/* Responsive breakpoints */

/* Tablet */
@media screen and (max-width: 900px) {
    .first {
        flex-direction: column;
        text-align: center;
    }

    .second {
        flex-direction: column-reverse;
    }

    .secImg img,
    .secImg video {
        width: min(440px, 90vw);
    }

    .footer {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 560px) {
    .main {
        height: 100svh;
        min-height: 500px;
    }

    nav img {
        width: 80px;
    }

    .btn {
        padding: 4px 12px;
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .main input {
        width: 100%;
        max-width: 100%;
    }

    .btn-red {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .secImg img,
    .secImg video {
        width: 90vw;
    }

    .secImg video {
        top: 35px;
    }

    .faqbox {
        font-size: 15px;
        padding: 16px;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .disclaimer {
        font-size: 14px;
        padding: 16px 0;
    }

}