@import url('https://fonts.googleapis.com/css2?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','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    background-color: black;
    overflow-x: hidden;
}
.main{
    background-image: url(images/bg.jpg);
    height: 650px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: max(1200px,100vw);
}

.main .box{
    height: 650px;;
    width: 100%;
    opacity: 0.7;
    position:absolute;
    top: 0;
    background-color: black;
}
nav{
    max-width: 60vw;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
nav img{
    width: 130px;
    position: relative;
    z-index: 1;
}
nav button{
    position: relative;
    z-index: 1;
}
.hero{
    color: white;
    font-weight: 700;
    height: calc(100% - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    gap:23px;
    padding: 0 30px;
}

.hero> :nth-child(1){
    font-size: bolder;
    font-size: 56px;
    text-align: center;
}
.hero> :nth-child(2){
    font-size: bold;
    text-align: center;
    font-size: 34px;
}.hero> :nth-child(3){
    text-align: center;
    font-size: bolder;
    font-size: 24px;
}
.divider{
    height: 6px;
    width: 100vw;
    background-color: rgb(50, 50, 50);
    z-index: 99;
}
.btn{
    color: white;
    padding: 3px 8px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255,0.3);
    border-radius: 3px;
}
.red_btn{
    color: white;
    background-color: red;
    border: none;
    border-radius: 3px;
}
.mail{
    flex-wrap: wrap;
}
.mail button{
    color: white;
    background-color: red;
    padding: 4px 24px;
    font-size: 20px;
    border: none;
    border-radius: 4px;
}
.main input{
    padding: 12px 9px 12px 4px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255,0.3);
    border-radius: 4px;
    background-color: rgba(23, 23, 23, 0.3);
    font-weight: 900;
}

.first{
    display: flex;
    max-width: 90vw;
    margin: auto;
    color: white;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    padding-top: 10px;
}


.secimg{
    position: relative;
}
.secimg img {
    position: relative;
    z-index: 3;
    padding: 34px 0;
}
.secimg video {
    position: absolute;
    top: 137px;
    right: 96px;
    width: 100%;
    max-width: 453px;
    height: auto;
}

.first .text :nth-child(1){
    font-size: 56px;
    font-weight: bolder;
    
    padding: 36px 0;
}
.first .text :nth-child(2){
    font-size: 32px;
    font-weight: 600;
}

.faq{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 30px;
    padding:56px 0;
    font-size: larger;
    font-weight: bolder;
}
.ques{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60vw;
    padding:25px 20px;
    background-color: RGB(45,45,45);
    font-size: larger;
    font-weight: 400;
}


footer{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
}
.questions{
    font-size: 36px;
    font-weight: bolder;
}
footer a{
    color: white;
}
.footer{
    display: grid;
    grid-template-columns:repeat(4,1fr);
}
.footer-item{
    margin:30px 0;
    display: flex;
    flex-direction: column;
}
.ques:hover{
    background-color: rgb(65, 65, 65);
}
@media screen and (max-width : 1300px) {
    .hero> :nth-child(1){
        font-size: 30px;
    }
    .hero> :nth-child(2){
        font-size: 18px;
    }
    .hero> :nth-child(3){
        font-size: 18px;
    }
    nav{
        max-width: 90vw;
    }
    section{
        flex-direction: column;
    }
    .secimg img{
        width: 300px;
    }
    .secimg video{
        width: 228px;
        top: 80px;
        right: 33px;
    }
    .first .text :first-child{
        font-size: 32px;
    }
    .first .text :nth-child(2){
        font-size: 18px;
    }
   
}
@media screen and (max-width:700px) {
    .faq{
        font-size: medium;
        text-align: center;
    }
    .footer{
        font-size: small;
        display: grid;
        grid-template-columns:repeat(2,1fr);
    }
}
@media screen and (max-width:350px) {
    nav{
        flex-direction: column;
    }
    input{
        width: 90vw;
    }
    .secimg1{
        width: 440PX;
    }
}