html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    font-family: "UZ Sans";
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    min-width: 340px;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans-Regular.woff") format("woff");
    src: url("../fonts/UZSans-Regular.woff2") format("woff2");
    src: url("../fonts/UZSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans-Medium.woff") format("woff");
    src: url("../fonts/UZSans-Medium.woff2") format("woff2");
    src: url("../fonts/UZSans-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans-SemiBold.woff") format("woff");
    src: url("../fonts/UZSans-SemiBold.woff2") format("woff2");
    src: url("../fonts/UZSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans-Bold.woff") format("woff");
    src: url("../fonts/UZSans-Bold.woff2") format("woff2");
    src: url("../fonts/UZSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "UZ Sans";
    src: url("../fonts/UZSans-ExtraBold.woff") format("woff");
    src: url("../fonts/UZSans-ExtraBold.woff2") format("woff2");
    src: url("../fonts/UZSans-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

:root {
    --green: #23b24b;
    --dark-green: #1c973f;
}

img {
    max-width: 100%;
}

/* ===== header-wrapper ===== */

.header-wrapper {
    position: relative;
}

.top-bar-wrapper {
    position: relative;
    background: var(--green);
}

.top-bar-in {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 200px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-bar-block {
    position: relative;
}

.top-bar-btn-block {
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 7px;
    overflow: hidden;
    padding: 8px 16px;
    text-decoration: none;
    transition: 250ms;
}

.top-bar-btn-block:hover {
    background: #fa1919;
    border: 1px solid #fa1919;
}

.top-bar-btn {
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
    color: #fff;
}

.top-bar-btn-block svg {
    width: 15px;
    height: 15px;
    margin-left: 9px;
    display: block;
    fill: #fff;
}

.social-link svg:hover {
    opacity: 0.7;
}

.social-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-link {
    display: inline-block;
}

.social-link svg {
    width: 23px;
    height: 23px;
    fill: #fff;
}

.basket-btn-wrapper {
    position: relative;
}

.basket-btn-block {
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    background: var(--dark-green);
    padding: 13px 30px;
    text-decoration: none;
    transition: 250ms;
}

.basket-btn-block:hover {
    background: #1b6c32;
}

.basket-btn-text {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.basket-btn-img svg {
    width: 20px;
    height: 19px;
    display: block;
    margin-right: 7px;
}

.basket-btn-popup {
    position: absolute;
    top: 45px;
    background: #fff;
    width: 100%;
    padding: 11px;
    box-sizing: border-box;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 0 10px #00000038;
    border-radius: 5px;
    display: none;
}

.basket-btn-popup-title {
    color: #111;
    font-size: 14px;
}

.basket-btn-popup-text {
    color: #111;
    font-size: 14px;
    margin-top: 10px;
}

.basket-btn-popup-text a {
    display: inline-block;
    color: var(--green);
    font-weight: bold;
}

.menu-wrapper {
    position: relative;
    z-index: 1;
}

.menu-in {
    position: relative;
    margin-left: 170px;
}

.menu-list {
    display: flex;
}

.menu-link {
    display: inline-block;
    text-decoration: none;
    color: #111;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    margin: 0 15px;
    padding: 30px 30px 30px 20px;
    position: relative;
}

div.menu-link{
    cursor: default;
}

.menu-link:hover {
    color: var(--dark-green);
}

.menu-item-sub {
    position: relative;
}

.menu-item-sub .menu-link::before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 10px;
    width: 10px;
    height: 7px;
    background: url(../img/menu-arrow-down.svg) 0 0 no-repeat;
}

.menu-list-dropdown {
    opacity: 0;
    visibility: hidden;
    height: 0;
    list-style-type: none;
    background: #23b24b;
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    text-align: left;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 250ms;
    width: 175px;
    padding: 10px 20px 10px 20px;
    box-sizing: border-box;
    display: none;
}

.menu-item-sub:hover .menu-list-dropdown {
    opacity: 1;
    visibility: visible;
    height: auto;
    display: block;
}

.menu-list-dropdown .menu-link {
    padding: 10px;
}

.menu-item-sub .menu-list-dropdown .menu-link::before {
    display: none;
}

.menu-item-sub .menu-list-dropdown .menu-link {
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    margin: 0;
    padding: 10px;
    display: block;
    transition: 250ms;
}

.menu-item-sub .menu-list-dropdown .menu-link:hover {
    color: #ffffffb3;
}

.header-mobile {
    display: none;
    padding: 17px 0;
}

.header-mobile-in {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-mobile-block {
    position: relative;
}

.header-mobile-burger-block {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header-mobile-burger span {
    display: block;
    width: 17px;
    background: #222;
    height: 2px;
    border-radius: 2px;
}

.header-mobile-burger span:nth-child(2) {
    margin: 5px 0;
}

.header-mobile-burger-text {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    margin-left: 10px;
    margin-top: 3px;
}

.header-mobile-basket svg {
    width: 24px;
    height: 21px;
    display: block;
}

.header-mobile-basket {
    cursor: pointer;
}

.header-mobile-basket-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e31119;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    left: -100%;
    transition: left 0.4s ease-in;
    overflow-x: scroll;
}

.header-mobile-close {
    position: relative;
    text-align: right;
}

.header-mobile-close svg {
    display: inline-block;
    width: 43px;
    height: 43px;
    cursor: pointer;
}

.header-mobile-content {
    position: relative;
}

.header-mobile-content .top-bar-btn-block svg {
    fill: var(--dark-green);
}

.header-mobile-content .top-bar-btn-block {
    border: 1px solid #23b24b;
    padding: 14px 32px;
}

.header-mobile-content .top-bar-btn {
    color: var(--dark-green);
    font-size: 19px;
}

.header-mobile-content .top-bar-btn-block:hover .top-bar-btn {
    color: #fff;
}

.header-mobile-content .top-bar-btn-block:hover {
    background: var(--dark-green);
}

.header-mobile-content .top-bar-btn-block:hover svg {
    fill: #fff;
}

.header-mobile-content .top-bar-btn-block svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.header-mobile-content .social-link svg {
    width: 33px;
    height: 33px;
}

.header-mobile-content .top-bar-btn .header-mobile-content .top-bar-btn {
    color: #23b24b;
}

.header-mobile-btn {
    display: inline-block;
    margin-bottom: 30px;
}

.header-mobile-menu-block {
    position: relative;
}

.header-mobile-menu-link {
    display: inline-block;
    text-decoration: none;
}

.header-mobile-menu-item:first-child .header-mobile-menu-link {
    color: #111;
    font-size: 30px;
    font-weight: bold;
}

.header-mobile-menu-link {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.header-mobile-menu-block {
    margin-top: 30px;
}

.header-mobile-content .social-link svg {
    fill: #23b24b;
}

.header-mobile-content .social-link {
    margin-top: 10px;
}

.header-mobile-content .menu-list {
    flex-direction: column;
}

.header-mobile-content .menu-item-sub .menu-link::before {
    display: none;
}

.header-mobile-content .menu-list-dropdown {
    display: block;
    position: relative;
    top: auto;
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
    background: #fff;
    padding: 0;
}

.header-mobile-content .menu-item-sub .menu-list-dropdown .menu-link {
    color: #4a4a4a;
    padding: 10px 0;
    font-size: 18px;
}

.header-mobile-content .menu-link {
    padding: 10px 0;
}

.header-mobile-content .menu-item {
    margin-bottom: 10px;
}

.header-mobile-content .menu-link-top-level {
    font-size: 30px;
}

/* ===== header-wrapper ===== */

/* ===== slider-wrapper ===== */

.slider-wrapper {
    position: relative;
    background: url(../img/slider-img.jpg) 0 0 no-repeat;
    background-size: cover;
    padding-top: 184px;
    padding-bottom: 134px;
}

.slider-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}

.slider-block {
    position: relative;
}

.slider-title {
    text-transform: uppercase;
    font-size: 102px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.slider-title span {
    color: #fa1919;
}

.slider-title-video {
    display: inline-block;
    position: relative;
    top: 10px;
    width: 158px;
    height: 92px;
    border-radius: 10px;
    overflow: hidden;
}

.slider-title-video video {
    max-width: 100%;
}

.slider-subtitle {
    position: relative;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-top: 44px;
    line-height: 1.8;
}

.slider-subtitle img {
    position: relative;
    top: 5px;
    left: 5px;
}

.slider-circle svg {
    display: block;
    width: 207px;
    height: 207px;
}

.slider-circle {
    position: absolute;
    top: -112px;
    right: 0;
    animation: spin 7s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.main-logo {
    position: absolute;
    z-index: 1;
    top: -50px;
}

.main-logo img {
    display: block;
}

.slider-gallery {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 392px;
    max-width: 485px;
}

.slider-block .slider-gallery {
    margin-left: 135px;
}

.slider-gallery-img {
    border-radius: 10px;
    overflow: hidden;
    max-height: 183px;
    max-width: 143px;
    cursor: pointer;
    transition: 250ms;
}

.slider-gallery-img:hover {
    background: #fff;
}

.slider-gallery-img:hover img {
    opacity: 0.8;
}

.slider-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 250ms;
}

.slider-gallery-img img.zoomed {
    opacity: 1 !important;
}

.zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    z-index: 1000;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.fancy-close-button {
    display: none;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: url(../img/Close_round_light.svg) 0 0 no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 1100;
    background-color: #fff;
}

.header-mobile-block-logo {
    position: absolute;
    top: -20px;
    width: 100%;
    text-align: center;
}

.header-mobile-block-logo-link {
    display: inline-block;
    max-width: 115px;
    position: relative;
    z-index: 10;
}

.slider-title-video-mob {
    display: none;
    position: relative;
    width: 158px;
    height: 92px;
    border-radius: 10px;
    overflow: hidden;
}

.slider-title-video-mob {
    border-radius: 10px;
    overflow: hidden;
    display: none;
}

.header-mobile-block-menu {
    z-index: 999;
}

/* ===== slider-wrapper ===== */

/* ===== counter-wrapper ===== */

.counter-wrapper {
    position: relative;
    background-color: #1fa444;
    padding-top: 79px;
    padding-bottom: 379px;
    /* background-image: url(../img/counter-bg.svg); */
}

.counter-in {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.counter-block {
    position: relative;
    display: flex;
}

.counter-number {
    font-size: 50px;
    color: #fff;
    font-weight: 800;
    margin-right: 25px;
}

.counter-block:nth-child(2) .counter-number {
    width: 77px;
}

.counter-block:nth-child(3) .counter-number {
    width: 47px;
}

.counter-block:nth-child(4) .counter-number {
    width: 105px;
}

.counter-block:nth-child(5) {
    display: none;
}

.counter-title {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
}

/* ===== counter-wrapper ===== */

/* ===== about-main-wrapper ===== */

.about-main-wrapper {
    position: relative;
    background: url(../img/about-main-bg.jpg) 0 0 no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 60px;
    box-sizing: border-box;
    border-radius: 25px;
    overflow: hidden;
    /* padding: 140px 0; */
    margin-top: -300px;
    padding-top: 135px;
    padding-bottom: 176px;
}

.about-main-wrapper .container {
    padding: 40px 80px;
}

.about-main-in {
    position: relative;
}

.about-main-title {
    position: relative;
    font-size: 60px;
    color: #fff;
    font-weight: 800;
    line-height: 1.4;
}

.about-main-title span {
    color: var(--green);
}

.about-main-menu {
    position: relative;
    max-width: 400px;
    margin-top: 40px;
}

.about-main-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff63;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 26px 20px;
    transition: 250ms;
}

.about-main-link:hover {
    background: #fff;
    color: #000;
    border-radius: 10px;
    overflow: hidden;
}

.about-main-item-img svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: #fff;
}

.about-main-link:hover svg {
    fill: #000;
}

.list {
    position: relative;
    margin: 10px 0;
    list-style: none;
    color: #5a5a5a;
}

.list-item {
    position: relative;
    padding-left: 20px;
}

.list-item::before {
    content: "";
    position: absolute;
    background: var(--green);
    width: 10px;
    height: 2px;
    left: 0;
    top: calc(50% - 1px);
}

/* ===== about-main-wrapper ===== */

/* ===== team-main-wrapper ===== */

.team-main-wrapper {
    position: relative;
    margin: 132px 0;
}

.team-main-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
}

.main-title {
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.team-main-block {
    position: relative;
    display: block;
    text-decoration: none;
    color: #000;
    transform: 250ms;
}

.team-main-block:hover .team-main-title {
    color: #fff;
    transition: 250ms;
}

.team-main-block:hover img {
    transition: 250ms;
    transform: scale(1.1);
}

.team-main-img {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.team-main-img img {
    display: block;
    transition: 250ms;
}

.team-main-subtitle {
    font-size: 35px;
    font-weight: bold;
    margin-top: 30px;
    position: relative;
}

.team-main-subtitle:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: url(../img/team-arrow.svg) 0 0 no-repeat;
}

.team-main-title {
    position: absolute;
    bottom: -15px;
    left: 35px;
    font-size: 95px;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    transition: 250ms;
}

/* ===== team-main-wrapper ===== */

/* ===== academy-main-wrapper ===== */

.academy-main-wrapper {
    position: relative;
    background: url(../img/academy-main.jpg) 0 0 no-repeat;
    background-size: cover;
    border-radius: 25px;
    /* overflow: hidden; */
    margin: 0 60px;
    padding: 0 20px;
    box-sizing: border-box;
    padding-top: 155px;
    padding-bottom: 87px;
}

.academy-main-in {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    grid-gap: 50px;
}

.academy-main-block {
    position: relative;
}

.academy-main-title {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #fff;
}

.academy-main-subtitle {
    color: #fff;
    line-height: 1.5;
    font-size: 18px;
    max-width: 500px;
}

.academy-main-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.academy-main-text {
    color: #fff;
    margin-top: 38px;
}

.academy-main-text svg {
    width: 41px;
    height: 28px;
    display: block;
    margin-right: 15px;
}

.academy-main-btn-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 45px;
    cursor: pointer;
}

.academy-main-btn {
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    padding: 18px 50px;
    border: 1px solid #fff;
    font-weight: 500;
    transition: 250ms;
}

.academy-main-btn-1 {
    color: #000;
    background: #fff;
    margin-right: 20px;
}

.academy-main-btn-1:hover {
    opacity: 0.8;
}

.academy-main-btn-2 {
    color: #fff;
}

.academy-main-btn-2:hover {
    background: #ffffff52;
}

.academy-main-wrapper .slider-gallery {
    margin-top: 70px;
}

.academy-main-video {
    position: relative;
    text-align: center;
}

.academy-main-video-block {
    display: inline-block;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.academy-main-video-play-icon {
    position: absolute;
    top: calc(50% - 46px);
    left: calc(50% - 46px);
    width: 92px;
    height: 92px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.academy-main-video-play-icon:before {
    top: -33px;
    left: -33px;
    right: -33px;
    bottom: -33px;
    opacity: 0.3;
    -webkit-animation: 2s brk-pulse-paused2 0.2s ease-in infinite;
    animation: 2s brk-pulse-paused2 0.2s ease-in infinite;
    -webkit-transform: scale(1);
    transform: scale(1);
    content: "";
    position: absolute;
    display: inline-block;
    border-radius: 50%;
    background: #ffffff;
}

@-webkit-keyframes brk-pulse-paused2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    60% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes brk-pulse-paused2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    60% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes brk-pulse-paused2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    60% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes brk-pulse-paused {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    60% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.academy-video-popup-in {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.academy-video-close-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: url(../img/Close_round_light.svg) 0 0 no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 1100;
    background-color: #fff;
}

.mfp-iframe-holder .mfp-close {
    top: -45px;
    right: 0;
}

.alert-popup > .mfp-close {
    display: none;
}

.academy-main-popup {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    position: fixed;
}

.academy-main-popup-center {
    z-index: 1;
    max-width: 450px;
    margin: 0 auto;
    box-sizing: border-box;
}

.academy-main-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000c2;
}

.modal_body {
    background: #fff;
    border-radius: 10px;
    padding: 60px 60px;
    position: relative;
    z-index: 1;
    max-width: 450px;
    margin: 0 auto;
    box-sizing: border-box;
}

.academy-main-popup-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.academy-main-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.academy-main-popup-close img {
    max-width: 30px;
}

.academy-main-popup-form {
    position: relative;
}

.academy-main-popup-form-input {
    display: block;
    box-sizing: border-box;
}

.academy-main-popup-form-input {
    border: none;
    outline: none;
    border-bottom: 1px solid #dddddd;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.academy-main-popup-form-btn-block {
    position: relative;
    text-align: center;
}

.academy-main-popup-form-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    background: var(--green);
    padding: 20px 60px;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    transition: 250ms;
    border: 1px solid var(--green);
    cursor: pointer;
}

.academy-main-popup-form-btn:hover {
    background: #fff;
    color: var(--green);
}

.academy-main-popup-success {
    background: var(--green);
    position: relative;
    padding: 40px;
    z-index: 1;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

.academy-main-popup-success-icon img {
    display: inline-block;
}

.academy-main-popup-success-title {
    font-size: 35px;
    font-weight: bold;
}

.academy-main-popup-success-text {
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.5;
    margin-top: 20px;
}

.academy-main-popup-error {
    background: red;
    color: #fff;
    text-align: center;
    z-index: 1;
    border-radius: 10px;
    padding: 40px;
}

.academy-main-popup-error-title {
    font-size: 35px;
    font-weight: bold;
}

.academy-main-popup-error-text {
    max-width: 226px;
    margin: 0 auto;
    line-height: 1.5;
    margin-top: 20px;
}

/* ===== academy-main-wrapper ===== */

/* ===== news-main-wrapper ===== */

.news-main-wrapper {
    position: relative;
    margin: 150px 0;
}

.news-main-in {
    position: relative;
}

.news-main-title-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.news-main-title-1 {
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-main-title-2 {
    color: #23b24b;
    margin-bottom: 5px;
    margin-left: 30px;
    position: relative;
    text-decoration: none;
    transition: 250ms;
}

.news-main-title-2 img {
    position: relative;
    top: 2px;
    left: 5px;
    transition: 250ms;
}

/* .news-main-title-2::before {
  content: "";
  position: absolute;
  top: 2px;
  right: -27px;
  width: 18px;
  height: 12px;
  background: url(../img/green-arrow-right.svg) 0 0 no-repeat;
} */

.news-main-title-2:hover img {
    left: 8px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    /* text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center; */
    position: relative;
}

.news-main-carousel {
    position: relative;
    margin: 0 20px;
    margin-top: 45px;
}

.news-main-carousel-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 30px;
}

.news-main-carousel-nav img {
    width: 49px;
    height: 49px;
}

.swiper-main-button-prev,
.swiper-main-button-next {
    cursor: pointer;
}

.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.news-main-img {
    border-radius: 10px;
    overflow: hidden;
}

.news-main-title {
    font-size: 17px;
    color: #111;
    line-height: 1.5;
    margin-top: 15px;
}

.news-main-link {
    display: block;
    text-decoration: none;
    transition: 250ms;
}

.news-main-link:hover {
    opacity: 0.8;
}

.news-main-time {
    position: relative;
    font-size: 14px;
    color: #898989;
    margin-top: 20px;
    padding-left: 20px;
}

.news-main-time::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/time-icon.svg) 0 0 no-repeat;
    width: 13px;
    height: 13px;
}

.newsMainCarousel {
    height: auto !important;
}

/* ===== news-main-wrapper ===== */

/* ===== news-main-wrapper ===== */

.hero-main-wrapper {
    position: relative;
}

.hero-main-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    border-radius: 25px;
    background: var(--green);
    overflow: hidden;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    transition: 250ms;
    cursor: pointer;
}

.hero-main-in:hover {
    background: #fa1919;
}

.hero-main-block {
    position: relative;
    text-align: center;
    align-content: center;
    color: #fff;
}

.hero-main-btn {
    display: inline-block;
}

.hero-main-block .top-bar-btn-block {
    font-size: 41px;
    border: 2px solid #fff;
    border-radius: 17px;
    padding: 15px 30px;
}

.hero-main-btn svg {
    width: 41px;
    height: 41px;
}

.hero-main-text {
    font-size: 17px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.hero-main-link {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    text-decoration: none;
    padding-bottom: 10px;
}

.hero-main-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
}

/* ===== news-main-wrapper ===== */

/* ===== sponsor-wrapper ===== */

.brand-wrapper {
    position: relative;
    background: #f3f3f3;
    margin-top: 145px;
}

.brand-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.brand-block {
    display: block;
    position: relative;
    text-align: center;
    padding: 70px 10px;
    border-right: 1px solid #e0e0e0;
    box-sizing: border-box;
    text-decoration: none;
    transition: 250ms;
}

.brand-block:hover {
    background: #ebebeb;
}

.brand-block:first-child {
    border-left: 1px solid #e0e0e0;
}

.brand-title {
    font-size: 17px;
    color: #898989;
    margin-bottom: 20px;
}

/* ===== sponsor-wrapper ===== */

/* ===== footer-wrapper ===== */

.footer-wrapper {
    position: relative;
    background: #111;
    padding: 35px 0;
    margin-top: auto;
}

.footer-in {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.footer-block {
    position: relative;
}

.footer-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
}

.footer-content {
    position: relative;
}

.footer-content .top-bar-btn-block {
    border: 1px solid var(--green);
}

.footer-content .top-bar-btn {
    color: var(--green);
}

.footer-content .top-bar-btn-block svg {
    fill: var(--green);
}

.footer-content .top-bar-btn-block:hover {
    background: #fff;
    border: 1px solid #fff;
}

.footer-menu-list {
    position: relative;
    display: flex;
    gap: 50px;
    margin-top: 10px;
}

.footer-menu-item {
    position: relative;
}

.footer-menu-link {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 0;
    box-sizing: border-box;
    transition: 250ms;
}

.footer-menu-link:hover {
    color: #7e7e7e;
}

.footer-main-btn {
    display: inline-block;
}

.copyright {
    position: relative;
    color: #8d8d8d;
    font-size: 14px;
    margin-top: 35px;
}

.footer-block .social-link svg {
    fill: var(--green);
    width: 27px;
    height: 27px;
}

.footer-block .social-list {
    margin-top: 20px;
}

/* ===== footer-wrapper ===== */

/* ===== team-wrapper ===== */

.team-page {
    position: relative;
}

.slider-inside-wrapper {
    position: relative;
    padding: 35px 0;
    background: #f5f5f5;
    background-size: cover;
}

.slider-inside-wrapper-1 {
    background: url(../img/sld-in-img-1.jpg) 0 0 no-repeat;
}

.slider-inside-in {
    position: relative;
}

.breadcrumbs-list {
    position: relative;
    display: flex;
    margin-left: 204px;
}

.breadcrumbs-link {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
}

.breadcrumbs-item {
    font-size: 15px;
}

.history-page .breadcrumbs-link {
    color: #7d7d7d;
}

.breadcrumbs-devider {
    display: inline-block;
    color: #fff;
    margin: 0 20px;
}

.history-page .breadcrumbs-devider {
    color: #7d7d7d;
}

.breadcrumbs-list-gray .breadcrumbs-link {
    color: #7d7d7d;
}

.breadcrumbs-list-gray .breadcrumbs-devider {
    color: #7d7d7d;
}

.slider-inside-bottom-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 385px;
    gap: 30px;
}

.slider-inside-title {
    font-size: 75px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}

.slider-inside-block {
    position: relative;
}

.slider-inside-block .slider-gallery {
    margin-top: 0;
}

/* ===== team-wrapper ===== */

/* ===== team-match-wrapper ===== */

.team-match-wrapper {
    position: relative;
    padding: 100px 0;
    background: #f3f3f3;
}

.team-match-in {
    position: relative;
}

.team-page .main-title {
    font-size: 35px;
}

.team-match-table-wrapper {
    position: relative;
}

.team-match-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.top-row {
    color: #969696;
    background: transparent;
    text-transform: uppercase;
}

tr {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
}

.team-match-table td {
    vertical-align: middle;
    padding: 10px 15px;
    box-sizing: border-box;
}

.team-match-table tr td:first-child {
    padding-left: 25px;
}

.table-team-text {
    color: #111;
    margin-left: 15px;
}

.table-team {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.table-team img {
    max-width: 80px;
}

.table-team-result {
    position: relative;
    background: var(--green);
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    padding: 9px 22px;
}

.table-link {
    display: inline-block;
    text-decoration: none;
}

.table-link svg {
    width: 30px;
    height: 21px;
}

.table-team-result-wrapper {
    width: 188px;
}

.team-match-mob {
    display: none;
}

.team-match-mob-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    gap: 20px;
}

.team-match-mob-contetn {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}

.team-match-mob-row .table-team {
    flex-direction: column;
    text-align: center;
}

.team-match-mob-row .table-team-text {
    margin-top: 10px;
    margin-left: 0;
}

/* ===== team-match-wrapper ===== */

/* ===== team-coach-wrapper ===== */

.team-coach-wrapper {
    position: relative;
    padding: 100px 0;
}

.team-coach-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5px;
}

