/* ==========================================================================
   FONTS
   ========================================================================== */
@font-face {
    font-display: swap;
    font-style: normal;
    font-weight: 300;
    font-family: "Gotham Pro";
    src: local("Gotham Pro Light"), local("GothamPro-Light"), url("/images/t1953001/fonts/GothamPro-Light.woff2") format("woff2"), url("/images/t1953001/fonts/GothamPro-Light.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    font-family: "Gotham Pro";
    src: local("Gotham Pro Regular"), local("GothamPro-Regular"), url("/images/t1953001/fonts/GothamPro.woff2") format("woff2"), url("/images/t1953001/fonts/GothamPro.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-style: normal;
    font-weight: 500;
    font-family: "Gotham Pro";
    src: local("Gotham Pro Medium"), local("GothamPro-Medium"), url("/images/t1953001/fonts/GothamPro-Medium.woff2") format("woff2"), url("/images/t1953001/fonts/GothamPro-Medium.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    font-family: "Gotham Pro";
    src: local("Gotham Pro Bold"), local("GothamPro-Bold"), url("/images/t1953001/fonts/GothamPro-Bold.woff2") format("woff2"), url("/images/t1953001/fonts/GothamPro-Bold.woff") format("woff");
}

/* ==========================================================================
   SPECIFICATION
   ========================================================================== */
html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
}

html *,
html ::after,
html ::before {
    -webkit-box-sizing: inherit;
            box-sizing: inherit;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    font-family: "Gotham Pro", Tahoma, sans-serif;
    color: #222222;
    word-wrap: break-word;
    background-color: #fff;
}

a {
    text-decoration: none;
}

a[href] {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-style: none;
}

picture {
    display: block;
}

input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 13px 15px;
    font-weight: 300;
    font-family: inherit;
    color: #222222;
    background-color: #fff;
    border: 1px solid #cdcdcc;
    border-radius: 0;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

input:hover, input:focus,
select:hover,
select:focus,
textarea:hover,
textarea:focus {
    -webkit-box-shadow: 0 0 10px #cdcdcc;
            box-shadow: 0 0 10px #cdcdcc;
    outline: none;
}

textarea {
    resize: none;
}

h1,
h2,
.heading-2,
h3,
.heading-3,
h4,
.heading-4,
h5,
.heading-5,
h6,
.heading-6 {
    font-weight: 300;
    line-height: 1.25;
}

h1 {
    font-size: 30px;
}

h2,
.heading-2 {
    font-size: 30px;
    text-align: center;
}

h3,
.heading-3 {
    font-size: 26px;
}

h4,
.heading-4 {
    font-size: 22px;
}

h5,
.heading-5 {
    font-size: 20px;
}

h6,
.heading-6 {
    font-size: 18px;
}

.container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media screen and (max-width: 1260px) {
    .container {
        width: 960px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        width: 720px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 540px;
    }
}

@media screen and (max-width: 576px) {
    .container {
        width: 100%;
    }
}

.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.button {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding: 18px 30px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    vertical-align: middle;
    font-size: 20px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    word-wrap: normal;
    color: #fff;
    background-color: #2d8b16;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.button:hover, .button:focus {
    background-color: #62af47;
}

.button--with-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 13px 20px;
    font-weight: 300;
    font-size: 16px;
    background-color: #2a9cc1;
}

.button--with-icon::before {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 23px;
    height: 23px;
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}

.button--with-icon:hover::before, .button--with-icon:focus::before {
    -webkit-animation: .6s shake-custom;
            animation: .6s shake-custom;
}

.button--with-icon--phone::before {
    background-image: url("/images/t1953001/img/bg/phone.svg");
}

.button--with-icon:hover, .button--with-icon:focus {
    background-color: #4bb6d9;
}

.button--extra-one {
    padding: 13px 30px;
    font-size: 19px;
    text-transform: uppercase;
    color: #222222;
    background-color: #f6ea00;
    border: 1px solid #f6d000;
    border-radius: 25px;
}

.button--extra-one:hover, .button--extra-one:focus {
    background-color: #f6d000;
}

.button--extra-two {
    padding: 12px 30px;
    font-size: 18px;
    background-color: #2a9cc1;
    border-radius: 25px;
}

.button--extra-two:hover, .button--extra-two:focus {
    background-color: #0b7597;
}

.button--extra-three {
    padding: 18px 30px;
    font-weight: 300;
    font-size: 20px;
    color: #222222;
    background-color: #f6ea00;
    border: 1px solid #f6d000;
    border-radius: 4px;
}

.button--extra-three:hover, .button--extra-three:focus {
    background-color: #f6d000;
}

/* Shake custom
   ========================================================================== */
@-webkit-keyframes shake-custom {
    0% {
        -webkit-transform: rotateZ(0);
                transform: rotateZ(0);
    }
    10% {
        -webkit-transform: rotateZ(-30deg);
                transform: rotateZ(-30deg);
    }
    20% {
        -webkit-transform: rotateZ(15deg);
                transform: rotateZ(15deg);
    }
    30% {
        -webkit-transform: rotateZ(-10deg);
                transform: rotateZ(-10deg);
    }
    40% {
        -webkit-transform: rotateZ(7.5deg);
                transform: rotateZ(7.5deg);
    }
    50% {
        -webkit-transform: rotate(-6deg);
                transform: rotate(-6deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
                transform: rotate(5deg);
    }
    70% {
        -webkit-transform: rotate(-4.28571deg);
                transform: rotate(-4.28571deg);
    }
    80% {
        -webkit-transform: rotate(3.75deg);
                transform: rotate(3.75deg);
    }
    90% {
        -webkit-transform: rotate(-3.33333deg);
                transform: rotate(-3.33333deg);
    }
    100% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
}
@keyframes shake-custom {
    0% {
        -webkit-transform: rotateZ(0);
                transform: rotateZ(0);
    }
    10% {
        -webkit-transform: rotateZ(-30deg);
                transform: rotateZ(-30deg);
    }
    20% {
        -webkit-transform: rotateZ(15deg);
                transform: rotateZ(15deg);
    }
    30% {
        -webkit-transform: rotateZ(-10deg);
                transform: rotateZ(-10deg);
    }
    40% {
        -webkit-transform: rotateZ(7.5deg);
                transform: rotateZ(7.5deg);
    }
    50% {
        -webkit-transform: rotate(-6deg);
                transform: rotate(-6deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
                transform: rotate(5deg);
    }
    70% {
        -webkit-transform: rotate(-4.28571deg);
                transform: rotate(-4.28571deg);
    }
    80% {
        -webkit-transform: rotate(3.75deg);
                transform: rotate(3.75deg);
    }
    90% {
        -webkit-transform: rotate(-3.33333deg);
                transform: rotate(-3.33333deg);
    }
    100% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */
.main-header {
/*    position: relative;
 */
  position:  sticky;
  top: 0;
  width: 100%; /* Шапка займёт всю ширину окна браузера */
  z-index: 1000; /* Высокое значение, чтобы шапка была всегда на первом плане */
    -webkit-box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.main-header__top {
    padding: 15px 0;
 background-color: #efefef;
}

.main-header__top .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.main-header__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
}

.main-header__logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 38px;
}

.main-header__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
    color: #767474;
}

.main-header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
}

/***** Hamburger styles *****/
:root {
    --mb-button-size: 40px;
    --mb-bar-width: 0.8;
    --mb-bar-height: 4px;
    --mb-bar-spacing: 8px;
    --mb-animate-timeout: 0.1s;
}

.main-header__hamburger {
    position: relative;
    display: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: var(--mb-button-size);
    padding: 0 0 0 var(--mb-button-size);
    color: #222222;
    border: none;
    border-radius: 0;
    background: 0 0;
    line-height: var(--mb-button-size);
    vertical-align: middle;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.main-header--transparent .main-header__wr:not(.main-header__wr--sticky) .main-header__hamburger {
    color: #fff;
}

.main-header__hamburger b {
    display: block;
    position: absolute;
    left: calc(var(--mb-button-size) * ((1 - var(--mb-bar-width)) / 2));
    width: calc(var(--mb-button-size) * var(--mb-bar-width));
    height: var(--mb-bar-height);
    border-radius: calc(var(--mb-bar-height) / 2);
    background: currentColor;
    color: inherit;
    opacity: 1;
}

.main-header__hamburger b:nth-of-type(1) {
    bottom: calc(50% + var(--mb-bar-spacing));
    -webkit-transition: bottom .2s ease, width .2s ease, -webkit-transform .2s ease;
    transition: bottom .2s ease, width .2s ease, -webkit-transform .2s ease;
    transition: bottom .2s ease, transform .2s ease, width .2s ease;
    transition: bottom .2s ease, transform .2s ease, width .2s ease, -webkit-transform .2s ease;
}

.main-header__hamburger b:nth-of-type(2) {
    top: calc(50% - (var(--mb-bar-height) / 2));
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.main-header__hamburger b:nth-of-type(3) {
    top: calc(50% + var(--mb-bar-spacing));
    -webkit-transition: top .2s ease, width .2s ease, -webkit-transform .2s ease;
    transition: top .2s ease, width .2s ease, -webkit-transform .2s ease;
    transition: top .2s ease, transform .2s ease, width .2s ease;
    transition: top .2s ease, transform .2s ease, width .2s ease, -webkit-transform .2s ease;
}

.show-main-nav .main-header__hamburger b:nth-of-type(1),
.show-internal-nav .main-header__hamburger b:nth-of-type(1) {
    bottom: calc(50% - (var(--mb-bar-height) / 2));
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.show-main-nav .main-header__hamburger b:nth-of-type(2),
.show-internal-nav .main-header__hamburger b:nth-of-type(2) {
    opacity: 0;
}

.show-main-nav .main-header__hamburger b:nth-of-type(3),
.show-internal-nav .main-header__hamburger b:nth-of-type(3) {
    top: calc(50% - (var(--mb-bar-height) / 2));
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.main-header__hamburger b:nth-of-type(1) {
    -webkit-transition-delay: .2s, 0s;
            transition-delay: .2s, 0s;
}

.main-header__hamburger b:nth-of-type(2) {
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
    -webkit-transition-delay: .2s;
            transition-delay: .2s;
}

.main-header__hamburger b:nth-of-type(3) {
    -webkit-transition-delay: .2s, 0s;
            transition-delay: .2s, 0s;
}

.show-main-nav .main-header__hamburger b:nth-of-type(1),
.show-internal-nav .main-header__hamburger b:nth-of-type(1) {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    -webkit-transition-delay: calc(var(--mb-animate-timeout) + 0s), calc(var(--mb-animate-timeout) + .2s);
            transition-delay: calc(var(--mb-animate-timeout) + 0s), calc(var(--mb-animate-timeout) + .2s);
}

.show-main-nav .main-header__hamburger b:nth-of-type(2),
.show-internal-nav .main-header__hamburger b:nth-of-type(2) {
    -webkit-transition-delay: calc(var(--mb-animate-timeout) + 0s);
            transition-delay: calc(var(--mb-animate-timeout) + 0s);
}

.show-main-nav .main-header__hamburger b:nth-of-type(3),
.show-internal-nav .main-header__hamburger b:nth-of-type(3) {
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
    -webkit-transition-delay: calc(var(--mb-animate-timeout) + 0s), calc(var(--mb-animate-timeout) + .2s);
            transition-delay: calc(var(--mb-animate-timeout) + 0s), calc(var(--mb-animate-timeout) + .2s);
}

/***** End hamburger styles *****/
.main-header__btn-back-call {
    margin-right: 40px;
}

.main-header__messenger {
    margin: 0 18px 0 0;
}

.main-header__bottom {
    background-color: #50ab3a;
}

@media screen and (max-width: 1260px) {
    .main-header__top .container {
        display: block;
    }
    .main-header__left {
        display: block;
        text-align: center;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .main-header__logo {
        display: inline-block;
        vertical-align: middle;
        margin-right: 0;
        margin-bottom: 5px;
    }
    .main-header__desc br {
        display: none;
    }
    .main-header__hamburger {
        display: block;
    }
    .main-header__btn-back-call {
        margin-left: auto;
        margin-right: auto;
    }
    .main-header__right {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
}

@media screen and (max-width: 768px) {
    .main-header__messenger {
        margin-right: 0;
    }
    .main-header__phone-box {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .main-header__btn-back-call {
        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;
        width: 37px;
        height: 37px;
        margin-left: auto;
        margin-right: 2px;
        padding: 0;
        border-radius: 2px;
    }
    .main-header__btn-back-call::before {
        margin-right: 0;
    }
    .main-header__btn-back-call span {
        display: none;
    }
}

.messenger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    list-style: none;
}

.messenger__item {
    margin-right: 2px;
}

.messenger__item:last-child {
    margin-right: 0;
}

.messenger__link {
    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;
    width: 37px;
    height: 37px;
    border-radius: 2px;
}

.messenger--small .messenger__link {
    width: 25px;
    height: 25px;
}

.messenger__link::before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}

.messenger__link:hover::before, .messenger__link:focus::before {
    -webkit-animation: .6s shake-custom;
            animation: .6s shake-custom;
}

.messenger__link--viber {
    background-color: #7c529c;
}

.messenger__link--viber::before {
    width: 26px;
    height: 27px;
    background-image: url("/images/t1953001/img/bg/viber.svg");
}

.messenger--small .messenger__link--viber::before {
    width: 18px;
    height: 19px;
}

.messenger__link--whats-app {
    background-color: #2ab200;
}

.messenger__link--whats-app::before {
    width: 26px;
    height: 26px;
    background-image: url("/images/t1953001/img/bg/whatsapp.svg");
}

.messenger--small .messenger__link--whats-app::before {
    width: 18px;
    height: 18px;
}

.phone-box__number {
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    color: #222222;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.phone-box__number:hover, .phone-box__number:focus {
    color: #2a9cc1;
}

.phone-box__txt {
    margin: 0;
    font-weight: 300;
    font-size: 13px;
}

.phone-box__txt span {
    color: #ee0202;
}

.sidenav__head {
    display: none;
}

.sidenav__logo {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 15px 15px 0 15px;
}

.sidenav__close {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 45px;
    min-height: 45px;
    padding: 10px;
    background-color: transparent;
    background-image: url(/images/t1953001/img/bg/close.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 15px;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    opacity: .5;
}

.sidenav__footer {
    display: none;
    padding: 0 15px;
}

@media screen and (max-width: 1260px) {
    .sidenav {
        position: fixed;
        z-index: 5;
        top: 0;
        bottom: 0;
        left: -310px;
        width: 310px;
        max-height: 100vh;
        background-color: #fff;
        overflow-y: auto;
        visibility: hidden;
        -webkit-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .show-main-nav .sidenav {
        left: 0;
        -webkit-box-shadow: 2px 0 6px rgba(51, 51, 51, 0.26);
                box-shadow: 2px 0 6px rgba(51, 51, 51, 0.26);
        visibility: visible;
    }
    .sidenav__head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .sidenav__footer {
        display: block;
    }
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    visibility: hidden;
    -webkit-transition-duration: .4s;
            transition-duration: .4s;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
            transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-transition-property: background-color, visibility;
    transition-property: background-color, visibility;
}

.show-main-nav .drawer-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    visibility: visible;
}

.show-main-nav body {
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 1260px) {
    .main-nav__list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .main-nav__item-level-1 {
        position: relative;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }
    .main-nav__item-level-1:hover .main-nav__link-level-1 {
        background-color: #50ab3a;
    }
    .main-nav__item-level-1.current-menu-item:hover .main-nav__link-level-1 {
        background-color: #1e670c;
    }
    .main-nav__item-level-1:focus-within .main-nav__link-level-1 {
        background-color: #50ab3a;
    }
    .main-nav__item-level-1.current-menu-item:focus-within .main-nav__link-level-1 {
        background-color: #1e670c;
    }
    .main-nav__item-level-1:hover .main-nav__dropdown-level-2 {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        -webkit-transition: opacity 200ms, -webkit-transform 300ms;
        transition: opacity 200ms, -webkit-transform 300ms;
        transition: transform 300ms, opacity 200ms;
        transition: transform 300ms, opacity 200ms, -webkit-transform 300ms;
    }
    .main-nav__item-level-1:hover .main-nav__dropdown-level-2::before {
        top: -10px;
    }
    .main-nav__item-level-1:focus-within .main-nav__dropdown-level-2 {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scaleY(1);
                transform: scaleY(1);
        -webkit-transition: opacity 200ms, -webkit-transform 300ms;
        transition: opacity 200ms, -webkit-transform 300ms;
        transition: transform 300ms, opacity 200ms;
        transition: transform 300ms, opacity 200ms, -webkit-transform 300ms;
    }
    .main-nav__link-box {
        margin: 0;
    }
    .main-nav__link-level-1 {
        position: relative;
        display: block;
        padding: 19px 15px;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 15px;
        text-align: center;
        color: #fff;
        border-left: 1px solid #1e670c;
        background-color: #2d8b16;
        -webkit-transition: all .15s ease-in;
        transition: all .15s ease-in;
    }
    .current-menu-item .main-nav__link-level-1 {
        background-color: #1e670c;
    }
    .main-nav__item-level-1:last-child .main-nav__link-level-1 {
        border-right: 1px solid #1e670c;
    }
    .main-nav__item-level-1--has-dropdown .main-nav__link-level-1 {
        padding-right: 30px;
    }
    .main-nav__link-level-1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 100%;
        background-color: #50ab3a;
    }
    .main-nav__dropdown-level-2 {
        margin: 0;
        padding: 0;
        list-style: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 2;
        width: 400px;
        padding: 15px 0;
        background-color: #fff;
        -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
                box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scaleY(0.9);
                transform: scaleY(0.9);
        -webkit-transform-origin: 50% 0;
                transform-origin: 50% 0;
        -webkit-transition: opacity 300ms,
 visibility 0ms 300ms,
 -webkit-transform 0ms 300ms;
        transition: opacity 300ms,
 visibility 0ms 300ms,
 -webkit-transform 0ms 300ms;
        transition: transform 0ms 300ms,
 opacity 300ms,
 visibility 0ms 300ms;
        transition: transform 0ms 300ms,
 opacity 300ms,
 visibility 0ms 300ms,
 -webkit-transform 0ms 300ms;
    }
    .main-nav__link-level-2 {
        display: block;
        padding: 10px 25px;
        font-weight: 700;
        text-transform: uppercase;
        color: #474853;
        border-top: 1px solid #eaeaea;
    }
    .current-menu-item > .main-nav__link-level-2, .main-nav__link-level-2:hover, .main-nav__link-level-2:focus {
        color: #51b805;
    }
    .main-nav__caret {
        display: inline-block;
        vertical-align: middle;
        position: absolute;
        top: 50%;
        right: 15px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 3.5px 0 3.5px;
        border-color: #fff transparent transparent transparent;
        -webkit-transform: translate(0, -50%);
                transform: translate(0, -50%);
        pointer-events: none;
    }
}

@media screen and (max-width: 1260px) {
    .main-nav {
        padding: 30px 0;
    }
    .main-nav__list {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .main-nav__link-box {
        margin: 0;
    }
    .main-nav__item-level-1--has-dropdown .main-nav__link-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .main-nav a {
        color: #222222;
    }
    .main-nav__link-level-1 {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        display: block;
        padding: 10px 20px;
        font-weight: 700;
        font-size: 15px;
        line-height: 1.25;
        text-transform: uppercase;
    }
    .current-menu-item .main-nav__link-level-1 {
        color: #51b805;
    }
    .current-menu-item .main-nav__link-level-1:hover, .current-menu-item .main-nav__link-level-1:focus {
        color: #51b805;
    }
    .main-nav__caret {
        position: relative;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        display: block;
        width: 40px;
    }
    .main-nav__caret::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6.5px 0 6.5px 8px;
        border-color: transparent transparent transparent #222222;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-transition: all .35s ease-in-out;
        transition: all .35s ease-in-out;
    }
    .current-menu-item .main-nav__caret::after {
        border-color: transparent transparent transparent #51b805;
    }
    .main-nav__item-level-1--show-dropdown .main-nav__caret::after {
        -webkit-transform: translate(-50%, -50%) rotate(90deg);
                transform: translate(-50%, -50%) rotate(90deg);
    }
    .main-nav__dropdown-level-2 {
        margin: 0;
        padding: 0;
        list-style: none;
        display: none;
        padding-bottom: 15px;
    }
    .main-nav__link-level-2 {
        display: block;
        padding: 5px 40px 5px 20px;
        font-size: 15px;
        line-height: 1.25;
    }
    .current-menu-item > .main-nav__link-level-2 {
        color: #51b805;
    }
}

.calculator__top {
    padding-top: 45px;
    padding-bottom: 30px;
    background: url("/images/t1953001/img/bg/calculator-top.png") no-repeat calc(50vw - 355px) bottom, -webkit-gradient(linear, left top, left bottom, from(white), to(#e7f4e3));
    background: url("/images/t1953001/img/bg/calculator-top.png") no-repeat calc(50vw - 355px) bottom, linear-gradient(180deg, white 0%, #e7f4e3 100%);
}

.calculator__top .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.calculator__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-right: 80px;
}

.calculator__subtitle {
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 35px;
    line-height: 1.25;
}

.calculator__export-method-end-results {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.calculator__export-method {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 205px;
    margin: 0 125px 0 0;
}

.calculator__results {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.calculator__right {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 400px;
    margin-left: auto;
}

.calculator__map {
    display: block;
    margin-bottom: -105px;
}

.calculator__bottom {
    position: relative;
    z-index: 1;
    padding-top: 22px;
}

.calculator__bottom .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.calculator__price-box {
    margin: 0 50px 0 0;
}

@media screen and (max-width: 1260px) {
    .calculator__top .container {
        display: block;
    }
    .calculator__left {
        margin-right: 0;
        margin-bottom: 50px;
    }
    .calculator__right {
        width: auto;
        margin-left: 0;
    }
    .calculator__subtitle {
        text-align: center;
    }
    .calculator__map {
        width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 992px) {
    .calculator__export-method {
        margin-right: 50px;
    }
}

@media screen and (max-width: 768px) {
    .calculator__export-method {
        margin-right: 30px;
    }
    .calculator__bottom .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .calculator__price-box {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 576px) {
    .calculator__export-method-end-results {
        display: block;
    }
    .calculator__export-method {
        margin: 0 auto 30px;
    }
}

@media screen and (max-width: 430px) {
    .calculator__map {
        width: 100%;
    }
}

.export-method {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
}

.export-method__item {
    position: relative;
    margin-right: 15px;
}

.export-method__item--gazelle {
    padding-top: 71px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.export-method__item:nth-child(odd) {
    margin-right: 0;
}

.export-method__item:nth-child(n + 2) {
    margin-top: 15px;
}

.export-method__label {
    position: relative;
    display: block;
    width: 95px;
    padding: 15px 5px 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
    background-color: #fff;
    border: 2px solid #2d8b16;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.export-method__label::before {
    content: "";
    display: block;
    height: 35px;
    margin-bottom: 9px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.export-method__label--gazelle {
    position: static;
    width: 100%;
    height: auto;
    padding-top: 9px;
    padding-bottom: 9px;
}

.export-method__label--gazelle::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 130px;
    height: 62px;
    background-image: url("/images/t1953001/img/bg/white-cargo-vehicles.svg");
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}

.export-method__label--container-1::before {
    background-image: url("/images/t1953001/img/bg/container-1.png");
}

.export-method__label--container-2::before {
    background-image: url("/images/t1953001/img/bg/container-2.png");
}

.export-method__label--container-3::before {
    background-image: url("/images/t1953001/img/bg/container-3.png");
}

.export-method__label--container-4::before {
    background-image: url("/images/t1953001/img/bg/container-4.png");
}

.export-method__field:checked + .export-method__label, .export-method__label:hover {
    border-color: #2a9cc1;
    background-color: #d2f4ff;
}

.calc-results {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    font-size: 18px;
}

.calc-results::after {
    content: "";
    display: block;
    width: 257px;
    height: 144px;
    margin-top: auto;
    margin-bottom: -35px;
    background: url("/images/t1953001/img/bg/garbage-truck.png") no-repeat 0 0;
    background-size: contain;
}

.calc-results__title {
    margin-top: 0;
    margin-bottom: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.calc-results__list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

.calc-results__item {
    margin-bottom: 5px;
}

.calc-results__item:last-child {
    margin-bottom: 0;
}

.calc-results__value {
    font-weight: 700;
    color: #2a9cc1;
}

@media screen and (max-width: 1260px) {
    .calc-results::after {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    .calc-results::after {
        margin: 0 auto;
    }
}

.area-selection-tabs__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
}

.area-selection-tabs__nav a {
    display: block;
    padding: 7px 20px;
    font-size: 18px;
    color: #222222;
    border-radius: 25px;
}

.area-selection-tabs__nav a:focus {
    outline: none;
}

.area-selection-tabs__nav li.ui-tabs-active a {
    font-weight: 700;
    color: #fff;
    background-color: #2a9cc1;
}

@media screen and (max-width: 1260px) {
    .area-selection-tabs__nav {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .area-selection-tabs__moscow-region {
        width: 500px;
        max-width: 100%;
        margin: 0 auto;
    }
}

.map {
    position: relative;
    z-index: 2;
}

.map__region {
    fill: #62af47;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
    cursor: pointer;
}

.map__region--selected, .map__region:hover {
    fill: #2d8b16;
}

.map__subareas {
    fill: #2d8b16;
    pointer-events: none;
}

.map__text-svg {
    font-weight: 700;
    font-size: 4268.5676567px;
    stroke-width: 44.46424484;
    fill: #fff;
    pointer-events: none;
}

.price-box__txt {
    margin-right: 10px;
    font-size: 20px;
    line-height: 1.25;
}

.price-box__value {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: #ee0202;
}

.moscow-region__label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    cursor: pointer;
}

.moscow-region__field-box {
    position: relative;
    margin: 0;
}

.moscow-region__field-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #2d8b16 transparent transparent transparent;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    pointer-events: none;
}

.moscow-region__field {
    padding: 11px 40px 11px 15px;
    font-weight: 400;
    font-size: 16px;
    border: 2px solid #2d8b16;
    border-radius: 4px;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.moscow-region__field:focus {
    -webkit-box-shadow: 0 0 10px rgba(49, 139, 22, 0.7);
            box-shadow: 0 0 10px rgba(49, 139, 22, 0.7);
}

.services-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.services-section__title {
    margin-top: 0;
    margin-bottom: 20px;
}

.services-section__slider {
    margin: 0 auto;
}

.service-slider {
    width: 1100px;
}

.service-slider:not(.slick-initialized) {
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
}

.service-slider:not(.slick-initialized) > * {
    width: 100%;
    display: inline-block;
    white-space: normal;
    vertical-align: top;
}

.service-slider .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.service-slider .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: inherit !important;
}

.slick-slide:focus {
    outline: none;
}

.service-slider .slick-slide > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.service-slider__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    padding: 20px 0;
}

.service-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    padding: 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
}

.service-slider__arrow:hover svg {
    fill: #2a9cc1;
}

.service-slider__arrow:focus {
    outline: none;
}

.service-slider__arrow--prev {
    left: -50px;
}

.service-slider__arrow--prev:hover {
    left: -55px;
}

.service-slider__arrow--next {
    right: -50px;
}

.service-slider__arrow--next:hover {
    right: -55px;
}

.service-slider__arrow svg {
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

@media screen and (max-width: 1260px) {
    .service-slider {
        width: 880px;
    }
}

@media screen and (max-width: 992px) {
    .service-slider {
        width: 660px;
    }
}

@media screen and (max-width: 768px) {
    .service-slider {
        width: 440px;
    }
}

@media screen and (max-width: 576px) {
    .service-slider {
        width: calc(100% - 70px);
    }
    .service-slider .slick-slide > div {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }
    .service-slider__card {
        margin: 0 auto;
    }
}

.service-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 190px;
    text-align: center;
    color: #222222;
    padding: 15px 15px;
    -webkit-box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.2);
            box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.service-card:hover {
    -webkit-box-shadow: 3px 3px 15px 1px rgba(0, 0, 0, 0.3);
            box-shadow: 3px 3px 15px 1px rgba(0, 0, 0, 0.3);
}

.service-card:focus {
    outline: none;
}

.service-card__img-box {
    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;
    margin-top: 0;
    margin-bottom: 12px;
    height: 90px;
}

.service-card__img {
    max-height: 100%;
}

.service-card__name {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 300;
    line-height: 1.25;
    font-size: 16px;
}

.service-card__price {
    margin-top: 0;
    margin-bottom: 23px;
    font-size: 18px;
    line-height: 1.25;
    color: #2a9cc1;
}

.service-card__price b {
    font-weight: 700;
    font-size: 21px;
}

.service-card__button {
    margin: auto 0 0;
}

@media screen and (max-width: 576px) {
    .service-card {
        width: calc(100% - 30px);
    }
}

.triggers {
    padding-top: 50px;
    padding-bottom: 75px;
    background-color: #e7f4e3;
}

.triggers__title {
    margin-top: 0;
    margin-bottom: 40px;
}

.triggers__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.triggers__item {
    width: 200px;
}

@media screen and (max-width: 992px) {
    .triggers__list {
        width: 430px;
        margin: 0 auto;
    }
    .triggers__item {
        margin-right: 30px;
    }
    .triggers__item:nth-child(2n) {
        margin-right: 0;
    }
    .triggers__item:nth-child(n + 3) {
        margin-top: 40px;
    }
}

@media screen and (max-width: 460px) {
    .triggers__list {
        display: block;
        width: 100%;
    }
    .triggers__item {
        margin-right: auto;
        margin-left: auto;
    }
    .triggers__item:nth-child(2n) {
        margin-right: auto;
    }
    .triggers__item:nth-child(n + 2) {
        margin-top: 40px;
    }
}

.trigger {
    position: relative;
    line-height: 1.25;
    text-align: center;
}

.trigger div.image {
    display: block;
    width: 117px;
    height: 117px;
    margin: 0 auto 15px;
    background-color: #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
   padding-top: 24px;
}

.trigger div.image img  { margin: auto; }

.trigger__title {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 20px;
}

.trigger__desc {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 300;
}

.trigger__desc b {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.prices {
    padding-top: 50px;
    padding-bottom: 20px;
}

.prices__title {
    margin-top: 0;
    margin-bottom: 40px;
}

.table-container {
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 1170px;
    border-collapse: collapse;
    line-height: 1.25;
    text-align: center;
    overflow-x: auto;
}

.table tr {
    border-bottom: 1px solid #b9bdbd;
}

.table tr:last-child {
    border-bottom: none;
}

.table th {
    padding: 22px 10px;
    font-weight: 300;
    font-size: 16px;
    background-color: #f1f1f1;
}

.table td {
    padding: 22px 10px;
    font-weight: 700;
    font-size: 18px;
}

.scheme-work {
    padding-top: 50px;
    padding-bottom: 75px;
}

.scheme-work--small-padding-bottom {
    padding-bottom: 30px;
}

.scheme-work__title {
    margin-top: 0;
    margin-bottom: 40px;
}

.scheme-work__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.scheme-work__item {
    margin-right: 15px;
}

.scheme-work__item:nth-child(4n) {
    margin-right: 0;
}

@media screen and (max-width: 1260px) {
    .scheme-work__list {
        width: 592px;
        margin: 0 auto;
    }
    .scheme-work__item:nth-child(4n) {
        margin-right: 30px;
    }
    .scheme-work__item:nth-child(2n) {
        margin-right: 0;
    }
    .scheme-work__item:nth-child(n + 3) {
        margin-top: 15px;
    }
}

@media screen and (max-width: 768px) {
    .scheme-work__list {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .scheme-work__list {
        display: block;
    }
    .scheme-work__item {
        margin-right: auto;
        margin-left: auto;
    }
    .scheme-work__item:nth-child(2n), .scheme-work__item:nth-child(4n) {
        margin-right: auto;
    }
    .scheme-work__item:nth-child(n + 2) {
        margin-top: 15px;
    }
}

.item-scheme-work {
    width: 281px;
    padding: 35px 15px 30px;
    line-height: 1.25;
    text-align: center;
    border: 3px solid #e0e1df;
    border-radius: 7px;
}

.item-scheme-work:nth-child(n + 5) {
    margin-top: 15px;
}

.item-scheme-work div.image {
    display: block;
    height: 64px;
    margin-bottom: 25px;
}

.item-scheme-work div.image img  { margin: auto; }

.item-scheme-work__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
}

.item-scheme-work__desc {
    margin: 0;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .item-scheme-work {
        width: 247px;
    }
}

@media screen and (max-width: 576px) {
    .item-scheme-work {
        width: 100%;
    }
}

.consultation {
    position: relative;
    padding-top: 40px;
    padding-bottom: 45px;
    background: #e7f4e3 url("/images/t1953001/img/bg/consultation.png") no-repeat right bottom;
}

.consultation::after {
    content: "";
    position: absolute;
    right: calc(50vw - 450px);
    bottom: 0;
    width: 290px;
    height: 513px;
    background: url("/images/t1953001/img/bg/consultation-man.png") no-repeat 0 0;
    background-size: contain;
}

.consultation__box {
    width: 560px;
}

.consultation__title {
    margin-top: 0;
    margin-bottom: 7px;
    font-size: 36px;
    line-height: 1.25;
}

.consultation__subtitle {
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.25;
}

.consultation__questions {
    margin: 0 0 37px 0;
}

@media screen and (max-width: 1260px) {
    .consultation {
        background-image: none;
    }
}

@media screen and (max-width: 992px) {
    .consultation::after {
        display: none;
    }
    .consultation__box {
        width: 100%;
    }
}

.questions-consult {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.questions-consult__item {
    position: relative;
    width: calc(50% - 15px);
    margin-right: 30px;
    padding-left: 64px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.25;
}

.questions-consult__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 47px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
}

.questions-consult__item:nth-child(1)::before {
    background-image: url("/images/t1953001/img/bg/questions-consult-1.png");
}

.questions-consult__item:nth-child(2)::before {
    background-image: url("/images/t1953001/img/bg/questions-consult-2.png");
}

.questions-consult__item:nth-child(3)::before {
    background-image: url("/images/t1953001/img/bg/questions-consult-3.png");
}

.questions-consult__item:nth-child(4)::before {
    background-image: url("/images/t1953001/img/bg/questions-consult-4.png");
}

.questions-consult__item:nth-child(2n) {
    margin-right: 0;
}

.questions-consult__item:nth-child(n + 3) {
    margin-top: 28px;
}

@media screen and (max-width: 576px) {
    .questions-consult {
        display: block;
    }
    .questions-consult__item {
        width: 100%;
    }
    .questions-consult__item:nth-child(n + 2) {
        margin-top: 40px;
    }
}

.form-consult__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
}

.form-consult__item {
    width: calc(50% - 15px);
    margin-right: 30px;
}

.form-consult__item:nth-child(2n) {
    margin-right: 0;
}

.form-consult__field {
    padding: 19px 20px;
    font-size: 16px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.form-consult__btn-and-agreement {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.form-consult__button {
    width: calc(50% - 15px);
    margin-right: 30px;
}

.form-consult__agreement {
    width: calc(50% - 15px);
    margin: 0;
    font-weight: 300;
    font-size: 11px;
    line-height: 1.25;
    color: #8b8888;
}

@media screen and (max-width: 576px) {
    .form-consult__list {
        display: block;
        margin-bottom: 10px;
    }
    .form-consult__item {
        width: 100%;
        margin-bottom: 10px;
    }
    .form-consult__item:last-child {
        margin-bottom: 0;
    }
    .form-consult__btn-and-agreement {
        display: block;
    }
    .form-consult__button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .form-consult__agreement {
        width: 100%;
    }
}

.customers {
    padding-top: 50px;
    padding-bottom: 75px;
    overflow: hidden;
}

.customers__title {
    margin-top: 0;
    margin-bottom: 40px;
}

@media screen and (max-width: 1260px) {
    .customers__slider {
        margin: 0 auto;
    }
}

.customers-slider .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.customers-slider .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: inherit !important;
}

.customers-slider .slick-slide > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.customers-slider__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    cursor: pointer;
}

.customers-slider__img-box {
    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;
    margin: 0;
    padding: 0 15px;
}

.customers-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    padding: 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
}

.customers-slider__arrow:hover svg {
    fill: #2a9cc1;
}

.customers-slider__arrow:focus {
    outline: none;
}

.customers-slider__arrow--prev {
    left: -50px;
}

.customers-slider__arrow--prev:hover {
    left: -55px;
}

.customers-slider__arrow--next {
    right: -50px;
}

.customers-slider__arrow--next:hover {
    right: -55px;
}

.customers-slider__arrow svg {
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

@media screen and (max-width: 1260px) {
    .customers-slider {
        width: 880px;
    }
}

@media screen and (max-width: 992px) {
    .customers-slider {
        width: 650px;
    }
}

@media screen and (max-width: 768px) {
    .customers-slider {
        width: 490px;
    }
}

@media screen and (max-width: 576px) {
    .customers-slider {
        width: calc(100% - 70px);
    }
}

.reviews {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f5f5f4;
    overflow: hidden;
}

.reviews__title {
    margin-top: 0;
    margin-bottom: 40px;
}

@media screen and (max-width: 1260px) {
    .reviews__slider {
        margin: 0 auto;
    }
}

.reviews-slider .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.reviews-slider .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: inherit !important;
}

.reviews-slider .slick-slide > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.reviews-slider__item {
    padding: 0 20px;
    font-weight: 300;
    cursor: pointer;
}

.reviews-slider__item p {
    margin: 12px 0;
}

.reviews-slider__item strong {
    font-weight: 700;
    font-size: 15px;
}

.reviews-slider__item *:first-child {
    margin-top: 0;
}

.reviews-slider__item *:last-child {
    margin-bottom: 0;
}

.reviews-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    padding: 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
}

.reviews-slider__arrow:hover svg {
    fill: #2a9cc1;
}

.reviews-slider__arrow:focus {
    outline: none;
}

.reviews-slider__arrow--prev {
    left: -50px;
}

.reviews-slider__arrow--prev:hover {
    left: -55px;
}

.reviews-slider__arrow--next {
    right: -50px;
}

.reviews-slider__arrow--next:hover {
    right: -55px;
}

.reviews-slider__arrow svg {
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

@media screen and (max-width: 1260px) {
    .reviews-slider {
        width: 880px;
    }
    .reviews-slider__item {
        padding: 0 15px;
    }
}

@media screen and (max-width: 992px) {
    .reviews-slider {
        width: 650px;
    }
}

@media screen and (max-width: 768px) {
    .reviews-slider {
        width: 490px;
    }
}

@media screen and (max-width: 576px) {
    .reviews-slider {
        width: calc(100% - 70px);
    }
}

.about-section {
    padding-top: 60px;
    padding-bottom: 75px;
}

.about-section__title {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
}

.about-section .light-box-img {
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
}

.about-section .light-box-img__img {
    width: 350px;
}

@media screen and (max-width: 992px) {
    .about-section .light-box-img__img {
        width: 300px;
    }
}

@media screen and (max-width: 768px) {
    .about-section .light-box-img {
        float: none;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .about-section .light-box-img__img {
        width: 100%;
    }
}

.content {
    font-weight: 300;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    text-align: left;
}

.content h1 {
    margin-top: 40px;
    margin-bottom: 30px;
font-size: 30px;
}

.content h2 {
font-size: 26px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.content h3 {
font-size: 22px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.content h4 {
font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.content h5 {
font-size: 18px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.content h6 {
    margin-top: 15px;
    margin-bottom: 10px;
}

.content p,
.content ul {
    margin: 14px 0;
}

.content strong {
    font-weight: 700;
    color: #2d8b16;
}

.content a {
    color: #2d8b16;
    border-bottom: 1px solid #2d8b16;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.content a:hover, .content a:focus {
    border-color: transparent;
}

.content ul {
    padding: 0;
    list-style: none;
}

.content li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 40px;
}

.content li:last-child {
    margin-bottom: 0;
}

.content li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 20px;
    width: 7px;
    height: 7px;
    background-color: #2d8b16;
    border-radius: 50%;
}

.content *:first-child {
    margin-top: 0;
}

.content *:last-child {
    margin-bottom: 0;
}

.light-box-img {
    position: relative;
    background-color: #27422d;
    overflow: hidden;
}

.light-box-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) url("/images/t1953001/img/bg/magnifying-glass.svg") no-repeat center;
    background-size: 30px 30px;
    opacity: 0;
    -webkit-transition-duration: .3s;
            transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
    transition-property: opacity, -webkit-transform, -webkit-filter;
    transition-property: opacity, transform, filter;
    transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
    pointer-events: none;
}

.light-box-img:hover::after {
    opacity: 1;
}

.light-box-img:hover .light-box-img__img {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
}

.light-box-img__img {
    -webkit-transition-duration: .3s;
            transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
    transition-property: opacity, -webkit-transform, -webkit-filter;
    transition-property: opacity, transform, filter;
    transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
    -o-object-fit: cover;
       object-fit: cover;
}

.main-footer__top {
    padding-top: 50px;
    padding-bottom: 30px;
    background-color: #eef5fb;
}

.main-footer__top .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-footer__logo-and-apps {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 175px;
    margin-right: 60px;
}

.main-footer__logo {
    display: block;
    margin-bottom: 24px;
}

.main-footer__logo--mobile {
    display: none;
}

.main-footer__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-right: 40px;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
}

.main-footer__nav li {
    margin-bottom: 8px;
}

.main-footer__nav a {
    font-size: 16px;
    line-height: 1.25;
    color: #222222;
    border-bottom: 1px solid transparent;
}

.main-footer__nav a:hover, .main-footer__nav a:focus {
    color: #2a9cc1;
    text-decoration: underline;
}

.main-footer__buttons-and-partners {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 215px;
    margin-right: 40px;
}

.main-footer__btn-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 45px;
}

.main-footer__btn-item {
    margin-bottom: 10px;
}

.main-footer__btn-item:last-child {
    margin-bottom: 0;
}

.main-footer__btn-order {
    width: 100%;
    padding: 13px 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.main-footer__btn-feedback {
    width: 100%;
    padding: 14px 10px;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
}

.main-footer__contacts-and-social {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 240px;
}

.main-footer__contacts {
    margin: 0 0 40px 0;
}

.main-footer__social {
    margin: -10px -10px 0 0;
}

.main-footer__bottom {
    padding: 15px 0;
    font-weight: 300;
    line-height: 1.25;
    background-color: #d7e4ef;
}

.main-footer__bottom .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.main-footer__copyright {
    margin: 0 30px 0 0;
}

.main-footer__link {
    color: #222222;
    border-bottom: 1px solid transparent;
}

.main-footer__link:first-of-type {
    margin-right: 30px;
    margin-left: auto;
}

.main-footer__link:hover, .main-footer__link:focus {
    color: #2a9cc1;
    text-decoration: underline;
}

@media screen and (max-width: 1260px) {
    .main-footer__top .container {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .main-footer__logo--desktop {
        display: none;
    }
    .main-footer__logo--mobile {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        display: block;
    }
    .main-footer__nav {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        -webkit-column-count: 4;
           -moz-column-count: 4;
                column-count: 4;
    }
    .main-footer__logo-and-apps {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        margin-right: 40px;
    }
    .main-footer__buttons-and-partners {
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
    }
    .main-footer__contacts-and-social {
        -webkit-box-ordinal-group: 6;
            -ms-flex-order: 5;
                order: 5;
        width: 460px;
    }
    .main-footer__bottom {
        text-align: center;
    }
    .main-footer__bottom .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .main-footer__copyright {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .main-footer__link {
        margin-bottom: 10px;
    }
    .main-footer__link:first-of-type {
        margin-right: 0;
        margin-left: 0;
    }
    .main-footer__link:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 992px) {
    .main-footer__logo-and-apps {
        width: 100%;
    }
    .main-footer__nav {
        -webkit-column-count: 3;
           -moz-column-count: 3;
                column-count: 3;
    }
    .main-footer__apps {
        margin-bottom: 30px;
    }
    .main-footer__contacts-and-social {
        width: 435px;
    }
}

@media screen and (max-width: 768px) {
    .main-footer__nav {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
    }
    .main-footer__buttons-and-partners {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .main-footer__btn-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .main-footer__btn-item {
        width: calc(50% - 5px);
        margin-right: 10px;
        margin-bottom: 0;
    }
    .main-footer__btn-item:last-child {
        margin-right: 0;
    }
    .main-footer__contacts-and-social {
        width: 100%;
    }
    .main-footer__social {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .main-footer__nav {
        text-align: center;
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1;
    }
    .main-footer__logo--mobile {
        margin-right: auto;
        margin-left: auto;
    }
}

@media screen and (max-width: 450px) {
    .main-footer__btn-list {
        display: block;
    }
    .main-footer__btn-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .main-footer__btn-item:last-child {
        margin-bottom: 0;
    }
}

.apps__title {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.25;
    color: #2d8b16;
}

@media screen and (max-width: 1260px) {
.apps__title { display: none; }
}

.apps__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.apps__item {
    margin-bottom: 5px;
}

.apps__item:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .apps__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .apps__item {
        margin-right: 10px;
        margin-bottom: 0;
    }
    .apps__item:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 390px) {
    .apps__title {
        text-align: center;
    }
    .apps__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .apps__item {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .apps__item:last-child {
        margin-bottom: 0;
    }
}

.partners-small-box {


}

.partners-small-box__title {
    position: relative;
    margin-top: 0;
    margin-bottom: 19px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    color: #2d8b16;
}

.partners-small-box__title::before {
    content: "";
    position: absolute;
    top: -38px;
    left: 50%;
    display: block;
    width: 31px;
    height: 32px;
    background: url("/images/t1953001/img/bg/leaf.png") no-repeat 0 0;
    background-size: contain;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}

.partners-small-box__slider:not(.slick-initialized) {
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
}

.partners-small-box__slider:not(.slick-initialized) > * {
    width: 100%;
    display: inline-block;
    white-space: normal;
    vertical-align: top;
}

.partners-small-slider__item {
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
}

.partners-small-slider__item:focus {
    outline: none;
}

.partners-small-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    padding: 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    opacity: .6;
}

.partners-small-slider__arrow:hover {
    opacity: 1;
}

.partners-small-slider__arrow:hover svg {
    fill: #2a9cc1;
}

.partners-small-slider__arrow:focus {
    outline: none;
}

.partners-small-slider__arrow--prev {
    left: -30px;
}

.partners-small-slider__arrow--prev:hover {
    left: -35px;
}

.partners-small-slider__arrow--next {
    right: -30px;
}

.partners-small-slider__arrow--next:hover {
    right: -35px;
}

.partners-small-slider__arrow svg {
    width: 10px;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.addresses__list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}

.addresses__item {
    display: none;
    margin-bottom: 7px;
}

.addresses__item:first-child {
    display: block;
}

.addresses__item:last-child {
    margin-bottom: 0;
}

.addresses--show .addresses__item {
    display: block;
}

.addresses__btn-show-all {
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    color: #2d8b16;
    background-color: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 1px dashed #2d8b16;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.addresses--show .addresses__btn-show-all {
    border-bottom: none;
}

.addresses__btn-show-all:hover {
    color: #51b805;
    border-bottom-color: transparent;
}

.addresses__btn-show-all:focus {
    outline: none;
}

.contacts-list {
    padding: 0;
    list-style: none;
    font-size: 16px;
    line-height: 1.25;
}

.contacts-list__item {
    margin-bottom: 25px;
}

.contacts-list__item:last-child {
    margin-bottom: 0;
}

.contacts-list--extra .contacts-list__item {
    margin-bottom: 35px;
}

.contacts-list__item--d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contacts-list__item--messenger-and-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contacts-list a:hover, .contacts-list a:focus {
    color: #50ab3a;
}

.contacts-list__link {
    position: relative;
    display: block;
    padding-left: 50px;
    color: #222222;
}

.contacts-list--extra .contacts-list__link {
    padding-left: 80px;
}

.contacts-list__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.contacts-list--extra .contacts-list__link::before {
    top: -5px;
    width: 40px;
    height: 40px;
}

.contacts-list__link:hover::before {
    -webkit-animation: .6s shake-custom;
            animation: .6s shake-custom;
}

.contacts-list__link--phone {
    font-weight: 400;
    font-size: 20px;
}

.contacts-list__link--phone::before {
    background-image: url("/images/t1953001/img/bg/phone-call.svg");
}

.contacts-list--extra .contacts-list__link--phone::before {
    background-image: url("/images/t1953001/img/bg/phone-call--green.svg");
}

.contacts-list__link--phone--many {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.contacts-list__link--address::before {
    background-size: 22px auto;
    background-image: url("/images/t1953001/img/bg/marker.svg");
}

.contacts-list__link--email::before {
    background-size: 27px auto;
    background-image: url("/images/t1953001/img/bg/envelope.svg");
}

.contacts-list--extra .contacts-list__link--email::before {
    background-size: auto auto;
    background-image: url("/images/t1953001/img/bg/envelope--green.svg");
}

.contacts-list__link--email:hover, .contacts-list__link--email:focus {
    color: #2a9cc1;
}

.contacts-list__phone {
    margin-bottom: 6px;
    font-weight: 400;
    font-size: 20px;
    color: #222222;
}

.contacts-list__phone:last-child {
    margin-bottom: 0;
}

.contacts-list__messenger {
    width: 80px;
}

.social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.social-list__item {
    margin-top: 10px;
    margin-right: 10px;
}

.social-list__link {
    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;
    width: 46px;
    height: 46px;
    background-color: #fff;
    border: 1px solid #dfdddd;
}

.social-list__link:hover, .social-list__link:focus {
    background-color: #2d8b16;
    border-color: #2d8b16;
}

.social-list__link:hover svg,
.social-list__link:focus svg {
    fill: #fff;
}

/* ==========================================================================
   ARTICLE PAGE
   ========================================================================== */
.page-content {
    padding-top: 33px;
    padding-bottom: 60px;
}

.page-content__breadcrumbs {
    margin-bottom: 32px;
}

.page-content__title {
    margin-top: 0;
    margin-bottom: 35px;
}

.page-content__posts {
    margin: 0;
}

.page-content > *:first-child {
    margin-top: 0;
}

.page-content > *:last-child {
    margin-bottom: 0;
}

.breadcrumbs {
    font-weight: 300;
    font-size: 13px;
    line-height: 1.25;
    color: #737372;
}

.breadcrumbs a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    padding-right: 18px;
    color: #737372;
}

.breadcrumbs a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.5px 0 2.5px 3px;
    border-color: transparent transparent transparent #737372;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
}

.breadcrumbs a:hover, .breadcrumbs a:focus {
    text-decoration: underline;
    color: #2a9cc1;
}

.breadcrumbs span {
    display: inline-block;
    vertical-align: middle;
    color: #acacac;
}

.article__txt {
    margin-bottom: 25px;
}

.article__objects-list {
    margin: -5px 0 30px 0;
}

.article__order {
    margin-bottom: 35px;
}

.article__slider {
    margin-bottom: 30px;
}

.objects-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.objects-list li {
    margin-top: 5px;
    margin-right: 20px;
}

.objects-list a {
    font-size: 14px;
    line-height: 1.25;
    text-decoration: underline;
    color: #2d8b16;
}

.objects-list a:hover, .objects-list a:focus {
    text-decoration: none;
    color: #51b805;
}

.wide-slider:not(.slick-initialized) {
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
}

.wide-slider:not(.slick-initialized) > * {
    width: 100%;
    display: inline-block;
    white-space: normal;
    vertical-align: top;
}

.wide-slider__img {
    -o-object-fit: cover;
       object-fit: cover;
}

.wide-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    padding: 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
}

.wide-slider__arrow:hover svg {
    fill: #2a9cc1;
}

.wide-slider__arrow:focus {
    outline: none;
}

.wide-slider__arrow--prev {
    left: 20px;
}

.wide-slider__arrow--prev:hover {
    left: 15px;
}

.wide-slider__arrow--next {
    right: 20px;
}

.wide-slider__arrow--next:hover {
    right: 15px;
}

.wide-slider__arrow svg {
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.service-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.service-order__txt {
    padding: 18px 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 17px 0 0;
    font-size: 25px;
    line-height: 1.25;
    border: 1px solid #2d8b16;
    border-radius: 4px;
}

.service-order__txt b {
    margin: 0;
    font-weight: 700;
    color: #2d8b16;
}

.service-order__button {
    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;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 240px;
    padding-top: 21px;
    padding-bottom: 21px;
}

@media screen and (max-width: 992px) {
    .service-order {
        display: block;
    }
    .service-order__txt {
        margin-right: 0;
        margin-bottom: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 576px) {
    .service-order__txt {
        padding-left: 20px;
    }
}

/* ==========================================================================
   ARTICLES PAGE
   ========================================================================== */
.posts-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.posts-list__item {
    width: calc(50% - 20px);
    margin-right: 40px;
}

.posts-list__item .date {
background: #2a9cc1; color: #fff; padding: 5px; padding-right: 10px; padding-left: 10px;
font-size: 12px; 
margin-top: 0px;
margin-bottom: 10px;
display: inline-block;
}

.posts-list__item:nth-child(2n) {
    margin-right: 0;
}

.posts-list__item:nth-child(n + 3) {
    margin-top: 50px;
}

@media screen and (max-width: 1260px) {
    .posts-list__item {
        width: calc(50% - 15px);
        margin-right: 30px;
    }
}

@media screen and (max-width: 768px) {
    .posts-list__item {
        width: 100%;
        margin-right: 0;
    }
    .posts-list__item:nth-child(n + 2) {
        margin-top: 50px;
    }
}

.post-item__img-link {
    position: relative;
    display: block;
    height: 300px;
    margin-bottom: 20px;
    background-color: #27422d;
    overflow: hidden;
}

.post-item__img-link:hover .post-item__img,
.post-item__img-link:focus .post-item__img {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
}

.post-item__img {
    width: 100%;
    height: 100%;
    -webkit-transition-duration: .3s;
            transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
    transition-property: opacity, -webkit-transform, -webkit-filter;
    transition-property: opacity, transform, filter;
    transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
    -o-object-fit: cover;
       object-fit: cover;
}

.post-item__title {
    margin-top: 0;
    margin-bottom: 10px;
}

.post-item__title a {
    font-size: 18px;
    line-height: 1.25;
    color: #2d8b16;
}

.post-item__title a:hover, .post-item__title a:focus {
    text-decoration: underline;
}

@media screen and (max-width: 1260px) {
    .post-item__img-link {
        height: 240px;
    }
}

@media screen and (max-width: 992px) {
    .post-item__img-link {
        height: 175px;
    }
}

@media screen and (max-width: 768px) {
    .post-item__img-link {
        height: 270px;
    }
}

@media screen and (max-width: 576px) {
    .post-item__img-link {
        height: 0;
        padding-top: 56.25%;
    }
    .post-item__img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 43px;
}

.pagination__current {
    color: #fff;
    background-color: #2d8b16;
}

.pagination__link {
    color: #2d8b16;
}

.pagination__link:hover, .pagination__link:focus {
    color: #2a9cc1;
}

.pagination__link:hover span,
.pagination__link:focus span {
    border-bottom-color: transparent;
}

.pagination__link span {
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
    border-bottom: 1px solid #2d8b16;
}

.pagination__btn-next {
    color: #2d8b16;
}

.pagination__btn-next:hover, .pagination__btn-next:focus {
    color: #2a9cc1;
}

.pagination__current,
.pagination__link,
.pagination__btn-next {
    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;
    width: 46px;
    height: 46px;
    font-size: 20px;
    line-height: 1.25;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

/* ==========================================================================
   CAR PARK PAGE
   ========================================================================== */
.car-park__list {
    margin: 0;
}

.cars-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.cars-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
}

.cars-list__item:nth-child(3n) {
    margin-right: 0;
}

.cars-list__item:nth-child(n + 4) {
    margin-top: 30px;
}

@media screen and (max-width: 992px) {
    .cars-list__item {
        width: calc((100% - 30px) / 2);
    }
    .cars-list__item:nth-child(3n) {
        margin-right: 30px;
    }
    .cars-list__item:nth-child(2n) {
        margin-right: 0;
    }
    .cars-list__item:nth-child(n + 3) {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .cars-list__item {
        width: 100%;
        margin-right: 0;
    }
    .cars-list__item:nth-child(3n) {
        margin-right: 0;
    }
    .cars-list__item:nth-child(n + 2) {
        margin-top: 30px;
    }
}

.car-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 25px;
    color: #222222;
    border: 1px solid #c9c8c8;
    border-radius: 7px;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.car-item:hover, .car-item:focus {
    -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
}

.car-item__img-box {
    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: 215px;
    margin-top: 0;
    margin-bottom: 15px;
    border-radius: 7px 7px 0 0;
    overflow: hidden;
}

.car-item__img {
    max-height: 100%;
}

.car-item__name {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
}

.car-item__desc {
    margin-bottom: 20px;
    font-size: 13px;
    color: #666666;
}

.car-item__desc p {
    margin: 0;
}

.car-item__desc ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.car-item__desc *:first-child {
    margin-top: 0;
}

.car-item__desc *:last-child {
    margin-bottom: 0;
}

.car-item__button {
    margin-top: auto;
    margin-bottom: 0;
}

@media screen and (max-width: 576px) {
    .car-item {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* ==========================================================================
   CONTACTS PAGE
   ========================================================================== */
.contacts__list-and-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
}

.contacts__left {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-right: 50px;
}

.contacts__title {
    margin-top: 0;
    margin-bottom: 35px;
    text-align: left;
}

.contacts__list {
    margin: 0;
}

.contacts__right {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 640px;
}

.contacts__address-list {
    margin: 0;
}

@media screen and (max-width: 1260px) {
    .contacts__list-and-form {
        display: block;
    }
    .contacts__left {
        margin-right: 0;
    }
    .contacts__title {
        text-align: center;
    }
    .contacts__right {
        width: auto;
    }
}

.form {
    padding: 30px;
    background-color: #e7e8e6;
    border-radius: 7px;
}

.form__fields {
    margin: 0 0 15px 0;
}

.form__btn-and-agreement {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.form__button {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 195px;
    margin-right: 15px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.form__agreement {
    margin: 0;
    font-weight: 300;
    font-size: 11px;
    line-height: 1.25;
    color: #8b8888;
}

@media screen and (max-width: 576px) {
    .form {
        padding-right: 15px;
        padding-left: 15px;
    }
    .form__btn-and-agreement {
        display: block;
    }
    .form__button {
        width: 100%;
        margin-bottom: 10px;
    }
}

.fields-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.fields-list__item {
    width: 100%;
    margin-bottom: 15px;
}

.fields-list__item:nth-child(1) {
    width: calc(50% - 7.5px);
    margin-right: 15px;
}

.fields-list__item:nth-child(2) {
    width: calc(50% - 7.5px);
}

.fields-list__item:last-child {
    margin-bottom: 0;
}

.fields-list__field {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.fields-list__field--textarea {
    height: 90px;
}

@media screen and (max-width: 576px) {
    .fields-list__item:nth-child(1) {
        width: 100%;
        margin-right: 0;
    }
    .fields-list__item:nth-child(2) {
        width: 100%;
    }
}

.address-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.address-list__item {
    width: calc((100% - 30px) / 2);
    margin-right: 30px;
}

.address-list__item:nth-child(2n) {
    margin-right: 0;
}

.address-list__item:nth-child(n + 3) {
    margin-top: 30px;
}

.address-list__txt {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
}

.address-list__map {
    height: 300px;
}

@media screen and (max-width: 992px) {
    .address-list__item {
        width: 100%;
        margin-right: 0;
    }
    .address-list__item:nth-child(n + 2) {
        margin-top: 30px;
    }
}

.info-window {
    width: 210px;
    line-height: 1.25;
}

.info-window__img {
    width: 100%;
    margin-bottom: 10px;
    -o-object-fit: cover;
       object-fit: cover;
}

.info-window__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 14px;
}

.info-window__subtitle {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 13px;
}

.info-window__phone {
    font-weight: 500;
    color: #2a9cc1;
}

.info-window__phone:hover, .info-window__phone:focus {
    text-decoration: underline;
}

/* ==========================================================================
   GEOGRAPHY PAGE
   ========================================================================== */
.geography__geography-work {
    margin: 0;
}

.geography-work {
    padding: 0;
    list-style: none;
}

.geography-work__item {
    margin-bottom: 20px;
}

.geography-work__item:last-child {
    margin-bottom: 0;
}

.geography-work__title {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
}

.geography-work__list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: -8px;
}

.geography-work__list--row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -10px;
}

.geography-work__list--column {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}

.geography-work__list li {
    margin-bottom: 8px;
}

.geography-work__list--row li {
    margin-right: 10px;
}

.geography-work__list a {
    color: #2d8b16;
}

.geography-work__list a:hover, .geography-work__list a:focus {
    text-decoration: underline;
}

@media screen and (max-width: 992px) {
    .geography-work__list--column {
        -webkit-column-count: 4;
           -moz-column-count: 4;
                column-count: 4;
    }
}

@media screen and (max-width: 768px) {
    .geography-work__list--column {
        -webkit-column-count: 3;
           -moz-column-count: 3;
                column-count: 3;
    }
}

@media screen and (max-width: 576px) {
    .geography-work__list--column {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
    }
}

@media screen and (max-width: 400px) {
    .geography-work__list--column {
        -webkit-column-count: 1;
           -moz-column-count: 1;
                column-count: 1;
    }
}

/* ==========================================================================
   REVIEWS PAGE
   ========================================================================== */
.reviews__button-box {
    margin: 0 0 40px 0;
}

.reviews__button {
    min-width: 190px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.reviews__form {
    width: 640px;
    margin-bottom: 50px;
}

.reviews__form a  { color: #2d8b16; text-decoration: underline; margin-left: 15px; margin-top: 8px; display: inline-block; }

.reviews__form  .captcha_input { margin-top: 30px; display: block;  }
 


.reviews__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.reviews__item {
    margin-bottom: 41px;
    border-bottom: 1px solid #9b9b9b;
    padding-bottom: 37px;
}

.reviews__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media screen and (max-width: 1260px) {
    .reviews__form {
        width: 100%;
    }
}

.review-item__name {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 15px;
}

/* ==========================================================================
   PRICE LIST PAGE
   ========================================================================== */
.price-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price-list__item {
    margin-bottom: 50px;
}

.price-list__item:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.services__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.services__item {
    margin-right: 30px;
}

.services__item:nth-child(3n) {
    margin-right: 0;
}

.services__item:nth-child(n + 4) {
    margin-top: 30px;
}

@media screen and (max-width: 1260px) {
    .services__item:nth-child(3n) {
        margin-right: 30px;
    }
    .services__item:nth-child(2n) {
        margin-right: 0;
    }
    .services__item:nth-child(n + 3) {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .services__item {
        margin-right: auto;
        margin-left: auto;
    }
    .services__item:nth-child(2n), .services__item:nth-child(3n) {
        margin-right: auto;
    }
    .services__item:nth-child(n + 2) {
        margin-top: 30px;
    }
}

.service-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 370px;
    color: #222222;
    border: 1px solid #c9c8c8;
    border-radius: 7px;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

.service-item:hover, .service-item:focus {
    -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
}

.service-item__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 0 25px 25px;
}

.service-item__img-link {
    position: relative;
    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: 240px;
    margin-bottom: 15px;
    border-radius: 7px 7px 0 0;
    overflow: hidden;
}

.service-item__img-link:hover .service-item__img,
.service-item__img-link:focus .service-item__img {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
}

.service-item__img {
    width: 100%;
    height: 100%;
    -webkit-transition-duration: .3s;
            transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out;
    -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
    transition-property: opacity, -webkit-transform, -webkit-filter;
    transition-property: opacity, transform, filter;
    transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
    -o-object-fit: cover;
       object-fit: cover;
}

.service-item__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
}

.service-item__title a {
    color: #222222;
}

.service-item__title a:hover, .service-item__title a:focus {
    text-decoration: underline;
}

.service-item__excerpt {
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
}

.service-item__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: auto;
}

.service-item__btn-order {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-right: 30px;
}

.service-item__btn-more {
    display: block;
    color: #2d8b16;
}

.service-item__btn-more:hover span,
.service-item__btn-more:focus span {
    border-bottom-color: #2d8b16;
}

.service-item__btn-more span {
    font-weight: 300;
    font-size: 18px;
    border-bottom: 1px solid transparent;
    -webkit-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

@media screen and (max-width: 992px) {
    .service-item {
        width: 330px;
    }
    .service-item__img-link {
        height: 214px;
    }
    .service-item__body {
        padding-right: 20px;
        padding-left: 20px;
    }
    .service-item__buttons {
        display: block;
    }
    .service-item__btn-order {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .service-item__btn-more {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .service-item {
        width: 100%;
    }
    .service-item__img-link {
        height: 331px;
    }
    .service-item__body {
        padding-right: 25px;
        padding-left: 25px;
    }
    .service-item__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .service-item__btn-order {
        width: auto;
        margin-right: 30px;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    .service-item__img-link {
        height: 0;
        padding-top: 65.22%;
    }
    .service-item__img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .service-item__body {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 400px) {
    .service-item__buttons {
        display: block;
    }
    .service-item__btn-order {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   SPONSOR PAGE
   ========================================================================== */
.sponsors__txt {
    margin-bottom: 25px;
}

.sponsors__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.sponsors__item {
    margin-right: 30px;
}

.sponsors__item:nth-child(3n) {
    margin-right: 0;
}

.sponsors__item:nth-child(n + 4) {
    margin-top: 30px;
}

@media screen and (max-width: 1260px) {
    .sponsors__item:nth-child(3n) {
        margin-right: 30px;
    }
    .sponsors__item:nth-child(2n) {
        margin-right: 0;
    }
    .sponsors__item:nth-child(n + 3) {
        margin-top: 30px;
    }
}

@media screen and (max-width: 768px) {
    .sponsors__item {
        margin-right: 0;
    }
    .sponsors__item:nth-child(3n) {
        margin-right: 0;
    }
    .sponsors__item:nth-child(n + 2) {
        margin-top: 30px;
    }
}

.sponsor-item {
    width: 366px;
    padding: 25px;
    text-align: center;
    border: 1px solid #c9c8c8;
    border-radius: 7px;
}

.sponsor-item__img-box {
    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: 170px;
    margin-top: 0;
    margin-bottom: 15px;
    border-radius: 7px 7px 0 0;
    overflow: hidden;
}

.sponsor-item__img {
    max-height: 100%;
}

.sponsor-item__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.25;
}

.sponsor-item__txt {
    font-size: 13px;
    color: #666;
}

@media screen and (max-width: 992px) {
    .sponsor-item {
        width: 330px;
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 768px) {
    .sponsor-item {
        width: 100%;
        padding-right: 25px;
        padding-left: 25px;
    }
}

@media screen and (max-width: 576px) {
    .sponsor-item {
        padding-right: 20px;
        padding-left: 20px;
    }
}




#ajaxLoader{width: 54px;height: 54px;padding: 11px;box-shadow: 0 2px 2px rgba(204, 204, 204, 0.7);-moz-box-shadow: 0 2px 6px rgba(150, 150, 150, 0.7);-webkit-box-shadow: 0 2px 2px rgba(204, 204, 204, 0.7);border-radius: 9px;-moz-border-radius: 9px;-webkit-border-radius: 9px;background-color: #FFF; }

#message,  #error
{
    z-index: 1;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px;
    font-size: 16px;
    border-collapse: collapse;
    background-color: #ffffff !important;
    border-radius: 5px;
text-align: center;
font-weight: normal;
margin-bottom: 15px;
}

#message i,  #error i { margin-right: 5px; }

#message
{
    border: 1px solid #3a7e34;
    color: #3a7e34;
}

#error
{
    border: 1px solid #c4272b;
    color: #c4272b;
}



.formblock { padding: 40px;  font-size: 16px; padding-top: 5px;  max-width: 410px; }

.formblock label { padding: 0px; margin: 0px; font-size: 16px; text-align: left; }

.formblock input[type=text] { width: 100%; padding: 10px; border: 1px #ccc solid; }

.formblock button {  }

.formblock .form_modal { margin-top: 25px; width:  100%;  }

.formblock .form_modal .row_input { margin-bottom: 25px; }

.field_accept_callback { color: #cccccc; font-size: 12px;  line-height: 15px; margin-bottom: 20px; }