*{
    margin: 0;
    padding: 0;
    font-family: 'poppins',sans-serif;
    box-sizing: border-box;
}
body{
    background-color: black;
    color: #fff;
}
.header{
    width: 100%;
    height: 100vh;
    background-image:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/header-image.png);
    background-size: cover;
    background-position: center;
    padding: 10px 8px;
    position: relative;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.logo{
    width:150px;
    cursor: pointer;
    margin-left: 10%;
 }
 .lol{
    margin-right: 10%;
 }
nav button{
    border: 0;
    outline:0;
    background: red;
    color: #fff;
    padding:10px 12px;
    margin-left: 10px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}
.language-btn{
    background: transparent;
    border: 1px solid #fff;
    padding: 7px 10px;
}
.language-btn img{
    width: 20%;
    margin-left: 5px;
}
.signin{
    padding: 10px 10px;
}
.header-content{
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
   transform: translate(-50%,-50%);
   margin-top: 100px;
}
.header-content h1{
    font-size: 60px;
    line-height: 70px;
    font-weight: 600;
    max-width: 650px;
}
.header-content h3{
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}
.header-content p{
    font-size: 18px;
}
.email-signup{
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin:20px auto 60px;
    overflow: hidden;
    max-width: 600px;

    
}
.email-signup input{
    flex: 1;
    border: 0;
    outline: 0;
    margin-left: 20px;
    
   
}
.email-signup button{
    background: red;
    border: 0;
    outline: 0;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
}
/*--------------------------------------------*/
.features{
    padding: 50px 12px;
    font-size: 22px;
    color: #fff;
}
.row{
    display: flex;
    width: 100%;
    align-items: center;
    padding: 50px 0; 
}
.text-color{
 margin: 5% 5%;
}
.img-color{
    flex-basis: 50%;
    margin-bottom: 20px;
}

.features h2{
    font-size: 50px;
    font-weight: 600; 
    margin-bottom: 20px;
}
/*---------------------------------------------*/
.faq{
    padding: 10px 12%;
    text-align: center;
    font-size: 18px;
    border-bottom: 3px solid rgb(59, 57, 57);
}
.faq h2{
    font-weight: 500;
    font-size: 50px;
}
.accordion{
    margin: 60px auto;
    width: 100%;
    max-width: 750px;
}
.accordion li{
    list-style: none;
    width: 100%;
    padding: 5px;
}
.accordion li label{
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    background: #303030;
    margin-bottom: 2px;
    cursor: pointer;
    position: relative;
}
label::after{
    content: '+';
    font-size: 35px;
    position: absolute;
    right: 20px;
    transition: transform 0.5s;
}
input[type='radio']{
    display: none;
}
.accordion .content{
    background: #303030;
    text-align: left;
    padding: 0 20px;
    max-height:0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}
 .accordion input[type="radio"]:checked + label + .content{
    max-height:600px;
    padding: 30px 20px;  
}
.accordion input[type="radio"]:checked + label::after{
    transform: rotate(135deg);
}
.footer{
    padding: 50px 15% 10px;
    color: #777;

}
.footer p{
   margin-bottom: 30px;
}

.col{
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    color: #fff;
    text-decoration: underline;
}
 a{
     text-decoration: none;
     color: #777;
     font-size: 16px;
     margin-bottom: 10px;
}
.footer .row{
    align-items: flex-start;
    padding: 10px 0;
}
.footer .language-btn{
    color: white;
    padding: 10px 20px;
    border-radius: 3px;
  margin-left: 8%;
}
.indiaa{
    margin-top: 20px;
    margin-left: 10%;
}
hr{
    color: grey;
    
}
/*---------------------------------------------*/
@media only screen and (max-width: 600px){
    .logo{
        width:20%;
    }
    .features .row{
        display: flex;
        flex-direction: column;
    }
    nav button{
        padding: 5px 10px;
    }

.header-content h1{
    font-size: 30px;
}
.email-signup button{
    font-size: 12px;
    padding: 10px 15px;
}
.row{
    display: none;
    
}
.text-color{
    flex-basis: 100%;
}
.img-color img{
    width: 100%;
  height: auto;
}
.features h2{
    font-size: 30px;
}
.features p{
    font-size: 15px;
}
.faq h2{
    font-size: 30px;
}
.row:nth-child(2),.row:nth-child(4){
    flex-direction: column-reverse;
}
.accordion .content{
    font-size: 14px;
}
.accordion li label{
    padding: 10px;
    font-size: 14px;
}
 label ::after{
    font-size: 22px;
 }
}