.team-coach-link {
    display: block;
    text-decoration: none;
}

.team-coach-link-text {
    padding-right: 15px;
    color: rgb(17, 17, 17);
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.team-coach-block {
    position: relative;
}

.team-coach-block:first-child {
    margin-bottom: 100px;
}

.team-coach-link-subtext {
    color: #959595;
    font-size: 17px;
    margin-bottom: 30px;
}

.team-coach-img {
    position: relative;
}

.team-coach-img img {
    display: block;
}

.team-number {
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    background: #e31119;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-page .brand-wrapper {
    margin-top: 0;
}

/* ===== team-coach-wrapper ===== */

/* ===== about-us-wrapper ===== */

.slider-inside-wrapper-2 {
    background: url(../img/sld-in-img-2.jpg) 0 0 no-repeat;
}

.slider-inside-text {
    max-width: 560px;
    line-height: 1.5;
    color: #fff;
    font-size: 20px;
    margin-top: 22px;
}

.about-us-wrapper {
    position: relative;
    margin: 110px 0;
}

.about-us-in {
    position: relative;
}

.about-us-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 65px;
}

.about-us-block {
    position: relative;
}

.about-us-img img {
    display: block;
}

.about-us-img {
    overflow: hidden;
    border-radius: 10px;
    display: inline-block;
}

