@charset "UTF-8";
@import "../font/font.css";
* {
  margin: 0;
  padding: 0;
  outline: none;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

table {
  border-collapse: collapse;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
}

iframe, video {
  display: block;
  height: auto;
}

html {
  -webkit-tap-highlight-color: transparent;
  -webkit-hyphenate-character: "-";
  tab-size: 4;
}

a, area, button, input, label, select, summary, textarea, [tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

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

path {
  transition: all 0.3s ease;
}

a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
a.anchor {
  cursor: pointer;
}

section {
  scroll-margin-top: 100px;
}

::-webkit-scrollbar-track {
  background: #D6D6D6;
}

::-webkit-scrollbar-thumb {
  background-color: #D6D6D6;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

body::-webkit-scrollbar {
  width: 10px;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.holder {
  max-width: 76.875em;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.grid-container {
  display: grid;
}

.span-col-2 {
  grid-column: span 2/auto;
}

.span-col-3 {
  grid-column: span 3/auto;
}

.span-col-4 {
  grid-column: span 4/auto;
}

.span-row-2 {
  grid-row: span 2/auto;
}

.span-row-3 {
  grid-row: span 3/auto;
}

.span-row-4 {
  grid-row: span 4/auto;
}

.flex-container {
  display: flex;
  align-items: center;
}

.align-left {
  display: flex;
  justify-content: flex-start;
}

.align-center {
  display: flex;
  justify-content: center;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}

.hidden {
  display: none;
}

a[data-hover-text] {
  font-weight: 500;
  color: transparent;
  position: relative;
}
a[data-hover-text]:after {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
  color: #261F17;
  content: attr(data-text);
  text-align: center;
  width: 100%;
}
a[data-hover-text]:hover:after {
  font-weight: 500;
}

#totop {
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: fixed;
  right: 42px;
  bottom: 15px;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #003C7D;
  display: flex;
  padding: 7px 7px 7px;
  z-index: 99;
}
@media (max-width: 767px) {
  #totop {
    right: 27px;
  }
}
#totop.active {
  opacity: 1;
  visibility: visible;
}

@keyframes arrow {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(359deg);
  }
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

.btn {
  user-select: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border: 0;
  text-transform: uppercase;
  background: #9A762D;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  padding: 1.1875em 0.3125em;
  min-width: 200px;
}
.btn:hover {
  color: #fff;
  background: #CAA94F;
}
.btn:hover:active {
  color: #fff;
  background: #d49e09;
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}
textarea {
  resize: vertical;
  min-height: 5.3125em;
}

input, textarea, select {
  width: 100%;
  transition: border 0.3s ease;
  appearance: none;
  border: 0;
  border-bottom: 1px solid #E0E0E0;
  padding: 1.125em 0;
  background: transparent;
  color: #000;
  font-size: 1em;
}
input:focus, textarea:focus, select:focus {
  border-color: #9A762D;
}
input[type=date], textarea[type=date], select[type=date] {
  appearance: unset;
}
input[type=number], textarea[type=number], select[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button, textarea[type=number]::-webkit-outer-spin-button, textarea[type=number]::-webkit-inner-spin-button, select[type=number]::-webkit-outer-spin-button, select[type=number]::-webkit-inner-spin-button {
  display: none;
  margin: 0;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #BDBDBD;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #BDBDBD;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #BDBDBD;
}
input:-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder {
  color: #BDBDBD;
}
input[readonly], textarea[readonly], select[readonly] {
  cursor: not-allowed;
}
input[type=checkbox], textarea[type=checkbox], select[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
  border-color: #B8B8B8;
  padding: 0;
}
input[type=checkbox]:after, textarea[type=checkbox]:after, select[type=checkbox]:after {
  content: "";
  position: absolute;
  display: block;
  top: 5px;
  left: 4px;
  width: 7px;
  height: 6px;
  opacity: 0;
  transition: all 0.3s ease;
  background: url(../img/check.svg) center/contain no-repeat;
}
input[type=checkbox]:checked:after, textarea[type=checkbox]:checked:after, select[type=checkbox]:checked:after {
  opacity: 1;
}
input[type=checkbox].switch, textarea[type=checkbox].switch, select[type=checkbox].switch {
  width: 30px;
  height: 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: #B8B8B8;
  border: 0;
}
input[type=checkbox].switch:after, textarea[type=checkbox].switch:after, select[type=checkbox].switch:after {
  top: 2px;
  left: 2px;
  border-radius: 100%;
  background: #fff;
  opacity: 1;
  width: 16px;
  height: 16px;
}
input[type=checkbox].switch:checked, textarea[type=checkbox].switch:checked, select[type=checkbox].switch:checked {
  background: #00BE13;
}
input[type=checkbox].switch:checked:after, textarea[type=checkbox].switch:checked:after, select[type=checkbox].switch:checked:after {
  transform: translateX(10px);
}
input[type=radio], textarea[type=radio], select[type=radio] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: relative;
  border-radius: 100%;
  border-color: #B8B8B8;
  padding: 0;
}
input[type=radio]:after, textarea[type=radio]:after, select[type=radio]:after {
  content: "";
  position: absolute;
  display: block;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  opacity: 0;
  border-radius: 100%;
  transition: all 0.3s ease;
  background: #B8B8B8;
}
input[type=radio]:checked:after, textarea[type=radio]:checked:after, select[type=radio]:checked:after {
  opacity: 1;
}

select {
  appearance: unset;
  cursor: pointer;
}

form.check-validation input:invalid, form.check-validation textarea:invalid, form.check-validation select:invalid {
  border-color: #ED1C24;
}

form input, form textarea, form select {
  margin-bottom: 10px;
}

.modalq-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  padding: 15px;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  display: none;
}
.modalq-wrapper .modalq {
  display: none;
  position: relative;
  background: #fff;
  padding: 30px;
  width: 100%;
  max-height: calc(var(--vh, 100vh) - 30px);
  max-width: 34.375em;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (max-width: 1023px) {
  .modalq-wrapper .modalq {
    height: auto;
  }
}
.modalq-wrapper .modalq svg[data-modalq-close] {
  position: absolute;
  right: 10px;
  top: 10px;
  user-select: none;
  padding: 0;
  width: auto;
}
.modalq-wrapper .modalq form {
  display: flex;
  flex-direction: column;
  max-width: 28.75em;
  margin: 0 auto;
  width: 100%;
}
.modalq-wrapper .modalq .title {
  font-size: 1.875em;
  text-align: center;
  font-weight: 500;
  margin: 0 auto 0.5em;
  max-width: 500px;
}
@media (max-width: 767px) {
  .modalq-wrapper .modalq .title {
    font-size: 1.875em;
  }
}
.modalq-wrapper .modalq > svg {
  width: 100%;
  padding-bottom: 30px;
  display: block;
}
.modalq-wrapper .modalq#modalq-0 > div {
  height: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 1.6875em;
  font-weight: 500;
  max-width: 15.5555555556em;
  margin: 0 auto;
  line-height: 130%;
}

[data-modalq-opener],
[data-modalq-close] {
  cursor: pointer;
}

* {
  font-family: "Gotham Pro";
}

body {
  font-family: "Gotham Pro";
  color: #100701;
  position: static;
  margin-top: 96px;
  box-sizing: border-box;
  min-width: 320px;
}
@media (max-width: 766px) {
  body {
    margin-top: 74px;
  }
}

@media (max-width: 766px) {
  body.home {
    margin-top: 74px;
  }
}

div {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  font-family: "Gotham Pro";
  cursor: pointer;
}

.btn {
  padding: unset;
}

input {
  font-family: "Gotham Pro";
}

img {
  width: 100%;
}

ul {
  list-style: inside disc;
}

body .slick-slide {
  height: unset;
}

.container {
  width: 1266px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin: 0 auto;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .container {
    width: 991px;
  }
}
@media (min-width: 767px) and (max-width: 1039px) {
  .container {
    width: 700px;
  }
}
@media (max-width: 766px) {
  .container {
    width: 100%;
  }
}

.title-right-line {
  display: flex;
  align-items: center;
}

.title-with-lines {
  position: relative;
  text-align: center;
}

.title-with-lines:before, .title-with-lines:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50%;
  height: 1px;
  background-color: black;
}

.title-with-lines:before {
  left: 0;
}

.title-with-lines:after {
  right: 0;
}

.homepage .burger, .homepage .burger:after, .homepage .burger:before {
  background-color: #fff;
}

.homepage.scroll .burger, .homepage.scroll .burger:after, .homepage.scroll .burger:before {
  background-color: #40685C;
}

