@import url("https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap");

* {
    font-family: sans-serif;
}

body {
    margin: 0;
    height: 360vh;
    background: linear-gradient(to bottom, #2c0f1f, #000000);

}

button,
.English,
.Sign,
#getstarted {
    cursor: pointer;
}


.main {
    height: 80vh;
    width: 93vw;
    margin: auto;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url("assets/images/hero-img.jpg");
    background-size: max(1200px, 100vw);
    background-repeat: no-repeat;
    background-position: center center;
    clip-path: polygon(50% 0%, 100% 0, 100% 35%, 100% 100%, 77% 97%, 56% 96%, 26% 97%, 0 100%, 0% 35%, 0 0);
}

.mainbox {
    height: 80vh;
    width: 100%;
    position: absolute;
    border-radius: 20px;
    opacity: 0.60;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: inset 0em -25px 15em rgb(161, 161, 160);
}

.maintext {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 46%;
    position: absolute;
    color: white;
    z-index: 2;
}

.maintext :nth-child(1) {
    font-family: sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 70px;
    padding-bottom: 20px;
    text-align: center;
}

#not-hero {
    font-family: sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
    padding-bottom: 20px;
}

#bph {
    font-family: sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.searchbox-getstarted {
    width: 80%;
    height: 18%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
}

#email1 {
    height: 53%;
    width: 60%;
    border-radius: 35px;
    background-color: #000000;
    opacity: 0.5;
    border: none;
    box-sizing: border-box;
    display: flex;
}

#email1 input {
    font-family: sans-serif;
    padding: 0px;
    padding-left: 0px;
    width: 100%;
    height: 55px;
    font-size: small;
    opacity: 0.5;
    border-radius: 40px;
    border: none;

}

#getstarted {
    height: 55%;
    width: 38%;
    border-radius: 35px;
    color: white;
    background-color: red;
    border: none;
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
}

#getstarted:hover {
    background-color: rgb(227, 17, 17);
}

.logo {
    width: 93vw;
    height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 120px;
    height: 80px;
}

.English {
    height: 30px;
    width: 120px;
    color: white;
    border-radius: 20px;
    background-color: #13020b;
    border: 1px solid rgb(141, 138, 138);
}

.Sign {
    height: 30px;
    width: 70px;
    border: none;
    border-radius: 20px;
}

.trending-section {
    width: 18vw;
    height: 32px;
    color: rgb(245, 228, 228);
    margin-left: 140px;
    margin-top: 20px;
    box-sizing: border-box;
}

.trending-section h1 {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 32px;
    padding: 0px;
    margin: 0px;
}

.list-parent {
    height: 44vh;
    width: 85vw;
    position: relative;
    display: flex;
    margin: auto;

    border-radius: 10px;

    overflow-x: auto;
    white-space: nowrap;
}

.list-parent::-webkit-scrollbar {
    display: none;
}


.list {
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    align-items: center;
    gap: 15px;

    width: max-content;
}


.movie-poster img {
    border-radius: 15px;
    height: 270px;
    width: 150px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.movie-poster img:hover {
    transform: scale3d(1.2, 1.2, 1);
    cursor: pointer;
}

.reasons-heading {
    width: 25vw;
    height: 32px;
    color: #ffffff;
    margin-left: 140px;
    margin-top: 20px;
}

.reasons-heading h1 {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 32px;
    padding: 0px;
    margin: 0px;
}

.reasons {
    width: 85vw;
    height: 34vh;
    margin: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

}

.reason {
    position: relative;
    height: 230px;
    width: 290px;
    border-radius: 20px;
    background-color: rgba(96, 91, 91, 0.4);
    box-sizing: border-box;
    z-index: 1;
    padding: 10px 20px 10px 20px;

}

.reason h3 {
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    z-index: 10;
}


.reason p {
    font-weight: 500;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

.reason img {
    width: 25%;
    height: 25%;
    margin-bottom: 10px;
    margin-left: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.question-heading {
    width: 30vw;
    height: 32px;
    color: #ffffff;
    margin-left: 140px;
    margin-top: 20px;
}

.question-heading h1 {
    font-weight: 700;
    font-size: 32px;

}

.questions {
    width: 85vw;
    height: 68vh;
    margin: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    box-sizing: border-box;
}

.question {
    background-color: rgba(236, 224, 224, 0.1);
    border-radius: 15px;
    height: 4.5rem;
    width: 80vw;
    padding-left: 20px;
    padding-right: 20px;
    color: #ffffff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.question h3 {
    font-weight: 500;
    font-size: 18px;
}

.question img {
    font-weight: 500;
    font-size: 18px;
    height: 25px;
}

.default-ltr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: auto;
    margin-top: 2vh;
    height: 140px;
    width: 60vw;
}

.default-ltr span {
    color: white;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.default-ltr-buttons {
    display: flex;
    flex-direction: row;
    width: 65%;
    justify-content: space-around;
}

.default-ltr-buttons :nth-child(1) {
    font-family: sans-serif;
    padding: 0px;
    padding-left: 0px;
    width: 55%;
    height: 55px;
    font-size: small;
    background-color: rgba(95, 88, 88, 0.4);
    border-radius: 40px;
    border: none;
}

.default-ltr-buttons :nth-child(1)::placeholder {
    color: #cec5c5;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-indent: 20px;
}

.default-ltr-buttons :nth-child(2) {
    height: 100%;
    width: 38%;
    border-radius: 35px;
    color: white;
    font-size: 22px;
    background-color: red;
    border: none;
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
}

.default-ltr-buttons :nth-child(2):hover {
    background-color: rgb(227, 17, 17);
}

.qcall {
    height: 10vh;
    width: 80vw;
    margin: auto;
    margin-top: 20px;
    display: flex;
    justify-content: left;
    align-items: center;
}

.qcall span,
a {
    color: rgba(255, 255, 255, 0.7);
}

.imp-links {
    height: 25vh;
    width: 70vw;
    margin: auto;
    margin-right: 19.5vw;
    display: flex;
    flex-direction: column;
    gap: 35px;
    flex-wrap: wrap;
}

.imp-links a {
    color: #a6a3a3;
}

.lan-select select {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    background-color: #13020b;
    margin-left: 9.5vw;
    margin-top: 5vh;
    border-radius: 40px;
    border: 1 solid rgb(255, 255, 255);
    height: 5vh;
    width: 9vw;
    padding-left: 10px;
}

.nef-in h4 {
    color: #a6a3a3;
    font-weight: 400;
    font-size: 15px;
    margin-left: 9.5vw;
    margin-top: 5vh;
}

.nef-capt {
    margin-top: 5vh;
    margin-left: 9.5vw;
    width: 35vw;
}

#cap {
    color: #a6a3a3;
    font-size: 13px;
    font-weight: 400;
}

#learn {
    color: #448ef4;
    font-size: 13px;
    font-weight: 400;
}