.about-us-text-wrapper {
    position: relative;
    line-height: 1.5;
}

.about-us-text-title {
    color: #111;
    font-size: 41px;
    font-weight: bold;
    margin-bottom: 30px;
}

.about-us-text-text {
    color: #5a5a5a;
    margin-bottom: 10px;
}

.about-us-text-text:last-child {
    margin: 0;
}

.about-us-wrapper .container {
    max-width: 1000px;
}

.about-us-row:first-child {
    margin-bottom: 110px;
}

/* ===== about-us-wrapper ===== */

/* ===== history-wrapper ===== */

.history-wrapper {
    position: relative;
    padding: 50px 0;
    background: url(../img/history-bg.svg) 0 0 no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.history-in {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.history-block {
    position: relative;
    color: #111;
    display: inline-block;
}

.history-block-year {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 35px;
    position: relative;
}

.history-block-r .history-block-img {
    text-align: right;
}

.history-block-img img {
    display: inline-block;
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    object-position: center;
}

.history-block-title {
    font-size: 18px;
    margin-top: 30px;
    /* max-width: 300px; */
    max-width: 400px;
    line-height: 1.5;
}

.history-block-title p {
    margin-bottom: 30px;
}

.history-block-title p:last-child {
    margin: 0;
}

.history-block-l {
    text-align: left;
    left: 153px;
    width: 300px;
}

.history-block-r {
    text-align: right;
    right: 154px;
    width: 300px;
}

.history-in-line {
    position: absolute;
    height: 100%;
    width: 5px;
    background: #e31119;
    top: 0;
    left: calc(50% - 2.5px);
}

.history-block-r .history-block-img,
.history-block-r .history-block-title {
    right: 35px;
    position: relative;
}

.history-block-l .history-block-img,
.history-block-l .history-block-title {
    left: 35px;
    position: relative;
}

.history-block {
    margin-bottom: 50px;
}

.history-block-r .history-block-year::before {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    background: #f4f4f4;
    width: 5px;
    height: 100%;
}

.history-block-l .history-block-year::before {
    content: "";
    position: absolute;
    top: 0;
    left: -6px;
    background: #f4f4f4;
    width: 5px;
    height: 100%;
}

/* ===== history-wrapper ===== */

/* ===== catalog-content-wrapper ===== */

.catalog-content-wrapper {
    position: relative;
    padding: 50px 0;
}

.catalog-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #111;
}

.catalog-aside-wrapper {
    position: relative;
    width: 160px;
}

.catalog-content-items {
    position: relative;
    width: calc(100% - 205px);
}

.sidebar-block-filter-container {
    position: relative;
}

.filter-block {
    position: relative;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.filter-block:last-child {
    border-bottom: none;
}

.sidebar-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
}

.filter-section-link {
    display: block;
}

.filter-section-item {
    margin-bottom: 15px;
}

.filter-section-item:last-child {
    margin: 0;
}

.filter-section-link {
    position: relative;
    display: block;
    text-decoration: none;
    color: #111;
    font-size: 15px;
    padding-left: 30px;
}

.filter-section-link::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 22px;
    height: 22px;
    background: url(../img/check.svg) 0 0 no-repeat;
}

