@font-face {
    font-family: "Open Sans";
    font-display: swap;
    src: url("../fonts/OpenSans/OpenSans-Regular.eot") format("embedded-opentype"),
    url("../fonts/OpenSans/OpenSans-Regular.woff") format("woff"),
    url("../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Open Sans";
    font-display: swap;
    src: url("../fonts/OpenSans/OpenSans-SemiBold.eot") format("embedded-opentype"),
    url("../fonts/OpenSans/OpenSans-SemiBold.woff") format("woff"),
    url("../fonts/OpenSans/OpenSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Open Sans";
    font-display: swap;
    src: url("../fonts/OpenSans/OpenSans-Bold.eot") format("embedded-opentype"),
    url("../fonts/OpenSans/OpenSans-Bold.woff") format("woff"),
    url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Lobster";
    font-display: swap;
    src: url("../fonts/Lobster/lobster.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:after,
*:before {
    display: inline-block;
    vertical-align: middle;
}

::-webkit-input-placeholder {
    color: #6a6a6a;
    opacity: 1;
}

:-moz-placeholder {
    color: #6a6a6a;
    opacity: 1;
}

::-moz-placeholder {
    color: #6a6a6a;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #6a6a6a;
    opacity: 1;
}

::-ms-input-placeholder {
    color: #6a6a6a;
    opacity: 1;
}

::placeholder {
    color: #6a6a6a;
    opacity: 1;
}


body {
    line-height: 1.2;
    font-size: 16px;
    color: #31394d;
    position: relative;
    font-family: "Open Sans", sans-serif;
    background: #fff;
    padding: 0;
    margin: 0;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: inherit;
}

p {
    margin: 0;
}

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

img {
    vertical-align: middle;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
}

a {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    color: inherit;
    text-decoration: none;
    outline: none;
    cursor: pointer;
}

a:hover {
    color: #d91818;
    color: #ff4447;
    text-decoration: none;
}

button,
input,
textarea {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

input,
textarea,
button,
.swiper-button {
    outline: none;
    border: 0;
}

input,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
}

table {
    border-spacing: 0px;
    border-collapse: collapse;
    width: 100%;
}

.swiper-container-fade .swiper-slide:not(.swiper-slide-active) {
    opacity: 0 !important;
}

@media (min-width: 1200px) {
    .cn-container {
        max-width: 1170px;
    }
}

/*
@media (max-width: 575px){
	.cn-container {
	    max-width: 320px;
	}
}
*/


@-webkit-keyframes img-hover {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
}


@-moz-keyframes img-hover {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    50% {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
}


@-o-keyframes img-hover {
    0% {
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    50% {
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -o-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
}


@keyframes img-hover {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }
}

@-webkit-keyframes img-hover-out {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes img-hover-out {
    0% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes img-hover-out {
    0% {
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes img-hover-out {
    0% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

/* Bootstrap */

.wrap {
    overflow: hidden
}

.hide {
    display: none
}

.tabs-body {
    display: none
}

/* Modal */

.blocker {
    z-index: 10
}

/* Section */

.section {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative
}

/* Mobile */

.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(var(--vh, 1vh) * 100)
}

.mobile-over {
    display: none
}

.mobile-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #d91818;
    min-height: 100px
}

.mobile-body {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    overflow: auto;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #ffffff
}

/* Текста */

.typo-ndici {
    font-size: 0.88em
}

.typo-aribu {
    font-size: 6.00em;
    font-family: Lobster
}

.typo-icent {
    font-size: 1.30em;
    font-family: Montserrat
}

.typo-tiori {
    font-size: 0.75em
}

.typo-punir {
    display: block;
    margin-bottom: 0;
    font-size: 2.375rem;
    font-weight: 700;
    line-height: 1.4;
}

.typo-minim {
    font-size: 1em;
    line-height: 1.8;
    color: #747b8d;
}

.typo-ienum {
    font-size: .875rem;
    line-height: 1.6;
    display: block;
    overflow: hidden;
    max-height: 5.5rem;
}

.no-max-height {
    max-height: 100% !important;
}

.typo-oport {
    font-size: 0.88em;
    text-decoration: underline
}

.typo-uando {
    font-size: 3.00em;
    font-family: Montserrat
}

.typo-ction {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

.typo-intel {
    font-size: 2.13em;
    font-family: Lobster
}

.typo-raeca {
    font-weight: 700
}

.typo-empto {
    font-size: 1.13em;
    font-family: Lobster
}

.typo-fectu {
    font-size: 1.13em;
    font-weight: 700
}

/* Color */

.color__thunderbird {
    color: #d91818
}

.color__cloud-burst {
    color: #31394d
}

.color__cloud-burst-50 {
    color: rgba(34, 58, 89, 0.6)
}

.color__white-50 {
    color: rgba(255, 255, 255, 0.6)
}

.color__black-50 {
    color: rgba(0, 0, 0, 0.3)
}

/* Btn */

.btn {
    cursor: pointer;
    display: inline-block;
    padding-left: 0.80em;
    padding-right: 0.80em;
    padding-top: 0.50em;
    padding-bottom: 0.50em;
    border: 0px none #ddd;
    background-color: transparent;
    text-align: center;
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms
}

.btn-basic {
    color: #000000;
    font-size: 1.13em;
    font-family: Open Sans;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 3.32em;
    background-color: #ffffff;
    border: 1px solid #000000
}

.btn-handle {
    color: #ffffff;
    font-size: 1.13em;
    font-family: Open Sans;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 3.22em;
    background-color: #1d3758
}

.btn-clasp {
    color: #ffffff;
    font-size: 1.13em;
    font-family: Open Sans;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 3.22em;
    background-color: #da1010;
    border: 1px solid #ffffff
}

.btn-snap {
    color: #223a59;
    font-size: 0.75em;
    font-family: Open Sans;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    background-color: #ffffff;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 2.50em
}

.btn-signal {
    color: #d91818;
    font-size: 3.00em;
    font-family: 'TT Norms', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    background-color: transparent;
    border: 1px solid #d91818;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 2.08em
}

.btn-prime {
    color: #ffffff;
    font-size: 1.13em;
    font-family: Open Sans;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    background-color: #223a59;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 3.32em
}

.btn-signal.btn--active {
    background-color: #d91818;
    color: #ffffff
}

.btn-basic:hover {
    background-color: #223a59;
    color: #ffffff
}

.btn-clasp:hover {
    background-color: #ffffff;
    color: #d91818
}

.btn-snap:hover,
.btn-signal:hover,
.btn-prime:hover {
    background-color: #d91818;
    color: #ffffff
}

/* Form */

.form-control {
    border: 1px solid #dddddd;
    padding-left: 0.60em;
    padding-right: 0.60em;
    padding-top: 0.70em;
    padding-bottom: 0.70em;
    width: 100%
}

.form-group {
    margin-bottom: 0.60em
}

.form-label {
    display: block;
    font-weight: 400
}

.form-checkbox {
    position: relative;
    vertical-align: middle;
    padding-left: 1.70em
}

/* Input */

.input {
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms
}

.input-inlet {
    color: #ffffff;
    font-size: 0.88em;
    font-family: Open Sans;
    font-weight: 400;
    background-color: transparent;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 2.20em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6)
}

.input-tape {
    color: #223a59;
    font-size: 0.88em;
    font-family: Open Sans;
    font-weight: 400;
    background-color: #ffffff;
    border: 2px solid #223a59;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 3.20em;
    padding-left: 1.20em;
    padding-right: 1.20em;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px
}

.input-range {
    color: rgba(34, 58, 89, 0.5);
    font-size: 1.13em;
    font-family: Open Sans;
    font-weight: 400;
    background-color: transparent;
    border: 2px solid #223a59;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: auto;
    min-height: 5.53em;
    padding-left: 0.93em;
    padding-right: 0.93em;
    padding-top: 0.63em;
    padding-bottom: 0.63em
}

.input-tape:hover,
.input-range:hover,
.input-tape:focus,
.input-range:focus {
    border-color: #d91818
}

/* Элементы */

.elem-line {
    border-top: 1px solid #dddddd
}

.elem-recepts-split {
    position: relative
}

.elem-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.elem-img-hover {
    position: relative;
    overflow: hidden
}

.elem-recepts-split:after {
    content: '';
    display: block;
    position: absolute;
    left: 28%;
    top: 0;
    bottom: 0;
    border-left: 1px solid #dddddd
}

.elem-list > li {
    width: 50%;
    padding-right: 0.70em;
    position: relative;
    padding-left: 1.20em;
    line-height: 1.4;
    padding-bottom: 0.80em
}

.elem-list > li:before {
    content: '';
    display: block;
    position: absolute;
    background-color: #666666;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    left: 0;
    top: 0.60em
}

.elem-img-hover img {
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms
}

.elem-img-hover:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url(../img/icons/dough.svg);
    background-repeat: no-repeat;
    background-position: 50% 65%;
    -webkit-background-size: 3.70em 3.70em;
    -moz-background-size: 3.70em;
    -o-background-size: 3.70em;
    background-size: 3.70em;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    -moz-transition: all 300ms;
    transition: all 300ms;
    opacity: 0;
    -ms-transition: all 300ms;
}

.elem-img-hover.hover img {
    /* -webkit-animation: img-hover 0.3s ease-in-out;
    -moz-animation: img-hover 0.3s ease-in-out;
    -o-animation: img-hover 0.3s ease-in-out;
    animation: img-hover 0.3s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards */
}

.elem-img-hover.hover:after {
    opacity: 1;
    background-position: 50% 50%
}

.elem-img-hover.out img {
    /* -webkit-animation: img-hover-out 0.3s ease-in-out;
    -moz-animation: img-hover-out 0.3s ease-in-out;
    -o-animation: img-hover-out 0.3s ease-in-out;
    animation: img-hover-out 0.3s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards */
}

.elem-img-hover.post:after {
    background-image: url(../img/icons/news.svg)
}

/* Img */

.img-fit-contain {
    -o-object-fit: contain;
    object-fit: contain
}

.img-fit-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.img-fit-full {
    -o-object-fit: unset;
    object-fit: unset
}

/* Окна */

.modal__success {
    text-align: center
}

/* Swiper */

.swiper-outside {
    position: relative
}

.swiper--auto .swiper-wrapper .swiper-slide {
    height: auto
}

.swiper--same .swiper-wrapper .swiper-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: auto
}

.swiper--same .swiper-wrapper .swiper-slide > * {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

/* Swiper-button */

.swiper-button--static .swiper-button {
    position: static;
    margin-top: 0px
}

.swiper-button--text .swiper-button {
    width: auto;
    background: none
}

.swiper-button--text .swiper-button-next:before {
    content: url(../img/icons/swiper-arrow.svg);
    margin-right: 1.00em
}

.swiper-button--text .swiper-button-prev:after {
    content: url(../img/icons/swiper-arrow.svg);
    margin-left: 1.00em;
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1)
}

.swiper-button--simple .swiper-button {
    width: 2.19em;
    height: 2.19em;
    border: 1px solid #000000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background-image: url(../img/icons/swiper-arrow-simple.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: auto auto;
    -moz-background-size: auto;
    -o-background-size: auto;
    background-size: auto;
    opacity: 0.48
}

.swiper-button--simple .swiper-button.swiper-button-prev {
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1)
}

.swiper-button--simple .swiper-button:hover {
    opacity: 1
}

/* S-head */

.s-head {
    background-color: #223a59;
    color: #ffffff;
    z-index: 20
}

.s-head__inner {
    position: relative
}

.s-head--fixed {
    position: fixed;
    left: 0;
    top: 0;
    right: 0
}

.s-head__inner:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    border-bottom: 1px solid #ffffff;
    pointer-events: none
}

/* S-foot */

.s-foot {
    padding-top: 1.22em;
    padding-bottom: 1.22em;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px)
}

.home .s-foot {
    position: fixed;
}

.s-foot a:hover {
    text-decoration: underline
}

/* S-welcome */

.s-welcome {
    background-color: #223a59;
    color: #ffffff
}

.s-welcome__slide {
    height: calc(var(--vh, 1vh) * 100)
}

.s-welcome__gredi {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2
}

.s-welcome__cente {
    height: calc(var(--vh, 1vh) * 100);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.s-welcome__rimen {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center
}

.s-welcome__video {
    height: calc(var(--vh, 1vh) * 100);
    opacity: 0.68;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.s-welcome__bg {
    background-size: cover;
    background-position: center;
}

.s-welcome__rimen > li div {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.33);
    margin-top: 0.60em
}

.s-welcome__rimen > li div > div {
    height: 1px;
    background-color: #ffffff
}

.s-welcome__rimen > li {
    opacity: 0.51;
    cursor: pointer
}

.s-welcome__rimen > li:hover,
.s-welcome__rimen > li.active {
    opacity: 1
}

/* S-heading */

.s-heading {
    background-color: #223a59;
    color: #ffffff
}

.s-heading__img {
    /* margin-bottom: -3.90em */
}

/* S-content */

.s-content {
    padding-top: 6.30em;
    padding-bottom: 6.30em
}

.s-content--card {
    padding-top: 0
}

.s-content--gray {
    background-color: #f6f6f6
}

.s-content--medium {
    padding-top: 3.60em;
    padding-bottom: 3.60em
}

/* B-head */

.b-head {
    padding-top: 2.20em;
    padding-bottom: 2.20em
}

.b-head__logo {
    border-bottom: 1px solid #ffffff;
    display: inline-block
}

.b-head__menu {
    position: relative;
    display: inline-block
}

.b-head__drop {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    padding-top: 2.10em;
    width: 100%;
    width: 15em;
    display: none
}

.b-head__inner {
    background-color: #223a59;
    -webkit-box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.17);
    box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.17);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    padding-top: 5px;
    padding-bottom: 5px
}

.b-head__link {
    opacity: 0.49;
    display: block;
    text-align: center;
    padding-top: 0.48em;
    padding-bottom: 0.48em
}

.b-head__link:hover {
    opacity: 1;
    color: #ffffff
}

.b-head__menu:hover .b-head__drop,
.b-head__menu.open .b-head__drop {
    display: block
}

/* B-where */

.b-where {
    position: relative;
    padding-top: 2.48em;
    padding-bottom: 1.30em
}

.b-where__gredi {
    background-color: #d91818;
    color: #ffffff;
    padding-left: 2.30em;
    padding-right: 2.30em;
    padding-top: 4.30em;
    padding-bottom: 3.50em;
    position: relative
}

.b-where__i1 {
    position: absolute;
    left: 0;
    top: 0
}

.b-where__i2 {
    position: absolute;
    bottom: 0;
    right: 0
}

.b-where:before {
    content: '';
    display: block;
    position: absolute;
    background-color: #223a59;
    top: 0;
    right: 12.30em;
    width: 16.40em;
    height: 15.50em
}

/* B-attention */

.b-attention {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #223a59;
    color: #ffffff;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.b-attention__split {
    border-top: 1px solid rgba(221, 221, 221, 0.4);
    margin-top: 1.90em;
    margin-bottom: 1.90em
}

/* B-full-search */

.b-full-search {
    margin-left: auto;
    margin-right: auto;
    width: 138.31em;
    max-width: 555px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.25))
}

.b-full-search__enter {
    color: #000000;
    font-size: 1.50em;
    font-family: Open Sans;
    font-weight: 400;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 2.88em;
    background-color: #ffffff;
    border: 1px solid #d91818;
    padding-left: 0.80em;
    padding-right: 0.80em
}

.b-full-search__btn {
    background-color: #d91818;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 4.25em;
    background-image: url(../img/icons/search-white.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer
}

/* B-form */

.b-form {
    background-color: #ffffff;
    border: 5px solid #d91818;
    padding-left: 5.80em;
    padding-right: 5.80em;
    padding-top: 2.90em;
    padding-bottom: 2.90em
}

/* B-composition */

.b-composition {
    border-bottom: 1px solid #dddddd
}

.b-composition__delic {
    border-left: 1px solid #dddddd;
    padding-top: 1.20em;
    padding-bottom: 1.20em
}

/* E-toggle */

.e-toggle {
    background-image: url(../img/icons/menu.svg);
    width: 2.10em;
    height: 1.80em;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-filter: invert(100%);
    filter: invert(100%)
}

/* E-menu */

.e-menu__dicov {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.13em
}

.e-menu--main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.e-menu--mobile .e-menu__dicov {
    color: #223a59
}

/* E-lang */

.e-lang {
    display: inline-block;
    position: relative
}

.e-lang__drop {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    padding-top: 2.20em
}

.e-lang__select {
    display: block;
    text-align: center;
    padding-left: 11px;
    padding-right: 11px;
    padding-top: 7px;
    padding-bottom: 7px;
    color: #ffffff;
    font-size: 0.88em;
    text-transform: uppercase
}

.e-lang__toggle {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer
}

.e-lang__inner {
    background-color: #0d2946;
    -webkit-box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.17);
    box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.17);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    padding-top: 5px;
    padding-bottom: 5px
}

