@import url('https://fonts.googleapis.com/css2?family=Martel+Sans&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');

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

body {
    background-color: black;
}

.main {
    background-image: url("Assets/Images/bg.jpeg");
    height: 80vh;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: max(1200px, 100vw);
}

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

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

nav img {
    width: 130px;
    color: red;
    position: relative;
    z-index: 10;
}

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

.hero {
    font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
    height: calc(100% - 62px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    gap: 23px;
    padding: 0 23px;
}

.hero> :nth-child(1) {
    font-size: 48px;
    font-weight: bolder;
    z-index: 10;
    font-size: 2rem;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

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

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

.seperation {
    background-color: rgb(40, 38, 38);
    height: 7px;
    position: relative;
    z-index: 20;
}

.btn {
    padding: 3px 8px;
    color: white;
    background-color: rgba(248, 243, 243, 0.044);
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
}

.btn-red {
    background-color: red;
    color: white;
    padding: 3px 24px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 400;
}

.btn-red-sm {
    background-color: red;
    color: white;
}

.main input {
    padding: 7px 101px 8px 14px;
    border-radius: 4px;
    font-size: 15px;
    background-color: rgba(23, 23, 23, 0.2);
    border: 1px solid white;
    color: white;
    /* opacity: 0.3; */
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
}

.first {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 70vw;
    margin: auto;
    color: white;
}

@media screen and (max-width: 1300px) {
    .first {
        flex-wrap: wrap;
    }
}

.secImg {
    position: relative;
}

.secImg img {
    width: 30vw;
    position: relative;
    z-index: 10;
}

/* .secImg video {
    position: absolute;
    top: 51px;
    right: 0px;
    width: 26vw;
} */

section.first>div {
    display: flex;
    flex-direction: column;
    padding: 34px 0;
}

section.first>div :first-child {
    font-size: 48px;
    font-weight: bolder;
}

section.first>div :nth-child(2) {
    font-size: 24px;
    color: white;
}

.faq {
    background-color: black;
    color: white;
    padding: 34px;
}

.faq h2 {
    text-align: center;
    font-weight: 900;
    font-size: 48px;
}

.faqbox {
    transition: all 0.25s ease-in;
    display: flex;
    justify-content: space-between;
    background-color: rgb(59, 57, 57);
    padding: 24px;
    margin: 34px auto;
    max-width: 70vw;
    cursor: pointer;
}

.faqbox:hover {
    background-color: rgb(80, 78, 78);
}

.down {
    font-family: "Netflix Sans", "Helvetica Neue", "Segoe UI", Roboto, Ubuntu, sans-serif;
    position: relative;
    left: 21vw;
}

.down-buttons .down.red-btn {
    background-color: red;
    color: white;
    position: relative;
    left: 28vw;
    top: 8px;
    font-size: 28px;
    border-radius: 4px;
    border-color: white;
    padding: 3px 24px;
    font-weight: 400;
}

.down-buttons input {
    padding: 7px 101px 8px 14px;
    border-radius: 4px;
    font-size: 15px;
    background-color: rgba(23, 23, 23, 0.2);
    border: 1px solid white;
    color: white;
    position: relative;
    left: 27vw;
    font-weight: 600;
}

footer {
    color: white;
    /* max-width: 60vw; */
    margin: 73px;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: white;
    padding: 34px;
}

@media screen and (max-width: 1300px) {
    .footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        color: white;
        padding: 34px;
        gap: 55px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        z-index: 10;
    }
}

footer .questions {
    text-decoration: none;
    color: white;
}

.footer a {
    text-decoration: underline;
    color: white;
    font-size: 14px;
}

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

ul {
    list-style-type: none;
}

.btn-ft {
    color: white;
    background-color: rgba(248, 243, 243, 0.044);
    border: 1px solid white;
    width: 5vw;
    text-align: center;
    padding: 3px 8px;
    cursor: pointer;
}

.conclude {
    color: rgba(255, 255, 255, 0.588);
    position: relative;
    top: 17px;
}

@media screen and (max-width: 1300px) {
    .down-buttons{
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        z-index: 10;
        position: relative;
        right: 28vw;
    }
}