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

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

body {
  line-height: 1.5;
  font-family: "Ubuntu", sans-serif;
  color: #fff;
}

* {
  font-family: "Ubuntu", sans-serif;
}

ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.layouts-title {
  font-size: 26px;
  margin: 15px 0;
}
.layouts ul li {
  margin-bottom: 5px;
}
.layouts ul li a {
  font-size: 17px;
  display: inline-block;
  padding: 3px 10px;
}
.layouts ul li a:hover {
  background: #000;
  color: #fff;
}
/* -- END RESET -- */

.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
  float: left;
}
.nopad {
  padding: 0;
}
.nopadleft {
  padding-left: 0;
}
.nopadright {
  padding-right: 0;
}
strong,
b {
  font-weight: bold;
}
i {
  font-style: italic;
}
em {
  font-style: italic;
}
.clear {
  clear: both;
}
.left {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}
.right {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}
.alignleft {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}
.alignright {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  max-width: 100%;
  margin-bottom: 15px;
}
.invi {
  visibility: hidden;
  opacity: 0;
}
.object-fit {
  position: relative;
}
.object-fit > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.object-fit.object-contain > img {
  -o-object-fit: contain;
  object-fit: contain;
}

/* preloader */
.preloader {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 3px solid hsla(0, 0%, 100%, 0.3);
  border-top-color: rgba(255, 255, 255, 0.3);
  border-right-color: rgba(255, 255, 255, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.3);
  border-left-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ccc !important;
  -webkit-animation: a 1s ease-in-out infinite;
  animation: a 1s ease-in-out infinite;
  z-index: 50;
}
@-webkit-keyframes a {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes a {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/*   hamburger   */
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  float: right;

  display: none;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger-box {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 20px;
  float: right;
}
.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  border-radius: 0;
  position: absolute;
  width: 28px;
  height: 1px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  background-color: #262626;
}
.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}
.hamburger-inner:before {
  top: -5px;
  width: 20px;
  right: 0;
}
.hamburger-inner:after {
  bottom: -5px;
}
.hamburger--squeeze .hamburger-inner {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
  transition: bottom 75ms ease 0.12s,
    transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  transition: bottom 75ms ease,
    transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}

