* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --app-height: 100%;
  --white: #ffffff;
  --black: #000;
  --text_green: #305444;
  --dark_green: #062a1a;
  --green: #0a4934;
  --light_green: #e7eae3;
  --btn_green: #305444;
  --btn_hover: #07321f;
  --light: #f5f6f1;
  --text_grey: #808080;
  --gold: #c7ab58;
  --gold_hover: #b0923b;
}

.c_gold {
  color: var(--gold);
}

.c_wh {
  color: var(--white);
}

.c_black {
  color: var(--black);
}

.c_text_green {
  color: var(--text_green);
}

.c_text_grey {
  color: var(--text_grey);
}

.bg_green {
  background-color: var(--green);
}

.bg_dark_green {
  background-color: var(--dark_green);
}

.bg_btn_green {
  background-color: var(--btn_green);
}

.bg_btn {
  background-color: var(--btn_green);
}

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

.bg_black {
  background-color: var(--black);
}

.bg_light {
  background-color: var(--light);
}

.bg_light_green {
  background-color: var(--light_green);
}

.bg_gold {
  background-color: var(--gold);
}

.elem__anim > h1, .elem__anim > h2, .elem__anim > h3, .elem__anim > h4, .elem__anim > a, .elem__anim > button, .elem__anim > p, .elem__anim > ul, .elem__anim > ol {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

body,
html {
  scrollbar-color: var(--light) var(--dark_green);
  scrollbar-width: thick;
  overflow-x: hidden;
}

.swiper-container {
  overflow: hidden;
}

.xyz_start {
  opacity: 0;
}

.xyz_start.xyz-in {
  opacity: 1;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  color: var(--text_grey);
  padding-top: 145px;
}

section {
  position: relative;
}

/* ::-webkit-scrollbar {
  height: 5px;
} */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--light);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--dark_green);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

