html,
body {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: normal;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*,
:after,
:before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

a {
    outline: none;
    text-decoration: none;
    color: #e7428f;
}

a:hover,
a:active,
a:focus {
    color: #e7428f;
}

.button {
    display: inline-block;
    background: #e7428f;
    color: #F5F5F5;
    border-radius: 32px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 35px;
    border: 2px solid #e7428f;
    font: normal 700 12px/18px 'Montserrat', sans-serif;
    -webkit-transition: background-color .5s, color .5s, border .5s;
    transition: background-color .5s, color .5s, border .5s;
    cursor: pointer;
    outline: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    letter-spacing: 0.08em;
}

.button:hover {
    background-color: transparent;
    color: #e7428f;
    border-color: #e7428f;
}

.button.is-outlined {
    background-color: transparent;
    color: #e7428f;
}

.button.is-outlined:hover {
    background: #e7428f;
    color: #F5F5F5;
    border-color: #e7428f;
}

.button.is-loading {
    color: transparent !important;
    pointer-events: none;
    background: #e7428f !important;
    border-color: #e7428f !important;
    position: relative;
}

.button.is-loading::after {
    left: calc(50% - 9px);
    top: calc(50% - 9px);
    position: absolute !important;
    -webkit-animation: spinAround .5s infinite linear;
    animation: spinAround .5s infinite linear;
    border: 2px solid #F5F5F5;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 18px;
    position: relative;
    width: 18px;
}

@-webkit-keyframes spinAround {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spinAround {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.with-stylized-ul ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.with-stylized-ul ul li {
    padding-left: 25px;
    position: relative;
}

.with-stylized-ul ul li:before {
    content: "";
    position: absolute;
    height: 11px;
    width: 16px;
    border: 3px solid #e7428f;
    border-top-color: transparent;
    border-right-color: transparent;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 0;
}

.with-stylized-ul ul li:not(:last-child) {
    margin: 0 0 10px;
}

.with-stylized-ul.reverse-li ul li {
    padding-left: 0;
    padding-right: 25px;
}

.with-stylized-ul.reverse-li ul li:before {
    left: auto;
    right: 0;
    top: 4px;
}

.is-text-centered {
    text-align: center;
}

.is-block-h-middle {
    margin-left: auto;
    margin-right: auto;
}

.is-rounded-image {
    display: block;
    position: relative;
}

.is-rounded-image img {
    border-radius: 290486px;
    display: block;
    height: auto;
    width: 100%;
    max-width: 100%;
}

.fancybox-fx-slide-in-out.fancybox-slide--previous {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.fancybox-fx-slide-in-out.fancybox-slide--next {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.fancybox-fx-slide-in-out.fancybox-slide--current {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.owl-carousel.off {
    display: block;
}

.owl-carousel.off-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    margin-top: -17px;
    display: block;
    width: 20px;
    height: 34px;
    outline: none;
    opacity: .3;
    -webkit-transition: opacity .25s;
    transition: opacity .25s;
}

.owl-carousel .owl-nav button svg {
    fill: #9B9C9E;
}

.owl-carousel .owl-nav button:hover {
    opacity: 1;
}

.owl-carousel .owl-nav button.disabled {
    opacity: .3 !important;
    cursor: unset;
}

.owl-carousel .owl-nav .owl-prev {
    left: 0;
}

.owl-carousel .owl-nav .owl-next {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    right: 0;
}

.owl-carousel .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
}

.owl-carousel .owl-dots .owl-dot {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    zoom: 1;
    width: 15px;
    height: 15px;
    margin: 5px 7px;
    outline: none;
}

.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #e7428f;
    opacity: .3;
    display: block;
    -webkit-transition: opacity .2s ease, width .2s ease, height .2s ease;
    transition: opacity .2s ease, width .2s ease, height .2s ease;
    border-radius: 30px;
}
#certificates {
    background: #326723;
}

.owl-carousel .owl-dots .owl-dot:hover span {
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active span {
    width: 15px;
    height: 15px;
    opacity: 1;
}

.header_container .slider {
    min-height: 100vh;
}

.header_container .slider .item {
    min-height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
}

.header_container .slider .item .item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 90px;
}

.header_container .slider .item .item-inner .container {
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.header_container .slider .item .item-inner .item-title {
    font: 56px/64px 'Montserrat', sans-serif;
    color: #F5F5F5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.header_container .slider .item .item-inner .item-description {
    margin-top: 15px;
    font: 18px/29px 'Montserrat', sans-serif;
    color: #F5F5F5;
}

.header_container .slider .item .item-inner .item-buttons {
    margin: 50px -16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header_container .slider .item .item-inner .item-buttons .button {
    margin: 5px 16px;
    background: #326723;
    border-color:  #326723;
}

@media (max-width: 992px) {
    .header_container .slider .item .item-inner {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media (max-width: 576px) {
    .header_container .slider .item .item-inner {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .header_container .slider .item .item-inner .item-title {
        font: 34px/44px 'Montserrat', sans-serif;
        color: #F5F5F5;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
    }

    .header_container .slider .item .item-inner .item-description {
        margin-top: 15px;
        font: 16px/26px 'Montserrat', sans-serif;
        color: #F5F5F5;
    }

    .header_container .slider .item .item-inner .item-buttons {
        margin: 20px -16px 0;
    }

    .header_container .slider .item .item-inner .item-buttons .button {
        width: 100%;
        text-align: center;
    }
}

.header_container .slider .item.item-light .item-buttons .button.is-outlined {
    border-color: #F5F5F5;
    color: #F5F5F5;
}

.header_container .slider .item.item-light .item-buttons .button.is-outlined:hover {
    border-color: #e7428f;
}

.header_container .slider .item.item-dark .item-inner .item-title {
    color: #1F1E1F;
}

.header_container .slider .item.item-dark .item-inner .item-description {
    color: #1F1E1F;
}

.header_container .slider .item.item-center .item-inner .item-title {
    text-align: center;
}

.header_container .slider .item.item-center .item-inner .item-description {
    text-align: center;
}

.header_container .slider .item.item-center .item-buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header_container .slider .item.item-right .item-inner .item-title {
    text-align: right;
}

.header_container .slider .item.item-right .item-inner .item-description {
    text-align: right;
}

.header_container .slider .item.item-right .item-buttons {
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
}

.header_container .slider .owl-carousel .owl-nav .owl-prev {
    left: 65px;
}

.header_container .slider .owl-carousel .owl-nav .owl-next {
    right: 65px;
}

.header_container .slider .owl-carousel .owl-dots {
    width: 100%;
    position: absolute;
    bottom: 35px;
}

@media (max-width: 1360px) {
    .header_container .slider .owl-carousel .owl-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .header_container .slider .owl-carousel .owl-dots {
        bottom: 20px;
    }
}

.fancybox-slide--html {
    padding: 0 !important;
}

.modal {
    padding: 0 !important;
}

.modal.is-loading:before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}

.modal.is-loading::after {
    left: calc(50% - 30px);
    top: calc(50% - 30px);
    position: absolute !important;
    -webkit-animation: spinAround .5s infinite linear;
    animation: spinAround .5s infinite linear;
    border: 4px solid #fff;
    border-radius: 290486px;
    border-right-color: transparent;
    border-top-color: transparent;
    content: "";
    display: block;
    height: 60px;
    position: relative;
    width: 60px;
    z-index: 100;
}

.modal .close {
    position: absolute;
    width: 35px;
    height: 35px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 29px;
    right: 24px;
    cursor: pointer;
    opacity: .4;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}

.modal .close svg {
    stroke: #9B9C9E;
}

.modal .close:hover {
    opacity: 1;
}

.modal .modal-header {
    height: 85px;
    border-bottom: 1px solid rgba(155, 156, 158, 0.3);
}

.modal .modal-content {
    padding: 50px;
}

.modal .modal-content .modal-title {
    font: 21px/32px 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
}

.modal .modal-content .subtitle {
    font: 18px/25px 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

@media (max-width: 576px) {
    .modal .modal-header {
        height: 65px;
    }

    .modal .close {
        top: 15px;
        right: 20px;
    }

    .modal .modal-content {
        padding: 50px 20px 20px;
    }
}

#mobile-menu {
    width: 100%;
    height: 100%;
    max-width: 576px;
    float: right;
}

#mobile-menu .modal-content {
    padding: 50px;
    max-height: calc(100% - 85px);
    overflow: auto;
}

#mobile-menu .mobile-menu .menu-elements {
    padding: 0;
    margin: 0;
}

#mobile-menu .mobile-menu .menu-elements li {
    list-style: none;
}

#mobile-menu .mobile-menu .menu-elements li a {
    color: #FFF;
    font: 25px/34px 'Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    -webkit-transition: color .5s;
    transition: color .5s;
}

#mobile-menu .mobile-menu .menu-elements li a:hover {
    color: #e7428f;
}

#mobile-menu .mobile-menu .menu-elements li:not(:first-child) {
    margin-top: 25px;
}

