.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.trin {
  animation-name: trin;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes trin {
  from {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes stretch {
  0% {
    color: #006b25;
  }
  100% {
    color: #045176;
  }
}
@-webkit-keyframes logoRes {
  from {
    opacity: 0;
    -webkit-transform: scale(0.7);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes logoRes {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes showDialog {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scale {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1.2);
  }
}
.scale {
  animation-name: scale;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running;
}

@-webkit-keyframes jump {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes jump {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 0;
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

video {
  width: 100%;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover, a:focus {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub.red, sup.red {
  color: #e31e26;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

p {
  font: 400 1.5rem/1.6 "Albert Sans", sans-serif;
}

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

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

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

td, th {
  padding: 0;
}

input[type=email], input[type=number], input[type=search], input[type=text], input[type=tel], input[type=url], input[type=password], textarea {
  -webkit-appearance: none;
  appearance: none;
}

ul, ol {
  list-style-position: inside;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

[class^=icon_], [class*=" icon_"], .icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

ul li, ol li {
  list-style: none;
}

.dialog_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 1500;
  padding: 0 1rem;
  overflow-y: auto;
}

.dialog {
  display: none;
  align-items: center;
  max-width: 40rem;
  margin: 4rem auto;
  min-height: calc(100% - 8rem);
}
.dialog.modal_small {
  max-width: 31rem;
}
.dialog.modal_medium {
  max-width: 40rem;
}
.dialog.modal_large {
  max-width: 85rem;
}
.dialog.modal_xlarge {
  max-width: 65vw;
}

.modal_wrap {
  width: 100%;
  padding: 2rem 3rem 2.5rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  border-top: 0.6rem solid #00ACCE;
  z-index: 1503;
  position: relative;
}
.modal_wrap .icon_close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #00ACCE;
  cursor: pointer;
  font-size: 3rem;
  transition: color 0.3s linear;
}
.modal_wrap .icon_close:focus {
  color: #dc3545;
}
.modal_wrap .icon_close .icon {
  display: block;
}
.modal_wrap .image_wrap {
  position: relative;
  width: 7rem;
  height: 7rem;
  line-height: 7rem;
  margin: -5.5rem auto 0;
  border-radius: 50%;
  text-align: center;
  background-color: #00ACCE;
}
.modal_wrap .image_wrap .icon {
  height: 4rem;
  width: 4rem;
  color: #ffffff;
  animation: zoomIn 0.5s both;
  animation-delay: 0.2s;
}
.modal_wrap .modal_text {
  text-align: center;
  margin: 2rem 0 0.5rem;
}
.modal_wrap .modal_text .modal_title {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #5C5C5C;
  text-transform: capitalize;
  margin: 0 auto;
}
.modal_wrap .modal_text p {
  margin: 0.5rem auto;
  max-width: 88%;
}
.modal_wrap .modal_buttons {
  font-size: 0;
  text-align: center;
  margin: 2rem auto 0;
  max-width: 35rem;
}
.modal_wrap .modal_buttons .button {
  width: calc(50% - 1.4rem);
  min-width: unset;
  margin: 0.5rem 0.7rem;
}

.dialog_bg {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.55);
}

.dialog_wrapper.visible, .dialog_bg.visible {
  display: block;
}

.dialog.visible {
  display: flex;
}

.dialog_opened {
  overflow: hidden;
  padding-right: 0.8rem;
}
.dialog_opened.dialog_scrollable_mobile {
  padding-right: 0;
}
.dialog_opened .dialog_bg, .dialog_opened .modal_wrap {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}
.dialog_opened .dialog_bg {
  animation-name: fadeIn;
}
.dialog_opened .modal_wrap {
  animation-name: showDialog;
}

/* common styles */
.modal_status.dialog .modal_wrap {
  color: #5C5C5C;
  background-color: #ffffff;
  text-align: center;
}
.modal_status.dialog .dialog_close.icon_close {
  display: none;
}
.modal_status.dialog .modal_text {
  margin: 2rem 0;
}
.modal_status.dialog .modal_text .modal_title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: initial;
  margin: 0 auto 1rem;
  max-width: 100%;
}
.modal_status.dialog .modal_text p {
  margin: 0.5rem auto;
  max-width: 88%;
}

/* modal_success */
.modal_success.dialog .modal_wrap {
  border-top: 0.6rem solid #28a745;
}
.modal_success.dialog .check_wrap {
  border: 0.2rem solid #28a745;
  overflow: hidden;
  animation: wrap 0.3s ease-in-out forwards;
  animation-delay: 0.3s;
  transform: scale(0);
}
.modal_success.dialog .check_wrap::before, .modal_success.dialog .check_wrap::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 0;
  height: 0.5rem;
  transform-origin: left;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.modal_success.dialog .check_wrap::before {
  top: 3.2rem;
  left: 2.1rem;
  transform: rotate(45deg);
  animation-name: left;
  animation-delay: 0.8s;
}
.modal_success.dialog .check_wrap::after {
  top: 4.2rem;
  left: 2.9rem;
  transform: rotate(-45deg);
  animation-name: right;
  animation-delay: 1.1s;
}

@keyframes wrap {
  0% {
    background-color: transparent;
    transform: scale(0);
  }
  100% {
    background-color: #28a745;
    transform: scale(1);
  }
}
@keyframes left {
  0% {
    width: 0;
  }
  100% {
    width: 1.5rem;
  }
}
@keyframes right {
  0% {
    width: 0;
  }
  100% {
    width: 3rem;
  }
}
/* modal_danger */
.modal_danger.dialog .modal_wrap {
  border-top: 0.6rem solid #dc3545;
}
.modal_danger.dialog .checkmark {
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  background-color: transparent;
  box-shadow: inset 0 0 0 #dc3545;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale2 0.3s ease-in-out 0.9s both;
}
.modal_danger.dialog .checkmark_circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #dc3545;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.modal_danger.dialog .checkmark_check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale2 {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0 0 0 5rem #dc3545;
  }
}
/* modal_warning */
.modal_warning.dialog {
  border-top: 0.6rem solid #ffb92e;
}
.modal_warning.dialog .image_wrap {
  background-color: #ffb92e;
}

/* modal_info */
.modal_info.dialog {
  border-top: 0.6rem solid #119eb5;
}
.modal_info.dialog .image_wrap {
  background-color: #119eb5;
}

.dialog .contact_form .modal_text {
  margin: 2rem 0;
}
.dialog .contact_form textarea.input {
  min-height: 7.3rem;
}
.dialog .contact_form .button {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: 2rem 0 0;
}
.dialog .contact_form .row_f [class*=col_] {
  width: calc(100% - 3.01rem);
}
.dialog .modal_wrap {
  background-color: #DCF4F8;
}

.modal_video.dialog {
  padding: 1.5rem;
  border: none;
  width: 65vw;
  max-width: 100%;
  flex-shrink: 0;
}

.modal_video.dialog .video_frame {
  width: 100%;
  height: 40rem;
  border-radius: 1.5rem;
}

.modal_video.dialog .icon_close {
  display: none;
}

.toast_notifications {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  z-index: 99999999;
}

.toast_notifications .toast, .toast_notifications .column {
  display: flex;
  align-items: center;
}

.toast_notifications .toast {
  width: 40rem;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 1.6rem 1.7rem;
  margin-bottom: 1rem;
  background: #ffffff;
  justify-content: space-between;
  animation: show_toast 0.3s ease forwards;
  box-shadow: 0 0.2rem 0.8rem 0 rgba(99, 99, 99, 0.2);
}

@keyframes show_toast {
  0% {
    transform: translateX(100%);
  }
  40% {
    transform: translateX(-5%);
  }
  80% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-10px);
  }
}
.toast_notifications .toast.hide {
  animation: hide_toast 0.3s ease forwards;
}

@keyframes hide_toast {
  0% {
    transform: translateX(-10px);
  }
  40% {
    transform: translateX(0%);
  }
  80% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(calc(100% + 20px));
  }
}
.toast::before {
  position: absolute;
  content: "";
  height: 0.3rem;
  width: 100%;
  bottom: 0;
  left: 0;
  animation: progress 4s linear forwards;
}

@keyframes progress {
  100% {
    width: 0%;
  }
}
.toast.success::before {
  background-color: #43B14B;
}

.toast.error::before {
  background-color: #FF3F0A;
}

.toast.warning::before {
  background-color: #D8CD31;
}

.toast.info::before {
  background-color: #4fc8f4;
}

.toast .column svg {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
}

.toast.success .column svg, .toast.success .column span {
  color: #43B14B;
}

.toast.error .column svg, .toast.error .column span {
  color: #E24D4C;
}

.toast.warning .column svg, .toast.warning .column span {
  color: #D8CD31;
}

.toast.info .column svg, .toast.info .column span {
  color: #4fc8f4;
}

.toast .column span {
  font-size: 1.6rem;
  font-weight: 600;
  margin-left: 1.2rem;
  color: #272727;
  flex-grow: 1;
}

.toast_notifications .removeTOAST {
  display: flex;
  cursor: pointer;
  flex-shrink: 0;
}

.toast_notifications .removeTOAST .icon {
  width: 1.6rem;
  height: 1.6rem;
  color: #000000;
  transition: 0.3s linear;
}

html {
  font-size: 62.5%;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-family: "Albert Sans", sans-serif;
  font-size: 1.6rem;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding-top: 14.6rem;
}

[disabled], .disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.clearfix::before, .row::before, .clearfix::after, .row::after {
  content: " ";
  display: table;
}

.clearfix::after, .row::after {
  clear: both;
}

.clearfix, .row {
  *zoom: 1;
}

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

.table {
  display: table;
}

.tableb {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
}

.trow {
  display: table-row;
}

.tcell {
  display: table-cell;
  vertical-align: middle;
}

.tc {
  text-align: center;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

hr {
  border-top: 1px solid #dbdbdb;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  clear: both;
  margin: 2.4rem 0;
}

hr.hr {
  border-top: 1px solid #dbdbdb;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  clear: initial;
  margin: 2rem 0;
}

hr.dotted {
  border-style: dotted;
}

hr.dashed {
  border-style: dashed;
}

::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.8rem;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-border-radius: 0;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: #045176;
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.slick-prev, .slick-next {
  background: transparent;
  border: 0.1rem solid #045176;
  font-size: 0;
  display: block;
  width: 4.9rem;
  height: 4.9rem;
  position: absolute;
  border-radius: 0.5rem;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 5;
  transition: 0.3s;
}
.slick-prev::after, .slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 0;
  height: 0;
  background-color: transparent;
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 1.6rem;
  border-color: transparent transparent transparent #045176;
  transition: 0.3s linear;
}

.slick-prev {
  left: 1.5rem;
}
.slick-prev::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.slick-next {
  right: 1.5rem;
}
.slick-next::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  display: flex;
  transform: translate(-50%, 0);
  z-index: 30;
}
.slick-dots li {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0 0.5rem;
  background: #DCF4F9;
  border-radius: 1.1rem;
  cursor: pointer;
}
.slick-dots li.slick-active {
  background: #045176;
  width: 3rem;
}
.slick-dots li:only-child {
  display: none;
}
.slick-dots li button {
  background: transparent;
  border: none;
  font-size: 0;
}

.row {
  margin: 0 -1.5rem;
}
.row:after {
  content: "";
  display: block;
  clear: both;
}
.row .col_1, .row .col_10, .row .col_11, .row .col_12, .row .col_2, .row .col_3, .row .col_4, .row .col_5, .row .col_6, .row .col_7, .row .col_8, .row .col_9 {
  float: left;
  margin: 0 1.5rem;
}
.row .col_1 {
  width: calc(8.3333333333% - 3.01rem);
}
.row .col_2 {
  width: calc(16.6666666667% - 3.01rem);
}
.row .col_3 {
  width: calc(25% - 3.01rem);
}
.row .col_4 {
  width: calc(33.3333333333% - 3.01rem);
}
.row .col_5 {
  width: calc(41.6666666667% - 3.01rem);
}
.row .col_6 {
  width: calc(50% - 3.01rem);
}
.row .col_7 {
  width: calc(58.3333333333% - 3.01rem);
}
.row .col_8 {
  width: calc(66.6666666667% - 3.01rem);
}
.row .col_9 {
  width: calc(75.0000000019% - 3.01rem);
}
.row .col_10 {
  width: calc(83.3333333333% - 3rem);
}
.row .col_11 {
  width: calc(91.6666666667% - 3.01rem);
}
.row .col_12 {
  width: calc(100% - 3.01rem);
}

.row_f {
  margin: 0 -1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.row_f .col_1, .row_f .col_2, .row_f .col_3, .row_f .col_4, .row_f .col_5, .row_f .col_6, .row_f .col_7, .row_f .col_8, .row_f .col_9, .row_f .col_10, .row_f .col_11, .row_f .col_12 {
  margin: 0 1.5rem;
}
.row_f .col_1 {
  width: calc(8.3333333333% - 3.01rem);
}
.row_f .col_2 {
  width: calc(16.6666666667% - 3.01rem);
}
.row_f .col_3 {
  width: calc(25% - 3.01rem);
}
.row_f .col_4 {
  width: calc(33.3333333333% - 3.01rem);
}
.row_f .col_5 {
  width: calc(41.6666666667% - 3.01rem);
}
.row_f .col_6 {
  width: calc(50% - 3.01rem);
}
.row_f .col_7 {
  width: calc(58.3333333333% - 3.01rem);
}
.row_f .col_8 {
  width: calc(66.6666666667% - 3.01rem);
}
.row_f .col_9 {
  width: calc(75.0000000019% - 3.01rem);
}
.row_f .col_10 {
  width: calc(83.3333333333% - 3.01rem);
}
.row_f .col_11 {
  width: calc(91.6666666667% - 3.01rem);
}
.row_f .col_12 {
  width: calc(100% - 3.01rem);
}

.map_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrapper {
  width: 100%;
  max-width: 108.9rem;
  padding: 0 2.5rem;
  margin: 0 auto;
  position: relative;
}
.wrapper::after {
  content: "";
  display: table;
  clear: both;
}
.wrapper.wrapper_full {
  max-width: 100%;
}
.wrapper.wrapper_small {
  max-width: 97rem;
}

.icon {
  line-height: 0;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

table.table {
  width: 100%;
}

::placeholder {
  color: #A4C6D6;
  transition: all 0.3s;
}

.form_item {
  margin: 1rem 0 1.5rem;
}
.form_item.form_item_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form_item.form_item_flex.form_item_captcha {
  flex-wrap: wrap;
  gap: 2rem 1.5rem;
}
.form_item .pre_input {
  display: block;
  margin: 0 0 0.3rem;
}

.input {
  display: block;
  width: 100%;
  max-width: 100%;
  font: 400 1.6rem "Heebo", sans-serif;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-bottom: 0.1rem solid #045176;
  background-color: transparent;
  color: #045176;
  border-radius: 0;
  transition: box-shadow 0.2s ease-in;
}
.input:focus, .input:active {
  outline-style: none;
}
.input::placeholder {
  font: 400 1.6rem "Heebo", sans-serif;
  color: #A4C6D6;
  opacity: 1;
  text-overflow: ellipsis;
}
.input:focus::placeholder {
  opacity: 0;
}
.input:-webkit-autofill, .input:-webkit-autofill:focus, .input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 4rem transparent inset !important;
  -webkit-text-fill-color: #5C5C5C !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield !important;
}

textarea.input {
  min-height: 12.8rem;
  padding-top: 0.5rem;
  resize: none;
}

select.input {
  line-height: normal;
  text-overflow: "";
  border-image: none;
  background: #DCF4F8;
}

select::-ms-expand {
  display: none;
}

.select_after {
  position: relative;
  display: block;
}
.select_after::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4rem 0 0.4rem 0.8rem;
  border-color: transparent transparent transparent #045176;
  pointer-events: none;
  transform: rotate(90deg);
}
.select_after select {
  padding: 0 2rem 0 0;
  color: #A4C6D6;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.select_after select.input:focus {
  padding: 0 2rem 0 1rem;
  color: #045176;
}

.custom_checkbox {
  position: absolute;
  left: -999.9rem;
}
.custom_checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
  margin: 0 2rem 0 0;
}
.custom_checkbox + label .checkbox_design {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #045176;
  background-color: transparent;
  border-radius: 0;
  position: relative;
  transform: scale(1);
  transition: all 0.2s ease;
}
.custom_checkbox + label .checkbox_design svg {
  position: absolute;
  top: 0.4rem;
  left: 0.3rem;
  width: 1.2rem;
  height: 1rem;
  fill: none;
  stroke: transparent;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1.6rem;
  stroke-dashoffset: 1.6rem;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.custom_checkbox + label .checkbox_design::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 50%;
  background-color: #045176;
  transform: scale(0);
}
.custom_checkbox + label .checkbox_text {
  display: inline-block;
  font: 400 1.6rem/1 "Heebo", sans-serif;
  color: #045176;
  padding: 0 0 0 1.2rem;
}
.custom_checkbox:checked + label .checkbox_design {
  background-color: #045176;
  border-color: #045176;
}
.custom_checkbox:checked + label .checkbox_design svg {
  stroke: #ffffff;
  stroke-dashoffset: 0;
}
.custom_checkbox:checked + label .checkbox_design::before {
  opacity: 0;
  transform: scale(3.5);
  transition: all 0.6s ease;
}