a:hover,
a:active,
a:visited,
a {
  text-decoration: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

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

li {
  display: block;
}

p {
  margin-bottom: 0;
  line-height: 1.3em;
}

input:hover,
select:hover,
textarea:hover,
input:active,
select:active,
textarea:active,
input:focus,
select:focus,
textarea:focus,
input,
select,
textarea {
  display: block;
  outline: none;
  font-family: "Manrope", sans-serif;
}

button {
  background-color: transparent;
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

button,
button:focus,
button:active,
button:hover {
  outline: none;
}

svg,
path,
stroke {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.container {
  position: relative;
}

a.btn,
button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Manrope", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  height: 56px;
  min-width: 145px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: relative;
  background-color: var(--btn_green);
  border: 1px solid var(--btn_green);
  border-radius: 0px;
  padding: 0 32px;
}
a.btn:hover,
button.btn:hover {
  color: var(--white);
  background-color: var(--btn_hover);
  border: 1px solid var(--btn_hover);
}
a.btn.btn_tr,
button.btn.btn_tr {
  background-color: transparent;
  color: var(--green);
}
a.btn.btn_tr:hover,
button.btn.btn_tr:hover {
  color: var(--white);
  background-color: var(--btn_hover);
  border: 1px solid var(--btn_hover);
}
a.btn.btn_gold,
button.btn.btn_gold {
  border: 1px solid var(--gold);
  background-color: var(--gold);
  color: var(--white);
}
a.btn.btn_gold:hover,
button.btn.btn_gold:hover {
  color: var(--white);
  background-color: var(--gold_hover);
  border: 1px solid var(--gold_hover);
}
a.btn.btn_gold.btn_tr,
button.btn.btn_gold.btn_tr {
  background-color: transparent;
  color: var(--white);
}
a.btn.btn_gold.btn_tr:hover,
button.btn.btn_gold.btn_tr:hover {
  color: var(--white);
  background-color: var(--gold_hover);
  border: 1px solid var(--gold_hover);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
}
.header .header__top {
  padding: 17px 0;
}
.header .header__top .custom-logo-link {
  margin-right: 80px;
}
.header .header__top .container-fluid {
  max-width: 1920px;
  padding: 0 50px;
}
.header .header__top .work__time {
  line-height: 1.4em;
}
.header .header__top .link__item .icon {
  margin-right: 8px;
  letter-spacing: 0.03em;
}
.header .header__top .link__item .link__content a {
  line-height: 1.4em;
  letter-spacing: 0.03em;
}
.header .header__top .link__item .link__content a:hover {
  color: var(--gold);
}
.header .header__top .link__item .order__call {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  padding: 2px 0;
  border-bottom: 1px dashed var(--text_grey);
  line-height: 1.4em;
  letter-spacing: 0.03em;
}
.header .header__top .link__item .order__call:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.header .header__top .header__btn {
  margin-left: 100px;
}

@media screen and (min-width: 1200px) {
  .header.header_fixed.scroll__up {
    top: 0px;
  }
  .header.header_fixed.scroll__down {
    top: -100px;
  }
}
@media screen and (min-width: 576px) {
  .header.header_fixed.scroll__up {
    top: 0px;
  }
  .header.header_fixed.scroll__down {
    top: -90px;
  }
}
.custom-logo-link {
  width: 200px;
  display: block;
}
.custom-logo-link img {
  width: 100%;
  height: auto;
}

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.nav__menu .nav__item {
  position: relative;
  margin-right: 56px;
  padding: 9px 0;
}
.nav__menu .nav__item:last-child {
  margin-right: 0;
}
.nav__menu .nav__item a {
  font-size: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  line-height: 1.2em;
  text-transform: uppercase;
  padding: 0;
  color: var(--white);
  position: relative;
  display: block;
  letter-spacing: 0.18em;
}
.nav__menu .nav__item a:hover {
  color: var(--gold);
}
.nav__menu .nav__item.menu-item-has-children > a {
  position: relative;
  padding-right: 16px;
}
.nav__menu .nav__item.menu-item-has-children > a:before, .nav__menu .nav__item.menu-item-has-children > a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  background: url(../img/menu_arrow.svg) no-repeat center;
  -webkit-transition: all 0.4se ease;
  transition: all 0.4se ease;
}
.nav__menu .nav__item.menu-item-has-children > a::after {
  opacity: 0;
  background: url(../img/menu_arrow_gold.svg) no-repeat center;
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu {
  width: 100%;
  min-width: 250px;
  padding: 20px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
  -webkit-box-shadow: 0 16px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 16px 24px rgba(0, 0, 0, 0.15);
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li:not(:last-child) {
  margin-bottom: 12px;
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: initial;
  color: var(--text_grey);
  letter-spacing: 0;
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li a:hover {
  color: var(--btn_green);
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children {
  padding-right: 15px;
  position: relative;
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 26px;
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children > a:before {
  display: none;
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children > a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: calc(50% - 12x);
  background: url(../img/menu_arrow_gold.svg) no-repeat center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all 0.4se ease;
  transition: all 0.4se ease;
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children .sub-menu {
  width: 100%;
  min-width: 250px;
  padding: 20px;
  background-color: var(--white);
  position: absolute;
  left: calc(100% - 15px);
  top: -5px;
  -webkit-transform: translate(-15px);
  transform: translate(-15px);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
  -webkit-box-shadow: 0 16px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 16px 24px rgba(0, 0, 0, 0.15);
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children .sub-menu li:not(:last-child) {
  margin-bottom: 12px;
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children .sub-menu li a {
  font-weight: 400;
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children .sub-menu li a:hover {
  color: var(--btn_green);
}
.nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children:hover .sub-menu {
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 1;
  pointer-events: all;
}

@media screen and (min-width: 992px) {
  .nav__menu .nav__item.menu-item-has-children:hover > a:before {
    opacity: 0;
  }
  .nav__menu .nav__item.menu-item-has-children:hover > a::after {
    opacity: 1;
  }
  .nav__menu .nav__item.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: all;
  }
}
.menu__burger {
  display: none;
  width: 32px;
}

@media screen and (max-width: 1440px) {
  .header .header__top .header__btn {
    margin-left: 25px;
  }
  .header .header__top .container-fluid {
    padding: 0 12px;
  }
  .header .header__top .custom-logo-link {
    margin-right: 25px;
  }
}
@media screen and (max-width: 1199px) {
  body {
    padding-top: 135px;
  }
  .nav__menu .nav__item {
    margin-right: 20px;
  }
  .header .header__top .custom-logo-link {
    margin-right: 0px;
    width: 170px;
  }
}
@media screen and (max-width: 991px) {
  body {
    padding-top: 85px;
  }
  .header {
    border-bottom: none;
  }
  .nav {
    position: fixed;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    z-index: 999999;
    right: -320px;
    top: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding: 20px 16px 40px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav.open_menu {
    right: 0;
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .nav__row {
    width: 100%;
    padding: 20px 12px;
    position: relative;
  }
  .nav .nav__row .custom-logo-link {
    width: 100px;
  }
  .nav .menu__close {
    width: 32px;
    height: 32px;
    outline: none;
    /* margin-left: auto; */
    position: relative;
    background-color: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-left: auto;
    background: url(../img/close_menu_wh.svg) no-repeat center;
  }
  .nav .menu__close > * {
    pointer-events: none;
  }
  .nav .nav__menu {
    padding: 0 10px;
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
  .nav .nav__menu .nav__item {
    margin-bottom: 0;
    width: 100%;
    text-align: left;
    margin-right: 0;
    border-top: 1px solid rgba(231, 234, 227, 0.1);
    padding: 0 8px;
  }
  .nav .nav__menu .nav__item:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(231, 234, 227, 0.1);
  }
  .nav .nav__menu .nav__item a {
    font-size: 12px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    display: block;
    padding: 8px 0;
    border: none;
    letter-spacing: 0.1833333333em;
    text-transform: uppercase;
    line-height: 1.8em;
  }
  .nav .nav__menu .nav__item a:hover {
    color: var(--gold);
  }
  .nav .nav__menu .nav__item a::after, .nav .nav__menu .nav__item a::before {
    display: none;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > a {
    padding-right: 10px;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > a.open .open_child_menu {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .nav .nav__menu .nav__item.menu-item-has-children .open_child_menu {
    position: absolute;
    display: block;
    right: -8px;
    top: calc(50% - 13px);
    width: 26px;
    height: 26px;
    background-color: var(--gold);
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .nav__menu .nav__item.menu-item-has-children .open_child_menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/menu_arrow.svg) no-repeat center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu {
    width: 100%;
    min-width: 250px;
    padding: 0 10px;
    background-color: transparent;
    position: static;
    left: auto;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: all;
    border-radius: 0;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li {
    margin-bottom: 0;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li:last-child {
    padding-bottom: 20px;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li a {
    font-size: 12px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    display: block;
    padding: 5px 0;
    border: none;
    letter-spacing: 0.1833333333em;
    text-transform: uppercase;
    line-height: 1.8em;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li a:hover {
    color: var(--gold);
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children {
    padding-right: 0;
    position: relative;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children > a {
    padding-right: 10px;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children > a.open .open_child_menu {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children > a:before {
    display: none;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children > a::after {
    display: none;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children .sub-menu {
    width: 100%;
    min-width: 250px;
    padding: 0 10px;
    background-color: transparent;
    position: static;
    left: auto;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: all;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .nav .nav__menu .nav__item.menu-item-has-children > .sub-menu li.menu-item-has-children .sub-menu li {
    margin-bottom: 0;
  }
  .nav .header__contact .link__item .icon {
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 4px;
  }
  .nav .header__contact .link__item a:hover {
    color: var(--gold);
  }
  .nav .header__contact .order__call {
    border-bottom: 1px dashed var(--white);
    text-align: left;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .menu__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 32px;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
  .header .header__top .header__btn {
    font-size: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--btn_green) url(../img/icon_phone_wh.svg) no-repeat center;
    padding: 0;
    min-width: initial;
  }
}
@media screen and (max-width: 576px) {
  body {
    padding-top: 75px;
  }
}
.title_1 {
  font-family: "Tenor Sans", sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 1em;
}

.section__title {
  font-family: "Tenor Sans", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: var(--text_green);
}

.section__offer .section__title.section__title_line {
  position: relative;
  padding-right: 20px;
}
.section__offer .section__title.section__title_line:after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #e7eae3;
}

.section__label {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.title_2 {
  font-family: "Tenor Sans", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

.title_3 {
  font-family: "Tenor Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.title_4 {
  font-family: "Tenor Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 16px;
}

.text__content h2 {
  font-family: "Tenor Sans", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}
.text__content h3 {
  font-family: "Tenor Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}
.text__content h4 {
  font-family: "Manrope", sans-serif;
  font-family: Manrope;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 16px;
}
.text__content p,
.text__content li {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 140%;
  color: var(--text_grey);
  letter-spacing: 0.03em;
}
.text__content p {
  margin-bottom: 1.4em;
}
.text__content p:last-child {
  margin-bottom: 0;
}
.text__content ul {
  margin-bottom: 0;
}
.text__content li {
  padding-left: 27px;
  position: relative;
  color: var(--text_green);
}
.text__content li:not(:last-child) {
  margin-bottom: 8px;
}
.text__content li:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/icon_list.svg) no-repeat center;
  position: absolute;
  left: 0;
  top: 5px;
}

.ff_tenor {
  font-family: "Tenor Sans", sans-serif;
}

@media screen and (max-width: 1439px) {
  .title_1 {
    font-size: 60px;
  }
  .section__title {
    font-size: 40px;
  }
  .text__content h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .title_1 {
    font-size: 48px;
  }
  .section__title {
    font-size: 36px;
  }
  .text__content h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .title_1 {
    font-size: 36px;
  }
  .section__title {
    font-size: 32px;
  }
  .text__content h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .title_1 {
    font-size: 32px;
  }
}
.form__wrap {
  width: 100%;
}
.form__wrap .input__group p {
  margin: 0 !important;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 56px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  padding-left: 12px;
  border: none;
  border-radius: 0px;
  background-color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--text_grey);
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  border-color: red;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #a2a2a2;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #a2a2a2;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #a2a2a2;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #a2a2a2;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #a2a2a2;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:focus {
  border-color: var(--middle_grey);
}
.form__wrap input[type=checkbox] {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid var(--lightgrey);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 10px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form__wrap input[type=checkbox]:checked {
  background: #c5cdcd url(../img/check_icon_wh.svg) no-repeat center;
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 18px;
  color: var(--orange);
}
.form__wrap span {
  display: block;
}
.form__wrap .wpcf7-list-item {
  display: block;
  margin: 0 !important;
}

p {
  letter-spacing: 0.03em;
}

.head__section {
  min-height: 500px;
  height: calc(100vh - 145px);
  max-height: 900px;
}
.head__section .head__swiper {
  height: 100%;
}
.head__section .swiper-slide {
  position: relative;
}
.head__section .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #07321f;
  opacity: 0.25;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.head__section .swiper-slide .head__img {
  position: absolute;
  bottom: -80px;
  left: 57%;
  height: auto;
  width: auto;
  /* max-width: 624px; */
  max-height: calc(100vh - 117px);
}
.head__section .swiper-slide .offer {
  z-index: 5;
}
.head__section .swiper__arrows {
  position: absolute;
  left: 0;
  top: calc(50% - 20px);
  padding: 0 40px;
  z-index: 10;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.head__section .offer__subitle {
  letter-spacing: 0.27em;
}
.head__section .offer__after {
  letter-spacing: 0.018em;
  max-width: 450px;
}
.head__section.head__section_other {
  height: auto;
  padding-bottom: 70px;
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 400px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: var(--btn_green);
}
.head__section.head__section_other.head__section_bg {
  min-height: 600px;
}
.head__section.head__section_other.head__section_bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #07321f;
  opacity: 0.25;
  position: absolute;
  left: 0;
  top: 0;
}

.breadcrumbs {
  color: var(--white);
  margin-bottom: 24px;
}
.breadcrumbs span {
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
}
.breadcrumbs span a {
  color: var(--white);
}
.breadcrumbs span.breadcrumb_last {
  opacity: 0.5;
}

@media screen and (max-width: 1439px) {
  .head__section {
    min-height: 500px;
    height: calc(100vh - 145px);
    max-height: 700px;
  }
  .head__section .offer {
    padding: 90px 0;
  }
  .head__section .swiper-slide .head__img {
    max-width: 500px;
    max-height: initial;
  }
}
@media screen and (max-width: 1199px) {
  .head__section .swiper-slide .head__img {
    max-width: 450px;
    max-height: initial;
  }
}
@media screen and (max-width: 991px) {
  .head__section {
    height: auto;
    min-height: initial;
    max-height: initial;
  }
  .head__section .offer {
    padding: 70px 0;
  }
  .head__section .swiper__arrows {
    padding: 12px 0;
  }
  .head__section.head__section_other {
    padding-bottom: 0;
  }
  .head__section .offer__subitle {
    font-size: 16px;
  }
  .head__section .swiper-slide .head__img {
    width: 360px;
    height: auto;
    max-height: initial;
  }
}
@media screen and (max-width: 767px) {
  .head__section .offer__subitle {
    font-size: 16px;
  }
  .breadcrumbs {
    font-size: 10px;
  }
  .breadcrumbs span {
    font-size: 10px;
  }
  .head__section .swiper__arrows {
    padding: 0;
    top: calc(100% - 60px);
  }
  .head__section {
    height: 680px;
  }
  .head__section .swiper-slide {
    background-position: 100% bottom;
    background-size: auto 100%;
  }
  .head__section .swiper-slide .head__img {
    left: 55%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    bottom: 0;
    width: 500px;
  }
}
@media screen and (max-width: 576px) {
  .head__section .offer__subitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .header .header__top .custom-logo-link {
    width: 147px;
  }
  .head__section.head__section_other.head__section_bg {
    min-height: 40px;
  }
  .head__section.head__section_other.head__section_bg .offer {
    padding-bottom: 40px;
  }
}
.advant .advant__icon {
  width: 120px;
  height: 120px;
}
.advant .advant__icon img {
  max-width: 100%;
  max-height: 100%;
}
.advant .advant__item {
  padding-bottom: 20px;
}
.advant .advant__item .c_text_green {
  line-height: 1.25em;
}
.advant .advant__item .c_text_grey {
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.4em;
}

.service {
  padding-top: 140px;
  padding-bottom: 120px;
}
.service.service_doctor {
  padding-top: 50px;
  padding-bottom: 50px;
}
.service .service__card {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 100%;
}
.service .service__card:hover {
  background-color: var(--btn_green);
}
.service .service__card:hover .service__name {
  color: var(--white);
}
.service .service__card:hover .service__text {
  color: var(--white);
}
.service .service__card:hover .service__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.service .service__card .service__img {
  width: 100%;
  height: 340px;
  overflow: hidden;
  margin-bottom: 20px;
}
.service .service__card .service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.service .service__card .service__name {
  padding: 0 20px;
  -webkit-transition: all 0.4se ease;
  transition: all 0.4se ease;
}
.service .service__card .service__text {
  padding: 0 20px 20px;
  -webkit-transition: all 0.4se ease;
  transition: all 0.4se ease;
}
.service .service__card.service__card_horizontal:hover {
  background-color: var(--light_green);
}
.service .service__card.service__card_horizontal:hover .service__name {
  color: var(--text_green);
}
.service .service__card.service__card_horizontal:hover .service__text {
  color: var(--text_grey);
}
.service .service__card.service__card_horizontal .service__img {
  width: 300px;
  height: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.service .service__card.service__card_horizontal .service__info {
  width: calc(100% - 300px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px 20px 20px;
}
.service .service__card.service__card_horizontal .service__info .service__name {
  padding: 0;
}
.service .service__card.service__card_horizontal .service__info .service__text {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  padding: 0;
  margin-bottom: 30px;
}

@media screen and (max-width: 1439px) {
  .service {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .service .service__card .service__img {
    height: 300px;
  }
  .service .service__card.service__card_horizontal .service__img {
    width: 100%;
  }
  .service .service__card.service__card_horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service .service__card.service__card_horizontal .service__info {
    padding-right: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .service {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .service .service__card .service__img {
    height: 280px;
  }
}
@media screen and (max-width: 991px) {
  .service {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .service .service__list {
    position: relative;
  }
  .service .service__list.active .service_more {
    display: none;
  }
  .service .service__list.active.service__list_hide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .service .service__list_hide {
    display: none;
  }
  .service .service__card.service__card_horizontal .service__img,
  .service .service__card .service__img {
    height: 240px;
  }
  .service .service__card .service__name {
    padding: 0 16px;
  }
  .service .service__card .service__text {
    padding: 0 16px 16px;
  }
}
@media screen and (max-width: 576px) {
  .service .service__list {
    position: relative;
  }
  .service .service__list::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    height: 350px;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(5%, rgba(255, 255, 255, 0)), color-stop(70%, #fff), to(#fff));
    background-image: linear-gradient(900deg, rgba(255, 255, 255, 0) 5%, #fff 70%, #fff 100%);
  }
  .service .service__list.active::after {
    display: none;
  }
  .service .service_more {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    z-index: 2;
  }
  .service .service__card.service__card_horizontal .service__btns .btn {
    width: 100%;
    max-width: 375px;
  }
}
.about .about__img {
  position: relative;
}
.about .about__img img {
  width: 100%;
  height: auto;
}
.about .text__content li {
  color: var(--text_green);
}

@media screen and (max-width: 576px) {
  .about .btn {
    width: 100%;
    max-width: 100%;
  }
}
.team .team__thumbnail {
  height: 460px;
}
.team .team__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 1439px) {
  .team .team__thumbnail {
    height: 400px;
  }
}
@media screen and (max-width: 1199px) {
  .team .team__thumbnail {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding: 60px 0;
  }
}
@media screen and (max-width: 576px) {
  .team .team__slide {
    width: 250px;
  }
  .team .team__slide .team__name {
    font-size: 20px;
  }
  .team .team__thumbnail {
    height: 250px;
  }
}
.callback .callback__img {
  position: absolute;
  width: 700px;
  height: 600px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.callback .callback__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.callback.callback_img_right .callback__img {
  left: auto;
  right: 0;
}
.callback.callback_img_right .callback__info {
  margin-left: 0;
}
.callback .callback__info {
  max-width: 590px;
  margin-left: auto;
}
.callback .section__title {
  font-size: 44px;
}
.callback.bg_btn_green .section__title {
  color: var(--white);
}
.callback .form__wrap .input__group {
  width: 315px;
  margin-right: 32px;
}
.callback .form__wrap .form__text a {
  color: var(--text_grey);
  text-decoration: underline;
}
.callback .form__wrap .form__text a:hover {
  color: var(--gold);
}
.callback.bg_btn_green p.c_text_grey {
  color: var(--white);
}
.callback.bg_btn_green p.c_text_grey a {
  color: var(--white);
}

.callback_content .callback__info {
  padding: 40px;
  width: 580px;
}
.callback_content .callback__img {
  width: calc(100% - 580px);
}
.callback_content .callback__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.callback_content .form__text a {
  color: var(--white);
}
.callback_content .form__text a:hover {
  color: var(--gold);
}

.sidebar .sidebar__nav {
  padding: 40px;
}
.sidebar .sidebar__nav.open .sidebar__btn {
  margin-bottom: 20px;
}
.sidebar .sidebar__nav.open .sidebar__btn svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sidebar .sidebar__nav .sidebar__btn {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
.sidebar .sidebar__nav .sidebar__btn svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sidebar .sidebar__nav .sidebar__menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 13px 36px 13px 12px;
  color: var(--text_grey);
  font-size: 16px;
}
.sidebar .sidebar__nav .sidebar__menu li a::after, .sidebar .sidebar__nav .sidebar__menu li a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 12px;
  right: 12px;
  background: url(../img/sideba_arrow_grey_right.svg) no-repeat center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
}
.sidebar .sidebar__nav .sidebar__menu li a::after {
  background: url(../img/sideba_arrow_green_right.svg) no-repeat center;
  opacity: 0;
}
.sidebar .sidebar__nav .sidebar__menu li a:hover {
  color: var(--btn_green);
}
.sidebar .sidebar__nav .sidebar__menu li a:hover::after {
  opacity: 1;
}
.sidebar .sidebar__nav .sidebar__menu li a:hover::before {
  opacity: 0;
}
.sidebar .sidebar__nav .sidebar__menu li.current-menu-item a {
  color: var(--white);
  background-color: var(--btn_green);
}
.sidebar .sidebar__nav .sidebar__menu li.current-menu-item a::after, .sidebar .sidebar__nav .sidebar__menu li.current-menu-item a::before {
  opacity: 1;
  background: url(../img/sideba_arrow_wh_right.svg) no-repeat center !important;
}
.sidebar .sidebar__nav .sidebar__menu li.current-menu-item a:hover {
  color: var(--white);
}
.sidebar .sidebar__nav .sidebar__menu li.current-menu-item a:hover::after {
  opacity: 1;
}
.sidebar .sidebar__nav .sidebar__menu li.current-menu-item a:hover::before {
  opacity: 1;
}

.callback_sidebar {
  padding: 40px;
}
.callback_sidebar .form__text a {
  color: var(--white);
}
.callback_sidebar .form__text a:hover {
  color: var(--gold);
}

@media screen and (max-width: 1439px) {
  .callback .callback__img {
    width: 480px;
    height: 550px;
  }
  .callback .callback__info {
    padding: 40px 0;
  }
  .sidebar .sidebar__nav {
    padding: 40px 25px;
  }
  .callback_content .callback__info {
    width: 480px;
    padding: 40px 25px;
  }
  .callback_content .callback__img {
    width: calc(100% - 480px);
  }
}
@media screen and (max-width: 1199px) {
  .callback .section__title {
    font-size: 36px;
  }
  .callback .callback__img {
    width: 48%;
    height: 110%;
  }
  .callback .callback__info {
    max-width: 50%;
  }
  .callback .form__wrap .input__group {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .callback .form__wrap .btn__wrap {
    width: 100%;
  }
  .callback .form__wrap .btn__wrap p {
    width: 100%;
  }
  .callback .form__wrap .btn__wrap .btn {
    width: 50%;
    max-width: 340px;
  }
  .callback_content .callback__info {
    width: 480px;
    padding: 0 25px 40px;
    margin: 0 auto;
  }
  .callback_content .callback__info .form__wrap .btn {
    width: 100%;
  }
  .callback_content .callback__img {
    width: 100%;
    max-width: 375px;
    height: 340px;
    margin: 0 auto 25px;
  }
  .sidebar .sidebar__nav {
    padding: 40px 15px;
  }
}
@media screen and (max-width: 991px) {
  .callback .section__title {
    font-size: 32px;
  }
  .callback.callback_img_right .callback__img {
    right: auto;
    left: 50%;
  }
  .callback {
    padding: 0;
  }
  .callback .callback__block {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .callback .callback__img {
    width: 100%;
    max-width: initial;
    height: 340px;
    top: 0;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    margin-bottom: 32px;
  }
  .callback .callback__info {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .callback .form__text {
    text-align: center;
  }
  .callback.callback_img_right .callback__info {
    margin: 0 auto;
  }
  .callback .form__wrap .btn__wrap .btn {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .callback .callback__img {
    width: calc(100% + 32px);
    max-width: initial;
    height: auto;
    top: 0;
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    margin-bottom: 32px;
  }
}
.faq .faq__item {
  border: 1px solid var(--btn_green);
  margin-bottom: 12px;
}
.faq .faq__item:last-child {
  margin-bottom: 0;
}
.faq .faq__item.open {
  padding-bottom: 16px;
}
.faq .faq__item.open .faq__qwestion::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq .faq__item .faq__qwestion {
  padding: 16px 30px 16px 16px;
  cursor: pointer;
  position: relative;
}
.faq .faq__item .faq__qwestion::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 16px;
  background: url(../img/faq_icon.svg) no-repeat center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.faq .faq__item .faq__answer {
  height: 0;
  overflow: hidden;
}
.faq .faq__item .faq__answer .faq__content {
  padding: 0 16px;
}

.products .sidebar__products li {
  margin-bottom: 8px;
}
.products .sidebar__products li.current a, .products .sidebar__products li:hover a {
  color: var(--btn_green);
}
.products .sidebar__products li a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text_grey);
}
.products .products__card {
  padding-bottom: 20px;
}
.products .products__card:hover {
  background-color: var(--btn_green);
}
.products .products__card:hover .products__name,
.products .products__card:hover .products__describe {
  color: var(--white);
}
.products .products__thumbnail {
  margin-bottom: 20px;
  height: 345px;
}
.products .products__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products .products__name {
  padding: 0 12px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.products .products__describe {
  letter-spacing: 0.02em;
  padding: 0 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.product .breadcrumbs {
  color: var(--text_grey);
}
.product .breadcrumbs span {
  color: var(--text_grey);
}
.product .breadcrumbs span a {
  color: var(--text_grey);
}
.product .breadcrumbs span.breadcrumb_last {
  opacity: 0.5;
}
.product .product__thumbnail {
  margin-bottom: 24px;
}
.product .product__thumbnail img {
  width: 100%;
  height: auto;
}
.product .text__content p,
.product .text__content li {
  font-size: 14px;
}

@media screen and (max-width: 1439px) {
  .products {
    padding-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .products {
    padding-top: 80px;
  }
  .product {
    padding-top: 40px;
  }
  .product .product__thumbnail {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 24px;
  }
}
.price .price__item {
  width: 100%;
}
.price .price__wrap {
  height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.price.price_page .price__name {
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.price.price_page .price__name svg {
  position: absolute;
  right: 16px;
  top: 22px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.price.price_page .price__item.open .price__name {
  margin-bottom: 24px;
}
.price.price_page .price__item.open .price__name svg {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.price.price_page .price__item.open .price__name svg path {
  fill: var(--btn_green);
}
.price table {
  border-collapse: collapse;
  height: auto !important;
  max-width: 100% !important;
  display: block;
}
.price table tbody {
  width: 100% !important;
  display: block;
}
.price table tr {
  border-bottom: 1px solid var(--light);
  height: auto !important;
  max-width: 100% !important;
}
.price table td {
  padding: 20px 16px;
  font-size: 16px;
  letter-spacing: 0.03em;
  height: auto !important;
}
.price table td:first-child {
  word-break: break-word;
}
.price table td span {
  display: inline-block;
}
.price table td:last-child {
  font-weight: 500;
  text-align: right;
  letter-spacing: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 70px;
}

@media screen and (max-width: 1439px) {
  .price.pt_120 {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .price.pt_120 {
    padding-top: 90px;
  }
}
@media screen and (max-width: 991px) {
  .price.pt_120 {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .price table td {
    padding: 10px 8px;
  }
}
.contact .link__item .icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 4px;
}
.contact .link__item a {
  text-decoration: underline;
}
.contact .link__item a:hover {
  color: var(--gold);
}
.contact .contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

@media screen and (max-width: 1439px) {
  .contact {
    padding-top: 90px;
  }
}
@media screen and (max-width: 991px) {
  .contact {
    padding-top: 80px;
  }
}
.doctor .breadcrumbs {
  color: var(--green);
}
.doctor .breadcrumbs span {
  color: var(--green);
}
.doctor .breadcrumbs span a {
  color: var(--green);
}
.doctor .doctor__img img {
  width: 100%;
  height: auto;
}
.doctor .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.doctor .social a {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.doctor .social a svg {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1199px) {
  .review {
    padding-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .review {
    padding-top: 80px;
  }
  .doctor .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .doctor .social a {
    margin: 0 10px !important;
  }
  .doctor .doctor__img {
    max-width: 350px;
    margin: 0 auto 25px;
  }
  .doctor .doctor__img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .review {
    padding-top: 40px;
  }
}
.sertificate .sertificate__swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sertificate .swiper-slide {
  display: block;
  height: 440px;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  width: calc(33.3333333333% - 24px);
  margin: 0 12px 24px;
}
.sertificate .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1199px) {
  .sertificate .swiper-slide {
    height: 400px;
  }
}
@media screen and (max-width: 991px) {
  .sertificate .sertificate__swiper .swiper-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .sertificate .swiper-slide {
    width: calc(33.3333333333% + 50px);
  }
}
@media screen and (max-width: 767px) {
  .sertificate .swiper-slide {
    width: calc(50% + 50px);
  }
}
@media screen and (max-width: 576px) {
  .sertificate .swiper-slide {
    width: calc(50% + 100px);
  }
}
.gallary .gallary__item .gallary__link {
  width: 100%;
  display: block;
}
.gallary .gallary__item .gallary__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 991px) {
  .price.pt_70,
  .gallary.pt_70 {
    padding-top: 40px;
  }
  .price.pb_70,
  .gallary.pb_70 {
    padding-bottom: 40px;
  }
}
.numbers .numbers__val {
  font-size: 70px;
  line-height: 1em;
}

.news .news__swiper {
  margin-bottom: 25px;
}
.news .news__slide {
  display: block;
}
.news .news__slide .news__thumbnail {
  height: 340px;
}
.news .news__slide .news__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
.swiper__arrows .swiper__arrow {
  pointer-events: all;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.swiper__arrows .swiper__arrow.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.swiper__arrows .swiper__arrow:hover {
  background-color: var(--gold);
}

.swiper__pag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper__pag .swiper-pagination-bullet {
  opacity: 1;
  background-color: var(--light_green);
  width: 8px;
  height: 8px;
  margin: 0 4px;
}
.swiper__pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--green);
}

@media screen and (max-width: 1439px) {
  .news .news__swiper .news__slide .news__thumbnail {
    height: 300px;
  }
}
@media screen and (max-width: 1199px) {
  .news .news__swiper .news__slide .news__thumbnail {
    height: 280px;
  }
  .news.news_page .news__slide .news__thumbnail {
    height: 280px;
  }
  .news.news_page .news__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .news .news__swiper .news__slide .news__thumbnail {
    height: 240px;
  }
  .news .news__name {
    font-size: 20px;
  }
  .news .news__wrap {
    padding-top: 0;
  }
  .section__offer .section__title.section__title_line {
    padding-right: 0;
  }
  .section__offer .section__title.section__title_line:after {
    display: none;
  }
  .news.news_page .news__slide .news__thumbnail {
    height: 280px;
  }
  .news.news_page .news__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .news .news__btn {
    width: 100%;
    max-width: 370px;
  }
}
.pagination span.page-numbers {
  pointer-events: none;
}
.pagination .page-numbers {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
  margin: 0 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .page-numbers img {
  width: 8px;
  height: auto;
}
.pagination .page-numbers.prev {
  margin-right: 5px;
  border: none;
}
.pagination .page-numbers.current {
  background-color: var(--gold);
  color: var(--white);
}
.pagination .page-numbers.next {
  margin-left: 5px;
  border: none;
}
.pagination .page-numbers:hover {
  background-color: var(--gold);
  color: var(--white);
}

.not_404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 680px;
  height: 100vh;
}
.not_404 .not_404__number {
  font-size: 200px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #ff2f22;
  line-height: 1em;
}
.not_404 h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1em;
}
.not_404 .not_404__subtitle {
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6em;
}
.not_404 .btn {
  width: 262px;
}

@media screen and (max-width: 1439px) {
  .not_404 .not_404__number {
    font-size: 160px;
  }
  .not_404 h1 {
    font-size: 42px;
  }
}
@media screen and (max-width: 1199px) {
  .not_404 .not_404__number {
    font-size: 150px;
  }
  .not_404 h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .not_404 .not_404__number {
    font-size: 100px;
  }
  .not_404 h1 {
    font-size: 32px;
  }
}
.footer .footer__logo {
  display: block;
  width: 220px;
}
.footer .footer__logo img {
  width: 100%;
  height: auto;
}
.footer .footer__menu li {
  padding: 8px 0;
}
.footer .footer__menu li:last-child {
  margin-right: 0;
}
.footer .footer__menu li a {
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  line-height: 1.6em;
  border-bottom: 1px solid transparent;
  letter-spacing: 0.02em;
}
.footer .footer__menu li a:hover {
  color: var(--text_grey);
  border-color: var(--text_grey);
}
.footer .contact__item p {
  letter-spacing: 0.3em;
}
.footer .contact__item a svg {
  margin-right: 8px;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer .contact__item a span {
  line-height: 1.4em;
  text-decoration: underline;
}
.footer .contact__item a:hover {
  color: var(--text_grey);
}
.footer .contact__item a:hover svg {
  stroke: var(--text_grey);
}
.footer .footer__info a {
  color: var(--text_grey);
  text-decoration: underline;
}
.footer .footer__bottom {
  margin-top: 100px;
  padding-top: 35px;
  border-top: 1px solid var(--light_green);
}

.divider {
  padding: 20px 0;
  position: relative;
}
.divider::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}

.content__img img {
  width: 100%;
  height: auto;
}

.simple__content h1 {
  font-size: 70px;
  font-weight: 400;
}
.simple__content .text__content h2, .simple__content.text__content h2 {
  font-family: "Tenor Sans", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  color: var(--text_green);
}
.simple__content .text__content h3, .simple__content.text__content h3 {
  font-family: "Tenor Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  color: var(--text_green);
}
.simple__content .text__content h4, .simple__content.text__content h4 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 16px;
  color: var(--text_green);
}
.simple__content .text__content h5, .simple__content.text__content h5 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4em;
  margin-bottom: 20px;
  color: var(--text_green);
}
.simple__content .text__content p,
.simple__content .text__content li, .simple__content.text__content p,
.simple__content.text__content li {
  font-size: 16px;
  line-height: 1.4em;
  color: var(--text_grey);
}
.simple__content .text__content p a,
.simple__content .text__content li a, .simple__content.text__content p a,
.simple__content.text__content li a {
  color: var(--dark);
  text-decoration: underline;
  font-weight: 500;
}
.simple__content .text__content p a:hover,
.simple__content .text__content li a:hover, .simple__content.text__content p a:hover,
.simple__content.text__content li a:hover {
  color: var(--blue);
}
.simple__content .text__content li, .simple__content.text__content li {
  padding-left: 18px;
  position: relative;
  color: var(--text_grey);
}
.simple__content .text__content li:not(:last-child), .simple__content.text__content li:not(:last-child) {
  margin-bottom: 7px;
}
.simple__content .text__content li:before, .simple__content.text__content li:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--btn_green);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}
.simple__content .text__content p, .simple__content.text__content p {
  margin-bottom: 1em;
}
.simple__content .text__content ul, .simple__content.text__content ul {
  margin-bottom: 24px;
}
.simple__content .text__content ol, .simple__content.text__content ol {
  list-style: none;
  counter-reset: item;
  margin-bottom: 24px;
}
.simple__content .text__content ol li, .simple__content.text__content ol li {
  counter-increment: item;
  color: var(--dark);
  font-size: 16px;
  padding-left: 18px;
}
.simple__content .text__content ol li:not(:last-child), .simple__content.text__content ol li:not(:last-child) {
  margin-bottom: 7px;
}
.simple__content .text__content ol li:before, .simple__content.text__content ol li:before {
  margin-right: 16px;
  content: counter(item) ".";
  background: transparent;
  color: var(--btn_green);
  font-size: 16px;
  width: 1.2em;
  text-align: center;
  display: inline-block;
  height: 16px;
  top: 0px;
}
.simple__content .img-comp-container {
  position: relative;
}
.simple__content .img-comp-img {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.simple__content .img-comp-img.img-comp-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.simple__content .img-comp-img.img-comp-overlay img {
  display: block;
  width: auto;
  height: 100%;
}
.simple__content .img-comp-img img {
  display: block;
  width: 100%;
  height: auto;
}
.simple__content .img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  /*set the appearance of the slider:*/
  width: 40px;
  height: 100%;
  background-color: transparent;
  opacity: 0.7;
}
.simple__content .img-comp-slider::after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  position: absolute;
  left: 18px;
  top: 0;
  background-color: var(--white);
  pointer-events: none;
}

@media screen and (max-width: 1439px) {
  .single__content {
    padding-top: 100px;
  }
  .simple__content h1 {
    font-size: 48px;
  }
  .simple__content .text__content h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .simple__content h1 {
    font-size: 42px;
  }
  .simple__content .callback_content .callback__img {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .simple__content .callback_content .callback__info {
    width: 100%;
  }
  .divider {
    padding: 10px 0;
    position: relative;
  }
}
@media screen and (max-width: 991px) {
  .single__content {
    padding-top: 60px;
  }
  .simple__content .text__content h2 {
    font-size: 32px;
  }
  .simple__content .text__content h3 {
    font-size: 28px;
  }
  .simple__content .text__content h4 {
    font-size: 20px;
  }
  .footer {
    padding-top: 80px;
  }
  .footer .footer__logo {
    width: 170px;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer__text {
    max-width: 500px;
  }
  .simple__content {
    padding-top: 70px;
  }
  .simple__content h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .simple__content h2 {
    font-size: 24px;
  }
  .footer .footer__bottom {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 40px;
  }
  .simple__content .text__content p,
  .simple__content .text__content li {
    font-size: 16px;
  }
  .footer .footer__bottom {
    margin-top: 0;
  }
}
@media screen and (max-width: 576px) {
  .footer .footer__links {
    text-align: center;
  }
}
.sticky__btn {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1em;
  width: 96px;
  height: 96px;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1), 3px 7px 7px rgba(0, 0, 0, 0.1), 8px 15px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1), 3px 7px 7px rgba(0, 0, 0, 0.1), 8px 15px 10px rgba(0, 0, 0, 0.05);
  background-color: #5c8678;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  border-radius: 50%;
  text-transform: uppercase;
}
.sticky__btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  border: 1px solid #5c8678;
  pointer-events: none;
  -webkit-animation: zoomElem 2.5s ease-in-out infinite;
          animation: zoomElem 2.5s ease-in-out infinite;
}
@-webkit-keyframes zoomElem {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes zoomElem {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
.sticky__btn span {
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.popup {
  position: fixed;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(14, 15, 15, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup.open {
  z-index: 999999;
  opacity: 1;
  pointer-events: all;
}
.popup.open .popup__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.popup .popup__content {
  background-color: var(--white);
  width: 96%;
  max-width: 400px;
  padding: 0;
  position: relative;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  max-height: 96%;
  overflow-y: auto;
}
.popup .popup__content .popup__head {
  padding: 45px 30px;
  background-color: var(--btn_hover);
}
.popup .popup__content .close_popup {
  background: transparent url(../img/close_menu_wh.svg) no-repeat center/16px;
  border: none;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.popup .popup__content .form__wrap {
  padding: 32px 40px;
}
.popup .popup__content .form__wrap .input__group {
  margin-bottom: 10px;
}
.popup .popup__content .form__wrap .input__group .order__input {
  height: 50px;
  padding-left: 12px;
  font-size: 16px;
  border: 1px solid #e5e5e5;
}
.popup .popup__content .form__wrap .input__group .order__input.order__input_message {
  height: 120px;
  padding-top: 15px;
}
.popup .popup__content .form__wrap .form__text {
  margin-bottom: 10px;
  color: var(--text_grey);
}
.popup .popup__content .form__wrap .form__text a {
  text-decoration: underline;
  color: var(--text_grey);
}
.open__form > * {
  pointer-events: none;
}

@media screen and (max-width: 576px) {
  .sticky__btn {
    right: 16px;
    bottom: 16px;
    width: 88px;
    height: 88px;
    font-size: 11px;
  }
}
.wpcf7 form {
  position: relative;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 0;
  font-size: 14px;
  width: 100%;
  margin: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.form__wrap .wpcf7-not-valid-tip {
  font-size: 10px;
  position: absolute;
  top: 100%;
  margin-top: 0;
  left: 0;
  width: 100%;
}

.page_404 {
  height: calc(100vh - 43px);
  min-height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.page_404 .page_404__title {
  font-size: 200px;
  font-style: normal;
  font-weight: 600;
  font-family: "Manrope";
  text-transform: uppercase;
  color: var(--lightgrey);
  margin-bottom: 30px;
  line-height: 0.75em;
}
.page_404 .page_404_subtitle {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1em;
}
.page_404 .page_404__text {
  font-size: 18px;
  max-width: 284px;
  margin: 0 auto 30px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .page_404 .page_404__title {
    font-size: 150px;
  }
}
.cky-notice-btn-wrapper .cky-btn.cky-btn-customize, .cky-notice-btn-wrapper .cky-btn.cky-btn-reject, .cky-notice-btn-wrapper .cky-btn.cky-btn-preferences {
  border-width: 1px !important;
}

.cky-prefrence-btn-wrapper .cky-btn {
  font-size: 18px !important;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-accept:hover {
  background-color: #333333;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-reject, .cky-prefrence-btn-wrapper .cky-btn.cky-btn-preferences {
  border-width: 1px !important;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-reject:hover, .cky-prefrence-btn-wrapper .cky-btn.cky-btn-preferences:hover {
  background-color: #f7f7f7;
}

.cky-preference-body-wrapper p {
  font-size: 16px;
}

@media screen and (max-width: 576px) {
  .page_404 .page_404__title {
    font-size: 120px;
  }
  .page_404 .page_404_subtitle {
    font-size: 32px;
  }
  .page_404 .page_404__text {
    font-size: 16px;
  }
  .popup .popup__content ifrane {
    padding-bottom: 45px;
  }
}
.ti-widget.ti-goog .ti-controls .ti-next:after,
.ti-widget.ti-goog .ti-controls .ti-prev:after,
.ti-widget.ti-goog .ti-controls .ti-next:before,
.ti-widget.ti-goog .ti-controls .ti-prev:before {
  background-color: var(--btn_green) !important;
}

.ti-widget.ti-goog .ti-footer-filter-text {
  text-align: center !important;
}

html.with-fancybox {
  overflow: auto;
}

#sb_instagram #sbi_load .sbi_load_btn {
  margin: 0 auto;
  height: 56px;
  border-radius: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 32px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 16px;
  font-weight: 500;
}

.sbi_follow_btn,
.sb_instagram_header,
.instagram-gallery__actions {
  display: none !important;
}

#instagram-gallery-feed-0 .instagram-gallery-item__media-mask {
  opacity: 0 !important;
}

.instagram-gallery-square .instagram-gallery-item__media-wrap {
  position: relative;
}
.instagram-gallery-square .instagram-gallery-item__media-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3) url(../img/icon_zoom.svg) no-repeat center/25px !important;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 5;
}
.instagram-gallery-square .instagram-gallery-item__media-wrap:hover::before {
  opacity: 1;
}/*# sourceMappingURL=main.css.map */