* {
    margin: 0;
    padding: 0;
    font-family: Netflix Sans, Helvetica Neue, Segoe UI, Roboto, Ubuntu, 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/background.png);
    /* opacity colour*/
    background-size: cover;
    background-position: center;
    padding: 10px 8%;
    /* position: relative; */
    display: block;
}

.header img {
    /* width: 257px; */
    height: 133px;
    margin-left: 43px;
    margin-top: -33px;
    padding: 0px;
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

nav button {
    border: 0;
    outline: 0;
    background: rgb(240, 11, 11);
    color: white;
    padding: 7px 20px;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
}

.language-btn {
    display: inline-block;
    align-items: center;
    background: transparent;
    border: 1px solid white;
    padding: 7px 10px;
}

.language-btn img {
    width: 18px;
    height: 6px;
    margin-left: -3px;
    padding-left: 7px;
}

.header-content {
    position: absolute;
    top: 89%;
    left: 57%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: -125px;
    padding: 0;

}

.header-content h1 {
    line-height: 61px;
    font-size: 3rem;
    font-weight: 900;
    margin: -5px;
    padding: 0px;
    width: 122%;
}

.header-content h2 {
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 40px;
}

.email-signup {
    background: transparent;
    display: flex;
    align-items: center;
    margin-top: 13px;
    overflow: hidden;
    line-height: 40px;
    outline: 1;
}

.email-signup input {
    flex: 1;
    margin-left: 170px;
    margin-right: 131px;
    background: transparent;
    border-radius: 4px;
    color: white;
    border: 1px solid;
    padding: 16px 15px;
    text-align: left;
}

.email-signup input::placeholder {
    /* Set placeholder color to white */
    color: white;
}

.email-signup button {
    background: #c91414;
    border: 0;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 16px 30px;
    margin: 7px;
    border-radius: 4px;
}

/* --------------------------Features------------------------------ */

.features {
    padding: 50px 12%;
    font-size: 22px;
}

.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;
    margin: auto;
    width: 90%;
}

.features h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;

}

/* ---------FAQ---------- */

.faq {
    padding: 10px 12px;
    text-align: center;
    font-size: 19px;

}

.faq h2 {
    font-weight: 500;
    font: 40px;

}

.accordion {
    margin: 68px 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: transform 0.1s;
}

input[type="radio"] {
    display: none;
}

.accordion .content {
    background: #303030;
    text-align: left;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s, padding 0.4s;
}

.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: 737px;
    margin: 12px auto 60px;

}

.faq small {
    font-size: 18px;
    margin-top: 0px;
}

/* ------------footer------------ */

.footer {
    padding: 50px 15% 10px;
    border-top: 6px solid #333;
    color: #777;
}

.footer h2 {
    font-size: 26px;
    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;
    padding: 10px 20px;
    border-radius: 3px;
}

.copyright-text {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* MEdia queries for small screen */
/* @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 */