.burger {
  position: absolute;
  right: 20px;
  top: 50px;
  background: #40685C;
  transition: all 0ms 300ms;
  margin: 0 0.9375em;
  flex-shrink: 0;
  display: none;
}
@media (max-width: 1040px) {
  .burger {
    display: flex;
  }
}
@media (max-width: 766px) {
  .burger {
    right: 3px;
    top: 37px;
  }
}
.burger, .burger:after, .burger:before {
  width: 35px;
  height: 2px;
}
.burger:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  background: #40685C;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.burger:after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  background: #40685C;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.burger.active {
  background: transparent !important;
}
.burger.active:after {
  top: 0;
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.burger.active:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* ========================= Header ================================= */
header, header.homepage.scroll {
  position: fixed;
  top: 0;
  height: 96px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  z-index: 999;
  background-color: #FFFFFF;
}
@media (max-width: 766px) {
  header, header.homepage.scroll {
    height: 74px;
  }
}
header .header__logo a, header.homepage.scroll .header__logo a {
  background: url(../images/header__logo_dark.svg) center/contain no-repeat;
  width: 148px;
  height: 54px;
  display: block;
}
@media (max-width: 766px) {
  header .header__logo a, header.homepage.scroll .header__logo a {
    margin-left: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
header .main-navigation, header.homepage.scroll .main-navigation {
  width: auto;
  display: block;
  padding-right: 144px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  header .main-navigation, header.homepage.scroll .main-navigation {
    padding-right: 20px;
  }
}
@media (max-width: 766px) {
  header .main-navigation, header.homepage.scroll .main-navigation {
    padding-right: 0;
  }
}
header .main-navigation .menu-toggle, header.homepage.scroll .main-navigation .menu-toggle {
  position: absolute;
  top: 1.9986em;
  right: 1.6em;
  background: #fff;
  color: #40685C;
  border: 2px solid #40685C;
  font-size: 14px;
  box-shadow: none;
  text-shadow: none;
  border-radius: 0;
  width: auto;
  padding: 0.7em 1em;
  display: none;
}
header .main-navigation .menu-toggle::after, header.homepage.scroll .main-navigation .menu-toggle::after {
  content: "MENU";
}
@media (max-width: 1039px) {
  header .main-navigation .menu-toggle, header.homepage.scroll .main-navigation .menu-toggle {
    display: block;
  }
}
header .main-navigation ul, header.homepage.scroll .main-navigation ul {
  border: 0;
  padding: 0;
  margin: 0;
  clear: none;
  display: flex;
  width: auto;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
header .main-navigation ul li, header.homepage.scroll .main-navigation ul li {
  margin-left: 2.4em;
  padding: 0.46875em 0;
  padding-right: 30px;
  position: relative;
  margin: 0;
}
@media (max-width: 1039px) {
  header .main-navigation ul.menu.nav-menu, header.homepage.scroll .main-navigation ul.menu.nav-menu {
    display: none;
    position: fixed;
    background-color: #fff;
    top: 97px;
    left: 0;
    width: 100%;
    height: calc(100% - 97px);
    overflow-y: auto;
  }
}
@media (max-width: 766px) {
  header .main-navigation ul.menu.nav-menu, header.homepage.scroll .main-navigation ul.menu.nav-menu {
    top: 75px;
    height: calc(100% - 75px);
  }
}
header .main-navigation a, header.homepage.scroll .main-navigation a {
  display: block;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #4E5E57;
}
@media (max-width: 1039px) {
  header .main-navigation a, header.homepage.scroll .main-navigation a {
    text-align: left;
    padding-left: 33px;
    color: #40685C;
  }
}
header .main-navigation a:hover, header.homepage.scroll .main-navigation a:hover {
  color: #A5BDB0;
}
header .main-navigation ul ul, header.homepage.scroll .main-navigation ul ul {
  position: absolute;
  padding: 1.6em 0;
  background-color: #fff;
  border: 1px solid #eeece8;
  border-top: 2px solid #40685C;
  margin: 0;
  line-height: 1.3;
  z-index: 999;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
@media (max-width: 1039px) {
  header .main-navigation ul ul, header.homepage.scroll .main-navigation ul ul {
    position: static;
    display: block;
    border: none;
    opacity: 1;
    visibility: visible;
  }
}
header .main-navigation li.menu-item:hover .sub-menu, header.homepage.scroll .main-navigation li.menu-item:hover .sub-menu {
  left: 0;
  top: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}
header .main-navigation .sub-menu li a, header.homepage.scroll .main-navigation .sub-menu li a {
  width: 200px;
  color: #4E5E57;
}
header .main-navigation .sub-menu li a:hover, header.homepage.scroll .main-navigation .sub-menu li a:hover {
  color: #A5BDB0;
}
header .main-navigation ul > li.menu-item-has-children > a:after, header.homepage.scroll .main-navigation ul > li.menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  background-image: url("../images/down__arrow.svg");
  background-size: cover;
  width: 12px;
  height: 8px;
  position: relative;
  left: 5px;
}
header .main-navigation ul ul li, header.homepage.scroll .main-navigation ul ul li {
  margin: 0;
  padding: 0.46875em 1.875em;
}
@media (max-width: 1039px) {
  header .main-navigation.toggled ul.menu.nav-menu, header.homepage.scroll .main-navigation.toggled ul.menu.nav-menu {
    display: block;
  }
}
header .main-navigation.toggled .menu-toggle::after, header.homepage.scroll .main-navigation.toggled .menu-toggle::after {
  content: "CLOSE";
}
header .container, header.homepage.scroll .container {
  justify-content: space-between;
  align-items: center;
}
header .container .header__nav, header.homepage.scroll .container .header__nav {
  display: flex;
}
header .container .header__nav .header__callback button, header.homepage.scroll .container .header__nav .header__callback button {
  width: 180px;
  height: 42px;
  display: block;
  font-weight: 500;
  font-size: 13px;
  line-height: 42px;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #4E5E57;
  border: 1px solid #4E5E57;
  border-radius: 50px;
  transition: all 0.5s;
  cursor: pointer;
  background-color: #fff;
}
header .container .header__nav .header__callback button:hover, header.homepage.scroll .container .header__nav .header__callback button:hover {
  background-color: #40685C;
  border: 1px solid #40685C;
  color: #fff;
  transition: all 0.5s;
}
@media (max-width: 1039px) {
  header .container .header__nav .header__callback button, header.homepage.scroll .container .header__nav .header__callback button {
    margin-right: 80px;
  }
}
@media (max-width: 766px) {
  header .container .header__nav .header__callback button, header.homepage.scroll .container .header__nav .header__callback button {
    margin-left: 33px;
    display: none;
  }
}
header .container .header__nav .header__callback .mobile__callback, header.homepage.scroll .container .header__nav .header__callback .mobile__callback {
  display: block;
  background-image: url("../images/button.svg");
  background-repeat: no-repeat;
  border: none;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: relative;
  right: 30px;
}
@media (min-width: 767px) {
  header .container .header__nav .header__callback .mobile__callback, header.homepage.scroll .container .header__nav .header__callback .mobile__callback {
    display: none;
  }
}

header.homepage {
  background-color: transparent;
}
header.homepage .header__logo a {
  background-image: url("../images/logo_header.svg");
}
header.homepage .main-navigation a {
  color: #FFFFFF;
}
@media (max-width: 1039px) {
  header.homepage .main-navigation a {
    color: #40685C;
  }
}
header.homepage .main-navigation ul > li.menu-item-has-children > a:after {
  background-image: url("../images/down__arrow_w.svg");
}
@media (max-width: 1039px) {
  header.homepage .container .header__nav .header__callback {
    padding-right: 100px;
  }
}
@media (max-width: 766px) {
  header.homepage .container .header__nav .header__callback {
    padding-right: 0;
    padding-left: 33px;
  }
}
header.homepage .container .header__nav .header__callback button {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background-color: transparent;
}
header.homepage .container .header__nav .header__callback button:hover {
  background-color: #40685C;
  border: 1px solid #40685C;
  color: #fff;
  transition: all 0.5s;
}

/*  ------------------------ HP Slider --------------------------------  */
.hp__slider {
  margin-top: -96px;
  position: relative;
}
.hp__slider .slick-prev, .hp__slider .slick-prev:hover, .hp__slider .slick-prev:focus {
  background-image: url("../images/hp__arrow_l.svg");
  width: 40px;
  height: 40px;
  left: calc(100% - 140px);
  top: 90%;
  z-index: 1;
}
.hp__slider .slick-prev::before, .hp__slider .slick-next::before {
  content: "";
  opacity: 0;
}
.hp__slider .slick-next, .hp__slider .slick-next:hover, .hp__slider .slick-next:focus {
  background-image: url("../images/hp__arrow_r.svg");
  width: 40px;
  height: 40px;
  right: 40px;
  top: 90%;
  z-index: 1;
}
.hp__slider .slick-dots {
  bottom: 40px;
  left: 40px;
  text-align: left;
  width: 200px;
}
.hp__slider .slick-dots li button:before {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #E2E4E0;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  content: "";
  opacity: 1;
}
.hp__slider .slick-dots li.slick-active button:before {
  background-color: #E2E4E0;
  border: 1px solid #E2E4E0;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  content: "";
  opacity: 1;
}
.hp__slider .slick-list.draggable {
  max-height: 100% !important;
}
.hp__slider .slick-slide img {
  max-height: 100vh;
  width: 100%;
  object-fit: contain;
}
.hp__slider .slider__item {
  width: 100%;
  position: relative;
  max-height: 100%;
  background-size: cover;
  background-position: right;
}
.hp__slider .slider__item .hp__slider_img {
  position: relative;
  top: 0;
}
.hp__slider .slider__item .hp__slider_promo {
  height: 100vh;
}
.hp__slider .slider__item .hp__slider_promo .container {
  display: block;
}
.hp__slider .slider__item .hp__slider_text {
  width: 731px;
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #FFFFFF;
  padding-top: 35vh;
  padding-left: 100px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .hp__slider .slider__item .hp__slider_text {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .hp__slider .slider__item .hp__slider_text {
    width: 300px;
    padding-left: 33px;
    padding-right: 33px;
    font-size: 29px;
  }
}
.hp__slider .slider__item .hp__slider_link button {
  width: 338px;
  height: 56px;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-top: 36px;
  margin-left: 104px;
  margin-bottom: 220px;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.5s;
}
.hp__slider .slider__item .hp__slider_link button:hover {
  background-color: #fff;
  color: #40685C;
  border: 1px solid #FFFFFF;
  transition: all 0.5s;
}
@media (max-width: 766px) {
  .hp__slider .slider__item .hp__slider_link button {
    width: 280px;
    height: 50px;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    font-weight: 500;
    font-size: 13px;
    line-height: 50px;
    margin-left: 33px;
  }
}

/* ========================= About us ================================= */
.about__us {
  background-color: #fff;
}
.about__us .container {
  padding-top: 120px;
  padding-bottom: 140px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .about__us .container {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
@media (max-width: 1039px) {
  .about__us .container {
    padding-top: 20px;
    padding-bottom: 80px;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.about__us .container > div {
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .about__us .container > div {
    width: 100%;
    padding-top: 20px;
  }
}
@media (max-width: 766px) {
  .about__us .container > div {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.about__us .container > div img {
  max-width: 100%;
  height: auto;
}
.about__us .container > div h2 {
  color: #40685C;
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  margin-bottom: 20px;
}
@media (max-width: 1365px) {
  .about__us .container > div h2 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .about__us .container > div h2 {
    font-size: 32px;
  }
}
.about__us .container > div .about__us_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
@media (max-width: 1365px) {
  .about__us .container > div .about__us_text {
    font-size: 16px;
    line-height: 140%;
  }
}
.about__us .container > div .about__us_link {
  margin-top: 50px;
}
.about__us .container > div .about__us_link a {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #A5BDB0;
  text-decoration: none;
}
@media (max-width: 1039px) {
  .about__us .container > div .about__us_link a {
    padding-bottom: 40px;
  }
}
.about__us .container > div .about__us_link a:hover {
  color: #40685C;
}
.about__us .container > div .about__us_link a::after {
  background-image: url(../images/bi_arrow-right.svg);
  width: 16px;
  height: 14px;
  content: "";
  position: relative;
  display: inline-block;
  right: -5px;
  top: 1px;
}

.why__select {
  background-image: url("../images/why__select__bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding-top: 59px;
  padding-bottom: 101px;
  position: relative;
}
.why__select .why__select_logo {
  position: absolute;
  right: 0%;
  top: -19%;
}
@media (max-width: 1039px) {
  .why__select .why__select_logo {
    display: none;
  }
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .why__select {
    padding-bottom: 20px;
  }
}
@media (max-width: 1039px) {
  .why__select {
    padding-bottom: 10px;
  }
}
@media (max-width: 766px) {
  .why__select {
    padding-bottom: 60px;
  }
}
@media (max-width: 1039px) {
  .why__select .container {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.why__select .container h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  max-width: 577px;
  color: #FFFFFF;
  padding-left: 33px;
  padding-right: 33px;
  margin-bottom: 60px;
}
@media (max-width: 1365px) {
  .why__select .container h2 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .why__select .container h2 {
    font-size: 32px;
  }
}
.why__select .container > div {
  width: 33.3%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .why__select .container > div {
    width: 75%;
  }
}
.why__select .container > div > div {
  margin-bottom: 87px;
}
@media (max-width: 1039px) {
  .why__select .container > div > div {
    margin-bottom: 40px;
  }
}
.why__select .container > div .why__select_img {
  width: 100%;
  height: auto;
}
.why__select .container .why__select_promo {
  width: 66.66%;
}
@media (max-width: 1039px) {
  .why__select .container .why__select_promo {
    width: 100%;
    padding-top: 40px;
  }
}
@media (max-width: 766px) {
  .why__select .container .why__select_promo {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.why__select .container .why__select_promo > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.why__select .container .why__select_promo > div > div {
  width: 50%;
  padding-left: 33px;
  box-sizing: border-box;
  margin-bottom: 60px;
}
@media (max-width: 1365px) {
  .why__select .container .why__select_promo > div > div {
    margin-bottom: 30px;
  }
}
@media (max-width: 766px) {
  .why__select .container .why__select_promo > div > div {
    padding-left: 0px;
    width: 100%;
  }
}
.why__select .container .why__select_promo > div > div:nth-of-type(odd) {
  padding-left: 0;
}
@media (max-width: 766px) {
  .why__select .container .why__select_promo > div > div:nth-of-type(odd) {
    padding-left: 0px;
    width: 100%;
  }
}
.why__select .container .why__select_promo h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #40685C;
}
@media (max-width: 766px) {
  .why__select .container .why__select_promo h3 {
    font-size: 20px;
  }
}
.why__select .container .why__select_promo p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E5E57;
}
@media (max-width: 766px) {
  .why__select .container .why__select_promo p {
    font-size: 14px;
  }
}
.why__select .container .why__select_promo hr {
  width: 140px;
  border: 1px solid #A5ABA3;
  margin-top: 10px;
  margin-bottom: 10px;
}

.our__services.services_page {
  padding-top: 40px;
  padding-bottom: 0px;
  position: relative;
}
.our__services.services_page .i-service_promo_bg {
  position: absolute;
  left: 48vw;
  top: -130px;
  width: 374px;
  height: auto;
  z-index: 1;
}
@media (max-width: 766px) {
  .our__services.services_page .i-service_promo_bg {
    display: none;
  }
}
.our__services.services_page .container .services__promo {
  margin-bottom: 120px;
}
.our__services.services_page .container .services__promo > div > hr {
  position: relative;
  top: 44px;
  left: -33px;
  width: 115px;
  height: 2px;
  background: #E2E4E0;
  border: #E2E4E0;
}
@media (max-width: 1365px) {
  .our__services.services_page .container .services__promo > div > hr {
    top: 98px;
  }
}
@media (max-width: 766px) {
  .our__services.services_page .container .services__promo > div > hr {
    top: -5px;
    left: 220px;
    width: 100px;
  }
}

.testimonials.services_page .testimonials__promo {
  padding-top: 40px;
}

.our__services {
  background-color: #FFFFFF;
  padding-top: 120px;
  padding-bottom: 140px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .our__services {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1039px) {
  .our__services {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.our__services .service__items .container {
  display: block;
  width: 1266px;
  padding-left: 33px;
  padding-right: 33px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .our__services .service__items .container {
    width: 991px;
  }
}
@media (max-width: 1039px) {
  .our__services .service__items .container {
    width: 700px;
    padding-left: 33px;
    padding-right: 33px;
  }
}
@media (max-width: 766px) {
  .our__services .service__items .container {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }
}
.our__services .container .services__promo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media (max-width: 766px) {
  .our__services .container .services__promo {
    flex-wrap: wrap;
  }
}
.our__services .container .services__promo h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 766px) {
  .our__services .container .services__promo h2 {
    width: 100%;
    font-size: 32px;
  }
}
.our__services .container .services__promo > div {
  width: 33.3%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 766px) {
  .our__services .container .services__promo > div {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.our__services .container .services__promo > div:first-of-type {
  padding-right: 0;
}
@media (max-width: 766px) {
  .our__services .container .services__promo > div:first-of-type {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.our__services .container .services__promo .our__services_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .our__services .container .services__promo .our__services_text {
    width: 50%;
  }
}
@media (max-width: 1039px) {
  .our__services .container .services__promo .our__services_text {
    width: 66.66%;
  }
}
@media (max-width: 766px) {
  .our__services .container .services__promo .our__services_text {
    width: 100%;
    margin-top: 20px;
  }
}
.our__services .container .service__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  padding-top: 42px;
  padding-bottom: 42px;
  border-top: 2px solid #C5CBC3;
  background-size: 0;
  background-repeat: no-repeat;
}
.our__services .container .service__item:hover {
  background-size: contain;
  background-position: 150px center;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .our__services .container .service__item {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1039px) {
  .our__services .container .service__item {
    padding-top: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
}
.our__services .container .service__item:nth-last-of-type(1) {
  border-bottom: 2px solid #C5CBC3;
}
.our__services .container .service__item h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  color: #40685C;
  margin-bottom: 10px;
  position: relative;
  top: 20px;
}
@media (max-width: 766px) {
  .our__services .container .service__item h3 {
    font-size: 26px;
  }
}
.our__services .container .service__item .service__item_count {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #959A94;
  padding-top: 20px;
}
.our__services .container .service__item > div {
  width: 50%;
}
@media (max-width: 1039px) {
  .our__services .container .service__item > div {
    width: 100%;
  }
}
.our__services .container .service__item .service__item_link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .our__services .container .service__item .service__item_link {
    justify-content: space-between;
  }
}
@media (max-width: 1039px) {
  .our__services .container .service__item .service__item_link {
    justify-content: space-between;
  }
}
@media (max-width: 766px) {
  .our__services .container .service__item .service__item_link {
    flex-wrap: wrap;
  }
}
.our__services .container .service__item .service__item_link .service__item_seemore {
  width: 226px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .our__services .container .service__item .service__item_link .service__item_seemore {
    width: 140px;
  }
}
@media (max-width: 766px) {
  .our__services .container .service__item .service__item_link .service__item_seemore {
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
}
.our__services .container .service__item .service__item_link .service__item_seemore a {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #A5BDB0;
  text-decoration: none;
  transition: all 0.5s;
}
.our__services .container .service__item .service__item_link .service__item_seemore a:hover {
  color: #40685C;
  transition: all 0.5s;
}
.our__services .container .service__item .service__item_link .service__item_seemore a::after {
  background-image: url(../images/bi_arrow-right.svg);
  width: 16px;
  height: 14px;
  content: "";
  position: relative;
  display: inline-block;
  right: -5px;
  top: 1px;
}
.our__services .container .service__item .service__item_link .service__item_consult {
  padding-right: 33px;
}
@media (max-width: 1365px) {
  .our__services .container .service__item .service__item_link .service__item_consult {
    padding-right: 0;
  }
}
@media (max-width: 766px) {
  .our__services .container .service__item .service__item_link .service__item_consult {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.our__services .container .service__item .service__item_link .service__item_consult button {
  border: 1px solid #40685C;
  border-radius: 50px;
  background-color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #40685C;
  width: 338px;
  height: 56px;
  text-decoration: none;
  transition: all 0.5s;
}
@media (max-width: 1365px) {
  .our__services .container .service__item .service__item_link .service__item_consult button {
    font-size: 13px;
    width: 285px;
  }
}
@media (max-width: 766px) {
  .our__services .container .service__item .service__item_link .service__item_consult button {
    margin: 0 auto;
  }
}
.our__services .container .service__item .service__item_link .service__item_consult button:hover {
  background-color: #40685C;
  color: #fff;
  transition: all 0.5s;
}

.buy__cosmetic .r-line {
  position: absolute;
  width: 260px;
  bottom: 5px;
  right: 0;
  height: 2px;
  background-color: #40685C;
}
@media (max-width: 1365px) {
  .buy__cosmetic .r-line {
    width: 215px;
  }
}
@media (max-width: 1039px) {
  .buy__cosmetic .r-line {
    width: 104px;
  }
}
@media (max-width: 1039px) {
  .buy__cosmetic .container {
    flex-wrap: wrap;
  }
}
.buy__cosmetic .container > div {
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 1039px) {
  .buy__cosmetic .container > div {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 766px) {
  .buy__cosmetic .container > div {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.buy__cosmetic .container > div h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  position: relative;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .buy__cosmetic .container > div h2 {
    font-size: 40px;
  }
}
@media (max-width: 1039px) {
  .buy__cosmetic .container > div h2 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .buy__cosmetic .container > div h2 {
    font-size: 32px;
  }
}
.buy__cosmetic .container > div .buy__cosmetic_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #959A94;
  margin-top: 20px;
  margin-bottom: 50px;
}
.buy__cosmetic .container > div .buy__cosmetic_link a {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #A5BDB0;
  text-decoration: none;
}
.buy__cosmetic .container > div .buy__cosmetic_link a::after {
  background-image: url(../images/bi_arrow-right.svg);
  width: 16px;
  height: 14px;
  content: "";
  position: relative;
  display: inline-block;
  right: -5px;
  top: 1px;
}
.buy__cosmetic .container > div .buy__cosmetic_img {
  width: 100%;
  height: auto;
}

.consult.gal_bottom {
  background-image: url("../images/gal_bot_contact.jpg");
}

.consult {
  background-color: #e2e4e1;
  background-image: url("../images/order__form_bg.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 22px;
  padding-bottom: 12px;
}
@media (min-width: 1600px) {
  .consult {
    background-size: 1600px;
  }
}
@media (max-width: 766px) {
  .consult {
    background-image: none;
  }
}
.consult__fieldset {
  border: 2px solid #fff;
  rotate: 180deg;
}
.consult__fieldset .container {
  rotate: 180deg;
  min-height: 480px;
}
@media (max-width: 1039px) {
  .consult__fieldset .container {
    flex-wrap: wrap;
  }
}
.consult__fieldset .container > div {
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .consult__fieldset .container > div {
    width: 100%;
  }
}
.consult__fieldset .container > div h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  margin-bottom: 20px;
  margin-top: 70px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .consult__fieldset .container > div h2 {
    font-size: 40px;
  }
}
@media (max-width: 1039px) {
  .consult__fieldset .container > div h2 {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .consult__fieldset .container > div h2 {
    font-size: 30px;
    text-align: center;
  }
}
.consult__fieldset .container > div .consult__promo {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E5E57;
}
@media (max-width: 1039px) {
  .consult__fieldset .container > div .consult__promo {
    padding-top: 40px;
  }
}
@media (max-width: 766px) {
  .consult__fieldset .container > div .consult__promo {
    font-size: 14px;
  }
}
.consult__fieldset .container .consult__form {
  margin-top: 70px;
}
@media (max-width: 1039px) {
  .consult__fieldset .container .consult__form {
    margin-top: 30px;
  }
}
.consult__fieldset .container .consult__form input {
  background-color: transparent;
  border: none;
  font-weight: 500;
  outline: none;
  padding-top: 40px;
  padding-bottom: 18px;
  display: block;
  width: 100%;
}
.consult__fieldset .container .consult__form input::placeholder {
  font-weight: 600;
  font-size: 13px;
  line-height: 12px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #40685C;
}
.consult__fieldset .container .consult__form [type=submit] {
  width: 500px;
  border-radius: 50px;
  background-color: #40685C;
  border: 1px solid #40685C;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-top: 17px;
  padding-bottom: 17px;
  margin-top: 20px;
  transition: all 0.5s;
  cursor: pointer;
}
.consult__fieldset .container .consult__form [type=submit]:hover {
  background-color: #fff;
  color: #40685C;
  border: 1px solid #40685C;
  transition: all 0.5s;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .consult__fieldset .container .consult__form [type=submit] {
    width: 440px;
  }
}
@media (max-width: 766px) {
  .consult__fieldset .container .consult__form [type=submit] {
    width: 70%;
    margin: 0 auto;
    margin-top: 20px;
  }
}
.consult__fieldset .container .consult__form div {
  border-bottom: 1px solid #40685C;
  width: 500px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .consult__fieldset .container .consult__form div {
    width: 440px;
  }
}
@media (max-width: 766px) {
  .consult__fieldset .container .consult__form div {
    width: 100%;
  }
}
.consult__fieldset .container .consult__form div:last-of-type {
  border: none;
}
.consult__fieldset .container .consult__form .consult__form_promo {
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  color: #40685C;
  margin-top: 10px;
}
@media (max-width: 766px) {
  .consult__fieldset .container .consult__form .consult__form_promo {
    margin-bottom: 15px;
  }
}
@media (max-width: 766px) {
  .consult__fieldset .container .consult__form .consult__form_btn {
    text-align: center;
  }
}
.consult__fieldset .legend {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  rotate: 180deg;
}
.consult__fieldset .legend .legend__inner {
  display: block;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}
.consult__fieldset .legend .legend__inner .legend__left {
  display: inline-block;
  vertical-align: middle;
  border-bottom: 2px solid #fff;
  width: 1400px;
  margin: 0 0 0 -1400px;
}
.consult__fieldset .legend .legend__inner .legend__content {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  line-height: 1.4;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.155em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.consult__fieldset .legend .legend__inner .legend__right {
  margin: 0 -1400px 0 0;
  display: inline-block;
  vertical-align: middle;
  border-bottom: 2px solid #fff;
  width: 1400px;
}

.brands {
  padding-bottom: 140px;
}
@media (max-width: 766px) {
  .brands {
    padding-bottom: 70px;
  }
}
@media (max-width: 1039px) {
  .brands .container {
    flex-wrap: wrap;
  }
}
.brands .container > div {
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 766px) {
  .brands .container > div {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.brands .container .brands__title {
  width: 66.66%;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .brands .container .brands__title {
    width: 50%;
  }
}
@media (max-width: 1039px) {
  .brands .container .brands__title {
    width: 100%;
  }
}
.brands .container .brands__title h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .brands .container .brands__title h2 {
    font-size: 40px;
  }
}
@media (max-width: 1039px) {
  .brands .container .brands__title h2 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .brands .container .brands__title h2 {
    font-size: 32px;
  }
}
.brands .container .brands__text {
  width: 33.33%;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #4E4B49;
  padding-bottom: 100px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .brands .container .brands__text {
    width: 50%;
  }
}
@media (max-width: 1039px) {
  .brands .container .brands__text {
    width: 100%;
    padding-top: 40px;
  }
}
@media (max-width: 766px) {
  .brands .container .brands__text {
    padding-bottom: 40px;
  }
}
.brands .container.slider {
  display: block;
}
@media (max-width: 766px) {
  .brands .container.slider {
    padding-left: 33px;
    padding-right: 33px;
  }
}
.brands .slick-slide {
  margin-left: 20px;
  margin-right: 20px;
}
.brands .slick-slide img {
  width: 100%;
  height: auto;
}
.brands__slider .slick-prev {
  background-image: url("../images/brand__arrow_l.svg");
  width: 40px;
  height: 40px;
  left: 0px;
}
@media (max-width: 766px) {
  .brands__slider .slick-prev {
    left: -16px;
  }
}
.brands__slider .slick-prev::before, .brands__slider .slick-next::before {
  content: "";
  opacity: 0;
}
.brands__slider .slick-prev:hover, .brands__slider .slick-prev:focus {
  background-image: url("../images/brand__arrow_l.svg");
  width: 40px;
  height: 40px;
  left: 0px;
}
@media (max-width: 766px) {
  .brands__slider .slick-prev:hover, .brands__slider .slick-prev:focus {
    left: -16px;
  }
}
.brands__slider .slick-next, .brands__slider .slick-next:hover, .brands__slider .slick-next:focus {
  background-image: url("../images/brand__arrow_r.svg");
  width: 40px;
  height: 40px;
  right: 0px;
}
@media (max-width: 766px) {
  .brands__slider .slick-next, .brands__slider .slick-next:hover, .brands__slider .slick-next:focus {
    right: -16px;
  }
}

/* ========================  Giftcard ========================*/
.giftcard {
  background-color: #E2E4E0;
  background-image: url("../images/giftcard__bg.jpg");
  background-size: 55% 646px;
  background-repeat: no-repeat;
  background-position: right top;
  height: 646px;
  width: 100%;
  position: relative;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .giftcard {
    height: 500px;
    background-size: 55% 500px;
  }
}
@media (max-width: 1039px) {
  .giftcard {
    height: 360px;
    background-size: 55% 360px;
  }
}
@media (max-width: 766px) {
  .giftcard {
    height: unset;
    background-position: bottom;
    background-size: 100% 380px;
  }
}
.giftcard .giftcard__promo {
  padding-left: 33px;
  padding-right: 33px;
  position: relative;
}
@media (max-width: 1039px) {
  .giftcard .giftcard__promo {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 766px) {
  .giftcard .giftcard__promo {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }
}
.giftcard .giftcard__promo h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 160%;
  color: #40685C;
  padding-top: 116px;
  padding-bottom: 30px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .giftcard .giftcard__promo h2 {
    padding-top: 50px;
    font-size: 32px;
  }
}
@media (max-width: 1039px) {
  .giftcard .giftcard__promo h2 {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 26px;
  }
}
.giftcard .giftcard__promo h2 span {
  font-weight: 500;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  display: block;
  text-transform: uppercase;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .giftcard .giftcard__promo h2 span {
    font-size: 40px;
  }
}
@media (max-width: 1039px) {
  .giftcard .giftcard__promo h2 span {
    font-size: 35px;
  }
}
.giftcard .giftcard__promo .giftcard__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E5E57;
}
@media (max-width: 1039px) {
  .giftcard .giftcard__promo .giftcard__text {
    font-size: 14px;
  }
}
.giftcard .giftcard__promo .giftcard__img {
  display: block;
  position: absolute;
  right: -567px;
  top: 101px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .giftcard .giftcard__promo .giftcard__img {
    right: -483px;
    top: 75px;
  }
}
@media (max-width: 1039px) {
  .giftcard .giftcard__promo .giftcard__img {
    right: -419px;
    top: 30px;
  }
}
@media (max-width: 766px) {
  .giftcard .giftcard__promo .giftcard__img {
    display: block;
    padding-right: 0px;
    padding-left: 0;
    padding-bottom: 40px;
    padding-top: 20px;
    position: static;
    display: flex;
    justify-content: center;
  }
}
.giftcard .giftcard__promo .giftcard__img img {
  width: 391px;
  height: 444px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .giftcard .giftcard__promo .giftcard__img img {
    width: 308px;
    height: 350px;
  }
}
@media (max-width: 1039px) {
  .giftcard .giftcard__promo .giftcard__img img {
    width: 264px;
    height: 300px;
  }
}
.giftcard .giftcard__promo .giftcard__button {
  margin-top: 50px;
}
@media (max-width: 1039px) {
  .giftcard .giftcard__promo .giftcard__button {
    margin-top: 30px;
  }
}
@media (max-width: 766px) {
  .giftcard .giftcard__promo .giftcard__button {
    margin-bottom: 55px;
  }
}
.giftcard .giftcard__promo .giftcard__button button {
  width: 220px;
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #888888;
  border-radius: 50px;
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #40685C;
  transition: all 0.5s;
  cursor: pointer;
}
.giftcard .giftcard__promo .giftcard__button button:hover {
  background: #40685C;
  border: 1px solid #40685C;
  color: #fff;
  transition: all 0.5s;
}
@media (max-width: 766px) {
  .giftcard .giftcard__promo .giftcard__button button {
    width: 176px;
    height: 44px;
    font-size: 14px;
    line-height: 44px;
  }
}
.giftcard .giftcard__arrow {
  border-top: 2px solid #40685C;
  width: 200px;
  position: absolute;
  top: 272px;
  left: calc(50vw - 1266px/2 + 466px);
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .giftcard .giftcard__arrow {
    top: 174px;
    left: calc(50vw - 991px/2 + 373px);
  }
}
@media (max-width: 1039px) {
  .giftcard .giftcard__arrow {
    left: calc(50vw - 700px/2 + 259px);
    top: 125px;
  }
}
@media (max-width: 766px) {
  .giftcard .giftcard__arrow {
    display: none;
  }
}

/* =================== Testimonials ===========================*/
.testimonials {
  padding-bottom: 70px;
}
.testimonials .slick-initialized .slick-slide {
  display: block;
  margin: 0 auto;
}
.testimonials .container {
  display: block;
  padding-bottom: 70px;
}
@media (max-width: 1039px) {
  .testimonials .container {
    padding-bottom: 20px;
  }
}
.testimonials .testimonials__promo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 33px;
  padding-right: 33px;
  padding-top: 120px;
  padding-bottom: 10px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .testimonials .testimonials__promo {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
@media (max-width: 1039px) {
  .testimonials .testimonials__promo {
    padding-top: 60px;
    padding-bottom: 0px;
  }
}
@media (max-width: 766px) {
  .testimonials .testimonials__promo {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.testimonials .testimonials__promo .testimonials__title h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .testimonials .testimonials__promo .testimonials__title h2 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .testimonials .testimonials__promo .testimonials__title h2 {
    font-size: 32px;
  }
}
.testimonials .testimonials__promo .testimonials__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: right;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #A5BDB0;
}
.testimonials .testimonials__promo .testimonials__link::after {
  background-image: url(../images/bi_arrow-right.svg);
  width: 16px;
  height: 14px;
  content: "";
  position: relative;
  display: inline-block;
  right: -5px;
  top: 1px;
}
.testimonials .testimonials__slider {
  padding-bottom: 80px;
}
.testimonials .testimonials__slider a {
  background: #F9FAF9;
  display: block;
  margin: 0 30px;
  height: 380px;
}
@media (max-width: 766px) {
  .testimonials .testimonials__slider a {
    margin: 0 16px;
  }
}
.testimonials .testimonials__slider a > div {
  height: 321px;
  overflow-y: auto;
}
.testimonials .testimonials__slider a > div img {
  width: 100%;
  height: auto;
  padding: 30px;
}
.testimonials .testimonials__slider a .slider__desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 15px;
}
.testimonials .testimonials__slider a .slider__desc .slider__desc_data {
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #959A94;
}
.testimonials .testimonials__slider a .slider__desc .slider__desc_mess {
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #4E5E57;
}
.testimonials .testimonials__slider .slick-prev, .testimonials .testimonials__slider .slick-prev:hover, .testimonials .testimonials__slider .slick-prev:focus {
  background-image: url("../images/brand__arrow_l.svg");
  width: 40px;
  height: 40px;
  left: calc(100% - 140px);
  top: 95%;
}
.testimonials .testimonials__slider .slick-prev::before, .testimonials .testimonials__slider .slick-next::before {
  content: "";
  opacity: 0;
}
.testimonials .testimonials__slider .slick-next, .testimonials .testimonials__slider .slick-next:hover, .testimonials .testimonials__slider .slick-next:focus {
  background-image: url("../images/brand__arrow_r.svg");
  width: 40px;
  height: 40px;
  right: 30px;
  top: 95%;
}

/*  About us    page   */
/* ================= breadcrumbs  =========================  */
#breadcrumbs {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #959A94;
}
#breadcrumbs .container {
  padding-top: 24px;
  padding-bottom: 5px;
  border-top: 1px solid #E2E4E0;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 766px) {
  #breadcrumbs .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.about__me {
  padding-top: 60px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1039px) {
  .about__me {
    padding-bottom: 80px;
  }
}
.about__me .container {
  position: relative;
}
@media (max-width: 766px) {
  .about__me .container {
    flex-wrap: wrap;
  }
}
.about__me .container .about__me_img {
  width: 33.33%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .about__me .container .about__me_img {
    width: 50%;
  }
}
@media (max-width: 766px) {
  .about__me .container .about__me_img {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.about__me .container .about__me_img img {
  width: 100%;
}
.about__me .container .about__me_promo {
  width: 66.66%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .about__me .container .about__me_promo {
    width: 50%;
  }
}
@media (max-width: 766px) {
  .about__me .container .about__me_promo {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.about__me .container .about__me_promo h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #100701;
  width: 600px;
  padding-top: 20px;
  padding-bottom: 24px;
}
@media (max-width: 1039px) {
  .about__me .container .about__me_promo h3 {
    width: 100%;
    font-size: 18px;
  }
}
@media (max-width: 766px) {
  .about__me .container .about__me_promo h3 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.about__me .container .about__me_promo h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  text-transform: uppercase;
  color: #40685C;
  width: 600px;
}
@media (max-width: 1039px) {
  .about__me .container .about__me_promo h2 {
    width: 100%;
    font-size: 26px;
  }
}
.about__me .container .about__me_promo .about__me_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #100701;
  width: 600px;
  padding-top: 24px;
  padding-bottom: 40px;
}
@media (max-width: 1039px) {
  .about__me .container .about__me_promo .about__me_text {
    width: 100%;
    font-size: 14px;
  }
}
.about__me .container .about__me_promo .about__me_line {
  border-top: 2px solid #C5CBC3;
  width: 240px;
}
.about__me .container .about__me_promo .about__me_byline {
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #959A94;
  padding-top: 10px;
}
.about__me .about__me_logo {
  position: absolute;
  top: 0;
  right: -20px;
}
@media (max-width: 766px) {
  .about__me .about__me_logo {
    display: none;
  }
}

/*  ==============  three elements   =================== */
.three-elements {
  min-height: 480px;
  background-color: #e2e4e1;
  background-image: url("../images/about__me_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1600px) {
  .three-elements {
    background-size: 1600px;
    background-position: center center;
  }
}
@media (max-width: 1039px) {
  .three-elements {
    min-height: 350px;
    background-position: right;
  }
}
@media (max-width: 766px) {
  .three-elements {
    background-position: left;
  }
}
.three-elements .container {
  display: block;
}
.three-elements .container .three-elements__text {
  width: 520px;
  padding-top: 80px;
  padding-bottom: 80px;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #4E5E57;
}
@media (max-width: 1039px) {
  .three-elements .container .three-elements__text {
    font-size: 22px;
  }
}
@media (max-width: 766px) {
  .three-elements .container .three-elements__text {
    width: 100%;
    padding-left: 33px;
    padding-right: 33px;
  }
}
.three-elements .container .three-elements__container {
  display: flex;
  width: 650px;
  justify-content: space-between;
}
@media (max-width: 766px) {
  .three-elements .container .three-elements__container {
    width: 100%;
    padding-left: 33px;
    padding-right: 33px;
  }
}
.three-elements .container .three-elements__container > div {
  width: 175px;
}
.three-elements .container .three-elements__container > div h3 {
  font-weight: 400;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .three-elements .container .three-elements__container > div h3 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .three-elements .container .three-elements__container > div h3 {
    font-size: 24px;
  }
}
.three-elements .container .three-elements__container > div p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #959A94;
}
@media (max-width: 766px) {
  .three-elements .container .three-elements__container > div p {
    font-size: 14px;
  }
}

/* ===============  Our mission ================*/
.our-mission {
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 766px) {
  .our-mission {
    padding-bottom: 80px;
  }
}
.our-mission .container {
  position: relative;
}
@media (max-width: 766px) {
  .our-mission .container {
    flex-wrap: wrap;
  }
}
.our-mission .container .our-mission__img {
  width: 33.33%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .our-mission .container .our-mission__img {
    width: 50%;
  }
}
@media (max-width: 766px) {
  .our-mission .container .our-mission__img {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.our-mission .container .our-mission__promo {
  width: 66.66%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .our-mission .container .our-mission__promo {
    width: 50%;
  }
}
@media (max-width: 766px) {
  .our-mission .container .our-mission__promo {
    width: 100%;
    padding-top: 30px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.our-mission .container .our-mission__promo h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  padding-top: 60px;
  padding-bottom: 10px;
}
@media (max-width: 1039px) {
  .our-mission .container .our-mission__promo h2 {
    padding-top: 0;
    padding-bottom: 30px;
    font-size: 40px;
    z-index: 10;
  }
}
@media (max-width: 766px) {
  .our-mission .container .our-mission__promo h2 {
    font-size: 32px;
  }
}
.our-mission .container .our-mission__promo .v-line {
  width: 186px;
  border-right: 2px solid #C5CBC3;
  height: 60px;
  margin-bottom: 16px;
}
@media (max-width: 1039px) {
  .our-mission .container .our-mission__promo .v-line {
    width: 140px;
  }
}
@media (max-width: 766px) {
  .our-mission .container .our-mission__promo .v-line {
    width: 112px;
  }
}
.our-mission .container .our-mission__promo h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #40685C;
  width: 500px;
}
@media (max-width: 1039px) {
  .our-mission .container .our-mission__promo h3 {
    width: 100%;
    font-size: 18px;
  }
}
.our-mission .container .our-mission__promo .our-mission__text {
  padding-top: 40px;
  width: 600px;
}
@media (max-width: 1039px) {
  .our-mission .container .our-mission__promo .our-mission__text {
    width: 100%;
    padding-top: 20px;
  }
}
.our-mission .container .our-mission__promo .our-mission__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #100701;
  padding-top: 10px;
}
@media (max-width: 1039px) {
  .our-mission .container .our-mission__promo .our-mission__text p {
    font-size: 12px;
  }
}
.our-mission .our-mission__bg {
  position: absolute;
  top: -60px;
  right: -210px;
  opacity: 0.4;
  animation-name: spin;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media (max-width: 766px) {
  .our-mission .our-mission__bg {
    right: -280px;
  }
}
.way-to-body {
  padding-bottom: 140px;
}
@media (max-width: 766px) {
  .way-to-body {
    padding-bottom: 80px;
  }
}
.way-to-body .container.wtb {
  margin-bottom: 29px;
}
.way-to-body .container.wtb .title-right-line {
  align-items: flex-end;
}
@media (max-width: 1039px) {
  .way-to-body .container {
    flex-wrap: wrap;
  }
}
.way-to-body .container h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .way-to-body .container h2 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .way-to-body .container h2 {
    font-size: 30px;
    padding-left: 33px;
    padding-right: 33px;
  }
}
.way-to-body .container > div {
  width: 33.33%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .way-to-body .container > div {
    width: 100%;
  }
}
@media (max-width: 766px) {
  .way-to-body .container > div {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.way-to-body .container .title-right-line {
  width: 100%;
}
.way-to-body .container .title-right-line h2 {
  margin-right: 30px;
  margin-left: 30px;
  color: #40685C;
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  width: 624px;
}
@media (max-width: 1365px) {
  .way-to-body .container .title-right-line h2 {
    font-size: 40px;
  }
}
@media (max-width: 1039px) {
  .way-to-body .container .title-right-line h2 {
    font-size: 31px;
    margin-left: 0;
  }
}
@media (max-width: 766px) {
  .way-to-body .container .title-right-line h2 {
    margin-left: 0;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
.way-to-body .container .title-right-line .line {
  flex-grow: 1;
  height: 2px;
  background-color: #40685C;
}
.way-to-body .container .way-to-body__text {
  padding-top: 31px;
}
.way-to-body .container .way-to-body__text p {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #4E5E57;
  padding-bottom: 38px;
}
@media (max-width: 1039px) {
  .way-to-body .container .way-to-body__text p {
    font-size: 20px;
  }
}
@media (max-width: 766px) {
  .way-to-body .container .way-to-body__text p {
    font-size: 16px;
  }
}
.way-to-body .container .way-to-body__text ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #959A94;
  padding-bottom: 10px;
}
@media (max-width: 1039px) {
  .way-to-body .container .way-to-body__text ul li {
    font-size: 16px;
  }
}

.gallery {
  padding-top: 120px;
  padding-bottom: 80px;
}
@media (max-width: 766px) {
  .gallery {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.gallery .container {
  padding-left: 33px;
  padding-right: 33px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 766px) {
  .gallery .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.gallery .container .gallery__text {
  padding-bottom: 60px;
  width: 50%;
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E4B49;
}
@media (max-width: 1039px) {
  .gallery .container .gallery__text {
    font-size: 16px;
  }
}
@media (max-width: 766px) {
  .gallery .container .gallery__text {
    font-size: 14px;
    width: 100%;
  }
}
.gallery .container .gallery__consult {
  padding-bottom: 60px;
}
.gallery .container .gallery__consult button {
  border: 1px solid #40685C;
  border-radius: 50px;
  background-color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #40685C;
  width: 338px;
  height: 56px;
  text-decoration: none;
  transition: all 0.5s;
}
@media (max-width: 1365px) {
  .gallery .container .gallery__consult button {
    font-size: 13px;
    width: 285px;
  }
}
@media (max-width: 766px) {
  .gallery .container .gallery__consult button {
    margin: 0 auto;
  }
}
.gallery .container .gallery__consult button:hover {
  background-color: #40685C;
  color: #fff;
  transition: all 0.5s;
}
.gallery h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  margin-bottom: 40px;
}
@media (max-width: 1039px) {
  .gallery h2 {
    font-size: 40px;
  }
}
.gallery .gallery__slider {
  width: calc(50vw - 33px + 30px + 1266px / 2 );
  margin-left: calc(50vw - 630px);
}
@media (max-width: 1365px) {
  .gallery .gallery__slider {
    width: calc(50vw - 33px + 30px + 991px / 2 );
    margin-left: calc(50vw - 492px);
  }
}
@media (max-width: 1039px) {
  .gallery .gallery__slider {
    width: calc(50vw - 33px + 30px + 700px / 2 );
    margin-left: calc(50vw - 347px);
  }
}
@media (max-width: 766px) {
  .gallery .gallery__slider {
    width: 100%;
    margin-left: 0px;
  }
}
.gallery .gallery__slider .gallery__slider_img {
  padding-left: 30px;
  padding-right: 0px;
}
@media (max-width: 766px) {
  .gallery .gallery__slider .gallery__slider_img {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.gallery .gallery__slider .gallery__slider_text {
  padding-left: 33px;
  padding-top: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E4B49;
  padding-bottom: 20px;
}
.gallery .gallery__slider .slick-slide.slick-current.slick-active {
  width: calc(100vw/2.5) !important;
  transition: all 0.5s;
}
@media (max-width: 1039px) {
  .gallery .gallery__slider .slick-slide.slick-current.slick-active {
    width: calc(100vw/1.5) !important;
  }
}
@media (max-width: 766px) {
  .gallery .gallery__slider .slick-slide.slick-current.slick-active {
    width: 100vw !important;
  }
}
.gallery .gallery__slider .slick-slide:last-of-type {
  width: 0 !important;
}
.gallery .gallery__slider .slick-prev, .gallery .gallery__slider .slick-prev:hover, .gallery .gallery__slider .slick-prev:focus {
  background-image: url("../images/brand__arrow_l.svg");
  width: 40px;
  height: 40px;
  top: 95%;
  left: calc(50vw - 33px + 30px + 1266px / 2 - 200px);
  z-index: 1;
}
@media (max-width: 1365px) {
  .gallery .gallery__slider .slick-prev, .gallery .gallery__slider .slick-prev:hover, .gallery .gallery__slider .slick-prev:focus {
    left: calc(50vw - 33px + 30px + 991px / 2 - 200px);
  }
}
@media (max-width: 1039px) {
  .gallery .gallery__slider .slick-prev, .gallery .gallery__slider .slick-prev:hover, .gallery .gallery__slider .slick-prev:focus {
    left: unset;
    right: 80px;
    top: 105%;
  }
}
@media (max-width: 766px) {
  .gallery .gallery__slider .slick-prev, .gallery .gallery__slider .slick-prev:hover, .gallery .gallery__slider .slick-prev:focus {
    top: 105%;
  }
}
.gallery .gallery__slider .slick-prev::before, .gallery .gallery__slider .slick-next::before {
  content: "";
  opacity: 0;
}
.gallery .gallery__slider .slick-next, .gallery .gallery__slider .slick-next:hover, .gallery .gallery__slider .slick-next:focus {
  background-image: url("../images/brand__arrow_r.svg");
  width: 40px;
  height: 40px;
  top: 95%;
  left: calc(50vw - 33px + 30px + 1266px / 2 - 130px);
}
@media (max-width: 1365px) {
  .gallery .gallery__slider .slick-next, .gallery .gallery__slider .slick-next:hover, .gallery .gallery__slider .slick-next:focus {
    left: calc(50vw - 33px + 30px + 991px / 2 - 130px);
  }
}
@media (max-width: 1039px) {
  .gallery .gallery__slider .slick-next, .gallery .gallery__slider .slick-next:hover, .gallery .gallery__slider .slick-next:focus {
    left: unset;
    right: 10px;
    top: 105%;
  }
}
@media (max-width: 766px) {
  .gallery .gallery__slider .slick-next, .gallery .gallery__slider .slick-next:hover, .gallery .gallery__slider .slick-next:focus {
    right: 16px;
  }
}

.our-team {
  padding-bottom: 140px;
}
.our-team .container {
  display: block;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 766px) {
  .our-team .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.our-team .title-right-line h2 {
  margin-right: 30px;
  margin-left: 30px;
  color: #40685C;
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  width: 232px;
}
@media (max-width: 1365px) {
  .our-team .title-right-line h2 {
    font-size: 40px;
  }
}
@media (max-width: 1039px) {
  .our-team .title-right-line h2 {
    font-size: 31px;
  }
}
.our-team .title-right-line .line {
  flex-grow: 1;
  height: 2px;
  background-color: #40685C;
}
.our-team .our-team__promo {
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: -30px;
  margin-bottom: 80px;
}
@media (max-width: 1039px) {
  .our-team .our-team__promo {
    top: 20px;
  }
}
.our-team .our-team__promo p {
  width: calc(1266px / 3);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #4E4B49;
}
@media (max-width: 1365px) {
  .our-team .our-team__promo p {
    width: calc(991px / 3);
  }
}
@media (max-width: 1039px) {
  .our-team .our-team__promo p {
    width: calc(766px / 2);
    font-size: 14px;
  }
}
.our-team .our-team__slider {
  margin-left: calc((100vw - 1266px) / 2 );
}
@media (max-width: 1365px) {
  .our-team .our-team__slider {
    margin-left: calc((100vw - 991px) / 2 );
  }
}
@media (max-width: 1039px) {
  .our-team .our-team__slider {
    margin-left: calc((100vw - 766px) / 2 );
  }
}
@media (max-width: 766px) {
  .our-team .our-team__slider {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.our-team .our-team__slider .our-team__text {
  display: none;
}
@media (max-width: 766px) {
  .our-team .our-team__slider .our-team__text {
    display: block;
  }
}
.our-team .our-team__slider .our-team__slider_item.slick-slide {
  padding-left: 16px;
  padding-right: 16px;
}
.our-team .our-team__slider .our-team__slider_item.slick-slide.slick-current.slick-active {
  display: flex;
  flex-wrap: nowrap;
  width: 55vw !important;
  transition: all 0.5s;
}
@media (max-width: 1039px) {
  .our-team .our-team__slider .our-team__slider_item.slick-slide.slick-current.slick-active {
    width: 100vw !important;
  }
}
@media (max-width: 766px) {
  .our-team .our-team__slider .our-team__slider_item.slick-slide.slick-current.slick-active {
    display: block;
  }
}
.our-team .our-team__slider .our-team__slider_item.slick-slide.slick-current.slick-active .our-team__img {
  width: 50%;
}
@media (max-width: 766px) {
  .our-team .our-team__slider .our-team__slider_item.slick-slide.slick-current.slick-active .our-team__img {
    width: 100%;
  }
}
.our-team .our-team__slider .our-team__slider_item.slick-slide.slick-current.slick-active .our-team__text {
  display: block;
  transition: all 0.5s;
}
.our-team .our-team__slider .our-team__slider_item.slick-slide:last-of-type {
  width: 0 !important;
}
@media (max-width: 776px) {
  .our-team .our-team__slider .our-team__slider_item.slick-slide:last-of-type {
    display: none;
  }
}
.our-team .our-team__slider .our-team__slider_item.slick-slide:nth-last-of-type(2) {
  width: 0 !important;
}
@media (max-width: 776px) {
  .our-team .our-team__slider .our-team__slider_item.slick-slide:nth-last-of-type(2) {
    display: none;
  }
}
.our-team .our-team__slider .our-team__text {
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 776px) {
  .our-team .our-team__slider .our-team__text {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.our-team .our-team__slider .our-team__text h3 {
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  color: #40685C;
  color: #100701;
}
@media (max-width: 776px) {
  .our-team .our-team__slider .our-team__text h3 {
    font-size: 26px;
  }
}
.our-team .our-team__slider .our-team__text .our-team__position {
  padding-top: 12px;
  padding-bottom: 42px;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #959A94;
}
@media (max-width: 776px) {
  .our-team .our-team__slider .our-team__text .our-team__position {
    font-size: 16px;
  }
}
.our-team .our-team__slider .our-team__text hr {
  position: relative;
  top: -20px;
  height: 2px;
  background: #E2E4E0;
  border: none;
}
.our-team .our-team__slider .our-team__text .our-team__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #100701;
  padding-bottom: 50px;
}
@media (max-width: 776px) {
  .our-team .our-team__slider .our-team__text .our-team__desc {
    font-size: 12px;
  }
}
.our-team .our-team__slider .our-team__text .our-team__btn a {
  background: #FFFFFF;
  display: block;
  border: 1px solid #40685C;
  border-radius: 50px;
  height: 56px;
  width: 220px;
  font-weight: 500;
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #40685C;
  transition: all 0.5s;
}
.our-team .our-team__slider .our-team__text .our-team__btn a:hover {
  color: #fff;
  background-color: #40685C;
}
@media (max-width: 776px) {
  .our-team .our-team__slider .our-team__text .our-team__btn a {
    width: 180px;
    height: 44px;
    line-height: 44px;
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.our-team .our-team__slider .our-team__img {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 766px) {
  .our-team .our-team__slider .our-team__img {
    padding-left: 0;
    padding-right: 0;
  }
}
.our-team .our-team__slider .slick-prev, .our-team .our-team__slider .slick-prev:hover, .our-team .our-team__slider .slick-prev:focus {
  background-image: url("../images/brand__arrow_l.svg");
  width: 40px;
  height: 40px;
  top: 105%;
  left: calc(50vw - 33px + 30px + 1266px / 2 - 200px);
  z-index: 1;
}
@media (max-width: 1365px) {
  .our-team .our-team__slider .slick-prev, .our-team .our-team__slider .slick-prev:hover, .our-team .our-team__slider .slick-prev:focus {
    left: calc(50vw - 33px + 30px + 991px / 2 - 200px);
  }
}
@media (max-width: 1039px) {
  .our-team .our-team__slider .slick-prev, .our-team .our-team__slider .slick-prev:hover, .our-team .our-team__slider .slick-prev:focus {
    left: unset;
    right: 80px;
  }
}
@media (max-width: 766px) {
  .our-team .our-team__slider .slick-prev, .our-team .our-team__slider .slick-prev:hover, .our-team .our-team__slider .slick-prev:focus {
    top: 108%;
  }
}
.our-team .our-team__slider .slick-prev::before, .our-team .our-team__slider .slick-next::before {
  content: "";
  opacity: 0;
}
.our-team .our-team__slider .slick-next, .our-team .our-team__slider .slick-next:hover, .our-team .our-team__slider .slick-next:focus {
  background-image: url("../images/brand__arrow_r.svg");
  width: 40px;
  height: 40px;
  top: 105%;
  left: calc(50vw - 33px + 30px + 1266px / 2 - 130px);
}
@media (max-width: 1365px) {
  .our-team .our-team__slider .slick-next, .our-team .our-team__slider .slick-next:hover, .our-team .our-team__slider .slick-next:focus {
    left: calc(50vw - 33px + 30px + 991px / 2 - 130px);
  }
}
@media (max-width: 1039px) {
  .our-team .our-team__slider .slick-next, .our-team .our-team__slider .slick-next:hover, .our-team .our-team__slider .slick-next:focus {
    left: unset;
    right: 10px;
    top: 105%;
  }
}
@media (max-width: 766px) {
  .our-team .our-team__slider .slick-next, .our-team .our-team__slider .slick-next:hover, .our-team .our-team__slider .slick-next:focus {
    right: 15px;
    top: 108%;
  }
}

/* *************************** Blog Page **************************************** */
.blog2 {
  padding-top: 20px;
  padding-bottom: 120px;
  position: relative;
}
.blog2 .blog__bg {
  position: absolute;
  right: 0;
  top: 28px;
}
@media (max-width: 766px) {
  .blog2 .blog__bg {
    top: 77px;
  }
}
.blog2 .container {
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 766px) {
  .blog2 .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.blog2 .container h1 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .blog2 .container h1 {
    font-size: 40px;
  }
}
.blog2 .container.articles {
  padding-left: 0;
  padding-right: 0;
  flex-wrap: wrap;
}
.blog2 .container.articles article {
  padding-left: 33px;
  padding-right: 33px;
  margin-top: 62px;
  width: 50%;
  box-sizing: border-box;
}
@media (max-width: 766px) {
  .blog2 .container.articles article {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.blog2 .container.articles article .article__img {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
}
.blog2 .container.articles article .article__img a {
  display: block;
}
.blog2 .container.articles article .article__img:hover .article__img_hover {
  display: block;
  opacity: 0.5;
  transition: all 0.5s ease;
}
.blog2 .container.articles article .article__img .seemore {
  opacity: 0;
  position: absolute;
  top: 49%;
  left: 41%;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 1039px) {
  .blog2 .container.articles article .article__img .seemore {
    left: 30%;
  }
}
@media (max-width: 766px) {
  .blog2 .container.articles article .article__img .seemore {
    left: 34%;
  }
}
.blog2 .container.articles article .article__img .seemore::after {
  background-image: url(../images/bl_arrow-left.svg);
  width: 16px;
  height: 14px;
  content: "";
  position: relative;
  display: inline-block;
  right: -5px;
  top: 1px;
}
.blog2 .container.articles article .article__img:hover .seemore {
  opacity: 1;
}
.blog2 .container.articles article .article__img .article__img_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #848f89;
  opacity: 0;
  text-align: center;
  display: block;
  transition: all 0.5s ease;
}
.blog2 .container.articles article .article__img .article__img_hover a {
  position: relative;
  top: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog2 .container.articles article .article__info {
  padding-top: 19px;
  padding-bottom: 19px;
}
.blog2 .container.articles article .article__info .article__info_category {
  display: inline-block;
}
.blog2 .container.articles article .article__info .article__info_data {
  display: inline-block;
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #959A94;
}
@media (max-width: 766px) {
  .blog2 .container.articles article .article__info {
    font-size: 14px;
  }
}
.blog2 .container.articles article .article__link a {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #100701;
}
@media (max-width: 1039px) {
  .blog2 .container.articles article .article__link a {
    font-size: 20px;
  }
}
@media (max-width: 766px) {
  .blog2 .container.articles article .article__link a {
    font-size: 18px;
  }
}

/* ******************************** Post Page *************************************/
.navigation {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.navigation > div > a {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #959A94;
}
.navigation > div > a:hover {
  color: #40685C;
}
.navigation .alignleft a {
  background-image: url("../images/left_arr.svg");
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: left;
  padding-left: 20px;
  display: block;
}
.navigation .alignright a {
  background-image: url("../images/arr_right.svg");
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right;
  padding-right: 20px;
  display: block;
}

.blog-post {
  padding-top: 40px;
  padding-bottom: 80px;
}
.blog-post article .post-container {
  display: block;
  width: 760px;
  margin: 0 auto;
}
@media (max-width: 1039px) {
  .blog-post article .post-container {
    width: 700px;
  }
}
@media (max-width: 766px) {
  .blog-post article .post-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.blog-post article .post-container h1 {
  text-align: center;
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  margin-bottom: 37px;
}
@media (max-width: 1039px) {
  .blog-post article .post-container h1 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .blog-post article .post-container h1 {
    font-size: 32px;
  }
}
.blog-post article .post-container .article__info .article__info_data {
  margin-bottom: 37px;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #959A94;
}
.blog-post article .post-container .container-content .article__autor {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #4E5E57;
  padding-top: 100px;
  padding-bottom: 4px;
}
.blog-post article .post-container .container-content .article__prof {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #959A94;
  padding-bottom: 100px;
}
.blog-post article .post-container .container-content .article__content {
  padding-top: 60px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #100701;
}
.blog-post article .post-container .container-content .article__content h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  color: #40685C;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 1039px) {
  .blog-post article .post-container .container-content .article__content h2 {
    font-size: 32px;
  }
}
@media (max-width: 766px) {
  .blog-post article .post-container .container-content .article__content h2 {
    font-size: 28px;
  }
}
.blog-post article .post-container .container-content .article__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #100701;
  padding-bottom: 10px;
}
@media (max-width: 1039px) {
  .blog-post article .post-container .container-content .article__content p {
    font-size: 16px;
  }
}
@media (max-width: 766px) {
  .blog-post article .post-container .container-content .article__content p {
    font-size: 16px;
  }
}
.blog-post article .post-container .container-content .article__content ul {
  margin-top: 20px;
  list-style: inside disc;
}
.blog-post article .post-container .container-content .article__content ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #100701;
  padding-bottom: 10px;
}
@media (max-width: 1039px) {
  .blog-post article .post-container .container-content .article__content ul li {
    font-size: 16px;
  }
}
@media (max-width: 766px) {
  .blog-post article .post-container .container-content .article__content ul li {
    font-size: 16px;
  }
}
.blog-post article .post-container .container-content .article__content a {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #100701;
}

.consult.post-consult {
  background-image: url("../images/contact__article_bg.jpg");
}

/* ********************************** Contacts Page ****************************** */
.breadcrumbs-contacts {
  position: relative;
}
.breadcrumbs-contacts .container {
  position: absolute;
  top: 30px;
  left: calc(50vw - 1266px / 2);
  color: #FFFFFF;
  border: none !important;
}
@media (max-width: 1365px) {
  .breadcrumbs-contacts .container {
    left: calc(50vw - 991px / 2);
  }
}
@media (max-width: 1039px) {
  .breadcrumbs-contacts .container {
    left: calc(50vw - 700px / 2);
  }
}
@media (max-width: 766px) {
  .breadcrumbs-contacts .container {
    left: 0px;
  }
}

.contact-consult {
  background-image: url("../images/contact__consult.jpg");
}
@media (max-width: 766px) {
  .contact-consult {
    background-image: none;
  }
}

.contacts .contacts__header {
  background-image: url("../images/contacts__header.jpg");
  background-repeat: no-repeat;
  height: 360px;
  background-size: cover;
  background-position: right;
}
@media (max-width: 766px) {
  .contacts .contacts__header {
    background-position: left;
  }
}
.contacts .contacts__header .container {
  padding-left: 33px;
  padding-right: 33px;
  padding-top: 110px;
  align-items: flex-end;
  justify-content: flex-start;
}
.contacts .contacts__header .container h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #FFFFFF;
  width: 450px;
}
@media (max-width: 1039px) {
  .contacts .contacts__header .container h2 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .contacts .contacts__header .container h2 {
    font-size: 32px;
  }
}
.contacts .contacts__header .container h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  text-align: center;
  letter-spacing: 0.155em;
  text-transform: uppercase;
  color: #FFFFFF;
  width: 250px;
}
@media (max-width: 766px) {
  .contacts .contacts__header .container h3 {
    margin-top: 40px;
  }
}
.contacts .contacts__header .container div {
  border-top: 2px solid #FFFFFF;
  width: 200px;
  position: relative;
  top: -14px;
}
@media (max-width: 1039px) {
  .contacts .contacts__header .container div {
    display: none;
  }
}
.contacts .container {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 1039px) {
  .contacts .container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.contacts .container > div {
  width: 33.33%;
  border-top: 2px solid #C5CBC3;
  margin-left: 33px;
  margin-right: 33px;
}
@media (max-width: 1039px) {
  .contacts .container > div {
    width: 40%;
  }
}
@media (max-width: 766px) {
  .contacts .container > div {
    margin-top: 20px;
    width: 100%;
    margin-left: 16px;
    margin-right: 16px;
  }
}
.contacts .container > div h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 15px;
  text-align: left;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #959A94;
  margin-top: 30px;
  margin-bottom: 30px;
}
.contacts .container > div a {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #40685C;
}
.contacts .container > div a img {
  width: 40px;
  height: 40px;
}
@media (max-width: 1039px) {
  .contacts .container .contacts__web {
    margin-top: 40px;
  }
}
.contacts .container .contacts__web > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.contacts .container .contacts__web > div a {
  display: inline-flex;
}
.contacts .container .contacts__web .contacts__messenger > div, .contacts .container .contacts__web .contacts__social > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.contacts .contacts__map {
  position: relative;
}
.contacts .contacts__map iframe {
  height: 500px;
}
.contacts .contacts__map .contacts__address {
  width: 352px;
  height: 362px;
  position: absolute;
  left: 83px;
  top: 68px;
  background-color: #A8AEA4;
  text-align: center;
}
@media (max-width: 766px) {
  .contacts .contacts__map .contacts__address {
    position: static;
    width: 100%;
    padding-top: 10px;
  }
}
.contacts .contacts__map .contacts__address img {
  margin: 0 auto;
  width: 56px;
  height: 56px;
  margin-top: 30px;
  margin-bottom: 10px;
}
.contacts .contacts__map .contacts__address h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-top: 20px;
}
.contacts .contacts__map .contacts__address .contacts__address_hr {
  border-top: 1px solid #fff;
  width: 200px;
  margin: 0 auto;
}
.contacts .contacts__map .contacts__address p {
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  color: #FFFFFF;
  padding-top: 16px;
  padding-bottom: 20px;
}

/* ************************************ FAQ Page  ****************************************** */
.faq__intro.service_intro {
  padding-top: 100px;
  padding-bottom: 30px;
}

.faq.service_intro {
  padding-bottom: 20px;
}

.faq__intro {
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
  /* створення анімації обертання */
}
.faq__intro .container {
  flex-wrap: wrap;
}
.faq__intro .container .faq__intro_text {
  padding-left: 33px;
  padding-right: 33px;
  width: 50%;
}
@media (max-width: 1039px) {
  .faq__intro .container .faq__intro_text {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.faq__intro .container .faq__intro_text .faq__title {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .faq__intro .container .faq__intro_text .faq__title {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .faq__intro .container .faq__intro_text .faq__title {
    font-size: 32px;
  }
}
.faq__intro .container .faq__intro_text .faq__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E4B49;
  margin-top: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1039px) {
  .faq__intro .container .faq__intro_text .faq__desc {
    font-size: 16px;
  }
}
.faq__intro .container .faq__intro_text .faq__link button {
  font-weight: 500;
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  width: 220px;
  height: 56px;
  background: #A5BDB0;
  border: 1px solid #A5BDB0;
  border-radius: 50px;
  display: block;
  margin-bottom: 50px;
}
.faq__intro .container .faq__intro_text .faq__link button:hover {
  background: #fff;
  color: #A5BDB0;
}
@media (max-width: 1039px) {
  .faq__intro .container .faq__intro_text .faq__link button {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    width: 200px;
  }
}
.faq__intro .container .faq__intro_img {
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
  position: relative;
}
@media (max-width: 1039px) {
  .faq__intro .container .faq__intro_img {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.faq__intro .faq__bg {
  background-image: url("../images/faq__bg.svg");
  background-size: 240px 240px;
  position: absolute;
  bottom: -80px;
  right: -86px;
  width: 240px;
  height: 240px;
  animation-name: spin;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media (max-width: 766px) {
  .faq__intro .faq__bg {
    background-size: 120px 120px;
    bottom: -62px;
    right: 35px;
    width: 120px;
    height: 120px;
  }
}

.faq {
  position: relative;
  padding-bottom: 90px;
}
.faq .container {
  display: block;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .faq .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.faq .container .faq__chapter {
  padding-top: 40px;
}
.faq .container .faq__chapter .faq__chapter_desc {
  display: flex;
}
.faq .container .faq__chapter .faq__chapter_desc .faq__chapter_number {
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  color: #C5CBC3;
  margin-right: 30px;
}
@media (max-width: 1039px) {
  .faq .container .faq__chapter .faq__chapter_desc .faq__chapter_number {
    font-size: 30px;
  }
}
@media (max-width: 766px) {
  .faq .container .faq__chapter .faq__chapter_desc .faq__chapter_number {
    font-size: 26px;
  }
}
.faq .container .faq__chapter .faq__chapter_desc .faq__chapter_title {
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .faq .container .faq__chapter .faq__chapter_desc .faq__chapter_title {
    font-size: 30px;
  }
}
@media (max-width: 766px) {
  .faq .container .faq__chapter .faq__chapter_desc .faq__chapter_title {
    font-size: 26px;
  }
}
.faq .container .faq__item {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 20px;
  position: relative;
}
@media (max-width: 766px) {
  .faq .container .faq__item {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.faq .container .faq__item .faq__item_title {
  cursor: pointer;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #100701;
  border-top: 2px solid #C5CBC3;
  padding-top: 24px;
  padding-right: 80px;
  position: relative;
}
@media (max-width: 1039px) {
  .faq .container .faq__item .faq__item_title {
    font-size: 20px;
  }
}
@media (max-width: 766px) {
  .faq .container .faq__item .faq__item_title {
    font-size: 16px;
  }
}
.faq .container .faq__item .faq__item_title::after {
  content: "+";
  right: 0;
  top: 50%;
  font-size: 47px;
  position: absolute;
  color: #40685C;
  font-weight: 100;
}
@media (max-width: 766px) {
  .faq .container .faq__item .faq__item_title::after {
    right: 0px;
    top: 50%;
  }
}
.faq .container .faq__item .faq__item__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E4B49;
  display: none;
}
@media (max-width: 1039px) {
  .faq .container .faq__item .faq__item__desc {
    font-size: 16px;
  }
}
@media (max-width: 766px) {
  .faq .container .faq__item .faq__item__desc {
    font-size: 14px;
  }
}
.faq .container .faq__item:last-of-type {
  border-bottom: 2px solid #C5CBC3;
  padding-bottom: 20px;
  padding-right: 0;
  margin-right: 60px;
  margin-left: 60px;
  padding-left: 0;
}
@media (max-width: 766px) {
  .faq .container .faq__item:last-of-type {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.faq .container .faq__item:last-of-type .faq__item_title::after {
  top: 50%;
}
.faq .container .faq__item.active .faq__item_title::after {
  content: "–";
  right: 0px;
  top: 50%;
  font-size: 55px;
  position: absolute;
}
@media (max-width: 766px) {
  .faq .container .faq__item.active .faq__item_title::after {
    right: 0px;
    top: 50%;
  }
}
.faq .container .faq__item.active .faq__item__desc {
  display: block;
  padding-top: 30px;
}

/* ******************************** Products Page  ************************************* */
.product-info {
  padding-top: 40px;
  padding-bottom: 90px;
}
@media (max-width: 1039px) {
  .product-info .container {
    flex-wrap: wrap;
  }
}
.product-info .container > div {
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .product-info .container > div {
    width: 100%;
    padding-bottom: 30px;
  }
}
@media (max-width: 766px) {
  .product-info .container > div {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.product-info .container .product__info_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-info .container .product__info_link hr {
  width: calc(100% - 250px);
  height: 2px;
  background: #E2E4E0;
  border: none;
  outline: none;
}
.product-info .container h1 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .product-info .container h1 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .product-info .container h1 {
    font-size: 32px;
  }
}
.product-info .container .product-info__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E4B49;
  padding-top: 40px;
  padding-bottom: 50px;
  max-width: 406px;
}
@media (max-width: 1039px) {
  .product-info .container .product-info__desc {
    font-size: 16px;
    max-width: 100%;
  }
}
@media (max-width: 766px) {
  .product-info .container .product-info__desc {
    font-size: 14px;
  }
}
.product-info .container button {
  width: 220px;
  height: 56px;
  background: #A5BDB0;
  border: 1px solid #A5BDB0;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media (max-width: 1039px) {
  .product-info .container button {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.product-info .container button:hover {
  background-color: #fff;
  color: #A5BDB0;
}

.consult.product__consult {
  background-image: url("../images/product__contact_bg.jpg");
}

.products .container {
  flex-wrap: wrap;
}
.products .container .product {
  width: 33.33%;
  padding-left: 33px;
  padding-right: 33px;
  margin-bottom: 60px;
}
@media (max-width: 1039px) {
  .products .container .product {
    width: 50%;
  }
}
@media (max-width: 766px) {
  .products .container .product {
    width: 100%;
  }
}
.products .container .product .product__brand {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  color: #4E4B49;
  padding-top: 12px;
  padding-bottom: 10px;
}
@media (max-width: 1039px) {
  .products .container .product .product__brand {
    font-size: 12px;
  }
}
.products .container .product .product__name {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #100701;
}
@media (max-width: 1039px) {
  .products .container .product .product__name {
    font-size: 20px;
  }
}
@media (max-width: 766px) {
  .products .container .product .product__name {
    font-size: 18px;
  }
}
.products .container .product .product__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #959A94;
  padding-top: 10px;
  padding-bottom: 10px;
}
.products .container .product .product__price {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E5E57;
}
@media (max-width: 1039px) {
  .products .container .product .product__price {
    font-size: 16px;
  }
}
.products .container .product button {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #A5BDB0;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: transparent;
  text-align: left;
  width: 100%;
}
.products .container .product button::after {
  background-image: url(../images/bi_arrow-right.svg);
  width: 16px;
  height: 14px;
  content: "";
  position: relative;
  display: inline-block;
  right: -5px;
  top: 1px;
}
.products .container .product button:hover {
  color: #40685C;
  transition: all 0.5s;
}

.product__full_desc .product__brand {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #4E4B49;
  padding-top: 20px;
  padding-bottom: 12px;
}
.product__full_desc .product__name {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #100701;
}
.product__full_desc .product__price {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #4E5E57;
}
.product__full_desc .product__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #959A94;
  padding-top: 12px;
  padding-bottom: 6px;
}
.product__full_desc p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #4E4B49;
  padding-top: 20px;
}
.product__full_desc ul {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #4E4B49;
}

/* *********************************  Service intro Page *************************** */
.i-service_promo {
  padding-top: 40px;
  padding-bottom: 200px;
  position: relative;
}
@media (max-width: 1039px) {
  .i-service_promo {
    padding-bottom: 100px;
  }
}
@media (max-width: 766px) {
  .i-service_promo {
    padding-bottom: 80px;
  }
}
.i-service_promo .i-service_promo_bg {
  position: absolute;
  left: calc(50vw - 195px);
  top: 133px;
  z-index: 1;
}
@media (max-width: 766px) {
  .i-service_promo .i-service_promo_bg {
    display: none;
  }
}
.i-service_promo .i-service_promo_bg img {
  width: 390px;
}
@media (max-width: 1039px) {
  .i-service_promo .container {
    flex-wrap: wrap;
  }
}
.i-service_promo .container > div {
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
  z-index: 2;
}
@media (max-width: 1039px) {
  .i-service_promo .container > div {
    width: 100%;
  }
}
@media (max-width: 766px) {
  .i-service_promo .container > div {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.i-service_promo .container h1 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .i-service_promo .container h1 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .i-service_promo .container h1 {
    font-size: 32px;
  }
}
.i-service_promo .container .i-service_promo_text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #100701;
  padding-top: 40px;
  padding-bottom: 50px;
}
@media (max-width: 1039px) {
  .i-service_promo .container .i-service_promo_text {
    font-size: 16px;
  }
}
@media (max-width: 766px) {
  .i-service_promo .container .i-service_promo_text {
    font-size: 14px;
  }
}
.i-service_promo .container button {
  width: 338px;
  height: 56px;
  background: #A5BDB0;
  border: 1px solid #A5BDB0;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.5s;
}
.i-service_promo .container button:hover {
  transition: all 0.5s;
  background-color: #fff;
  color: #A5BDB0;
}
@media (max-width: 1039px) {
  .i-service_promo .container button {
    margin-bottom: 40px;
  }
}
@media (max-width: 766px) {
  .i-service_promo .container button {
    height: 44px;
    line-height: 44px;
    font-size: 13px;
    margin-bottom: 58px;
    width: 280px;
  }
}

.i-service__preference {
  padding-top: 60px;
  padding-bottom: 100px;
  background: url("../images/botox3.jpg") no-repeat;
  background-size: cover;
}
@media (max-width: 766px) {
  .i-service__preference {
    padding-bottom: 60px;
  }
}
@media (max-width: 1039px) {
  .i-service__preference .container {
    flex-wrap: wrap;
  }
}
.i-service__preference .container > div {
  width: 33.33%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .i-service__preference .container > div {
    width: 100%;
  }
}
@media (max-width: 766px) {
  .i-service__preference .container > div {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1039px) {
  .i-service__preference .container .i-service__preference_img {
    width: 75%;
    margin: 0 auto;
  }
}
@media (max-width: 766px) {
  .i-service__preference .container .i-service__preference_img {
    width: 100%;
  }
}
.i-service__preference .container .i-service__preference_promo {
  width: 66.66%;
}
@media (max-width: 1039px) {
  .i-service__preference .container .i-service__preference_promo {
    width: 100%;
    padding-top: 40px;
  }
}
.i-service__preference .container .i-service__preference_promo > div {
  display: flex;
  flex-wrap: wrap;
}
.i-service__preference .container .i-service__preference_promo > div > div {
  width: 50%;
  padding-left: 33px;
  box-sizing: border-box;
  margin-bottom: 87px;
}
@media (max-width: 1039px) {
  .i-service__preference .container .i-service__preference_promo > div > div {
    margin-bottom: 30px;
  }
}
@media (max-width: 766px) {
  .i-service__preference .container .i-service__preference_promo > div > div {
    width: 100%;
    padding-left: 0;
  }
}
.i-service__preference .container .i-service__preference_promo > div > div hr {
  width: 140px;
  border: 1px solid #A5ABA3;
  margin-top: 10px;
  margin-bottom: 10px;
}
.i-service__preference .container .i-service__preference_promo > div > div h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .i-service__preference .container .i-service__preference_promo > div > div h3 {
    font-size: 22px;
  }
}
@media (max-width: 766px) {
  .i-service__preference .container .i-service__preference_promo > div > div h3 {
    font-size: 20px;
  }
}
.i-service__preference .container .i-service__preference_promo > div > div p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E5E57;
}
@media (max-width: 766px) {
  .i-service__preference .container .i-service__preference_promo > div > div p {
    font-size: 14px;
  }
}
.i-service__preference .container:first-of-type h2 {
  width: 570px;
  padding-bottom: 60px;
  padding-left: 33px;
  padding-right: 33px;
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .i-service__preference .container:first-of-type h2 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .i-service__preference .container:first-of-type h2 {
    font-size: 32px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.we-use {
  padding-top: 20px;
  padding-bottom: 40px;
}
@media (max-width: 766px) {
  .we-use {
    padding-bottom: 0;
  }
}
.we-use .container {
  background-image: url("../images/about__me_logo.svg");
  background-repeat: no-repeat;
  background-position: 220px;
  background-size: 360px;
  flex-wrap: wrap;
}
@media (max-width: 1039px) {
  .we-use .container {
    background-size: 240px;
    background-position: 50px;
  }
}
.we-use .container > div {
  width: 100%;
}
.we-use .container > div h2 {
  padding-top: 100px;
  font-weight: 300;
  font-size: 96px;
  line-height: 100%;
  color: #A8AEA4;
  width: 600px;
  margin: 0 auto;
}
@media (max-width: 1039px) {
  .we-use .container > div h2 {
    font-size: 62px;
    width: 400px;
  }
}
@media (max-width: 766px) {
  .we-use .container > div h2 {
    font-size: 42px;
    width: 290px;
  }
}
.we-use .container .middlearrow {
  height: 100px;
  border-right: 2px solid #A8AEA4;
  width: 50%;
  margin-top: 20px;
}

.before-after {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F9FAF9;
}
@media (max-width: 766px) {
  .before-after {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.before-after .before-after__img img {
  pointer-events: none;
}
.before-after .container {
  flex-wrap: wrap;
}
.before-after .container > div {
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .before-after .container > div {
    width: 100%;
  }
}
@media (max-width: 766px) {
  .before-after .container > div {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 16px;
  }
}
.before-after .container > div h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  width: 380px;
}
@media (max-width: 1039px) {
  .before-after .container > div h2 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .before-after .container > div h2 {
    font-size: 32px;
    width: 100%;
  }
}
.before-after .container > div hr {
  width: 100%;
  border: 1px solid #A5ABA3;
  margin-top: 20px;
  margin-bottom: 20px;
}
.before-after .container > div .before-after__text {
  padding-top: 20px;
  padding-bottom: 65px;
  width: 50%;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E5E57;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .before-after .container > div .before-after__text {
    width: 100%;
    padding-bottom: 15px;
    padding-top: 10px;
  }
}
@media (max-width: 1039px) {
  .before-after .container > div .before-after__text {
    font-size: 16px;
    width: 100%;
  }
}
@media (max-width: 766px) {
  .before-after .container > div .before-after__text {
    padding-bottom: 40px;
  }
}
.before-after .container > div button {
  display: block;
  width: 220px;
  height: 58px;
  font-weight: 500;
  font-size: 16px;
  line-height: 58px;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #40685C;
  background: #FFFFFF;
  border: 1px solid #40685C;
  border-radius: 50px;
  transition: all 0.5s;
}
.before-after .container > div button:hover {
  transition: all 0.5s;
  color: #fff;
  background: #40685C;
}
@media (max-width: 1039px) {
  .before-after .container > div button {
    height: 44px;
    font-size: 13px;
    line-height: 44px;
  }
}
.before-after .container > div .btn__right {
  width: 104px;
  height: 36px;
  background: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 36px;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #959A94;
  border: 1px solid #E2E4E0;
  border-radius: 50px;
  float: right;
  margin-top: 23px;
}
@media (max-width: 1039px) {
  .before-after .container > div .btn__right {
    margin-bottom: 20px;
  }
}
@media (max-width: 766px) {
  .before-after .container > div .btn__right {
    float: left;
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.i-service__plusminus {
  padding-top: 96px;
  padding-bottom: 20px;
}
@media (max-width: 1039px) {
  .i-service__plusminus {
    padding-bottom: 80px;
  }
}
@media (max-width: 766px) {
  .i-service__plusminus {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}
@media (max-width: 1039px) {
  .i-service__plusminus .container {
    flex-wrap: wrap;
  }
}
.i-service__plusminus .container h2 {
  width: 840px;
  padding-bottom: 60px;
  padding-left: 33px;
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .i-service__plusminus .container h2 {
    width: 100%;
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .i-service__plusminus .container h2 {
    font-size: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.i-service__plusminus .container > div {
  width: 33.33%;
  padding-right: 33px;
  padding-left: 33px;
}
@media (max-width: 1039px) {
  .i-service__plusminus .container > div {
    width: 50%;
  }
}
@media (max-width: 766px) {
  .i-service__plusminus .container > div {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}
@media (max-width: 1039px) {
  .i-service__plusminus .container .i-service__plusminus_img {
    width: 100%;
    margin-bottom: 40px;
  }
  .i-service__plusminus .container .i-service__plusminus_img img {
    width: 75%;
    margin: 0 auto;
  }
}
@media (max-width: 1039px) and (max-width: 766px) {
  .i-service__plusminus .container .i-service__plusminus_img img {
    width: 100%;
  }
}
.i-service__plusminus .container h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  color: #40685C;
  padding-bottom: 20px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .i-service__plusminus .container h3 {
    font-size: 26px;
  }
}
@media (max-width: 1039px) {
  .i-service__plusminus .container h3 {
    font-size: 26px;
  }
}
@media (max-width: 766px) {
  .i-service__plusminus .container h3 {
    font-size: 20px;
    padding-top: 20px;
  }
}
.i-service__plusminus .container .i-service__checker {
  display: flex;
  align-items: center;
}
.i-service__plusminus .container .i-service__checker img {
  width: 40px;
  height: 40px;
}
.i-service__plusminus .container .i-service__checker hr {
  border: 1px solid #A5ABA3;
  height: 2px;
  width: 100%;
  margin-left: 10px;
}
.i-service__plusminus .container ul {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E5E57;
  padding-left: 10px;
  margin-top: 20px;
}
@media (max-width: 1039px) {
  .i-service__plusminus .container ul {
    font-size: 16px;
  }
}
@media (max-width: 766px) {
  .i-service__plusminus .container ul {
    font-size: 14px;
  }
}
.i-service__plusminus .container ul li {
  margin-bottom: 20px;
}

.i-service__price {
  background-color: #F9FAF9;
  background-image: url("../images/s_intro_logo.svg");
  background-repeat: no-repeat;
  background-position-x: calc(100vw - 500px);
  background-position-y: -130px;
  padding-top: 120px;
  padding-bottom: 140px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .i-service__price {
    background-position-x: calc(100vw - 400px);
  }
}
@media (max-width: 1039px) {
  .i-service__price {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}
@media (max-width: 766px) {
  .i-service__price {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.i-service__price .container {
  display: block;
  width: 1020px;
}
@media (min-width: 1040px) and (max-width: 1365px) {
  .i-service__price .container {
    width: 991px;
    padding-left: 33px;
    padding-right: 33px;
  }
}
@media (max-width: 1039px) {
  .i-service__price .container {
    width: 700px;
  }
}
@media (max-width: 766px) {
  .i-service__price .container {
    overflow-y: auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }
}
.i-service__price h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  padding-bottom: 80px;
}
@media (max-width: 1039px) {
  .i-service__price h2 {
    font-size: 40px;
    padding-bottom: 50px;
  }
}
@media (max-width: 766px) {
  .i-service__price h2 {
    font-size: 32px;
  }
}
.i-service__price h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  color: #40685C;
  padding-bottom: 42px;
}
@media (max-width: 1039px) {
  .i-service__price h3 {
    font-size: 28px;
  }
}
@media (max-width: 766px) {
  .i-service__price h3 {
    font-size: 24px;
  }
}
.i-service__price table {
  width: 100%;
}
.i-service__price table tr {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #4E5E57;
  border-bottom: 2px solid #C5CBC3;
  height: 56px;
}
.i-service__price table tr:first-of-type {
  border: none;
  vertical-align: baseline;
}
.i-service__price table tr th {
  width: 25%;
  text-align: left;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: #40685C;
}
@media (max-width: 1039px) {
  .i-service__price table tr th {
    font-size: 18px;
  }
}
@media (max-width: 766px) {
  .i-service__price table tr th {
    font-size: 14px;
    width: 20%;
    text-align: right;
  }
}
.i-service__price table tr th:first-of-type {
  width: 50%;
  text-align: left;
}
@media (max-width: 766px) {
  .i-service__price table tr th:first-of-type {
    width: 60%;
  }
}
.i-service__price table tr th:last-of-type {
  width: 25%;
  text-align: right;
}
@media (max-width: 766px) {
  .i-service__price table tr th:last-of-type {
    width: 20%;
  }
}
.i-service__price table tr td {
  width: 25%;
  text-align: left;
}
@media (max-width: 1039px) {
  .i-service__price table tr td {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 766px) {
  .i-service__price table tr td {
    font-size: 13px;
    width: 20%;
    text-align: right;
    padding-left: 0;
    padding-right: 0;
  }
}
.i-service__price table tr td:first-of-type {
  width: 50%;
  text-align: left;
}
@media (max-width: 766px) {
  .i-service__price table tr td:first-of-type {
    width: 60%;
  }
}
.i-service__price table tr td:last-of-type {
  width: 25%;
  text-align: right;
}
@media (max-width: 766px) {
  .i-service__price table tr td:last-of-type {
    width: 20%;
  }
}

.our-team.service_i {
  background: #F9FAF9;
  padding-top: 100px;
}
.our-team.service_i .title-right-line h2 {
  margin-left: 0;
  width: 100%;
}

.maintenance, .cosmetic {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 120px;
}
.maintenance .title-right-line h2, .cosmetic .title-right-line h2 {
  margin-left: 0;
  width: 33%;
}
@media (max-width: 1039px) {
  .maintenance .title-right-line h2, .cosmetic .title-right-line h2 {
    width: 100%;
  }
}
@media (max-width: 1039px) {
  .maintenance .our-team__promo, .cosmetic .our-team__promo {
    width: 100%;
    justify-content: flex-start;
  }
}

.preparat {
  background: #F9FAF9;
  padding-top: 100px;
}
.preparat .title-right-line h2 {
  margin-left: 0;
  width: 33%;
}
@media (max-width: 1039px) {
  .preparat .title-right-line h2 {
    width: 100%;
  }
}
@media (max-width: 1039px) {
  .preparat .our-team__promo {
    width: 100%;
    justify-content: flex-start;
  }
}

.pagination {
  padding-top: 60px;
  padding-bottom: 120px;
}
.pagination ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul li {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #100701;
}
.pagination ul li a {
  width: 40px;
  height: 40px;
  line-height: 35px;
}
.pagination ul .current {
  background: #E2E4E0;
  border: 1px solid #E2E4E0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 36px;
}
.pagination ul .prev, .pagination ul .next {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-image: url("../images/pag_arrow.svg");
  background-repeat: no-repeat;
}
.pagination ul .next {
  transform: rotate(180deg);
}

/* *********************************  Service Page ********************************* */
@media (max-width: 1039px) {
  .service .container {
    flex-wrap: wrap;
  }
}
.service .container .service__promo {
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
  padding-top: 30px;
}
@media (max-width: 1039px) {
  .service .container .service__promo {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }
}
.service .container .service__promo h1 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
}
@media (max-width: 1365px) {
  .service .container .service__promo h1 {
    font-size: 46px;
  }
}
@media (max-width: 1039px) {
  .service .container .service__promo h1 {
    font-size: 40px;
  }
}
@media (max-width: 766px) {
  .service .container .service__promo h1 {
    font-size: 32px;
  }
}
.service .container .service__promo .service__promo_text {
  padding-top: 40px;
  padding-bottom: 50px;
}
.service .container .service__promo .service__promo_text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #100701;
}
@media (max-width: 1365px) {
  .service .container .service__promo .service__promo_text p {
    font-size: 16px;
  }
}
@media (max-width: 1039px) {
  .service .container .service__promo .service__promo_text p {
    font-size: 15px;
  }
}
@media (max-width: 766px) {
  .service .container .service__promo .service__promo_text p {
    font-size: 14px;
  }
}
.service .container .service__promo button {
  width: 338px;
  height: 56px;
  line-height: 56px;
  background-color: #A5BDB0;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid #A5BDB0;
  transition: all 0.5s;
}
.service .container .service__promo button:hover {
  background-color: #fff;
  color: #A5BDB0;
  transition: all 0.5s;
}
@media (max-width: 766px) {
  .service .container .service__promo button {
    width: 280px;
    height: 40px;
    font-size: 12px;
    line-height: 40px;
  }
}
.service .container .service__img {
  width: 50%;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .service .container .service__img {
    width: 100%;
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.service__items_service {
  padding-top: 80px;
  padding-bottom: 140px;
}
@media (max-width: 766px) {
  .service__items_service {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.service__items_service .container {
  flex-wrap: wrap;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 766px) {
  .service__items_service .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.service__items_service .container .service__items_count {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #959A94;
  padding-bottom: 22px;
}
@media (max-width: 766px) {
  .service__items_service .container .service__items_count {
    width: 100%;
    text-align: right;
  }
}
.service__items_service .container .service__item {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 2px solid #C4C4C4;
  display: flex;
  width: 100%;
}
@media (max-width: 766px) {
  .service__items_service .container .service__item {
    flex-wrap: wrap;
  }
}
.service__items_service .container .service__item:last-of-type {
  border-bottom: 2px solid #C4C4C4;
}
.service__items_service .container .service__item .service__item_img {
  width: 33.33%;
  padding-right: 33px;
}
@media (max-width: 766px) {
  .service__items_service .container .service__item .service__item_img {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 20px;
  }
}
.service__items_service .container .service__item .service__item_right {
  width: 66.66%;
  padding-left: 33px;
  display: flex;
}
@media (max-width: 766px) {
  .service__items_service .container .service__item .service__item_right {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
.service__items_service .container .service__item .service__item_right .service__item_desc {
  display: block;
}
.service__items_service .container .service__item .service__item_right .service__item_desc .service__item_title h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #100701;
}
@media (max-width: 1365px) {
  .service__items_service .container .service__item .service__item_right .service__item_desc .service__item_title h2 {
    font-size: 22px;
  }
}
@media (max-width: 1039px) {
  .service__items_service .container .service__item .service__item_right .service__item_desc .service__item_title h2 {
    font-size: 20px;
  }
}
@media (max-width: 766px) {
  .service__items_service .container .service__item .service__item_right .service__item_desc .service__item_title h2 {
    font-size: 20px;
  }
}
.service__items_service .container .service__item .service__item_right .service__item_desc .service__item_title .service__item_text {
  padding-top: 20px;
  padding-bottom: 60px;
}
@media (max-width: 1365px) {
  .service__items_service .container .service__item .service__item_right .service__item_desc .service__item_title .service__item_text {
    padding-bottom: 20px;
  }
}
.service__items_service .container .service__item .service__item_right .service__item_desc .service__item_title .service__item_text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #4E4B49;
}
@media (max-width: 766px) {
  .service__items_service .container .service__item .service__item_right .service__item_desc .service__item_title .service__item_text p {
    font-size: 14px;
  }
}
.service__items_service .container .service__item .service__item_right .service__item_desc .service__item_title span {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #A5BDB0;
}
.service__items_service .container .service__item .service__item_right .service__item_desc .service__item_title span::after {
  background-image: url(../images/bi_arrow-right.svg);
  width: 16px;
  height: 14px;
  content: "";
  position: relative;
  display: inline-block;
  right: -5px;
  top: 1px;
}
.service__items_service .container .service__item .service__item_right .service__item_desc:hover span {
  color: #40685C;
}
.service__items_service .container .service__item .service__item_right .service__items_number {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #C5CBC3;
}
@media (max-width: 766px) {
  .service__items_service .container .service__item .service__item_right .service__items_number {
    font-size: 20px;
  }
}
.service__items_service .container:first-of-type {
  justify-content: flex-end;
}

/* ================== Gallery Page ============================================*/
.gal-item .container {
  flex-wrap: wrap;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 766px) {
  .gal-item .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.gal-item .container h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  padding-top: 40px;
  padding-bottom: 0px;
}
@media (max-width: 1039px) {
  .gal-item .container h2 {
    font-size: 32px;
  }
}
.gal-item .container .sub-item h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 100%;
  color: #4E5E57;
  padding-top: 60px;
}
@media (max-width: 1039px) {
  .gal-item .container .sub-item h3 {
    font-size: 24px;
  }
}
.gal-item .container .sub-item .subline {
  width: 260px;
  height: 2px;
  background-color: #E2E4E0;
  margin-top: 12px;
  margin-bottom: -10px;
}
.gal-item .container .sub-item .list__items {
  padding-bottom: 0px;
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
.gal-item .container .sub-item .list__items > div {
  width: 33.33%;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1039px) {
  .gal-item .container .sub-item .list__items > div {
    width: 50%;
  }
}
@media (max-width: 766px) {
  .gal-item .container .sub-item .list__items > div {
    width: 100%;
  }
}
.gal-item .container .sub-item .list__items .number {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #A5BDB0;
  padding-right: 22px;
}
@media (max-width: 1039px) {
  .gal-item .container .sub-item .list__items .number {
    font-size: 14px;
  }
}
.gal-item .container .sub-item .list__items .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #4E5E57;
  padding-top: 0px;
}
@media (max-width: 1039px) {
  .gal-item .container .sub-item .list__items .title {
    font-size: 14px;
  }
}
.gal-item .slider__items {
  width: calc(50vw - 33px + 30px + 1266px / 2 );
  margin-left: calc(50vw - 630px);
  padding-bottom: 20px;
  padding-top: 60px;
}
@media (max-width: 1365px) {
  .gal-item .slider__items {
    width: calc(50vw - 33px + 30px + 991px / 2 );
    margin-left: calc(50vw - 492px);
  }
}
@media (max-width: 1039px) {
  .gal-item .slider__items {
    width: calc(50vw - 33px + 30px + 700px / 2 );
    margin-left: calc(50vw - 347px);
  }
}
@media (max-width: 766px) {
  .gal-item .slider__items {
    width: 100%;
    margin-left: 0px;
  }
}
.gal-item .slider__items .slider__item .slider__item_img {
  padding-left: 33px;
}
@media (max-width: 766px) {
  .gal-item .slider__items .slider__item .slider__item_img {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.gal-item .slider__items .slider__item .slider__item_desc {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #4E4B49;
  padding-left: 33px;
  margin-top: 30px;
}
@media (max-width: 766px) {
  .gal-item .slider__items .slider__item .slider__item_desc {
    font-size: 16px;
  }
}
.gal-item .slider__items .slick-prev, .gal-item .slider__items .slick-prev:hover, .gal-item .slider__items .slick-prev:focus {
  background-image: url("../images/brand__arrow_l.svg");
  width: 40px;
  height: 40px;
  top: 50%;
  z-index: 10;
  opacity: 0.4;
  left: calc(1266px - 112px);
}
@media (max-width: 1365px) {
  .gal-item .slider__items .slick-prev, .gal-item .slider__items .slick-prev:hover, .gal-item .slider__items .slick-prev:focus {
    left: calc(991px - 112px);
  }
}
@media (max-width: 1039px) {
  .gal-item .slider__items .slick-prev, .gal-item .slider__items .slick-prev:hover, .gal-item .slider__items .slick-prev:focus {
    left: calc(700px - 112px);
  }
}
@media (max-width: 766px) {
  .gal-item .slider__items .slick-prev, .gal-item .slider__items .slick-prev:hover, .gal-item .slider__items .slick-prev:focus {
    left: unset;
    right: 93px;
    top: 100%;
    opacity: 1;
  }
}
.gal-item .slider__items .slick-prev::before, .gal-item .slider__items .slick-next::before {
  content: "";
  opacity: 0;
}
.gal-item .slider__items .slick-next, .gal-item .slider__items .slick-next:hover, .gal-item .slider__items .slick-next:focus {
  background-image: url("../images/brand__arrow_r.svg");
  width: 40px;
  height: 40px;
  right: calc(50vw - 1266px / 2);
  top: 50%;
  opacity: 0.4;
}
@media (max-width: 1365px) {
  .gal-item .slider__items .slick-next, .gal-item .slider__items .slick-next:hover, .gal-item .slider__items .slick-next:focus {
    right: calc(50vw - 991px / 2);
  }
}
@media (max-width: 1039px) {
  .gal-item .slider__items .slick-next, .gal-item .slider__items .slick-next:hover, .gal-item .slider__items .slick-next:focus {
    right: calc(50vw - 700px / 2);
  }
}
@media (max-width: 766px) {
  .gal-item .slider__items .slick-next, .gal-item .slider__items .slick-next:hover, .gal-item .slider__items .slick-next:focus {
    right: 16px;
    top: 100%;
    opacity: 1;
  }
}

.ponrav-res {
  min-height: 448px;
  background-color: #dbd7d6;
  background-image: url("../images/gal_after_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 120px;
  background-position: center;
}
@media (min-width: 1600px) {
  .ponrav-res {
    background-size: 1600px;
  }
}
.ponrav-res .container {
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 766px) {
  .ponrav-res .container {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }
}
.ponrav-res .container > div {
  width: 377px;
}
@media (max-width: 766px) {
  .ponrav-res .container > div {
    width: 100%;
  }
}
.ponrav-res .container > div h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  padding-top: 80px;
  padding-bottom: 20px;
}
@media (max-width: 766px) {
  .ponrav-res .container > div h2 {
    font-size: 32px;
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
.ponrav-res .container > div p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #4E5E57;
}
@media (max-width: 766px) {
  .ponrav-res .container > div p {
    font-size: 14px;
  }
}
.ponrav-res .container > div button {
  margin-top: 80px;
  width: 338px;
  height: 56px;
  background: #40685C;
  border-radius: 50px;
  border: 1px solid #40685C;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.5s;
}
@media (max-width: 766px) {
  .ponrav-res .container > div button {
    height: 42px;
    width: 272px;
    font-size: 13px;
    margin-top: 110px;
  }
}
.ponrav-res .container > div button:hover {
  background: #FFFFFF;
  color: #40685C;
  border: 1px solid #40685C;
  transition: all 0.5s;
}

.nice-result {
  min-height: 365px;
  background-color: #a8aea4;
  background-image: url("../images/gal_res_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 100px;
  margin-bottom: 60px;
}
.nice-result .container {
  display: block;
  text-align: center;
}
@media (max-width: 766px) {
  .nice-result .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.nice-result h2 {
  font-weight: 300;
  font-size: 54px;
  line-height: 100%;
  text-align: center;
  color: #FFFFFF;
  padding-top: 60px;
  padding-bottom: 20px;
}
@media (max-width: 766px) {
  .nice-result h2 {
    font-size: 32px;
    padding-top: 40px;
  }
}
.nice-result p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 766px) {
  .nice-result p {
    font-size: 16px;
  }
}
.nice-result button {
  width: 338px;
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #40685C;
  border-radius: 50px;
  transition: all 0.5s;
  margin-top: 84px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #40685C;
}
.nice-result button:hover {
  background: #40685C;
  border: 1px solid #FFFFFF;
  transition: all 0.5s;
  color: #ffffff;
}
@media (max-width: 766px) {
  .nice-result button {
    height: 42px;
    width: 272px;
    font-size: 13px;
    margin-top: 100px;
  }
}

@media (min-width: 1600px) {
  .nice-result {
    background-size: 1600px;
  }
}
.video-gallery {
  padding-top: 120px;
  padding-bottom: 120px;
}
.video-gallery .container {
  display: block;
  padding-left: 33px;
  padding-right: 33px;
}
@media (max-width: 1039px) {
  .video-gallery .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.video-gallery .container h2 {
  font-weight: 400;
  font-size: 54px;
  line-height: 100%;
  color: #40685C;
  padding-bottom: 80px;
}
@media (max-width: 1039px) {
  .video-gallery .container h2 {
    font-size: 32px;
  }
}
.video-gallery .container p {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #4E4B49;
}
@media (max-width: 1039px) {
  .video-gallery .container p {
    font-size: 14px;
  }
}
.video-gallery .container .gallery__slider_text {
  padding-top: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #4E4B49;
}
.video-gallery .container video {
  width: 100%;
  height: auto;
}
.video-gallery .container .slick-prev, .video-gallery .container .slick-prev:hover, .video-gallery .container .slick-prev:focus {
  background-image: url("../images/brand__arrow_l.svg");
  width: 40px;
  height: 40px;
  left: calc(100% - 110px);
  top: unset;
  bottom: -83px;
}
.video-gallery .container .slick-prev::before, .video-gallery .container .slick-next::before {
  content: "";
  opacity: 0;
}
.video-gallery .container .slick-next, .video-gallery .container .slick-next:hover, .video-gallery .container .slick-next:focus {
  background-image: url("../images/brand__arrow_r.svg");
  width: 40px;
  height: 40px;
  right: 0px;
  top: unset;
  bottom: -83px;
}
.video-gallery .container .slick-list {
  margin: 0 -30px;
}
@media (max-width: 766px) {
  .video-gallery .container .slick-list {
    margin: 0;
  }
}
.video-gallery .container .slick-slide {
  margin: 0 30px;
}
@media (max-width: 766px) {
  .video-gallery .container .slick-slide {
    margin: 0;
  }
}

/* ================== FOOTER  ======================            */
footer {
  background-color: #F9F9F9;
}
footer .footer__contakt {
  padding-top: 60px;
  padding-bottom: 74px;
}
footer .footer__contakt .container {
  justify-content: space-between;
}
@media (max-width: 1039px) {
  footer .footer__contakt .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 1039px) {
  footer .footer__contakt .container .footer__address, footer .footer__contakt .container .footer__phone, footer .footer__contakt .container .footer__mail {
    width: 33.33%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 766px) {
  footer .footer__contakt .container .footer__address, footer .footer__contakt .container .footer__phone, footer .footer__contakt .container .footer__mail {
    width: 50%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 766px) {
  footer .footer__contakt .container .footer__address h4, footer .footer__contakt .container .footer__phone h4, footer .footer__contakt .container .footer__mail h4 {
    margin-top: 20px;
  }
}
@media (max-width: 1039px) {
  footer .footer__contakt .container .footer__messenger, footer .footer__contakt .container .footer__social {
    width: 50%;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 766px) {
  footer .footer__contakt .container .footer__messenger, footer .footer__contakt .container .footer__social {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 1039px) {
  footer .footer__contakt .container .footer__messenger h4, footer .footer__contakt .container .footer__social h4 {
    text-align: center;
    margin-top: 20px;
  }
}
@media (max-width: 766px) {
  footer .footer__contakt .container .footer__messenger h4, footer .footer__contakt .container .footer__social h4 {
    text-align: left;
  }
}
footer .footer__contakt div, footer .footer__contakt a {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #4E5E57;
}
@media (max-width: 1039px) {
  footer .footer__contakt div, footer .footer__contakt a {
    font-size: 14px;
  }
}
footer .footer__contakt div img, footer .footer__contakt a img {
  width: auto;
  height: 26px;
}
footer .footer__contakt .footer__messenger > div, footer .footer__contakt .footer__social > div {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 1039px) {
  footer .footer__contakt .footer__messenger > div, footer .footer__contakt .footer__social > div {
    justify-content: center;
  }
}
@media (max-width: 766px) {
  footer .footer__contakt .footer__messenger > div, footer .footer__contakt .footer__social > div {
    justify-content: flex-start;
    padding-right: 16px;
    padding-left: 16px;
  }
}
footer .footer__contakt .footer__messenger > div a, footer .footer__contakt .footer__social > div a {
  display: inline-flex;
  cursor: pointer;
}
@media (max-width: 1039px) {
  footer .footer__contakt .footer__messenger > div a, footer .footer__contakt .footer__social > div a {
    padding-right: 10px;
    padding-left: 0px;
  }
}
footer .footer__contakt h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #959A94;
  text-align: left;
  margin-bottom: 12px;
}
footer .footer__menu .container {
  justify-content: space-between;
  border-top: 1px solid #C5CBC3;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 766px) {
  footer .footer__menu .container {
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
footer .footer__menu .container .footer__logo img {
  width: 91px;
  height: auto;
  padding-top: 10px;
}
footer .footer__menu .container .footer__menu_l a, footer .footer__menu .container .footer__menu_c a, footer .footer__menu .container .footer__menu_r a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #4E4B49;
}
@media (max-width: 766px) {
  footer .footer__menu .container .footer__menu_l, footer .footer__menu .container .footer__menu_c, footer .footer__menu .container .footer__menu_r {
    display: none;
  }
}
@media (max-width: 1039px) {
  footer .footer__menu .container .footer__menu_r {
    display: none;
  }
}
footer .footer__menu .container .footer__callback button {
  width: 180px;
  height: 42px;
  background: #FFFFFF;
  border: 1px solid #4E5E57;
  border-radius: 50px;
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 42px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #4E5E57;
  display: block;
  transition: all 0.5s;
}
footer .footer__menu .container .footer__callback button:hover {
  background-color: #4E5E57;
  color: #fff;
  border: 1px solid #4E5E57;
  transition: all 0.5s;
}
footer .copyright {
  background-color: #4E5E57;
}
footer .copyright .container {
  height: 74px;
  align-items: center;
}
@media (max-width: 766px) {
  footer .copyright .container {
    flex-wrap: wrap;
    align-content: center;
    padding-left: 16px;
    padding-right: 16px;
    height: 60px;
  }
}
footer .copyright .container > div {
  width: 50%;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #E2E4E0;
}
@media (max-width: 766px) {
  footer .copyright .container > div {
    width: 100%;
    font-size: 14px;
  }
}
footer .copyright .container > div a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #E2E4E0;
  text-decoration: none;
}
@media (max-width: 766px) {
  footer .copyright .container > div a {
    font-size: 14px;
  }
}
footer .copyright .container > div:last-of-type {
  text-align: right;
}
@media (max-width: 766px) {
  footer .copyright .container > div:last-of-type {
    text-align: left;
  }
}

/* ================================== Modals   ==================================  */
.callback .btn {
  border-radius: 50px;
  background-color: #40685C;
  border: 1px solid #40685C;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-top: 17px;
  padding-bottom: 17px;
  margin-top: 20px;
  transition: all 0.5s;
  cursor: pointer;
}
.callback input {
  background-color: transparent;
  border: none;
  font-weight: 500;
  outline: none;
  padding-top: 40px;
  padding-bottom: 18px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #40685C;
}
.callback input::placeholder {
  font-weight: 600;
  font-size: 13px;
  line-height: 12px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #40685C;
}

.modalq-wrapper .modalq.callback.product__callback {
  max-width: 640px;
  padding: 40px 80px 60px 80px;
}
@media (max-width: 766px) {
  .modalq-wrapper .modalq.callback.product__callback {
    max-width: 99%;
    padding: 30px 15px 30px 15px;
  }
}
.modalq-wrapper .modalq.callback.product__callback svg[data-modalq-close] {
  right: 27px;
  top: 27px;
}
.modalq-wrapper .modalq.callback.product__callback #formx-2 .btn {
  background: #A5BDB0;
  border-radius: 50px;
  border: solid 1px #A5BDB0;
  width: 180px;
  height: 42px;
  font-weight: 500;
  font-size: 13px;
  line-height: 42px;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0;
  transition: all 0.5s;
  margin-top: 40px;
}
.modalq-wrapper .modalq.callback.product__callback #formx-2 .btn:hover {
  background: #fff;
  color: #A5BDB0;
  transition: all 0.5s;
}
.modalq-wrapper .modalq.callback.product__callback #formx-2 input {
  border-bottom: 1px solid #A5BDB0;
}

.wp-block-image.size-full {
  padding-top: 40px;
  padding-bottom: 20px;
}

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