.filter-section-link--active::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 22px;
    height: 22px;
    background: url(../img/check-active.svg) 0 0 no-repeat;
}

.main-title-h1 {
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
}

.catalog-selected-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.catalog-selected-text {
    font-size: 14px;
}

.catalog-selected__list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
}

.catalog-selected__link {
    display: flex;
    text-decoration: none;
    color: #111;
    align-items: center;
    border: 1px solid #ececec;
    border-radius: 20px;
    font-size: 14px;
    padding-left: 12px;
}

.catalog-selected__link span {
    display: inline-block;
    padding: 9px;
}

.catalog-selected__remove svg {
    width: 12px;
    height: 12px;
}

.catalog-selected__btn {
    font-size: 14px;
    color: #d52d3b;
    margin-left: 15px;
    cursor: pointer;
}

.sort {
    font-size: 12px;
    position: relative;
}

.sort-list__item-active {
    cursor: pointer;
    position: relative;
    border: 1px solid #e1e1e1;
    background: #fff;
    border-radius: 6px;
    line-height: 1;
    padding: 10px 45px 10px 15px;
    width: 140px;
    background: #fff;
}

.sort-list__item-active::before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 5px;
    width: 20px;
    height: 8px;
    background: url(../img/sort-item.svg) no-repeat;
}

.sort-show {
    display: block;
    /* transition: 250ms; */
}

.sort-list__item {
    display: block;
    color: var(--dark);
    text-decoration: none;
}

.sort-list__item:hover {
    color: var(--green-dark);
}

.sort-list .sort-list__item {
    margin-bottom: 15px;
}

.sort-list .sort-list__item:last-child {
    margin: 0;
}

.sort-list__item-active.sort-list__item-active-2 {
    width: auto;
}

.sort-list {
    display: none;
    border: 1px solid #c6c8da;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    background: #fff;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    transform: translateY(-3px);
}

.sort-list__item {
    position: relative;
}

.sort-show {
    display: block;
}

.catalog-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 15px;
}

.catalog-goods-wrapper {
    position: relative;
    margin-top: 20px;
}

.catalog-goods-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
}

.catalog-goods-link {
    display: block;
    text-decoration: none;
    color: #111;
    border: 1px solid #e7e7e7;
    padding: 25px;
    margin-right: -1px;
    margin-top: -1px;
    transition: 250ms;
}

.catalog-goods-link:hover {
    box-shadow: 0 0 1.5rem 0 rgba(50, 50, 50, 0.15);
}

.catalog-goods-title {
    font-size: 15px;
    margin-top: 20px;
    line-height: 1.5;
}

.catalog-goods-prise {
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.catalog-goods-prise-sale {
    font-size: 16px;
    color: #e31119;
    display: inline-block;
    margin-left: 10px;
}

.catalog-show-all-block {
    text-align: center;
    margin-top: 50px;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.catalog-show-all {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.catalog-show-all-img {
    margin-right: 15px;
}

.catalog-show-all-img img {
    display: block;
}

.catalog-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.catalog-pagination-next,
.catalog-pagination-prev {
    border: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    width: 41px;
    cursor: pointer;
    border-radius: 8px;
}

.catalog-pagination-item {
    position: relative;
}

.catalog-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 41px;
    height: 41px;
    border: 1px solid #e1e1e1;
    cursor: pointer;
    border-radius: 8px;
    transition: 250ms;
    color: #111;
}

.catalog-pagination-link:hover {
    color: var(--green);
    border: 1px solid var(--green);
}

.catalog-pagination-item.active .catalog-pagination-link {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.catalog-pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.show-filter-btn-block {
    display: none;
}

.show-filter-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    padding: 10px 50px;
    border: 1px solid var(--green);
    background: var(--green);
    font-weight: 500;
    transition: 250ms;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 0px;
    cursor: pointer;
    transition: 250ms;
}

.show-filter-btn:hover {
    background: #fff;
    color: var(--green);
}

#overlay-filter {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#filter-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: url(../img/Close_round_light.svg) 0 0 no-repeat;
    background-size: contain;
    cursor: pointer;
    z-index: 1100;
    background-color: #fff;
    display: none;
}

.catalog-pagination-next:hover,
.catalog-pagination-prev:hover {
    border: 1px solid var(--green);
}

/* ===== catalog-content-wrapper ===== */

/* ===== product-wrapper ===== */

.product-wrapper {
    position: relative;
}

.product-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 60px;
    margin: 65px 0;
}

.product-block-l {
    min-width: 100%;
}

.product-block {
    position: relative;
    color: #111;
}

.product-gallery {
    position: relative;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.prodSld2 {
    height: 80%;
    width: 100%;
    max-height: 620px;
}

.prodSld {
    height: 15%;
    box-sizing: border-box;
    padding: 10px 0;
}

.prodSld .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    cursor: pointer;
    padding: 3px;
    box-sizing: border-box;
}

