* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: black;
}

main {
    background-image: url("assets/images/bg.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    position: relative;
}

main .box {
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.7;
    position: absolute;
}

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




}

nav img {

    width: 150px;
    height: auto;
    filter: brightness(0.85) saturate(3);
    position: relative;
    z-index: 20;
    object-fit: contain;

}

.btn2 {

    background-color: red;
    border: 2px solid red;
    border-radius: 5px;
    padding: 3px 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Martel Sans', 'Helvetica Neue', sans-serif;
    color: white;




}

.btn {

    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(170, 157, 157, 0.4);
    color: white;
    font-weight: 600;
    padding: 5px 28px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Martel Sans', 'Helvetica Neue', sans-serif;

}

.button {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 20;

}

.start {
    background-color: red;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 20px;
    border: 2px solid red;
    color: white;
    font-weight: 600;
    margin-bottom: 80px;
}

.input input {
    padding: 12px 80px;
    font-size: 15px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(170, 157, 157, 0.4);
    color: white;
    margin-bottom: 80px;

}

.input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.text {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    font-family: 'Martel Sans', 'Helvetica Neue', sans-serif;
    padding-top: 150px;
}

.text span:first-child {
    font-size: 56px;
    font-weight: 700;
    text-align: center;

}

.text span:nth-child(2) {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;

}

.text span:nth-child(3) {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
}

.text span:nth-child(4) {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.seperation {
    height: 5px;
    background: linear-gradient(90deg, red 0%, purple 50%, blue 100%);
    border-radius: 50%;
    width: 100%;
    margin-top: 0;
    box-shadow: 0 0 20px rgb(252, 6, 252);
    position: relative;
    z-index: 99;
}

.container {
    background-color: black;
    height: auto;
    width: 100%;

}

.trending-section {
    color: white;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Martel Sans', 'Helvetica Neue', sans-serif;
    padding-left: 30px;

}

.slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0 20px 30px;

}

.slider::-webkit-scrollbar {
    display: none;
}

.number {
    color: black;
    font-weight: 900;
    font-size: 100px;
    position: absolute;
    bottom: 8px;
    left: -18px;
    -webkit-text-stroke: 3px white;
    z-index: 2;

}

.card {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;


}

.card:hover {
    transform: scale(1.05);
}

.card img {
    height: 300px;
    width: 180px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.faq {
    background-color: black;
    padding: 24px;
    max-width: 100vw;

}

.faq h2 {
    color: white;
    padding-left: 30px;
    margin-top: 20px;
    font-size: 32px;
    font-weight: 900;



}

.box2 {
    display: flex;
    align-items: center;
    color: white;
    padding: 18px 30px;
    margin-top: 20px;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 400;
    background-color: rgb(56, 54, 54);
    margin-bottom: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin: 20px auto 9px auto;
    max-width: 1200px;

}

.box2:hover {
    background-color: rgb(108, 103, 103);
}

.footer-content {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 48px;


}

.call {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 16px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);

}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;

}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;

}



@media(max-width:768px) {

    /* body{
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background: black;
    } */
    main {
        width: 100%;
        /* margin: 0 auto; */
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        gap: 80px;
        /* display: flex;
        justify-content: space-between;
        align-items: center; */

    }

    nav img {
        height: auto;
        width: 80px;
    }

    .btn {
        font-size: 12px;
        padding: 4px 10px;

        border-radius: 4px;
    }

    .btn2 {
        font-size: 12px;
        padding: 4px 10px;
        border-radius: 4px;
    }

    .button {
        display: flex;
        gap: 8px;
    }

    .text {
        width: 100%;
        text-align: center;
        padding: 100px 20px 40px 20px;
        margin: 0 auto;

    }

    .text span:first-child {
        font-size: 28px;
        text-align: center;

    }

    .text span:nth-child(2) {
        font-size: 28px;
        text-align: center;

    }

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

    .text span:nth-child(4) {
        font-size: 16px;
        text-align: center;
    }

    .input {
        display: flex;
        gap: 10px;
        width: 100%;
        flex-direction: column;

    }

    .start {
        font-size: 16px;
        padding: 14px;



    }

    .input input {
        padding: 14px 12px;
        width: 100%;
    }

    footer .footer-links {
        grid-template-columns: 1fr 1fr;
    }




}