.pre_radio {
  font: 400 1.6rem "Heebo", sans-serif;
  color: #045176;
}

.custom_radio_button {
  position: absolute;
  left: -999.9rem;
}
.custom_radio_button + label {
  display: inline-flex;
  align-items: flex-start;
  user-select: none;
  cursor: pointer;
  font-size: 0;
  margin: 0 1.5rem 0;
}
.custom_radio_button + label .radio_button_design {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.1rem solid #045176;
  background-color: #ffffff;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
  margin: 0.4rem 0 0;
}
.custom_radio_button + label .radio_button_design::before, .custom_radio_button + label .radio_button_design::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #045176;
  transform: scale(0);
}
.custom_radio_button + label .radio_button_design::before {
  opacity: 1;
}
.custom_radio_button + label .radio_button_text {
  display: inline-block;
  font: 400 1.6rem "Heebo", sans-serif;
  padding: 0 0 0 0.5rem;
}
.custom_radio_button:checked + label .radio_button_design {
  border-color: #045176;
  border-width: 0.2rem;
}
.custom_radio_button:checked + label .radio_button_design::before, .custom_radio_button:checked + label .radio_button_design::after {
  transition: all 0.6s ease;
}
.custom_radio_button:checked + label .radio_button_design::before {
  opacity: 0;
  transform: scale(3.5);
}
.custom_radio_button:checked + label .radio_button_design::after {
  transform: scale(0.55);
}

.validate_error {
  border: 0.1rem solid #e57373 !important;
}
.validate_error::placeholder {
  color: #e31e26 !important;
}
.validate_error + .icon {
  color: #e57373 !important;
}

textarea.validate_error {
  border: 0.1rem solid #e57373 !important;
}

.input_file.validate_error + .input {
  border: 0.1rem solid #e57373 !important;
}
.input_file.validate_error + .input span {
  color: #e31e26 !important;
}

.validate_checkbox.validate_error {
  border: none !important;
}
.validate_checkbox.validate_error .checkbox + label::before {
  border: 0.1rem solid #e57373 !important;
}
.validate_checkbox.validate_error .custom_checkbox + label .checkbox_design {
  border: 0.1rem solid #e57373 !important;
}

.validate_radio.validate_error {
  border: none !important;
}
.validate_radio.validate_error .radio_button + label::before {
  border: 0.1rem solid #e57373 !important;
}
.validate_radio.validate_error .custom_radio_button + label .radio_button_design {
  border: 0.1rem solid #e57373 !important;
}

.button {
  display: inline-block;
  font: 600 1.6rem/5.1rem "Albert Sans", sans-serif;
  height: 5.1rem;
  min-width: 1rem;
  padding: 0 3.4rem;
  color: #045176;
  background: #fff;
  border: 0.1rem solid #00ACCE;
  border-radius: 0.5rem;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease-out;
  cursor: pointer;
  user-select: none;
  appearance: none;
  position: relative;
  max-width: 25.1rem;
  width: 100%;
}
.button:before, .button:after {
  content: "";
  position: absolute;
  width: 49%;
  height: 0.7rem;
  transition: 0.3s;
}
.button:before {
  bottom: -0.35rem;
  left: 0;
  background-color: #045176;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 99.942% 2.8%, 99.773% 10.4%, 99.498% 21.6%, 99.123% 35.2%, 98.655% 50%, 98.099% 64.8%, 97.46% 78.4%, 96.746% 89.6%, 95.962% 97.2%, 95.113% 100%, 95.113% 100%, 90.575% 100%, 82.259% 100%, 71.166% 100%, 58.301% 100%, 44.664% 100%, 31.258% 100%, 19.086% 100%, 9.151% 100%, 2.455% 100%, 0% 100%, 0% 0%);
}
.button:after {
  top: -0.35rem;
  right: 0;
  background-color: #00ACCE;
  clip-path: polygon(100% 100%, 0% 100%, 0% 100%, 0.058% 97.2%, 0.227% 89.6%, 0.502% 78.4%, 0.877% 64.8%, 1.345% 50%, 1.901% 35.2%, 2.54% 21.6%, 3.254% 10.4%, 4.038% 2.8%, 4.887% 0%, 4.887% 0%, 8.338% 0%, 16.024% 0%, 26.862% 0%, 39.768% 0%, 53.66% 0%, 67.454% 0%, 80.069% 0%, 90.42% 0%, 97.424% 0%, 100% 0%, 100% 100%);
}
.button.button_transparent {
  position: relative;
  z-index: 0;
  backdrop-filter: none;
  border: none;
  background-color: transparent;
}
.button.button_transparent .bg {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(to top, #045176, #00ACCE);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.button.button_2 {
  padding: 0.55em 1em 0.45em;
  line-height: normal;
  height: auto;
}
.button.small {
  font-size: 1.3rem;
  height: 3.5rem;
  line-height: 3.7rem;
}
.button.large {
  font-size: 2rem;
  height: 5.5rem;
  line-height: 5.5rem;
}
.button.light {
  color: #045176;
  background-color: #ffffff;
  border-color: #ffffff;
}
.button.light_2 {
  color: #00ACCE;
  background-color: #ffffff;
  border-color: #ffffff;
}
.button.dark {
  color: #ffffff;
  background-color: #00ACCE;
  border-color: #00ACCE;
}
.button.button_success {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.button.button_danger {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.button.button_warning {
  color: #5C5C5C;
  background-color: #ffb92e;
  border-color: #ffb92e;
}
.button.button_info {
  color: #ffffff;
  background-color: #119eb5;
  border-color: #119eb5;
}
.button.button_disable {
  color: #5C5C5C;
  background-color: #cccccc;
  border-color: #cccccc;
}
.button.button_default {
  color: #ffffff;
  background-color: #607487;
  border-color: #607487;
}
.button span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 3;
}
.button svg {
  display: inline-block;
  vertical-align: middle;
  fill: #ffffff;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.25em;
}
.button.btn_icon {
  position: relative;
  overflow: hidden;
}
.button.btn_icon svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: #ffffff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -3rem);
  transition: 0.2s linear;
  margin-right: 0;
}
.button.btn_icon span {
  color: #ffffff;
  display: block;
  transition: 0.2s linear;
}
.button.button_wide {
  padding: 0.9rem 3rem 0.7rem;
  line-height: normal;
  white-space: normal;
  height: auto;
}
.button.button_block {
  display: block;
  width: 100%;
}

.btn_mobile {
  display: none;
}

.aside_form_wrapper {
  margin: 0 0 2rem;
}

.overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.overlay_dark {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

section, .section {
  padding: 10rem 0;
}

.pagination {
  margin: 4rem 0 0;
  padding: 1rem 0;
  user-select: none;
  font-size: 0;
}
.pagination li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0.4rem;
  list-style: none;
}
.pagination li.active a {
  background-color: #045176;
  color: #ffffff;
  pointer-events: none;
}
.pagination li.pagination_arrow .icon {
  position: relative;
  top: -0.2rem;
}
.pagination li.pagination_arrow_prev .icon {
  transform: rotate(180deg);
}
.pagination li a {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  min-width: 3rem;
  height: 3rem;
  line-height: 3.2rem;
  padding: 0 0.5rem;
  background-color: #00ACCE;
  color: #ffffff;
  text-align: center;
  transition: 0.3s linear;
}

.social {
  font-size: 0;
  line-height: 0;
}
.social .social_block {
  display: inline-block;
  line-height: 0;
  margin: 0 1rem 0 0;
}
.social .social_block:last-child {
  margin: 0;
}
.social .social_block .icon, .social .social_block img {
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.3s ease-in-out;
  color: #045176;
}

h1, .h1 {
  font: 700 7.2rem/1.17 "Albert Sans", sans-serif;
  color: #045176;
  margin: 1rem 0 2.5rem;
  text-transform: unset;
}

h2, .h2 {
  font: 400 4.8rem/1.2 "Albert Sans", sans-serif;
  color: #045176;
  margin: 1rem 0 2rem;
  text-transform: unset;
  letter-spacing: -0.048rem;
}
h2 b, .h2 b {
  font-weight: 700;
}

.underline {
  position: relative;
  display: inline-block;
}
.underline:before {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #5C5C5C;
  transition: 0.3s;
}

.title {
  font: 400 4.8rem/1.2 "Albert Sans", sans-serif;
  color: #045176;
  margin: 1rem 0 2rem;
  text-transform: uppercase;
}
.title b {
  font-weight: 700;
}

.sub_title {
  font: 700 2.2rem/1.2 "Albert Sans", sans-serif;
  color: #045176;
  margin: 1rem 0 2rem;
  text-transform: uppercase;
}

h3, .h3 {
  font: 700 2.4rem/1.2 "Albert Sans", sans-serif;
  color: #045176;
  margin: 0;
  text-transform: capitalize;
}

h4, .h4 {
  font: 500 2.2rem/1.2 "Albert Sans", sans-serif;
  color: #5C5C5C;
  margin: 0;
  text-transform: capitalize;
}

h5, .h5 {
  font: 500 2rem/1.2 "Albert Sans", sans-serif;
  color: #5C5C5C;
  margin: 0;
  text-transform: capitalize;
}

h6, .h6 {
  font: 500 1.8rem/1.2 "Albert Sans", sans-serif;
  color: #5C5C5C;
  margin: 0;
  text-transform: capitalize;
}

.content h1, .content .h1 {
  font: 700 7.2rem/1.17 "Albert Sans", sans-serif;
  color: #045176;
  margin: 1rem 0 2rem;
  text-transform: unset;
}
.content h2, .content .h2, .content .title {
  font: 400 4.8rem/1.2 "Albert Sans", sans-serif;
  color: #045176;
  margin: 1rem 0 2rem;
  text-transform: unset;
  letter-spacing: -0.048rem;
}
.content h2 b, .content .h2 b, .content .title b {
  font-weight: 700;
}
.content h3, .content .h3 {
  font: 700 2.4rem/1.2 "Albert Sans", sans-serif;
  color: #045176;
  margin: 1rem 0;
  text-transform: uppercase;
}
.content h4, .content .h4 {
  font: 500 2.2rem/1.2 "Albert Sans", sans-serif;
  color: #5C5C5C;
  margin: 1rem 0;
  text-transform: capitalize;
}
.content h5, .content .h5 {
  font: 500 2rem/1.2 "Albert Sans", sans-serif;
  color: #5C5C5C;
  margin: 1rem 0;
  text-transform: capitalize;
}
.content h6, .content .h6 {
  font: 500 1.8rem/1.2 "Albert Sans", sans-serif;
  color: #5C5C5C;
  margin: 1rem 0;
  text-transform: capitalize;
}
.content p {
  margin: 0 0 1.5rem;
}
.content ul {
  margin-bottom: 2rem;
  /*		&.arrow_list {

  			li {

  				&::before{
  					background-image: url(/img/arrow_list.png);
  					background-repeat: no-repeat;
  					background-position: center;
  					background-size: 1.4rem 1.4rem;
  					width: 1.4rem;
  					height: 1.4rem;
  					border: none;
  					top: 0.5rem;
  					left: 0;
  					transform: none;
  				}
  			}
  		}*/
}
.content ul li {
  display: table;
  font: 400 1.6rem/1.5 "Albert Sans", sans-serif;
  color: #5C5C5C;
  padding: 0 0 0 2.2rem;
  margin: 1rem 0;
  position: relative;
  /*&::after{
    content: '';
    display: block;
    position: absolute;
    color: $main;
    left: -.2rem;
    width: 1.7rem;
    height: 1.7rem;
    top: 0;
    border: 0.2rem solid $main;
    border-radius: 50%;
  }*/
}
.content ul li p, .content ul li span {
  margin: 0;
}
.content ul li::before {
  content: "";
  display: block;
  position: absolute;
  color: #045176;
  top: 0.3rem;
  left: 0.5rem;
  width: 0.7rem;
  height: 1.2rem;
  border-style: solid;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(40deg);
}
.content ol {
  margin-bottom: 2rem;
  counter-reset: li;
}
.content ol li {
  display: table;
  font: 400 1.6rem/1.5 "Albert Sans", sans-serif;
  color: #5C5C5C;
  padding: 0 0 0 2rem;
  margin: 1rem 0;
  overflow: hidden;
}
.content ol li::before {
  margin-left: -2rem;
  counter-increment: li;
  content: counters(li, ".") ". ";
  color: #5C5C5C;
  font-weight: 700;
}
.content blockquote {
  padding: 0 0 0 4.1rem;
  margin: 0 0 3rem;
  clear: both;
  position: relative;
  color: #00ACCE;
}
.content blockquote p {
  font: 400 2rem/1.2 "Albert Sans", sans-serif;
  color: #00ACCE;
}
.content blockquote::after {
  content: "";
  display: block;
  width: 1rem;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
  background: #00ACCE;
}
.content a:not(.button) {
  display: inline-block;
  color: #00ACCE;
  font-weight: 600;
  transition: 0.3s linear;
  position: relative;
}
.content a:not(.button):before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1rem;
  bottom: 0;
  left: 0;
  background-color: #00ACCE;
  transition: 0.3s linear;
}
.content a:not(.button):focus {
  color: #045176;
}
.content img {
  height: auto !important;
}
.content ul:last-child,
.content ol:last-child,
.content table:last-child,
.content img:last-child,
.content iframe:last-child,
.content p:last-child {
  margin-bottom: 0;
}
.content iframe {
  width: 100%;
  height: 35rem;
}
.content table ul li, .content table ol li {
  display: block;
}
.content .content_table {
  width: 100%;
}
.content .content_table th {
  text-align: left;
  font-weight: 700;
  color: #ffffff;
}
.content .content_table th p {
  font-weight: 700;
  color: #ffffff;
}
.content .content_table tr:nth-child(odd) {
  background-color: #f7f7f7;
}
.content .content_table tr:first-child {
  background-color: #045176;
}
.content .content_table th, .content .content_table td {
  padding: 1rem;
}