.prev-scroll {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.grid-container {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
}

.swiper-wrapper {
  box-sizing: border-box;
  z-index: 0;
}
.swiper-slide,
.swiper-slide {
  height: auto;
}

.text-white {
  color: #fff;
}

header {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  transition: transform 0.5s ease-in-out;
}
header.scrolled {
  transform: translateY(-100%);
}
header.scrolled.scrolling-up {
  transform: translateY(0);
}
.header-box {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.header-logo {
  float: left;
  width: 218px;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-logo img {
	max-height: 70px!important;
    height: 70px!important;
    width: 192px;
    max-width: 192px;
    object-fit: contain;
}
.header-right {
  float: left;
  width: calc(100% - 218px);
  padding-left: 40px;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header-nav > ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.header-nav > ul > li {
  float: left;
  margin-right: 30px;
  position: relative;
  padding: 31px 0;
}
.header-nav > ul > li > a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-transform: uppercase;
  color: #262626;
  transition: 0.2s ease-in-out;
}
.header-nav > ul > li.menu-item-has-children > a {
  padding-right: 20px;
}
.header-nav > ul > li.menu-item-has-children > a::after {
  content: "";
  width: 13px;
  height: 9px;
  background: url(../img/icon-dropdown-chev.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.header-nav > ul > li > a:hover {
  color: #262626;
  opacity: 0.7;
}
.header-nav > ul > li.menu-item-has-children.is-active > a::after {
  transform: translateY(-50%) rotate(180deg);
}
.header-nav ul ul {
  background: #fff;
  -webkit-box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  border-radius: 4px;
  padding: 2px 11px;
  min-width: 164px;
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  margin: 0;
  white-space: nowrap;
  display: none;
}
.header-nav ul ul li {
  border-bottom: 1px solid rgba(217, 202, 189, 0.3);
  border-radius: 2px;
}
.header-nav ul ul li:last-child {
  border-bottom: none;
}
.header-nav ul ul li a {
  display: block;
  padding: 12px 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.21;
  color: #262626;
  transition: 0.2s ease-in-out;
}
.header-nav ul ul li a:hover {
  color: #262626;
  opacity: 0.7;
}
.header-nav ul .menu-col ul {
  width: 439px;
}
.header-nav ul .menu-col ul li {
  float: left;
  width: calc(50% - 25px);
}
.header-nav ul .menu-col ul::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #fef9f3;
  position: absolute;
  bottom: 1px;
  left: 0;
}
.header-btns {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-right: 20px;
}
.header-btns ul li {
  float: left;
  margin-right: 10px;
}
.btn-dropdown,
.btn-dropdown:focus,
.btn-dropdown:active {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: 2px solid #4FCDD7;
  border-radius: 22px;
  padding: 11px 14px;
  min-width: 150px;
  text-align: center;
  line-height: 1.07;
  color: #4FCDD7;
  white-space: nowrap;
}
.btn-dropdown a {
  color: #4FCDD7;
}
.btn-dropdown::after {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  top: 100%;
  left: 0;
}
.btn-dropdown > span {
  display: inline-block;
  position: relative;
  padding-right: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-transform: uppercase;
}
.btn-dropdown > span::after {
  content: "";
  width: 13px;
  height: 9px;
  background: url(../img/icon-dropdown-chev.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.btn-dropdown.is-active > span::after {
  transform: translateY(-50%) rotate(180deg);
}
.btn-dropdown-sub {
  background: #fff;
  -webkit-box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  border-radius: 4px;
  padding: 2px 11px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 189px;
  text-align: left;
  display: none;
  z-index: 2;
  cursor: default;
}
.btn-dropdown-sub-item {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(217, 202, 189, 0.3);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.21;
}
.btn-dropdown-sub-item:last-child {
  border-bottom: none;
}
.btn-dropdown-sub-item p {
  margin-bottom: 5px;
  font-weight: 500;
  color: #262626;
}
.btn-dropdown-sub-item a {
  text-decoration: underline;
  color: #595959;
}
.btn-dropdown-sub-item a:hover {
  color: #595959;
  text-decoration: none;
}
.btn-dropdown:hover > span {
  opacity: 0.7;
}
.btn-black,
.btn-black:focus,
.btn-black:active {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 12px 14px;
  min-width: 150px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: #262626;
  border-radius: 22px;
  border: 2px solid #262626;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
}
.btn-black:hover {
  color: #262626;
  background: transparent;
}


.btn-pink,
.btn-pink:focus,
.btn-pink:active {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 12px 14px;
  min-width: 150px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: #4FCDD7;
  border-radius: 22px;
  border: 2px solid #4FCDD7;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
}
.btn-pink:hover {
  color: #000;
  background-color: #fff;
  background: transparent;
}

.btn-white,
.btn-white:focus,
.btn-white:active {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 12px 14px;
  min-width: 150px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 22px;
  border: 2px solid #fff;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
}
.btn-white:hover {
  color: #4FCDD7;
  background: transparent;
}

.btn-white span {
  display: inline-block;
  position: relative;
  padding-right: 42px;
}
.btn-white span::after {
  content: "";
  width: 31px;
  height: 14px;
  background: url(../img/icon-arrow-long-white.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.btn-white:hover span::after {
  right: -5px;
}


.header-lang {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-transform: uppercase;
}
.header-lang-trigger {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-right: 20px;
  transition: 0.2s ease-in-out;
  color: #000;
}
.header-lang-trigger:hover {
  opacity: 0.7;
}
.header-lang-trigger::after {
  content: "";
  width: 13px;
  height: 9px;
  background: url(../img/icon-dropdown-chev.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.header-lang-trigger.is-active::after {
  transform: translateY(-50%) rotate(180deg);
}
.header-lang > div {
  background: #fef9f3;
  -webkit-box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  border-radius: 4px;
  padding: 2px 11px;
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 2;
}
.header-lang ul li a {
  display: block;
  padding: 12px 8px;
  border-top: 1px solid rgba(217, 202, 189, 0.3);
  border-radius: 2px;
}
.header-lang ul li a {
  color: #d9cabd !important;
  transition: 0.2s ease-in-out;
}
.header-lang ul li a:hover {
  color: #262626 !important;
}
.header-lang ul ul {
  margin: 0;
  visibility: visible !important;
}
.header-lang .wpml-ls-current-language > a {
  border-top: none;
  color: #262626 !important;
  pointer-events: none;
}
.header-bottom {
  background: #000;
  padding: 8px 0;
  overflow: hidden;
}
.header-bottom-img {
  padding: 0 0 0 39px;
  line-height: 0;
}
.header-bottom-img img {
  max-height: 13px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  padding: 30px 30px;
  background: #fff;
  overflow: auto;
  display: none;
  z-index: 1000;
}
.mobile-menu-top {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.mobile-menu-close {
  display: inline-block;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: url(../img/icon-menu-close.svg) no-repeat center center;
}
.mobile-menu-nav > ul > li {
  margin-bottom: 30px;
}
.mobile-menu-nav > ul > li > a {
  font-size: 26px;
  line-height: 1.12;
  text-transform: uppercase;
  color: #262626;
  transition: 0.2s ease-in-out;
}
.mobile-menu-nav ul li a:hover {
  color: #262626;
  opacity: 0.7;
}
.mobile-menu-nav ul ul {
  margin: 10px 0 0 0;
  display: none;
}
.mobile-menu-nav > ul ul li {
  margin-bottom: 10px;
}
.mobile-menu-nav > ul ul li:last-child {
  margin-bottom: 0;
}
.mobile-menu-nav > ul ul li a {
  font-size: 20px;
  line-height: 1.12;
  text-transform: uppercase;
  color: #262626;
  transition: 0.2s ease-in-out;
}

footer {
  background: #0062A7;
  position: relative;
  z-index: 2;
}
footer::before {
  content: "";
  width: 100%;
  height: 50px;
  border-radius: 50px 50px 0px 0px;
  background: #0062A7;
  position: absolute;
  bottom: 99.7%;
  left: 0;
}
.footer-top {
  padding-bottom: 45px;
  border-bottom: 1px solid #4FCDD7;
  margin-bottom: 30px;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-top-left {
  padding-right: 40px;
}
.footer-top-left img {
  max-height: 75px;
}
.btn-brown,
.btn-brown:focus,
.btn-brown:active {
  display: inline-block;
  cursor: pointer;
  background: #4FCDD7;
  border: 2px solid #4FCDD7;
  border-radius: 22px;
  padding: 9px 21px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.11;
  text-transform: uppercase;
  color: #fff;
  transition: 0.2s ease-in-out;
  text-align: center;
}
.btn-brown span {
  display: inline-block;
  position: relative;
  padding-right: 42px;
}
.btn-brown span::after {
  content: "";
  width: 31px;
  height: 14px;
  background: url(../img/icon-arrow-long-white.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.btn-brown:hover {
  color: #fff;
  opacity: 0.7;
}
.btn-brown:hover span::after {
  right: -5px;
}
.footer-bottom {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  padding-bottom: 54px;
}
.footer-bottom-item {
  width: 20%;

  font-size: 16px;
  line-height: 1.375;
  color: #fdfbf9;
  padding-right: 40px;
}
.footer-bottom-item > span {
  display: block;
  text-transform: uppercase;

  min-height: 50px;
  margin-bottom: 6px;
}
.footer-bottom-nav ul li {
  margin-bottom: 14px;
}
.footer-bottom-nav ul li a {
  color: #fdfbf9;
  transition: 0.2s ease-in-out;
}
.footer-bottom-nav ul li a:hover {
  color: #fdfbf9;
  opacity: 0.7;
}
.footer-bottom-nav-two {
  width: 40%;
}
.footer-bottom-nav-two ul {
 /* width: 50%;*/
  float: left;
  padding-right: 20px;
}
.footer-bottom-nav-two ul + ul {
  padding: 0 0 0 20px;
}
.footer-bottom-social ul li {
  margin-bottom: 20px;
}
.footer-bottom-social ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  width: 50px;
  height: 50px;
  border: 2px solid #fdfbf9;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
.footer-bottom-social ul li a:hover {
  opacity: 0.7;
}
.footer-copywrite-hold {
  border-top: 1px solid #4FCDD7;
  padding: 20px 0;
  background: #000;
}
.footer-copywrite {
  font-size: 14px;
  line-height: 1.43;
  color: #fff;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-copywrite ul li {
  float: left;
  margin-left: 50px;
}
.footer-copywrite ul li a {
  color: #fff;
  text-decoration: underline;
  transition: 0.2s ease-in-out;
}
.footer-copywrite ul li a:hover {
  color: #4FCDD7;
  text-decoration: none;
}

body {
  background: #fff;
}
main {
  overflow: hidden;
}

.lighter-top-radius {
  background: #F9F9F9;
  position: relative;
  padding-top: 60px;
}
.lighter-top-radius::before {
  content: "";
  width: 100%;
  height: 40px;
  border-radius: 50px 50px 0px 0px;
  background: #F9F9F9;
  position: absolute;
  bottom: 99.7%;
  left: 0;
  z-index: 2;
}
.lighter-top-radius.lighter-top-radius-darker {
  background: #F9F9F9;
}
.lighter-top-radius.lighter-top-radius-darker::before {
  background: #F9F9F9;
}






.white-top-radius {
  background: #fff;
  position: relative;
  padding-top: 60px;
}
.white-top-radius::before {
  content: "";
  width: 100%;
  height: 40px;
  border-radius: 50px 50px 0px 0px;
  background: #fff;
  position: absolute;
  bottom: 99.7%;
  left: 0;
  z-index: 2;
}
.white-top-radius.white-top-radius-darker {
  background: #fff;
}
.white-top-radius.white-top-radius-darker::before {
  background: #fff;
}







.black-top-radius {
  background: #000;
  position: relative;
  padding-top: 60px;
}
.black-top-radius::before {
  content: "";
  width: 100%;
  height: 40px;
  border-radius: 50px 50px 0px 0px;
  background: #000;
  position: absolute;
  bottom: 99.7%;
  left: 0;
  z-index: 2;
}
.black-top-radius.black-top-radius-darker {
  background: #000;
}
.black-top-radius.black-top-radius-darker::before {
  background: #000;
}


.darker-top-radius.darker-top-radius-darker {
  background: #F9F9F9;
}
.darker-top-radius.darker-top-radius-darker::before {
  background: #F9F9F9;
}

.title-serif-70 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 1;
  margin-bottom: 39px;
}
.text-16 {
  font-size: 16px;
  line-height: 1.375;
}

.home-intro-banner {
  background-color: #eceff6;
}
.home-banner-swiper-box {
  padding-top: 156px;
  height: 100vh;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.home-banner-swiper-left {
  float: left;
  width: 36%;
  /* padding: 134px 0 80px; */
  padding: 0 0 180px;
  max-height: 100%;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home-banner-swiper-left > div {
  float: left;
  width: 100%;
  color: #000;
}
.home-banner-swiper-left .title-serif-70 {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.6s ease-in-out;
}
.home-banner-swiper-left .text-16 {
  max-width: 374px;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.6s ease-in-out;
}
.swiper-slide-visible .home-banner-swiper-left .title-serif-70,
.swiper-slide-visible .home-banner-swiper-left .text-16 {
  opacity: 1;
  transform: translateY(0);
}
.mobile-swiper-pagination-number-hold {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  display: none;
}
.mobile-swiper-pagination-number-hold span {
  display: block;
  width: 100%;
}
.swiper-slide-visible .mobile-swiper-pagination-number-hold span {
  color: #262626;
}
.swiper-slide-visible .mobile-swiper-pagination-number-hold span::after {
  -webkit-animation: swiper-timer-anim 6s forwards;
  animation: swiper-timer-anim 6s forwards;
}

.home-banner-swiper-right {
  float: left;
  width: 64%;
  max-height: 100%;
  padding-left: 40px;
  line-height: 0;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -ms-flex-line-pack: end;
  align-content: end;
}
.home-banner-swiper-img {
  display: inline-block;
  opacity: 0;
  transition: 0.6s ease-in-out;
  max-height: 100%;
}
.home-banner-swiper-img img {
  max-height: 100%;
}
.swiper-slide-visible .home-banner-swiper-img {
  opacity: 1;
}
.home-banner-swiper .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 105px;
  left: 0;
}
.swiper-pagination {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.swiper-pagination-number {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;

  width: auto;
  font-weight: 500;
  line-height: 1.19;
  padding-bottom: 15px;
  text-align: left;
  position: relative;
  background: transparent;
  border-radius: 0;
  height: auto;
  opacity: 1;
  margin: 0 20px 0 0 !important;
  transition: 0.2s ease-in-out;
}
.swiper-pagination-number:last-child {
  margin-right: 0 !important;
}
.swiper-pagination-number::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background: #0062A7;
  border-radius: 4px;
}
.swiper-pagination-number.swiper-pagination-bullet-active::after {
  -webkit-animation: swiper-timer-anim 6s forwards;
  animation: swiper-timer-anim 6s forwards;
}
.home-banner-swiper .swiper-pagination-number {
  color: #fff;
  border-bottom: 2px solid #fff;
}
.swiper-pagination-number.swiper-pagination-bullet-active {
  color: #0062A7 !important;
}
.home-large-swiper
  .swiper-pagination-number.swiper-pagination-bullet-active::after {
  -webkit-animation: swiper-timer-anim 4s forwards;
  animation: swiper-timer-anim 4s forwards;
}
@-webkit-keyframes swiper-timer-anim {
  to {
    width: 100%;
  }
}
@keyframes swiper-timer-anim {
  to {
    width: 100%;
  }
}

.home-services {
  padding-bottom: 190px;
}
.title-serif-60 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 60px;
}
.services-list ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  width: calc(100% + 21px);
}
.services-list ul li {
  float: left;
  width: calc(20% - 20px);
  margin: 0 20px 20px 0;
  background: #f9f9f9;
  -webkit-box-shadow: 0px 4px 20px #e4e2dc;
  box-shadow: 0px 4px 20px #e4e2dc;
  border-radius: 5px;
  overflow: hidden;
}
.services-list ul li::before {
  content: "";
  display: block;
  padding-bottom: 100%;
  float: left;
}
.services-list-main-box {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;

  width: 100%;
  height: 100%;
  padding: 20px;
  color: #262626;
  position: relative;
  transition: 0.2s ease-in-out;
}
.services-list-main-box::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #262626;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: 0.2s ease-in-out;
}
.services-list-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.services-list-box {
  position: relative;
  z-index: 1111;
}
.services-list-box-icon {
  margin-bottom: 20px;
}
.services-list-box-icon img {
  max-height: 77px;
  transition: 0.2s ease-in-out;
}

.services-list-hover::before {
	content: "";
	background: #3899e2;
	width: 100%;
	opacity: 0.65;
	height: 100%;
	z-index: 111;
	position: relative;
	display: block;
}

.services-list-title {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;

  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  min-height: 48px;
  max-width: 90%;
}
.services-list-main-box:hover {
  color: #fff;
}
.services-list-main-box:hover::after {
  background: #fff;
}
.services-list-main-box:hover .services-list-hover {
  opacity: 1;
}
.services-list-main-box:hover .services-list-box-icon img {
  -webkit-filter: grayscale(1) brightness(0) invert(1);
  filter: grayscale(1) brightness(0) invert(1);
}

.home-specialists {
  padding-bottom: 149px;
}
.home-specialists-top {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  margin-bottom: 60px;
}

.home-news .grid-container .home-specialists-top .title-serif-60 h2 {
  color: #333333;
}

.home-specialists-top .title-serif-60 h2 {
  color: #000;
}
.home-specialists-top > div {
  margin-bottom: 0;
}
.home-specialists-btn {
  padding-left: 40px;
}
.home-news-btn:hover a {
  color: #4FCDD7;
}


.btn-border-dark,
.btn-border-dark:focus,
.btn-border-dark:active {
  display: inline-block;
  cursor: pointer;
  border: 2px solid #4FCDD7;
  border-radius: 22px;
  padding: 9px 21px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.11;
  text-transform: uppercase;
  color: #4FCDD7;
  transition: 0.2s ease-in-out;
  text-align: center;
  white-space: nowrap;
}
.btn-border-dark span {
  display: inline-block;
  position: relative;
  padding-right: 42px;
}
.btn-border-dark span::after {
  content: "";
  width: 31px;
  height: 14px;
  background: url(../img/icon-arrow-long-black.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.btn-border-dark:hover {
  color: #262626;
  opacity: 0.7;
}
.btn-border-dark:hover span::after {
  right: -5px;
}

.btn-border-pink,
.btn-border-pink:focus,
.btn-border-pink:active {
  display: inline-block;
  cursor: pointer;
  border: 2px solid #4FCDD7;
  border-radius: 22px;
  padding: 9px 21px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.11;
  text-transform: uppercase;
  color: #4FCDD7;
  transition: 0.2s ease-in-out;
  text-align: center;
  white-space: nowrap;
}

.home-news-letter .cta-bottom-btn .btn-border-pink,
.btn-border-pink:focus,
.btn-border-pink:active {
	border: 2px solid #000;
	color: #000;
}

.home-news-letter .cta-bottom-btn .btn-border-pink span::after {
	background: url(../img/icon-arrow-long-black.svg) no-repeat center center;
}

.btn-border-pink span {
  display: inline-block;
  position: relative;
  padding-right: 42px;
}
.btn-border-pink span::after {
  content: "";
  width: 31px;
  height: 14px;
  background: url(../img/icon-arrow-long-pink.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.btn-border-pink:hover {
  color: #4FCDD7;
  opacity: 0.7;
}
.btn-border-pink:hover span::after {
  right: -5px;
}

.home-specialist-swiper {
  overflow: visible;
}
.home-specialist-swiper .swiper-slide {
  width: 350px;
}
.home-specialist-swiper .swiper-slide .specialist-list-image {
  padding-bottom: 114.3%;
}
.home-specialist-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  color: #262626;
  transition: 0.2s ease-in-out;
}
.home-specialist-swiper .swiper-slide a:hover {
  color: #262626;
  opacity: 0.7;
}
.specialist-list-image-hold {
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
.specialist-list-image {
  padding-bottom: 114.3%;
}
.specialist-list-name {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #000;
}
.specialist-list-position {
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 5px;
  color: #0062A7!important;
}
.specialist-list-location {
  font-size: 16px;
  line-height: 1.375;
  color: #54C0D3;
}

.home-large-swiper-box {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  position: relative;
}
.home-large-swiper-box img {
  max-height: 51vh;
}
.home-large-swiper-box-textbox {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  color: #4FCDD7;
}
.home-large-swiper-box-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 200px;
  line-height: 1;
  margin-bottom: 10px;
}
.home-large-swiper-box-text {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-large-swiper .swiper-wrapper {
  padding-bottom: 19.45%;
}
.home-large-swiper .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 120px;
  left: 0;
}
.home-large-swiper .swiper-pagination .swiper-pagination-number {
  color: #000;
  border-bottom: 2px solid #000;
}
.home-large-swiper .home-large-swiper-box img {
  opacity: 0;
  transition: 0.6s ease-in-out;
}
.home-large-swiper .home-large-swiper-box .home-large-swiper-box-textbox > div {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.6s ease-in-out;
}
.home-large-swiper .swiper-slide-visible .home-large-swiper-box img {
  opacity: 1;
}
.home-large-swiper
  .swiper-slide-visible
  .home-large-swiper-box
  .home-large-swiper-box-textbox
  > div {
  opacity: 1;
  transform: translateY(0);
}
.home-large-swiper .mobile-swiper-pagination-number-hold {
  bottom: 0;
}

.home-testimonials {
  padding-bottom: 145px;
}
.home-testimonials-top {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  margin-bottom: 107px;
}
.home-testimonials-top .title-serif-60 {
  max-width: 758px;
  margin-bottom: 0;
}
.home-testimonials-top-btn {
  padding-left: 20px;
}
.home-testimonials-top-btn ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.home-testimonials-top-btn ul li {
  float: left;
  margin-left: 20px;
}

.btn-social-42,
.btn-social-42:focus,
.btn-social-42:active {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.btn-social-42:hover {
  opacity: 0.7;
}
.btn-social-42 img {
  margin-right: 1px;
}
.home-testimonials-swiper .swiper-slide {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.home-testimonials-swiper-bg {
  float: left;
  width: 49.7%;
  border-radius: 5px;
  overflow: hidden;
  padding-bottom: 31%;
  z-index: 1;
}
.home-testimonials-swiper-textbox {
  float: left;
  width: 42.3%;
  padding: 40px 40px 40px;
  position: relative;
}
.home-testimonials-swiper-textbox .home-testimonials-swiper-nav-items {
  position: absolute;
  bottom: 0;
  left: 20px;
}
.home-testimonials-swiper-text {
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 33px;
}
.home-testimonials-swiper-name {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.home-testimonials-swiper-position {
  font-size: 16px;
  line-height: 1.375;
  color: #4FCDD7;
}
.home-testimonials-swiper-nav-hold {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  width: 100%;
}
.home-testimonials-swiper-nav-hold .swiper-pagination {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 16px;
  line-height: 1.375;
}
.home-testimonials-swiper-nav-hold .swiper-pagination .swiper-pagination-total {
  color: #4FCDD7;
}
.home-testimonials-swiper-nav-items {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.home-testimonials-swiper-nav {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  margin: 0 0 0 20px;
  opacity: 1 !important;
}
.home-testimonials-swiper-nav::after {
  display: none;
}
.home-testimonials-swiper-nav svg path {
  transition: 0.2s ease-in-out;
}
.home-testimonials-swiper-nav:hover svg path {
  fill: #fff;
}
.home-testimonials-swiper-nav.swiper-button-disabled svg path {
  fill: #fff;
}

.home-news {
  padding-bottom: 100px;
}
.large-news-items > ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  width: calc(100% + 20px);
}
.large-news-items > ul > li {
  float: left;
  width: calc(50% - 20px);
  margin: 0 20px 70px 0;
}
.large-news-items > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.2s ease-in-out;
  padding-bottom: 72px;
  color: #262626;
}
.large-news-items > ul > li > a::after {
  content: "";
  width: 70px;
  height: 42px;
  background: url(../img/icon-arrow-long-pink.svg) no-repeat center center;
  border: 2px solid #4FCDD7;
;
  border-radius: 22px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}
.large-news-items > ul > li > a:hover::after {
  background-position: center right 10px;
}
.large-news-items > ul > li > a:hover {
  color: #262626;
  opacity: 0.7;
}
.large-news-items-date {
  font-size: 16px;
  line-height: 1.375;
  color: #5C5C5C;
  margin-bottom: 15px;
}
.large-news-items-image {
  padding-bottom: 49.2%;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}
.large-news-items-image ul {
  position: absolute;
  right: 20px;
  bottom: 10px;
  left: 20px;
  margin: 0;
}
.large-news-items-image ul li {
  float: left;
  margin: 0 10px 10px 0;
  background: #4FCDD7;
  color: #fff;
  border-radius: 60px;
  padding: 6px 12px;
  font-size: 15px;
  line-height: 1.2;
}
.large-news-items-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  max-width: 442px;
}

.home-news-letter {
  position: relative;
  padding: 70px 0 0;
  border-radius: 50px 50px 0px 0px;
  background: #4FCDD7;
  color: #000;
  background-size: cover;
  margin-top: -41px;
  min-height: 355px;
}
.page-id-1340 .home-news-letter {
	padding: 40px 0 0;
	background: #E3F1FA;
} 

.home-news-letter-hold {
  position: relative;
  padding-bottom: 121px;
}
.home-news-letter-left {
  max-width: 620px;
}
.home-news-letter-form {
  margin-bottom: 32px;
  z-index: 11111;
  position: relative;
}
.home-news-letter-text {
  font-size: 14px;
  line-height: 1.43;
}
.home-news-letter-image {
  position: absolute;
  bottom: 15px;
  right: 0;
}
.home-news-letter-image img {
  max-height: 461px;
  max-width: 433px;
}

.specialist-page-section {
  padding: 178px 0 81px;
}
.specialist-page-section .title-serif-60 {
  margin-bottom: 33px;
}
.specialist-page-section-filter {
  position: relative;
  margin-bottom: 30px;
  z-index: 5;
}
.specialist-page-section-filter ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.specialist-page-section-filter ul li {
  float: left;
  width: calc(20% - 22px);
  margin: 0 22px 20px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.21;
  text-transform: uppercase;
  color: #000;
  border-bottom: 2px solid #000;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  padding: 15px 0;
}
.specialist-page-section-filter ul li.is-active {
  color: #0062A7!important;
  border-color: #0062A7;
}
.specialist-page-section-filter ul li:hover {
  color: #4FCDD7;
}
.specialist-page-section-filter > span {
  display: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-transform: uppercase;
  border-bottom: 2px solid #262626;
  padding: 15px 30px 15px 0;
  position: relative;
  cursor: pointer;
}
.specialist-page-section-filter > span::after {
  content: "";
  width: 13px;
  height: 9px;
  background: url(../img/icon-dropdown-chev.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.specialist-page-section-filter.is-active > span::after {
  transform: translateY(-50%) rotate(180deg);
}
.specialist-page-section-list ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  width: calc(100% + 20px);
  min-height: 481px;
}
.specialist-page-section-list ul li {
  float: left;
  width: calc(25% - 20px);
  margin: 0 20px 40px 0;
}
.specialist-page-section-list ul li a {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.2s ease-in-out;
  color: #262626;
}
.specialist-page-section-list ul li a:hover {
  color: #262626;
  opacity: 0.7;
}

.specialist-page-section .grid-container .title-serif-60 h1 {
	color: #000;
}

.specialist-inner-page-section {
  padding: 135px 0 186px;
}
.inner-page-back {
  margin-bottom: 49px;
}
.btn-back,
.btn-back:focus,
.btn-back:active {
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  font-size: 16px;
  line-height: 1.375;
  color: #000;
  padding-left: 30px;
}
.btn-back::before {
  content: "";
  width: 21px;
  height: 12px;
  background: url(../img/icon-btn-back-arrow.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.btn-back:hover {
  opacity: 0.7;
  color: #383839;
}
.btn-back:hover::before {
  left: -5px;
}
.specialist-inner-page-box {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  color: #000;
}
.specialist-inner-page-box-left {
  float: left;
  width: 59.83%;
  padding-right: 7%;
}
.specialist-inner-page-box-name {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 1;
  margin-bottom: 8px;
}
.specialist-inner-page-box-position {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #0062A7;
}
.specialist-inner-page-box-exp {
  margin-top: 37px;
}
.specialist-inner-page-box-exp ul li {
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 12px;
  position: relative;
  padding-left: 34px;
}
.specialist-inner-page-box-exp ul li span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 24px;
  text-align: center;
}
.specialist-inner-page-box-exp ul li a {
  text-decoration-line: underline;
  color: #4FCDD7;
  transition: 0.2s ease-in-out;
}
.specialist-inner-page-box-exp ul li a:hover {
  color: #0062A7;
  text-decoration-line: none;
}
.specialist-inner-page-box-exp ul li:last-child {
  margin-bottom: 0;
}
.specialist-inner-page-box-info {
  margin-top: 51px;
}
.specialist-inner-page-box-info-item {
  margin-bottom: 30px;
}
.specialist-inner-page-box-info-item:last-child {
  margin-bottom: 0;
}
.specialist-inner-page-box-info-title {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.specialist-inner-page-box-info-list ul li {
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 14px;
  position: relative;
  /* padding-left: 76px; */
}
.specialist-inner-page-box-info-list ul li:last-child {
  margin-bottom: 0;
}
.specialist-inner-page-box-info-list ul li span {
  display: inline-block;
  max-width: 50px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  position: absolute;
  top: -1px;
  left: 0;
}
.specialist-inner-page-box-right {
  float: left;
  width: 40.17%;
}
.specialist-inner-page-box-image {
  padding-bottom: 114.26%;
}

.news-page-intro {
  padding: 176px 0 40px;
  color: #000;
}
.news-page-list-section {
  padding: 60px 0 140px;
}
.news-page-list-section-top {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.news-page-list-section-top .title-serif-60 {
  margin-bottom: 0;
}
.news-page-list-section-top .news-page-list-filter {
  margin-left: 40px;
}
.news-page-list > ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  width: calc(100% + 20px);
}
.news-page-list > ul > li {
  float: left;
  width: calc(33.333% - 20px);
  margin: 0 20px 50px 0;
}
.news-page-list > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.2s ease-in-out;
  padding-bottom: 62px;
  color: #262626;
}
.news-page-list > ul > li > a::after {
  content: "";
  width: 70px;
  height: 42px;
  background: url(../img/icon-arrow-long-black.svg) no-repeat center center;
  border: 2px solid #262626;
  border-radius: 22px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}
.news-page-list > ul > li > a:hover::after {
  background-position: center right 10px;
}
.news-page-list > ul > li > a:hover {
  color: #262626;
  opacity: 0.7;
}
.news-page-list .large-news-items-image {
  padding-bottom: 50%;
}
.small-news-items-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.22;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* number of lines to show */
}
.news-page-list-filter > span {
  display: inline-block;
  width: 400px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-transform: uppercase;
  border-bottom: 2px solid #262626;
  padding: 15px 30px 15px 0;
  position: relative;
  cursor: pointer;
}
.news-page-list-filter > span::after {
  content: "";
  width: 13px;
  height: 9px;
  background: url(../img/icon-dropdown-chev.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.news-page-list-filter.is-active > span::after {
  transform: translateY(-50%) rotate(180deg);
}
.news-page-list-filter ul {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  border-radius: 4px;
  padding: 12px 11px;
}
.news-page-list-filter ul li {
  margin-bottom: 10px;
  padding: 4px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.21;
  text-transform: uppercase;
  color: #000;
  transition: 0.2s ease-in-out;
}
.news-page-list-filter ul li:last-child {
  margin-bottom: 0;
}
.news-page-list-filter ul li.is-active,
.news-page-list-filter ul li:hover {
  color: #000;
}

.news-inner-page-section {
  padding: 135px 0 149px;
}
.news-inner-page-box {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.news-inner-page-box-left {
  float: left;
  width: calc(100% - 232px);
  padding-right: 8.65%;
}
.news-inner-page-box-right {
  float: left;
  width: 232px;
  padding-top: 21px;
  color: #000;
}
.news-inner-page-info {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  margin-bottom: 20px;
}
.news-inner-page-info-cat ul li {
  float: left;
  margin: 0 10px 10px 0;
  background: #4FCDD7;
  border-radius: 60px;
  padding: 6px 12px;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
}
.news-inner-page-info-date {
  font-size: 16px;
  line-height: 1.375;
  color: #5c5c5c;
  padding-left: 20px;
  margin-bottom: 10px;
}
.news-inner-page-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 1;
  margin-bottom: 30px;
}
.news-inner-page-image {
  margin-bottom: 50px;
  margin-bottom: 30px;
  padding-bottom: 45%;
}
.news-inner-page-image img {
  border-radius: 5px;
}
.news-inner-page-box-right-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1;
  margin-bottom: 20px;
}
.news-inner-page-box-right-list ul li {
  margin-bottom: 30px;
}
.news-inner-page-box-right-list ul li:last-child {
  margin-bottom: 0;
}
.news-inner-page-box-right-list ul li a {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.2s ease-in-out;
}
.news-inner-page-box-right-list ul li a:hover {
  opacity: 0.7;
}
.news-inner-page-box-right-list-date {
  font-size: 10px;
  line-height: 1.4;
  color: #5c5c5c;
  margin-bottom: 8px;
}
.news-inner-page-box-right-list-img {
  padding-bottom: 50%;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 12px;
}
.news-inner-page-box-right-list-title {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.17;
  color: #262626;
}
.news-inner-page-content {
  padding-top: 20px;
}

.entry > :first-child {
  margin-top: 0;
}
.entry {
  color: #000;
}
.entry h1,
.entry h2,
.entry h3,
.entry h4,
.entry h5 {
  font-weight: 400;
  line-height: 1;
  margin: 30px 0 15px;
  color: #262626;
}
.entry h1 {
  font-size: 60px;
  margin: 0 0 50px;
}
.entry h2 {
  font-size: 45px;
}
.entry h3 {
  font-size: 30px;
  line-height: 1.2;
}
.entry h4 {
  font-size: 20px;
  line-height: 1.4;
}
.entry h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}
.entry p {
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 10px;
  color: #000;
}
.entry a {
  color: #595959;
  text-decoration: underline;
  transition: 0.2s ease-in-out;
}
.entry a:hover {
  color: #595959;
  text-decoration: none;
}
.entry img {
  margin: 30px 0;
}
.entry ul,
.entry ol {
  margin-left: 0;
}
.entry > ul,
.entry > ol {
  margin-bottom: 10px;
}
.entry ul li,
.entry ol li {
  font-size: 16px;
  line-height: 1.375;
  position: relative;
  margin-bottom: 0;
  padding-left: 25px;
}
.entry ol {
  counter-reset: item;
}
.entry > ul > li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #273a48;
}
.entry ol li:before {
  content: counters(item, ".") ".";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  color: #273a48;
}
.entry .table-scroll {
  margin-bottom: 10px;
}
.entry table {
  width: 100%;
  min-width: 400px;
  color: #353535;
}
.entry table th {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  color: #273a48;
  background: #f2e2d2;
  padding: 9px 21px;
  border-bottom: 1px solid #273a48;
  border-right: 1px solid #273a48;
}
.entry table th:last-child {
  border-right: none;
}
.entry table tbody tr {
  background: transparent !important;
}
.entry table tbody,
table tfoot,
table thead {
  border: none;
  background-color: transparent;
}
.entry table tr td {
  border-bottom: 1px solid #273a48;
  border-right: 1px solid #273a48;
  padding: 9px 21px;
  font-size: 15px;
  line-height: 22px;
}
.entry table tr td:first-child {
  font-weight: 500;
}
.entry table tr td:last-child {
  border-right: none;
}
.entry table p {
  margin-bottom: 0;
}

.home-news-letter.cta-bottom .title-serif-60 {
  margin-bottom: 30px;
}
.home-news-letter.cta-bottom .home-news-letter-left {
  max-width: 710px;
}

.services-page-section {
  padding: 176px 0 90px;
}
.services-page-section-box {
  max-width: 900px;
}
.services-page-section-img {
  padding-bottom: 44.45%;
  border-radius: 5px;
  margin-bottom: 50px;
  overflow: hidden;
}
.services-page-section-conditions {
  padding-top: 30px;
  border-top: 2px solid #0062A7;
  margin-top: 50px;
}
.services-page-section-conditions-box {
  max-width: 900px;
  background: #0062A7;
  border-radius: 5px;
  padding: 30px 30px;
}
.services-page-section-conditions-box .entry h5, .services-page-section-conditions-box .entry p {
color: #fff;	
}

.services-page-section-conditions-box-btn {
  margin-top: 30px;
}

.services-faq {
	padding: 4rem 0.5rem 130px 0.5rem;
	border-radius: 3rem 3rem 0 0;
  color: #000;
	background: #fff;
}
.services-faq .title-serif-60 {
  margin-bottom: 44px;
}
.faq-items .accordion {
  background: transparent;
}
.faq-items .accordion-item {
  border-bottom: 2px solid #262626;
  margin-bottom: 39px;
}
.faq-items .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-items .accordion-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #262626;
  padding: 10px 43px;
  border: none;
  background: transparent !important;
  transition: 0.2s ease-in-out;
}
.faq-items .accordion-title span {
  position: absolute;
  top: 10px;
  left: 0;
}
.faq-items .accordion-title::before {
  content: "";
  width: 14px;
  height: 8px;
  background: url(../img/icon-accordion-arrow-down-black.svg) no-repeat center
    center;
  background-size: contain !important;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
  margin: 0;
}
.faq-items .is-active .accordion-title::before {
  transform: translateY(-50%) rotate(180deg);
}
.faq-items .accordion-title:hover {
  opacity: 0.7;
}
.faq-items .accordion-content {
  display: none;
  padding: 30px 0 18px;
  border: none;
  background-color: transparent;
}

.services-clinics {
  padding-bottom: 110px;
	color: #000;
}
.clinics-list > ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  width: calc(100% + 20px);
}
.clinics-list > ul > li {
  float: left;
  width: calc(33.333% - 20px);
  margin: 0 20px 50px 0;
}
.clinics-list > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.2s ease-in-out;
  padding-bottom: 62px;
  color: #262626;
}
.clinics-list > ul > li > a::after {
  content: "";
  width: 70px;
  height: 42px;
  background: url(../img/icon-arrow-long-black.svg) no-repeat center center;
  border: 2px solid #262626;
  border-radius: 22px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}
.clinics-list > ul > li > a:hover::after {
  background-position: center right 10px;
}
.clinics-list > ul > li > a:hover {
  color: #262626;
  opacity: 0.7;
}
.clinics-list-img {
  padding-bottom: 50%;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}
.clinics-list-title {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 5px;
}
.clinics-list-loc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.375;
  color: #595959;
}

.prices-page-section-list {
  margin-bottom: 50px;
}
.prices-page-section-list .entry {
  margin-top: 35px;
  max-width: 900px;
}
.prices-page-section-list-items {
  padding-left: 43px;
}
.prices-page-section-list-item {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  margin-bottom: 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.375;
  max-width: 580px;
  position: relative;
}
.prices-page-section-list-item::after {
  content: "";
  width: 90%;
  height: 2px;
  border-bottom: 2px dashed #4FCDD7;
  position: absolute;
  bottom: 9px;
  left: 0;
  z-index: 0;
}
.prices-page-section-list-item.prices-page-section-list-item-noln::after {
  display: none;
}
.prices-page-section-list-item p {
  padding: 5px 0;
  background: #E2F1F7;
  position: relative;
}
.prices-page-section-list-item p span {
  position: relative;
  z-index: 2;
  background-color: #E3F1FA;
}
.prices-page-section-list-item p::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  top: 20px;
  left: 0;
  background: transparent;
  z-index: -2;
}
.prices-page-section-list-item .price {
	font-weight: 800;
	background-color: #E3F1FA;
	z-index: 111111;
}

.prices-page-section-list-item > span {
  display: inline-block;
  margin-left: 40px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  padding: 4px 0 4px 5px;
  background: #fff;
  white-space: nowrap;
}
.prices-page-section-top {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  margin-bottom: 40px;
}
.prices-page-section-top .title-serif-60 {
  margin-bottom: 0;
}

.prices-page-section-search {
  position: relative;
  max-width: 295px;
  width: 100%;
  margin-left: 40px;
}
.prices-page-section-search input,
.prices-page-section-search input:focus {
  height: 48px;
  box-shadow: none;
  margin: 0;
  border: none;
  background: transparent;
  outline: none;
  border-bottom: 2px solid #262626;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-transform: uppercase;
  color: #595959;
  padding: 16px 0;
}
.prices-page-section-search input::placeholder {
  color: #595959;
  opacity: 1;
}
.prices-page-section-search input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #595959;
  opacity: 1;
}
.prices-page-section-search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #595959;
  opacity: 1;
}
.prices-page-section-search input:-ms-input-placeholder {
  /* IE 10+ */
  color: #595959;
  opacity: 1;
}
.prices-page-section-search input:-moz-placeholder {
  /* Firefox 18- */
  color: #595959;
  opacity: 1;
}

.contacts-page-section {
  padding: 125px 0 112px;
}
.contacts-page-section-box {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.contacts-page-section-box-left {
  float: left;
  width: 295px;
}
.contacts-page-section-box-right {
  float: left;
  width: calc(100% - 295px);
  padding: 28px 0 0 69px;
}
.contacts-page-section-box-right-map {
  /*padding-bottom: 61.65%;*/
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.contacts-page-section-box-left-select {
  margin-bottom: 30px;
}
.contacts-page-section-box-left-select .select2-container {
  width: 100% !important;
}
.contacts-page-section-box-left-select
  .select2-container
  .select2-selection--single {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #262626;
  border-radius: 0;
  height: 49px;
}
.contacts-page-section-box-left-select
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  display: block;
  padding: 18px 30px 18px 0;
  height: 49px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-transform: uppercase;
  color: #262626;
}
.contacts-page-section-box-left-select
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  width: 13px;
  height: 8px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.contacts-page-section-box-left-select
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow::after {
  content: "";
  width: 13px;
  height: 8px;
  background: url(../img/icon-select-drop.svg) no-repeat center center;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}
.contacts-page-section-box-left-select
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
.contacts-page-section-box-left-select
  .select2-container--open
  .select2-selection__arrow::after {
  transform: rotate(180deg);
}

.select2-dropdown {
  border: none;
  background: #E3F1FA;
  -webkit-box-shadow: 0px 12px 13px rgba(37, 40, 43, 0.12);
  box-shadow: 0px 12px 13px rgba(37, 40, 43, 0.12);
  border-radius: 4px;
  padding: 11px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-transform: uppercase;
  color: #262626;
}
.select2-container--default .select2-results__option--selected {
  background-color: #f2e2d2;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f0f6fa;
  color: #262626;
}
.select2-results__option {
  padding: 12px 6px;
  margin-bottom: 6px;
}
.select2-results__option:last-child {
  margin-bottom: 0;
}

.contacts-page-section-box-left-items {
  overflow: hidden;
  position: relative;
  height: calc(100% - 79px);
}
.contacts-page-section-box-left-items::after {
  /*content: "";
  width: 100%;
  height: 100px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fcf9f4),
    to(rgba(252, 249, 244, 0))
  );
  background: -o-linear-gradient(top, #fcf9f4 0%, rgba(252, 249, 244, 0) 100%);
  background: linear-gradient(180deg, #fcf9f4 0%, rgba(252, 249, 244, 0) 100%);
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
  -ms-transform: matrix(1, 0, 0, -1, 0, 0);
  transform: matrix(1, 0, 0, -1, 0, 0);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none; */
}
.contacts-page-section-box-left-items-box {
  height: 100%;
  overflow: auto;
  max-height: 483px;
}
.contacts-page-section-box-left-item {
  margin-bottom: 15px;
}
.contacts-page-section-box-left-item:last-child {
  margin-bottom: 50px;
}
.contacts-page-section-box-left-item span {
  display: block;
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #000;
}
.contacts-page-section-box-left-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.375;
  color: #595959;
  margin-bottom: 10px;
}
.contacts-page-section-box-left-item p a {
  color: #595959;
  margin: 1rem 0;
}
.contacts-page-section-box-left-item p a:hover {
  color: #595959;
  opacity: 0.7;
}

.conctats-page-questions {
  padding-bottom: 161px;
}
.conctats-page-questions-left {
  padding-right: 48px;
  color: #000;
}
.conctats-page-questions-right {
  padding-left: 10px;
}
.contact-form,
.contact-form form {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.contact-form > div,
.contact-form form > div {
  float: left;
  width: 100%;
}
.contact-form .form-element {
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
.contact-form .form-element.form-element-left {
  float: left;
  width: 50%;
  padding-right: 10px;
}
.contact-form .form-element.form-element-right {
  float: left;
  width: 50%;
  padding-left: 10px;
}
.contact-form .form-element label {
  font-size: 16px;
  line-height: 1.375;
  color: #0062A7;
}
.contact-form .form-element label sup {
  color: #ee431e;
  top: -2px;
}
.contact-form .form-element input,
.contact-form .form-element input:focus,
.contact-form .form-element textarea,
.contact-form .form-element textarea:focus {
  background: transparent;
  outline: none;
  box-shadow: none;
  margin: 0;
  border: none;
  border-bottom: 2px solid #262626;
  padding: 5px 0 15px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.125;
  color: #262626;
  resize: none;
  height: 40px;
  min-height: 40px;
}
.contact-form .form-element .select2-container .select2-selection--single {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #262626;
  border-radius: 0;
  height: 49px;
}
.contact-form
  .form-element
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  display: block;
  padding: 18px 30px 18px 0;
  height: 49px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.125;
  color: #262626;
}
.contact-form
  .form-element
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  width: 13px;
  height: 8px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.contact-form
  .form-element
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow::after {
  content: "";
  width: 13px;
  height: 8px;
  background: url(../img/icon-select-drop.svg) no-repeat center center;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}
.contact-form
  .form-element
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
.contact-form
  .form-element
  .select2-container--open
  .select2-selection__arrow::after {
  transform: rotate(180deg);
}
.contact-form .form-element input::placeholder {
  color: #595959;
  opacity: 1;
}
.contact-form .form-element input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #595959;
  opacity: 1;
}
.contact-form .form-element input::-moz-placeholder {
  /* Firefox 19+ */
  color: #595959;
  opacity: 1;
}
.contact-form .form-element input:-ms-input-placeholder {
  /* IE 10+ */
  color: #595959;
  opacity: 1;
}
.contact-form .form-element input:-moz-placeholder {
  /* Firefox 18- */
  color: #595959;
  opacity: 1;
}
.contact-form .form-element textarea::placeholder {
  color: #595959;
  opacity: 1;
}
.contact-form .form-element textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #595959;
  opacity: 1;
}
.contact-form .form-element textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #595959;
  opacity: 1;
}
.contact-form .form-element textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #595959;
  opacity: 1;
}
.contact-form .form-element textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #595959;
  opacity: 1;
}
.contact-form .form-element-text {
  font-size: 14px;
  line-height: 1.43;
  margin-bottom: 30px;
  color: #000;
}
.contact-form .form-element-text a {
  color: #0062A7;
  text-decoration: underline;
}
.contact-form .form-element-text a:hover {
  color: #000;
  text-decoration: none;
}
.contact-form .form-element-btn {
  padding-top: 20px;
}
.contact-form .select2-container {
  width: 100% !important;
}

.about-us-why-section {
  padding: 176px 0 132px;
  color: #000;
}
.about-us-why-box {
  max-width: 900px;
  margin-bottom: 50px;
}
.about-us-why-image {
  padding-bottom: 44.45%;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 50px;
}
.about-us-why-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-us-why-list-item-text.entry > :last-child {
  margin-bottom: 0;
}
.about-us-why-list {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.about-us-why-list-item {
  float: left;
  width: 50%;
  margin-bottom: 60px;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.about-us-why-list-item > div {
  width: 100%;
}
.about-us-why-list-item:nth-child(odd) {
  padding-right: 10px;
}
.about-us-why-list-item:nth-child(even) {
  padding-left: 10px;
}
.about-us-why-list-item-textbox {
  margin-bottom: 50px;
}
.about-us-why-list-item-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-transform: uppercase;
  padding-bottom: 15px;
  border-bottom: 2px solid #262626;
  margin-bottom: 20px;
}
.about-us-why-list-item-image {
  padding-bottom: 50%;
  border-radius: 5px;
  overflow: hidden;
}

.about-us-treatment-items {
}
.about-us-treatment-item {
  margin-bottom: 75px;
}
.about-us-treatment-item-left {
  padding-right: 5.2%;
}
.about-us-treatment-item-left-title {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.about-us-treatment-item-left-title span {
  display: inline-block;
}
.about-us-treatment-item-left-title span:nth-child(odd) {
  padding-right: 10px;
}
.about-us-treatment-item-left-title span:nth-child(even) {
  padding-left: 10px;
}
.about-us-treatment-item-left-imgs {
  position: relative;
  padding-bottom: 47.12%;
  height: auto !important;
  border-radius: 5px;
  overflow: hidden;
}
.about-us-treatment-item-left-imgs .twentytwenty-handle {
  height: 49px !important;
  width: 49px !important;
  background: #4FCDD7 !important;
  border: none !important;
  border-radius: 50% !important;
  margin-top: -24px !important;
  margin-left: -24px !important;
  box-shadow: none !important;
}
.about-us-treatment-item-left-imgs .twentytwenty-handle::before,
.about-us-treatment-item-left-imgs .twentytwenty-handle::after {
  box-shadow: none !important;
  background: #4FCDD7 !important;
  border: none !important;
  margin-left: -2px !important;
}
.about-us-treatment-item-left-imgs .twentytwenty-left-arrow {
  display: inline-block !important;
  width: 8px !important;
  height: 13px !important;
  background: url(../img/img-before-after-left.svg) no-repeat center center !important;
  background-size: contain !important;
  border: none !important;
  margin: 0 !important;
  left: 9px !important;
  transform: translateY(-50%) !important;
}
.about-us-treatment-item-left-imgs .twentytwenty-right-arrow {
  display: inline-block !important;
  width: 8px !important;
  height: 13px !important;
  background: url(../img/img-before-after-right.svg) no-repeat center center !important;
  background-size: contain !important;
  border: none !important;
  margin: 0 !important;
  right: 9px !important;
  transform: translateY(-50%) !important;
}
.about-us-treatment-item-right {
  padding-top: 39px;
}
.about-us-treatment-item-right-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 25px;
}
.about-us-treatment-item-right-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.39;
  color: #595959;
}

.about-us-treatment-section {
  padding-bottom: 185px;
}
.about-us-treatment-video a {
  display: block;
  padding-bottom: 44.4%;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}
.about-us-treatment-video a::after {
  content: "";
  width: 129px;
  height: 129px;
  border-radius: 50%;
  background: #a08470 url(../img/icon-video-play-black.svg) no-repeat center
    center;
  background-size: 40px 46px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: 0.2s ease-in-out;
}
.about-us-treatment-video a:hover::after {
  opacity: 0.8;
}

.about-us-careers-section-top {
  margin-bottom: 69px;
}
.about-us-careers-section-top > :last-child {
  margin-bottom: 0;
}
.about-us-careers-section-top .title-serif-60 {
  margin-bottom: 30px;
  max-width: 900px;
}
.about-us-careers-section-top .text-16 {
  max-width: 567px;
}
.about-us-careers-section-list {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  width: calc(100% + 20px);
  margin-bottom: -60px;
}
.about-us-careers-section-list-item {
  float: left;
  width: calc(33.333% - 20px);
  margin: 0 20px 70px 0;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.about-us-careers-section-list-item > div {
  width: 100%;
}

.btn-link-underline,
.btn-link-underline:focus,
.btn-link-underline:active {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.11;
  color: #4FCDD7;
  position: relative;
  padding-bottom: 10px;
}
.btn-link-underline::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #4FCDD7;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.2s ease-in-out;
}
.btn-link-underline:hover {
  color: #fff;
}
.btn-link-underline:hover::after {
  opacity: 0;
}

.home-news-letter.cta-bottom.cta-bottom-careers .title-serif-60 {
  margin-bottom: 72px;
}
.cta-bottom-careers .home-news-letter-image img {
  max-height: 411px;
  transform: translateY(40px);
}

.registration-section {
  padding: 176px 0 160px;
}
.registration-section-left {
  padding-right: 9%;
}
.registration-section-right {
  padding-left: 10px;
}
.register-form-box-hold {
  background: #efe9e2;
  border-radius: 5px;
  display: none;
}
.register-form-box {
  background: #efe9e2;
  border-radius: 5px;
  padding: 30px 30px;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.register-form-box-item {
  float: left;
  width: 50%;
}
.register-form-box-item:nth-child(odd) {
  padding-right: 20px;
}
.register-form-box-item:nth-child(even) {
  padding-left: 30px;
}
.register-form-box-item > span {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.register-form-box-item ul li {
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 10px;
}
.register-form-box-item ul li:last-child {
  margin-bottom: 0;
}
.register-form-box-item ul li a,
.register-form-box-item ul li span {
  color: #a08470;
  transition: 0.2s ease-in-out;
}
.register-form-box-item ul li a:hover {
  color: #a08470;
  opacity: 0.7;
}
.registration-section-form-bottom {
  border-top: 2px solid #a08470;
  padding-top: 20px;
  font-size: 14px;
  line-height: 1.43;
  color: #595959;
  margin-top: 60px;
}
.contact-form .form-element-text input {
  display: none;
}
.contact-form .form-element-text label {
  width: 100%;
  padding-left: 44px;
  margin: 0;
  position: relative;
}
.contact-form .form-element-text label::after {
  content: "";
  width: 24px;
  height: 24px;
  border: 2px solid #262626;
  border-radius: 4px;
  position: absolute;
  top: -2px;
  left: 0;
  text-align: center;
  font-size: 16px;
  line-height: 19px;
  transition: 0.2s ease-in-out;
}
.contact-form .form-element-text input:checked + label::after {
  content: "\2713";
}

.reveal.from-success-reveal {
  background: #fef9f3;
  border-radius: 5px;
  max-width: 863px;
  width: 100%;
  padding: 140px 4% 80px;
}
.reveal.from-success-reveal .title-serif-60 {
  margin-bottom: 30px;
}
.reveal.from-success-reveal .text-16 {
  max-width: 507px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.from-success-reveal-btn {
  padding-top: 60px;
}
.btn-border-dark.btn-border-dark-back span {
  padding: 0 0 0 42px;
}
.btn-border-dark.btn-border-dark-back span::after {
  transform: translateY(-50%) scaleX(-1);
  right: auto;
  left: 0;
}
.btn-border-dark.btn-border-dark-back span:hover::after {
  left: -5px;
}
.reveal.from-success-reveal .close-button,
.reveal.from-success-reveal .close-button:focus,
.reveal.from-success-reveal .close-button:active {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/icon-modal-close.svg) no-repeat center center;
  position: absolute;
  top: 40px;
  right: 40px;
}
.reveal.from-success-reveal .close-button:hover {
  opacity: 0.7;
}

.services-page-section .title-serif-60 {
  margin-bottom: 30px;
  color: #000;
}
.about-us-responsibility-section .entry > :last-child {
  margin-bottom: 0;
}
.about-us-responsibility-section {
  padding-bottom: 161px;
}
.about-us-responsibility-section-list {
  padding-top: 100px;
}
.about-us-responsibility-section-list ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: calc(100% + 20px);
}
.about-us-responsibility-section-list ul li {
  float: left;
  width: calc(33.333% - 20px);
  margin: 0 20px 20px 0;
  padding-bottom: 15.9%;
  border-radius: 5px;
  overflow: hidden;
}

.about-us-partners-section {
  padding-bottom: 248px;
}
.about-us-partners-section-left {
  padding-right: 10%;
}
.about-us-partners-section-right ul {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  width: calc(100% + 20px);
}
.about-us-partners-section-right ul li {
  float: left;
  width: calc(33.333% - 20px);
  margin: 0 20px 50px 0;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  flex-wrap: wrap;
  -ms-flex-wrap: wrap;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about-us-partners-section-right ul li img {
  max-height: 50px;
}

.text-page-section {
  padding: 176px 0 161px;
  color: #000;
}
.text-page-section-box {
  max-width: 900px;
}
.text-page-section-box .title-serif-60 {
  margin-bottom: 51px;
}

.notice-bar {
  padding: 0 68px;
  position: fixed;
  bottom: 48px;
  right: 0;
  left: 0;
  pointer-events: none;
  padding: 0 15px;
  z-index: 100;
  display: none;
}
.notice-bar-hold {
  width: 100%;
  max-width: 1304px;
  margin: 0 auto;
  background: #fef9f3;
  border-radius: 40px;
  padding: 26px 4.8% 24px;
  pointer-events: all;
  -webkit-box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.notice-bar-hold > div {
  margin-right: 44px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.375;
  color: #262626;
}
.notice-bar-hold > div a {
  color: #262626;
  font-weight: 700;
  text-decoration: underline;
}
.notice-bar-hold > div a:hover {
  text-decoration: none;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ng {
  border: none !important;
  float: left !important;
  margin: 10px 0 !important;
  padding: 0 !important;
  color: #df0631 !important;
}
div.wpcf7-mail-sent-ok {
  float: left !important;
  border: none !important;
  padding: 0 !important;
  margin: 10px 0 !important;
}
span.wpcf7-not-valid-tip {
  display: none !important;
}
span.wpcf7-list-item {
  margin: 0 !important;
}
.form-element input.wpcf7-not-valid,
.form-element input.wpcf7-not-valid:focus,
.form-element textarea.wpcf7-not-valid,
.form-element textarea.wpcf7-not-valid:focus,
.form-element
  select.wpcf7-not-valid
  + .select2-container
  .select2-selection--single {
  border-color: #df0631;
}
.wpcf7 form .wpcf7-response-output {
  margin: 15px 0 0 !important;
  padding: 0 !important;
  border: none !important;
}

.codedropz-upload-handler {
  margin: 5px 0 !important;
  border: 2px dashed #262626 !important;
  border-radius: 0 !important;
  min-height: 60px;

  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.codedropz-upload-handler > div {
  width: 100%;
}
.codedropz-upload-container {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.codedropz-upload-inner {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.codedropz-upload-inner h3,
.codedropz-upload-inner span,
.codedropz-upload-inner .codedropz-btn-wrap {
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 1.125 !important;
  color: #595959 !important;
  margin: 0 !important;
}
.codedropz-upload-inner span {
  display: inline-block;
  margin: 0 3px !important;
}
.codedropz-upload-inner a {
  color: #0062A7;
  text-decoration: underline !important;
}
.codedropz-upload-inner a:hover {
  color: #4FCDD7;
  text-decoration: none !important;
}
.dnd-upload-status .dnd-upload-details .name span {
  color: #a08470 !important;
}
.dnd-upload-status .dnd-upload-details .dnd-progress-bar span {
  background: #a08470 !important;
}
.dnd-upload-status .dnd-upload-details .name em {
  color: #595959 !important;
}
.form-element-file-info {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  font-weight: 400;
  font-size: 12px;
  line-height: 1.01;
  color: #595959;
}
.form-element-file-info span {
  display: inline-block;
}
.form-element-file-info span:nth-child(odd) {
  margin-right: 10px;
}
.form-element-file-info span:nth-child(even) {
  margin-left: 10px;
}
.dnd-upload-counter {
  display: none !important;
}
.registration-section-right-clinics {
  display: none;
}

.header-main {
  position: relative;
  z-index: 2;
}

/* Animation */
.animated-list.in-view .fade-up {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: 0.6s ease-in-out;
}
.fade-in.in-view {
  opacity: 1;
}
.fade-in.fade-in-later {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.6s ease-in-out;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.fade-up-later {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.header-logo,
.hamburger,
.header-nav > ul > li,
.header-main .header-btns ul li,
.header-main .header-lang,
.header-bottom .header-bottom-img {
  transform: translateY(-80px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.header-logo.in-view,
.hamburger.in-view,
.header-nav.in-view > ul > li,
.header-main .header-btns.in-view ul li,
.header-main .header-lang.in-view,
.header-bottom.in-view .header-bottom-img {
  transform: translateY(0);
  opacity: 1;
}

.home-news-letter-form {
}
.home-news-letter-form .tnp-subscription {
  margin: 0;
  max-width: 100%;
  position: relative;
  padding-top: 20px;
}
.home-news-letter-form form {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.home-news-letter-form .tnp-subscription div.tnp-field {
  margin: 0;
}
.home-news-letter-form .tnp-subscription div.tnp-field.tnp-field-email {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;

  padding-right: 20px;
}
.home-news-letter-form .tnp-subscription div.tnp-field label {
  font-size: 14px;
  line-height: 1.42;
  color: #595959;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
}
.home-news-letter-form .tnp-subscription div.tnp-field input:not(.tnp-submit),
.home-news-letter-form
  .tnp-subscription
  div.tnp-field
  input:not(.tnp-submit):focus {
  height: 42px;
  background: transparent;
  box-shadow: none;
  outline: none;
  margin: 0;
  border: none;
  border-bottom: 2px solid #262626;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.11;
  color: #262626;
  padding: 11px 0;
}
.home-news-letter-form .tnp-subscription div.tnp-field input::placeholder {
  color: #595959;
  opacity: 1;
}
.home-news-letter-form
  .tnp-subscription
  div.tnp-field
  input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #595959;
  opacity: 1;
}
.home-news-letter-form .tnp-subscription div.tnp-field input::-moz-placeholder {
  /* Firefox 19+ */
  color: #595959;
  opacity: 1;
}
.home-news-letter-form
  .tnp-subscription
  div.tnp-field
  input:-ms-input-placeholder {
  /* IE 10+ */
  color: #595959;
  opacity: 1;
}
.home-news-letter-form .tnp-subscription div.tnp-field input:-moz-placeholder {
  /* Firefox 18- */
  color: #595959;
  opacity: 1;
}

.home-news-letter-form .tnp-subscription div.tnp-field-button {
  display: inline-block;
  cursor: pointer;
  border: 2px solid #262626;
  border-radius: 22px;
  position: relative;
  transition: 0.2s ease-in-out;
}
.home-news-letter-form .tnp-subscription div.tnp-field-button::after {
  content: "";
  width: 31px;
  height: 14px;
  background: url(../img/icon-arrow-long-black.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.home-news-letter-form .tnp-subscription div.tnp-field-button:hover {
  opacity: 0.7;
}
.home-news-letter-form .tnp-subscription div.tnp-field-button:hover::after {
  right: 16px;
}
.home-news-letter-form .tnp-subscription div.tnp-field input.tnp-submit,
.home-news-letter-form .tnp-subscription div.tnp-field input.tnp-submit:focus {
  padding: 9px 63px 9px 21px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.11;
  text-transform: uppercase;
  color: #37393a;
  transition: 0.2s ease-in-out;
  text-align: center;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
}

.acf-map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.acf-map img {
  max-width: inherit !important;
}

.home-specialist-swiper-nav {
  width: 43px;
  height: 43px;
  border: 2px solid #262626;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  transform: translateY(-100%);
  z-index: 2;
  cursor: pointer;
}
.home-specialist-swiper-nav.swiper-button-disabled {
  opacity: 0.2 !important;
}
.home-specialist-swiper-nav::after {
  display: none;
}
.home-specialist-swiper-nav svg {
  width: 21px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-specialist-swiper-nav-prev {
  left: 17px;
}
.home-specialist-swiper-nav-next {
  right: 17px;
}

/* Media */
@media screen and (max-width: 1239px) {
  .header-nav > ul > li {
    margin-right: 20px;
  }
  header .btn-dropdown,
  header .btn-dropdown:focus,
  header .btn-dropdown:active {
    min-width: 120px;
  }
	
	header .btn-dropdown-register,
	header .btn-dropdown-register:focus,
	header .btn-dropdown-register:active {
    	min-width: 120px;
	}
	
  header .btn-black,
  header .btn-black:focus,
  header .btn-black:active {
    min-width: 120px;
    font-size: 14px;
  }
  header .btn-dropdown > span {
    font-size: 14px;
    line-height: 1.11;
  }
  .header-right {
    padding-left: 10px;
  }
  .header-logo img {
    max-height: 70px!important;
    height: 70px!important;
    width: 192px;
    max-width: 192px;
    object-fit: contain;
  }

  .btn-dropdown-sub {
    right: 0;
  }
  .btn-dropdown > span {
    font-size: 18px;
    line-height: 1.11;
  }
  .btn-dropdown,
  .btn-dropdown:focus,
  .btn-dropdown:active {
    padding: 9px 14px;
  }
	
	.btn-dropdown-register-sub {
    right: 0;
	}
	.btn-dropdown-register > span {
    	font-size: 18px;
    	line-height: 1.11;
	}
	.btn-dropdown-register,
	.btn-dropdown-register:focus,
	.btn-dropdown-register:active {
    	padding: 9px 14px;
	}
	
  .btn-black,
  .btn-black:focus,
  .btn-black:active {
    font-size: 18px;
    line-height: 1.11;
    padding: 9px 14px;
  }
  .title-serif-70 {
    font-size: 56px;
  }
  .title-serif-60 {
    font-size: 46px;
  }
  .home-services {
    padding-bottom: 120px;
  }

  .home-news-letter-left {
    max-width: 480px;
  }
  .register-form-box-item {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 30px;
  }
  .register-form-box-item:last-child {
    margin-bottom: 0;
  }
  .home-banner-swiper-box {
    padding-top: 80px;
  }
  .home-large-swiper-box-title {
    font-size: 130px;
  }
  .home-large-swiper-box img {
    max-height: 25vw;
  }
  .home-large-swiper .swiper-wrapper {
    padding-bottom: 17.45%;
  }
} /* end of max-witdh 1239 */

@media only screen and (max-width: 1023px) {
  .hamburger {
    display: inline-block;
  }
  .header-right .header-nav,
  .header-right .header-btns,
  .header-right .header-lang {
    display: none;
  }
  .header-main {
    padding: 18px 0;
  }
  .header-lang {
    font-size: 18px;
    line-height: 1.11;
  }
  .header-lang > div {
    top: calc(100% + 10px);
  }
  .header-btns {
    margin: 0 0 30px;
  }
  .header-btns ul {
    width: 100%;
  }
  .header-btns ul li {
    width: 100%;
    margin: 0 0 30px;
  }
  .header-btns ul li > a,
  .header-btns ul li > span {
    width: 100%;
  }
  header .btn-black,
  header .btn-black:focus,
  header .btn-black:active {
    font-size: 18px;
  }
  header .btn-dropdown > span {
    font-size: 18px;
    line-height: 1.07;
  }

	
	header .btn-dropdown-register > span {
    font-size: 18px;
    line-height: 1.07;
 	}
	
	
  .footer-bottom-item {
    width: 100%;
    padding-right: 0;
    margin-bottom: 35px;
  }
  .footer-bottom-nav:not(.footer-bottom-nav-two) ul li {
    float: left;
    width: 50%;
    padding-right: 20px;
  }
  .footer-bottom-social ul li {
    float: left;
    margin: 0 20px 0 0;
  }
  .footer-bottom {
    padding-bottom: 15px;
  }
  .footer-copywrite-hold {
    padding: 50px 0 40px;
  }
  .footer-copywrite {
    font-size: 12px;
  }
  .footer-copywrite-left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
  .footer-copywrite-right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    margin-bottom: 26px;
  }
  .footer-copywrite ul li {
    width: 50%;
    margin: 0 0 14px 0;
    padding-right: 20px;
  }
  .lighter-top-radius {
    padding-top: 30px;
  }
  .title-serif-70 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .title-serif-60 {
    font-size: 35px;
    line-height: 1.29;
    margin-bottom: 30px;
  }
  .home-banner-swiper-left {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .home-banner-swiper-right {
    width: 100%;
    padding-left: 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .services-list ul li {
    float: left;
    width: calc(33.333% - 20px);
  }
  .home-specialists-top {
    margin-bottom: 50px;
  }
  .specialist-list-name {
    font-size: 20px;
  }
  .specialist-list-position {
    font-size: 14px;
  }
  .specialist-list-location {
    font-size: 14px;
  }
  .home-large-swiper-box-title {
    font-size: 100px;
  }
  .home-large-swiper-box-text {
    font-size: 20px;
  }
  .home-testimonials-top {
    display: block;
  }
  .home-testimonials-top-btn {
    padding-left: 0;
    margin-top: 30px;
  }
  .home-testimonials-top-btn ul li {
    margin: 0 20px 0 0;
  }
  .home-testimonials-top {
    margin-bottom: 60px;
  }
  .large-news-items > ul {
    width: 100%;
  }
  .large-news-items > ul > li {
    width: 100%;
    margin: 0 0 50px 0;
  }
  .home-news-letter-image {
    position: relative;
    bottom: 0;
  }
  .home-news-letter-hold {
    padding-bottom: 40px;
  }
  .home-news-letter-image {
    text-align: center;
  }
  .home-news-letter-image img {
    max-height: 305px;
    max-width: 223px;
  }
  .home-news-letter-left {
    margin-bottom: 50px;
  }
  .specialist-page-section-list ul li {
    width: calc(50% - 20px);
  }
  .specialist-inner-page-box-name {
    font-size: 30px;
  }
  .news-page-list > ul > li {
    width: calc(50% - 20px);
  }
  .news-inner-page-box-right {
    display: none;
  }
  .news-inner-page-box-left {
    width: 100%;
    padding-right: 0;
  }
  .home-news-letter {
    min-height: 1px;
  }
  .clinics-list > ul > li {
    width: calc(50% - 20px);
  }
  .conctats-page-questions-left {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .conctats-page-questions-right {
    padding-left: 0;
  }
  .contacts-page-section-box-left {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .contacts-page-section-box-right {
    width: 100%;
    padding: 0;
    margin-bottom: 18px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .about-us-treatment-items {
    padding-top: 10px;
  }
  .about-us-treatment-item-left {
    padding-right: 0;
  }
  .about-us-treatment-item-left-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .about-us-treatment-item-left-imgs {
    padding-bottom: 49.3%;
  }
  .about-us-treatment-item-left-imgs .twentytwenty-handle {
    height: 30px !important;
    width: 30px !important;
    margin-top: -15px !important;
    margin-left: -15px !important;
  }
  .about-us-treatment-item-left-imgs .twentytwenty-handle::before {
    margin-bottom: 15px;
  }
  .about-us-treatment-item-left-imgs .twentytwenty-handle::after {
    margin-top: 15px;
  }
  .about-us-treatment-item-left-imgs .twentytwenty-left-arrow {
    width: 5px !important;
    height: 9px !important;
    left: 5px !important;
  }
  .about-us-treatment-item-left-imgs .twentytwenty-right-arrow {
    width: 5px !important;
    height: 9px !important;
    right: 5px !important;
  }
  .about-us-treatment-item-right {
    padding-top: 20px;
  }
  .about-us-treatment-item-right-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .about-us-treatment-item-right-text {
    font-size: 16px;
  }
  .about-us-treatment-item {
    margin-bottom: 50px;
  }
  .about-us-treatment-section {
    padding-bottom: 160px;
  }
  .about-us-treatment-video a {
    padding-bottom: 49.3%;
  }
  .about-us-treatment-video a::after {
    width: 88px;
    height: 88px;
    background-size: 24px 26px;
  }
  .home-news-letter.cta-bottom.cta-bottom-careers .title-serif-60 {
    margin-bottom: 30px;
  }
  .cta-bottom-careers .home-news-letter-image img {
    transform: translateY(0);
  }
  .about-us-careers-section-list {
    width: 100%;
  }
  .about-us-careers-section-list-item {
    width: 100%;
    margin: 0 0 50px 0;
    display: block;
  }
  .about-us-careers-section-top {
    margin-bottom: 50px;
  }
  .registration-section-left {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .registration-section-right {
    padding-left: 0;
  }
  .registration-section {
    padding: 101px 0 120px;
  }
  .registration-section-form-bottom {
    padding-top: 30px;
    margin-top: 50px;
  }
  .reveal.from-success-reveal {
    max-width: 600px;
  }
  .about-us-responsibility-section-list {
    padding-top: 50px;
  }
  .about-us-responsibility-section-list ul {
    width: 100%;
  }
  .about-us-responsibility-section-list ul li {
    width: 100%;
    margin: 0 0 30px 0;
    padding-bottom: 49.3%;
  }
  .about-us-responsibility-section-list ul li:last-child {
    margin-bottom: 0;
  }
  .about-us-partners-section-left {
    padding-right: 0;
    margin-bottom: 42px;
  }
  .about-us-partners-section {
    padding-bottom: 120px;
  }
  .services-page-section.about-us-partners-section .title-serif-60 {
    margin-bottom: 30px;
  }
  .services-page-section.about-us-partners-section {
    padding-bottom: 60px;
  }
  .about-us-partners-section-right ul li {
    width: calc(50% - 20px);
    margin: 0 20px 30px 0;
  }
  .about-us-partners-section-right ul li img {
    max-height: 33px;
  }
  .notice-bar-hold > div {
    font-size: 14px;
  }
  .home-banner-swiper-box {
    padding-top: 150px;
  }
  .codedropz-upload-handler {
    min-height: 98px;
  }
  .home-news-letter-left {
    max-width: 100%;
  }
  .home-testimonials-swiper-bg {
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 69px;
  }
  .home-testimonials-swiper-textbox {
    width: 100%;
    padding: 0;
  }
  .home-testimonials-swiper .swiper-slide {
    display: block;
  }
  .home-testimonials-swiper-nav-hold {
    position: absolute;
    right: 0;
    left: 0;
  }
  .home-testimonials-swiper-text {
    margin-bottom: 9px;
  }
  .specialist-page-section-list ul li {
    margin: 0 20px 50px 0;
  }
  .specialist-page-section-filter > span {
    display: block;
  }
  .specialist-page-section-filter ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fef9f3;
    -webkit-box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
    box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
    border-radius: 4px;
    padding: 12px 11px;
  }
  .specialist-page-section-filter ul li {
    width: 100%;
    border-bottom: none;
    margin-bottom: 10px;
    padding: 4px 0;
  }
  .specialist-page-section-filter ul li:last-child {
    margin-bottom: 0;
  }
  .home-specialist-swiper-nav {
    top: 47%;
  }
} /* end of max-witdh 1023 */

@media screen and (max-width: 639px) {
  .header-main {
    padding: 14px 0;
  }
  .header-logo img {
    max-height: 25px;
  }
  .header-bottom {
    padding: 5px 0;
  }
  .header-bottom-img {
    padding: 0 0 0 24px;
  }
/*   .header-bottom-img img {
    max-height: 8px;
  } */
	footer {
    padding-top: 38px!important;
  } 
  footer::before {
    height: 41px;
    border-radius: 25px 25px 0px 0px;
  }
  .footer-top {
    padding-bottom: 40px;
    margin-bottom: 40px;
    display: block;
  }
  .footer-top-left {
    padding-right: 0;
  }
  .footer-top-left img {
    max-height: 48px!important;
  }
  .footer-top-right {
    padding-top: 30px;
  }
  .footer-top-right a {
    width: 100%;
  }
  .home-banner-swiper-box {
    padding-top: 101px;
  }
  .home-banner-swiper-img img {
    max-height: 358px;
  }
  .swiper-pagination {
    display: none;
  }
  .lighter-top-radius {
    padding-top: 10px;
  }
  .lighter-top-radius::before {
    height: 30px;
    border-radius: 25px 25px 0px 0px;
  }
  .mobile-swiper-pagination-number-hold {
    display: block;
  }
  .services-list ul {
    width: calc(100% + 15px);
  }
  .services-list ul li {
    width: calc(50% - 15px);
    margin: 0 15px 30px 0;
  }
  .services-list-main-box {
    padding: 16px 15px;
  }
  .services-list-title {
    font-size: 18px;
    min-height: 44px;
    max-width: 99%;
  }
  .services-list-box-icon {
    margin-bottom: 12px;
  }
  .services-list-box-icon img {
    max-height: 52px;
  }
  .home-services {
    padding-bottom: 90px;
  }
  .home-specialists-btn {
    padding: 30px 0 0;
  }
  .home-specialists-btn a {
    width: 100%;
  }
  .home-specialists {
    padding-bottom: 130px;
  }
  .home-specialist-swiper .swiper-slide {
    width: 218px;
  }
  .home-specialist-swiper .swiper-slide .specialist-list-image {
    padding-bottom: 112.3%;
  }
  .specialist-list-name {
    font-size: 14px;
    margin-bottom: 3px;
  }
  .specialist-list-position {
    font-size: 10px;
    margin-bottom: 3px;
  }
  .specialist-list-location {
    font-size: 10px;
  }
  .home-large-swiper-box-text {
    font-size: 18px;
  }
  .home-large-swiper-box img {
    max-height: 270px;
  }
  .home-large-swiper .swiper-wrapper {
    padding-bottom: 120px;
  }
  .home-large-swiper-box {
    margin-bottom: 84px;
  }
  .home-testimonials-top-btn ul li {
    margin: 0 15px 0 0;
  }
  .home-testimonials-top {
    margin-bottom: 30px;
  }
  .home-testimonials-swiper-nav-hold .swiper-pagination {
    display: block;
  }
  .home-testimonials {
    padding-bottom: 80px;
  }
  .home-news .home-specialists-top {
    margin-bottom: 30px;
  }
  .home-news .home-specialists-btn {
    padding: 0;
  }
  .large-news-items-date {
    margin-bottom: 10px;
  }
  .large-news-items-image ul {
    right: 10px;
    bottom: 0;
    left: 10px;
  }
  .large-news-items-title {
    font-size: 18px;
  }
  .large-news-items > ul > li > a {
    padding-bottom: 62px;
  }
  .home-news {
    padding-bottom: 121px;
  }
  .home-news-letter {
    padding: 45px 0 0;
    border-radius: 25px 25px 0px 0px;
    margin-top: -30px;
  }
  .specialist-page-section {
    padding: 101px 0 48px;
  }
  .specialist-inner-page-section {
    padding: 85px 0 89px;
  }
  .inner-page-back {
    display: none;
  }
  .specialist-inner-page-box-left {
    width: 100%;
    padding-right: 0;

    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .specialist-inner-page-box-right {
    width: 100%;
    margin-bottom: 30px;
  }
  .specialist-inner-page-box-name {
    margin-bottom: 5px;
  }
  .specialist-inner-page-box-position {
    font-size: 18px;
  }
  .specialist-inner-page-box-exp {
    margin-top: 31px;
  }
  /* .specialist-inner-page-box-info-list ul li {
        padding-left: 61px;
    } */
  .specialist-inner-page-box-info-list ul li span {
    font-size: 18px;
  }
  .news-page-intro {
    padding: 101px 0 70px;
  }
  .news-page-list-section-top {
    display: block;
    margin-bottom: 30px;
  }
  .news-page-list-section-top .title-serif-60 {
    margin-bottom: 20px;
  }
  .news-page-list-section-top .news-page-list-filter {
    margin-left: 0;
  }
  .news-page-list > ul {
    width: 100%;
  }
  .news-page-list > ul > li {
    width: 100%;
    margin: 0 0 50px 0;
  }
  .news-page-list-section {
    padding: 10px 0 40px;
  }
  .news-page-list-filter > span {
    width: 100%;
  }
  .news-inner-page-section {
    padding: 101px 0 110px;
  }
  .news-inner-page-info {
    display: block;
    margin-bottom: 30px;
  }
  .news-inner-page-info-cat {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .news-inner-page-info-date {
    padding-left: 0;
    margin-bottom: 0;
  }
  .news-inner-page-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .entry h1 {
    font-size: 36px;
    margin: 0 0 30px;
  }
  .entry h2 {
    font-size: 28px;
  }
  .entry h3 {
    font-size: 24px;
    line-height: 1.2;
  }
  .entry h4 {
    font-size: 18px;
  }
  .entry h5 {
    font-size: 18px;
  }
  .cta-bottom-btn a {
    width: 100%;
  }
  .home-news-letter.cta-bottom .title-serif-60 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .home-news-letter.cta-bottom .home-news-letter-left {
    margin-bottom: 25px;
  }
  .services-page-section {
    padding: 101px 0 120px;
  }
  .services-page-section-img {
    padding-bottom: 49.3%;
    margin-bottom: 30px;
  }
  .services-page-section-conditions {
    padding-top: 30px;
    margin-top: 30px;
  }
  .services-faq .title-serif-60 {
    margin-bottom: 20px;
  }
  .faq-items .accordion-title {
    font-size: 14px;
    padding: 14px 26px;
  }
  .faq-items .accordion-title::before {
    width: 16px;
  }
  .faq-items .accordion-title span {
    top: 15px;
  }
  .faq-items .accordion-content {
    padding: 15px 0 18px;
  }
  .faq-items .accordion-item {
    margin-bottom: 25px;
  }
  .services-faq {
    padding-bottom: 120px;
  }
  .clinics-list > ul {
    width: 100%;
  }
  .clinics-list > ul > li {
    width: 100%;
    margin: 0 0 50px 0;
  }
  .prices-page-section-top {
    display: block;
    margin-bottom: 20px;
  }
  .prices-page-section-top .title-serif-60 {
    margin-bottom: 20px;
  }
  .prices-page-section-search {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
  .prices-page-section-list-items {
    padding-left: 0;
  }
  .prices-page-section-list-item > span {
    margin-left: 20px;
    font-size: 18px;
    padding: 5px 0 5px 5px;
  }
  .services-page-section-conditions-box {
    padding: 20px 20px;
  }
  .services-page-section-conditions-box-btn a {
    width: 100%;
  }
  .contact-form .form-element.form-element-left {
    width: 100%;
    padding-right: 0;
  }
  .contact-form .form-element.form-element-right {
    width: 100%;
    padding-left: 0;
  }
  .contact-form .form-element-btn button {
    width: 100%;
  }
  .conctats-page-questions {
    padding-bottom: 89px;
  }
  .contacts-page-section-box-left-item span {
    font-size: 20px;
  }
  .about-us-why-section {
    padding: 101px 0 70px;
  }
  .about-us-why-box {
    margin-bottom: 30px;
  }
  .about-us-why-image {
    padding-bottom: 49.3%;
    margin-bottom: 30px;
  }
  .about-us-why-title {
    margin-bottom: 15px;
  }
  .about-us-why-list-item {
    width: 100%;
    margin-bottom: 50px;
    display: block;
    padding: 0 !important;
  }
  .about-us-why-list-item-textbox {
    margin-bottom: 30px;
  }
  .about-us-treatment-video a::after {
    width: 48px;
    height: 48px;
    background-size: 14px 16px;
  }
  .about-us-careers-section-top .title-serif-60 br {
    display: none;
  }
  .about-us-careers-section-list {
    margin-bottom: 0;
  }
  .about-us-careers-section-top {
    margin-bottom: 30px;
  }
  .form-element.register-form-box {
    padding: 20px 20px;
    margin: 20px 0 50px;
  }
  .reveal.from-success-reveal {
    border-radius: 0;
    max-width: 100%;
    padding: 70px 20px;
    text-align: left;
  }
  .from-success-reveal-btn {
    padding-top: 20px;
  }
  .reveal.from-success-reveal .text-16 {
    margin: 0 0 30px;
  }
  .from-success-reveal-btn a {
    width: 100%;
  }
  .reveal.from-success-reveal .close-button,
  .reveal.from-success-reveal .close-button:focus,
  .reveal.from-success-reveal .close-button:active {
    top: 30px;
    right: 30px;
  }
  .services-page-section .title-serif-60 {
    margin-bottom: 20px;
  }
  .about-us-responsibility-section-list {
    padding-top: 30px;
  }
  .services-page-section.about-us-responsibility-section {
    padding-bottom: 90px;
  }
  .text-page-section {
    padding: 101px 0 90px;
  }
  .text-page-section-box .title-serif-60 {
    margin-bottom: 50px;
  }
  .notice-bar-hold {
    display: block;
    padding: 19px 37px 24px;
  }
  .notice-bar-hold > div {
    margin: 0 0 19px;
  }
  .notice-bar-hold > span {
    width: 100%;
  }
  .register-form-box {
    padding: 20px 20px;
  }
  .home-news-letter-form form {
    display: block;
  }
  .home-news-letter-form .tnp-subscription div.tnp-field.tnp-field-email {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .home-news-letter-form .tnp-subscription div.tnp-field-button {
    width: 100%;
  }
  .home-news-letter-form .tnp-subscription div.tnp-field input.tnp-submit,
  .home-news-letter-form
    .tnp-subscription
    div.tnp-field
    input.tnp-submit:focus {
    padding: 9px 63px;
  }
  .home-specialist-swiper-nav-prev {
    left: 0;
  }
  .home-specialist-swiper-nav-next {
    right: 0;
  }
} /* end of max-witdh 639 */

@media screen and (max-width: 360px) {
  .home-testimonials-top-btn ul {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .home-testimonials-top-btn ul li:nth-child(3) {
    width: 100%;
    margin: 15px 0 0;
  }
  .form-element-file-info {
    font-size: 10px;
  }
  .codedropz-upload-inner h3,
  .codedropz-upload-inner span,
  .codedropz-upload-inner .codedropz-btn-wrap {
    font-size: 14px !important;
  }
} /* end of max-witdh 360 */

  .home-services.lighter-top-radius {
	color: #000!important;
  }
main {
	background-color: #E3F1FA;
}

.registration-section-left, .home-services {
	color: #000;
}
.specialist-page-section-list .specialist-list-name {
	color: #000!important;
}

.page-template-tp-about_our_partners .text-16 {
	color: #000;
}

.post-type-archive-news .news-page-list-section-top {
	color: #000;
}

.news-inner-page-title h1 {
	color: #000;
}

a {
	color: #4FCDD7;
}


.swiper.home-testimonials-swiper {
	display: flex;
}

.swiper-wrapper {
	width: 50%;
}
.home-large-swiper .swiper-wrapper {
	width: 100%;
}

@media all and (max-width: 1024px) {
	.swiper.home-testimonials-swiper {
		flex-direction: column;
	}
}

.title-newest-posts .news-page-list-filter {
	z-index: 111111;
}
footer .grid-container .footer-top {
	padding-top: 5px;
}

.specialist-page-section .specialist-list-image-hold .object-fit > img {
	object-position: top;
}
.home-specialist-swiper .specialist-list-image.object-fit img {
	object-position: top;
}

.header-btns .btn-dropdown > span::after {
	background: url(../img/icon-dropdown-chev-blue.svg) no-repeat center center;
}

.home-services, .home-services.white-top-radius::before {
	background: #7CD6E6;
}

.home-specialists.black-top-radius.black-top-radius-darker, .home-specialists.black-top-radius.black-top-radius-darker::before {
	background: #E3F1FA;
}

.home-testimonials, .home-testimonials.black-top-radius.black-top-radius-darker::before {
	background: #0062A7!important;
}

.about-us-why-section.about-us-careers-section .career-h2 {
	margin-top: 2rem;
}

.contacts-page-section h1 {
	color: #000;
}

/*.post-type-archive .news-page-list-section.lighter-top-radius.lighter-top-radius-darker {
	display: none;
}*/

.page-id-1314 .btn-link-underline {
	color: #000;
}
.page-id-1314 .btn-link-underline::after {
	background: #000;
}

.wpcf7 .btn-border-pink {
	border: 2px solid #000;
	color: #000;
}
.wpcf7 .btn-border-pink span::after {
	background: url(../img/icon-arrow-long-black.svg) no-repeat center center;
}

.home-news-letter.cta-bottom.cta-bottom-careers {
	margin-top: 1rem;
}

.rank-math-breadcrumb {
	margin-bottom: 2rem;
}

.rank-math-breadcrumb .separator, .rank-math-breadcrumb .last {
	color: #000;
}

span.font-weight-bold {
	font-weight: 900;
}

.rank-math-breadcrumb a {
	color: #0062A7;
}

.page-id-1380 .rank-math-breadcrumb {
	margin-top: 6rem;
}

.page-id-1380 .home-services {
	background: #E3F1FA;
}

span.font-weight-bold {
	font-weight: 600;
	color: #fff;
}

@media screen and (max-width: 450px) {
.home-banner-swiper-box {
    padding-top: 140px;
}
	.implantologia-video iframe {
		max-width: 317px;
  		height: 122%;
}
	.rank-math-breadcrumb {
		margin-top: 2rem;
	}
	}

body header {
	z-index: 111111111!important;
}

@media all and (max-width: 992px) {
	.page-template-tp-register_pl .grid-x, .page-id-1350 .text-page-section, .page-id-1336 .text-page-section-box, .page-id-1373 .text-page-section-box {
		margin-top: 2rem;
	}
/* 	.home-news-letter-image img {
		max-width: 450px;
		max-height: 100%;
} */
}

.cmplz-cookiebanner.cmplz-show {
	z-index: 11111111111111111;
}



.btn-dropdown-register,
.btn-dropdown-register:focus,
.btn-dropdown-register:active {
  display: inline-block;
  position: relative;
  cursor: pointer;
  border: 2px solid #4FCDD7;
  border-radius: 22px;
  padding: 11px 14px;
  min-width: 150px;
  text-align: center;
  line-height: 1.07;
  /*color: #262626;*/
  color: #fff;
  background: #4FCDD7;
  white-space: nowrap;
  transition: 0.2s ease-in-out;
}
.btn-dropdown-register a {
  /*color: #d32182;*/
}
.btn-dropdown-register::after {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  top: 100%;
  left: 0;
}
.btn-dropdown-register > span {
  display: inline-block;
  position: relative;
  padding-right: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.07;
  text-transform: uppercase;
}
.btn-dropdown-register > span::after {
  content: "";
  width: 13px;
  height: 9px;
  background: url(../img/icon-dropdown-chev-white.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.btn-dropdown-register.is-active > span::after {
  transform: translateY(-50%) rotate(180deg);
}
.btn-dropdown-register-sub {
  background: #fff;
  -webkit-box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  box-shadow: 0px 0px 8px rgba(37, 40, 43, 0.12);
  border-radius: 4px;
  padding: 2px 11px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 189px;
  text-align: left;
  display: none;
  z-index: 2;
  cursor: default;
}
.btn-dropdown-register-sub-item {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(217, 202, 189, 0.3);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.21;
}
.btn-dropdown-register-sub-item:last-child {
  border-bottom: none;
}
.btn-dropdown-register-sub-item p {
  margin-bottom: 5px;
  font-weight: 500;
  color: #262626;
}
.btn-dropdown-register-sub-item a {
  text-decoration: underline;
  font-weight: 500;
  color: #595959;
}
.btn-dropdown-register-sub-item a:hover {
  /*color: #595959;*/
  color: #4FCDD7;
  font-weight: 500;
  text-decoration: none;
}
.btn-dropdown-register:hover {
  /*opacity: 0.7;*/
  color: #000;
  background-color: #fff;
  background: transparent;
}
.btn-dropdown-register:hover > span {
  /*opacity: 0.7;*/
  color: #000;
  background-color: #fff;
  background: transparent;
}
.btn-dropdown-register:hover > span::after {
  background: url(../img/icon-dropdown-chev.svg) no-repeat center center;
}