.prodSld .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid var(--green);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 620px;
}

.prodSld .swiper-slide {
    max-height: 90px;
}

.swiper-button-next-1,
.swiper-button-prev-1 {
    position: absolute;
    top: calc(50% - 13px);
    z-index: 100;
    cursor: pointer;
}

.swiper-button-next-1 {
    right: 0;
}

.swiper-button-next-1 svg,
.swiper-button-prev-1 svg {
    width: 27px;
    height: 27px;
}

.product-title-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.product-title {
    font-size: 35px;
    font-weight: bold;
}

.product-title-status-code {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 25px;
}

.product-title-status {
    display: flex;
    color: var(--green);
    font-size: 15px;
    align-items: center;
}

.product-status--in-stock {
    color: #23b24b;
}

.product-status--in-stock svg {
    fill: #23b24b;
}

.product-status--not-available {
    color: #E31119;
}

.product-status--not-available svg {
    fill: #E31119;
}

.product-status--is-expected {
    color: #ABABAB;
}

.product-status--is-expected svg {
    fill: #ABABAB;
}


.product-title-status svg {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.product-title-code {
    background: #f0f8e8;
    border-radius: 50px;
    color: #5b6d49;
    font-size: 14px;
    padding: 9px 16px;
}

.product-title-brand {
    position: relative;
}

.product-title-brand img {
    max-height: 62px;
    object-fit: contain;
}

.options-wrapper {
    position: relative;
}

.options-top-list {
    position: relative;
}

.options-block {
    position: relative;
    margin-bottom: 25px;
}

.options-block:last-child {
    margin: 0;
}

.options-block-text {
    font-size: 16px;
    margin-bottom: 15px;
}

.options-block-text span {
    font-weight: bold;
}

.options-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.options-item {
    position: relative;
}

.options-link {
    display: block;
    text-decoration: none;
    color: #111;
    position: relative;
    overflow: hidden;
}

.options-list-img .options-link img {
    height: 80px;
    object-fit: contain;
}

.options-list-img .options-link {
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
    box-sizing: border-box;
    position: relative;
}

.options-item-block {
    position: relative;
    opacity: 0.3;
    pointer-events: none;
    overflow: hidden;
}

.options-list-img .options-item-block .options-link::before {
    content: "";
    position: absolute;
    top: 67px;
    left: -45px;
    width: 225px;
    height: 1px;
    background: #111;
    transform: rotate(45deg);
}

.options-list-img .options-item-block .options-link::after {
    content: "";
    position: absolute;
    top: 24px;
    left: -45px;
    width: 225px;
    height: 1px;
    background: #111;
    transform: rotate(-45deg);
}

.options-list-flag .options-link {
    text-transform: uppercase;
    font-size: 12px;
    height: 50px;
    padding: 0 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c7c7c7;
}

.options-list-flag .options-item-block .options-link::before {
    content: "";
    position: absolute;
    top: 23px;
    left: -27px;
    width: 100px;
    height: 1px;
    background: #111;
    transform: rotate(45deg);
}

.options-list-flag .options-item-block .options-link::after {
    content: "";
    position: absolute;
    top: 24px;
    left: -45px;
    width: 143px;
    height: 1px;
    background: #111;
    transform: rotate(-45deg);
}

.options-item-active .options-link {
    border: 1px solid #111;
}

.options-item-active::before {
    content: "";
    position: absolute;
    top: -7px;
    right: -6px;
    width: 15px;
    height: 15px;
    background: url(../img/option-active.png) 0 0 no-repeat;
    background-size: contain;
}

.product-price-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
    gap: 50px;
}

.product-price-block {
    position: relative;
}

.product-price {
    font-size: 36px;
    font-weight: bold;
}

.product-price-sale {
    font-size: 21px;
    color: #909090;
    margin-bottom: 10px;
    text-decoration: line-through;
}

.product-buy-btn-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    padding: 18px 42px;
    border-radius: 8px;
}

.product-buy-btn {
    font-size: 16px;
    font-weight: bold;
}

.characteristics-wrapper {
    position: relative;
    margin-top: 60px;
}

.characteristics-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 27px;
}

.characteristics-block {
    font-size: 15px;
}

.characteristics-row:nth-child(odd) {
    background: #f8f8f8;
}

.product-main-text {
    line-height: 1.5;
    font-size: 16px;
    margin-top: 40px;
}

.basket-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.basket-popup-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172ad1;
}

.basket-popup {
    position: relative;
    width: 100%;
    max-width: 645px;
    margin: 0 auto;
    border-radius: 11px;
    background: #fff;
    overflow: hidden;
    margin: 0 20px;
    z-index: 1;
    padding: 0 35px;
    box-sizing: border-box;
}

.basket-popup-top {
    text-align: center;
    padding: 35px 0;
    border-bottom: 1px solid #d9d9d9;
}

.basket-popup-top__img {
    display: inline-block;
}

.basket-popup-top__img svg {
    display: block;
}

.basket-popup-top__title {
    font-size: 23px;
    font-weight: bold;
}

.basket-popup-row-block {
    position: relative;
}

.basket-popup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    margin: 35px 0;
}

.basket-popup-row-l {
    position: relative;
    display: flex;
    align-items: center;
}

.basket-popup-row__img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    padding: 10px;
    box-sizing: border-box;
    margin-right: 20px;
}

.basket-popup-row__img img {
    width: 53px;
    height: 53px;
    object-fit: contain;
}

.basket-popup-total {
    position: relative;
    display: flex;
    align-items: center;
    background: #f0f8e8;
    padding: 15px 20px;
    border-radius: 7px;
    box-sizing: border-box;
    font-size: 14px;
    gap: 30px;
    justify-content: space-between;
}

.basket-popup-bottom {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 25px;
    padding-bottom: 45px;
}

.basket-popup-bottom-btn-block {
    position: relative;
}

.basket-popup-bottom-btn-1 {
    color: #8d8d8d;
    border: 1px solid #8d8d8d;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    padding: 19px 25px;
    transition: 250ms;
    cursor: pointer;
}

.basket-popup-bottom-btn-1:hover {
    background: #e3e3e3;
}

.basket-popup-bottom-btn-2 {
    color: #fff;
    border: 1px solid #23b24b;
    background: #23b24b;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    padding: 19px 25px;
    transition: 250ms;
    cursor: pointer;
}

.basket-popup-bottom-btn-2:hover {
    opacity: 0.8;
}

.basket-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.basket-popup-close svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* ===== product-wrapper ===== */

/* ===== basket-wrapper ===== */

.basket-page .breadcrumbs-link {
    color: #7d7d7d;
}

.basket-page .breadcrumbs-devider {
    color: #7d7d7d;
}

.basket-wrapper {
    position: relative;
    margin-top: 60px;
    margin-bottom: 130px;
}

.basket-in {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.basket-block {
    position: relative;
}

.basket-block-l {
    width: calc(100% - 430px);
}

.basket-block-r {
    width: 430px;
    background: #f0f8e8;
    padding: 30px;
    border-radius: 10px;
}

.basket-wrapper .main-title {
    font-size: 35px;
}

.basket-form-wrapper {
    position: relative;
    border: 1px solid #dedede;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 30px;
}

.basket-form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.basket-form-input-block {
    position: relative;
    display: flex;
    flex-direction: column;
}

.basket-form-label {
    color: #939090;
    margin-bottom: 10px;
}

.basket-form-input-block {
    width: 100%;
}

.basket-form-input {
    outline: none;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d2d2d2;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 14px 20px;
}

.basket-form-input:focus {
    background: #fff;
}

.basket-form-title {
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    top: -12px;
    background: #fff;
    padding: 0px 10px;
    left: 21px;
}

.basket-block-r-title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 35px;
}

.basket-block-r-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid #d7dfce;
    padding-bottom: 20px;
}

.basket-block-r-row-text-1 {
    font-size: 15px;
}

.basket-block-r-row-text-2 {
    font-size: 22px;
    font-weight: bold;
}

.basket-block-r-total {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.basket-block-r-total-text {
    font-size: 15px;
}

.basket-block-r-total-price {
    font-size: 36px;
    font-weight: bold;
    padding: 20px 0;
}

.basket-block-r-btn {
    cursor: pointer;
    text-align: center;
    background: var(--green);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    padding: 20px 20px;
    transition: 250ms;
}

.basket-block-r-btn:hover {
    opacity: 0.8;
}

.basket-order {
    position: relative;
    margin-top: 50px;
}

.basket-order-title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 25px;
}

.basket-order-table-wrapper {
    position: relative;
}

