/**
 * Theme Name:  Dala-Ecos
 * Description: Тема для сайта
 *
 * Author:      Андрей Шумилин
 * Author URI:  https://github.com/Andersen92
 *
 * Tags:        green, yellow, white
 * Text Domain: dala-ecos.ld
 *
 * License:     GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Version:     1.0
 */

@charset "UTF-8";
:root {
    --white: #fff;
    --black: #333;
    /*--green: #008C64;*/
    --light-green: #00A189;
    --green: #018c66;
    --light-brown: #f7ca8c;
    --orange: #FF8E25;
    --orange-light: #ffa755;
    --grey: #5b5b5b;
    --light-grey: #f8f8f8;
    /* --light-grey-shadow: #cccccc;*/
    --tahoma: "Tahoma", Verdana, sans-serif;
    --tahoma-bold: "Tahoma Bold", Verdana, sans-serif;
    --montserrat: "Montserrat", sans-serif;
    --montserrat-bold: "Montserrat Bold", sans-serif;
    --montserrat-semibold: "Montserrat SemiBold", sans-serif;
}
body {
    background: var(--white);
    color: var(--black);
    font-family: var(--montserrat);
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 1.5rem;
}
body:after {
    content: "";
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    visibility: hidden;
    z-index: 99;
    opacity: 0;
}
body.__menu-opened:after {
    visibility: visible;
    opacity: .8;
}
a {
    text-decoration: none;
}
button {
    border: none;
    outline: none;
    cursor: pointer;
}
h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 600;
}
h2, h3, h4, h5, h6 {
    text-align: center;
}
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
ul {
    padding: 0;
    margin: 0;
}
ul li {
    list-style-type: none;
}
.items-list.flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /*justify-content: space-between;*/
    justify-content: flex-start;
}
.item {
    border-radius: 25px;
    overflow: hidden;
    margin: 30px 0;
    -webkit-box-shadow: 1px 1px 6px #cccccc;
    box-shadow: 1px 1px 6px #cccccc;
}
.item__col-3 {
    width: 32%;
    margin-right: 2%;
}
.item__col-3:nth-child(3n) {
    margin-right: 0;
}
.item__img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
}
.item__title {
    color: var(--black);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.6rem;
    word-break: break-word;
}
.hidden {
    display: none;
}
.chapter {
    margin-bottom: 50px;
}
.chapter .chapter__title {
    text-align: left;
    text-transform: none;
    font-size: 1.5em;
}
.chapter .chapter__text, .chapter .chapter__images {
    margin-bottom: 30px;
}
.chapter .chapter__text p {
    margin: 0;
}
.chapter .chapter__text li {
    position: relative;
    padding-left: 24px;
}
.chapter .chapter__text li:before {
    content: "";
    position: absolute;
    background: url("assets/img/icons/recycle.png") no-repeat;
    width: 16px;
    height: 16px;
    top: 6px;
    left: 0;
    margin-right: 10px;
}
.chapter .chapter__images.flex {
    justify-content: space-evenly;
    align-items: center;
}
.chapter img.fancybox {
    cursor: pointer;
}
.chapter .chapter__images img {
    width: 30%;
}
#scroll-up {
    display: block;
    background-color: transparent;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background-color: var(--grey);
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 9999;
    cursor: pointer;
}
#scroll-up:before {
    content: '';
    font-family: sans-serif;
    font-size: 30px;
    position: absolute;
    width: 45px;
    height: 45px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#scroll-up.show {
    opacity: 0.5;
}
#scroll-up.show:hover {
    opacity: 1;
}
#scroll-up i {
    font-size: 35px;
    color: var(--white);
    position: relative;
    top: 2px;
}
/* slick slider */
body .slick-list {
    margin: 40px -15px 30px;
}
body .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
body .slick-slide {
    margin: 0 15px;
}
body .slick-slide img {
    width: 100%;
}
body .slick-disabled {
    opacity: .5;
}
body .slick-arrow {
    position: absolute;
    z-index: 1;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
}
body .slick-arrow:after {
    content: '';
    position: absolute;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
body .slick-dots {
    bottom: -45px;
}
body .slick-dots li.slick-active button:before {
    color: var(--green);
    font-size: 13px;
}
body .slick-dots li button:hover:before {
    color: var(--green);
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*max-height: 100vh;*/
    overflow-y: auto;
    z-index: 1000;
}
header .header__wrap {
    padding: 10px 0;
    background-color: var(--light-green);
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    border-bottom: 1px solid var(--green);
}
header.transparent .header__wrap {
    background: transparent;
    border-bottom: none;
}
header .header__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: var(--white);
    text-shadow: 1px 1px 1px var(--grey);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
header .header__logo-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}
header .header__logo-wrap .custom-logo-link {
    width: 94px;
    height: 94px;
    margin-bottom: 5px;
}
header .header__logo-wrap img {
    width: 100%;
    height: auto;
}
/*header .header__logo-img {
    width: 100px;
    height: 100px;
    background: url(../img/logo.png) no-repeat 0 0 / contain;
    margin-bottom: 5px;
}*/
header .header__logo-text {
    font-size: 20px;
    color: var(--light-brown);
    font-family: "Fixedsys Excelsior 3.01";
}
header .header__hamburger {
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    display: none;
}
header .header__hamburger-box {
    width: 30px;
    height: 20px;
    display: block;
    position: relative;
}
header .header__hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
header .hamburger--spin .header__hamburger-inner {
    -webkit-transition-duration: .22s;
    -o-transition-duration: .22s;
    transition-duration: .22s;
    -webkit-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    -o-transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
}
header .hamburger--spin.active .header__hamburger-inner {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    -webkit-transition-delay: .12s;
    -o-transition-delay: .12s;
    transition-delay: .12s;
    -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -o-transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}
