*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: 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 0px;
}
.logo{
    width: 150px;
    cursor: pointer;
}
nav button{
    border: 0;
    outline: 0;
    background-color: red;
    padding: 10px 20px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}
.down{
    display: inline-flex;
    align-items: center;
    background:transparent ;
    border: 1px solid grey;
    padding: 7px 10px;
}
.down img{
    width: 10px;
    margin-left: 10px;
}
.header-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center; 
}
.header-content h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 600;
    max-width: 650px;
}
.header-content h3{
    font-weight: 400;
    margin-bottom: 20px;
    
}
.email-signup{
    background: transparent;
    border: 1px solid grey;
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin-top: 30px;
    overflow: hidden;
    max-width: 500px;
    margin: 20px auto 60px;
    
}
.email-signup input{
    flex:1;
    border: 0;
    outline: 0;
    margin-left: 20px;
    color: white;
}
.email-signup button{
    background-color: red;
    border: 0;
    outline: 0;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 15px 5px;
    margin-left: 0;
    
}
input[type=email] {
    background-color: transparent;
    font-size: 15px;
    
}
.slide1{
    padding: 50px;
    font-size: 22px;

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

}
.text1{
    flex-basis: 50%;
    margin-bottom: 20px;
}
.img-col{
    flex-basis:50%;
    margin-bottom: 20px;
}
.img-col img{
    display: block;
    width: 90%;
    margin: auto;
}
.text1 h1{
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}




/*--------faq-------*/



.faq{
    font-size: 22px;
    text-align: center;
    padding: 10px 18%;
}
.faq h1{
    font-weight: 500;
    font-size: 40px;
}
.accordion{
    margin: 60px auto;
    width: 100%;
    max-width: 750px;
}
.accordion li {
    list-style: none;
    width: 100%;
    padding: 5px;
}
.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;
}
label::after{
    content: '+';
    font-size: 34px;
    position: absolute;
    right: 380px;
    transition: transform 0.2s;
}
input[type="radio"]{
    display: none;
}
.accordion .content{
    background: #303030;
    text-align: left;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s , padding 0.2s;
}
.accordion input[type="radio"]:checked + label + .content{
    max-height: 600px;
    padding: 30px 20px;

}
.accordion 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{
    padding:50px 15% 10px;
    border-top: 6px solid #333;
    color: #777;
}
.footer h2 {
    font-size: 18px;
    font-weight: 500;
    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 .down{
    color: white;
    padding: 10px 20px ;
    border-radius: 3px;
}
.ind{
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
}