@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');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #000;
    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 8%;
    position: relative;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

.logo{
    width: 150px;
    cursor: pointer;
}

nav button{
    border: 0;
    outline: 0;
    background: #db0001;
    color: #fff;
    padding: 7px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;

}

.language-btn{
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px white solid;
    padding: 7px 10px;
}

.language-btn img{
    width: 10px;
    margin-left: 10px;
}

.header-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    margin-top: 100px;

}

.header-content h1{
    font-size: 60px;
    line-height: 70px;
    font-weight: 600;
    max-width: 650px;

}

.header-content h3{
    font-weight: 400;
    margin-bottom: 20px;


}

.header-content .email-signup{
    background: #fff;
    border: 4px;
    display: flex;
    align-items: center;
    margin-top: 30px;
    overflow: hidden;
}

.email-signup input{
    flex: 1;
    border: 0;
    outline: 0;
    margin-left: 20px;
}

.email-signup button{
    background: #db0001;
    color: #fff;
    outline: 0;
    border: 0;
    font-size: 16px;
    padding: 15px 30px;
}

/* Features */
.features{
    padding: 50px 12%;
    font-size: 32px;
}

.row{
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0;
}

.text-colume{
    flex-basis: 50%;
    margin-bottom: 20px;
}

.image-colume{
    flex-basis: 50%;
    margin-bottom: 20px;
}

.image-colume img{
    width: 90%;
    display: block;
    margin: auto;

}
    
.features h2{
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.features p{
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}

.faq{
    padding: 10px 12%;
    text-align: center;
    font-size: 18px;
}

.faq h2{
    font-size: 40px;
    font-weight: 600;
}

.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: "+";
    position: absolute;
    right: 20px;
    font-size: 34px;
    right: 20px;
    transition: transform 0.5s;
}

input[type="radio"]{
    display: none;
}

.accordion .content{
    text-align: left;
    background-color: #303030;
    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: 200px;
    padding: 30px 20px;
}

.accordion input[type="radio"]:checked + label::after{
   transform: rotate(135deg);
}

.email-signup-bottom input{
    width: 500px;
    border: 0;
    outline: 0;
    margin-left: 20px;
    margin-top: 20px;
    font-size: 16px;
    padding: 15px 30px;
}

.email-signup-bottom button{
    background: #db0001;
    color: #fff;
    outline: 0;
    border: 0;
    font-size: 16px;
    padding: 15px 30px;
}

.faq small{
    font-size: 13px;
}

/* footer */
.footer{
    padding: 50px 15% 10px;
    border-top: 6px solid #333;
    color :777
}

.footer h2{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer .col{
    flex-basis: 25%;
    flex-grow: 1;
    margin-bottom: 20px;
}

.footer .col a{
    display: block;
    text-decoration: none;
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer .row{
    align-items: flex-start;
    padding: 10px 0;
}

.footer button{
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
}

.copyright{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #777;
}

/* media queries for smaller screens */
@media only screen and (max-width: 600px) {
    .logo{
        width: 100px;
    }
    nav button{
        padding: 5px 10px;
        font-size: 12px;
    }
    nav .language-btn{
        padding: 4px 8px;
    }
    .header-content{
        position: unset;
        transform: none;
        padding-top: 150px;
    }
    .header-content h1{
        font-size: 30px;
    }
    .email-signup button{
        font-size: 12px;
        padding: 10px 15px;
    }
    .text-colume, .image-colume{
        flex-basis: 100%;
    }
    .features h2{
        font-size: 30px;
    }
    .features p{
        font-size: 15px;
    }
    .row:nth-child(2) ,.row:nth-child(4){
        flex-direction: column-reverse;

    }
    .features .row{
        padding: 10px 0;
    }
    .faq h2{
        font-size: 30px;
    }
    .accordion .content {
        font-size: 14px;
    }
    .accordion label {
        padding: 10px;
        font-size: 14px;
    }
    label::after {
        font-size: 22px;
    }
    .email-signup-bottom input{
        font-size: 12px;
        padding: 10px 15px;
        width: 100%;
        
    }
    .email-signup-bottom button{
        font-size: 12px;
        padding: 10px 15px;
    }
    
}