* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body {
    background-color: #000;
    color: #fff;

}

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/background.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    padding: 10px 8%;
    position: relative;
    width: 100%;
}

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

nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

nav button {
    color: #fff;
    cursor: pointer;
    background-color: #000;
    border-radius: 4px;
    font-size: 12px;
    padding: 7px 20px;
    font-size: 12px;

}

.language-btn {
    align-items: center;
    border: 1px solid red;
    display: inline-flex;
    padding: 7px;

}

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

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

.header-content h1 {
    font-size: 50px;
    font-weight: 500;
    max-width: 650px;
    text-shadow: 1px 1px 2px red;
}

.header-content h3 {
    font-size: 20px;
    margin-top: 10px;
}

.header-content p {
    margin-top: 15px;
}

.header-content span {
    color: red;
}

.email-signup {
    border-radius: 4px;
    display: flex;
    margin-top: 50px;
    overflow: hidden;
}

.email-signup input {
    flex: 1;
    margin-left: 20px;


}

.email-signup button {
    background: #000;
    border: 1px solid red;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 15px 30px;

}


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

.features{
    padding: 50px 12%;
    font-size: 22px;
}
.features h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px red;
    
}

.row {
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    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;
}

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

.faq h2 {
    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 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: 34px;
    position: absolute;
    right: 20px;
    transition: tranform 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);
}

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

.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: 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: #fff;
    background-color: #000;
    padding: 10px 20px;
    border-radius: 3px;
}

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