p {
  font: 400 1.6rem/1.5 "Heebo", sans-serif;
  color: #5C5C5C;
  margin: 1rem 0;
}

[data-modals] {
  cursor: pointer;
}

.no_scroll {
  overflow: hidden;
}

.hide_desktop {
  display: none !important;
}

.map {
  padding: 0;
}
.map #map, .map iframe {
  height: 40rem;
  width: 100%;
  max-width: 100%;
}

.marker_info {
  text-align: center;
}

.marker_info p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0.2rem 0;
}

.marker_info .map_address {
  max-width: 23rem;
  margin: 0 auto;
}

.marker_info p a {
  color: #045176;
}

.img {
  display: block;
  width: 100%;
  max-width: 100%;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.page main {
  float: right;
  width: 70%;
}
.page aside {
  width: 25%;
  float: left;
}
.page.right_sidebar main {
  float: left;
  width: 70%;
}
.page.right_sidebar aside {
  width: 25%;
  float: right;
}

.inner_banner {
  background-color: #DCF4F8;
  position: relative;
  z-index: 2;
}

.inner_banner_row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.contact_body .inner_banner_form {
  max-width: 60%;
  width: 100%;
  padding: 9rem 0 10.3rem 13.3rem;
}
.contact_body .inner_banner_form .modal_title {
  display: none;
}
.contact_body .inner_banner_form .form_item {
  margin: 3rem 0;
}
.contact_body .inner_banner_form .form_item:last-child {
  margin: 3rem 0 0;
}

.contact_body .inner_banner_img {
  max-width: 40%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.contact_body .img_wrap {
  position: absolute;
  width: calc(40vw + 50%);
  margin-left: calc(-40vw + 50%);
  height: 100%;
  z-index: -1;
}
.contact_body .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact_body .inner_banner_content {
  position: absolute;
  top: 10rem;
  left: -1.6rem;
  width: 85%;
}
.inner_banner_content p{color: #045176;}
.inner_banner_content h1, .inner_banner_content .h1 {
  letter-spacing: -0.216rem;
  margin: 0 0 3rem;
}
.inner_banner_content .button {
  margin: 1.9rem 0 0;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 999;
  transition: 0.2s;
  background-color: #ffffff;
}
.header .header_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}
.header .navigation_wrap {
  background-color: #045176;
  padding: 1.6rem 0;
}
.header .header_contacts {
  display: flex;
  gap: 5rem;
}
.header .header_contacts_block {
  display: flex;
  flex-direction: column;
}
.header .header_contacts_block p {
  margin: 0 0 1rem;
  font: 500 1.6rem/1 "Heebo", sans-serif;
}
.header .header_contacts_block a {
  font: 800 2.4rem/1 "Albert Sans", sans-serif;
  color: #00ACCE;
}
.header .header_col_1 {
  width: 21.6rem;
}
.header .header_col_2 {
  width: calc(100% - 21.6rem);
  text-align: right;
  padding: 0 0 0 2rem;
}
.header .header_logo {
  display: inline-block;
  position: relative;
}
.header .header_logo img {
  width: 25.6rem;
}
.header .top_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .top_menu .social {
  margin: 0 2.6rem 0 0;
}
.header .top_menu .social a {
  margin: 0 2.2rem 0 0;
}
.header .top_menu .social a .icon, .header .top_menu .social a img {
  width: 2.8rem;
  height: 2.8rem;
}
.header .phone_block {
  display: flex;
}
.header .phone_block .phone {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 600;
  color: #5C5C5C;
  transition: 0.3s linear;
}
.header .phone_block .phone .icon {
  width: 3.2rem;
  height: 3.2rem;
  color: #045176;
  transition: 0.3s linear;
}
.header.fixed {
  position: fixed;
  animation: slide-down 0.7s;
  box-shadow: 0 0 1.5rem 0 rgba(92, 92, 92, 0.2);
}
.header.fixed .header_logo img {
  width: 20rem;
}
.header.fixed .top_menu {
  display: none;
}
.header.fixed .navigation {
  margin: 0;
}

.navigation .header_nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation .header_nav > li > a:not(.button) {
  font: 400 1.6rem "Heebo", sans-serif;
  color: #fff;
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
  padding: 0 3.3rem;
  position: relative;
  transition: 0.3s linear;
}
.navigation .header_nav > li > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 51%;
  right: 51%;
  bottom: 0;
  display: block;
  background-color: #fff;
  height: 0.1rem;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  z-index: 3;
}
.navigation .header_nav > li.active > a:not(.button) {
  font-weight: 700;
  color: #00ACCE;
}
.navigation .header_nav > li.active > a:not(.button):before {
  border-color: transparent transparent transparent #00ACCE;
}
.navigation .header_nav > li.dr_down {
  position: relative;
}
.navigation .header_nav > li.dr_down > a:not(.button) {
  padding: 0 3.6rem 0 3.3rem;
}
.navigation .header_nav > li.dr_down > a:not(.button):before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.3rem;
  display: inline-block;
  transform: translate(0, -50%) rotate(90deg);
  width: 0;
  height: 0;
  background-color: transparent;
  border-style: solid;
  border-width: 0.3rem 0 0.3rem 0.6rem;
  border-color: transparent transparent transparent #fff;
  z-index: 1;
}
.navigation .header_nav > li.header_btn {
  padding: 0 0 0 1rem;
}
.navigation .header_nav > li.mobile_social {
  display: none;
}
.navigation .header_nav .sub_menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 2rem;
  margin: 0.6rem 0 0;
  z-index: 3;
  min-width: 25rem;
  background-color: #00ACCE;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0.3rem rgba(92, 92, 92, 0.1);
  transform: translate3d(0, 1rem, 0);
}
.navigation .header_nav .sub_menu::before {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 100%;
  display: block;
  border-bottom: 0.6rem solid #00ACCE;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
}
.navigation .header_nav .sub_menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  display: block;
  width: 100%;
  height: 1rem;
}
.navigation .header_nav .sub_menu > li {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}
.navigation .header_nav .sub_menu > li > a:not(.button) {
  font-size: 1.4rem;
  color: #ffffff;
  display: block;
  padding: 0.9rem 1.5rem 0.7rem;
  white-space: pre-wrap;
  text-align: left;
  text-transform: uppercase;
  transition: 0.3s linear;
  border-left: 0.4rem solid #fff;
}

.navigation .header_nav > li.dr_down:focus .sub_menu {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.navigation_btn {
  display: none;
  width: 6.8rem;
  height: 2.4rem;
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  overflow: visible;
  cursor: pointer;
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  z-index: 600;
}
.navigation_btn .navigation_btn_text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  font: 500 1.6rem/1 "Albert Sans", sans-serif;
  color: #045176;
  margin: 0.3rem 0 0;
  transition: opacity 0.15s ease;
}
.navigation_btn .hamburger_box {
  display: block;
  width: 1.6rem;
  height: 0.6rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  transition-property: transform;
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="6" viewBox="0 0 16 6" fill="none"><path d="M16 2.5L0 0L0 6L16 4L16 2.5Z" fill="%23045176"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
.navigation_btn .hamburger_box::before, .navigation_btn .hamburger_box::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.6rem;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="6" viewBox="0 0 16 6" fill="none"><path d="M16 2.5L0 0L0 6L16 4L16 2.5Z" fill="%2300ACCE"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
.navigation_btn .hamburger_box::before {
  top: -0.6rem;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.navigation_btn .hamburger_box::after {
  bottom: -0.6rem;
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.navigation_btn.is_open .hamburger_box {
  transform: translate(0, -50%) rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #045176;
}
.navigation_btn.is_open .hamburger_box::before, .navigation_btn.is_open .hamburger_box::after {
  background-color: #045176;
}
.navigation_btn.is_open .hamburger_box::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.navigation_btn.is_open .hamburger_box::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.navigation_btn p {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #045176;
  margin: 0;
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translate(-50%, 0);
}

.mobile_phone {
  position: fixed;
  left: 0;
  right: 0;
  bottom: env(safe-area-inset-bottom);
  display: none;
  padding: 0.5rem 0;
  font: 700 3rem "Albert Sans", sans-serif;
  background-color: #045176;
  color: #ffffff;
  text-align: center;
  user-select: none;
  z-index: 300;
}
.mobile_phone svg {
  width: 2.4rem;
  height: 2.4rem;
}

.header_row_wrap .wrapper {
  max-width: 108.4rem;
}
.white_icon {color:#fff; height: 2rem; width: 2rem;}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .mobile_phone {
      bottom: 0;
    }
  }
}
.home_bar_space {
  position: fixed;
  left: 0;
  bottom: 0;
  display: none;
  width: 100%;
  height: env(safe-area-inset-bottom);
  background-color: #045176;
  z-index: 299;
}

.dark_overlay.nav_opened::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #5C5C5C;
  opacity: 0.8;
  z-index: 2;
}

.logo_sidebar {
  display: none;
}

.main_top {
  position: relative;
  padding: 0;
  z-index: 2;
  background-color: #DCF4F8;
  overflow: hidden;
}
.main_top .wrapper {
  max-width: 124.9rem;
}
.main_top .banner {
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
  position: relative;
  height: 53.6rem;
  z-index: 2;
  /*&::after {
  	content: '';
  	position: absolute;
  	top: 0;
  	left: 0;
  	display: block;
  	width: 100%;
  	height: 100%;
  	background-color: rgba($cb, .4);
  	z-index: -1;
  }*/
}
.main_top .banner .banner_img_wrap {
  position: absolute;
  width: calc(50vw + 50%);
  margin-left: calc(-50vw + 50%);
  height: 100%;
  z-index: -1;
  background-position: bottom right;
  background-size: cover;
  background-repeat: no-repeat;
}
.main_top .banner .banner_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}
.main_top .main_content {
  position: absolute;
  top: 51%;
  left: 50%;
  width: 100%;
  display: block;
  z-index: 4;
  transform: translate(-50%, -50%);
}
.main_top .main_content .wrapper {
  max-width: 125rem;
}
.main_top .main_content .text {
  max-width: calc(100% - 20rem);
  display: block;
  position: relative;
  pointer-events: auto;
}
.main_top .main_content .text h1, .main_top .main_content .text .h1, .main_top .main_content .text h2, .main_top .main_content .text .h2, .main_top .main_content .text h3, .main_top .main_content .text .h3, .main_top .main_content .text p {
  margin-top: 0;
}
.main_top .main_content .text .button {
  margin: 0.1rem 0 0;
}
.main_top .top_slider.hidden_slider {
  opacity: 0;
  overflow: hidden;
  max-height: 65rem;
}
.main_top .top_slider .slick-dots {
  bottom: 7rem;
}

.main_content_row {
  display: flex;
}

.main_top_overflow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.main_top_overflow_row {
  display: flex;
  justify-content: end;
}

.main_content_form_dummy {
  max-width: 29.9rem;
  width: 100%;
}

.main_content_form {
  pointer-events: auto;
  max-width: 29.9rem;
  width: 100%;
  padding: 5rem 0 3.8rem 5rem;
  background-color: #DCF4F8;
}
.main_content_form .form_wrap {
  margin-top: 3rem;
}
.main_content_form .button {
  max-width: 100%;
  width: 100%;
  margin: 3rem 0 0;
}

.welcome_to_sec {
  padding: 7.8rem 0 5rem;
}

.welcome_to_row {
  display: flex;
  gap: 2rem 4.5rem;
}

.welcome_to_aside {
  max-width: 31.85%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.welcome_to_aside ul {
  margin: 1rem 0 0;
  width: 100%;
  max-width: 100%;
}
.welcome_to_aside ul li {
  padding: 2.2rem 2rem 1.7rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  margin: 0 0 0.8rem;
  border-radius: 0.5rem;
  transition: 0.3s;
}
.welcome_to_aside ul li:last-child {
  margin: 0;
}
.welcome_to_aside ul li a {
  display: inline-block;
  position: relative;
  padding-right: 1.6rem;
  font: 500 1.6rem "Albert Sans", sans-serif;
  color: #00ACCE;
  transition: 0.3s;
  white-space: nowrap;
}
.welcome_to_aside ul li a svg {
  width: 0.8rem;
  height: 0.7rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  color: #00ACCE;
  stroke: #00ACCE;
  transition: 0.3s;
}
.welcome_to_aside ul li:hover {
  background-color: #00ACCE;
}
.welcome_to_aside ul li:hover a {
  color: #fff;
}
.welcome_to_aside ul li:hover a svg {
  color: #fff;
  stroke: #fff;
}
.welcome_to_aside ul li:hover .underline:before {
  width: 100%;
}
.welcome_to_aside .underline:before {
  width: 0;
  background-color: #fff;
}

.welcome_to_img {
  max-width: 75.2%;
  width: 100%;
  position: relative;
  aspect-ratio: 25/21;
  margin: 0 auto;
}
.welcome_to_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.welcome_img_text {
  position: relative;
  max-width: 100%;
  width: 100%;
  padding: 2.8rem 3rem 2.4rem;
  text-align: center;
  background-color: #DCF4F9;
  font-weight: 700;
  line-height: 1;
  color: #5C5C5C;
  border-radius: 0.5rem;
}
.welcome_img_text:before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: 50%;
  border-style: solid;
  border-width: 0.6rem 0 0.6rem 1.5rem;
  border-color: transparent transparent transparent #DCF4F9;
  pointer-events: none;
  transform: translate(-50%, 0) rotate(-90deg);
}