header .header__hamburger-inner, header .header__hamburger-inner:before,
header .header__hamburger-inner:after {
    background-color: var(--white);
    width: 30px;
    height: 2px;
    /*background-color: #000;*/
    border-radius: 10px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .4s;
    -o-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}
header .header__hamburger-inner:before,
header .header__hamburger-inner:after {
    content: "";
    display: block;
}
header .header__hamburger-inner:before {
    top: -8px;
}
header .header__hamburger-inner:after {
    bottom: -8px;
}
header .hamburger--spin.active .header__hamburger-inner:before {
    top: 0;
    opacity: 0;
    -webkit-transition: top .1s ease-out,opacity .1s ease-out .12s;
    -o-transition: top .1s ease-out,opacity .1s ease-out .12s;
    transition: top .1s ease-out,opacity .1s ease-out .12s;
}
header .hamburger--spin.active .header__hamburger-inner:after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom .1s ease-out,-webkit-transform .22s cubic-bezier(.215,.61,.355,1) .12s;
    -webkit-transition: bottom .1s ease-out,-webkit-transform .22s cubic-bezier(.215,.61,.355,1) .12s;
    -o-transition: bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
    transition: bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s,-webkit-transform .22s cubic-bezier(.215,.61,.355,1) .12s;
}
header .header__menu-wrap {
    width: 60%;
}
header.transparent.menu-opened {
    background-color: var(--grey);
}
header .header__menu-nav {
    font-size: 18px;
    letter-spacing: 0.01em;
}
header .header__mobile_phone {
    display: none;
}
header .header__menu-nav ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
}
header .header__menu-nav .header__menu-item a {
    color: var(--white);
}
header .header__contacts-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
header .header__contacts-email, header .header__contacts-phone,
header .header__phone-number {
    color: var(--light-brown);
}
header .header__contacts-email i, header .header__contacts-phone i {
    margin-right: 7px;
}
header .header__contacts-phone i {
    font-size: 18px;
    position: relative;
    top: 2px
}
header .header__contacts-call button {
    background: var(--white);
    width: 200px;
    height: 53px;
    border-radius: 30px;
    color: var(--light-green);
    font-size: 16px;
    margin: 13px 0;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    font-weight: 600;
}
header .header__contacts-call button:hover {
    background: var(--light-green);
    color: var(--white);
}
header.transparent .header__contacts-call button {
    background: var(--light-green);
    color: var(--white);
}
header .header__contacts-call button:hover {
    background: #0ab39a;
}