.e-lang__toggle:after {
    content: url(../img/icons/down.svg);
    margin-left: 0.60em;
    margin-top: -0.24em
}

.e-lang.open .e-lang__drop,
.e-lang:hover .e-lang__drop {
    display: block
}

/* E-search */

.e-search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.e-search__usher {
    color: #223a59;
    font-size: 0.88em;
    font-family: Open Sans;
    font-weight: 400;
    background-color: transparent;
    border-bottom: 1px solid #223a59;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 1.42em
}

.e-search__btn {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: transparent;
    width: 1.85em;
    background-image: url(../img/icons/search.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    cursor: pointer
}

.e-search--mobile .e-search__usher {
    height: 2.25em
}

/* E-title */

.e-title {
    color: #31394d;
    font-size: 1.5em;
    font-family: Lobster;
    font-weight: 700;
    line-height: 1.4;
}

/* E-ico */

.e-ico__time:before,
.e-ico__time-red:before {
    margin-right: 0.40em
}

.e-ico__time:before {
    content: url(../img/icons/time.svg)
}

.e-ico__time-red:before {
    content: url(../img/icons/time-red.svg)
}

/* E-speedbar */

.e-speedbar {
    margin-top: 2rem;
    font-size: 0.75em;
    color: rgba(62, 62, 62, 0.45)
}

.e-speedbar > *:not(:first-child):before {
    content: '|';
    margin-left: 0.40em;
    margin-right: 0.40em;
    margin-top: -0.20em
}

/* E-video */

.e-video {
    position: relative;
    display: block
}

.e-video:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url(../img/icons/play.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms
}

/* .e-video:hover:after{
    background-color: transparent;
} */

/* E-shop */

.e-shop {
    background-color: #ffffff;
    border: 1px solid #223a59;
    text-align: center;
    padding: 1.10em;
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms;
    height: 100%;
}

.e-shop__ico {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 5.60em
}

.e-shop__ico img {
    max-width: 100%;
    max-height: 100%
}

.e-shop:hover {
    border-color: #d91818
}

/* E-contacts */

.e-contacts {
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #223a59;
    padding-left: 1.40em;
    padding-right: 1.40em;
    padding-top: 1.80em;
    padding-bottom: 1.80em
}

.e-contacts__ico {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 6.28em;
    margin-bottom: 1.40em
}

.e-contacts__ico img {
    max-width: 100%;
    max-height: 100%
}

/* E-stars */

.e-stars {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.e-stars > li {
    cursor: pointer
}

.e-stars > li:after {
    content: url(../img/icons/rat-star.svg)
}

.e-stars > li.active:after,
.e-stars > li:hover:after {
    content: url(../img/icons/rat-stat-fill.svg)
}

/* Типография */

.text > h1 {
    font-size: 2.50em
}

.text > h2 {
    font-size: 2.00em
}

.text > h3 {
    font-size: 3.00em;
    color: #d91818;
    font-family: Lobster
}

.text > h4 {
    font-size: 1.50em
}

.text > h5 {
    font-size: 1.25em
}

.text > h6 {
    font-size: 1.00em
}

.text > p {
    font-size: 1.50em;
    color: rgba(0, 0, 0, 0.6)
}

.text > blockquote {
    color: #ffffff;
    font-size: 1.50em;
    font-style: italic;
    background-color: #223a59;
    background-image: url(../img/icons/quote.svg);
    background-repeat: no-repeat;
    background-position: 1.70em 1.60em;
    padding-left: 3.90em;
    padding-right: 3.90em;
    padding-top: 1.90em;
    padding-bottom: 1.90em;
    margin-left: auto;
    margin-right: auto;
    max-width: 960px
}

.text > * + * {
    margin-top: 1.5em
}

.text .e-video {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto
}

/*
 * CASCADE
 */

.tabs-body.active {
    display: block
}

.nice-select {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    float: none
}

.nice-select .current {
    line-height: 1.2;
    height: auto;
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.nice-select .list {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0 0.70em 3.20em 0 rgba(34, 58, 89, 0.25);
    -moz-box-shadow: 0 0.70em 3.20em 0 rgba(34, 58, 89, 0.25);
    box-shadow: 0 0.70em 3.20em 0 rgba(34, 58, 89, 0.25)
}

.nice-select .option {
    height: auto;
    min-height: auto;
    line-height: 1.2;
    padding-top: 0.51em;
    padding-bottom: 0.51em;
    padding-left: 0.73em;
    padding-right: 0.73em
}

.form-checkbox > input:checked ~ .check:after {
    opacity: 1
}

.form-checkbox > input,
.form-checkbox > span.check {
    width: 1.00em;
    height: 1.00em
}

.form-checkbox > input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none
}

.form-checkbox > span.check {
    border: 1px solid #dddddd;
    display: block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer
}

.form-checkbox > span.check:after {
    position: absolute;
    left: 0.32em;
    top: 0;
    content: '';
    width: 0.40em;
    height: 0.70em;
    border-width: 2px;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    border-color: #000000;
    border-right-style: solid;
    border-bottom-style: solid;
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms;
    opacity: 0
}

.soc_icon {
    width: 2em;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    margin-left: 1em;
}

.home .soc_icon path {
    fill: #fff;
}

.b-head .soc_icon {
    margin-left: 0;
}

.e-article,
.e-news,
.e-item {
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    -moz-transition: all 200ms;
    transition: all 200ms;
}

.e-article:hover,
.e-news:hover,
.e-item:hover {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
}

.home {
    overflow: hidden;
}

.text ul,
.text ol {
    list-style: decimal;
    font-size: 1.50em;
    color: rgba(0, 0, 0, 0.6);
    padding-left: 1.5em;
}

.text ul li,
.text ol li {
    margin-bottom: 1em;
}

.text ul {
    list-style: outside;
}

.svg_home {
    display: inline-block;
    vertical-align: bottom;
}

.modal,
.modal-container,
.modal-pointer,
.modal-pointer-conceal {
    position: relative !important;
}

.mob_h-slide {
    display: none;
}

#swiper-main .swiper-button-prev,
#swiper-main .swiper-button-next {
    display: none;
}

/*
 * MEDIA
 */

@media screen and (max-width: 1199px) {


    /* Btn */
    .btn-signal {
        font-size: 2.10em
    }

    /* B-where */
    .b-where__i1 {
        left: -4.40em
    }

    .b-where__i2 {
        right: -3.20em
    }
}

@media screen and (max-width: 991px) {

    .home .soc_icon path {
        fill: #000;
    }

    .s-welcome__gredi {
        display: none;
    }

    .mob_h-slide {
        display: block;
    }

    .mob_slide-menu {
        position: absolute;
        bottom: 0;
        left: 1em;
        right: 1em;
        z-index: 2;
        padding-bottom: 2em;
    }

    .mob_slide-text {
        position: absolute;
        top: 20%;
        left: 1em;
        z-index: 2;
    }

    .b-head__drop {
        padding-top: 1.1em;
    }

    /* Элементы */
    .elem-recepts-split:after {
        left: 32%
    }

    /* S-foot */
    .s-foot {
        font-size: 0.78em;
        position: relative
    }

    /* S-content */
    .s-content {
        padding-top: 4.40em;
        padding-bottom: 4.40em
    }

    /* B-form */
    .b-form {
        padding-left: 1.30em;
        padding-right: 1.30em
    }

    /* B-composition */
    .b-composition__delic {
        border: 0
    }

    /* Типография */
    .text > h3 {
        font-size: 2.38em
    }

    .text > p {
        font-size: 1.12em
    }
}

@media all and (min-width: 768px) {

    /* Элементы */
    .elem-value > div:not(:first-child) {
        border-left: 1px solid #dddddd
    }
}

@media screen and (max-width: 767px) {

    /* Элементы */
    .elem-recepts-split:after {
        display: none
    }

    .elem-list > li {
        width: 100%
    }

    /* B-where */
    .b-where__i1 {
        left: -83px;
        top: -5.20em;
        width: 12.31em
    }

    .b-where__i2 {
        width: 14.00em
    }

    /* B-full-search */
    .b-full-search {
        width: 27.59em
    }
}

@media screen and (max-width: 575px) {

    #swiper-main .swiper-button-prev,
    #swiper-main .swiper-button-next {
        display: block;
        outline: none !important;
    }

    .e-search input {
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    .s-foot .typo-ndici,
    .s-foot {
        text-align: center;
    }

    .s-welcome__rimen {
        flex-wrap: wrap;
    }

    .e-lang__drop {
        padding-top: 1.2em;
    }

    .s-welcome__rimen > li {
        width: 50%;
        flex: 0 0 50%;
    }

    /* Modal */
    .blocker {
        padding-left: 0em;
        padding-right: 0em
    }

    /* Mobile */
    .mobile-head {
        min-height: 4.15em
    }

    /* Btn */
    .btn-signal {
        font-size: 1.50em
    }

    /* Элементы */
    .elem-list > li:before {
        display: none
    }

    /* S-content */
    .s-content {
        padding-top: 2.20em;
        padding-bottom: 2.20em
    }

    .s-content--card {
        padding-top: 0
    }

    /* B-head */
    .b-head {
        padding-top: 1.20em;
        padding-bottom: 1.20em
    }

    /* B-where */
    .b-where__i1 {
        display: none
    }

    /* B-attention */
    .b-attention__img {
        height: 12.40em
    }

    .b-attention__split {
        margin-top: 1.00em;
        margin-bottom: 1.00em
    }

    /* B-full-search */
    .b-full-search {
        width: 95%;
        font-size: 0.64em
    }

    /* E-title */
    .e-title {
        font-size: 1.5em
    }

    /* Типография */
    .text > h3 {
        font-size: 2em
    }

    .text > p {
        font-size: 1em
    }

    .text > blockquote {
        font-size: 0.88em;
        padding-right: 1.35em
    }

    .text > * + * {
        margin-top: 34px
    }
}