* {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
}

.main {
    background-image: url("https://assets.nflxext.com/ffe/siteui/vlv3/e393bb3f-261f-43d1-99bb-16a157885615/web/IN-en-20260105-TRIFECTA-perspective_2802b120-4b8c-44a5-8fb9-617a728f4ec6_large.jpg");
    background-position: center center;
    background-size: max(1200px, 100vw);
    height: 700px;
    background-repeat: no-repeat;
    position: relative;
}

.main .box {
    background-color: black;
    width: 100%;
    height: 700px;
    opacity: 0.69;
    position: absolute;
    top: 0;
}

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

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

nav button {
    position: relative;
    z-index: 10;
    margin: 0 5px;
}

.hero {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 90px);
    gap: 23px;
    padding: 0 30px;
    text-align: center;
}

.hero :nth-child(1) {
    font-size: 52px;

    font-weight: 900;
    align-items: center;
}

.hero :nth-child(2) {
    font-size: 21px;
    font-weight: 500;
    text-align: center;
}

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

.hero .input input {
    font-size: 14px;
    padding: 19px;
    padding-right: 147px;
    background-color: rgba(19, 19, 19, 0.7);
    border-radius: 5px;
    border-color: rgb(192, 190, 190);
    font-weight: 200;
    color: white;
}

.hero .input input::placeholder {
    color: rgb(203, 185, 185);
}

.button-red {
    background-color: rgb(228, 0, 0);
    color: white;
    padding: 7px 14px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 15px;
}

.input {
    display: flex;
    align-items: center;
    gap: 7px
}

.hero .input .button-red {
    padding: 13px 41px;
    font-size: 25px;
    font-weight: bold;
}

.buttons .button-normal {
    color: white;
    background-color: rgba(21, 20, 20, 0.68);
    padding: 7px 28px;
    font-weight: bold;
    border-radius: 5px;
}

.button {
    cursor: pointer;
}

/* After seperation */
.sepration {
    width: 100%;
    height: 5px;
    background-color: grey;
    position: relative;
}


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

.a1 .pic img {
    width: 100%;
    max-width: 555px;
    position: relative;
    z-index: 10;
}

.pic {
    position: relative;
}

.pic video {
    position: absolute;
    top: 80px;
    right: 5px;
    width: 100%;
    max-width: 555px;
}

.f1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.f1 :first-child {
    font-size: 48px;
    font-weight: bolder;
}

.f1 :nth-child(2) {
    font-size: 25px;
    font-weight: 400;
}


.b1 {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.b1 .heading {
    font-size: 55px;
    font-weight: bolder;
    text-align: center;
}

.b1 .line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 60vw;
    font-size: 24px;
    background-color: #2d2d2d;
    padding: 24px;
    margin: 34px auto;
    cursor: pointer;
}

.line:hover {
    background-color: #616161;
    transition: all;
    transition-duration: 2s;
}

footer {
    color: white;
    max-width: 60vw;
    margin: auto;
    padding: 60px;
}

footer .h1 {
    padding: 34px 0;

}

footer .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

    align-items: center;
    justify-content: center;
}

footer .grid span a {
    color: white;

}



/* media quaries */

@media screen and (max-width:1300px) {
    nav {
        max-width: 90vw;
    }

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

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

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

    .input {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .a1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .f1 :first-child {
        font-size: 32px;
    }

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

    .b1 .heading {
        font-size: 33px;
        font-weight: bolder;
    }

    footer .grid {
    display: grid;
    grid-template-columns: 1fr 1fr ;

    align-items: center;
    justify-content: center;
}
}