/*
* Main stylesheet file
* Please stick to style BEM Two Dashes --> block-name__elem-name--mod-name--mod-val
*/

@import "fonts.css";

/* ------------------------------------------ */
/* default */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    min-width: 320px;
    overflow-x: hidden;
    color: #000;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 74px;
}

h1, .title {
    font-size: 40px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

h3, .title-md {
    font-size: 24px;
    font-weight: bold;
    margin-top: 0;
}

h4, .title-sm {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 0;
}

p {
    margin-top: 0;
    margin-bottom: 10px;
}

b, strong, .font-bold {
    font-weight: bold;
}

hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}
.errortext {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid red;
    display: block;
    font-size: 14px;
}
.success-text {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #1C9331;
    color: #1C9331;
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}
.font-medium {
    font-weight: 600;
}

.text-color-white {
    color: #fff;
}

.text-color-green {
    color: #1C9331;
}

.text-center {
    text-align: center;
}
.contacts-form{margin: 50px 0;}
ul, ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.content-area {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
}

.img-responsive {
    max-width: 100%;
    width: auto;
    height: auto;
}

.is-hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.font-size-14 {
    font-size: 14px;
}
.font-size-18 {
    font-size: 18px;
}
.font-size-32 {
    font-size: 32px;
}
.font-size-36 {
    font-size: 36px;
}
.m-auto {
    margin: auto;
}
.mb-40 {
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    body {
        padding-top: 60px;
        font-size: 14px;
    }
    h1, .title {
        font-size: 24px;
    }
    h2 {
        text-align: center;
    }
    h3, .title-md {
        font-size: 18px;
    }

    h4, .title-sm {
        font-size: 16px;
    }
}
/* default */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* custom grid by bootstrap 4 */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
}
.col-lg-9, .col-lg-6, .col-lg-3 {
    position: relative;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
@media (min-width: 1230px) {
    .container {
        width: 1200px;
    }
}
/* custom grid by bootstrap 4 */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* link */
.link, a {
    text-decoration: underline;
    color: #000;
}
.link:hover,
a:hover {
    text-decoration: none;
    color: #000;
}
.link-decoration-none {
    text-decoration: none;
}
.link-decoration-none:hover {
    text-decoration: underline;
}
.link-color-blue,
.link-color-blue:hover {
    color: #0094FF;
}
/* link */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* header */
.header {
    z-index: 101;
    padding: 15px 0;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.header__container {
    display: flex;
    align-items: center;
}
.header__menu {
    flex: 1;
    display: flex;
    align-items: center;
}
.header__logo {
    margin-right: 20px;
}
.header__dropdown {
    margin-right: auto;
}
.header__email{
    margin-right: 40px;
}
.header__phone {
    margin-right: 10px;
}
.header__menu-burger {
    display: none;
    padding: 10px;
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 1px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    line-height: 0;
}
.header__menu-dropdown {
    display: flex;
    flex: 1;
    align-items: center;
}
@media (max-width: 991px) {
    .header__email,
    .header__phone {
        margin-right: 0;
        display: block;
        margin-bottom: 15px;
    }
    .header__dropdown {
        margin-bottom: 15px;
    }
    .header__menu {
        flex: 0;
        margin-left: auto;
        display: inline-block;
        position: relative;
    }
    .header__menu-burger {
        display: inline-block;
    }
    .header__menu-dropdown {
        display: block;
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        padding: 15px;
        margin: 10px 0 0;
        background-color: #fff;
        border-radius: 2px;
        -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
        box-shadow: 0 6px 12px rgba(0,0,0,.175);
    }
    .header__menu-dropdown:after {
        content: '';
        position: absolute;
        top: -8px;
        right: 16px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 8px solid #FFFFFF;
    }
    .header__callback {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .header__logo {
        width: 133px;
        height: 30px;
    }
}
/* header */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* dropdown */
.dropdown {
    position: relative;
}
.dropdown__text {
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 1px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
    padding: 5px 25px 5px 5px;
    position: relative;
    min-width: 130px;
    display: flex;
    align-items: center;
}
.dropdown__text.is-active {
    background-color: #D4F0D9;
}
.dropdown__text:hover {
    cursor: pointer;
    background-color: #D4F0D9;
}
.dropdown__text:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 7px;
    background-image: url(../img/arrow--black.svg);
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    transform: rotate(90deg);
    transition: transform .25s ease;
}
.dropdown__text.is-active:after {
    transform: rotate(-90deg);
}
.dropdown__list {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 100%;
    width: 200px;
    padding: 5px 0;
    margin: 2px 0 0;
    background-color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.dropdown__list a {
    text-decoration: none;
    cursor: pointer;
    padding: 4px 20px 4px 5px;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.dropdown__list a:before,
.dropdown__text:before {
    content: '';
    width: 30px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}
.dropdown__list a.icon-en:before,
.dropdown__text.icon-en:before {
    background-image: url(../img/GB.png);
}
.dropdown__list a.icon-ru:before,
.dropdown__text.icon-ru:before {
    background-image: url(../img/Russia.png);
}
.dropdown__list a.icon-de:before,
.dropdown__text.icon-de:before {
    background-image: url(../img/Germany.png);
}
.dropdown__list a.icon-cn:before,
.dropdown__text.icon-cn:before{
    background-image: url(../img/China.png);
}
.dropdown__list a.icon-es:before,
.dropdown__text.icon-es:before{
    background-image: url(../img/spain.svg);
}
.dropdown__list a.icon-fr:before,
.dropdown__text.icon-fr:before{
    background-image: url(../img/france.svg);
}
.dropdown__list a.icon-it:before,
.dropdown__text.icon-it:before{
    background-image: url(../img/italy.svg);
}
.dropdown__list a:hover {
    background-color: rgba(39, 178, 67, 0.2);
}
.dropdown__list a.selected {
    color: #fff;
    background-color: #27B243;
}
/* dropdown */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* btn */
.btn {
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
    outline: none;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    text-transform: uppercase;
    color: #fff;
    transition: background-color .25s ease;
    padding: 7px 10px;
    background-color: #27B243;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 1px rgba(0, 0, 0, 0.25);
    border-radius: 2px;
}
.btn:hover {
    background-color: #1C9331;
    color: #fff;
}
.btn:active {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.btn--size--md {
    padding: 10px 15px;
}
.btn--size--lg {
    font-size: 14px;
    padding: 12px 34px;
}
/* btn */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* footer */
.footer {
    padding: 15px 0;
    border-bottom: 10px solid #27B243;
}
.footer__logo {
    margin-right: 20px;
}
@media (max-width: 767px) {
    .footer__logo {
        display: inline-block;
        width: 133px;
        height: 30px;
    }
    .footer__iso {
        height: 30px;
    }
}
/* footer */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* banner */
.banner {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-image: url(../img/bg-1.png);
    padding: 50px 0;
    min-height: 480px;
}
h1.banner__title {
    margin-top: 0;
    margin-bottom: 10px;
    width: 80%;
}
.banner__text {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 70px;
}
.banner__advantage {
    width: 25%;
    margin-right: 25px;
}
@media (max-width: 767px) {
    .banner {
        min-height: auto;
    }
    h1.banner__title {
        width: 100%;
    }
    .banner__text {
        margin-bottom: 20px;
        font-size: 18px;
    }
    .banner__advantage {
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
}
/* banner */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* advantage */
.advantage {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}
.advantage p {
    margin-top: 10px;
    line-height: 1.6;
}
@media (max-width: 767px) {
    .advantage {
        flex-direction: row;
        align-items: center;
    }
    .advantage img {
        margin-right: 15px;
    }
    .advantage p {
        margin: 0;
    }
    .advantage br {
        display: none;
    }
}
/* advantage */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* section */
.section {
    padding: 40px 0 80px;
}
.section--products {
    padding-top: 80px;
}
.section--bg--gray {
    background-color: #f5f5f5;
}
.section--padding-lg {
    padding-top: 100px;
    padding-bottom: 100px;
}
.section--bg--green {
    background: linear-gradient(210.5deg, #27B243 0%, #1C9331 100%);
}
.section--padding--none {
    padding: 0 !important;
}
@media (max-width: 991px) {
    .section {
        padding: 50px 0px;
    }
}
/* section */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* category */
.category {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 80px;
}
.category__item {
    width: 50%;
    padding: 30px 25px 50px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    background-color: #fff;
    display: flex;
}
@media (min-width: 768px) {
    .category__item:nth-child(6n+1),
    .category__item:nth-child(4n+1),
    .category__item:nth-child(2n+1){
        border-left: 1px solid #ddd;
    }
    .category__item:nth-child(-n+4) {
        border-top: 1px solid #ddd;
    }

    .category__item:nth-child(n+4),
    .category__item:nth-child(n+3){
        border-top: none;
    }
}
.category__item-right {
    margin-left: 25px;
}
.category__item-right ul {
    margin-top: 6px;
}
.category__item-right li {
    margin-bottom: 10px;
}
.category__item-title {
    font-size: 18px;
}
.category__item-title {
    color: #1C9331;
}
.category__item > span {
    width: 50%;
}

@media (max-width: 767px) {
    .category {
        border: 1px solid #ddd;
        margin-bottom: 40px;
    }
    .category__item {
        width: 100%;
        border: none;
        border-bottom: 1px solid #ddd;
    }
    .category__item:last-child {
        border: none;
    }
}
/* category */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* compare */
.compare__inner {
    background: rgba(39, 178, 67, 0.2);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    margin: 30px auto 0;
    width: 80%;
}
.compare__item {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}
.compare__item--manufacturer {
    background: linear-gradient(227.39deg, #27B243 0%, #1C9331 100%);
    box-shadow: 0px 10px 20px rgba(28, 147, 49, 0.6);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.compare__head {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(28, 147, 49, 0.2);
    flex: 1;
}
.compare__title {
    margin: 0;
}
.compare li {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(28, 147, 49, 0.2);
    font-size: 18px;
    line-height: 1.7;
}
.compare li:last-child {
    border-bottom: none;
    padding-bottom: 40px;
}
.compare__item--manufacturer li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.compare__item--manufacturer .compare__head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.compare__item--manufacturer li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    transform: translateX(-50%);
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-repeat: no-repeat;
    -webkit-background-size: 16px 10px;
    background-size: 16px 10px;
    background-position: center;
    background-image: url(../img/check.png);
}
@media (max-width: 991px) {
    .compare__inner {
        width: 95%;
    }
}
@media (max-width: 767px) {
    .compare {
        overflow: auto;
        padding: 30px;
    }
    .compare__inner {
        margin-top: 0;
        width: 675px;
    }
    .compare li {
        font-size: 14px;
    }
    .compare__head {
        padding: 15px 20px;
    }
}
/* compare */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* panel-title */
.panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 991px) {
    .panel-title {
        display: block;
        text-align: center;
    }
}
/* panel-title */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* offers */
.offers__item {
    display: flex;
}
@media (max-width: 991px) {
    .offers__item {
        margin-bottom: 30px;
        display: block;
    }
}
/* offers */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* label-list */
.label-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.label-list__title {
    display: inline-block;
    background: linear-gradient(191.49deg, #27B243 0%, #1C9331 100%);
    border-radius: 4px 40px 40px 0px;
    padding: 25px 40px 25px 30px;
    margin-bottom: -40px;
    z-index: 1;
}
.label-list ul {
    background: #D4F0D9;
    border-radius: 4px;
    padding-top: 40px;
    flex: 1;
}
.label-list li {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    padding: 20px 25px 20px 30px;
    border-bottom: 1px solid rgba(28, 147, 49, 0.2);
}
.label-list li:last-child {
    border-bottom: none;
}
@media (max-width: 991px) {
    .label-list {
        display: block;
    }
}
@media (max-width: 767px) {
    .label-list li {
        font-size: 14px;
        padding: 15px;
    }
    .label-list__title {
        font-size: 16px;
        padding: 15px;
    }
    .label-list ul {
        padding-top: 15px;
    }
}
/* label-list */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* list-dashed */
.list-dashed li {
    position: relative;
    padding-left: 20px;
    line-height: 20px;
    margin-bottom: 12px;
}
.list-dashed li:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #1C9331;
}
/* list-dashed */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* parameters */
.parameters {
    background: rgba(39, 178, 67, 0.2);
    border-radius: 10px;
    display: flex;
}
.parameters__item {
    padding: 20px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    border-right: 1px solid rgba(28, 147, 49, 0.2);
}
.parameters__item:last-child {
    border-right: none;
}
.parameters p {
    margin-bottom: 5px;
    font-weight: 600;
}
@media (max-width: 767px) {
    .parameters {
        flex-direction: column;
    }
    .parameters__item {
        border-right: none;
        border-bottom: 1px solid rgba(28, 147, 49, 0.2);
    }
    .parameters__item:last-child {
        border-bottom: none;
    }
}
/* parameters */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* equipment */
.equipment {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    flex-wrap: wrap;
}
.equipment__item {
    padding: 0 10px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

@media (max-width: 991px) {
    .equipment__item {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .equipment__item {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .equipment__item .font-size-32 {
        font-size: 24px;
    }
}
/* equipment */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* list-numeric */
.list-numeric li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    padding-left: 90px;
    position: relative;
}
.list-numeric__number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    font-size: 30px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* list-numeric */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* owl-carousel */
.owl-carousel--certificate .owl-item {
    padding: 30px 20px 35px;
}
.owl-carousel .owl-item img {
    margin: auto;
    width: 178px;
    height: 250px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
/* owl-carousel */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* faq-list */
.faq-list p {
    font-size: 18px;
    padding-right: 25px;
}
.faq-list li {
padding: 10px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faq-list h4 {
    font-size: 24px;
    padding-right: 25px;
    cursor: pointer;
    position: relative;
}
.faq-list h4:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 13px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAANCAMAAACejr5sAAAAG1BMVEUAAAAbjzAblTAelDAelDMbkjAdlTAckzIckzHquue1AAAACHRSTlMAMDBfX2Bgf99De5oAAAA+SURBVHjaRchBDsAgDAPB0IaS/7+4EQjNnuyJbsTNWfWyrHWsaPZpHVU093ki5lH29aKMJqNsRxlllFFG2Q++iQMfeAUOIgAAAABJRU5ErkJggg==);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.faq-list h4.is-active:after {
    -moz-transform: scale(1) rotate(180deg) translateX(0) translateY(0) skewX(0deg) skewY(0deg);
    -webkit-transform: scale(1) rotate(180deg) translateX(0) translateY(0) skewX(0deg) skewY(0deg);
    -o-transform: scale(1) rotate(180deg) translateX(0) translateY(0) skewX(0deg) skewY(0deg);
    -ms-transform: scale(1) rotate(180deg) translateX(0) translateY(0) skewX(0deg) skewY(0deg);
    transform: scale(1) rotate(180deg) translateX(0) translateY(0) skewX(0deg) skewY(0deg);
}
@media (max-width: 767px) {
.faq-list h4 {
    font-size: 18px;
}
    .faq-list p {
        font-size: 16px;
    }
}
/* faq-list */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* reviews */
.reviews {
    display: flex;
    justify-content: space-between;
    margin-left: -20px;
    margin-right: -20px;
}
.reviews__item {
    padding: 20px;
}
.reviews img {
    width: 240px;
    height: 340px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .reviews img {
        width: 178px;
        height: 250px;
    }
}
@media (max-width: 767px) {
    .reviews {
        overflow: auto;
    }
}
/* reviews */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* soc-list */
.soc-list {

}
.soc-list__item {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}
.soc-list__link {
    display: block;
    width: 30px;
    height: 30px;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}
.soc-list__link--vk {
    background-image: url('../img/soc-icon/icon-vk.svg');
}
.soc-list__link--fb {
    background-image: url('../img/soc-icon/icon-fb.svg');
}
.soc-list__link--tw {
    background-image: url('../img/soc-icon/icon-tw.svg');
}
.soc-list__link--ins {
    background-image: url('../img/soc-icon/icon-ins.svg');
}
.soc-list__link--yt {
    background-image: url('../img/soc-icon/icon-yt.svg');
}
.soc-list__link--ok {
    background-image: url('../img/soc-icon/icon-ok.svg');
}
/* soc-list */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* contact */
.contact {
    font-style: normal;
}
.contact__item {
    margin-bottom: 15px;
}
:not(span) > .contact__item:first-child {
    margin-bottom: 30px;
    line-height: 30px;
}
span.contact__item {
    display: block;
}
/* contact */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* b-form */
.b-form__group {
    font-size: 14px;
    position: relative;
}
.b-form__group .g-recaptcha {
    margin-bottom: 15px;
}
.b-form__group label {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    font-size: inherit;
    line-height: 1;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.4);
    display: block;
    padding: 0 10px;
    height: 14px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.b-form__control {
    font-size: inherit;
    color: #000;
    position: relative;
    z-index: 1;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid transparent;
    padding: 20px 10px 5px;
    height: auto;
    min-height: 100%;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    box-shadow: none;
    outline: none;
    width: 100%;
    min-width: 100%;
    display: block;
    margin-bottom: 15px;
    line-height: 1.6;
}
.b-form__group.is-active .b-form__control,
.b-form__control:active,
.b-form__control:focus {
    border-color: #27B243;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.b-form__control:active + label,
.b-form__control:focus + label,
.b-form__group.is-active label {
    font-size: 12px;
    top: 5px;
    bottom: auto;
}
.b-form__privacy {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.b-form__privacy .privacy {
    margin-left: 10px;
}
@media (max-width: 767px) {
    .b-form__privacy {
        display: block;
    }
    .b-form__privacy .privacy {
        margin-left: 0;
        margin-top: 10px;
    }
    .b-form input[type=submit] {
        width: 100%;
    }
}
/* b-form */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* privacy */
.privacy {
    color: #888888;
    font-size: 10px;
    line-height: 12px;
}
.privacy__link,
.privacy__link:hover {
    color: #888888;
}
/* privacy */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* burger */
.burger {
    width: 23px;
    height: 16px;
    display: inline-block;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.burger__line {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #27B243;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.burger__line:nth-child(1) {
    top: 0px;
}

.burger__line:nth-child(2), .burger__line:nth-child(3) {
    top: 7px;
}

.burger__line:nth-child(4) {
    top: 14px;
}

.burger--is-open .burger__line:nth-child(1) {
    top: 7px;
    width: 0%;
    left: 50%;
}

.burger--is-open .burger__line:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burger--is-open .burger__line:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.burger--is-open .burger__line:nth-child(4) {
    top: 7px;
    width: 0%;
    left: 50%;
}


/* burger */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* modal */
.modal {
    max-width: 480px;
    width: 100%;
}

@media (min-width: 768px) {
    .modal {
        min-width: 400px;
    }
}
/* modal */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* file-upload */
.file-upload {
    position: relative;
    width: 100%;
    height: 48px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}
.file-upload:before {
    content: attr(data-btn);
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 100%;
    background: #27B243;
    color: #fff;
    z-index: 25;
    font-size: 12px;
    line-height: 28px;
    padding: 8px 10px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 4px 4px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2), 0px 0px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.file-upload:hover:before {
    background: #1C9331;
    -webkit-transition: all .05s ease;
    -moz-transition: all .05s ease;
    transition: all .05s ease;
}
.file-upload:after {
    content: attr(data-text);
    font-size: 14px;
    line-height: 14px;
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(0, 0, 0, 0.4);
    padding: 15px 10px;
    display: block;
    width: 100%;
    pointer-events: none;
    z-index: 20;
    height: 100%;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.file-upload__input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}
/* file-upload */
/* ------------------------------------------ */

/* ------------------------------------------ */
/* default */
/* default */
/* ------------------------------------------ */