.page-content {
    margin-top: 148px;
    padding: 30px 0 50px;
    line-height: 1.7em;
}
.page-content .breadcrumbs {
    margin: 10px 0 60px;
    font-size: 14px;
}
.page-content .breadcrumbs .breadcrumbs__link {
    font-weight: 600;
    color: var(--black);
}
.page-content h1 {
    margin: 30px auto;
    text-align: left;
    text-transform: none;
    font-size: 2.3em;
}
.page_detail .page_detail-title {
    margin-bottom: 45px;
}
.page_detail .page_detail-title .container {
    padding: 20px 15px 40px;
}
.page_detail .page_detail-title h1 {
    width: 70%;
    word-break: break-word;
}
    /* index page */
.section-content {
    padding: 60px 0;
}
.page__index h2 {
    font-family: var(--tahoma-bold);
    margin: 20px 0 30px;
}
/* top info */
.page__index .top-info {
    background: url(assets/img/top-back.jpg) no-repeat top;
    background-size: cover;
    /*min-height: 100vh;*/
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #fff;
    z-index: 1;
    padding-top: 187px;
}
.page__index .top-info:before {
    content: "";
    opacity: .7;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--black);
}
.page__index .top-info .top-info__content {
    padding: 80px 0 100px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.page__index .top-info .top-info__title {
    width: 50%;
}
.page__index .top-info .top-info__title h1 {
    font-size: 47px;
    margin: 0 0 100px;
    line-height: 3.5rem;
    text-transform: none;
}
.page__index .top-info .top-info__benefits-item {
    width: 33%;
    font-weight: 600;
    font-size: 18px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
page__index .top-info .top-info__benefits-item:nth-child(3) {
    margin-right: 0;
}
.page__index .top-info .top-info__benefits-item span {
    font-family: var(--tahoma-bold);
    font-size: 48px;
    color: var(--light-brown);
    margin-right: 10px;
}
/* Services */
.page__index .services {
    background: var(--light-grey);
}
.services  .services__item-wrap {
    background: var(--white);
}
.services .services__item-wrap .services__item-img {
    height: 16rem;
    position: relative;
    overflow: hidden;
}
.services .services__item-wrap .services__item-layout {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    color: var(--white);
    font-weight: 500;
}
.services .services__item-wrap .services__item-layout:before {
    content: "";
    opacity: .8;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-color: var(--light-green);
}
.services .services__item-wrap .services__item-layout:hover {
    opacity: 1;
}
.services .services__item-wrap .services__item-more {
    padding: 15px 40px;
    border: 2px solid var(--white);
    border-radius: 30px;
}
.services .services__item-wrap .services__item-title {
    padding: 30px 20px;
}

/* benefits */
.benefits {
    background: var(--light-green);
}
.benefits h2 {
    color: var(--white);
    line-height: 1.5em;
}
.benefits .benefits__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.benefits .benefits__item-wrap {
    margin: 30px 0;
}
.benefits .benefits__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.benefits .benefits__item .benefits__item-icon {
    margin-right: 16px;
    width: 54px;
    height: 54px;
}
.benefits .benefits__item .benefits__item-icon img {
    width: 100%;
}
.benefits .benefits__item .benefits__item-text {
    color: var(--white);
    font-weight: 600;
    font-size: 17px;
    width: calc(100% - 70px);
}
/* projects */
.projects {
    background: var(--white);
}
.projects .projects__item-wrap {
    background: var(--light-grey);
}
.projects .projects__item {
    padding: 20px 20px 30px 20px;
}
.projects .projects__item .projects__item-img {
    height: 12rem;
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}
.projects .projects__item .projects__item-title {
    margin: 25px 0;
}
.projects .projects__item .projects__item-link {
    color: var(--white);
    background: var(--green);
    padding: 15px 40px;
    border: 2px solid var(--white);
    border-radius: 30px;
    display: block;
    text-align: center;
    min-width: 100px;
    width: 50%;
    margin: 0 auto;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.projects .projects__item .projects__item-link:hover {
    background: var(--light-green);
}
.projects  .projects__show-more {
    text-align: center;
    margin: 30px 0;
}
.projects  .projects__show-more a {
    color: var(--white);
    padding: 15px 40px;
    border-radius: 15px;
    background: var(--orange);
    transition: all .3s ease;
}
.projects  .projects__show-more a:hover {
    background: var(--orange-light);
}

/* partners */
.partners {
    background: var(--light-grey);
}
.partners .slick-arrow {
    top: calc((50% - 25px));
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 50%;
}
.partners .slick-arrow:after {
    top: calc(50% - 11px);
    right: calc(50% - 6px);
    width: 12px;
    height: 22px;
}
.partners .slick-arrow:hover {
    background: var(--light-green);
}
.partners .partners__carousel-btn-left {
    left: -65px !important;
}
.partners .partners__carousel-btn-left:after {
    background: url(assets/img/icons/arrow-left-small.png) no-repeat;
    background-size: cover;
}
.partners .partners__carousel-btn-right {
    right: -65px !important;
}
.partners .partners__carousel-btn-right:after {
    background: url(assets/img/icons/arrow-right-small.png) no-repeat;
    background-size: cover;
}

/* certificates */
.certificates {
    background: var(--white);
}
.certificates .certificates__carousel-item {
    cursor: pointer;
}
.certificates .slick-arrow {
    top: calc((50% - 25px));
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 50%;
}
.certificates .slick-arrow:after {
    top: calc(50% - 11px);
    right: calc(50% - 6px);
    width: 12px;
    height: 22px;
}
.certificates .slick-arrow:hover {
    background: var(--light-green);
}
.certificates .certificates__carousel-btn-left {
    left: -65px !important;
}
.certificates .certificates__carousel-btn-left:after {
    background: url(assets/img/icons/arrow-left-small.png) no-repeat;
    background-size: cover;
}
.certificates .certificates__carousel-btn-right {
    right: -65px !important;
}
.certificates .certificates__carousel-btn-right:after {
    background: url(assets/img/icons/arrow-right-small.png) no-repeat;
    background-size: cover;
}

/* contact */
.contact {
    background: url(assets/img/contact-back.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    /*flex-direction: column;
    justify-content: space-between;*/
    color: var(--white);
    z-index: 1;
}
.contact:before {
    content: "";
    opacity: .7;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--black);
}
.contact .contact__content h2 {
    margin: 20px 0 10px;
}
.contact .contact__content h4 {
    margin: 0 15px;
    line-height: 1.5em;
}
.contact .contact__form {
    margin-top: 50px;
}
.contact .contact__form p {
    margin: 0;
    height: 0;
}
.contact .contact__form-fields {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.contact .contact__form-field {
    width: 100%;
}
.contact .contact__form-field p {
    height: auto;
}
.contact .contact__form-field-wrap input {
    border: none;
    outline: none;
    background: var(--white);
    width: 94%;
    padding: 10px 3%;
    height: 30px;
    border-radius: 10px
}
.contact .contact__privacy {
    font-size: 12px;
    line-height: 1rem;
    margin-top: 12px;
}
.contact .contact__privacy p {
    height: auto;
}
.contact .contact__privacy a {
    color: var(--white);
    text-decoration: underline;
}
.contact .contact__privacy a:hover {
    text-decoration: none;
}
.contact .contact__form-send {
    margin-top: 33px;
}
.contact .contact__form-send p {
    height: auto;
}
.contact .contact__form-send input {
    display: block;
    margin: auto;
    border: none;
    color: var(--white);
    background: var(--orange);
    padding: 14px 0;
    width: 32%;
    border-radius: 15px;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}
.contact .contact__form-send input:hover {
    background: var(--orange-light);
}
/* footer */
footer {
    background: var(--light-green);
    color: var(--white);
    text-shadow: 1px 1px 1px var(--grey);
}
footer a {
    color: var(--white);
}
footer .footer__wrap {
    padding: 35px 0 18px;
}
footer .footer__items-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
footer .footer__items-list .footer__item-wrap {
    width: 23%;
}
footer .footer__item-title {
    color: var(--light-brown);
    margin: 0 0 10px 26px;
    font-weight: 600;
}
footer .footer__menu {
    margin: 0;
    padding: 0;
    font-weight: 600;
}
footer .footer__menu-item {
    margin-bottom: 10px;
}
footer .footer__items-list .footer__item-info {
    margin-bottom: 8px;
}
footer .footer__item-info-icon {
    margin: 0 10px 0 0;
    color: var(--light-brown);
    width: 16px;
}
footer .footer__item-phone .footer__item-info-icon {
    font-size: 18px;
}
footer .footer__item-address .footer__item-info-icon {
    font-size: 22px;
    margin: 5px 12px 0 0;
}
footer .footer__item-work .footer__item-info-icon {
    font-size: 20px;
    margin: 3px 10px 0 0;
}
footer .footer__items-list .footer__item-info span {
    display: block;
}
footer .footer__copyright {
    text-align: center;
}
/* модальное окно с формой */
.modal__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, .4);
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    display: none;
}
.modal__wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: var(--white);
    z-index: 1001;
    display: none;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    max-width: 400px;
}
.modal__wrap .modal__content {
    padding: 45px 30px;
}
.modal__wrap .modal__close {
    position: absolute;
    top: 9px;
    right: 9px;
    cursor: pointer;
    opacity: .8;
}
.modal__wrap .modal__close:hover {
    opacity: 1;
}
.modal__wrap .modal__close svg {
    fill: var(--green);
}

.modal__wrap .modal__submit-text {
    padding: 30px;
    font-weight: 600;
}
.show {
    display: block;
}
.modal__call-wrap {
    max-width: 370px;
    border-radius: 15px;
}
.modal__call-wrap .modal__content {
    padding: 45px 30px 25px;
}
.modal__wrap .modal__call-form {
    width: 80%;
    display: block;
    margin: 30px auto 0;
}
.modal__wrap .modal__call-title {
    font-weight: 600;
    text-align: center;
}
.modal__wrap .modal__call-form .modal__call-form-field {
    display: block;
    height: 36px;
    width: 96%;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid var(--green);
}
.modal__wrap .modal__call-form .modal__call-button {
    height: 45px;
    width: 100%;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    background: var(--orange);
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    transition: all .3s ease;
}
.modal__wrap .modal__call-form .modal__call-button:hover {
    background: var(--orange-light);
}
/* WordPress */
.wpcf7-not-valid-tip {
    font-size: 12px;
}
.wpcf7-response-output, .wpcf7-spinner {
    display: none;
}
/* 404 */
.not-found {
    text-align: center;
    line-height: normal
}
.not-found .not-found-title {
    color: var(--light-green);
    font-size: calc(4em + 9vw);
    font-weight: 600;
}
.not-found .not-found-text {
    margin: 20px 0 100px;
    font-size: calc(1em + 3vw);
}
.not-found .not-found-link {
    padding: 15px 40px;
    border-radius: 15px;
    background: var(--orange);
    transition: all .3s ease;
    color: var(--white);
}
.not-found .not-found-link:hover {
    background: var(--orange-light);
}