@-webkit-keyframes ani-fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes ani-fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Proxima Soft", Arial, sans-serif;
}

a,
button,
label {
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    position: relative;
    min-width: 320px;
    margin: 0;
    padding: 0;
    font-family: "Proxima Soft", Arial, sans-serif;
    font-weight: 600;
    font-size: 27px;
    line-height: 38px;
    color: #435D33;
    background-color: #FFF3CA;
}

@media (max-width: 1920px) {
    body {
        font-size: 1.4063vw;
        line-height: 1.9792vw;
    }
}

@media (max-width: 991px) {
    body {
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 11px;
        line-height: 14px;
    }
}

html,
body,
.wrapper {
    min-height: 100vh;
    margin: 0;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
}

.container--lg {
    max-height: 1920px;
}

.header {
    width: 100%;
    padding: 76px 0 22px;
    background-color: #FFF3CA;
    background-image: url(../images/h-pattern.png);
    background-repeat: repeat-x;
    background-size: auto 54px;
    background-position: center top;
}

@media (max-width: 991px) {
    .header {
        padding: 50px 0 12px;
        background-size: auto 38px;
        background-image: url(../images/h-pattern-t.png);
    }
}

@media (max-width: 575px) {
    .header {
        padding-top: 33px;
        background-size: auto 21px;
        background-image: url(../images/h-pattern-m.png);
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
    .header {
        background-image: url(../images/h-pattern@2x.png);
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx),
only screen and (max-width: 991px) {
    .header {
        background-image: url(../images/h-pattern-t@2x.png);
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx),
only screen and (max-width: 575px) {
    .header {
        background-image: url(../images/h-pattern-m@2x.png);
    }
}


@media only screen and (-webkit-min-device-pixel-ratio: 3),
only screen and (-o-min-device-pixel-ratio: 3/1),
only screen and (min-device-pixel-ratio: 3),
only screen and (min-resolution: 288dpi),
only screen and (min-resolution: 3dppx) {
    .header {
        background-image: url(../images/h-pattern@3x.png);
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3),
only screen and (-o-min-device-pixel-ratio: 3/1),
only screen and (min-device-pixel-ratio: 3),
only screen and (min-resolution: 288dpi),
only screen and (min-resolution: 3dppx),
only screen and (max-width: 991px) {
    .header {
        background-image: url(../images/h-pattern-t@3x.png);
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 3),
only screen and (-o-min-device-pixel-ratio: 3/1),
only screen and (min-device-pixel-ratio: 3),
only screen and (min-resolution: 288dpi),
only screen and (min-resolution: 3dppx),
only screen and (max-width: 575px) {
    .header {
        background-image: url(../images/h-pattern-m@3x.png);
    }
}

.header-nav {
    position: relative;
    width: 100%;
    min-height: 204px;
    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;
    overflow: hidden;
}

@media (max-width: 991px) {
    .header-nav {
        min-height: 133px;
    }
}

@media (max-width: 575px) {
    .header-nav {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        min-height: 0;
    }
}

.header__logo {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 575px) {
    .header__logo {
        position: static;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@media (max-width: 991px) {
    .header__logo img {
        height: 133px;
        width: auto;
    }
}

@media (max-width: 575px) {
    .header__logo img {
        height: 86px;
    }
}

.header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -40px;
    list-style: none;
    width: calc(50% + 80px);
}

@media (max-width: 991px) {
    .header-nav__list {
        margin: 0 -20px;
        width: calc(50% + 40px);
    }
}

@media (max-width: 575px) {
    .header-nav__list {
        margin: 0 -10px;
        width: auto;
    }
}

.header-nav__list--left {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 160px;
}

@media (max-width: 991px) {
    .header-nav__list--left {
        padding-right: 90px;
    }
}

@media (max-width: 575px) {
    .header-nav__list--left {
        padding-right: 0;
        margin-right: 0;
    }
}

.header-nav__list--right {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 100px;
}

@media (max-width: 991px) {
    .header-nav__list--right {
        padding-left: 80px;
    }
}

@media (max-width: 575px) {
    .header-nav__list--right {
        padding-left: 0;
        margin-left: 0;
    }
}

.header-nav__item {
    padding: 0 40px;
}

@media (max-width: 991px) {
    .header-nav__item {
        padding: 0 20px;
    }
}

@media (max-width: 575px) {
    .header-nav__item {
        padding: 0 10px;
        margin-bottom: 10px;
    }
}

.header-nav__link {
    display: inline-block;
    vertical-align: baseline;
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #435D33;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .header-nav__link {
        font-size: 20px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .header-nav__link {
        font-size: 11px;
        line-height: 15px;
    }
}

.header-nav__link:hover,
.header-nav__link:focus {
    color: #E84F22;
}

.lang {
    position: relative;
    border-radius: 30px;
}

.lang__toggler {
    position: relative;
    z-index: 2;
    display: inline-block;
    border: none;
    min-width: 69px;
    padding: 3.5px 0;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    text-align: center;
    color: #FFF3CA;
    background-color: #435D33;
    border-radius: 30px;
    border: none;
    margin: 0;
}

@media (max-width: 991px) {
    .lang__toggler {
        min-width: 45px;
        font-size: 20px;
        padding: 2px 0;
    }
}

@media (max-width: 575px) {
    .lang__toggler {
        min-width: 26px;
        font-size: 11px;
        padding: 2px 0 1px;
    }
}

.lang__list {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% - 17px);
    width: 100%;
    margin: 0;
    padding: 17px 0 0;
    list-style: none;
    background: #E84F22;
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    text-align: center;
    color: #FFF3CA;
    border-radius: 0 0 20px 20px;
    -webkit-animation: ani-fade-in 0.3s forwards;
    animation: ani-fade-in 0.3s forwards;
}

@media (max-width: 991px) {
    .lang__list {
        top: calc(100% - 14px);
        padding-top: 14px;
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width: 575px) {
    .lang__list {
        top: calc(100% - 8px);
        padding-top: 5px;
        font-size: 11px;
        line-height: 13px;
        border-radius: 0 0 10px 10px;
    }
}

.lang__list input {
    display: none;
}

.lang__list label {
    display: inline-block;
    vertical-align: baseline;
    padding: 5px 0;
}

.lang__list input:checked+label {
    display: none;
}

.lang:hover .lang__list,
.lang__toggler:hover+.lang__list,
.lang__toggler:focus+.lang__list {
    display: block;
}

.first-screan {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #FFF3CA;
    width: 100%;
}

.first-screan video {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.first-screan__image {
    position: absolute;
    top: 0;
    left: 0;
    /*left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);*/
    height: 100%;
/*    width: auto;*/
width: 100%;
    /*-o-object-fit: contain;
    object-fit: contain;*/
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.first-screan video.end+picture .first-screan__image,
.first-screan video.end+.first-screan__image {
    opacity: 1;
}

.about {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
    background-color: #b1b01a;
    min-height: 670px;
    color: #FFF3CA;
    text-align: center;
}

@media (max-width: 1920px) {
    .about {
        min-height: 35vw;
    }
}

@media (max-width: 575px) {
    .about {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        min-height: 80vw;
        overflow: hidden;
    }
}

@media (max-width: 450px) {
    .about {
        min-height: 88vw;
    }
}

@media (max-width: 410px) {
    .about {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        min-height: 105.5vw;
    }
}

.about__bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1920px;
    max-width: 100%;
}

@media (max-width: 575px) {
    .about__bg {
        bottom: 0;
        top: auto;
    }
}

.about__bg img {
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
    height: auto;
}

.about__content {
    position: relative;
    padding: 55px 15px 80px;
    width: 754px;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 1920px) {
    .about__content {
        width: 39.2708vw;
    }
}

@media (max-width: 991px) {
    .about__content {
        padding: 30px 15px;
        width: 360px;
    }
}

@media (max-width: 410px) {
    .about__content {
        padding-top: 19.512vw;
    }
}

@media (max-width: 360px) {
    .about__content {
        padding-top: 15vw;
    }
}

.about__title {
    margin: 0 0 45px;
    font-weight: 700;
    font-size: 45px;
    line-height: 64px;
    text-transform: uppercase;
    color: #435D33;
}

@media (max-width: 1920px) {
    .about__title {
        font-size: 2.3438vw;
        margin-bottom: 2.3438vw;
        line-height: 3.3333vw;
    }
}

@media (max-width: 991px) {
    .about__title {
        margin-bottom: 16px;
        font-size: 25px;
        line-height: 33px;
    }
}

@media (max-width: 767px) {
    .about__title {
        margin-bottom: 12px;
        font-size: 19px;
        line-height: 23px;
    }
}

.about__text {
    margin: 0;
}

@media (max-width: 991px) {
    .about__text {
        font-weight: 600;
    }
}

@media (max-width: 575px) {
    .about__text {
        width: 228px;
        margin-left: auto;
        margin-right: auto;
    }
}

.catalog {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .catalog {
        position: relative;
        padding: 50px 40px;
    }

    .catalog .container {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .catalog {
        padding: 30px;
    }
}

.catalog__slider {
    position: relative;
    padding: 0 60px;
}

@media (max-width: 991px) {
    .catalog__slider {
        padding: 0;
        width: calc(100% + 40px);
        overflow: hidden;
    }
}

@media (max-width: 575px) {
    .catalog__slider {
        width: calc(100% + 30px);
    }
}

.catalog__wrapper {
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .catalog__wrapper {
        overflow: visible;
    }
}

.catalog__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog__item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
}

@media (max-width: 991px) {
    .catalog__item {
        width: 293px;
        max-width: 293px;
        margin-right: 20px;
    }

    .swiper-container-initialized .catalog__item {
        margin-right: 0;
    }
}

@media (max-width: 575px) {
    .catalog__item {
        width: 251px;
        max-width: 251px;
        margin-right: 0;
    }
}

.catalog__inner {
    position: relative;
    display: block;
    width: 100%;
    background-color: #e84e23;
}

.catalog__item:nth-child(even) .catalog__inner {
    background-color: #b1b01a;
}

.catalog__inner img {
    display: block;
    width: 100%;
    height: auto;
}

.catalog__info {
    position: absolute;
    left: 0;
    bottom: 0;
    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: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 30px;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #FFF3CA;
}

@media (max-width: 991px) {
    .catalog__info {
        padding: 16px;
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 575px) {
    .catalog__info {
        font-size: 11px;
        line-height: 14px;
    }
}

.catalog__name {
    display: inline-block;
    vertical-align: baseline;
    font-weight: 600;
    font-size: 27px;
    line-height: 38px;
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .catalog__name {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .catalog__name {
        font-size: 13px;
        line-height: 15px;
        margin-bottom: 0;
    }
}

.catalog__nav {
    position: absolute;
    top: calc(50% - 26px);
    width: 52px;
    height: 52px;
    background-image: url("data:image/svg+xml,%3Csvg width='37' height='62' viewBox='0 0 37 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.25 5.00002L5 30.9808L31.25 56.9615' stroke='%23E84F22' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    border: none;
    background-color: transparent;
}

@media (max-width: 991px) {
    .catalog__nav {
        display: none;
    }
}

.catalog__nav:hover,
.catalog__nav:focus {
    opacity: 0.6;
}

.catalog__nav--next {
    right: 0;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.catalog__nav--prev {
    left: 0;
}

.interrupting {
    pointer-events: none;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 138px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .interrupting {
        height: 130px;
    }
}

@media (max-width: 575px) {
    .interrupting {
        height: 52px;
    }
}

.interrupting__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.interrupting video {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    height: 138px;
    width: auto;
}

@media (max-width: 991px) {
    .interrupting video {
        height: 130px;
    }
}

@media (max-width: 575px) {
    .interrupting video {
        height: 52px;
    }
}

.set {
    padding: 50px 0 0;
    text-align: center;
}

@media (max-width: 991px) {
    .set {
        padding-top: 30px;
    }
}

.set .container {
    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: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 50px;
}

@media (max-width: 991px) {
    .set .container {
        padding-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .set .container {
        padding-bottom: 30px;
    }
}

.set__title {
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    font-size: 45px;
    line-height: 64px;
    width: 100%;
}

@media (max-width: 1920px) {
    .set__title {
        font-size: 2.3438vw;
        line-height: 3.3333vw;
    }
}

@media (max-width: 991px) {
    .set__title {
        font-size: 25px;
        line-height: 33px;
    }
}

@media (max-width: 575px) {
    .set__title {
        font-size: 19px;
        line-height: 23px;
    }
}

.set__text {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .set__text {
        max-width: 515px;
    }
}

.set--md .set__title,
.set--md .set__text {
    max-width: 807px;
}

@media (max-width: 991px) {
    .set--md .set__text {
        max-width: 375px;
    }
}

.set--lg .set__title,
.set--lg .set__text {
    max-width: 1007px;
}

@media (max-width: 991px) {
    .set--lg .set__text {
        max-width: 515px;
    }
}

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

@media (max-width: 991px) {
    .set__image {
        width: 768px;
        margin-left: auto;
        margin-right: auto;
    }
}

.set__btn {
    display: block;
    width: 100%;
    padding: 28px 15px;
    background-color: #B1B01A;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    line-height: 45px;
    color: #FFF3CA;
    text-decoration: none;
}

@media (max-width: 1920px) {
    .set__btn {
        padding: 1.4583vw 1.3021vw;
        font-size: 1.5625vw;
        line-height: 2.3438vw;
    }
}

.set__btn[download] {
    display: none;
}

@media (max-width: 991px) {
    .set__btn {
        padding: 20px 15px;
        font-size: 20px;
        line-height: 30px;
    }

    .set__btn[download] {
        display: block;
    }

    .set__btn[data-fancybox] {
        display: none;
    }
}

@media (max-width: 575px) {
    .set__btn {
        padding: 10px 15px;
        font-size: 11px;
        line-height: 15px;
    }
}

.set__btn:hover,
.set__btn:focus {
    background-color: #E84F22;
}

.footer {
    padding: 50px 0;
}

@media (max-width: 991px) {
    .footer {
        padding: 20px 0;
    }
}

.footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1037px;
    max-width: 100%;
}

.footer__logo img {
    height: 190px;
    width: auto;
}

@media (max-width: 991px) {
    .footer__container {
        width: 545px;
    }

    .footer__logo img {
        height: 144px;
        width: auto;
    }
}

@media (max-width: 575px) {
    .footer__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;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .footer__logo img {
        height: 91px;
    }
}

.footer__menu {
    margin: 20px 15px 0;
    width: 416px;
    text-align: center;
}

@media (max-width: 991px) {
    .footer__menu {
        width: 201px;
    }
}


@media (max-width: 991px) {
    .footer__menu {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.footer__link {
    display: inline-block;
    vertical-align: baseline;
    color: #435D33;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer__link:hover,
.footer__link:focus {
    color: #E84F22;
}

.footer__btn {
    display: inline-block;
    vertical-align: baseline;
    background-color: #435D33;
    text-decoration: none;
    line-height: 34px;
    border-radius: 50px;
    padding-bottom: 2px;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    padding: 4px 14px 8px;
    color: #FFF3CA;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .footer__btn {
        font-size: 20px;
        line-height: 1;
    }
}

@media (max-width: 575px) {
    .footer__btn {
        font-size: 11px;
        padding: 2.5px 10px;
    }
}

.footer__copyright {
    margin: 0;
}

.footer__btn:hover,
.footer__btn:focus {
    background-color: #E84F22;
}