
 @import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@700&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: black;

    /* To remove horixontal scrollbar */
    overflow-x: hidden;
}

.main{
    background-image: url("assets/images/bg.jpg");
    background-size: max(1200px , 100vw);
    height:95vh;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
}

.box{
    height: 95vh;
    width: 100%;
    opacity: 0.68;
    position: absolute;
    top: 0px;
    background-color: black;
}

nav{
    max-width: 75vw ;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}

nav img{
    width: 162px;

    /* taki black screen se bahar aa jaye */
    position: relative;
    z-index: 10;
}

nav button{
    position: relative;
    z-index: 10;
}

.hero{
    margin: auto;
    font-family: 'Martel Sans', sans-serif;
    height: calc(100% - 88px);
    /* width: 90%; */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
    position: relative;
    gap:2px;
    text-align: center;
    padding: 0px 10px;
}


.hero> :nth-child(1){
    font-weight: bolder;
    font-size: 2.5rem;
}

.hero> :nth-child(2){
    font-size: 1.9rem;
}

.hero> :nth-child(3){
    font-size: 20px;
}

.line{
    height: 6px;
    background-color: rgb(46, 44, 44);
}

.btn{
    padding: 3px 8px;
    font-weight: bold;
    background-color: rgba(140, 135, 135, 0.4);
    border: 1px solid white;
    cursor: pointer;
    color: white;
    border-radius: 4px;
}

.btn-red {
    background-color: red;
    color: white;
    font-size: 24px;
    border-radius: 4px;
    padding: 8px 24px;
}

.btn-red-sm{
    background-color: red;
    color: white;
    
}

.main input{
    padding: 10px 60px;
    padding-left: 5px;
    border-radius: 4px;
    color: white;
    font-size: 19px;
    background-color: rgba(23,23,23,0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.first{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80vw;
    margin: auto;
    color: white;
    gap: 70px;
    padding-bottom: 2rem;
}

@media screen and (max-width:1150px) {
    .first{
        flex-wrap: wrap;
        padding: 20px 0px;
    }
    .hero> :nth-child(1) {
        /* font-weight: bolder; */
        font-size: 1.5rem;
    }
    .hero> :nth-child(2) {
        font-size: 1rem;
    }
    .hero> :nth-child(3) {
        font-size: 10px;
    }
    
}

.first > div :first-child{
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Martel Sans', sans-serif;
}

.first > div :nth-child(2){
    font-size: 1.2rem;
    font-weight: 900;
    font-family: 'Martel Sans', sans-serif;
}

.first > div{
    display: flex;
    flex-direction: column;
}

.secImg{
    position: relative;
}

.secImg img{
    position: relative;
    z-index: 10;
}

.secImg video{
    position: absolute;
    top: 101px;
    height: 260px;
    right: 92px;
}

.thirdImg{
    position: relative;
}

.thirdImg video{
    position: absolute;
    top: 40px;
    right: 125px;
    height: 230px;
}

.thirdImg img{
    position: relative;
    z-index: 10;
}

h2{
    color: white;
    font-size: 3rem;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 1rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.box2{
    display: flex;
    background-color: rgb(48, 48, 48);
    padding: 34px;
    justify-content: space-between;
    width: 70vw;
    height: 1vh;
    margin: auto;
    align-items: center;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.box2 > span{
    font-size: 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    font-weight : 500;
}

.box2:hover{
    background-color: rgb(78, 77, 77);
}

.marginji{
    margin-bottom: 2rem;
}

.footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 80vw;
    margin: auto;
}

footer{
    font-size: 1rem;
    margin-top:3rem;
    margin-bottom: 3rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    
}

.ques{
    width: 80vw;
    color: rgba(255,255,255,0.7);
    margin: auto;
}

.footer-items{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (max-width:1150px) {
    .footer{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }   
}
