@charset "UTF-8";
@font-face {
    font-family: Oswald;
    font-display: swap;
    src: url("../fonts/Oswald-Medium.woff2") format("woff2"), url("../fonts/Oswald-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Oswald;
    font-display: swap;
    src: url("../fonts/Oswald-SemiBold.woff2") format("woff2"), url("../fonts/Oswald-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: RobotoCondensed;
    font-display: swap;
    src: url("../fonts/RobotoCondensed-Bold.woff2") format("woff2"), url("../fonts/RobotoCondensed-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: RobotoCondensed;
    font-display: swap;
    src: url("../fonts/RobotoCondensed-Regular.woff2") format("woff2"), url("../fonts/RobotoCondensed-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}


/* Указываем box sizing */

html {
    height: 100%;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

ul,
ol {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

input:focus-visible {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1;
    color: #363636;
    font-size: 18px;
    font-family: RobotoCondensed;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}

ul,
ol {
    list-style-position: inside;
}

ul[class],
ol[class] {
    list-style: none;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

img {
    max-width: 100%;
    display: block;
}

article>*+* {
    margin-top: 1em;
}

input,
button,
textarea,
select {
    font: inherit;
}

.container {
    max-width: 1232px;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
}

.content {
    padding: 100px 0;
}

.btn-more {
    display: inline-block;
    text-align: center;
    padding: 20px 40px;
    border: 2px solid;
    transition: 0.2s ease-in-out;
}

.btn-more:hover {
    color: #F15636;
}

.btn-more.green-btn {
    border-color: #139651;
}

.btn-more.red-btn {
    border-color: #F15636;
}

.btn-more.orange-btn {
    border-color: #F5A641;
}

.title {
    margin-bottom: 50px;
    font-size: 48px;
    font-family: Oswald;
    font-weight: 700;
    text-transform: uppercase;
}

.title.red {
    color: #F15636;
}

.title.green {
    color: #139651;
}

.title.orange {
    color: #F5A641;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.header::before {
    opacity: 0;
    transition: 0.2s ease-in-out;
}

.header.active::before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    background: url("../img/header-bg.jpg") center/cover no-repeat;
    opacity: 1;
    z-index: -1;
    -webkit-animation: opacityBefore 0.25s ease-in-out forwards;
    animation: opacityBefore 0.25s ease-in-out forwards;
}

@-webkit-keyframes opacityBefore {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opacityBefore {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.header__container {
    display: flex;
    align-items: center;
    padding: 34px 0;
}

.header__logo {
    display: block;
    width: 190px;
    height: 40px;
    flex-shrink: 0;
}

.header__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.header__nav {
    margin-left: auto;
    margin-right: auto;
}

.header__nav-list {
    display: flex;
    align-items: center;
}

.header__nav-list li {
    padding: 1px;
}

.header__nav-list li.active {
    background: linear-gradient(90deg, #139651 0%, #F15636 100%);
}

.header__nav-list li a {
    display: block;
    position: relative;
    font-family: Oswald;
    font-size: 16px;
    padding: 10px 25px;
    background: #0e0e0e;
    color: #ffffff;
    text-transform: uppercase;
    transition: 0.2s ease-in-out;
}

.header__nav-list li a:hover {
    color: #F15636;
}

.header__lang {
    position: relative;
    color: #ffffff;
    font-family: Oswald;
    font-size: 16px;
    margin-right: 50px;
    text-transform: uppercase;
}

.header__lang:hover .header__lang-other {
    opacity: 1;
    pointer-events: unset;
}

.header__lang-active {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    -moz-column-gap: 6px;
    column-gap: 6px;
    border: 1px solid #363636;
    cursor: default;
}

.header__lang-active img {
    width: 8px;
    height: 8px;
    -o-object-fit: contain;
    object-fit: contain;
    flex-shrink: 0;
}

.header__lang-other {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease-in-out;
}

.header__lang-other a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    border: 1px solid #363636;
    transition: 0.2s ease-in-out;
    background: #363636;
}

.header__lang-other a:hover {
    color: #F15636;
}

.header__basket {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header__basket:hover span {
    color: #F15636;
}

.header__basket span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    font-size: 12px;
    font-family: Oswald;
    flex-shrink: 0;
    transition: 0.2s ease-in-out;
}

.header__basket img {
    width: 25px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    flex-shrink: 0;
}

.header-space {
    padding-top: 116px;
}

.burger {
    position: relative;
    z-index: 1;
    display: none;
    cursor: pointer;
}

.burger__dot {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #ffffff;
    position: relative;
    transition: background-color 0.3s ease;
    pointer-events: none;
}

.burger__dot--line {
    background-color: transparent;
}

.burger__dot--line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 5px;
    transition: width 0.3s ease;
    transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
    transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
    transform: rotate(-135deg);
}

.burger__dot--right-top::before {
    transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
    transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
    width: 18px;
}

.burger._opened .burger__dot--aside {
    background-color: transparent;
}

.footer {
    background: url("../img/header-bg.jpg") center/cover no-repeat;
    overflow: hidden;
    margin-top: auto;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 50px;
}

.footer__logo {
    width: 190px;
    height: 40px;
    flex-shrink: 0;
}

.footer__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer__socials {
    display: flex;
    align-items: center;
    -moz-column-gap: 30px;
    column-gap: 30px;
}

.footer__copy {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    margin-top: 100px;
    color: #ffffff;
    font-size: 14px;
}

.footer__copy::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    border-top: 1px solid #404040;
}

.footer__copy a {
    transition: 0.2s ease-in-out;
}

.footer__copy a:hover {
    color: #F15636;
}


/*alert*/

.box-size {
    box-sizing: border-box;
}

.alert--fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
    display: flex;
}

.alert--width {
    width: 400px;
}

.alert--img__item svg {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.alert--img__item {
    display: none;
    flex-shrink: 0;
}

.alert--active .active {
    display: block;
}

.alert--warning .warning {
    display: block;
}

.alert--error .error {
    display: block;
}

.alert--content {
    position: relative;
    z-index: 12;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    color: #333333;
    margin-bottom: 10%;
}

.alert--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: 11;
    top: 0px;
    left: 0px;
}

.alert-text {
    margin-top: 15px;
    text-align: center;
}

.alert--active .active path {
    fill: #4ad395;
}

.alert--warning .warning path {
    fill: #e5e75d;
}

.alert--error .error path {
    fill: #f81919;
}

.alert--title {
    font-size: 28px;
    font-weight: 500;
}

.alert--subtitle {
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #ccbbbb;
}

.alert--x {
    position: absolute;
    width: 30px;
    height: 30px;
    padding: 8px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.alert--x svg {
    width: 100%;
    height: 100%;
}

.alert--x svg path {
    fill: #968787;
    transition: all 0.3s ease;
}

.alert--x:hover path {
    fill: black;
}


/*alert*/


/*formLoader*/

.form_loader {
    position: fixed;
    display: none;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
    position: absolute;
    width: 350px;
    max-width: 90%;
    left: 50%;
    top: 45%;
    padding: 40px;
    border-radius: 10px;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.form_loader_animate {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.form_loader_animate:after {
    content: "";
    display: block;
    width: 85%;
    height: 85%;
    /*margin: 8px;*/
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #C53364 transparent #C53364 transparent;
    -webkit-animation: loader-animate 1.2s linear infinite;
    animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
    font-size: 20px;
    text-align: center;
}

@-webkit-keyframes loader-animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*formLoader*/

.popup-request {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    inset: 0;
    justify-content: center;
    align-items: center;
    display: none;
}

.popup-request.active {
    display: flex;
}

.popup-request__block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    width: 100%;
    margin: 0 16px;
    background: url("../img/header-bg.jpg") center/cover no-repeat;
    padding: 70px;
    border-radius: 16px;
}

.popup-request__close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.popup-request__close svg {
    pointer-events: none;
}

.popup-request__close svg path {
    transition: 0.2s ease-in-out;
}

.popup-request__close:hover svg path {
    stroke: red;
}

.popup-request__img {
    width: 142px;
    height: 30px;
    margin-bottom: 60px;
}

.popup-request__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.popup-request__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 180%;
    margin-bottom: 50px;
    color: #ffffff;
}

.popup-request__items {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
}

.popup-request__item {
    padding: 15px;
    color: #ffffff;
    border-radius: 16px;
    transition: 0.2s ease-in-out;
    text-align: center;
}

.popup-request__item:hover {
    transform: scale(1.04);
}

.popup-request__item.blue {
    background: #2F80ED;
}

.popup-request__item.green {
    background: #139651;
}

.popup-request__item.red {
    background: #F15636;
}

.popup-application {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    inset: 0;
    justify-content: center;
    align-items: center;
    display: none;
}

.popup-application.active {
    display: flex;
}

.popup-application__block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 16px;
    max-width: 482px;
    width: 100%;
}

.popup-application__block .application__block {
    background: rgba(19, 150, 81, 0.8);
}

.popup-application__close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.popup-application__close svg {
    pointer-events: none;
}

.popup-application__close svg path {
    transition: 0.2s ease-in-out;
}

.popup-application__close:hover svg path {
    stroke: red;
}

.application__block {
    max-width: 482px;
    width: 100%;
    background: rgba(19, 150, 81, 0.1);
    padding: 50px;
}

.application__block form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.application__block-title {
    margin-bottom: 20px;
    font-family: Oswald;
    text-transform: uppercase;
}

.application__field {
    padding: 15px 20px;
    background: #FFFFFF;
    border: 1px solid #C2C2C2;
    border-radius: 6px;
}

.application__field.textarea {
    height: 110px;
    border: none;
    outline: none;
    resize: none;
}

.application__submit {
    padding: 15px;
    text-align: center;
    background: #F15636;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    outline: none;
    transition: 0.2s ease-in-out;
}

.application__submit:hover {
    transform: scale(1.04);
}

.breadcrumbs {
    background: url("../img/header-bg.jpg") center/cover no-repeat;
}

.breadcrumbs__container {
    padding: 25px 0;
    border-top: 1px solid #363636;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.breadcrumbs__list-item {
    position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
    margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
    position: absolute;
    content: ">";
    color: #C2C2C2;
    top: 50%;
    transform: translateY(-50%);
    right: -18px;
}

.breadcrumbs__list-link {
    white-space: nowrap;
    color: #C2C2C2;
    transition: 0.2s ease-in-out;
}

.breadcrumbs__list-link:hover {
    color: #F15636;
}

.breadcrumbs__list-link.active {
    color: #ffffff;
    pointer-events: none;
}

.popup-confirm {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    inset: 0;
    justify-content: center;
    align-items: center;
    display: none;
}

.popup-confirm.active {
    display: flex;
}

.popup-confirm__block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 16px;
    max-width: 659px;
    height: 300px;
    width: 100%;
    border-radius: 16px;
    background: url("../img/header-bg.jpg") center/cover no-repeat;
}

.popup-confirm__close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.popup-confirm__close svg {
    pointer-events: none;
}

.popup-confirm__close svg path {
    transition: 0.2s ease-in-out;
}

.popup-confirm__close:hover svg path {
    stroke: red;
}

.popup-confirm__title {
    margin-bottom: 40px;
    font-family: Oswald;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
}

.popup-confirm__btns {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    color: #ffffff;
}

.popup-confirm__btns a {
    display: block;
    padding: 15px 35px;
    text-align: center;
    border-radius: 16px;
    transition: 0.2s ease-in-out;
}

.popup-confirm__btns a:hover {
    transform: scale(1.04);
}

.popup-confirm__btns a:first-child {
    background: #2F80ED;
}

.popup-confirm__btns a:last-child {
    background: #139651;
}

.hero {
    position: relative;
    background: url("../img/img-bg.png") center no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
}

.hero__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    height: 100vh;
    padding-top: 116px;
    color: #ffffff;
}

.hero__title {
    position: relative;
    margin-bottom: 60px;
    font-size: 48px;
    padding: 30px 90px 30px 0;
    color: #363636;
    text-transform: uppercase;
    z-index: 1;
}

.hero__title::before {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    height: 100%;
    background: #F5A641;
    z-index: -1;
    border-radius: 50px;
}

.hero__text {
    max-width: 500px;
    line-height: 180%;
    margin-bottom: 50px;
}

.hero__socials {
    position: absolute;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero__social {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__social:hover {
    transform: scale(1.1);
}

.hero__social img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.hero__img {
    position: absolute;
    bottom: 0;
    left: 65%;
    transform: translateX(-50%);
    width: 35vw;
    max-width: 730px;
    max-height: 80%;
    pointer-events: none;
}

.start {
    position: relative;
}

.start .start-decor {
    position: absolute;
    z-index: -1;
    -o-object-fit: contain;
    object-fit: contain;
}

.start .start-decor.start-decor-1 {
    width: 223px;
    height: auto;
    left: 0;
    top: 90px;
}

.start .start-decor.start-decor-2 {
    width: 286px;
    height: auto;
    right: 0;
    top: 40px;
}

.start__title {
    text-align: center;
}

.start__subtitle {
    margin-bottom: 50px;
    text-align: center;
    line-height: 180%;
    max-width: 645px;
    margin-left: auto;
    margin-right: auto;
}

.start__age {
    margin-bottom: 50px;
    width: 120px;
    margin-left: auto;
    margin-right: auto;
}

.start__age-slide {
    padding: 15px 0;
    background: #139651;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}

.start__list::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    border: 1px dashed #C2C2C2;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.start__list-slide {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 100px;
    background: #fff;
}

.start__list-item {
    padding: 35px;
    display: flex;
    align-items: flex-start;
    border: 1px solid #C2C2C2;
    background: #ffffff;
}

.start__list-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 1px solid #C2C2C2;
}

.start__list-text {
    line-height: 180%;
}

.start__btns {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

.start__btn {
    width: 60px;
    height: 60px;
    border: 1px solid #C2C2C2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.start__btn svg path {
    transition: 0.2s ease-in-out;
}

.start__btn:hover {
    background: #139651;
    border-color: #139651;
}

.start__btn:hover svg path {
    stroke: #ffffff;
}

.art {
    background: url("../img/art.jpg?v=1.1") center/100% 100% no-repeat;
}

.art__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.art__subtitle {
    margin-bottom: 50px;
    line-height: 180%;
    max-width: 645px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #ffffff;
}

.art__link {
    color: #ffffff;
}

.this {
    position: relative;
}

.this.max-width .this__container {
    max-width: unset;
}

.this.max-width .this__container .this__bg {
    height: auto;
}

.this.right .this__container {
    margin-left: auto;
}

.this__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: right top;
    object-position: right top;
    z-index: -1;
}

.this.this-main .this__bg {
    object-fit: cover;
    object-position: center;
}

.this__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 513px;
}

.this__text {
    text-shadow: 0 0 10px #fff;
    line-height: 180%;
}

.this__more {
    margin-top: 50px;
}

.fix-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 69px;
    height: 69px;
    border-radius: 50%;
    background: #139651;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.2s ease-in-out;
}

.fix-btn:hover {
    background: #F15636;
}

.fix-btn img {
    width: 29px;
    height: 29px;
    -o-object-fit: contain;
    object-fit: contain;
    pointer-events: none;
}

.shop__container {
    padding-bottom: 70px;
}

.shop__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

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

.shop__item::before {
    display: block;
    content: "";
}

.shop__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.shop__item::before {
    padding-top: 76%;
}

.shop__item img {
    transition: 0.2s ease-in-out;
}

.shop__item:hover img {
    transform: scale(1.04);
}

.shop__item-title {
    position: absolute;
    left: 30px;
    bottom: 30px;
    padding: 10px 20px;
    background: #139651;
    color: #ffffff;
    border-radius: 6px;
}

.pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: 50px;
}

.pagination li.active a {
    color: #ffffff;
    background: #139651;
}

.pagination li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 39px;
    height: 39px;
    background: #FFFFFF;
    border: 1px solid #C2C2C2;
    transition: 0.2s ease-in-out;
}

.pagination li a:hover {
    color: #ffffff;
    background: #139651;
}

.catalog__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.catalog__item {
    display: flex;
    flex-direction: column;
}

.catalog__item-img {
    position: relative;
    margin-bottom: 20px;
}

.catalog__item-img::before {
    display: block;
    content: "";
}

.catalog__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.catalog__item-img::before {
    padding-top: 100%;
}

.catalog__item-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-family: Oswald;
    text-transform: uppercase;
}

