@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

*{
    margin: 0;
    padding: 0;
    font-family: "Roboto";
    color: white;
}

body{
    background-color: black;
}

header{
    background-image: linear-gradient(rgba(3, 3, 3, 0.7), rgba(0, 0, 0, 0.8)), url("assets/images/bg.jpg");;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: center bottom;
}

nav{
    display: flex;
    justify-content: space-around;
    padding: 30px 0px;
}

nav img{
    width: 130px;
}

.nav-elements ul{
    display: flex;
    cursor: pointer;
    list-style: none;
}

.nav-elements li{
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 14px ;
    margin: 0px 3px;
    font-weight: 400;
}

.br{
    background-color: red;
}

.email{
    width: 80vw;
    margin: 20vh 10vw 0px 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.second-line{
    font-weight: 400;
    font-size: 25px;
    margin: 20px 0px;
}

.third-line{
    font-weight: 400;
    font-size: 20px;
    margin: 20px 0px;
}

.eamil-button{
    padding: 10px 0px 150px 0px;
    display: flex;
    align-items: center;
}

.email-input{
    background-color: rgba(0, 0, 0, 0.185);
    border: 1px solid white;
    border-radius: 5px;
    height: 35px;
    width: 250px;
}
.email-input::placeholder{
    padding-left: 20px;
}

.get-started{
    font-size:20px;
    font-weight: 400;
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px 20px;
    margin-left: 10px;
}

.seperation{
    width: 100%;
    height: 6px;
    background-color: rgb(48, 46, 46);
}

.title{
    font-weight: bolder;
    font-size: 48px;
    padding-bottom: 20px;
}

.subtitle{
    font-size: 24px;
}

section{
    padding: 34px 0px;
    display: flex;
    width: 70vw;
    margin: 0px 15vw;
    justify-content: center;
    align-items: center;
}

.image{
    position: relative;
}

.text{
    display: flex;
    flex-direction: column;
}

.hp{
    position: relative;
    z-index: 1;
}

.secImage{
    width: 555px;
    position: relative;
    z-index: 1;
}

video{
    position: absolute;
    top: 69px;
    right: 78px;
}

.faq-title{
    font-size: 55px;
    font-weight: 900;
}
/* .questions{
    border: 2px solid white;
    display: flex;
    ji
} */

.faq{
    padding: 34px 0px;
    display: flex;
    flex-direction: column;
    width: 60vw;
    margin: 0px 20vw;
    justify-content: center;
    align-items: center;
}

.question{
    display: flex;
    width: 60vw;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    margin: 40px 0px;
    box-sizing: border-box;
    background-color: rgb(55, 54, 54);
}
.question:hover{
    background-color: rgb(67, 66, 66);
}

.questions span{
    font-size: 25px;
}

footer{
    width: 60vw;
    margin: 30px 20vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

footer span{
    grid-column: 1/5;
    padding: 20px;
}

footer a{
    text-decoration: none;
    padding: 10px 20px;
}