.welcome_to_content {
  margin: 1.8rem 0 0;
}
.welcome_to_content .button {
  margin: 1.8rem 0 0;
}

.main_services_sec {
  padding: 5rem 0;
}

.tc h2, .tc .h2 {
  margin: 0;
}

.main_services_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 3.5rem 2rem;
  margin: 3rem 0 3.3rem;
}

.main_service_item {
  display: flex;
  width: calc(50% - 1rem);
  align-items: center;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.main_service_item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 40%;
  width: 60%;
  height: 100%;
  z-index: -1;
}
.main_service_item p {
  color: #fff;
}
.main_service_item .main_service_name {
  margin: 0.4rem 0 2.6rem;
  color: #fff;
}
.main_service_item .main_service_name a {
  color: #fff;
}
.main_service_item .main_service_name a:before {
  content: none;
}
.main_service_item:nth-child(4n+1):before, .main_service_item:nth-child(4n+4):before {
  background-color: #00ACCE;
}
.main_service_item:nth-child(4n+1) .main_service_markers svg, .main_service_item:nth-child(4n+4) .main_service_markers svg {
  color: #045176;
}
.main_service_item:nth-child(4n+2):before, .main_service_item:nth-child(4n+3):before {
  background-color: #045176;
}
.main_service_item:nth-child(4n+2) .main_service_markers svg, .main_service_item:nth-child(4n+3) .main_service_markers svg {
  color: #00ACCE;
}

.main_service_content {
  padding: 2rem 2.4rem;
}

.main_service_img {
  display: block;
  width: 50%;
  flex-shrink: 0;
  aspect-ratio: 253/310;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  background-image: url("/img/images_bg.jpg");
  background-position: left top;
  background-size: cover;
}
.main_service_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

.main_service_markers {
  display: flex;
}
.main_service_markers svg {
  width: 0.9rem;
  height: 1.2rem;
  margin: 0;
}

.review_type {
  position: relative;
  padding-left: 7.2rem;
  font: 700 2.4rem/1.2 "Albert Sans", sans-serif;
  color: #045176;
  text-transform: uppercase;
  margin: 1.6rem 0 2.4rem;
}
.review_type svg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 5rem;
  height: 3.9rem;
  color: #DCF4F9;
}

.review_main_sec {
  overflow: hidden;
}

.review_main_row {
  margin: 2.8rem 0 0;
}
.review_main_row .wrapper {
  max-width: 60.5rem;
}

.review_slider {
  margin: 0 -1.7rem;
}
.review_slider.hidden_slider {
  opacity: 0;
  overflow: hidden;
  max-height: 43.3rem;
}
.review_slider .slick-list {
  overflow: visible !important;
}
.review_slider .review_item_slid {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  margin: 9.9rem 1.7rem 0.2rem;
  border-radius: 0.5rem;
}
.review_slider .review_item_slid.slick-slide.slick-active {
  margin: 0.2rem 1.7rem 9.9rem;
}

.reviews_item_footer {
  padding: 1.9rem 3.5rem 1.9rem 3rem;
  background-color: #DCF4F9;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  gap: 1.3rem 3rem;
}

.review_name_block {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-grow: 1;
}

.reviews_item_images {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.review_name {
  font: 500 2.2rem/1 "Albert Sans", sans-serif;
  color: #5C5C5C;
  flex-shrink: 0;
  flex-grow: 1;
  display: contents;
}

.review_name_image {
  max-width: 4.5rem;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #A4C6D6;
  overflow: hidden;
  flex-shrink: 0;
}
.review_name_image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.stars {
  display: flex;
}
.stars svg {
  width: 2.2rem;
  height: 2.2rem;
  color: #00ACCE;
}

.reviews_item_image svg {
  width: 2.4rem;
  height: 2.4rem;
}

.review_item_top {
  padding: 3rem 3.5rem 3rem 3rem;
}

.slider_dots_arrows_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.6rem;
}
.slider_dots_arrows_bottom.review_dots_arrows_bottom {
  position: absolute;
  left: 0;
  max-width: 100%;
  width: 100%;
  z-index: 10;
  bottom: 0;
}
.slider_dots_arrows_bottom .slick-dots {
  position: static;
  transform: none;
  z-index: 30;
}
.slider_dots_arrows_bottom .slick-arrow {
  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
  transform: unset;
}

.about_diamond_sec .wrapper {
  overflow: hidden;
}

.about_diamond_image {
  position: absolute;
  top: 0;
  right: 2.5rem;
  max-width: 33%;
  width: 100%;
  z-index: 3;
}

.about_diamond_inner_image {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 343/473;
  background-image: url("/img/images_bg2.jpg");
  background-position: left top;
  background-size: cover;
  z-index: 3;
  overflow: hidden;
  position: relative;
  border-radius: 0.5rem;
}
.about_diamond_inner_image img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

[data-type=white] td, [data-type=white] img, [data-type=white] h1, [data-type=white] h2, [data-type=white] h3, [data-type=white] h4, [data-type=white] h5, [data-type=white] h6, [data-type=white] .h1, [data-type=white] .h2, [data-type=white] .h3, [data-type=white] .h4, [data-type=white] .h5, [data-type=white] .h6, [data-type=white] p, [data-type=white] ul li, [data-type=white] ol li, .content[data-type=white] h1, .content[data-type=white] h2, .content[data-type=white] h3, .content[data-type=white] h4, .content[data-type=white] h5, .content[data-type=white] h6, .content[data-type=white] .h1, .content[data-type=white] .h2, .content[data-type=white] .h3, .content[data-type=white] .h4, .content[data-type=white] .h5, .content[data-type=white] .h6, .content[data-type=white] p, .content[data-type=white] ul li, .content[data-type=white] ol li {
  color: #fff;
}

.about_diamond_text {
  margin: 5.1rem 0 0;
  background-color: #045176;
  max-width: 78.5%;
  width: 100%;
  padding: 4rem 7.4rem 5rem 6rem;
  position: relative;
  z-index: 2;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.about_diamond_text_inner {
  max-width: 80.68%;
  width: 100%;
}

.about_diamond_rectangle {
  content: "";
  position: absolute;
  bottom: 0;
  right: 2.5rem;
  background-color: #00ACCE;
  max-width: 20.5%;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0% 100%);
  z-index: 1;
}

.about_diamond_rectangle2 {
  content: "";
  position: absolute;
  top: 0;
  right: 2.5rem;
  background-color: #00ACCE;
  max-width: 41%;
  width: 100%;
  height: 5.1rem;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.why_chose_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 3rem 6.4rem;
  margin: 3.8rem 0 0;
}

.why_chose_item {
  width: calc(33.3333333333% - 4.2666666667rem);
}
.why_chose_item .why_chose_item_name {
  margin: 1rem 0 3rem;
}
.why_chose_item:nth-child(3n+1) .why_chose_item_markers svg:nth-child(1) {
  color: #045176;
}
.why_chose_item:nth-child(3n+2) .why_chose_item_markers svg:nth-child(2) {
  color: #045176;
}
.why_chose_item:nth-child(3n+3) .why_chose_item_markers svg:nth-child(3) {
  color: #045176;
}

.why_chose_item_markers {
  display: flex;
}
.why_chose_item_markers svg {
  width: 1rem;
  height: 1.5rem;
  color: #00ACCE;
  margin: 0;
}

.our_locations_sec {
  padding: 5rem 0 10rem;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home_page .our_locations_sec {
  background-image: none !important;
}

.contact_body .our_locations_sec {
  padding: 10rem 0;
}

.our_locations_row {
  display: flex;
  margin: 3.5rem 0 0;
}

.location {
  max-width: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem 5.3rem;
  position: relative;
  z-index: 2;
}
.location p {
  margin: 0;
}
.location table {
  width: 31.1rem;
  margin: 1rem 0 2.2rem;
}
.location .location_svg_item {
  position: relative;
  padding-left: 2.6rem;
  margin: 0 0 1.2rem;
  display: inline-block;
  max-width: 23.3rem;
  width: 100%;
}
.location .location_svg_item svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.3rem;
  height: 1.7rem;
}
.location p.location_svg_item {
  margin: 0 0 2.2rem;
}
.location .location_name {
  margin: 0 0 2.8rem;
  text-transform: uppercase;
}
.location .operation_hours {
  position: relative;
  margin: 3rem 0 1rem;
  padding-left: 2.7rem;
}
.location .operation_hours svg {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  top: 0.3rem;
  left: 0;
}
.location td {
  font: 400 1.6rem "Heebo", sans-serif;
}
.location tr > td:first-child {
  position: relative;
  padding-left: 2.7rem;
}
.location tr > td:first-child:before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.5rem;
  display: block;
  width: 0.6rem;
  height: 0.8rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.location1 {
  background-color: #045176;
}
.location1 .operation_hours svg {
  color: #00ACCE;
}
.location1 .location_svg_item svg {
  color: #00ACCE;
}
.location1 tr > td:first-child:before {
  background-image: url("data:image/svg+xml;utf8,<svg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4.42105 12H3.57895L0 0H8L4.42105 12Z' fill='%2300ACCE'/></svg>");
}

.location2 {
  background-color: #00ACCE;
}
.location2 .operation_hours svg {
  color: #045176;
}
.location2 .location_svg_item svg {
  color: #045176;
}
.location2 tr > td:first-child:before {
  background-image: url("data:image/svg+xml;utf8,<svg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M4.42105 12H3.57895L0 0H8L4.42105 12Z' fill='%23045176'/></svg>");
}

.inner_banner_half .inner_banner {
  margin: 0 0 5rem;
  background-color: #ddf1f0;
}
.inner_banner_half .inner_banner_content {
  max-width: 52.3%; /*55.7*/
  width: 100%;
  padding: 6.6rem 3.5rem 6.8rem 0;
}
.inner_banner_half .inner_banner_img {
  max-width: 47.7%;
  width: 100%;
  position: relative;
  z-index: 2;
}
.inner_banner_half .img_wrap {
  position: absolute;
  width: calc(40vw + 50%);
  margin-right: calc(-40vw + 50%);
  height: 100%;
  z-index: -1;
}
.inner_banner_half .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: -10rem bottom;
}

.inner_banner_full .inner_banner {
  height: 48rem;
  background-color: #9BC5DD;
}
.inner_banner_full .inner_banner_full_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.inner_banner_full .inner_banner_row_absolute {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 100%;
}
.inner_banner_full .inner_banner_content {
  max-width: 75%;
  width: 100%;
}
.inner_banner_full .inner_banner_content p{max-width:500px;}

.services_body .main_services_row {
  margin-bottom: 5rem;
}
.services_body .why_chose_sec {
  padding: 10rem 0 7.5rem;
}
.services_body .our_locations_sec {
  padding: 7.5rem 0 10rem;
}

.cta1 {
  background-color: #045176;
  padding: 3rem 0;
}

.cta1_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cta1_row p {
  margin: 0;
}

.under_banner {
  padding: 3rem 0 3.6rem;
  background-color: #00ACCE;
}
.under_banner table {
  width: 100%;
}
.under_banner tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.under_banner tr > td {
  position: relative;
  padding-left: 4.4rem;
}
.under_banner tr > td:before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2217%22%20height%3D%2217%22%20viewBox%3D%220%200%2017%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M9.58856%206.8L15.1471%202.76533L16.9537%205.984L10.5613%208.47733L17%2011.016L15.1008%2014.28L9.58856%2010.2453L10.4223%2017H6.71662L7.45777%2010.2453L1.9455%2014.3707L0%2010.9707L6.39237%208.432L0%206.02933L1.85286%202.76533L7.50409%206.8L6.71662%200H10.4687L9.58856%206.8Z%22%20fill%3D%22%23A0D5EE%22/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  top: 0.3rem;
  left: 0;
  width: 1.7rem;
  height: 1.7rem;
}
.under_banner tr > td:first-child {
  padding-left: 0;
}
.under_banner tr > td:first-child:before {
  content: none;
}
.under_banner p {
  margin: 0;
}
.under_banner h3, .under_banner .h3 {
  text-transform: uppercase;
  margin: 0;
}

.service_content_section1 {
  padding: 9rem 0 10rem;
}
.service_content_section1 .wrapper {
  max-width: 109.1rem;
}
.service_content_section1 table {
  width: 100%;
  margin: 3rem 0;
}
.service_content_section1 table:first-child {
  margin-top: 5rem;
}
.service_content_section1 table:last-child {
  margin-bottom: 0;
}
.service_content_section1 tr {
  display: flex;
  align-items: center;
  gap: 0 10%;
  padding: 0 0 5rem;
}
.service_content_section1 tr:last-child {
  padding: 0;
}
.service_content_section1 td {
  max-width: 45%;
  width: 100%;
}
.service_content_section1 h3, .service_content_section1 .h3 {
  text-transform: uppercase;
  margin: 3rem 0 1.5rem;
}

.service_content_section2 {
  padding: 9rem 0 5rem;
}

.about_section1 {
  padding: 9rem 0 10rem;
}

.about_diamond_sec2 {
  overflow: hidden;
}

.about_diamond_image2 {
  position: absolute;
  top: -5.7rem;
  right: 2.5rem;
  max-width: 37.65%;
  width: 100%;
  z-index: 3;
  border-radius: 0.5rem;
}
.about_diamond_image2 .about_diamond_inner_image2 {
  position: relative;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 410/377;
  background-image: url("/img/images_bg2.jpg");
  background-position: left top;
  background-size: cover;
  z-index: 3;
  overflow: hidden;
  border-radius: 0.5rem;
}
.about_diamond_image2 img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about_diamond_text2 {
  margin: 5.7rem 0 0;
  background-color: #00ACCE;
  max-width: 90%;
  width: 100%;
  padding: 5rem 7.4rem 5rem 6rem;
  position: relative;
  z-index: 2;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.about_diamond_text2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
  height: 100%;
  background-color: #00ACCE;
  z-index: -1;
}

.about_diamond_text_inner2 {
  max-width: 66%;
  width: 100%;
}

.about_diamond2_rectangle {
  content: "";
  position: absolute;
  bottom: 0;
  right: 2.5rem;
  background-color: #045176;
  max-width: 9.56%;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 84%, 0% 100%);
  z-index: 1;
}

.about_diamond2_rectangle2 {
  content: "";
  position: absolute;
  top: -5.7rem;
  right: 2.5rem;
  background-color: #045176;
  max-width: 46%;
  width: 100%;
  height: 5.7rem;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}

.our_team_sec .wrapper {
  max-width: 114.8rem;
}

.our_team_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 5rem 4.1rem;
  max-width: 104rem;
  margin: 3rem auto 0 0;
}

