@charset "UTF-8";
@font-face {
    font-family: 'RockStar';
    src: url('../fonts/RockStar-ExtraBold.eot');
    src: local('☺'), url('../fonts/RockStar-ExtraBold.woff') format('woff'), url('../fonts/RockStar-ExtraBold.ttf') format('truetype'), url('../fonts/RockStar-ExtraBold.svg') format('svg');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'RockStar';
    src: url('../fonts/RockStar-Regular.eot');
    src: local('☺'), url('../fonts/RockStar-Regular.woff') format('woff'), url('../fonts/RockStar-Regular.ttf') format('truetype'), url('../fonts/RockStar-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RockStar';
    src: url('../fonts/RockStar-SemiBold.eot');
    src: local('☺'), url('../fonts/RockStar-SemiBold.woff') format('woff'), url('../fonts/RockStar-SemiBold.ttf') format('truetype'), url('../fonts/RockStar-SemiBold.svg') format('svg');
    font-weight: 600;
    font-style: normal;
}

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;
}

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;
}

:root {
    --main-color-blue: #0f94f7;
    --text-color-dark: #000000;
    --white-color: #ffffff;
    --card-pink: #ff7bac;
}


/* -------------------------------------------------------------------------- */


/*                            //LINK STICKY footer                            */


/* -------------------------------------------------------------------------- */