.basket-order-table {
    position: relative;
    width: 100%;
    border-collapse: collapse;
}

.basket-order-table td {
    padding: 20px;
    vertical-align: middle;
}

.basket-order-table tr {
    border-bottom: 1px solid #dddddd;
}

.basket-order-table-header {
    color: #909090;
    font-size: 15px;
}

.basket-order-info {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.basket-order-info-block {
    position: relative;
}

.basket-order-info-img {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    display: inline-block;
    padding: 12px;
    box-sizing: border-box;
    position: relative;
}

.basket-order-info-close {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #d9d9d9;
    border-radius: 50%;
    overflow: hidden;
    padding: 6px;
    cursor: pointer;
    z-index: 1;
}

.basket-order-info-close svg {
    display: block;
    width: 12px;
    height: 12px;
}

.basket-order-info-img img {
    display: block;
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.basket-order-info-title {
    font-weight: 500;
    line-height: 1.3;
}

.basket-order-info-code {
    position: relative;
    background: #f0f8e8;
    font-size: 13px;
    color: #5b6d49;
    border-radius: 53px;
    display: inline-block;
    box-sizing: border-box;
    padding: 9px 16px;
    margin: 15px 0;
}

.basket-order-info-list {
    position: relative;
}

.basket-order-info-list {
    display: flex;
    position: relative;
    gap: 25px;
}

.basket-order-info-item {
    font-size: 13px;
}

.basket-order-price-sale {
    font-size: 14px;
    color: #909090;
    margin-bottom: 5px;
    text-decoration: line-through;
}

.basket-order-price-current {
    font-size: 22px;
    font-weight: bold;
}

.product-quantity {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #dddddd;
    background: #fff;
    border-radius: 10px;
}

.quantity-input {
    outline: none;
    border: none;
    text-align: center;
    width: 33px;
    padding: 0;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    padding: 11px 10px;
}

.quantity-button {
    padding: 5px 10px;
    font-size: 27px;
    cursor: pointer;
}

.product-quantity-block {
    display: inline-block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

.basket-order-total-price {
    font-size: 22px;
    font-weight: bold;
}

.basket-shipping-wrapper {
    position: relative;
    border: 1px solid #dedede;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 30px;
    margin-top: 50px;
}

.basket-order-table tr:last-child {
    border: none;
}

.basket-shipping-input-block {
    position: relative;
    width: 100%;
}

.basket-shipping-input-block label {
    display: block;
    color: #939090;
    margin-bottom: 10px;
}

.basket-shipping-input-block input {
    outline: none;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
    padding: 14px 20px;
}

.basket-shipping-type {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

/* Customize the label (the container) */
.container-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.container-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: -4px;
    left: 0;
    height: 23px;
    width: 23px;
    border: 1px solid #d1d1d1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .checkmark {
    border: 1px solid var(--green);
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked ~ .checkmark {
    border: 1px solid var(--green);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: relative;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .checkmark:after {
    display: flex;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--green);
}

.basket-shipping-type-input {
    position: relative;
}

.basket-shipping-input-block--name {
    margin-top: 20px;
    margin-left: 32px;
    width: calc(100% - 32px);
    position: relative;
    cursor: pointer;
}

.basket-shipping-input-block--name:before {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    background: url(../img/shipping-type-arrow.svg) 0 0 no-repeat;
    width: 16px;
    height: 8px;
}

.basket-order-info-mob {
    position: relative;
    display: none;
}

.basket-order-info-mob-block {
    position: relative;
}

.basket-order-info-mob-list {
    position: relative;
    margin-top: 30px;
}

.basket-order-info-mob-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.basket-order-info-mob-item {
    margin-bottom: 25px;
}

.basket-order-info-mob-item:last-child {
    margin: 0;
}

.basket-banner {
    background: var(--green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    flex-direction: column;
    color: #fff;
    padding-bottom: 40px;
    margin-bottom: 35px;
}

.basket-ok-icon svg {
    width: 66px;
    height: 66px;
    display: block;
}

.basket-banner-title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
}

.basket-banner-text {
}

.order-details-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 27px;
}

.order-details-row:nth-child(odd) {
    background: #f8f8f8;
}

.order-details-block {
    font-size: 15px;
}

.order-details-title {
    font-size: 20px;
    margin-bottom: 30px;
}

.basket-ok-page .breadcrumbs-link {
    color: #7d7d7d;
}

.basket-ok-page .breadcrumbs-devider {
    color: #7d7d7d;
}

/* ===== basket-wrapper ===== */

/* ===== news-wrapper ===== */

.news-wrapper {
    position: relative;
    margin-top: 50px;
}

.news-page .breadcrumbs-link {
    color: #7d7d7d;
}

.news-page .breadcrumbs-devider {
    color: #7d7d7d;
}

.news-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-bottom: 30px;
}

.news-main-img img {
    width: 100%;
    display: block;
}

.news-wrapper .catalog-pagination {
    margin: 60px 0;
    border-top: 1px solid #dddddd;
    padding-top: 20px;
}

/* ===== news-wrapper ===== */

/* ===== news-wrapper ===== */

.single-news-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.single-news-page .breadcrumbs-link {
    color: #7d7d7d;
}

.single-news-page .breadcrumbs-devider {
    color: #7d7d7d;
}

.single-news-title {
    position: relative;
    font-size: 35px;
    font-weight: bold;
    margin: 30px 0;
}

.single-news-text strong{
    font-weight: 700;
}

.single-news-text h1,
.single-news-text h2,
.single-news-text h3,
.single-news-text h4,
.single-news-text h5 {
    font-weight: bold;
    line-height: 1.3;
}

.single-news-text h1 { font-size: 35px; margin: 40px 0 16px; }
.single-news-text h2 { font-size: 28px; margin: 36px 0 14px; }
.single-news-text h3 { font-size: 24px; margin: 28px 0 12px; }
.single-news-text h4 { font-size: 20px; margin: 24px 0 10px; }
.single-news-text h5 { font-size: 16px; margin: 20px 0 8px; }

.single-news-text h1:first-child,
.single-news-text h2:first-child,
.single-news-text h3:first-child,
.single-news-text h4:first-child,
.single-news-text h5:first-child {
    margin-top: 0;
}

.single-news-text em, .single-news-text i{
    font-style:italic;
}

.single-news-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.single-news-in {
    position: relative;
    max-width: 660px;
    margin-left: 200px;
}

.single-news-wrapper p {
    line-height: 1.5;
    margin-bottom: 15px;
}

.single-news-wrapper p:last-child {
    margin: 0;
}

.mfp-close {
    background: url(../img/Close_round_light.svg) 0 0 no-repeat !important;
    cursor: pointer !important;
}

/* ===== news-wrapper ===== */

/* ===== partners-wrapper ===== */

.assoc-wrapper {
    position: relative;
    color: #111;
    margin: 100px 0;
}

.assoc-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}

.assoc-block {
    position: relative;
}

.assoc-text {
    line-height: 1.5;
}

.assoc-block .brand-in {
    grid-template-columns: repeat(2, 1fr);
}

.assoc-block .brand-block:first-child {
    border-left: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.assoc-block .brand-block:nth-child(2) {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.assoc-block .brand-block:nth-child(3) {
    border-left: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.assoc-block .brand-block:nth-child(4) {
    border-bottom: 1px solid #e0e0e0;
}

/* ===== partners-wrapper ===== */

/* ===== partners-wrapper ===== */

.gallery-wrapper {
    position: relative;
    margin: 100px 0;
}

.gallery-in {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3px;
}

.gallery-block {
    position: relative;
}

.gallery-block img {
    display: block;
}

.gallery-page .breadcrumbs-link {
    color: #7d7d7d;
}

.gallery-page .breadcrumbs-devider {
    color: #7d7d7d;
}

/* ===== partners-wrapper ===== */

/* ===== pre-loader ===== */

.preload_anim1 {
    margin-top: -160px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.preload_anim1 svg {
    width: 380px;
}

.preload_anim__text_wrap {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
    font-weight: 600;
    color: #596f7e;
    letter-spacing: 0.04em;
    animation: preload_anim__text 1s ease-in both;
    animation-delay: 1s;
    text-transform: uppercase;
}

.preload_anim__text_wrap svg {
    display: block;
    width: 267px;
    height: 104px;
}

.preload_active .preload_mask {
    animation: preload-up 0.7s ease-in both;
}

.preload_mask:before {
    content: "";
    width: 480px;
    height: 100%;
    margin: 0 auto;
    background: #23b24b;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    animation: preload-up2 2s ease-in both;
}

.preload_anim__logo {
    animation: preload_anim__logo 1s ease-in both;
    animation-delay: 2s;
}

@keyframes preload_anim__logo {
    0% {
        opacity: 0;
        -moz-transform: translateY(50px);
        -webkit-transform: translateY(50px);
        -o-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes preload_anim__text {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -o-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes preload-up {
    0% {
        -moz-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        -moz-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes preload-up2 {
    0% {
        -moz-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        -moz-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        width: 480px;
    }

    100% {
        width: 100%;
    }
}

.preload_anim__text_wrap__2 {
    margin-left: 15px;
    animation: preload_anim__text_wrap__2 1s ease-in both;
    animation-delay: 2s;
    position: relative;
    margin-top: 18px;
}

.preload_anim__text_wrap__2 svg {
    display: block;
    width: 190px;
    height: 104px;
}

@keyframes preload_anim__text_wrap__2 {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -o-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.preload-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.preload_anim__text_wrap__3 {
    position: absolute;
    bottom: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preload_anim__text_wrap__3 1s ease-in both;
    animation-delay: 2s;
    z-index: 1;
}

.preload_anim__text_wrap__3 svg {
    display: block;
    width: 130px!important;
    height: auto!important;
}

@keyframes preload_anim__text_wrap__3 {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -o-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -o-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.anim-big-triengle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: moveUp 5s infinite ease-in both;
}

@keyframes moveUp {
    0% {
        top: 0;
    }
    100% {
        top: -2000px;
    }
}

/* ===== pre-loader ===== */

/* ===== contact-loader ===== */

.contact-wrapper {
    position: relative;
    margin-bottom: 150px;
}

.contact-in {
    position: relative;
}

.contact-wrapper .main-title {
    font-size: 35px;
    margin-top: 40px;
}

.container-m {
    max-width: 960px;
}

.contact-main-phone {
    text-decoration: none;
    font-size: 40px;
    color: #111;
    display: inline-block;
}

.contact-address {
    color: #606060;
    margin-top: 30px;
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    margin-top: 60px;
}

.contact-grid-link {
    display: block;
    text-decoration: none;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 15px;
    transition: 250ms;
}

.contact-grid-link:hover {
    background: #dbdbdb;
}

.contact-grid-link__title {
    color: #606060;
    margin-bottom: 40px;
}

.contact-grid-link__phone {
    font-size: 24px;
    color: #111;
}

/* ===== contact-loader ===== */

@media screen and (max-width: 1485px) {
    /* .counter-in {
      margin: 0 60px;
    } */
    .academy-main-wrapper {
        margin: 0 20px;
    }

    .about-main-wrapper {
        margin: 0 20px;
        margin-top: -300px;
    }
}

@media screen and (max-width: 1299px) {
    .preload_anim1 svg {
        width: 250px;
    }

    .preload_anim__text_wrap {
        font-size: 13px;
    }
}

@media screen and (max-width: 767px) {
    .preload_anim1 svg {
        width: 170px;
    }
}

@media screen and (max-width: 1370px) {
    .slider-block .slider-gallery {
        margin-left: 0;
    }

    .slider-title {
        font-size: 80px;
    }
}

@media screen and (max-width: 1270px) {
    .basket-order-table tr td:nth-child(2),
    .basket-order-table tr td:nth-child(4) {
        display: none;
    }

    .basket-order-info-mob {
        display: block;
    }

    .slider-inside-text {
        font-size: 17px;
    }

    .slider-inside-title {
        font-size: 55px;
    }
}

@media screen and (max-width: 1180px) {
    .main-logo img {
        max-width: 150px;
    }

    .menu-link {
        margin: 0;
    }

    .slider-block .slider-gallery {
        margin-left: 0;
    }

    .single-news-in {
        margin-left: 0;
    }
}

@media screen and (max-width: 1040px) {
    .basket-block-r {
        width: 300px;
    }

    .basket-block-l {
        width: calc(100% - 300px);
    }
}

@media screen and (max-width: 988px) {
    .main-logo img {
        max-width: 125px;
    }

    .menu-link {
        padding: 20px;
    }

    .menu-item-sub .menu-link::before {
        right: 5px;
    }

    .top-bar-in {
        margin-left: 150px;
    }

    .menu-in {
        margin-left: 130px;
    }

    .menu-list-dropdown {
        top: 55px;
    }

    .slider-wrapper {
        padding: 115px 0;
    }

    .slider-title-video img {
        display: none;
    }

    .slider-title-video-mob {
        display: inline-block;
        margin-bottom: 40px;
    }

    .slider-in {
        grid-template-columns: repeat(1, 1fr);
    }

    .slider-gallery {
        margin-top: 0;
    }

    .slider-circle {
        top: -100px;
    }

    .slider-title {
        font-size: 70px;
    }

    .team-main-title {
        font-size: 60px;
        bottom: -7px;
    }

    .footer-logo-block {
        display: none;
    }

    .footer-menu-list {
        flex-direction: column;
        gap: 0;
    }

    .breadcrumbs-list {
        margin-left: 0;
    }

    .slider-inside-bottom-row {
        margin-top: 100px;
    }

    .slider-inside-block:nth-child(2) {
        display: none;
    }

    .slider-inside-wrapper {
        padding-top: 95px;
    }

    .catalog-goods-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-title-video {
        display: none;
    }

    .news-in {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 920px) {
    .basket-in {
        flex-direction: column;
    }

    .basket-block-l {
        width: 100%;
    }

    .basket-block-r {
        width: 100%;
        box-sizing: border-box;
        order: -1;
    }

    .gallery-in {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 890px) {
    .top-bar-wrapper {
        display: none;
    }

    .menu-wrapper {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .counter-in {
        flex-wrap: wrap;
        margin: 0;
    }

    .counter-number {
        margin-right: 10px;
    }

    .counter-block {
        flex-direction: column;
    }

    .about-main-wrapper {
        margin: 0;
        margin-top: -300px;
        border-radius: 0;
    }

    .about-main-title {
        font-size: 40px;
    }

    .academy-main-in {
        grid-template-columns: repeat(1, 1fr);
    }

    .academy-main-title {
        font-size: 40px;
    }

    .academy-main-wrapper {
        margin: 0;
        border-radius: 0;
        background-position: -1500px 0;
    }

    .academy-main-wrapper {
        padding: 90px 20px;
    }

    .hero-main-block:nth-child(1),
    .hero-main-block:nth-child(3) {
        display: none;
    }

    .hero-main-in {
        grid-template-columns: repeat(1, 1fr);
        padding: 125px 20px;
        border-radius: 0;
    }

    .hero-main-wrapper .container {
        padding: 0;
    }

    .brand-in {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-block {
        border: none;
    }

    .brand-block:first-child {
        border-left: none;
    }

    .brand-block:nth-child(1) {
        border-right: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
    }

    .brand-block:nth-child(4) {
        border-left: 1px solid #e0e0e0;
        border-top: 1px solid #e0e0e0;
    }

    .team-match-table-wrapper {
        display: none;
    }

    .team-match-mob {
        display: block;
    }

    .team-coach-in {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-in {
        grid-template-columns: repeat(1, 1fr);
    }

    .history-block-r {
        text-align: left;
        right: 0;
    }

    .history-block-l {
        text-align: left;
        left: 0;
    }

    .history-block-l .history-block-img,
    .history-block-l .history-block-title {
        left: 0;
    }

    .history-block-r .history-block-img,
    .history-block-r .history-block-title {
        right: 0;
        position: relative;
    }

    .history-in-line {
        left: 0;
    }

    .history-in {
        align-items: flex-start;
    }

    .history-block-r .history-block-year::before,
    .history-block-l .history-block-year::before {
        content: "";
        position: absolute;
        top: calc(50% - 1px);
        left: -35px;
        background: #e31119;
        width: 25px;
        height: 2px;
    }

    .history-block-year {
        font-size: 50px;
    }

    .history-block {
        margin-left: 35px;
    }

    .history-block-r .history-block-img {
        text-align: left;
    }

    .assoc-in {
        grid-template-columns: repeat(1, 1fr);
    }

    .assoc-block .brand-block:nth-child(4) {
        border-top: none;
        border-right: 1px solid #e0e0e0;
    }

    .assoc-block .brand-block:nth-child(2) {
        border-right: 1px solid #e0e0e0;
    }

    .brand-wrapper {
        margin-top: 0;
    }

    .hero-main-in {
        background-image: url(../img/big-triengle.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .academy-main-video {
        text-align: left;
    }
}

@media screen and (max-width: 730px) {
    .about-us-text-title {
        font-size: 25px;
    }

    .catalog-row {
        flex-direction: column;
    }

    .catalog-aside-wrapper {
        width: 100%;
    }

    .catalog-content-items {
        width: 100%;
    }

    .show-filter-btn-block {
        display: block;
    }

    /* .sidebar-block-filter-container {
      display: none;
    } */
    .sidebar-block-filter-container {
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        background-color: #fff;
        transition: left 0.5s;
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
    }

    .news-in {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-main-wrapper .container {
        padding: 20px;
    }
}

@media screen and (max-width: 650px) {
    .slider-title {
        font-size: 50px;
    }

    .slider-circle svg {
        width: 145px;
        height: 145px;
    }

    .slider-circle {
        top: -70px;
    }

    .about-main-wrapper {
        background-position: -745px 0;
    }

    .team-main-in {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }

    .academy-main-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .news-main-carousel-nav {
        display: none;
    }

    .news-main-title-row {
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
        flex-direction: column;
        align-items: flex-start;
    }

    .news-main-title-2 {
        margin-bottom: 0;
        margin-top: 15px;
        margin-left: 0;
    }

    .team-coach-in {
        grid-template-columns: repeat(2, 1fr);
    }

    .basket-form {
        flex-direction: column;
    }

    .news-in {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-in {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-subtitle br {
        display: none;
    }

    .about-main-wrapper {
        background: url(../img/about-main-bg-mob.jpg) 0 0 no-repeat;
        background-size: cover;
    }

    .about-main-menu {
        margin-top: 298px;
        max-width: 100%;
    }

    .about-main-wrapper .container {
        padding: 0;
    }

    .about-main-link:hover {
        border-radius: 0;
    }

    .about-main-wrapper .about-main-title {
        margin-left: 20px;
    }

    .contact-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .header-mobile {
        padding: 15px 0;
    }

    .slider-wrapper {
        padding-top: 155px;
    }

    .slider-circle {
        top: -140px;
        right: -25px;
    }

    .slider-subtitle {
        position: relative;
        color: #fff;
        font-size: 16px;
        font-weight: normal;
        margin-top: 25px;
        line-height: 1.8;
    }

    .counter-wrapper {
        padding-top: 88px;
        padding-bottom: 380px;
    }

    .about-main-wrapper {
        padding-top: 64px;
        padding-bottom: 0;
    }

    .about-main-link {
        padding: 27px 0;
        padding-left: 52px;
        padding-right: 40px;
    }

    .team-main-wrapper .main-title {
        text-align: center;
        font-size: 40px;
    }

    .team-main-wrapper {
        margin: 147px 0;
    }

    .academy-main-title {
        font-size: 38px;
        margin-bottom: 19px;
    }

    .academy-main-wrapper {
        padding: 100px 0;
        padding-bottom: 117px;
    }

    .academy-main-text {
        margin-top: 34px;
    }

    .academy-main-btn-block {
        gap: 10px;
        margin-top: 37px;
    }

    .academy-main-btn {
        padding: 18px 25px;
    }

    .academy-main-wrapper .slider-gallery {
        margin-top: 51px;
    }

    .news-main-wrapper {
        margin: 110px 0;
    }

    .news-main-title-1 {
        font-size: 41px;
    }

    .news-main-carousel {
        margin-top: 37px;
    }

    .news-main-time {
        margin-top: 11px;
    }

    .hero-main-in {
        padding: 115px 20px;
    }

    .hero-main-text {
        margin-top: 21px;
        margin-bottom: 27px;
    }

    .brand-block {
        padding: 47px 10px;
    }

    .footer-wrapper {
        padding: 52px 0;
    }

    .footer-menu-list {
        margin-top: 31px;
    }

    .footer-menu-link {
        padding: 16px 0;
    }

    .preload-wrapper {
        flex-direction: column;
        margin-top: -20px;
    }

    .preload_anim__text_wrap__2 {
        margin-left: 0;
    }

    .anim-big-triengle img {
        object-fit: cover;
        width: 2000px;
        height: 2000px;
    }

    .footer-in {
        grid-gap: 19px;
    }

    .footer-block .social-list {
        margin-top: 4px;
    }

    .copyright {
        line-height: 1.5;
    }

    .counter-number {
        font-size: 45px;
    }

    .counter-title {
        margin-top: 12px;
    }

    .counter-in {
        gap: 45px 12px;
    }

    .slider-gallery {
        grid-gap: 16px;
    }

    .preload_anim1 {
        margin-top: -275px;
    }
}

@media screen and (max-width: 600px) {
    .about-us-row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 35px;
    }

    .about-us-text-title {
        margin-bottom: 10px;
    }

    .about-us-block-img {
        order: -1;
    }

    .basket-order-table td {
        padding: 10px;
    }
}

@media screen and (max-width: 550px) {
    .catalog-goods-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .catalog-goods-img img {
        width: 100%;
    }

    .counter-block:nth-child(5) {
        display: block;
    }

    .counter-in {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-title {
        font-size: 46px;
    }
}

/* ===== slider-wrapper ===== */


/*===== filters =====*/
.mobile_nav .filters {
    border: none;
}

.mobile_nav-mod {
    background-color: white;
}

.filters {
    padding: 10px 0px 10px 0px;
}

.filter__row {
    margin-bottom: 20px;
}

.filter__item_title, .filter_price__title {
    letter-spacing: 0.04em;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.filter_price {
    margin-bottom: 20px;
}

.filter_price .btn {
    margin-top: 20px;
}

.filter_price .ui-slider .ui-slider-range {
    background-color: #e2939e;
}

.filter__item {
    padding-bottom: 25px;
    margin-bottom: 20px;
    border-bottom: 1px dotted #e2e2e2;
}

.filter__item a {
    color: #626771;
}

.filter__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter_price__row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 20px;
}

.filter_price__input {
    padding: 4px 0px !important;
    width: 50px;
    margin-left: 15px;
    margin-right: 10px;
}

.filter__item img {
    display: inline-block;
}

.filter_color {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.filter__type_item {
    font-size: 13px;
    color: #222;
    padding-right: 3px;
    text-align: left;
    display: block;
    margin-right: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.filter__type_item a {
    color: #111;
    text-decoration: none;
    margin-left: 10px;
}

.filter__type select {
    padding: 7px 90px 9px 10px;
    position: relative;
}

.filter__type select:after {
    content: "";
    width: 10px;
    height: 10px;
    background: red;
    position: absolute;
    top: 0;
    right: 0;
}

.filter__type_item label {
    cursor: pointer;
    position: relative;
}

.filter__type_item:hover label:before {
    border-color: #23B24B;
}

.filter__type_item label:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    z-index: 2;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
}


.filter__type_item.filter__type_item-metka label {
    padding: 0px 10px 0 0px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.filter__type_item.filter__type_item-metka input {
    display: none;
}

.filter__type_item input[type=checkbox]:checked + label, .filter__type_item input[type=radio]:checked + label, .filter__type_item.filter__type_item-metka:hover label {
    border-color: #23B24B;
    color: #23B24B;
}


.filter__type_item.filter__type_item-img label {
    padding: 4px 4px;
    display: block;
    border: 2px solid white;
    border-radius: 50%;
    font-size: 0;
}

.filter__type_item-metka label:after {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}

.filter__type_item-metka input:checked + label:before {
    background: #23B24B url(../img/filter-check.svg) no-repeat center;
    background-size: 11px;
    border-color: #23B24B;
}

.filter__type_item.filter__type_item-img input {
    display: none;
}

.filter__type_item.filter__type_item-img:hover label, .filter__type_item input[type=radio]:checked {
    border-color: #333333;
    color: #222;
}
/*===== filters =====*/

/*===== filters =====*/
.filter-loader {
    width: 100%;
    height: 100%;
    margin: auto;
    z-index: 1000;
    /*display: none;*/
    left: 0;
    top: 0;
    right: 0;
    text-align: center
}

.filter-loader {
    position: absolute;
    background: rgba(255, 255, 255, .4);
    display: flex;
    justify-content: center;
}

.filter-loader__in{
    margin-top: 300px;
}

/*===== filters =====*/



.dot-loader {
    height: 20px;
    width: 20px;
    display: inline-block;
    border-radius: 50%;
    background-color: #222;
    position: relative;
    -webkit-animation: 1.2s grow ease-in-out infinite;
    animation: 1.2s grow ease-in-out infinite;
}

.dot-loader--2 {
    -webkit-animation: 1.2s grow ease-in-out infinite 0.15555s;
    animation: 1.2s grow ease-in-out infinite 0.15555s;
    margin: 0 20px;
}

.dot-loader--3 {
    -webkit-animation: 1.2s grow ease-in-out infinite 0.3s;
    animation: 1.2s grow ease-in-out infinite 0.3s;
}

@-webkit-keyframes grow {
    0%, 40%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes grow {
    0%, 40%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
