.hero {
    position: relative;
    background-image: url('../images/hero.svg');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100vh;
    max-width: 1920px;
    margin: 0 auto;
}

.hero--wrp {
    display: flex;
    align-items: center;
    height: 100vh;
}

.hero--image {
    position: absolute;
    right: 0;
    z-index: -1;
}

.hero--text {
    padding-right: 30px;
    max-width: 600px;
    margin-top: -140px;
}

.hero--text h1 {
    font-size: 100px;
    margin: 0;
    line-height: 1.2;
    -webkit-text-stroke: 2px white;
    color: #191919;
}

.hero--text p {
    font-size: 20px;
    margin-bottom: 50px;
}


.hero--btns {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.hero--btns span {
    display: block;
    margin: 0 20px;
}

@media (max-width: 1199px) {

    .hero {
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
    }

}

@media (max-width: 600px) {

    .hero--text {
        padding-right: 0;
        max-width: 100%;
        margin-top: 0;
    }

    .hero--text h1 {
        font-size: 58px;
    }

    .hero--text p {
        font-size: 16px;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .hero--btns {
        display: block;
        justify-content: space-between;
        align-items: center;
    }

    .hero--btns span {
        display: block;
        margin: 20px;
    }

}




/* About Section */

.about {
    margin: 150px 0 100px;
}

.about--wrp {
    display: flex;
    justify-content: space-between;
}

.about h2,
.about h3 {
    margin-top: 0;
    font-size: 60px;
    -webkit-text-stroke: 2px white;
    color: #191919;
}

.about--text {
    width: 50%;
    margin-bottom: 60px;
}

.about--info {
    width: 50%;
    padding-left: 60px;
}

.about--info p {
    font-size: 13px;
    color: #b1b1b1;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .about--wrp {
        display: block;
        justify-content: space-between;
    }

    .about--text,
    .about--info{
        width: 100%;
    }

    .about--info {
        padding-left: 0;
    }
}

@media ( max-width: 600px) {
    .about {
        margin: 70px 0 50px;
    }

    .about h2, .about h3 {
        margin-bottom: 20px;
    }
}

/* News Section */

.news {
    margin: 100px 0;
}

.news h3 {
    margin-top: 0;
    font-size: 60px;
    -webkit-text-stroke: 2px white;
    color: #191919;
}

.news--wrp {}

.news--item {
    position: relative;
    padding-bottom: 30px;
    padding-left: 50px;
}

.news--item:last-child:before {
    display: none;
}

.news--item:before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    background: white;
    left: 0;
    top: 13px;
}

.news--item:after {
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 1px;
    background: white;
    left: 0;
    top: 13px;
}

.news--item h4 {
    font-size: 20px;
    margin: 0;
}

.news--item p {
    font-size: 16px;
    color: #b1b1b1;
}

@media ( max-width: 600px) {
    .news {
        margin: 50px 0;
    }

    .news h3 {
        margin-bottom: 30px;
    }
}

/* FAQ Section */

.faq {
    margin: 100px 0;
}

.faq h3 {
    margin-top: 0;
    font-size: 60px;
    -webkit-text-stroke: 2px white;
    color: #191919;
}

.faq--item {
    margin-bottom: 30px;
}

.faq h4 {
    font-size: 22px;
    margin: 0;
    position: relative;
    padding-left: 30px;
    letter-spacing: 1px;
    cursor: pointer;
}

.faq h4:before,
.faq h4:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 1px;
    top: 15px;
    left: 0;
    background: #fff;
    transition: 300ms ease-in-out;
}

.faq h4:after {
    display: block;
    transform: rotate(90deg);
}

.faq--item p {
    display: none;
    margin-left: 30px;
    color: #b1b1b1;
    letter-spacing: 0.8px;
}


.faq--item h4.open + p {
    display: block;
}

.faq--item h4.open:after {
    display: none;
}

@media (max-width: 600px) {
    .faq--item h4 {
        font-size: 18px;
    }

    .faq {
        margin: 50px 0;
    }

    .faq h3 {
        margin-bottom: 30px;
    }
}


/* light theme */

.light-theme .hero--text h1 {
    -webkit-text-stroke: 2px #191919;
    color: whitesmoke;
}

.light-theme .read-more--btn {
    color: orangered;
}

.light-theme .news--item:before {
    background: orangered;
}

.light-theme .news--item:after {
    background: orangered;
}

.light-theme .faq h4:before, .light-theme .faq h4:after {
    background: orangered;
}

.light-theme .faq--item p {
    color: #404040;
}

.light-theme .news--item p {
    color: #646464;
}