.catalog__item-price {
    margin-bottom: 20px;
}

.catalog__item-link {
    margin-top: auto;
    align-self: flex-start;
    padding: 15px 40px;
    border: 2px solid #139651;
    transition: 0.2s ease-in-out;
}

.catalog__item-link:hover {
    color: #F15636;
}

.products__container {
    display: flex;
    justify-content: space-between;
}

.products__left {
    width: 48%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.products__small {
    width: 73px;
    height: 484px;
    cursor: -webkit-grab;
    cursor: grab;
}

.products__small-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.products__big {
    width: 84%;
}

.products__big-item {
    position: relative;
    cursor: pointer;
    width: 100%;
}

.products__big-item::before {
    display: block;
    content: "";
}

.products__big-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.products__big-item::before {
    padding-top: 100%;
}

.products__right {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    width: 48%;
}

.products__title {
    font-size: 48px;
    font-family: Oswald;
    font-weight: 700;
    text-transform: uppercase;
    color: #139651;
}

.products__article {
    font-size: 14px;
}

.products__price {
    font-size: 20px;
    color: #F15636;
    font-family: Oswald;
}

.products__text {
    line-height: 180%;
}

.products__link {
    align-self: flex-start;
    padding: 15px 40px;
    border: 2px solid #139651;
    transition: 0.2s ease-in-out;
}

.products__link.active {
    pointer-events: none;
    color: #C2C2C2;
    border-color: #C2C2C2;
}

.products__link.active span:nth-child(2) {
    display: block;
}

.products__link.active span:nth-child(1) {
    display: none;
}

.products__link span {
    pointer-events: none;
}

.products__link span:nth-child(2) {
    display: none;
}

.products__link:hover {
    color: #F15636;
}

.cart__container {
    display: flex;
    align-items: flex-start;
}

.cart__left {
    width: 70%;
    margin-right: 100px;
}

.cart__title {
    margin-bottom: 30px;
}

.cart__items {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.cart__item {
    display: flex;
    padding-top: 30px;
    border-top: 1px solid #C2C2C2;
}

.cart__item-img {
    position: relative;
    width: 120px;
    margin-right: 20px;
    flex-shrink: 0;
    overflow: hidden;
}

.cart__item-img::before {
    display: block;
    content: "";
}

.cart__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cart__item-img img {
    transition: 0.2s ease-in-out;
}

.cart__item-img:hover img {
    transform: scale(1.04);
}

.cart__item-img::before {
    padding-top: 100%;
}

.cart__item-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.cart__item-title {
    font-family: Oswald;
    text-transform: uppercase;
    font-size: 20px;
    transition: 0.2s ease-in-out;
}

.cart__item-title:hover {
    color: #F15636;
}

.cart__item-elems {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.cart__item-btns {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    background: #FFFFFF;
    border: 1px solid #C2C2C2;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.04);
}

.cart__item-btns button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    transition: 0.2s ease-in-out;
}

.cart__item-btns button svg {
    pointer-events: none;
}

.cart__item-btns button svg path {
    transition: 0.2s ease-in-out;
}

.cart__item-btns button:hover {
    background: #139651;
}

.cart__item-btns button:hover svg path {
    stroke: #ffffff;
}

.cart__item-remove {
    text-decoration: underline;
    transition: 0.2s ease-in-out;
    font-size: 14px;
}

.cart__item-remove:hover {
    color: #F15636;
}

.cart__right {
    width: 482px;
    flex-shrink: 0;
}

.cart__right.disabled {
    display: none;
}

.cart__right form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 50px;
    background: rgba(19, 150, 81, 0.1);
}

.cart__total {
    margin-bottom: 20px;
    font-family: Oswald;
    text-transform: uppercase;
}

.cart__input {
    padding: 15px 20px;
    border: 1px solid #C2C2C2;
    border-radius: 6px;
}

.cart__submit {
    padding: 15px;
    background: #F15636;
    border-radius: 5px;
    transition: 0.2s ease-in-out;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
}

.cart__submit:hover {
    background: #139651;
}

.recipe__items {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.recipe__item {
    display: flex;
    padding: 35px;
    border: 1px solid #C2C2C2;
}

.recipe__item-img {
    width: 278px;
    flex-shrink: 0;
    position: relative;
    margin-right: 30px;
    align-self: flex-start;
}

.recipe__item-img::before {
    display: block;
    content: "";
}

.recipe__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.recipe__item-img::before {
    padding-top: 145%;
}

.recipe__item-img::after {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    background: url("../img/inst-icon.png") center/36px 36px no-repeat, linear-gradient(0deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
    opacity: 0;
    transition: 0.2s ease-in-out;
}

.recipe__item-img:hover::after {
    opacity: 1;
}

.recipe__item-col {
    display: flex;
    flex-direction: column;
}

.recipe__item-title {
    margin-bottom: 40px;
    font-weight: 700;
}

.recipe__item-text {
    max-height: 250px;
    overflow: hidden;
    transition: 0.4s linear;
    margin-bottom: auto;
    line-height: 180%;
}

.recipe__item-more {
    margin-top: 20px;
    padding: 15px 40px;
    border: 2px solid #139651;
    align-self: flex-start;
    transition: 0.2s ease-in-out;
}

.recipe__item-more span:nth-child(2) {
    display: none;
}

.recipe__item-more.active span:nth-child(2) {
    display: block;
}

.recipe__item-more.active span:nth-child(1) {
    display: none;
}

.recipe__item-more:hover {
    background: #139651;
    color: #ffffff;
}

.social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.social__item {
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 15px 20px;
    color: #ffffff;
    transition: 0.25s ease-in-out;
}

.social__item img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    flex-shrink: 0;
}

.social__item.wp {
    background: #139651;
}

.social__item.tel {
    background: #2F80ED;
}

.social__item.help {
    background: #F15636;
}

.social__item.inst {
    background: transparent;
    border: 2px solid #F15636;
    color: #363636;
}

.social__item:hover {
    transform: scale(1.04);
}

.cards__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.card__item {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.card__item-img {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.card__item-img::before {
    display: block;
    content: "";
}

.card__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.card__item-img::before {
    padding-top: 61%;
}

.card__item-img img {
    transition: 0.2s ease-in-out;
}

.card__item-img:hover img {
    transform: scale(1.04);
}

.card__item-title {
    font-size: 20px;
    font-family: Oswald;
    align-self: flex-start;
    transition: 0.2s ease-in-out;
}

.card__item-title:hover {
    color: #F15636;
}

.card__item-text {
    line-height: 180%;
}

.headers {
    background: linear-gradient(265.51deg, rgba(0, 0, 0, 0) 0%, #000000 92.72%), url("../img/headers-bg.jpg") center/cover no-repeat;
}

.headers__container {
    padding: 70px 0;
}

.headers__title {
    color: #ffffff;
    margin-bottom: 0 !important;
}

.info__container {
    display: flex;
    justify-content: space-between;
}

.info__left {
    width: 49%;
}

.info__big {
    width: 100%;
    margin-bottom: 20px;
}

.info__big-slide {
    position: relative;
    cursor: pointer;
    background: #fff;
}

.info__big-slide::before {
    display: block;
    content: "";
}

.info__big-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.info__big-slide::before {
    padding-top: 61%;
}

.info__small {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    cursor: -webkit-grab;
    cursor: grab;
}

.info__small-slide {
    position: relative;
}

.info__small-slide::before {
    display: block;
    content: "";
}

.info__small-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.info__small-slide::before {
    padding-top: 58%;
}

.info__right {
    width: 49%;
    line-height: 180%;
}

.empty {
    display: none;
}

.empty.active {
    display: block;
}

.swiper__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    z-index: 9;
}

.swiper__arrow.next {
    right: 16px;
}

.swiper__arrow.prev {
    left: 16px;
}

.swiper__arrow svg rect,
.swiper__arrow svg path {
    transition: .2s ease-in-out;
}

.swiper__arrow:hover svg rect {
    fill: #F15636;
}

.swiper__arrow:hover svg path {
    stroke: #fff;
}

.swiper__arrow svg {
    height: 36px;
}

@media (min-width: 992px) {
    .popup-request__item.blue,
    .social__item.tel {
        display: none;
    }
}

@media (max-width: 1650px) {
    body {
        font-size: 16px;
    }
    .hero__title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    .hero__text {
        margin-bottom: 40px;
    }
}

@media (max-width: 1240px) {
    .container {
        max-width: 980px;
    }
    .content {
        padding: 65px 0;
    }
    .title {
        font-size: 38px;
        margin-bottom: 30px;
    }
    .header__container {
        padding: 15px 0;
    }
    .header__logo {
        width: 140px;
        height: 30px;
    }
    .header__nav-list li a {
        font-size: 14px;
        padding: 8px 20px;
    }
    .header__lang {
        font-size: 14px;
        margin-right: 30px;
    }
    .header__lang-active {
        padding: 12px 18px;
    }
    .header__lang-other a {
        padding: 12px 18px;
    }
    .header-space {
        padding-top: 76px;
    }
    .footer__top {
        padding-top: 50px;
    }
    .footer__nav .header__nav-list {
        flex-direction: row;
    }
    .footer__copy {
        margin-top: 50px;
    }
    .popup-application__close {
        top: 20px;
        right: 20px;
    }
    .application__block {
        padding: 25px;
    }
    .application__block form {
        row-gap: 10px;
    }
    .application__block-title {
        margin-bottom: 10px;
    }
    .popup-confirm__close {
        top: 20px;
        right: 20px;
    }
    .hero__container {
        padding-top: 76px;
    }
    .hero__title {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .hero__text {
        margin-bottom: 25px;
    }
    .start .start-decor.start-decor-1 {
        width: 120px;
    }
    .start .start-decor.start-decor-2 {
        width: 170px;
    }
    .start__subtitle {
        margin-bottom: 30px;
    }
    .start__age {
        margin-bottom: 30px;
    }
    .start__list-slide {
        grid-gap: 20px 30px;
    }
    .start__list-item {
        padding: 20px;
    }
    .start__btns {
        margin-top: 30px;
    }
    .art__subtitle {
        margin-bottom: 30px;
    }
    .this__more {
        margin-top: 30px;
    }
    .fix-btn {
        width: 45px;
        height: 45px;
    }
    .fix-btn img {
        width: 20px;
        height: 20px;
    }
    .products__left {
        width: 455px;
        flex-shrink: 0;
        margin-right: 20px;
    }
    .products__small {
        height: 382px;
        width: 55px;
    }
    .products__right {
        row-gap: 20px;
    }
    .products__title {
        font-size: 38px;
    }
    .cart__item-title {
        font-size: 16px;
    }
    .cart__item-btns button {
        width: 35px;
        height: 35px;
    }
    .cart__right {
        width: 370px;
    }
    .cart__right form {
        padding: 25px;
    }
    .recipe__item-title {
        margin-bottom: 20px;
    }
    .social {
        margin-top: 35px;
        gap: 15px;
    }
    .headers__container {
        padding: 50px 0;
    }
}

@media (max-width: 1200px) {
    .alert--width {
        width: 370px;
    }
    .alert--content {
        padding: 25px;
    }
    .alert--img__item svg {
        width: 75px;
        height: 75px;
    }
    .alert-text {
        margin-top: 10px;
    }
    .alert--title {
        font-size: 24px;
    }
    .alert--subtitle {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    body {
        font-size: 14px;
    }
    .title {
        font-size: 30px;
    }
    .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 76px);
        opacity: 0;
        pointer-events: none;
        background: url("../img/header-bg.jpg") center/cover no-repeat;
        transition: 0.25s ease-in-out;
    }
    .header__nav.active {
        opacity: 1;
        pointer-events: unset;
    }
    .header__nav-list {
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 25px;
    }
    .header__lang {
        margin-left: auto;
        font-size: 12px;
    }
    .header__lang-active {
        padding: 8px 12px;
    }
    .header__lang-other a {
        padding: 8px 12px;
    }
    .burger {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (5px)[3];
        grid-template-columns: repeat(3, 5px);
        justify-content: space-between;
        width: 25px;
        row-gap: 5px;
        -moz-column-gap: 5px;
        column-gap: 5px;
        margin-left: 30px;
    }
    .footer__logo {
        width: 160px;
        height: 35px;
    }
    .hero__text {
        text-shadow: 0 0 6px #363636;
    }
    .hero__img {
        width: 450px;
        transform: unset;
        left: auto;
        right: 0;
    }
    .start__subtitle {
        max-width: 70%;
    }
    .catalog__items {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }
    .products__title {
        font-size: 30px;
    }
    .cart__left {
        margin-right: 50px;
    }
    .cart__right {
        width: 300px;
    }
    .cart__right form {
        padding: 20px;
        row-gap: 10px;
    }
    .cart__input {
        padding: 12px 16px;
    }
    .social__item {
        padding: 12px 16px;
        -moz-column-gap: 12px;
        column-gap: 12px;
    }
    .social__item img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 992.9px) {
    .container {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer__top {
        flex-direction: column;
        row-gap: 32px;
    }
    .footer__nav .header__nav-list li a {
        padding: 8px 16px;
    }
    .footer__socials {
        justify-content: center;
    }
    .popup-confirm__title {
        font-size: 20px;
    }
    .popup-confirm__btns {
        flex-direction: column;
        row-gap: 20px;
    }
    .hero__container {
        height: auto;
        margin-top: 100px;
        padding-right: 40px;
    }
    .hero__img {
        position: relative;
        width: 100%;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
        height: auto;
        right: auto;
        padding: 0 16px;
    }
    .start .start-decor.start-decor-2 {
        top: auto;
        bottom: 0;
    }
    .start__list-num {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }
    .start__btn {
        width: 45px;
        height: 45px;
    }
    .shop__items {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .catalog__item-title {
        font-size: 16px;
    }
    .catalog__item-link {
        padding: 12px 30px;
    }
    .products__container {
        flex-direction: column;
        row-gap: 30px;
    }
    .products__left {
        margin-right: 0;
    }
    .products__right {
        width: 100%;
    }
    .cart__container {
        flex-direction: column;
        row-gap: 50px;
    }
    .cart__left {
        margin-right: 0;
        width: 100%;
    }
    .cart__title {
        margin-bottom: 20px;
    }
    .cart__items {
        row-gap: 20px;
    }
    .cart__item {
        padding-top: 20px;
    }
    .recipe__item {
        padding: 20px;
    }
    .recipe__item-img {
        width: 200px;
    }
    .recipe__item-text {
        max-height: 175px;
    }
    .cards__items {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
    .info__container {
        flex-direction: column;
        row-gap: 32px;
    }
    .info__left {
        width: 100%;
    }
    .info__small {
        margin-bottom: 32px;
    }
    .info__right {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .swiper__arrow svg {
        height: 26px;
        width: 26px;
    }
    .footer__nav .header__nav-list {
        flex-direction: column;
    }
    .start__list::before {
        display: none;
    }
    .footer__copy {
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }
    .start .start-decor.start-decor-1 {
        top: 200px;
    }
    .start__subtitle {
        max-width: unset;
    }
    .start__list-slide {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        padding-bottom: 1px;
    }
    .shop__item-title {
        left: 15px;
        bottom: 15px;
    }
    .catalog__items {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
    .products__left {
        flex-direction: column-reverse;
        row-gap: 10px;
        width: 100%;
    }
    .products__small {
        height: auto;
        width: 100%;
    }
    .products__small-item {
        position: relative;
    }
    .products__small-item::before {
        display: block;
        content: "";
    }
    .products__small-item img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .products__small-item::before {
        padding-top: 100%;
    }
    .products__big {
        width: 100%;
    }
    .recipe__item {
        flex-direction: column;
        row-gap: 25px;
    }
    .recipe__item-img {
        margin-right: 0;
        width: 100%;
    }
    .cards__items {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 500px) {
    .alert--content {
        width: 92%;
    }
    .alert--img__item svg {
        width: 60px;
        height: 60px;
    }
    .alert--title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
        padding: 16px 30px 16px 0;
    }
    .shop__items {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .catalog__items {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 35px;
    }
    .cart__item {
        flex-direction: column;
        row-gap: 20px;
    }
    .cart__item-col {
        row-gap: 20px;
    }
    .cart__right {
        width: 100%;
    }
}


/*alert*/

.box-size {
    box-sizing: border-box;
}

.alert--fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
    display: flex;
}

.alert--width {
    width: 400px;
}

.alert--img__item svg {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.alert--img__item {
    display: none;
    flex-shrink: 0;
}

.alert--active .active {
    display: block;
}

.alert--warning .warning {
    display: block;
}

.alert--error .error {
    display: block;
}

.alert--content {
    position: relative;
    z-index: 12;
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    color: #333333;
    margin-bottom: 10%;
}

.alert--bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
    z-index: 11;
    top: 0px;
    left: 0px;
}

.alert-text {
    margin-top: 15px;
    text-align: center;
}

.alert--active .active path {
    fill: #4ad395;
}

.alert--warning .warning path {
    fill: #e5e75d;
}

.alert--error .error path {
    fill: #f81919;
}

.alert--title {
    font-size: 28px;
    font-weight: 500;
}

.alert--subtitle {
    font-weight: 400;
    font-size: 20px;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid #ccbbbb;
}

.alert--x {
    position: absolute;
    width: 30px;
    height: 30px;
    padding: 8px;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.alert--x svg {
    width: 100%;
    height: 100%;
}

.alert--x svg path {
    fill: #968787;
    transition: all 0.3s ease;
}

.alert--x:hover path {
    fill: black;
}


/*alert*/