#mobile-menu .contacts {
    margin-top: 60px;
}

#mobile-menu .contacts div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font: 16px/24px 'Montserrat', sans-serif;
}

#mobile-menu .contacts div a {
    color: #fff;
    font: 16px/24px 'Montserrat', sans-serif;
}

#mobile-menu .contacts div svg {
    fill: #fff;
    margin-right: 10px;
}

#mobile-menu .contacts div:not(:first-child) {
    margin-top: 10px;
}

#mobile-menu .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px;
}

#mobile-menu .socials .social a svg {
    fill: #2B2B2B;
}

#mobile-menu .socials .social:not(:first-child) {
    margin-left: 10px;
}

#mobile-menu .site-call-back {
    margin-top: 60px;
}

@media (max-width: 576px) {
    #mobile-menu .modal-content {
        padding: 50px;
        max-height: calc(100% - 65px);
        overflow: auto;
    }
}

#callback-popup {
    max-width: 576px;
}

#callback-popup .terms {
    max-width: 80%;
}

#terms-popup {
    max-width: 576px;
}

.catalog-item-popup .product-info .product-detail .product-detail-inner .product-name {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.catalog-item-popup .product-info .product-detail .product-detail-inner .product-properties .product-property .product-property-values .product-property-value.active {
    border-color: #e7428f;
}

.catalog-item-popup .product-info .product-detail .product-detail-inner .product-order .product-price {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.catalog-item-popup .product-full-description .title {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.cart-popup .cart-items .cart-item .cart-item-info .cart-item-info-top .cart-item-detail .cart-item-detail-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.cart-popup .cart-items .cart-item .cart-item-order .cart-item-order-quantity .cart-item-order-quantity-minus:hover,
.cart-popup .cart-items .cart-item .cart-item-order .cart-item-order-quantity .cart-item-order-quantity-plus:hover {
    background: #e7428f;
}

.cart-popup .cart-items .cart-item .cart-item-order .cart-item-order-quantity .cart-item-order-quantity-minus:hover svg,
.cart-popup .cart-items .cart-item .cart-item-order .cart-item-order-quantity .cart-item-order-quantity-plus:hover svg {
    fill: #fff;
}

.cart-popup .cart-items .cart-item .cart-item-order .cart-item-order-price {
    font-weight: 700;
}

.cart-popup .cart-total {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.cart-popup .cart-order-form .cart-order-form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.newsblock-popup .newsblock-date {
    color: #e7428f;
}

.form {
    display: block;
    margin: 0;
}

.form:not(:last-child) {
    margin-bottom: 20px;
}

.form .form-group label {
    display: block;
    font: 11px/22px 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.form .form-group .form-control {
    background: #F8F8F8;
    border-radius: 3px;
    border: none;
    padding: 15px 20px;
    font: 16px/26px 'Montserrat', sans-serif;
    color: #000;
    display: block;
    width: 100%;
}

.form .form-group .form-text {
    display: block;
    margin-top: 5px;
}

.form .form-group .terms {
    font-size: 13px;
    line-height: 20px;
}

.form .form-group:not(:last-child) {
    margin-bottom: 20px;
}

.form .form-success {
    display: none;
    margin-top: 15px;
    color: #00af36;
}

::-webkit-input-placeholder {
    color: #9B9C9E;
}

::-moz-placeholder {
    color: #9B9C9E;
}

:-ms-input-placeholder {
    color: #9B9C9E;
}

::-ms-input-placeholder {
    color: #9B9C9E;
}

::placeholder {
    color: #9B9C9E;
}

.header_sticky {
    height: 85px;
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.header_sticky.stick {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header_sticky .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.header_sticky .container .site-logo {
    padding: 10px 0;
    max-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.header_sticky .container .site-logo img {
    max-width: 100%;
    max-height: 100%;
}

.header_sticky .container .site-menu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_sticky .container .site-menu .menu-elements {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    max-width: 750px;
    height: 100%;
    width: 100%;
}

.header_sticky .container .site-menu .menu-elements > li {
    list-style: none;
    white-space: nowrap;
    height: 100%;
}

.header_sticky .container .site-menu .menu-elements > li .more-icon {
    height: 25px;
    width: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.header_sticky .container .site-menu .menu-elements > li .more-icon svg {
    fill: #2B2B2B;
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.header_sticky .container .site-menu .menu-elements > li a {
    color: #2B2B2B;
    font: 16px/26px 'Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 5px;
    -webkit-transition: color .5s;
    transition: color .5s;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_sticky .container .site-menu .menu-elements > li a:hover {
    color: #e7428f;
}

.header_sticky .container .site-menu .menu-elements > li:not(:first-child) {
    margin-left: 30px;
}

.header_sticky .container .site-menu .menu-elements > li .child-elements {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    min-width: 150px;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 2px solid #e7428f;
    padding: 15px 18px;
}

.header_sticky .container .site-menu .menu-elements > li .child-elements > li {
    list-style: none;
    white-space: nowrap;
}

.header_sticky .container .site-menu .menu-elements > li .child-elements > li a {
    display: block;
    width: 100%;
    color: #2B2B2B;
    font: 16px/26px 'Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 5px 10px;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_sticky .container .site-menu .menu-elements > li .child-elements > li a:hover {
    color: #e7428f;
}

.header_sticky .container .site-menu .menu-elements > li.has-children {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header_sticky .container .site-menu .menu-elements > li.has-children:hover .more-icon svg {
    fill: #e7428f;
}

.header_sticky .container .site-menu .menu-elements > li.has-children:hover .child-elements {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

@media (max-width: 1200px) {
    .header_sticky .container .site-menu .menu-elements {
        max-width: 670px;
    }
}

.header_sticky .container .menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_sticky .container .menu-burger .burger {
    width: 40px;
    height: 28px;
}

.header_sticky .container .menu-burger .burger svg {
    fill: #2B2B2B;
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.header_sticky.with-call-back .container .site-menu {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header_sticky.with-call-back .container .site-menu .menu-elements {
    max-width: 600px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .header_sticky.with-call-back .container .site-menu .menu-elements {
        max-width: 490px;
    }
}

.header_sticky.with-call-back .container .site-call-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .header_sticky .container .site-logo {
        max-width: 180px;
    }
}

@media (max-width: 576px) {
    .header_sticky {
        height: 65px;
    }
}

.header_container {
    position: relative;
}

.header_container.with-slider .header {
    position: absolute;
    top: 0;
    z-index: 2;
}

.header_container .header.template1 {
    width: 100%;
}

.header_container .header.template1 .header-line-one {
    height: 60px;
}

.header_container .header.template1 .header-line-one .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.header_container .header.template1 .header-line-one .container .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template1 .header-line-one .container .socials .social a svg {
    -webkit-transition: fill .5s;
    transition: fill .5s;
    fill: #fff;
}

.header_container .header.template1 .header-line-one .container .socials .social:not(:first-child) {
    margin-left: 10px;
}

.header_container .header.template1 .header-line-one .container .contacts {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template1 .header-line-one .container .contacts div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template1 .header-line-one .container .contacts div a {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template1 .header-line-one .container .contacts div svg {
    fill: #fff;
    margin-right: 10px;
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.header_container .header.template1 .header-line-one .container .contacts div:not(:first-child) {
    margin-left: 25px;
}

.header_container .header.template1 .header-line-one:after {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transition: background .5s;
    transition: background .5s;
    opacity: .2;
}

.header_container .header.template1 .header-line-two {
    height: 85px;
}

.header_container .header.template1 .header-line-two .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.header_container .header.template1 .header-line-two .container .site-logo {
    padding: 10px 0;
    max-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.header_container .header.template1 .header-line-two .container .site-logo img {
    max-width: 100%;
    max-height: 100%;
}

.header_container .header.template1 .header-line-two .container .site-logo .logo-light {
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    opacity: 1;
}

.header_container .header.template1 .header-line-two .container .site-logo .logo-dark {
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    opacity: 0;
    position: absolute;
    left: 0;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template1 .header-line-two .container .site-menu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    max-width: 750px;
    height: 100%;
    width: 100%;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li {
    list-style: none;
    white-space: nowrap;
    height: 100%;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li .more-icon {
    height: 25px;
    width: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li .more-icon svg {
    fill: #fff;
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li a {
    color: #fff;
    font: 16px/26px 'Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 5px;
    -webkit-transition: color .5s;
    transition: color .5s;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li a:hover {
    color: #e7428f;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li:not(:first-child) {
    margin-left: 30px;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li .child-elements {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    min-width: 150px;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 2px solid #e7428f;
    padding: 15px 18px;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li .child-elements > li {
    list-style: none;
    white-space: nowrap;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li .child-elements > li a {
    display: block;
    width: 100%;
    color: #2B2B2B;
    font: 16px/26px 'Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 5px 10px;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li .child-elements > li a:hover {
    color: #e7428f;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li.has-children {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li.has-children:hover .more-icon svg {
    fill: #e7428f;
}

.header_container .header.template1 .header-line-two .container .site-menu .menu-elements > li.has-children:hover .child-elements {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

@media (max-width: 1200px) {
    .header_container .header.template1 .header-line-two .container .site-menu .menu-elements {
        max-width: 670px;
    }
}

.header_container .header.template1 .header-line-two .container .menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_container .header.template1 .header-line-two .container .menu-burger .burger {
    width: 40px;
    height: 28px;
}

.header_container .header.template1 .header-line-two .container .menu-burger .burger svg {
    fill: #fff;
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.header_container .header.template1.with-call-back .header-line-two .container .site-menu {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header_container .header.template1.with-call-back .header-line-two .container .site-menu .menu-elements {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 600px;
}

@media (max-width: 1200px) {
    .header_container .header.template1.with-call-back .header-line-two .container .site-menu .menu-elements {
        max-width: 490px;
    }
}

.header_container .header.template1.with-call-back .header-line-two .container .site-call-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_container .header.template1.with-call-back .header-line-two .container .site-call-back .button {
    border-color: #fff;
    color: #fff;
}

.header_container .header.template1.with-call-back .header-line-two .container .site-call-back .button:hover {
    border-color: #e7428f;
}

@media (max-width: 992px) {
    .header_container .header.template1 .header-line-two .container .site-logo {
        max-width: 180px;
    }

    .header_container .header.template1 .header-line-two:after {
        display: block;
        content: '';
        width: 100%;
        height: 1px;
        background: #fff;
        opacity: .2;
    }
}

@media (max-width: 576px) {
    .header_container .header.template1 .header-line-two {
        height: 65px;
    }
}

.header_container .header.template1.is-dark-text .header-line-one .container .socials .social a svg {
    fill: #2B2B2B;
}

.header_container .header.template1.is-dark-text .header-line-one .container .contacts div {
    color: #2B2B2B;
}

.header_container .header.template1.is-dark-text .header-line-one .container .contacts div a {
    color: #2B2B2B;
}

.header_container .header.template1.is-dark-text .header-line-one .container .contacts div svg {
    fill: #2B2B2B;
}

.header_container .header.template1.is-dark-text .header-line-one:after {
    background: #2B2B2B;
}

.header_container .header.template1.is-dark-text .header-line-two .container .site-logo .logo-light {
    opacity: 0;
}

.header_container .header.template1.is-dark-text .header-line-two .container .site-logo .logo-dark {
    opacity: 1;
}

.header_container .header.template1.is-dark-text .header-line-two .container .site-menu .menu-elements > li .more-icon svg {
    fill: #2B2B2B;
}

.header_container .header.template1.is-dark-text .header-line-two .container .site-menu .menu-elements > li a {
    color: #2B2B2B;
}

.header_container .header.template1.is-dark-text .header-line-two .container .site-menu .menu-elements > li a:hover {
    color: #e7428f;
}

.header_container .header.template1.is-dark-text .header-line-two .container .menu-burger .burger svg {
    fill: #2B2B2B;
}

.header_container .header.template1.is-dark-text.with-call-back .header-line-two .container .site-call-back .button {
    border-color: #e7428f;
    color: #e7428f;
}

.header_container .header.template1.is-dark-text.with-call-back .header-line-two .container .site-call-back .button:hover {
    border-color: #e7428f;
    color: #ffffff;
}

@media (max-width: 992px) {
    .header_container .header.template1.is-dark-text .header-line-two:after {
        background: #2B2B2B;
    }
}

.header_container:not(.with-slider) .header.template1 {
    background: #fff;
}

.header_container {
    position: relative;
}

.header_container.with-slider .header {
    position: absolute;
    top: 0;
    z-index: 2;
}

.header_container .header.template2 {
    background: #fff;
    width: 100%;
}

.header_container .header.template2 .header-line-one {
    height: 60px;
}

.header_container .header.template2 .header-line-one .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.header_container .header.template2 .header-line-one .container .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template2 .header-line-one .container .socials .social a svg {
    fill: #e7428f;
}

.header_container .header.template2 .header-line-one .container .socials .social:not(:first-child) {
    margin-left: 10px;
}

.header_container .header.template2 .header-line-one .container .contacts {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template2 .header-line-one .container .contacts div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #2B2B2B;
    font-size: 13px;
    line-height: 20px;
}

.header_container .header.template2 .header-line-one .container .contacts div a {
    color: #2B2B2B;
    font-size: 13px;
    line-height: 20px;
}

.header_container .header.template2 .header-line-one .container .contacts div svg {
    fill: #e7428f;
    margin-right: 10px;
}

.header_container .header.template2 .header-line-one .container .contacts div:not(:first-child) {
    margin-left: 25px;
}

.header_container .header.template2 .header-line-one:after {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background: #000;
    opacity: .2;
}

.header_container .header.template2 .header-line-two {
    height: 85px;
}

.header_container .header.template2 .header-line-two .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.header_container .header.template2 .header-line-two .container .site-logo {
    padding: 10px 0;
    max-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template2 .header-line-two .container .site-logo img {
    max-width: 100%;
    max-height: 100%;
}

.header_container .header.template2 .header-line-two .container .site-menu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    max-width: 750px;
    height: 100%;
    width: 100%;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li {
    list-style: none;
    white-space: nowrap;
    height: 100%;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li .more-icon {
    height: 25px;
    width: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li .more-icon svg {
    fill: #2B2B2B;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li a {
    color: #2B2B2B;
    font: 16px/26px 'Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 5px;
    -webkit-transition: color .5s;
    transition: color .5s;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li a:hover {
    color: #e7428f;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li:not(:first-child) {
    margin-left: 30px;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li .child-elements {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    min-width: 150px;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 2px solid #e7428f;
    padding: 15px 18px;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li .child-elements > li {
    list-style: none;
    white-space: nowrap;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li .child-elements > li a {
    display: block;
    width: 100%;
    color: #2B2B2B;
    font: 16px/26px 'Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 5px 10px;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li .child-elements > li a:hover {
    color: #e7428f;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li.has-children {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li.has-children:hover .more-icon svg {
    fill: #e7428f;
}

.header_container .header.template2 .header-line-two .container .site-menu .menu-elements > li.has-children:hover .child-elements {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

@media (max-width: 1200px) {
    .header_container .header.template2 .header-line-two .container .site-menu .menu-elements {
        max-width: 670px;
    }
}

.header_container .header.template2 .header-line-two .container .menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_container .header.template2 .header-line-two .container .menu-burger .burger {
    width: 40px;
    height: 28px;
}

.header_container .header.template2 .header-line-two .container .menu-burger .burger svg {
    fill: #2B2B2B;
}

.header_container .header.template2.with-call-back .header-line-two .container .site-menu {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header_container .header.template2.with-call-back .header-line-two .container .site-menu .menu-elements {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 600px;
}

@media (max-width: 1200px) {
    .header_container .header.template2.with-call-back .header-line-two .container .site-menu .menu-elements {
        max-width: 490px;
    }
}

.header_container .header.template2.with-call-back .header-line-two .container .site-call-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .header_container .header.template2 .header-line-two .container .site-logo {
        max-width: 180px;
    }

    .header_container .header.template2 .header-line-two:after {
        display: block;
        content: '';
        width: 100%;
        height: 1px;
        background: #fff;
        opacity: .2;
    }
}

@media (max-width: 576px) {
    .header_container .header.template2 .header-line-two {
        height: 65px;
    }
}

.header_container .header.template3 .header-line-one .container .contacts {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.header_container {
    position: relative;
}

.header_container.with-slider .header {
    position: absolute;
    top: 0;
    z-index: 2;
}

.header_container .header.template4 {
    width: 100%;
}

.header_container .header.template4 .header-line-one {
    height: 85px;
}

.header_container .header.template4 .header-line-one .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header_container .header.template4 .header-line-one .container .site-logo-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header_container .header.template4 .header-line-one .container .site-logo-block .site-logo {
    padding: 10px 0;
    max-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.header_container .header.template4 .header-line-one .container .site-logo-block .site-logo img {
    max-width: 100%;
    max-height: 100%;
}

.header_container .header.template4 .header-line-one .container .site-logo-block .site-logo .logo-light {
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    opacity: 1;
}

.header_container .header.template4 .header-line-one .container .site-logo-block .site-logo .logo-dark {
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    opacity: 0;
    position: absolute;
    left: 0;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template4 .header-line-one .container .site-logo-block .site-slogan {
    margin-left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 210px;
    font: 13px/22px 'Montserrat', sans-serif;
    color: #fff;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template4 .header-line-one .container .socials-block .socials-title {
    font: 13px/22px 'Montserrat', sans-serif;
    color: #fff;
    -webkit-transition: color .5s;
    transition: color .5s;
    margin-bottom: 5px;
}

.header_container .header.template4 .header-line-one .container .socials-block .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template4 .header-line-one .container .socials-block .socials .social a svg {
    -webkit-transition: fill .5s;
    transition: fill .5s;
    fill: #fff;
}

.header_container .header.template4 .header-line-one .container .socials-block .socials .social:not(:first-child) {
    margin-left: 10px;
}

.header_container .header.template4 .header-line-one .container .contacts div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template4 .header-line-one .container .contacts div a {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template4 .header-line-one .container .contacts div svg {
    fill: #fff;
    margin-right: 10px;
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.header_container .header.template4 .header-line-one .container .contacts div:not(:first-child) {
    margin-top: 5px;
}

.header_container .header.template4 .header-line-one .container .menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_container .header.template4 .header-line-one .container .menu-burger .burger {
    width: 40px;
    height: 28px;
}

.header_container .header.template4 .header-line-one .container .menu-burger .burger svg {
    fill: #fff;
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.header_container .header.template4.with-call-back .header-line-one .container .site-call-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_container .header.template4.with-call-back .header-line-one .container .site-call-back .button {
    border-color: #fff;
    color: #fff;
}

.header_container .header.template4.with-call-back .header-line-one .container .site-call-back .button:hover {
    border-color: #e7428f;
}

.header_container .header.template4 .header-line-two {
    height: 60px;
    background: #e7428f;
}

.header_container .header.template4 .header-line-two .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.header_container .header.template4 .header-line-two .container .site-menu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-width: 750px;
    height: 100%;
    width: 100%;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li {
    list-style: none;
    white-space: nowrap;
    height: 100%;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li .more-icon {
    height: 25px;
    width: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li .more-icon svg {
    fill: #F5F5F5;
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li a {
    color: #F5F5F5;
    font: 16px/26px 'Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 5px;
    -webkit-transition: border .5s;
    transition: border .5s;
    border-bottom: 1px solid transparent;
    -webkit-transition: color .5s;
    transition: color .5s;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li a:hover {
    color: #e7428f;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li:not(:first-child) {
    margin-left: 30px;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li .child-elements {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    margin: 0;
    min-width: 150px;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 2px solid #e7428f;
    padding: 15px 18px;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li .child-elements > li {
    list-style: none;
    white-space: nowrap;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li .child-elements > li a {
    display: block;
    width: 100%;
    color: #2B2B2B;
    font: 16px/26px 'Montserrat', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 5px 10px;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li .child-elements > li a:hover {
    color: #e7428f;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li.has-children {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li.has-children:hover .more-icon svg {
    fill: #CBB5B5;
}

.header_container .header.template4 .header-line-two .container .site-menu .menu-elements > li.has-children:hover .child-elements {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

@media (max-width: 1200px) {
    .header_container .header.template4 .header-line-two .container .site-menu .menu-elements {
        max-width: 670px;
    }
}

.header_container .header.template4 .header-line-two .container .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template4 .header-line-two .container .phone a {
    color: #fff;
    font: 16px/26px 'Montserrat', sans-serif;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template4 .header-line-two .container .phone svg {
    fill: #fff;
    margin-right: 10px;
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

@media (max-width: 992px) {
    .header_container .header.template4 .header-line-one .container .site-logo {
        max-width: 180px;
    }

    .header_container .header.template4 .header-line-one:after {
        display: block;
        content: '';
        width: 100%;
        height: 1px;
        background: #fff;
        opacity: .2;
    }
}

@media (max-width: 576px) {
    .header_container .header.template4 .header-line-one {
        height: 65px;
    }
}

.header_container .header.template4.is-dark-text .header-line-one .container .site-logo-block .site-logo .logo-light {
    opacity: 0;
}

.header_container .header.template4.is-dark-text .header-line-one .container .site-logo-block .site-logo .logo-dark {
    opacity: 1;
}

.header_container .header.template4.is-dark-text .header-line-one .container .site-logo-block .site-slogan {
    color: #2B2B2B;
}

.header_container .header.template4.is-dark-text .header-line-one .container .socials-block .socials-title {
    color: #2B2B2B;
}

.header_container .header.template4.is-dark-text .header-line-one .container .socials-block .socials .social a svg {
    fill: #2B2B2B;
}

.header_container .header.template4.is-dark-text .header-line-one .container .contacts div {
    color: #2B2B2B;
}

.header_container .header.template4.is-dark-text .header-line-one .container .contacts div a {
    color: #2B2B2B;
}

.header_container .header.template4.is-dark-text .header-line-one .container .contacts div svg {
    fill: #2B2B2B;
}

.header_container .header.template4.is-dark-text .header-line-one .container .menu-burger .burger svg {
    fill: #2B2B2B;
}

.header_container .header.template4.is-dark-text.with-call-back .header-line-one .container .site-call-back .button {
    border-color: #e7428f;
    color: #e7428f;
}

.header_container .header.template4.is-dark-text.with-call-back .header-line-one .container .site-call-back .button:hover {
    border-color: #e7428f;
    color: #ffffff;
}

@media (max-width: 992px) {
    .header_container .header.template4.is-dark-text .header-line-one:after {
        background: #2B2B2B;
    }
}

.header_container:not(.with-slider) .header.template4 {
    background: #fff;
}

.header_container .header.template5 .header-line-one .container .contacts {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template5 .header-line-one .container .contacts div:not(:first-child) {
    margin-top: 0;
    margin-left: 25px;
}

.header_container .header.template5 .header-line-two .container .site-logo {
    padding: 10px 0;
    max-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template5 .header-line-two .container .site-logo img {
    max-width: 100%;
    max-height: 100%;
}

.header_container .header.template5 .header-line-two .container .site-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_container .header.template5 .header-line-two .container .site-menu .menu-elements {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_container .header.template5 .header-line-two .container .menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header_container .header.template5 .header-line-two .container .menu-burger .burger {
    width: 40px;
    height: 28px;
}

.header_container .header.template5 .header-line-two .container .menu-burger .burger svg {
    fill: #fff;
}

@media (max-width: 992px) {
    .header_container .header.template5 .header-line-two {
        height: 85px;
    }

    .header_container .header.template5 .header-line-two .container .site-logo {
        max-width: 180px;
    }
}

@media (max-width: 576px) {
    .header_container .header.template5 .header-line-two {
        height: 65px;
    }
}

.header_container .header.template6 .header-line-one .container .contacts {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template6 .header-line-one .container .contacts div:not(:first-child) {
    margin-top: 0;
    margin-left: 25px;
}

.header_container .header.template6 .header-line-one .container .site-call-back {
    text-align: right;
}

.header_container .header.template6 .header-line-one .container .site-call-back .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template6 .header-line-one .container .site-call-back .phone a {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template6 .header-line-one .container .site-call-back .phone svg {
    fill: #fff;
    margin-right: 10px;
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.header_container .header.template6 .header-line-one .container .site-call-back .phone:not(:first-child) {
    margin-top: 5px;
}

.header_container .header.template6 .header-line-one .container .site-call-back a {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    padding: 5px;
    font: normal 700 12px/18px 'Montserrat', sans-serif;
    -webkit-transition: color .5s;
    transition: color .5s;
}

.header_container .header.template6 .header-line-two .container .socials-block .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_container .header.template6 .header-line-two .container .socials-block .socials .social a svg {
    -webkit-transition: fill .5s;
    transition: fill .5s;
    fill: #F5F5F5;
}

.header_container .header.template6 .header-line-two .container .socials-block .socials .social:not(:first-child) {
    margin-left: 10px;
}

.header_container .header.template6.is-dark-text .header-line-one .container .site-call-back .phone {
    color: #2B2B2B;
}

.header_container .header.template6.is-dark-text .header-line-one .container .site-call-back .phone a {
    color: #2B2B2B;
}

.header_container .header.template6.is-dark-text .header-line-one .container .site-call-back .phone svg {
    fill: #2B2B2B;
}

.header_container .header.template6.is-dark-text .header-line-one .container .site-call-back > a {
    color: #e7428f;
}

.section {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.section.paddingless {
    padding: 0;
}

.section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #1F1E1F;
    font-weight: 700;
    line-height: 44px;
}

#certificates .section .section-title,
#prices .section .section-title {
    color: #fff;
}

.section .section-title:not(.no-seperator):after {
    content: '';
    display: block;
    width: 70px;
    height: 2px;
    background: #e7428f;
    margin: 30px 0;
}

#contacts .section .section-title:not(.no-seperator):after {
    background: #326723;
}


.section .section-title.no-seperator {
    margin-bottom: 20px;
}

.section .section-title.is-title-left {
    text-align: left;
}

.section .section-title.is-title-left:not(.no-seperator):after {
    margin-right: auto;
}

.section .section-title.is-title-right {
    text-align: right;
}

.section .section-title.is-title-right:not(.no-seperator):after {
    margin-left: auto;
}

.section .section-title.is-title-center {
    text-align: center;
}

.section .section-title.is-title-center:not(.no-seperator):after {
    margin-right: auto;
    margin-left: auto;
}

.section .section-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 29px;
    color: #1F1E1F;
}

.section .section-text.is-title-left {
    text-align: left;
}

.section .section-text.is-title-right {
    text-align: right;
}

.section .section-text.is-title-center {
    text-align: center;
}

.section.is-dark-scheme .section-title {
    color: #F5F5F5;
}

.section.is-dark-scheme .section-text {
    color: #F5F5F5;
}

.services-section-template .services .service .service-inner {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.services-section-template .services .service .service-inner .service-title {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.services-section-template .services .service.is-contrast-block .service-inner {
    background: #CBB5B5;
}

.services-section-template .services .service.is-contrast-block .service-inner .service-title {
    color: #F5F5F5;
}

.services-section-template .services .service.is-contrast-block .service-inner .service-description {
    color: #F5F5F5;
}

.services-section-template .services .service.is-main-block .service-inner {
    background: #e7428f;
}

.services-section-template .services .service.is-main-block .service-inner .service-title {
    color: #F5F5F5;
}

.services-section-template .services .service.is-main-block .service-inner .service-description {
    color: #F5F5F5;
}

.services-section-template1 .services .service .service-inner .service-title {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.services-section-template1.is-dark-scheme .services .service .service-inner .service-title {
    color: #F5F5F5;
}

.services-section-template1.is-dark-scheme .services .service .service-inner .service-description {
    color: #F5F5F5;
}

.services-section-template2 .services .service .service-inner .service-title {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.services-section-template2.is-dark-scheme .services .service .service-inner .service-title {
    color: #F5F5F5;
}

.services-section-template2.is-dark-scheme .services .service .service-inner .service-description {
    color: #F5F5F5;
}

.reviews-section-template .reviews .review .review-inner .review-position {
    color: #e7428f;
}

.reviews-section-template .reviews .review .review-inner .review-name {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.reviews-section-template.is-dark-scheme .reviews .review .review-inner .review-name {
    color: #F5F5F5;
}

.reviews-section-template.is-dark-scheme .reviews .review .review-inner .review-text {
    color: #F5F5F5;
}

.reviews-section-template1 .reviews .review .review-inner .review-position {
    color: #e7428f;
}

.reviews-section-template1 .reviews .review .review-inner .review-name {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.reviews-section-template1.is-dark-scheme .reviews .review .review-inner .review-name {
    color: #F5F5F5;
}

.reviews-section-template1.is-dark-scheme .reviews .review .review-inner .review-text {
    color: #F5F5F5;
}

.reviews-section-template2 .reviews .review .review-inner .review-position {
    color: #e7428f;
}

.reviews-section-template2 .reviews .review .review-inner .review-name {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.branches-section-template .branches .branch .branch-inner {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.branches-section-template .branches .branch .branch-inner .branch-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.branches-section-template1 .branches .branch .branch-inner {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.branches-section-template1 .branches .branch .branch-inner .branch-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.branches-section-template2 .branches .branch .branch-inner .branch-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.advantages-section-template .advantages .advantage .advantage-inner {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.advantages-section-template .advantages .advantage .advantage-inner .advantage-title {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.advantages-section-template .advantages .advantage.is-contrast-block .advantage-inner {
    background: #CBB5B5;
}

.advantages-section-template .advantages .advantage.is-contrast-block .advantage-inner .advantage-title {
    color: #F5F5F5;
}

.advantages-section-template .advantages .advantage.is-contrast-block .advantage-inner .advantage-description {
    color: #F5F5F5;
}

.advantages-section-template .advantages .advantage.is-main-block .advantage-inner {
    background: #e7428f;
}

.advantages-section-template .advantages .advantage.is-main-block .advantage-inner .advantage-title {
    color: #F5F5F5;
}

.advantages-section-template .advantages .advantage.is-main-block .advantage-inner .advantage-description {
    color: #F5F5F5;
}

.advantages-section-template1 .advantages .advantage .advantage-inner .advantage-title {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.advantages-section-template1.is-dark-scheme .advantages .advantage .advantage-inner .advantage-title {
    color: #F5F5F5;
}

.advantages-section-template1.is-dark-scheme .advantages .advantage .advantage-inner .advantage-description {
    color: #F5F5F5;
}

.advantages-section-template2 .advantages .advantage .advantage-inner .advantage-title {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.advantages-section-template2.is-dark-scheme .advantages .advantage .advantage-inner .advantage-title {
    color: #F5F5F5;
}

.advantages-section-template2.is-dark-scheme .advantages .advantage .advantage-inner .advantage-description {
    color: #F5F5F5;
}

.advantages-section-template3 .advantages .advantage .advantage-inner .advantage-title {
    color: #1F1E1F;
    font-weight: 600;
}

.advantages-section-template3.is-dark-scheme .advantages .advantage .advantage-inner .advantage-title {
    color: #F5F5F5;
}

.advantages-section-template3.is-dark-scheme .advantages .advantage .advantage-inner .advantage-description {
    color: #F5F5F5;
}

.gallery-section-template .gallery .gallery-col .gallery-item .gallery-hover {
    background: #e7428f;
}

.gallery-section-template .gallery .gallery-col .gallery-item .gallery-hover svg {
    fill: #fff;
    stroke: #fff;
}

.gallery-section-template1 .gallery .gallery-col .gallery-item .gallery-hover {
    background: #e7428f;
}

.gallery-section-template1 .gallery .gallery-col .gallery-item .gallery-hover svg {
    fill: #fff;
    stroke: #fff;
}

.hwws-section-template .hwws .hww .hww-inner .hww-title {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.hwws-section-template .hwws .hww.is-contrast-block .hww-inner {
    background: #CBB5B5;
}

.hwws-section-template .hwws .hww.is-contrast-block .hww-inner .hww-title {
    color: #F5F5F5;
}

.hwws-section-template .hwws .hww.is-contrast-block .hww-inner .hww-description {
    color: #F5F5F5;
}

.hwws-section-template .hwws .hww.is-main-block .hww-inner {
    background: #e7428f;
}

.hwws-section-template .hwws .hww.is-main-block .hww-inner .hww-title {
    color: #F5F5F5;
}

.hwws-section-template .hwws .hww.is-main-block .hww-inner .hww-description {
    color: #F5F5F5;
}

.hwws-section-template1 .hwws .hww .hww-inner .hww-title {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.hwws-section-template1.is-dark-scheme .hwws .hww .hww-inner .hww-title {
    color: #F5F5F5;
}

.hwws-section-template1.is-dark-scheme .hwws .hww .hww-inner .hww-description {
    color: #F5F5F5;
}

.hwws-section-template2 .hwws .hww .hww-inner .hww-icon {
    font-family: 'Montserrat', sans-serif;
    color: #e7428f;
    font-weight: 700;
}

.hwws-section-template2 .hwws .hww .hww-inner .hww-title {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.hwws-section-template2.is-dark-scheme .hwws .hww .hww-inner .hww-title {
    color: #F5F5F5;
}

.hwws-section-template2.is-dark-scheme .hwws .hww .hww-inner .hww-description {
    color: #F5F5F5;
}

.numbers-section-template {
    background-color: #e7428f;
}

.numbers-section-template .number-value {
    font-family: 'Montserrat', sans-serif;
    color: #e7428f;
    font-weight: 700;
}

.numbers-section-template .number-text {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
}

.numbers-section-template.is-dark-scheme .number-value {
    color: #F5F5F5;
}

.numbers-section-template.is-dark-scheme .number-text {
    color: #F5F5F5;
}

.numbers-section-template1 .number-value {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.numbers-section-template1 .number-text {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
}

.numbers-section-template1.is-dark-scheme .number-value {
    color: #F5F5F5;
}

.numbers-section-template1.is-dark-scheme .number-text {
    color: #F5F5F5;
}

.catalog-section-template .catalog .catalog-item {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.catalog-section-template .catalog .catalog-item .catalog-item-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.catalog-section-template .catalog .catalog-item .catalog-item-description {
    font-family: 'Montserrat', sans-serif;
}

.catalog-section-template .catalog .catalog-item .catalog-item-order .catalog-item-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.catalog-section-template .catalog .catalog-item .catalog-item-order .catalog-item-order-btn button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #e7428f;
}

.employees-section-template .employees .employee .employee-inner .employee-position {
    color: #e7428f;
}

.employees-section-template .employees .employee .employee-inner .employee-name {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.employees-section-template.is-dark-scheme .employees .employee .employee-inner .employee-name {
    color: #F5F5F5;
}

.employees-section-template.is-dark-scheme .employees .employee .employee-inner .employee-text {
    color: #F5F5F5;
}

.employees-section-template1 .employees .employee .employee-inner .employee-position {
    color: #e7428f;
}

.employees-section-template1 .employees .employee .employee-inner .employee-name {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.employees-section-template1.is-dark-scheme .employees .employee .employee-inner .employee-name {
    color: #F5F5F5;
}

.employees-section-template1.is-dark-scheme .employees .employee .employee-inner .employee-text {
    color: #F5F5F5;
}

.employees-section-template2 .employees .employee .employee-inner .employee-picture .employee-hover {
    background: #e7428f;
}

.employees-section-template2 .employees .employee .employee-inner .employee-position {
    color: #e7428f;
}

.employees-section-template2 .employees .employee .employee-inner .employee-name {
    font-family: 'Montserrat', sans-serif;
    color: #1F1E1F;
    font-weight: 700;
}

.tariffs-section-template .tariffs .tariff .tariff-inner {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.tariffs-section-template .tariffs .tariff .tariff-inner .tariff-header .tariff-name {
    font-weight: 700;
}

.tariffs-section-template .tariffs .tariff .tariff-inner .tariff-header .tariff-price {
    font-family: 'Montserrat', sans-serif;
    color: #e7428f;
    font-weight: 700;
}

.tariffs-section-template .tariffs .tariff .tariff-inner .tariff-header .tariff-price-period {
    color: #e7428f;
    font-weight: 700;
}

.tariffs-section-template .tariffs .tariff.is-main-block .tariff-inner .tariff-header {
    background: #e7428f;
}

.tariffs-section-template .tariffs .tariff.is-main-block .tariff-inner .tariff-header .tariff-name {
    color: #F5F5F5;
}

.tariffs-section-template .tariffs .tariff.is-main-block .tariff-inner .tariff-header .tariff-price {
    color: #F5F5F5;
}

.tariffs-section-template .tariffs .tariff.is-main-block .tariff-inner .tariff-header .tariff-price-period {
    color: #F5F5F5;
}

.tariffs-section-template1 .tariffs .tariff .tariff-inner {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.tariffs-section-template1 .tariffs .tariff .tariff-inner .tariff-header .tariff-name {
    font-weight: 700;
    color: #e7428f;
}

.tariffs-section-template1 .tariffs .tariff .tariff-inner .tariff-header .tariff-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.tariffs-section-template1 .tariffs .tariff.is-main-block .tariff-inner {
    background: #e7428f;
}

.tariffs-section-template1 .tariffs .tariff.is-main-block .tariff-inner .tariff-header .tariff-name {
    color: #fff;
}

.tariffs-section-template1 .tariffs .tariff.is-main-block .tariff-inner .tariff-header .tariff-price {
    color: #fff;
}

.tariffs-section-template1 .tariffs .tariff.is-main-block .tariff-inner .tariff-header .tariff-price-period {
    color: #fff;
}

.tariffs-section-template1 .tariffs .tariff.is-main-block .tariff-inner .tariff-description {
    color: #fff;
}

.tariffs-section-template1 .tariffs .tariff.is-main-block .tariff-inner .tariff-description ul li:before {
    border-left-color: #fff;
    border-bottom-color: #fff;
}

.tariffs-section-template1 .tariffs .tariff.is-main-block .tariff-inner .tariff-buy button {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.tariffs-section-template2 .tariffs .tariff .tariff-inner .tariff-header .tariff-name {
    font-weight: 700;
    color: #e7428f;
}

.tariffs-section-template2 .tariffs .tariff .tariff-inner .tariff-header .tariff-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.tariffs-section-template2 .tariffs .tariff.is-main-block .tariff-inner {
    background: #e7428f;
}

.tariffs-section-template2 .tariffs .tariff.is-main-block .tariff-inner .tariff-header .tariff-icon {
    background: #e7428f;
}

.tariffs-section-template2 .tariffs .tariff.is-main-block .tariff-inner .tariff-header .tariff-name {
    color: #fff;
}

.tariffs-section-template2 .tariffs .tariff.is-main-block .tariff-inner .tariff-header .tariff-price {
    color: #fff;
}

.tariffs-section-template2 .tariffs .tariff.is-main-block .tariff-inner .tariff-description {
    color: #fff;
}

.tariffs-section-template2 .tariffs .tariff.is-main-block .tariff-inner .tariff-description ul li:before {
    border-left-color: #fff;
    border-bottom-color: #fff;
}

.tariffs-section-template2 .tariffs .tariff.is-main-block .tariff-inner .tariff-buy button {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.prices-section-template .prices .price .price-inner .price-header {
    background: #e7428f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #F5F5F5;
}

.prices-section-template .prices .price .price-inner .price-values .price-value .price-value-name span {
    font-weight: 700;
}

.prices-section-template .prices .price .price-inner .price-values .price-value .price-value-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.prices-section-template1 .prices .price .price-inner {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.prices-section-template1 .prices .price .price-inner .price-header {
    background: #e7428f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #F5F5F5;
}

.prices-section-template1 .prices .price .price-inner .price-values .price-value .price-value-name span {
    font-weight: 700;
}

.prices-section-template1 .prices .price .price-inner .price-values .price-value .price-value-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.prices-section-template2 .prices .price .price-inner .price-header {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.prices-section-template2 .prices .price .price-inner .price-values .price-value .price-value-name span {
    font-weight: 700;
}

.prices-section-template2 .prices .price .price-inner .price-values .price-value .price-value-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.faqs-section-template .faqs .faq .faq-inner .faq-header .faq-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.faqs-section-template .faqs .faq .faq-inner .faq-header .faq-toggle-btn button svg:nth-child(2) {
    stroke: #e7428f;
}

.faqs-section-template .faqs .faq.opend .faq-inner .faq-header .faq-question {
    color: #e7428f;
}

.faqs-section-template1 .faqs .faq .faq-inner .faq-header .faq-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.faqs-section-template1 .faqs .faq .faq-inner .faq-header .faq-toggle-btn button svg:nth-child(2) {
    stroke: #e7428f;
}

.faqs-section-template1 .faqs .faq.opend .faq-inner .faq-header .faq-question {
    color: #e7428f;
}

.faqs-section-template2 .faqs .faq .faq-inner .faq-header .faq-question {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.faqs-section-template2 .faqs .faq .faq-inner .faq-header .faq-toggle-btn button svg:nth-child(2) {
    stroke: #e7428f;
}

.faqs-section-template2 .faqs .faq.opend .faq-inner .faq-header .faq-question {
    color: #e7428f;
}

.newsblocks-section-template .newsblocks .newsblock .newsblock-inner {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.newsblocks-section-template .newsblocks .newsblock .newsblock-inner .newsblock-date {
    color: #e7428f;
}

.newsblocks-section-template .newsblocks .newsblock .newsblock-inner .newsblock-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.newsblocks-section-template1 .newsblocks .newsblock .newsblock-inner {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.newsblocks-section-template1 .newsblocks .newsblock .newsblock-inner .newsblock-date {
    color: #e7428f;
}

.newsblocks-section-template1 .newsblocks .newsblock .newsblock-inner .newsblock-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.newsblocks-section-template2 .newsblocks .newsblock .newsblock-inner {
    -webkit-box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
    box-shadow: 0px 4px 20px rgba(128, 121, 63, 0.08);
}

.newsblocks-section-template2 .newsblocks .newsblock .newsblock-inner .newsblock-date {
    color: #e7428f;
}

.newsblocks-section-template2 .newsblocks .newsblock .newsblock-inner .newsblock-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

#contacts a {
    color: #326723;
}

.contacts-section-template {
    position: relative;
}

.contacts-section-template .contacts-inner .contacts-data .contact-data .contact-data-icon svg {
    fill: #326723;
}

.contacts-section-template1 {
    position: relative;
}

.contacts-section-template1 .contacts-inner .contacts-data .contact-data .contact-data-icon svg {
    fill: #e7428f;
}

.contacts-section-template2 {
    position: relative;
}

.contacts-section-template2 .contacts-inner .contacts-data .contact-data .contact-data-icon svg {
    fill: #e7428f;
}

.footer.template1 {
    background: #CBB5B5;
}

.footer.template1 .footer-first {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer.template1 .footer-first .site-logo img {
    max-width: 100%;
    height: auto;
}

.footer.template1 .footer-first .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.footer.template1 .footer-first .socials .social a svg {
    -webkit-transition: fill .5s;
    transition: fill .5s;
    fill: #fff;
}

.footer.template1 .footer-first .socials .social:not(:first-child) {
    margin-left: 10px;
}

.footer.template1 .footer-second {
    padding: 30px 0;
}

.footer.template1 .footer-second .footer-menu .menu-elements {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer.template1 .footer-second .footer-menu .menu-elements li {
    margin: 5px;
    display: block;
}

.footer.template1 .footer-second .footer-menu .menu-elements li a {
    color: #fff;
    padding: 10px;
    display: block;
}

@media (max-width: 768px) {
    .footer.template1 .footer-second .footer-menu .menu-elements {
        display: block;
    }
}

.footer.template1 .footer-second .terms-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 15px 0;
}

.footer.template1 .footer-second .terms-link a {
    color: #fff;
}

.footer.template1 .footer-second .copyright {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer.template1 .footer-second .copyright {
        text-align: left;
    }
}

.footer.template2 {
    background: #CBB5B5;
}

.footer.template2 .footer-first {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer.template2 .footer-first .site-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.footer.template2 .footer-first .site-logo img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .footer.template2 .footer-first .site-logo {
        margin-bottom: 10px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer.template2 .footer-first .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.footer.template2 .footer-first .socials .social a svg {
    -webkit-transition: fill .5s;
    transition: fill .5s;
    fill: #fff;
}

.footer.template2 .footer-first .socials .social:not(:first-child) {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .footer.template2 .footer-first .socials {
        margin-top: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer.template2 .footer-first .footer-menu .menu-elements {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer.template2 .footer-first .footer-menu .menu-elements li {
    margin: 5px;
    display: block;
}

.footer.template2 .footer-first .footer-menu .menu-elements li a {
    color: #fff;
    padding: 10px;
    display: block;
}

@media (max-width: 768px) {
    .footer.template2 .footer-first .footer-menu .menu-elements {
        display: block;
        text-align: center;
    }
}

.footer.template2 .footer-first .terms-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 15px 0;
}

.footer.template2 .footer-first .terms-link a {
    color: #fff;
}

@media (max-width: 768px) {
    .footer.template2 .footer-first .terms-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.footer.template2 .footer-second {
    padding: 30px 0;
}

.footer.template2 .footer-second .copyright {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
}

.footer.template3 {
    background: #e7428f;
}

.footer.template3 .footer-first {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer.template3 .footer-first .site-logo img {
    max-width: 100%;
    height: auto;
}

.footer.template3 .footer-first .slogan {
    color: #fff;
    margin-top: 14px;
    max-width: 225px;
    font-size: 16px;
    line-height: 26px;
}

.footer.template3 .footer-second {
    padding: 30px 0;
}

.footer.template3 .footer-second .slogan {
    color: #fff;
    margin-bottom: 14px;
    max-width: 225px;
    font-size: 16px;
    line-height: 26px;
}

.footer.template3 .footer-second .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer.template3 .footer-second .socials .social a svg {
    -webkit-transition: fill .5s;
    transition: fill .5s;
    fill: #fff;
}

.footer.template3 .footer-second .socials .social:not(:first-child) {
    margin-left: 10px;
}

.footer.template3 .footer-second .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer.template3 .footer-second .footer-menu .menu-elements {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 320px;
}

.footer.template3 .footer-second .footer-menu .menu-elements li {
    display: block;
    width: 50%;
}

.footer.template3 .footer-second .footer-menu .menu-elements li a {
    color: #fff;
    padding: 10px;
    display: block;
}

.footer.template3 .footer-second .terms-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 0;
}

.footer.template3 .footer-second .terms-link a {
    color: #fff;
}

.footer.template3 .footer-second .copyright {
    margin-top: 5px;
    color: #fff;
}

@media (max-width: 992px) {
    .footer.template3 .footer-second .footer-menu {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin: 0 -10px;
    }

    .footer.template3 .footer-second .footer-menu .menu-elements {
        max-width: unset;
    }

    .footer.template3 .footer-second .socials {
        margin-top: 30px;
    }

    .footer.template3 .footer-second .copyright {
        margin-top: 0;
    }
}

.header_container .header.template3 .header-line-one .container .contacts div {
    display: none;
}

#help .help-content {
    padding: 60px 80px;
    margin: 35px auto;
    max-width: 1050px;
    width: 100%;
}

#help .help-content h2 {
    text-align: center;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
}

#help .help-content ul {
    padding: 0;
}

#help .help-content li {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #1F1E1F;
    list-style-type: none;
    margin-bottom: 30px;
    padding-left: 60px;
}

#help .help-content li:before {
    content: "";
    background: url('/bitrix/images/check.svg') no-repeat center;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    margin-left: -60px;
    margin-top: -10px;
    background-size: contain;
}

#help .help-content p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #1F1E1F;
}

#help .help-content .plus {
    display: block;
    margin: 0 auto;
}

#help .help-content a {
    margin: 0 auto;
    width: 265px;
    display: block;
    text-align: center;
    border-radius: 0;
    border: 2px solid rgba(0, 0, 0, 0.8);
    margin-top: 30px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-transform: none;
    letter-spacing: inherit;
}

#about_me {
    background-color: #215674;
    position: relative;
}

#about_me .container {
    display: flex;
    padding: 40px 20px;
    color: #fff;
    position: relative;
}

#about_me:after {
    content: "";
    background: #D6CACA;
    width: calc(100vw - 17px);
    display: block;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 40px;
}

#about_me .about_me-left {
    width: calc(100% + 100px);
}

#about_me .about_me-right {
    width: calc(100% - 140px);
    margin-left: 40px;
    padding-bottom: 100px;
}

#about_me h2 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
}

#about_me p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
}

#about_me a {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    color: #e7428f;
}

#about_me a:after {
    content: "";
    display: block;
    height: 2px;
    width: 227px;
    background: #e7428f;
    margin-top: 10px;
    margin-left: 15px;
}

.modal .modal-content {
    background-image: url(imgs/form-background.png);
    background-color: #1F1E1FE0;
    background-repeat: no-repeat;
    padding: 30px 0;
}

.modal .modal-content .modal-title {
    color: white;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    padding: 0 50px;
    margin-bottom: 0;
    margin-top: 10px;
}

.modal .modal-content .modal-title span {
    color: #e7428f;
}

.form .form-group .form-control {
    background: none;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid #CBB5B5;
    outline: none;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    width: calc(100% - 200px);
    margin: 0 auto;
}

.form .form-group .form-control::placeholder {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.modal .modal-content p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    color: #FFFFFF;
    padding: 0 50px;
    text-align: center;
}

.form .form-group button {
    background: #FFFFFF;
    border: 1px solid #CBB5B5;
    box-shadow: -4px 4px 3px #CBB5B5;
    border-radius: 0;
    color: #CBB5B5;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: normal;
    text-transform: none;
    width: 250px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#callback-popup .terms {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    max-width: 100%;
}

.form .form-group:nth-of-type(3) .form-control {
    width: calc(100% - 100px);
    padding-bottom: 100px;
}

.modal .close svg {
    position: absolute;
    top: 0;
    right: 0;
}

@media all and (max-width: 1200px) {
    #help .help-content li {
        font-size: 20px;
        line-height: 29px;
        padding-left: 50px;
    }

    #help .help-content li:before {
        width: 30px;
        height: 30px;
        margin-top: -5px;
        margin-left: -50px;
    }

    #help .help-content p,
    #about_me p {
        font-size: 20px;
        line-height: 29px;
    }

    #help .help-content .plus {
        width: 40px;
    }
}

@media all and (max-width: 992px) {
    #help .help-content {
        padding: 40px;
    }

    #about_me .container {
        flex-direction: column;
    }

    #about_me .about_me-right img {
        margin-top: 30px;
        width: 100%;
    }

    #about_me .about_me-left {
        width: 100%;
    }

    #about_me .about_me-right {
        width: 100%;
        padding-bottom: 30px;
        margin-left: 0;
    }
}

@media all and (max-width: 770px) {
    #help .help-content {
        padding: 20px;
    }

    #help .help-content li:before {
        width: 25px;
        margin-left: -35px;
        margin-top: 0;
    }

    #help .help-content li {
        padding-left: 35px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    #help .help-content p,
    #about_me p {
        font-size: 18px;
    }

    .form .form-group .form-control {
        width: calc(100% - 100px);
    }
}