.team_member {
  width: calc(33.3333333333% - 2.7333333333rem);
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}

.team_member_image {
  display: block;
  background-image: url("/img/team_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.team_member_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

.team_member_content {
  padding: 3rem;
}
.team_member_content .team_member_name {
  margin: 0 0 1rem;
}
.team_member_content .team_member_sub_title {
  margin: 1rem 0 2rem;
  color: #00ACCE;
}

.body_over_location {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.our_locations_sec {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.body_over_location footer {
  flex-shrink: 0;
}

.body_over_location .hide_on_several_pages {
  display: none;
}

.faqs .wrapper {
  max-width: 117rem;
}
.faqs .faqs_row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 8.2rem;
}
.faqs .welcome_to_aside {
  max-width: 29.56%;
}
.faqs .faqs_wrap {
  max-width: calc(70.44% - 8.2rem);
  width: 100%;
}
.faqs .faqs_item {
  position: relative;
  border-bottom: 0.1rem solid rgba(4, 81, 118, 0.1);
}
.faqs .faqs_question {
  font: 700 2rem/1.2 "Heebo", sans-serif;
  position: relative;
  padding: 2rem 0;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  color: #5C5C5C;
}
.faqs .faqs_content {
  display: none;
  padding: 0 0 2rem;
}

.faqs_aside_item {
  text-transform: uppercase;
}

.choose_procedure_sec {
  padding: 5rem 0;
}
.choose_procedure_sec h3, .choose_procedure_sec .h3 {
  margin: 0 0 3rem;
}

.choose_procedure_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1.4rem 1.9rem;
}

.gallery-button {
  text-transform: uppercase;
  display: inline-block;
  background-color: #fff;
  color: #00ACCE;
  position: relative;
  height: 6rem;
  font: 500 1.6rem/6rem "Albert Sans", sans-serif;
  padding: 0 4.4rem 0 2.4rem;
  cursor: pointer;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-out;
}
.gallery-button svg {
  width: 0.8rem;
  height: 0.7rem;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
  color: #00ACCE;
  stroke: #00ACCE;
  transition: 0.3s;
}
.gallery-button .underline:before {
  width: 0;
  background-color: #fff;
}
.gallery-button:hover {
  background-color: #00ACCE;
  color: #fff;
}
.gallery-button:hover svg {
  color: #fff;
  stroke: #fff;
}
.gallery-button:hover .underline:before {
  width: 100%;
}

.gallery_sec {
  padding: 5rem 0;
}
.gallery_sec .tc h2, .gallery_sec .tc .h2 {
  margin: 0 0 3rem;
}

.gallery_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3rem;
  margin: 2rem 0 3rem;
}

.gallery_item {
  width: calc(50% - 1.5rem);
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0 0.2rem;
}

.gallery_image {
  display: block;
  width: calc(50% - 0.1rem);
  position: relative;
  overflow: hidden;
  z-index: 2;
  aspect-ratio: 55/71;
  background-color: #C9D8D6;
}
.gallery_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
}
.gallery_image .gallery_badge {
  position: absolute;
  bottom: 1rem;
  z-index: 3;
  font: 500 1.6rem/3.6rem "Albert Sans", sans-serif;
  height: 3.6rem;
  padding: 0 1rem;
  background-color: #fff;
  color: #00ACCE;
  max-width: 8.5rem;
  width: 100%;
  text-align: center;
  border-radius: 0.5rem;
}
.gallery_image.gallery_image_before .gallery_badge {
  left: 1rem;
}
.gallery_image.gallery_image_after .gallery_badge {
  right: 1rem;
}

.first_visit_sec {
  padding: 9rem 0 5rem;
}

.first_visit_includes_sec {
  padding: 4rem 0 5rem;
}
.first_visit_includes_sec ol {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.8rem;
}
.first_visit_includes_sec ol li {
  counter-increment: item;
  margin: 0;
  position: relative;
  padding-top: 10rem;
}
.first_visit_includes_sec ol li h3, .first_visit_includes_sec ol li .h3 {
  text-transform: uppercase;
}
.first_visit_includes_sec ol li:before {
  content: counter(item) " ";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  color: #DCF4F9;
  font: 700 8.6rem/1 "Albert Sans", sans-serif;
  z-index: 1;
}
.first_visit_includes_sec ol li:after {
  content: "";
  border-top: 0.2rem solid #DCF4F9;
  position: absolute;
  left: 0;
  top: 6.7rem;
  width: 100%;
  height: 0.7rem;
  background-color: #fff;
  z-index: 2;
}
.first_visit_includes_sec h2, .first_visit_includes_sec .h2 {
  margin: 1rem 0 2.5rem;
}

.first_visit_includes2_sec {
  padding: 4rem 0 5rem;
}
.first_visit_includes2_sec h2, .first_visit_includes2_sec .h2 {
  margin: 1rem 0 3rem;
}
.first_visit_includes2_sec table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 3rem 0 0;
}
.first_visit_includes2_sec tr > td {
  padding: 0 3.7rem;
  vertical-align: top;
}
.first_visit_includes2_sec tr > td img, .first_visit_includes2_sec tr > td img:last-child {
  display: block;
  margin: 0 auto 2rem;
}
.first_visit_includes2_sec tr > td:first-child {
  padding-left: 0;
}
.first_visit_includes2_sec tr > td:last-child {
  padding-right: 0;
}

.follow_up {
  padding: 4rem 0 10rem;
}

.blog_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 5rem;
  margin: 3rem 0 4.5rem;
}

.bolg_item {
  width: calc(50% - 2.5rem);
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.bolg_item:nth-child(4n+1) .blog_content, .bolg_item:nth-child(4n+4) .blog_content {
  background-color: #00ACCE;
}
.bolg_item:nth-child(4n+1) .blog_content:before, .bolg_item:nth-child(4n+4) .blog_content:before {
  background-color: #00ACCE;
}
.bolg_item:nth-child(4n+1) .link, .bolg_item:nth-child(4n+4) .link {
  color: #045176;
}
.bolg_item:nth-child(4n+1) .link:before, .bolg_item:nth-child(4n+4) .link:before {
  background-color: #045176;
}
.bolg_item:nth-child(4n+2) .blog_content, .bolg_item:nth-child(4n+3) .blog_content {
  background-color: #045176;
}
.bolg_item:nth-child(4n+2) .blog_content:before, .bolg_item:nth-child(4n+3) .blog_content:before {
  background-color: #045176;
}
.bolg_item:nth-child(4n+2) .link, .bolg_item:nth-child(4n+3) .link {
  color: #00ACCE;
}
.bolg_item:nth-child(4n+2) .link:before, .bolg_item:nth-child(4n+3) .link:before {
  background-color: #00ACCE;
}

.bolg_image {
  display: block;
  width: 49.56%;
  min-height: 40.3rem;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  flex-shrink: 0;
  background-color: rgba(218, 234, 232, 0.9);
  border-radius: 0.5rem;
}
.bolg_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s;
}

.blog_content {
  width: 50.44%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  padding: 3rem 2.5rem 3rem 1.6rem;
}
.blog_content:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1rem;
  height: 100%;
  width: 1.1rem;
  z-index: 3;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.blog_date {
  font: 700 1.6rem "Albert Sans", sans-serif;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1.5rem;
}

.blog_name {
  margin: 1.5rem 0 3rem;
}
.blog_name a:not(.button) {
  color: #fff;
}
.blog_name a:not(.button):before {
  content: none;
}

.blog_text {
  margin: 3rem 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.blog_buttons {
  margin-top: auto;
}

.testimonials_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 3rem 7rem;
  margin: 3rem 0 5rem;
}

.testimonials_item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 3.5rem);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.testimonials_item .review_item_top {
  padding: 3rem 3.1rem 3rem 2.4rem;
}
.testimonials_item .reviews_item_footer {
  margin-top: auto;
  padding: 2.2rem 3.1rem 1.6rem 2.4rem;
}
.testimonials_item .reviews_item_images {
  gap: 0.7rem;
}

.tc .button {
  max-width: unset;
  width: unset;
}

.blog_post_sec {
  padding: 5rem 0 5rem;
}

.title_wrap h1, .title_wrap .h1 {
  margin: 1rem 0 5rem;
}
.title_wrap p:not([class]) {
  margin: 5rem 0;
}
.title_wrap p:not([class]):last-child {
  margin-bottom: 0;
}

.title_wrap .title_wrap_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 7.4rem;
  margin: 0 0 2rem;
}
.title_wrap .title_wrap_inner p:not([class]) {
  font: 500 1.6rem/1 "Albert Sans", sans-serif;
  margin: 0;
  color: #00ACCE;
}
.title_wrap .title_wrap_inner .date_time_blog_post {
  color: #5C5C5C;
  font: 700 1.6rem/1 "Albert Sans", sans-serif;
}

.blog_post_content h2, .blog_post_content .h2 {
  margin: 3rem 0;
}
.blog_post_content h3, .blog_post_content .h3 {
  margin: 3rem 0;
}

.blog_post_row {
  display: flex;
  gap: 1rem 3rem;
  position: relative;
  margin: 5rem 0 0;
}
.blog_post_row .share_sticky {
  top: 17rem;
  position: sticky;
}
.blog_post_row h2:first-child, .blog_post_row .h2:first-child {
  margin-top: 0;
}
.blog_post_row .sharethis-inline-share-buttons {
  display: flex !important;
  flex-direction: column !important;
  width: 3.7rem;
}
.blog_post_row .sharethis-inline-share-buttons .st-btn[data-network=sharethis],
.blog_post_row .sharethis-inline-share-buttons .st-btn[data-network=email],
.blog_post_row .sharethis-inline-share-buttons .st-btn[data-network=pinterest],
.blog_post_row .sharethis-inline-share-buttons .st-btn[data-network=twitter],
.blog_post_row .sharethis-inline-share-buttons .st-btn[data-network=facebook] {
  display: block !important;
  width: 3.6rem;
  margin: 0 0 0.7rem !important;
  background-color: #00ACCE !important;
}
.blog_post_row .sharethis-inline-share-buttons .st-btn[data-network=email] img {
  width: 1.6rem;
  height: 1.6rem;
}

.services_sec {
  padding: 9rem 0 10rem;
}

.show_on_mobile {
  display: none;
}

.page_404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page_404 footer {
  flex-shrink: 0;
}

.block_404 {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.block_404_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.block_404_content h1, .block_404_content .h1 {
  color: #045176;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
}
.block_404_content h1 span, .block_404_content .h1 span {
  color: #00ACCE;
  display: block;
  font-size: 18rem;
  line-height: 1;
}

footer {
  padding: 3rem 0 0;
  background: #DCF4F9;
  position: relative;
  z-index: 3;
}
footer .footer_title {
  font-weight: 600;
  color: #045176;
  margin: 0 0 2rem;
  text-transform: capitalize;
}
footer p {
  display: block;
  color: #5C5C5C;
  font: 400 1.6rem/1.4 "Heebo", sans-serif;
  margin: 1rem 0;
}
footer a {
  display: inline-block;
  font: 400 1.6rem/1.4 "Heebo", sans-serif;
  color: #5C5C5C;
  transition: 0.3s linear;
}
footer br {
  display: none;
}
footer .footer_row {
  display: grid;
  grid-template-columns: 26.1rem 27.6rem 31.5rem;
  justify-content: space-between;
  gap: 3rem;
}
footer ul {
  column-count: 2;
  gap: 0 6rem;
}
footer ul li {
  margin: 0 0 1.2rem;
}
footer ul li:last-child {
  margin: 0;
}
footer .footer_blog .name {
  margin: 0 0 0.9rem;
}
footer .footer_blog .name a {
  font-weight: 700;
  color: #045176;
}
footer .footer_blog .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-bottom: 1rem;
}
footer .footer_sub_col:last-child {
  margin: 5.8rem 0 0;
}

.footer_bottom {
  padding: 1.8rem 0;
  margin: 3rem 0 0;
  position: relative;
  z-index: 3;
  background-color: #fff;
}
.footer_bottom p, .footer_bottom a {
  font: 400 1.6rem/1.4 "Heebo", sans-serif;
}
.footer_bottom p {
  margin: 0;
  color: #5C5C5C;
}
.footer_bottom a {
  transition: 0.3s linear;
  color: #002A4E;
}
.footer_bottom a svg {
  width: 4.1rem;
  height: 2.8rem;
  margin: 0 1rem 0 1.9rem;
  transition: transform 0.2s cubic-bezier(0.42, 0, 0.32, 1.42) !important;
}

.footer_bottom_row {
  display: flex;
  justify-content: space-between;
  gap: 1.3rem;
}
body.about_body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.about_section1{
  flex-grow: 1;
}
body.about_body footer{
  flex-shrink: 0;
}