html {
    height: 100%;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

header {
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.main-content {
    /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    overflow: hidden;
}

footer {
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}


/* -------------------------------------------------------------------------- */


/*                              //LINK CONTAINER                              */


/* -------------------------------------------------------------------------- */

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


/* -------------------------------------------------------------------------- */


/*                               //LINK GLOBALS                               */


/* -------------------------------------------------------------------------- */

html,
body {
    font-family: 'RockStar', sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: var(--text-color-dark);
}

body {
    overflow-x: hidden;
}

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

.arrowed {
    display: inline;
    padding-right: 45px;
    position: relative;
}

.arrowed:before {
    content: url('../img/icons/arrow-left.svg');
    position: absolute;
    right: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.arrowed--black:before {
    content: url('../img/icons/arrow-left-black.svg');
    position: absolute;
    right: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.arrowed:hover:before {
    right: 0;
}

.section__title {
    font-family: RockStar;
    font-style: normal;
    font-weight: 800;
    color: var(--text-color-dark);
    margin-bottom: 40px;
}

.section__title--small {
    font-size: 2.5rem;
    line-height: 2.5rem;
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: center;
    align-content: center;
    color: var(--white-color);
    /* //NOTE  */
}

.breadcrumb--dark {
    color: var(--text-color-dark);
    padding-top: 30px;
}

.breadcrumb__link,
.yoast-breadcrumbs span {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 0.75rem;
    color: inherit;
    cursor: pointer;
}

.breadcrumb--dark .yoast-breadcrumbs a {
    color: var(--text-color-dark);
}

.yoast-breadcrumbs a {
    color: var(--white-color);
}

.yoast-breadcrumbs a {
    padding: 0 15px;
}

.breadcrumb_last {
    padding: 0 15px;
    cursor: default !important;
}

.breadcrumb_last {
    opacity: 0.7;
}

.breadcrumb--dark .breadcrumb_last {
    color: rgba(0, 0, 0, 0.5) !important;
    cursor: normal;
}

.breadcrumb__link:hover,
.yoast-breadcrumbs a:hover {
    color: inherit;
    opacity: 0.7;
}

.breadcrumb b {
    color: inherit;
}

.yoast-breadcrumbs span span a:first-child {
    padding-left: 0;
}

.yoast-breadcrumbs span span span a {
    padding-left: 15px !important;
}

.loader-audio {
    display: none;
    justify-content: center;
    align-items: center;
    /* margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%; */
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    opacity: 0.9;
    background: #fbfbfb;
}


/* -------------------------------------------------------------------------- */


/*                           //LINK FULLPAGE SLIDER                           */


/* -------------------------------------------------------------------------- */

.fullpage-slider {
    padding: 60px 0;
}

.fullpage-slider .swiper-slide {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fullpage-slider .swiper-slide:hover {
    /* opacity: 0.8; */
    -webkit-filter: brightness(50%);
    filter: brightness(50%);
}

.fullpage-slider__img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    height: 100%;
    cursor: pointer;
}

.fullpage-slider__wrapper {
    position: relative;
}

.fullpage-slider__swiper {
    overflow: hidden;
    width: 100%;
    height: 212px;
}

.fullpage-slider__swiper-wrapper {
    padding-left: -10px;
    padding-right: -10px;
}

.fullpage-slider .swiper-button-prev {
    left: -30px;
}

.fullpage-slider .swiper-button-next {
    right: -30px;
}

.swiper-button-prev,
.swiper-button-next {
    background: #ffffff;
    -webkit-box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.11);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    -ms-flex-line-pack: center;
    align-content: center;
}

.swiper-button-prev::after {
    content: url('../img/icons/slider-left.svg');
}

.swiper-button-prev--event {
    position: static;
}

.swiper-button-next::after {
    content: url('../img/icons/slider-right.svg');
}

.swiper-button-next--event {
    position: static;
}


/* -------------------------------------------------------------------------- */


/*                                //LINK HEADER                               */


/* -------------------------------------------------------------------------- */

.header {
    background: var(--white-color);
}

.header__wrapper {
    height: 91px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-bar {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-bar__item {
    padding: 11px 0;
}

.nav-bar__list,
.menu-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-bar__link,
.menu-item a {
    padding: 25px 15px;
    font-family: RockStar;
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1rem;
    color: var(--text-color-dark);
    cursor: pointer;
    white-space: nowrap;
}

.nav-bar__link:hover,
.descktop-nav .menu-item a:hover {
    text-decoration: none;
    color: var(--text-color-dark);
    opacity: 0.7;
}

.descktop-nav .sub-menu a {
    padding: 0;
}

.lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lang__link {
    padding: 15px 15px 25px;
}

.lang .dropdown__list {
    top: 40px;
}

.lang .dropdown__list {
    text-align: left;
}

.dropdown,
.menu-item-has-children {
    position: relative;
}

.dropdown:before,
.menu-item-has-children:before {
    content: '';
    position: absolute;
    right: 0;
    width: 8px;
    height: 5px;
    top: 50%;
    background-image: url('../img/icons/arrow.svg');
    background-position: center center;
}

.dropdown__list,
.descktop-nav .sub-menu {
    padding: 35px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    top: 60px;
    /* left: -50%; */
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 52px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 52px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown__item,
.descktop-nav .sub-menu li {
    display: block;
    width: 100%;
}

.descktop-nav .sub-menu .menu-item:not(:last-child) {
    margin-bottom: 15px;
}

.dropdown__item+.dropdown__item {
    margin-top: 25px;
}

.dropdown__link,
.descktop-nav .sub-menu .menu-item a {
    white-space: nowrap;
    font-family: RockStar;
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1rem;
    color: var(--text-color-dark);
}

.dropdown__link:hover {
    text-decoration: none;
    color: var(--text-color-dark);
    opacity: 0.7;
}


/* .menu-item-has-children:hover {
  text-decoration: none;
  color: var(--text-color-dark);
  opacity: 0.7;
} */

.descktop-nav .menu-item-has-children:hover a:not(.sub-menu a) {
    text-decoration: none;
    color: var(--text-color-dark);
    opacity: 0.7;
}


/* .dropdown:hover .dropdown__list, */

.descktop-nav .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}


/* .dropdown:hover:before, */

.menu-item-has-children:hover:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.langJS:before {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.langJS.active:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mobile {
    display: none;
}

.spec {
    padding: 7px 0;
    background-color: #0f94f7;
    color: #fff;
}

.hover .dropdown:hover .dropdown__list {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.spec .dropdown__list.active {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.spec__block {
    display: flex;
}

.spec__font-btns {
    margin-left: 35px;
}

.spec__btn {
    border: none;
    background: transparent;
    color: #fff;
}

.spec__btn:focus,
.spec__btn:active {
    outline: transparent;
}

.spec .dropdown:before {
    background-image: url('../img/arrow.svg');
}

.spec .lang .dropdown__list {
    top: 24px;
    left: -72px;
    background: #0f94f7;
    color: #fff;
}

.spec .lang .dropdown__list a {
    color: #fff;
}

.listJS {
    z-index: 10000;
}


/* -------------------------------------------------------------------------- */


/*                                 //LINK HERO                                */


/* -------------------------------------------------------------------------- */

.hero {
    position: relative;
    z-index: 2;
}

.hero-slider__picture {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slider__picture:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    top: 0;
    z-index: 3;
}

.hero__pagination-bar {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    z-index: 1;
    width: 1170px;
    left: 0;
    right: 0;
    bottom: 45%;
    margin: 0 auto;
    /* height: 100%; */
    /* pointer-events: all !important; */
}

.hero__pagination-bar .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--white-color);
    opacity: 1;
}

.hero__pagination-bar .swiper-pagination-bullet-active {
    width: 13px;
    height: 13px;
}

.hero__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-slider {
    width: 100%;
    height: 540px;
    overflow: hidden;
}

.hero-slider__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-slider .swiper-pagination-vertical.swiper-pagination-bullets,
.hero-slider .swiper-vertical>.swiper-pagination-bullets {
    left: 0;
}

.hero-slider__slide {
    position: relative;
}

.hero-slider__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
    padding-left: 100px;
}

.hero-slider__content {
    position: absolute;
    z-index: 100;
    max-width: 1170px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.hero-slider__title {
    max-width: 674px;
    font-family: RockStar;
    font-style: normal;
    font-weight: 800;
    font-size: 3.75rem;
    line-height: 3.75rem;
    color: var(--white-color);
    margin-bottom: 21px;
}

.hero-slider__subtitle {
    max-width: 674px;
    font-family: RockStar;
    font-style: normal;
    font-weight: normal;
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: var(--white-color);
}

.hero-slider__link {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 800;
    font-size: 0.875rem;
    line-height: 0.875rem;
    color: var(--white-color);
    margin-top: 44px;
}

.hero-slider__link:hover {
    text-decoration: none;
    color: var(--white-color);
    opacity: 0.7;
}

.hero-blog {
    padding: 30px 0;
}

.hero-blog__title {
    margin-top: 50px;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 800;
    font-size: 3.75rem;
    line-height: 3.75rem;
    color: var(--text-color-dark);
}

.hero-blog__subtitle {
    font-family: RockStar;
    font-style: normal;
    font-weight: normal;
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: var(--text-color-dark);
    margin-top: 12px;
}


/* -------------------------------------------------------------------------- */


/*                             //LINK HERO SINGLE                             */


/* -------------------------------------------------------------------------- */

.single-hero {
    min-height: 440px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.single-hero:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url();
    top: 0;
    /* z-index: 3; */
}

.single-hero .container {
    z-index: 3;
    position: relative;
}

.single-hero__content {
    padding-top: 15px;
}

.single-hero__icon {
    max-height: 24px;
}

.single-hero__title {
    margin-top: 31px;
    max-width: 715px;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 800;
    font-size: 3.75rem;
    line-height: 3.75rem;
    color: var(--white-color);
}

.single-hero__subtitle {
    margin-top: 21px;
    max-width: 675px;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: normal;
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: var(--white-color);
}

.single-hero__social-share {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: none;
}


/* -------------------------------------------------------------------------- */


/*                              //LINK HERO_ABOUT                             */


/* -------------------------------------------------------------------------- */

.about-hero__title {
    margin-top: 0;
}

.about-hero__content-block {
    padding-top: 49px;
}

.content-block .time__text,
.content-block .tel__number,
.content-block .block-address__text {
    font-family: 'RockStar';
    display: block;
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--white-color);
    padding-left: 45px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.content-block .tel__number:hover {
    opacity: 0.7;
}

.content-block .time__text:before,
.content-block .tel__number:before,
.content-block .block-address__text:before {
    position: absolute;
    left: 0;
}

.content-block .time__text:before {
    content: url('../img/icons/time.svg');
}

.content-block .tel__number:before {
    content: url('../img/icons/phone.svg');
}

.content-block .block-address__text:before {
    content: url('../img/icons/loc-white.svg');
}

.single-hero__social--about {
    display: flex;
    text-align: left;
    margin-left: auto;
    justify-content: flex-end;
    margin-top: 25px;
}

.single-hero__social--about .single-hero__social-share {
    position: static;
}


/* -------------------------------------------------------------------------- */


/*                            //LINK ABOUT US PAGE                            */


/* -------------------------------------------------------------------------- */

.about-content {
    padding-top: 70px;
    min-height: 330px;
    padding-bottom: 110px;
}

.about-content__title {
    max-width: 600px;
    margin-bottom: 80px;
}

.about-content__item-wrapper {
    display: flex;
    /* justify-content: space-between; */
}

.about-content__item-counter {
    width: 64px;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: var(--text-color-dark);
    padding-right: 15px;
}

.about-content__item {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.625rem;
    color: var(--text-color-dark);
    max-width: 215px;
}

.share__about-wrapper a+a {
    display: inline-block;
    margin-left: 15px;
}


/* -------------------------------------------------------------------------- */


/*                                //LINK SINGLE                               */


/* -------------------------------------------------------------------------- */

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

.content_block.hide {
    height: 300px;
}

.content_block.hide:after {
    content: '';
    display: block;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient( to bottom, rgba(255, 255, 255, 0), #fff 75%);
}

.about__name,
.about__contacts {
    display: block;
    line-height: 120%;
}

.about__name {
    padding-bottom: 15px;
}

.about__contacts {
    padding-top: 15px;
}


/* -------------------------------------------------------------------------- */


/*                                //LINK location/SHARE                                */


/* -------------------------------------------------------------------------- */

.location {
    padding: 30px 0;
}

.location__address {
    margin-left: 90px;
    position: relative;
    padding-left: 40px;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.3125rem;
    color: var(--text-color-dark);
}

.location__address::before {
    content: '';
    position: absolute;
    left: 0;
    top: -13%;
    background-image: url('../img/icons/loc-dark.svg');
    width: 30px;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.calendar {
    max-width: 305px;
}

.calendar__date {
    display: block;
    position: relative;
    padding-left: 40px;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1.3125rem;
    color: var(--text-color-dark);
}

.calendar__date::before {
    content: '';
    position: absolute;
    left: 0;
    top: -13%;
    background-image: url('../img/icons/calendar.svg');
    width: 30px;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.share {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.share--left {
    margin-left: 0;
}

.share__text {
    margin-right: 19px;
}

.share__link+.share__link {
    margin-left: 30px;
}


/* -------------------------------------------------------------------------- */


/*                               //LINK INTEREST                              */


/* -------------------------------------------------------------------------- */

.interest {
    min-height: 803px;
    padding: 70px 0;
}

.interest__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.interest__card {
    height: 278px;
    margin-bottom: 20px;
    border-radius: 0;
    border: none;
    /* &+& {
			margin-left: 20px;
		} */
}

.card {
    padding: 30px;
    color: var(--white-color);
}

.card:hover {
    color: var(--white-color);
    text-decoration: none;
}

.card--color {
    max-width: 278px;
    width: 100%;
}

.card--photo {
    max-width: 574px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.card__title {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: var(--white-color);
    margin-bottom: 14px;
}

.card__text {
    max-width: 225px;
    width: 100%;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: normal;
    font-size: 1rem;
    line-height: 1rem;
    color: var(--white-color);
}

.card__footer {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.card__img {
    max-height: 50px;
}


/* -------------------------------------------------------------------------- */


/*                                //LINK ABOUT                                */


/* -------------------------------------------------------------------------- */

.about {
    /* min-height: 692px; */
    padding: 65px 0 60px;
}

.about__title {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 800;
    font-size: 3.375rem;
    line-height: 4.375rem;
    color: var(--text-color-dark);
}

.about__content {
    padding-left: 42px;
}

.about__text p,
.about__content {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8125rem;
    color: var(--text-color-dark);
}

.about__content a {
    font-weight: 600;
    color: var(--text-color-dark);
    margin-left: auto;
    display: inline;
    text-align: end;
}

.about__content a:hover {
    text-decoration: none;
    color: var(--text-color-dark);
    opacity: 0.7;
}

.about__slider {
    margin-top: 72px;
}

.about__slider-wrapper {
    width: 100%;
    height: 100px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.about__slider-element {
    transition: all 0.3s ease;
}

.about__slider-element+.about__slider-element {
    margin-left: 100px;
}


/* -------------------------------------------------------------------------- */


/*                              //LINK event_BLOG                              */


/* -------------------------------------------------------------------------- */

.event-blog {
    padding: 60px 0;
}

.event-card {
    background: #ffffff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 448px;
    /* max-width: 278px; */
}

.event-card__inner {
    border: 1px solid #e7e7e7;
    height: 100%;
    transition: all 0.3s ease;
}

.event-card__inner:hover {
    /* -webkit-box-shadow: 1px 1px 6px 4px rgb(15 148 247 / 26%);
  -moz-box-shadow: 1px 1px 6px 4px rgb(15 148 247 / 26%);
  box-shadow: 1px 1px 6px 4px rgb(15 148 247 / 26%); */
    -webkit-box-shadow: 0px 3px 53px rgb(0 0 0 / 10%);
    box-shadow: 0px 3px 15px rgb(0 0 0 / 10%);
}

.event-card__picture {
    max-height: 185px;
    max-width: 278px;
}

.event-card__img {
    width: 100%;
    height: 185px;
    -o-object-fit: cover;
    object-fit: cover;
}

.event-card__content {
    padding: 20px 25px 30px;
    display: flex;
    flex-direction: column;
    min-height: 245px;
    position: relative;
}

.event-card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 15px;
}

.event-card__header img {
    /* max-width: 24px; */
    max-height: 24px;
}

.event-card__date {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1.125rem;
    color: var(--text-color-dark);
}

.event-card__title {
    display: inline-block;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.625rem;
    color: var(--text-color-dark);
    margin-bottom: 10px;
}

.event-card__title:hover {
    text-decoration: none;
    color: var(--text-color-dark);
    opacity: 0.7;
}

.event-card__text {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: var(--text-color-dark);
}

.event-card__content p {
    padding-bottom: 15px;
}

.event-card__location {
    position: relative;
    display: inline-block;
    margin-top: auto;
    padding-left: 20px;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 600;
    font-size: 0.625rem;
    line-height: 0.8125rem;
    color: var(--text-color-dark);
}

.event-card__location:before {
    content: url('../img/icons/loc.svg');
    position: absolute;
    left: 0;
}

.tabs-nav--mobile,
.event-blog__slider-btn {
    display: none;
}


/* //ANCHOR TABS */

#tabs {
    margin: 10px 0;
}

.tabs-nav {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.tabs-nav--descktop {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
}

.tabs-nav--descktop .tab-nav {
    margin-left: 20px;
}

.tabs-nav li {
    display: block;
    float: left;
    padding: 0;
    list-style: none;
}

.tabs-nav__name+.tabs-nav__name {
    margin-left: 20px;
}

.tabs-nav a {
    display: block;
    padding: 10px 10px;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    color: var(--text-color-dark);
    /*  transition: all 0.3s ease; */
}

.tabs-nav li:first-child a {
    border-radius: 5px 0 0 0;
}

.tabs-nav li:last-child a {
    display: block;
}

.tabs-nav a.active {
    color: #000;
    /* border-bottom: 4px solid #0f94f7; */
    box-shadow: inset 0 -0.275em white, inset 0 -0.5em #0f94f7;
}

.tabs-nav a:not(.tabs-nav a.active):hover {
    /* border-bottom: 4px solid #0f94f7; */
    box-shadow: inset 0 -0.275em white, inset 0 -0.5em #0f94f7;
}

.tabs-items {
    background: #fff;
    margin: -1px 0 0 0;
    margin-top: 30px;
}

.tabs-items__btn {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tabs-items__btn-link {
    font-family: RockStar;
    font-style: normal;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1rem;
    border: 1px solid #e7e7e7;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 100px;
    padding: 23px 60px;
    color: #000000;
    transition: all 0.4s ease;
}

.tabs-items__btn-link:hover {
    text-decoration: none;
    color: #000000;
    opacity: 0.7;
    border: 1px solid #0f94f7;
}

.tabs-item {
    padding: 15px;
}


/* -------------------------------------------------------------------------- */


/*                                //LINK BANNER                               */


/* -------------------------------------------------------------------------- */

.banner {
    min-height: 552px;
    padding: 63px 0 107px;
}

.banner__wrapper {
    min-height: 382px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner__picture-blog {
    position: relative;
    height: auto;
}

.banner__img {
    position: absolute;
    top: -135px;
    right: -130px;
}

.banner__picture {
    /* position: absolute;
		top: 0; */
}

.banner__content {
    padding: 36px 40px 40px;
}

.banner__title {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 800;
    font-size: 3rem;
    line-height: 3.125rem;
    color: var(--white-color);
}

.banner__text {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: normal;
    font-size: 1.25rem;
    line-height: 1.625rem;
    color: var(--white-color);
    margin-top: 22px;
}

.banner__link {
    display: inline-block;
    margin-top: 130px;
    font-family: RockStar;
    font-style: normal;
    font-weight: normal;
    font-size: 2.5rem;
    line-height: 1.625rem;
    color: var(--white-color);
}

.banner__link:hover {
    text-decoration: none;
    color: var(--white-color);
    opacity: 0.7;
}


/* -------------------------------------------------------------------------- */


/*                              //LINK HOME BLOG                              */


/* -------------------------------------------------------------------------- */

.home-blog {
    padding-top: 76px;
    padding-bottom: 100px;
}

.home-blog__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home-blog__top .section__title {
    margin-bottom: 0;
}

.home-blog__inner {
    margin-top: 37px;
}

.home-blog__link {
    display: inline-block;
    margin-left: auto;
    font-family: RockStar;
    font-style: normal;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: #000000;
}

.home-blog__link:hover {
    opacity: 0.7;
}

.blog-card {
    min-height: 460px;
    background: #ffffff;
    margin-bottom: 25px;
    /* 
	&+& {
    margin-left: 20px;
	} */
}

.blog-card:hover {}

.blog-card__inner {
    border: 1px solid #e7e7e7;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.blog-card__inner:hover {
    -webkit-box-shadow: 0px 3px 53px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.1);
}

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

.blog-card__img {
    width: 377px;
    width: 100%;
    height: 212px;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-card__content {
    padding: 25px 35px 25px;
}

.blog-card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.blog-card__date,
.blog-card__time {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1rem;
    color: var(--text-color-dark);
}

.blog-card__title {
    display: inline-block;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.625rem;
    color: var(--text-color-dark);
    margin-top: 25px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.blog-card__title:hover,
.event-card__title:hover {
    color: var(--main-color-blue);
}

.blog-card__text {
    display: block;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: var(--text-color-dark);
    margin-top: 19px;
}


/* -------------------------------------------------------------------------- */


/*                                 //LINK MAP                                 */


/* -------------------------------------------------------------------------- */

.map {
    /* padding: 60px 0; */
}

.map--about {
    padding-bottom: 110px;
}

.map__wrapper {
    position: relative;
}

.map__logo {
    position: absolute;
    top: 0;
    left: 50%;
}


/* -------------------------------------------------------------------------- */


/*                             //LINK SLIDER_BLOG                             */


/* -------------------------------------------------------------------------- */

.blog-slider {
    padding: 60px 0;
}

.blog-slider__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog-slider__btns {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-slider__btns .blog-slider__swiper-button-prev,
.blog-slider__btns .blog-slider__swiper-button-next {
    position: static;
}

.blog-slider__btns .blog-slider__swiper-button-next {
    margin-left: 50px;
}

.blog-slider__swiper {
    width: 100%;
    /* height: 450px; */
    overflow: hidden;
}

.blog-slider .blog-card+.blog-card {
    margin-left: 0;
}

.blog-slider__btn {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blog-slider__btn-link {
    font-family: RockStar;
    font-style: normal;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1rem;
    border: 1px solid #e7e7e7;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 100px;
    padding: 23px 60px;
    color: #000000;
}

.blog-slider__btn-link:hover {
    text-decoration: none;
    color: #000000;
    opacity: 0.7;
}


/* -------------------------------------------------------------------------- */


/*                                 //LINK BLOG                                */


/* -------------------------------------------------------------------------- */

.blog__card-wrapper {
    border: 1px solid #e7e7e7;
}

.blog__content {
    padding-bottom: 130px;
}

.blog__name {
    padding: 30px 0 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
}

.blog__name-item {
    padding-bottom: 15px;
    cursor: pointer;
}

.blog__name-item+.blog__name-item {
    margin-left: 40px;
}

.blog__name-item.active {
    border-bottom: 4px solid #0f94f7;
}


/* -------------------------------------------------------------------------- */


/*                                //NOTE CARDS                                */


/* -------------------------------------------------------------------------- */

.event-card__tax-icon.absolute {
    position: absolute;
    right: 24px;
    transform: translateY(20px);
    top: 0;
}

.event-card__title.absolute {
    max-width: 90%;
}

.event-card__header.absolute {
    margin-bottom: 0;
}


/* -------------------------------------------------------------------------- */


/*                                //LINK FOOTER                               */


/* -------------------------------------------------------------------------- */

.footer__logo {
    /* padding-top: 15px; */
}

.footer-top {
    background-color: var(--main-color-blue);
    padding: 50px 0 45px;
}

.footer-nav__list {
    display: -ms-grid;
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr; */
    /* grid-auto-flow: column; */
    -ms-grid-columns: (210px) [auto-fill];
    grid-template-columns: repeat(auto-fill, 210px);
    grid-gap: 10px 15px;
    width: 100%;
}

.footer-nav__list .menu-item a {
    transition: all 0.3s ease;
}

.footer-nav__list .menu-item a:hover {
    opacity: 0.7;
}

.footer-bottom__name:hover {
    opacity: 0.7;
    color: #fff;
}

.footer-nav__link,
.footer-nav__list .menu-item a {
    display: inline-block;
    font-family: 'RockStar';
    font-style: normal;
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 0.9rem;
    color: var(--white-color);
    margin-bottom: 18px;
    padding: 5px 15px;
}

.footer-bottom {
    background-color: var(--card-pink);
    padding: 15px 0;
}

.footer-bottom__name {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 0.75rem;
    color: var(--white-color);
}

.footer-bottom__text {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-bottom__copy,
.footer-bottom__sladko {
    font-family: 'RockStar';
    font-style: normal;
    font-weight: normal;
    font-size: 0.625rem;
    line-height: 0.625rem;
    color: var(--white-color);
}

.footer-bottom__sladko {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-bottom__sladko a:hover {
    opacity: 0.7;
}

.footer-bottom__sladko img {
    margin-left: 10px;
}


/* -------------------------------------------------------------------------- */


/*                                //LINK MEDIA                                */


/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */


/*                                //LINK 1199px                               */


/* -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    /* CSS для ширины от 768px до 991px */
    .header--desktop {
        display: none;
    }
    .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        position: relative;
    }
    .header__nav-wrapper {
        position: absolute;
        /* bottom: -60px; */
        /* top: 112%; */
        top: -10px;
        left: -120%;
        z-index: 999;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        width: 90%;
        opacity: 0;
        min-height: 600px;
        border-top: 1px solid var(--main-color-blue);
        background: rgba(255, 255, 255, 1.6);
        /*  backdrop-filter: blur(8px); */
        /* // */
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        /* //ANCHOR ДЛЯ МОБ Меню */
        /* justify-content: center; */
    }
    .header__nav-wrapper.active {
        position: absolute;
        left: -16px;
        z-index: 999;
        opacity: 1;
        /* top: 112%; */
        top: -10px;
    }
    .mobile__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        transition: all 0.3s ease-in-out;
    }
    .mobile__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        /* 	height: 100vh; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: static;
    }
    .mobile__nav.active {}
    .mobile__nav.active .dropdown__list {
        left: none !important;
    }
    .mobile-lang {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .mobile-lang__item+.mobile-lang__item {
        margin-left: 15px;
    }
    .mobile-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .mobile-list__item {
        padding: 25px 0;
        width: 100%;
    }
    .mobile-list__link {
        display: inline-block;
        text-align: center;
        width: 100%;
    }
    .mobile-list__dropdown {
        width: 100%;
        padding: 25px;
        margin-top: 25px;
    }
    .mobile-dropdown,
    .mobile-list .sub-menu {
        background-color: rgba(83, 146, 243, 0.2);
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }
    .mobile-dropdown__item+.mobile-dropdown__item {
        margin-top: 15px;
    }
    .mobile-list .menu-item-has-children a {
        padding-left: 20px;
        padding-right: 20px;
    }
    .mobile-list .menu-item-has-children a {
        position: relative;
    }
    .mobile-list .menu-item-has-children:before {
        display: none;
    }
    .mobile-list .menu-item-has-children.active a:not(.sub-menu a) {
        text-decoration: none;
        color: var(--text-color-dark);
        opacity: 0.7;
    }
    .mobile-list .menu-item-has-children a:not(.sub-menu a):before {
        content: '';
        position: absolute;
        right: 0;
        width: 8px;
        height: 5px;
        top: 50%;
        background-image: url(../img/icons/arrow.svg);
        background-position: center center;
    }
    .mobile-list .menu-item-has-children.active a:before {
        transform: rotate(180deg);
    }
    .mobile-list .menu-item-has-children {
        flex-direction: column;
        width: 100%;
    }
    .mobile-dropdown.active,
    .mobile-list .sub-menu.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }
    .burger {
        padding: 25px 0 25px 25px;
        position: absolute;
        top: -10px;
        right: 8px;
        z-index: 9999;
    }
    .burger span {
        width: 35px;
        height: 4px;
        display: block;
        background-color: var(--main-color-blue);
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .burger span+span {
        margin-top: 5px;
    }
    .burger.active .burger__line:nth-child(1) {
        -webkit-transform: rotate(-45deg) translate(-3px, 2px);
        transform: rotate(-45deg) translate(-3px, 4px);
        background-color: var(--text-color-dark);
    }
    .burger.active .burger__line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger__line:nth-child(3) {
        -webkit-transform: rotate(45deg) translate(-8px, -7px);
        transform: rotate(45deg) translate(-8px, -9px);
        background-color: var(--text-color-dark);
    }
    .menu-item a {
        white-space: normal;
        text-align: center;
    }
    /* -------------------------------------------------------------------------- */
    /*                            //NOTE CONTENT 1199px                           */
    /* -------------------------------------------------------------------------- */
    .interest__wrapper {
        margin-left: -15px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .interest__card {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48.5%;
        flex: 0 0 48.5%;
        max-width: 100%;
        margin-left: 15px;
    }
    .banner__title {
        font-size: 2.9rem;
        line-height: 2.9rem;
    }
    .block-address {
        margin-top: 25px;
    }
}


/* -------------------------------------------------------------------------- */


/*                                //LINK 1010px                               */


/* -------------------------------------------------------------------------- */


/* md-размер (<=1010px) */

@media (max-width: 1010px) {
    .interest__wrapper {
        margin-left: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .interest__card {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 100%;
        margin-left: 0;
    }
    .banner__title {
        font-size: 1.9rem;
        line-height: 1.9rem;
    }
}


/* -------------------------------------------------------------------------- */


/*                                //LINK 991px                               */


/* -------------------------------------------------------------------------- */


/* md-размер (<=991px) */

@media (max-width: 991px) {
    .hero__pagination-bar {
        padding-left: 25px;
    }
    .hero-slider__title,
    .single-hero__title {
        font-size: 2.75rem;
        line-height: 2.75rem;
    }
    .content_block.hide {
        height: 186px;
    }
    .about__title {
        text-align: center;
        padding-bottom: 25px;
    }
    .about__content {
        padding-right: 42px;
    }
    .tabs-nav--descktop {
        display: none;
    }
    .tabs-nav--mobile,
    .event-blog__slider-btn {
        display: block;
    }
    .event-blog__slider-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 25px;
    }
    .event-blog__slider-btn div {
        margin: 0 15px;
    }
    .tabs-nav__name {
        text-align: center;
        padding-bottom: 15px;
    }
    .tabs-nav__name+.tabs-nav__name {
        margin-left: 0;
    }
    .home-blog__top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        /* height: 800px; */
    }
    .home-blog__top .section__title {
        margin-bottom: 25px;
    }
    .location__wrapper {
        flex-direction: column;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: flex-start;
    }
    .location__share,
    .location__address {
        margin: 0 auto;
    }
    .location__calendar {
        margin-bottom: 15px;
    }
    .location__address-field,
    .location__calendar {
        padding: 10px 15px;
    }
    .location__share {
        width: 100%;
        justify-content: flex-end;
        padding: 0 15px;
    }
    .location__address {
        margin-bottom: 15px;
        display: inline-block;
    }
    /* // */
    .footer__logo {
        text-align: center;
        margin-bottom: 35px;
    }
    .footer-nav__list {
        padding: 0 25px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    /* // */
    .about-content__item-wrapper {
        margin-top: 35px;
        justify-content: center;
    }
    .content-block__tel {
        margin-top: 25px;
    }
    .calendar {
        max-width: 100%;
    }
    .single-hero__social-share {
        display: flex;
    }
    .location__share.share {
        display: none;
    }
    .location--about {
        display: none;
    }
}


/* -------------------------------------------------------------------------- */


/*                                //LINK 767px                               */


/* -------------------------------------------------------------------------- */


/* sm-размер (<=768px) */

@media (max-width: 767px) {
    /* CSS для ширины от 576px до 767px */
    .hero-slider__title,
    .single-hero__title {
        max-width: 555px;
    }
    .hero-slider__subtitle {
        max-width: 480px;
    }
    .interest__card {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .interest .card--photo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    .banner__content {
        padding: 36px 40px 40px 200px;
    }
    .banner__img {
        top: 201px;
        right: 0;
        width: 360px;
    }
    .banner__wrapper {
        background-position: 70% center;
    }
    .blog-slider__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .blog-slider__btns {
        margin: 0 auto;
        margin-bottom: 35px;
    }
    .footer-bottom__name {
        margin-bottom: 25px;
        text-align: center !important;
    }
    .section__title--small {
        text-align: center;
    }
    .location__address::before,
    .calendar__date::before {
        width: 25px;
        height: 25px;
    }
    .section__title--small {
        margin: 0 auto;
        margin-bottom: 20px;
    }
}


/* -------------------------------------------------------------------------- */


/*                                //LINK 610px                               */


/* -------------------------------------------------------------------------- */


/* xs-размер (<=575px) */

@media (max-width: 610px) {
    .spec {
        padding: 17px 0;
    }
    .spec__block {
        flex-direction: column;
    }
    .spec__title {
        display: none;
    }
    .spec__font-btns {
        margin-left: 0;
    }
    .breadcrumb--dark {
        padding-top: 0;
    }
    .hero-blog__title {
        font-size: 2.75rem;
    }
    .about__content a {
        text-align: center;
    }
    .navigation.pagination,
    .pagination {
        justify-content: center;
    }
}


/* -------------------------------------------------------------------------- */


/*                                //LINK 575px                               */


/* -------------------------------------------------------------------------- */


/* xs-размер (<=575px) */

@media (max-width: 575px) {
    /* CSS для ширины до 575px (включительно) */
    .hero-slider__title,
    .single-hero__title {
        max-width: 400px;
    }
    .hero-slider__subtitle {
        max-width: 380px;
    }
    .banner__content {
        padding: 36px 40px 40px;
    }
    .banner__img {
        top: 250px;
    }
    .section__title--small {
        font-size: 2rem;
        line-height: 2rem;
    }
    /* .footer-nav__list {} */
}


/* -------------------------------------------------------------------------- */


/*                                //LINK 470px                               */


/* -------------------------------------------------------------------------- */


/* xs-размер (<=470px) */

@media (max-width: 470px) {
    .hero-slider__inner {
        padding-left: 25px;
    }
    .hero-slider__title,
    .hero-slider__subtitle,
    .single-hero__title,
    .single-hero__subtitle {
        /* max-width: 300px; */
    }
    .hero-slider__title,
    .single-hero__title {
        font-size: 2.25rem;
        line-height: 2.75rem;
    }
    .hero-slider__subtitle,
    .single-hero__subtitle {
        font-size: 1rem;
        line-height: 1rem;
    }
    .hero__pagination-bar {
        padding-left: 0px;
    }
    .single-hero__content {
        padding-top: 25px;
    }
    .single-hero__title {
        margin-top: 0;
    }
    .card {
        height: 100%;
        min-height: 278px;
    }
    .card__footer {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-line-pack: center;
        align-content: center;
        padding-top: 25px;
    }
    .card__footer .card__icon {
        display: none;
    }
    .card__counter {
        margin-bottom: 15px;
    }
    .location__address::before {
        top: 0;
    }
    .about__title {
        font-size: 3.375rem;
        line-height: 3.375rem;
    }
    .about__text {
        font-size: 1.1rem;
        line-height: 1.6rem;
    }
    .about__content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .banner__content {
        padding: 36px 40px 40px;
    }
    .banner__img {
        top: -135px;
        right: -47px;
    }
    .footer-nav__list {
        padding: 0 25px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        -ms-grid-columns: (100%) [auto-fill];
        grid-template-columns: repeat(auto-fill, 100%);
        grid-gap: 5px 25px;
    }
    .hero__pagination-bar {
        top: 0;
        right: 50%;
        bottom: auto;
    }
    .hero__pagination {
        flex-direction: row;
        transform: none;
    }
    .swiper-pagination-vertical.swiper-pagination-bullets,
    .swiper-vertical>.swiper-pagination-bullets {
        transform: none;
    }
    .hero__pagination-bar {
        left: 0;
        top: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 6px;
    }
    .about-hero__title {
        font-size: 1.7rem;
    }
}


/* -------------------------------------------------------------------------- */


/*                                //LINK 380px                               */


/* -------------------------------------------------------------------------- */


/* xs-размер (<=470px) */

@media (max-width: 380px) {
    .banner__wrapper {
        height: 420px;
    }
}


/* -------------------------------------------------------------------------- */


/*                                //LINK 330px                               */


/* -------------------------------------------------------------------------- */


/* xs-размер (<=470px) */

@media (max-width: 330px) {
    .banner__wrapper {
        height: 460px;
    }
    .banner__link {
        font-size: 1rem;
    }
    .hero-slider__title,
    .single-hero__title {
        font-size: 1.8rem;
        line-height: 2.25rem;
    }
    .about-hero__title {
        font-size: 1.7rem;
    }
}


/*# sourceMappingURL=style.css.map */