*{
    margin: 0;
    padding: 0;
    font-family: 'poppins' sans-serif;
    box-sizing: border-box;
}

body{
    background: black;
    color: white;
}

.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;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

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

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

nav button:hover{
    background: #777;
    border-top-left-radius: 0px;
}

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

.language-btn:hover{
    border: 2px solid red;
}

.language-btn img{
    width: 20px;
    padding-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: 550px;
}

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

.email-signup{
    background: white;
    border-radius: 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: red;
    color: white;
    outline: 0;
    border: 0;
    font-size: 12px;
    cursor: pointer;
    padding: 10px 5px;
    transition: 1s;
}

.email-signup button:hover{
    background: #777;
}

/* ----------------features-------------- */


.features{
    padding: 50px 12%;
    font-size: 22px;
}

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

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

.img-col{
    flex-basis: 50%;
    margin-bottom: 20px;
}

.img-col img{
    display: block;
    width: 90%;
    margin: auto;
}

.text-col h2{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.text-col p{
    font-size: 20px;
}

hr{
    width: 100%;
}

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

.faq h2{
    font-size: 20px;
    font-weight: 400;
}

.accordian{
    margin: 60px auto;
    width: 100%;
    max-width: 750px;
}

.accordian li{
    list-style: none;
    width: 100%;
    padding: 5px;
}


.accordian li label{
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    background: #303030;
    margin-bottom: 2px;
    cursor: pointer;
    position: relative;
}
/* turning the + sign to * sign by adding the transition to label::after */
label::after{
    content: '+';
    font-size: 20px;
    position: absolute;
    right: 20px;
    transition: transform 0.5s;
}

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

.accordian .content{
    background: #303030;
    text-align: left;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.accordian input[type="radio"]:checked + label + .content{
    max-height: 600px;
    padding: 30px 20px;
}

/* this is for the + button in the accordian */

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


.faq .email-signup{
    max-width: 600px;
    margin: 20px auto 60px;

}

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

/* FOOTER */

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

.footer h2{
    font-size: 18px;
    font-weight: 400;
    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 .language-btn{
    color: #777;
    padding: 10px 20px;
    border-radius: 10px;
}

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

/* Media queries for smaller screens */

@media only screen and (max-width: 600px){
    .logo{
        width: 100px;
    }

    nav button{
        padding: 5px 10px;
    }

    nav .language-btn{
        padding: 4px 8px;
    }

    .header-content{
        position: unset;
        transform: none;
        padding-top: 150px;
    }

    .header-content h1{
        font-size: 25px;
    }

    .email-signup button{
        font-size: 12px;
        padding: 10px 15px;
    }

    .row .text-col h2{
        font-size: 20px;
    }

    .row .text-col p{
        font-size: 15px;
        font-weight: 100;
    }

    .footer h2{
        font-size: 15px;
    }

    .footer .col{
        margin-bottom: 30px;
        flex-basis: 50%;
        flex-grow: 2;
    }

    .footer .col a{
        font-size: 12px;
        margin-bottom: 15px;
    }
}