@-moz-document url-prefix() {}
@media only screen and (min-width: 993px) {
  .navigation .header_nav > li.dr_down:hover .sub_menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  .header .header_contacts_block a:hover {
    color: #045176;
  }
  .navigation .header_nav > li > a:not(.button):hover {
    color: #fff;
  }
  .navigation .header_nav > li > a:not(.button):hover::after {
    left: 2rem;
    right: 2rem;
  }
  .navigation .header_nav > li.dr_down > a:not(.button):hover::after {
    left: 5rem;
  }
  .navigation .header_nav .sub_menu > li > a:not(.button):hover {
    color: #045176;
    border-color: #045176;
  }
  footer a:hover {
    color: #045176;
  }
  .footer_bottom a:hover {
    color: #00ACCE;
  }
  .footer_bottom .footer_logo:hover #left-bot, .footer_logo:hover #left-small, .footer_logo:focus #left-bot, .footer_logo:focus #left-small {
    transform: translate(-0.3rem, 0.3rem);
  }
  .footer_bottom .footer_logo:hover #right-top, .footer_logo:hover #right-small, .footer_logo:hover #small, .footer_logo:focus #right-top, .footer_logo:focus #right-small, .footer_logo:focus #small {
    transform: translate(0.3rem, -0.3rem);
  }
  .footer_bottom .footer_logo:hover #left-top, .footer_logo:focus #left-top {
    transform: translate(-0.3rem, -0.3rem);
  }
  .footer_bottom .footer_logo:hover #right-bot_1_, .footer_logo:hover #big, .footer_logo:focus #right-bot_1_, .footer_logo:focus #big {
    transform: translate(0.3rem, 0.3rem);
  }
  .main_service_item:nth-child(4n+2) .main_service_name a:hover, .main_service_item:nth-child(4n+3) .main_service_name a:hover {
    color: #00ACCE;
  }
  .main_service_item:nth-child(4n+1) .main_service_name a:hover, .main_service_item:nth-child(4n+4) .main_service_name a:hover {
    color: #045176;
  }
  .button:hover {
    color: #045176;
    background-color: #ffffff;
    border-color: #045176;
  }
  .button:hover:before, .button:hover:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.7rem;
  }
  .button:hover svg {
    fill: #045176;
  }
  .button.light:hover {
    color: #ffffff;
    background-color: #045176;
    border-color: #045176;
  }
  .button.light_2:hover {
    color: #ffffff;
    background-color: #00ACCE;
    border-color: #ffffff;
  }
  .button.dark:hover {
    color: #00ACCE;
    background-color: #ffffff;
    border-color: #ffffff;
  }
  .button.button_success:hover {
    color: #ffffff;
    background-color: #24993f;
    border-color: #24993f;
  }
  .button.button_danger:hover {
    color: #ffffff;
    background-color: #c82333;
    border-color: #c82333;
  }
  .button.button_warning:hover {
    color: #5C5C5C;
    background-color: #fdae11;
    border-color: #fdae11;
  }
  .button.button_info:hover {
    color: #ffffff;
    background-color: #0890a7;
    border-color: #0890a7;
  }
  .button.button_disable:hover {
    color: #5C5C5C;
    background-color: #c3bfbf;
    border-color: #c3bfbf;
  }
  .button.button_default:hover {
    color: #ffffff;
    background-color: #50606e;
    border-color: #50606e;
  }
  .button.btn_icon:hover svg {
    transform: translate(-50%, 0.9rem);
  }
  .button.btn_icon:hover span {
    transform: translateY(3rem);
  }
  .slick-prev:hover, .slick-next:hover {
    background-color: #045176;
    border-color: #00ACCE;
  }
  .slick-prev:hover::after, .slick-next:hover::after {
    border-color: transparent transparent transparent #fff;
  }
  .dialog .icon_close:hover {
    color: #dc3545;
  }
  .input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 4rem transparent inset !important;
    -webkit-text-fill-color: #5C5C5C !important;
  }
  .custom_checkbox + label:hover .checkbox_design {
    border-color: #045176;
  }
  .custom_radio_button + label:hover .radio_button_design {
    border-color: #045176;
  }
  .pagination li a:hover {
    background-color: #045176;
    color: #ffffff;
  }
  .social .social_block:hover .icon, .social .social_block:hover img {
    padding: 0.2rem;
  }
  .content a:not(.button):hover {
    color: #045176;
  }
  .contact_us_section address a:not(.button):hover {
    color: #00ACCE;
  }
  .toast_notifications .removeTOAST .icon:hover {
    color: #FF3F0A;
  }
  .bolg_item:nth-child(4n+1) .blog_content .blog_name a:hover, .bolg_item:nth-child(4n+4) .blog_content .blog_name a:hover {
    color: #045176;
  }
  .bolg_item:nth-child(4n+2) .blog_content .blog_name a:hover, .bolg_item:nth-child(4n+3) .blog_content .blog_name a:hover {
    color: #00ACCE;
  }
  .blog_content .blog_buttons .link:not(.button):hover {
    color: #fff;
  }
  footer .footer_blog .name a:hover {
    color: #00ACCE;
  }
  .location1 a.location_svg_item:hover {
    color: #00ACCE;
  }
  .location2 a.location_svg_item:hover {
    color: #045176;
  }
  .main_service_img:hover img {
    max-width: 110%;
    width: 110%;
  }
  .team_member_image:hover img {
    max-width: 110%;
    width: 110%;
  }
  .bolg_image:hover img {
    max-width: 110%;
    width: 110%;
    height: 110%;
  }
}
@media only screen and (max-width: 1600px) {
  .inner_banner_full .inner_banner {
    height: 40.8rem;
  }
  .contact_body .img_wrap {
    width: calc(30vw + 50%);
    margin-left: calc(-30vw + 50%);
  }
}
@media only screen and (max-width: 1500px) {
  .services_body .img_wrap img {
    object-position: -14rem bottom;
  }
}
@media only screen and (max-width: 1300px) {
  h1, .h1 {
    font-size: 6.2rem;
  }
  .content h1, .content .h1 {
    font-size: 6.2rem;
  }
  h2, .h2 {
    font-size: 4rem;
  }
  .content h2, .content .h2 {
    font-size: 4rem;
  }
  .title, .content .title {
    font-size: 3.4rem;
  }
  .content img[style*=float][style*=right] {
    margin: 1rem 0 1rem 4.5rem !important;
  }
  .content img[style*=float][style*=left] {
    margin: 1rem 4.5rem 1.5rem 0 !important;
  }
}
@media only screen and (max-width: 1200px) {
  .row_f .col_lg_1 {
    width: calc(8.3333333333% - 3.01rem);
  }
  .row_f .col_lg_2 {
    width: calc(16.6666666667% - 3.01rem);
  }
  .row_f .col_lg_3 {
    width: calc(25% - 3.01rem);
  }
  .row_f .col_lg_4 {
    width: calc(33.3333333333% - 3.01rem);
  }
  .row_f .col_lg_5 {
    width: calc(41.6666666667% - 3.01rem);
  }
  .row_f .col_lg_6 {
    width: calc(50% - 3.01rem);
  }
  .row_f .col_lg_7 {
    width: calc(58.3333333333% - 3.01rem);
  }
  .row_f .col_lg_8 {
    width: calc(66.6666666667% - 3.01rem);
  }
  .row_f .col_lg_9 {
    width: calc(75.0000000019% - 3.01rem);
  }
  .row_f .col_lg_10 {
    width: calc(83.3333333333% - 3.01rem);
  }
  .row_f .col_lg_11 {
    width: calc(91.6666666667% - 3.01rem);
  }
  .row_f .col_lg_12 {
    width: calc(100% - 3.01rem);
  }
  .contact_us_section address {
    margin: 5rem 0 2rem;
  }
  .contact_us_section address a {
    font-size: 1.8rem;
    margin: 0 1.5rem;
  }
  .under_banner tr > td {
    padding-left: 3.4rem;
  }
  .under_banner tr {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
  }
  .service_content_section1 tr {
    gap: 0 6%;
    padding: 0 0 3rem;
  }
  .service_content_section1 td {
    max-width: 47%;
  }
  .about_diamond_image2 {
    max-width: 34.65%;
  }
  .about_diamond2_rectangle2 {
    max-width: 43%;
    width: 100%;
  }
  .about_diamond2_rectangle {
    clip-path: polygon(0 0, 100% 0, 100% 79%, 0% 100%);
  }
  .faqs .faqs_row {
    gap: 3rem 5.2rem;
  }
  .faqs .welcome_to_aside {
    max-width: 25%;
  }
  .faqs .faqs_wrap {
    max-width: calc(75% - 5.2rem);
    width: 100%;
  }
  .blog_row {
    gap: 4rem;
  }
  .bolg_item {
    width: calc(50% - 2rem);
  }
  .testimonials_row {
    gap: 3rem 3rem;
    margin: 3rem 0 4rem;
  }
  .testimonials_item {
    width: calc(50% - 2rem);
  }
}
@media only screen and (max-width: 1100px) {
  .navigation .header_nav > li > a:not(.button) {
    padding: 0 2.3rem;
  }
  .navigation .header_nav > li.dr_down > a:not(.button) {
    padding: 0.4rem 2.6rem 0.4rem 2.3rem;
  }
  .navigation .header_nav > li.dr_down > a:not(.button):before {
    right: 1.3rem;
  }
  .about_diamond_text {
    padding: 3rem 4.4rem 4rem 4rem;
  }
  .about_diamond_image {
    max-width: 27%;
  }
  .about_diamond_rectangle2 {
    max-width: 33%;
  }
  .about_diamond_rectangle {
    clip-path: polygon(0 0, 100% 0, 100% 72%, 0% 100%);
  }
}
@media only screen and (max-width: 992px) {
  body {
    padding-top: 6.2rem;
  }
  .header .header_row {
    padding: 0;
  }
  .header, .header.fixed {
    padding: 1.7rem 0;
    border-bottom: 0.1rem solid #CEDFEF;
  }
  .header .header_contacts {
    display: none;
  }
  .navigation .header_nav > li.dr_down > a:not(.button):before {
    content: none;
  }
  .header .navigation_wrap {
    padding: 0;
  }
  .header .header_logo img, .header.fixed .header_logo img {
    width: 16.7rem;
  }
  .header .header_col_1 {
    width: calc(100% - 7rem);
  }
  .header .header_col_2 {
    width: 7rem;
  }
  .header .navigation_btn {
    display: block;
  }
  .header .top_menu {
    display: none;
  }
  .navigation {
    position: fixed;
    top: 0;
    right: -36rem;
    z-index: 100;
    width: 36rem;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    background-color: #282828;
    transition: right 0.3s ease-in;
  }
  .navigation .logo_sidebar {
    margin: 0 0 2rem;
  }
  .navigation.nav_opened {
    right: 0;
    transition: right 0.3s ease-out;
  }
  .navigation .header_nav {
    display: block;
    margin: 9rem 0 0;
    padding: 0 1.5rem;
    height: calc(100vh - 16rem);
    overflow-y: auto;
  }
  .navigation .header_nav > li {
    display: block;
    width: 100%;
  }
  .navigation .header_nav > li > a:not(.button) {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    padding: 0.4rem 2.6rem 0.4rem 2.3rem;
    width: 100%;
    margin: 0 auto;
  }
  .navigation .header_nav > li > a:not(.button)::after {
    display: none;
  }
  .navigation .header_nav > li.dr_down > a:not(.button)::after {
    content: "";
    position: relative;
    left: auto !important;
    right: -1.3rem;
    display: inline-block;
    width: 0;
    height: 0;
    background-color: transparent;
    border-color: transparent transparent transparent #ffffff;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
    border-style: solid;
    border-width: 0.3rem 0 0.3rem 0.6rem;
    z-index: 1;
  }
  .navigation .header_nav > li.dr_down.active > a:not(.button)::after {
    border-color: transparent transparent transparent #045176;
  }
  .navigation .header_nav > li.dr_down .sub_menu {
    display: none;
    position: relative;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    margin: 1rem 0;
    background-color: transparent;
    min-width: unset;
    box-shadow: unset;
    transform: unset;
    transition: unset;
  }
  .navigation .header_nav > li.dr_down .sub_menu::after, .navigation .header_nav > li.dr_down .sub_menu::before {
    display: none;
  }
  .navigation .header_nav > li.dr_down .sub_menu > li {
    border-bottom: none;
  }
  .navigation .header_nav > li.dr_down .sub_menu > li > a:not(.button) {
    font-size: 1.7rem;
    line-height: 1.4;
    border-bottom: none;
    padding: 0.8rem 0;
    margin: 0 auto;
    max-width: 80%;
    text-align: center;
  }
  .navigation .header_nav > li.dr_down.visible_sub > a:not(.button)::after {
    transform: translate(0, -50%) rotate(0deg);
  }
  .navigation .header_nav > li.dr_down.visible_sub .sub_menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .navigation .header_nav > li.header_btn {
    padding: 1rem 3rem;
  }
  .navigation .header_nav > li.header_btn .button {
    display: block;
    width: 100%;
  }
  .navigation .header_nav > li.mobile_social {
    display: block;
  }
  .navigation .header_nav > li.mobile_social .social {
    text-align: center;
    margin: 1rem 0 0;
  }
  .navigation .header_nav > li.mobile_social .social a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0 1rem;
  }
  .mobile_phone, .home_bar_space {
    display: block;
  }
  .hide_desktop {
    display: block !important;
  }
  .hide_tablet {
    display: none !important;
  }
  .page aside, .page main {
    display: block;
    width: 100%;
    float: none;
    margin: 1rem 0;
    padding: 0;
  }
  .map iframe, .map #map {
    height: 30rem;
  }
  .row.tablet .col_3, .row.tablet .col_4 {
    width: calc(50% - 3rem);
  }
  .header .top_header {
    display: none;
  }
  footer {
    padding-bottom: 4.7rem;
    padding-top: 4rem;
  }
  .row_f .col_md_1 {
    width: calc(8.3333333333% - 3.01rem);
  }
  .row_f .col_md_2 {
    width: calc(16.6666666667% - 3.01rem);
  }
  .row_f .col_md_3 {
    width: calc(25% - 3.01rem);
  }
  .row_f .col_md_4 {
    width: calc(33.3333333333% - 3.01rem);
  }
  .row_f .col_md_5 {
    width: calc(41.6666666667% - 3.01rem);
  }
  .row_f .col_md_6 {
    width: calc(50% - 3.01rem);
  }
  .row_f .col_md_7 {
    width: calc(58.3333333333% - 3.01rem);
  }
  .row_f .col_md_8 {
    width: calc(66.6666666667% - 3.01rem);
  }
  .row_f .col_md_9 {
    width: calc(75.0000000019% - 3.01rem);
  }
  .row_f .col_md_10 {
    width: calc(83.3333333333% - 3.01rem);
  }
  .row_f .col_md_11 {
    width: calc(91.6666666667% - 3.01rem);
  }
  .row_f .col_md_12 {
    width: calc(100% - 3.01rem);
  }
  h1, .h1 {
    font-size: 5.2rem;
  }
  .content h1, .content .h1 {
    font-size: 5.2rem;
  }
  h2, .h2 {
    font-size: 3.1rem;
  }
  .content h2, .content .h2 {
    font-size: 3.1rem;
  }
  .title, .content .title {
    font-size: 2.7rem;
  }
  h3, .h3 {
    font-size: 2.2rem;
  }
  .content h3, .content .h3 {
    font-size: 2.2rem;
  }
  h4, .h4 {
    font-size: 2.1rem;
  }
  .content h4, .content .h4 {
    font-size: 2.1rem;
  }
  h5, .h5 {
    font-size: 1.8rem;
  }
  .content h5, .content .h5 {
    font-size: 1.8rem;
  }
  h6, .h6 {
    font-size: 1.7rem;
  }
  .content h6, .content .h6 {
    font-size: 1.7rem;
  }
  .content img[style*=float][style*=right] {
    margin: 1rem 0 1rem 2.5rem !important;
  }
  .content img[style*=float][style*=left] {
    margin: 1rem 2.5rem 1.5rem 0 !important;
  }
  .modal_video.dialog .icon_close {
    display: none;
  }
  .contact_us_section address {
    margin: 4rem 0 1rem;
  }
  .contact_us_section address p, .contact_us_section address a:not(.button) {
    font-size: 1.8rem;
  }
  .contact_us_section form .input {
    margin: 1rem 0;
    font-size: 1.4rem;
  }
  .contact_us_section form .input::placeholder {
    font-size: 1.4rem;
  }
  .contact_us_section form textarea.input {
    min-height: 24.6rem;
    margin: 2.4rem 0 1rem;
  }
  section, .section {
    padding: 7rem 0;
  }
  .main_content_form,
  .main_content_form_dummy,
  .main_top_overflow {
    display: none;
  }
  .main_top .banner {
    width: 100%;
    max-width: 100%;
  }
  .main_top .banner .banner_img_wrap {
    width: calc(100% + 5rem);
    margin-left: -2.5rem;
  }
  .welcome_to_sec {
    padding: 4rem 0 2.5rem;
  }
  .welcome_to_row {
    gap: 2rem 4rem;
  }
  .welcome_to_aside {
    max-width: 35%;
  }
  .main_service_item {
    flex-direction: column;
    align-items: center;
  }
  .services_sec {
    padding: 7rem 0 8rem;
  }
  .main_services_slider {
    display: block;
    margin: 2rem -1rem 2rem;
  }
  .main_services_slider.hidden_slider {
    opacity: 1;
    overflow: hidden;
    max-height: 55rem;
  }
  .main_services_slider .slick-track {
    display: flex !important;
    align-items: stretch;
  }
  .main_services_slider .main_service_item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin: 0 1rem;
    height: auto !important;
  }
  .slider_dots_arrows_bottom.main_services_dots_arrows_bottom {
    margin: 2rem 0;
  }
  .main_service_content {
    width: 100%;
  }
  .main_service_item:before {
    top: 25%;
    left: 0;
    width: 100%;
  }
  .main_service_img {
    width: 65%;
  }
  .main_services_sec {
    padding: 2.5rem 0;
  }
  .location .location_name {
    margin: 0 0 2rem;
  }
  .location:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .location {
    padding: 3rem;
  }
  .location.location2 {
    padding-right: 0;
  }
  .location.location2:before {
    left: 100%;
    background-color: #00ACCE;
  }
  .location.location1 {
    padding-left: 0;
  }
  .location.location1:before {
    right: 99%;
    background-color: #045176;
  }
  .location tr > td:first-child {
    padding-left: 2.1rem;
  }
  .why_chose_row {
    gap: 3rem;
    margin: 3.4rem 0 0;
  }
  .why_chose_item {
    width: calc(33.3333333333% - 2rem);
  }
  .our_locations_sec {
    padding: 2.5rem 0 6rem;
  }
  footer .footer_row {
    grid-template-columns: 45% 45%;
  }
  .footer_col1 {
    grid-row: 1;
    grid-column: 1;
  }
  .footer_col2 {
    grid-column: 1/-1;
  }
  .footer_blog {
    grid-row: 1;
    grid-column: 2;
  }
  footer ul {
    column-count: 5;
    gap: 0 3rem;
  }
  .footer_bottom_row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .contact_body .inner_banner_img {
    max-width: 50%;
  }
  .contact_body .inner_banner_form {
    max-width: 50%;
    width: 100%;
    padding: 6rem 0 7rem 2.5rem;
  }
  .contact_body .inner_banner_content {
    top: 6rem;
    left: 0;
  }
  .contact_body .our_locations_sec {
    padding: 8rem 0;
  }
  .services_body .why_chose_sec {
    padding: 7rem 0 5.5rem;
  }
  .services_body .our_locations_sec {
    padding: 5.5rem 0 0;
  }
  .under_banner tr > td:first-child {
    padding-left: 3.4rem;
  }
  .under_banner tr > td:first-child:before {
    content: "";
  }
  .service_content_section1 {
    padding: 7rem 0 8rem;
  }
  .service_content_section2 {
    padding: 7rem 0 6.5rem;
  }
  .about_diamond_text2 {
    padding: 3rem 2rem 3rem 2rem;
  }
  .content blockquote, .content blockquote p {
    font-size: 2.4rem;
  }
  .inner_banner_full .inner_banner_content {
    max-width: 100%;
    width: 100%;
    padding: 1rem 0 2rem;
  }
  .inner_banner_content .button {
    margin: 0;
  }
  .inner_banner_full .inner_banner_row_absolute {
    position: relative;
    top: 0;
    transform: none;
    left: 0;
    width: 100%;
  }
  .inner_banner_full .inner_banner {
    height: auto;
  }
  .inner_banner_full .inner_banner_full_bg {
    position: relative;
    height: 40.8rem;
  }
  .faqs .faqs_row {
    flex-direction: column;
  }
  .faqs .welcome_to_aside {
    max-width: 100%;
  }
  .faqs .welcome_to_aside ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 1.5rem;
  }
  .faqs .welcome_to_aside ul li {
    margin: 0;
  }
  .faqs .faqs_wrap {
    max-width: 100%;
  }
  .bolg_item {
    flex-direction: column;
    width: calc(50% - 1.5rem);
  }
  .blog_content {
    width: 100%;
    height: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0.5rem;
    padding: 1.5rem 2rem;
  }
  .blog_row {
    gap: 4rem 3rem;
  }
  .blog_content:before {
    top: -1rem;
    left: 0;
    height: 1.1rem;
    width: 100%;
    z-index: 3;
    border-radius: 0.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bolg_image {
    width: 100%;
    aspect-ratio: 1/1;
    min-height: auto;
    height: auto;
  }
  .content_mobile_size {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 9;
    transition: all 0.3s ease;
  }
  .content_mobile_size.expanded {
    -webkit-line-clamp: unset;
  }
  .content_mobile_size_toggle {
    margin: 2rem 0 0;
  }
  .our_team_row {
    gap: 5rem 4rem;
    margin: 2rem 0 0;
  }
  .team_member {
    width: calc(50% - 2rem);
  }
  .team_member_content {
    padding: 2rem;
  }
  .first_visit_includes_sec ol {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 4rem;
  }
  .first_visit_includes_sec ol li:before {
    font-size: 7.6rem;
  }
  .first_visit_includes_sec ol li {
    padding-top: 8rem;
  }
  .first_visit_includes_sec ol li:after {
    top: 6rem;
  }
  .first_visit_includes2_sec tr > td {
    padding: 0 2rem;
  }
  .first_visit_includes2_sec h2, .first_visit_includes2_sec .h2 {
    margin: 1rem 0 2rem;
  }
  .first_visit_sec {
    padding: 4rem 0 2.5rem;
  }
  .first_visit_includes_sec {
    padding: 1.5rem 0 2.5rem;
  }
  .first_visit_includes2_sec {
    padding: 1.5rem 0 2.5rem;
  }
  .blog_post_content h2, .blog_post_content .h2 {
    margin: 2rem 0;
  }
  .title_wrap h1, .title_wrap .h1 {
    margin: 1rem 0 2.5rem;
  }
  .title_wrap p:not([class]) {
    margin: 2.5rem 0;
  }
  .blog_post_row {
    gap: 1rem 1.5rem;
    position: relative;
    margin: 2.5rem 0 0;
  }
}
@media only screen and (max-width: 840px) {
  .contact_body .img_wrap img {
    object-position: -15rem bottom;
  }
  .team_member_content .team_member_sub_title {
    margin: 1rem 0;
  }
  .testimonials_item {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .hide_mobile {
    display: none !important;
  }
  .row.tablet .col_3, .row.tablet .col_4 {
    width: calc(100% - 3rem);
  }
  section {
    padding: 5rem 0;
  }
  .row.mobile .col_1, .row.mobile .col_2, .row.mobile .col_3, .row.mobile .col_4, .row.mobile .col_5, .row.mobile .col_6, .row.mobile .col_7, .row.mobile .col_8, .row.mobile .col_9, .row.mobile .col_10, .row.mobile .col_11, .row.mobile .col_12 {
    width: calc(100% - 3rem);
  }
  .row_f .col_sm_1 {
    width: calc(8.3333333333% - 3.01rem);
  }
  .row_f .col_sm_2 {
    width: calc(16.6666666667% - 3.01rem);
  }
  .row_f .col_sm_3 {
    width: calc(25% - 3.01rem);
  }
  .row_f .col_sm_4 {
    width: calc(33.3333333333% - 3.01rem);
  }
  .row_f .col_sm_5 {
    width: calc(41.6666666667% - 3.01rem);
  }
  .row_f .col_sm_6 {
    width: calc(50% - 3.01rem);
  }
  .row_f .col_sm_7 {
    width: calc(58.3333333333% - 3.01rem);
  }
  .row_f .col_sm_8 {
    width: calc(66.6666666667% - 3.01rem);
  }
  .row_f .col_sm_9 {
    width: calc(75.0000000019% - 3.01rem);
  }
  .row_f .col_sm_10 {
    width: calc(83.3333333333% - 3.01rem);
  }
  .row_f .col_sm_11 {
    width: calc(91.6666666667% - 3.01rem);
  }
  .row_f .col_sm_12 {
    width: calc(100% - 3.01rem);
  }
  h1, .h1 {
    font-size: 4.2rem;
    margin: 1rem 0 2rem;
  }
  .content h1, .content .h1 {
    font-size: 4.2rem;
    margin: 1rem 0 2rem;
  }
  h2, .h2 {
    font-size: 2.8rem;
  }
  .content h2, .content .h2 {
    font-size: 2.8rem;
  }
  .title, .content .title {
    font-size: 2.8rem;
  }
  h3, .h3 {
    font-size: 2rem;
  }
  .content h3, .content .h3 {
    font-size: 2rem;
  }
  h4, .h4 {
    font-size: 2rem;
  }
  .content h4, .content .h4 {
    font-size: 2rem;
  }
  h5, .h5 {
    font-size: 1.8rem;
  }
  .content h5, .content .h5 {
    font-size: 1.8rem;
  }
  h6, .h6 {
    font-size: 1.6rem;
  }
  .content h6, .content .h6 {
    font-size: 1.6rem;
  }
  .modal_video.dialog {
    width: 90vw;
  }
  .main_top {
    background-color: #fff;
  }
  .main_top .main_content .text {
    max-width: 100%;
    text-align: center;
  }
  .main_top .main_content {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    pointer-events: none;
    transform: unset;
    margin: 3rem 0;
  }
  .main_top .banner {
    height: unset;
  }
  .main_top .banner .banner_img_wrap {
    height: 44rem;
    position: relative;
  }
  .welcome_to_aside {
    max-width: 45%;
  }
  .review_name {
    font-size: 2rem;
  }
  .about_diamond_image {
    position: relative;
    max-width: 100%;
    left: 0;
    right: unset;
    transform: none;
  }
  .about_diamond_image .about_diamond_inner_image {
    max-width: 50%;
    top: 0;
    left: 50%;
    right: unset;
    transform: translate(-50%, 0);
  }
  .about_diamond_image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 55%;
    left: 0;
    bottom: -.1rem;
    z-index: -1;
    background-color: #045176;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }
  .about_diamond_image:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 15%;
    left: 0;
    bottom: calc(55% - 0.1rem);
    background-color: #00ACCE;
    z-index: -2;
    clip-path: polygon(30% 0%, 70% 0, 100% 100%, 0% 100%);
  }
  .about_diamond_text {
    margin: 0;
    max-width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .about_diamond_text_inner {
    max-width: 100%;
  }
  .about_diamond_rectangle, .about_diamond_rectangle2 {
    display: none;
  }
  .our_locations_row {
    display: flex;
    flex-direction: column;
    margin: 3rem 0 0;
  }
  .location {
    max-width: 100%;
    padding: 3rem 0;
  }
  .location:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .location.location1:after {
    left: 99%;
    background-color: #045176;
  }
  .location.location2:after {
    right: 99%;
    background-color: #00ACCE;
  }
  .our_locations_sec {
    padding: 2.5rem 0 0;
  }
  .about_diamond_sec {
    padding: 2.5rem 0;
  }
  .why_chose_item {
    width: calc(50% - 1.5rem);
  }
  .contact_body .our_locations_sec {
    padding: 6rem 0 0;
  }
  .services_sec {
    padding: 4rem 0 5rem;
  }
  .cta1_row {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .services_body .why_chose_sec {
    padding: 5.5rem 0 4.5rem;
  }
  .services_body .our_locations_sec {
    padding: 4.5rem 0 0;
  }
  .service_content_section1 tr {
    gap: 0 6%;
    flex-direction: column;
    padding: 0 0 3rem;
  }
  .service_content_section1 td {
    max-width: 100%;
  }
  .service_content_section1 td img {
    margin: 2rem auto 2rem !important;
    display: block;
  }
  .service_content_section1 table {
    width: 100%;
    margin: 0;
  }
  .service_content_section1 {
    padding: 5rem 0 5rem;
  }
  .service_content_section2 {
    padding: 5rem 0 2.5rem;
  }
  .about_diamond_text2:before {
    content: none;
  }
  .about_diamond_text2 {
    padding: 2rem 2rem 3rem 2rem;
    text-align: center;
    max-width: 100%;
    margin: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .about_diamond2_rectangle,
  .about_diamond2_rectangle2 {
    display: none;
  }
  .about_diamond_image2 {
    max-width: 100%;
    position: relative;
    top: 0;
    right: unset;
    left: 0;
  }
  .about_diamond_image2 .about_diamond_inner_image2 {
    max-width: 50%;
    top: 0;
    left: 50%;
    right: unset;
    transform: translate(-50%, 0);
  }
  .about_diamond_image2:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 55%;
    left: 0;
    bottom: -.1rem;
    z-index: -1;
    background-color: #00ACCE;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }
  .about_diamond_image2:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 15%;
    left: 0;
    bottom: calc(55% - 0.1rem);
    background-color: #045176;
    z-index: -2;
    clip-path: polygon(30% 0%, 70% 0, 100% 100%, 0% 100%);
  }
  .about_diamond_text_inner2 {
    max-width: 100%;
  }
  .content blockquote, .content blockquote p {
    font-size: 2rem;
  }
  .content blockquote {
    margin: 0 0 1rem;
  }
  .why_chose_item:nth-child(3n+1) .why_chose_item_markers svg:nth-child(1),
  .why_chose_item:nth-child(3n+2) .why_chose_item_markers svg:nth-child(2),
  .why_chose_item:nth-child(3n+3) .why_chose_item_markers svg:nth-child(3) {
    color: #00ACCE;
  }
  .why_chose_item:nth-child(2n+1) .why_chose_item_markers svg:nth-child(1) {
    color: #045176;
  }
  .why_chose_item:nth-child(2n+2) .why_chose_item_markers svg:nth-child(2) {
    color: #045176;
  }
  .inner_banner_full .inner_banner_full_bg {
    background-position: -74rem bottom;
  }
  .choose_procedure_sec {
    padding: 5rem 0 2.5rem;
  }
  .gallery_sec {
    padding: 2.5rem 0 5rem;
  }
  .gallery_item {
    width: 100%;
  }
  .bolg_item {
    flex-direction: row;
    width: 100%;
  }
  .bolg_image {
    width: 40%;
  }
  .blog_content {
    width: 60%;
    border-radius: 0.5rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .blog_content:before {
    top: 0;
    left: -1rem;
    height: 100%;
    width: 1.1rem;
    border-radius: 0.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .blog_text {
    margin: 2rem 0;
  }
  .content_mobile_size {
    -webkit-line-clamp: 12;
  }
  .faqs .faqs_question {
    font-size: 1.9rem;
  }
  .service_content_section1 h3, .service_content_section1 .h3 {
    margin: 1rem 0 2rem;
  }
  .first_visit_includes_sec ol {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .first_visit_includes_sec ol li:before {
    font-size: 6.6rem;
  }
  .first_visit_includes_sec ol li {
    padding-top: 7rem;
  }
  .first_visit_includes_sec ol li:after {
    top: 5rem;
  }
  .first_visit_includes2_sec tr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .first_visit_includes2_sec tr > td {
    padding: 0;
  }
  .blog_post_sec {
    padding: 2.5rem 0;
  }
  .bolg_item:nth-child(4n+2) .blog_content, .bolg_item:nth-child(4n+3) .blog_content,
  .bolg_item:nth-child(4n+1) .blog_content, .bolg_item:nth-child(4n+4) .blog_content {
    background-color: #045176;
  }
  .bolg_item:nth-child(4n+1) .blog_content:before, .bolg_item:nth-child(4n+4) .blog_content:before,
  .bolg_item:nth-child(4n+2) .blog_content:before, .bolg_item:nth-child(4n+3) .blog_content:before {
    background-color: #045176;
  }
  .bolg_item:nth-child(2n+1) .blog_content {
    background-color: #045176;
  }
  .bolg_item:nth-child(2n+2) .blog_content {
    background-color: #00ACCE;
  }
  .bolg_item:nth-child(2n+1) .blog_content:before {
    background-color: #045176;
  }
  .bolg_item:nth-child(2n+2) .blog_content:before {
    background-color: #00ACCE;
  }
  .bolg_item:nth-child(2n+1) .link {
    color: #00ACCE;
  }
  .bolg_item:nth-child(2n+1) .link:before {
    background-color: #00ACCE;
  }
  .bolg_item:nth-child(2n+2) .link {
    color: #045176;
  }
  .bolg_item:nth-child(2n+2) .link:before {
    background-color: #045176;
  }
}
@media (-ms-high-contrast: none) and (max-width: 767px), (-ms-high-contrast: active) and (max-width: 767px), (-moz-touch-enabled: 0) and (max-width: 767px), (hover: hover) and (max-width: 767px) {
  .bolg_item:nth-child(2n+1) .blog_content .blog_name a:hover {
    color: #00ACCE;
  }
  .bolg_item:nth-child(2n+2) .blog_content .blog_name a:hover {
    color: #045176;
  }
}
@media only screen and (max-width: 640px) {
  .row_f .col_xs_1 {
    width: calc(8.3333333333% - 3.01rem);
  }
  .row_f .col_xs_2 {
    width: calc(16.6666666667% - 3.01rem);
  }
  .row_f .col_xs_3 {
    width: calc(25% - 3.01rem);
  }
  .row_f .col_xs_4 {
    width: calc(33.3333333333% - 3.01rem);
  }
  .row_f .col_xs_5 {
    width: calc(41.6666666667% - 3.01rem);
  }
  .row_f .col_xs_6 {
    width: calc(50% - 3.01rem);
  }
  .row_f .col_xs_7 {
    width: calc(58.3333333333% - 3.01rem);
  }
  .row_f .col_xs_8 {
    width: calc(66.6666666667% - 3.01rem);
  }
  .row_f .col_xs_9 {
    width: calc(75.0000000019% - 3.01rem);
  }
  .row_f .col_xs_10 {
    width: calc(83.3333333333% - 3.01rem);
  }
  .row_f .col_xs_11 {
    width: calc(91.6666666667% - 3.01rem);
  }
  .row_f .col_xs_12 {
    width: calc(100% - 3.01rem);
  }
  .content img[style*=float] {
    float: none !important;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 2rem !important;
  }
  .content img[style*=float][style*=right] {
    margin: 2rem auto 2rem !important;
    text-align: center;
  }
  .content img[style*=float][style*=left] {
    margin: 2rem auto 2rem !important;
    text-align: center;
  }
  .content p[style*=float] {
    float: none !important;
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    margin: 1rem auto !important;
  }
  .content p[style*=float][style*=right] {
    margin: 1rem auto !important;
    text-align: center;
  }
  .content p[style*=float][style*=left] {
    margin: 1rem auto !important;
    text-align: center;
  }
  .welcome_to_row {
    flex-direction: column;
    align-items: center;
  }
  .welcome_to_aside {
    max-width: 33rem;
  }
  .welcome_to_content .button {
    margin: 0.5rem 0 0;
  }
  .welcome_to_img {
    max-width: 31.7rem;
  }
  .welcome_img_text {
    padding: 1.6rem 1rem 1.6rem;
  }
  .welcome_to_aside ul li {
    padding: 0.8rem 2rem 1.1rem 2rem;
  }
  .main_services_sec .tc h2, .main_services_sec .tc .h2 {
    margin: 0 0 2rem;
  }
  .main_services_sec .tc h2, .why_chose_sec .tc h2 span{display:block;}
  .main_service_item .main_service_name {
    margin: 0.4rem 0 1.3rem;
  }
  footer ul {
    column-count: 3;
    gap: 0 3rem;
  }
  .contact_body .inner_banner_row {
    flex-direction: column;
  }
  .contact_body .inner_banner_form {
    max-width: 100%;
    padding: 3rem 0 4rem;
  }
  .contact_body .inner_banner_img {
    max-width: 100%;
    height: 45rem;
  }
  .contact_body .inner_banner_content {
    top: 3rem;
    left: 0;
  }
  .contact_body .img_wrap img {
    object-position: center center;
  }
  .contact_body .img_wrap {
    width: calc(100% + 5rem);
    margin-left: -2.5rem;
  }
  .under_banner tr {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.3rem 2rem;
  }
  .under_banner {
    padding: 2rem 0 2rem;
  }
  .inner_banner_full .inner_banner_full_bg {
    background-position: -82rem bottom;
  }
  .our_team_row {
    gap: 3rem;
    margin: 1.5rem 0 0;
  }
  .team_member {
    width: calc(50% - 1.5rem);
  }
  .team_member_content {
    padding: 1.5rem 1rem;
  }
}
@media only screen and (max-width: 550px) {
  .show_on_mobile {
    display: block;
  }
  .service_content_section1 h3, .service_content_section1 .h3 {
    text-transform: uppercase;
    margin: 1rem 0 2rem;
  }
  .contact_us_section address p, .contact_us_section address a:not(.button) {
    display: block;
    width: 100%;
    margin: 0 0 2rem;
  }
  .contact_us_section address a.address_text {
    max-width: 30rem;
    margin: 0 auto;
  }
  .toast_notifications {
    width: 95%;
  }
  .toast_notifications .toast {
    width: 100%;
    font-size: 1rem;
    margin-left: 2rem;
  }
  .main_top .banner .banner_img_wrap {
    height: 30.5rem;
  }
  .main_service_item {
    width: 100%;
  }
  .tc.tc_desktop {
    text-align: left;
  }
  .reviews_item_footer {
    padding: 1.3rem 3.2rem 1.4rem 3rem;
    align-items: flex-start;
  }
  .review_name_image {
    max-width: 3.3rem;
  }
  .review_name {
    font-size: 1.8rem;
  }
  .reviews_item_images .stars {
    order: 2;
  }
  .reviews_item_images .reviews_item_image {
    order: 1;
  }
  .review_item_top {
    padding: 2rem;
  }
  .review_main_row {
    margin: 2rem 0 0;
  }
  .review_slider .review_item_slid {
    margin: 5.4rem 1.7rem 0.2rem;
  }
  .review_slider .review_item_slid.slick-slide.slick-active {
    margin: 0.2rem 1.7rem 5.4rem;
  }
  .slick-prev, .slick-next {
    width: 2.9rem;
    height: 2.9rem;
  }
  .slick-prev::after, .slick-next::after {
    border-width: 0.4rem 0 0.4rem 1rem;
  }
  .review_main_sec {
    padding: 2.5rem 0;
  }
  .why_chose_sec {
    padding: 2.5rem 0 2rem;
  }
  .why_chose_item .why_chose_item_name {
    margin: 0.3rem 0 1.3rem;
  }
  .why_chose_item {
    margin: 1rem 0;
  }
  .our_locations_sec {
    padding: 3rem 0 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .about_diamond_text {
    padding: 3rem 4.4rem 4rem 4rem;
  }
  .about_diamond_text {
    padding: 1rem 2rem 3rem;
  }
  .footer_bottom {
    padding: 3rem 0;
    margin: 5rem 0 0;
  }
  footer .footer_row {
    grid-template-columns: 1fr;
  }
  .footer_col2,
  .footer_col1 {
    grid-row: unset;
    grid-column: unset;
  }
  .footer_col1 .logo {
    max-width: 26.1rem;
    width: 100%;
  }
  .footer_blog {
    grid-row: unset;
    grid-column: unset;
    display: none;
  }
  footer .footer_sub_col:last-child {
    margin: 3rem 0 0;
  }
  .footer_title {
    text-align: center;
  }
  .footer_sub_col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer_col2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer ul {
    column-count: 2;
    gap: 0 6rem;
  }
  footer ul li {
    text-align: center;
  }
  .custom_radio_button + label {
    margin: 0 0.5rem 0;
  }
  .contact_body .our_locations_sec {
    padding: 4rem 0 0;
  }
  .services_sec {
    padding: 2.5rem 0 2.5rem;
  }
  .services_body .why_chose_sec {
    padding: 5rem 0 2.5rem;
  }
  .services_body .our_locations_sec {
    padding: 2.5rem 0 0;
  }
  .under_banner tr > td:first-child,
  .under_banner tr > td {
    padding-left: 2.6rem;
  }
  .under_banner tr > td:before {
    width: 1.4rem;
    height: 1.4rem;
  }
  .why_chose_item:nth-child(2n+1) .why_chose_item_markers svg:nth-child(1) {
    color: #00ACCE;
  }
  .why_chose_item:nth-child(2n+2) .why_chose_item_markers svg:nth-child(2) {
    color: #00ACCE;
  }
  .slick-slide > div:nth-child(3n+1) .why_chose_item_markers svg:nth-child(1) {
    color: #045176;
  }
  .slick-slide > div:nth-child(3n+2) .why_chose_item_markers svg:nth-child(2) {
    color: #045176;
  }
  .slick-slide > div:nth-child(3n+3) .why_chose_item_markers svg:nth-child(3) {
    color: #045176;
  }
  .team_member {
    width: 100%;
  }
  .gallery_row {
    gap: 1.5rem;
  }
  .content_mobile_size {
    -webkit-line-clamp: 18;
  }
  .faqs .faqs_question {
    font-size: 1.8rem;
  }
  .blog_row {
    gap: 2.5rem;
  }
  .gallery-button {
    height: 4rem;
    line-height: 4rem;
    padding: 0 3rem 0 1.5rem;
  }
  .gallery-button svg {
    right: 1.5rem;
  }
  .choose_procedure_row {
    gap: 0.5rem 1rem;
  }
  .first_visit_includes_sec ol {
    grid-template-columns: repeat(1, 1fr);
  }
  .first_visit_includes_sec ol li:before {
    font-size: 5.6rem;
  }
  .first_visit_includes_sec ol li {
    padding-top: 6rem;
  }
  .first_visit_includes_sec ol li:after {
    top: 4.3rem;
  }
  .first_visit_includes2_sec tr {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .title_wrap p:not([class]) {
    margin: 1.5rem 0;
  }
  .block_404_content h1, .block_404_content .h1 {
    font-size: 3rem;
  }
  .block_404_content h1 span, .block_404_content .h1 span {
    font-size: 15rem;
  }
  .main_service_item:nth-child(4n+2):before, .main_service_item:nth-child(4n+3):before {
    background-color: #045176;
  }
  .main_service_item:nth-child(4n+1):before, .main_service_item:nth-child(4n+4):before {
    background-color: #045176;
  }
  .main_service_item:nth-child(2n+1):before {
    background-color: #045176;
  }
  .main_service_item:nth-child(2n+2):before {
    background-color: #00ACCE;
  }
  .main_service_item:nth-child(2n+1) .main_service_markers svg {
    color: #00ACCE;
  }
  .main_service_item:nth-child(2n+2) .main_service_markers svg {
    color: #045176;
  }
  .pagination {
    margin: 2rem 0 0;
  }
}
@media (-ms-high-contrast: none) and (max-width: 550px), (-ms-high-contrast: active) and (max-width: 550px), (-moz-touch-enabled: 0) and (max-width: 550px), (hover: hover) and (max-width: 550px) {
  .main_service_item:nth-child(2n+1) .main_service_name a:hover {
    color: #00ACCE;
  }
  .main_service_item:nth-child(2n+2) .main_service_name a:hover {
    color: #045176;
  }
}
@media only screen and (max-width: 500px) {
  .main_service_img {
    width: 100%;
    max-width: 27.5rem;
  }
  .about_diamond_image2 .about_diamond_inner_image2,
  .about_diamond_image .about_diamond_inner_image {
    max-width: 24.5rem;
  }
  .about_diamond_image:after {
    clip-path: polygon(20% 0%, 80% 0, 100% 100%, 0% 100%);
  }
  .about_diamond_image2:after {
    clip-path: polygon(20% 0%, 80% 0, 100% 100%, 0% 100%);
  }
  .inner_banner_full .inner_banner_full_bg {
    background-position: -95rem bottom;
  }
  .bolg_item {
    flex-direction: column;
    width: 100%;
  }
  .bolg_image {
    width: 100%;
  }
  .blog_content {
    width: 100%;
    border-radius: 0.5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .blog_content:before {
    top: -1rem;
    left: 0;
    height: 1.1rem;
    width: 100%;
    z-index: 3;
    border-radius: 0.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 450px) {
  .contact_us_section form .row_f [class*=col_] {
    width: calc(100% - 3.01rem);
  }
  .contact_us_section form textarea.input {
    min-height: 10rem;
    margin: 0;
  }
  .contact_us_section form .button {
    margin: 0.5rem 0 0;
  }
  .footer_bottom_development p {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .faqs .welcome_to_aside ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 400px) {
  .dialog .modal_buttons .button {
    width: 100%;
    margin: 0 0 1.5rem;
  }
  .dialog .modal_buttons .button:last-child {
    margin: 0;
  }
  .contact_body .inner_banner_img {
    height: 42rem;
  }
  .inner_banner_full .inner_banner_full_bg {
    height: 31rem;
    background-position: -70rem bottom;
  }
  .content_mobile_size {
    -webkit-line-clamp: 27;
  }
}
@media only screen and (max-width: 380px) {
  .navigation {
    right: -30rem;
    width: 30rem;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .mobile_phone, .home_bar_space {
    display: none;
  }
  footer {
    padding-bottom: 0;
  }
}
/*# sourceMappingURL=maps/main.css.map */
