.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;
  }
}
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  88% {
    transform: rotate(0deg);
  }
  92% {
    transform: rotate(5deg);
  }
  96% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.shake {
  animation-name: shake;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running;
}

.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);
  }
}
@keyframes toBlack {
  0% {
    filter: none;
  }
  100% {
    filter: brightness(0) saturate(0);
  }
}
@keyframes colorChange {
  0% {
    fill: #344045;
    color: #344045;
  }
  100% {
    color: #008B8B;
    fill: #008B8B;
  }
}
.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: #008B8B;
  }
}
@-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 "Manrope", 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 #008B8B;
  z-index: 1503;
  position: relative;
}
.modal_wrap .icon_close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #008B8B;
  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: #008B8B;
}
.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: #344045;
  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: #344045;
  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;
  width: 100%;
  margin: 0;
}
.dialog .contact_form .row_f [class*=col_] {
  width: calc(100% - 3.01rem);
}

.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: "Manrope", sans-serif;
  font-size: 1.6rem;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding-top: 0;
}

[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: 2px solid #FFCA28;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  clear: both;
  margin: 1.5rem 0;
}

hr.hr {
  border-top: 2px solid #FFCA28;
  border-bottom: 0;
  border-right: 0;
  border-left: 0;
  clear: initial;
  margin: 1.5rem 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: #008B8B;
  -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: none;
  border: none;
  font-size: 0;
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 5;
}
.slick-prev::after, .slick-next::after {
  content: "";
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  border-style: solid;
  border-width: 0 0.2rem 0.2rem 0;
  border-color: #FFCA28;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s linear;
}

.slick-prev {
  left: 1.5rem;
}
.slick-prev::after {
  transform: rotate(135deg);
}

.slick-next {
  right: 1.5rem;
}
.slick-next::after {
  transform: rotate(-45deg);
}

.slick-dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  transform: translate(-50%, 0);
  z-index: 30;
}
.slick-dots li {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  margin: 0 0.8rem;
  background: #D9E0E6;
  border-radius: 50%;
  cursor: pointer;
}
.slick-dots li.slick-active {
  background: #B0BEC5;
}
.slick-dots li:only-child {
  display: none;
}
.slick-dots li button {
  background: transparent;
  border: none;
  font-size: 0;
}

.row {
  margin: 0 -2rem;
}
.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 -2rem;
  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 2rem;
}
.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: 128rem;
  padding: 0 2rem;
  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: #344045;
  transition: all 0.3s;
}

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

.input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 4.3rem;
  padding: 0 1.4rem;
  font: 600 1.4rem/1.2 "Manrope", sans-serif;
  border: 0.1rem solid rgba(176, 190, 197, 0.2);
  background-color: rgba(176, 190, 197, 0.2);
  color: #344045;
  border-radius: 0.5rem;
  transition: box-shadow 0.2s ease-in;
}
.input:focus, .input:active {
  outline-style: none;
  background-color: #fff;
  box-shadow: 0 0 0 0.3rem rgba(146, 153, 169, 0.25);
}
.input::placeholder {
  font: 600 1.4rem/1.2 "Manrope", sans-serif;
  color: rgba(52, 64, 69, 0.37);
  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 #B0BEC5 inset !important;
  -webkit-text-fill-color: #344045 !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: 4.3rem;
  padding-top: 1.2rem;
  resize: none;
}

select.input {
  line-height: normal;
  text-overflow: "";
}

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

.select_after {
  position: relative;
  display: block;
}
.select_after::after {
  content: "";
  position: absolute;
  top: 1.9rem;
  right: 1rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0.5rem 0 0.5rem;
  border-color: #808080 transparent transparent transparent;
  pointer-events: none;
}
.select_after select {
  padding: 0 3rem 0 1rem;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.custom_checkbox {
  position: absolute;
  left: -999.9rem;
}
.custom_checkbox + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
  margin: 0 1rem 0 0;
}
.custom_checkbox + label .checkbox_design {
  flex: 0 0 auto;
  width: 1.6rem;
  height: 2rem;
  border: 0.1rem solid #EFF2F3;
  background-color: #EFF2F3;
  border-radius: 0.25rem;
  position: relative;
  transform: scale(1);
  transition: all 0.2s ease;
}
.custom_checkbox + label .checkbox_design svg {
  position: absolute;
  top: 0.5rem;
  left: 0.2rem;
  width: 1.2rem;
  height: 0.9rem;
  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: rgba(176, 190, 197, 0.2);
  transform: scale(0);
}
.custom_checkbox + label .checkbox_text {
  display: inline-block;
  font: 600 1.6rem/1 "Manrope", sans-serif;
  padding: 0 0 0 0.7rem;
  color: #344045;
}
.custom_checkbox:checked + label .checkbox_design {
  background-color: rgba(176, 190, 197, 0.2);
  border-color: rgba(176, 190, 197, 0.2);
}
.custom_checkbox:checked + label .checkbox_design svg {
  stroke: rgba(52, 64, 69, 0.37);
  stroke-dashoffset: 0;
}
.custom_checkbox:checked + label .checkbox_design::before {
  opacity: 0;
  transform: scale(3.5);
  transition: all 0.6s ease;
}

.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 2rem 1rem 0;
}
.custom_radio_button + label .radio_button_design {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #cfcfcf;
  background-color: #ffffff;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
}
.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: #008B8B;
  transform: scale(0);
}
.custom_radio_button + label .radio_button_design::before {
  opacity: 1;
}
.custom_radio_button + label .radio_button_text {
  display: inline-block;
  font-size: 1.6rem;
  padding: 0 0 0 1rem;
}
.custom_radio_button:checked + label .radio_button_design {
  border-color: #008B8B;
  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;
}
.validate_error .checkbox_text {
  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/4rem "Manrope", sans-serif;
  height: 4.4rem;
  min-width: 7.55em;
  padding: 0 1.7rem;
  color: #344045;
  background-color: #FFCA28;
  border: 0.1rem solid #FFCA28;
  border-radius: 0.5rem;
  text-align: center;
  white-space: nowrap;
  text-transform: capitalize;
  text-decoration: none;
  transition: 0.3s ease-out;
  cursor: pointer;
  user-select: none;
  appearance: none;
}
.button.button_arrow {
  padding: 0 1.7rem 0 8rem;
  position: relative;
}
.button.button_arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.3rem;
  transform: translate(0, -50%);
  border-radius: 0.25rem;
  width: 5.9rem;
  height: 3.9rem;
  background-color: #fff;
  transition: all 0.3s;
}
.button.button_arrow:after {
  content: "";
  position: absolute;
  left: 1.7rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 3.1rem;
  height: 2.3rem;
  background-image: url("/img/vector_ar.svg");
  background-repeat: no-repeat;
  background-size: contain;
  animation-name: toBlack;
  animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.button.button_large {
  line-height: 5.4rem;
  height: 5.4rem;
}
.button.button_large.button_arrow:before {
  width: 5.9rem;
  height: 4.8rem;
}
.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: #008B8B;
  background-color: #ffffff;
  border-color: #ffffff;
}
.button.light_2 {
  color: #008B8B;
  background-color: #ffffff;
  border-color: #ffffff;
}
.button.dark {
  color: #ffffff;
  background-color: #FFCA28;
  border-color: #FFCA28;
}
.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: #344045;
  background-color: #ffb92e;
  border-color: #ffb92e;
}
.button.button_info {
  color: #ffffff;
  background-color: #119eb5;
  border-color: #119eb5;
}
.button.button_disable {
  color: #344045;
  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: 6.5rem 0;
}

.pagination {
  padding: 0;
  user-select: none;
  font-size: 0;
}
.pagination li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0 1.9rem;
  list-style: none;
}
.pagination li:first-child {
  margin-left: 0;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination li.active a {
  background-color: #008B8B;
  color: #ffffff;
  pointer-events: none;
}
.pagination li.pagination_arrow .icon {
  position: relative;
  top: -0.2rem;
  width: 3.7rem;
  height: 2.7rem;
}
.pagination li.pagination_arrow_prev .icon {
  transform: rotate(180deg);
  width: 3.7rem;
  height: 2.7rem;
}
.pagination li a {
  font: 600 1.6rem/1 "Manrope", sans-serif;
  display: block;
  min-width: 3rem;
  min-height: 3rem;
  line-height: 3.2rem;
  padding: 0 0.5rem;
  color: #344045;
  text-align: center;
  transition: 0.3s linear;
  white-space: nowrap;
  vertical-align: center;
}

.social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.social .social_block {
  display: inline-block;
  line-height: 0;
}
.social .social_block .icon, .social .social_block img {
  width: 2.6rem;
  height: 2.6rem;
  transition: all 0.3s ease-in-out;
}

h1, .h1 {
  font: 800 6rem/1.25 "Manrope", sans-serif;
  color: #008B8B;
  margin: 1rem 0 3rem;
  text-transform: capitalize;
}

.covered_in_color {
  position: relative;
  display: inline-block;
  color: #344045;
  z-index: 3;
}
.covered_in_color:before {
  content: "";
  position: absolute;
  top: 0;
  left: -2%;
  width: 104%;
  height: 100%;
  background-color: #FFCA28;
  z-index: -1;
}

h2, .h2 {
  font: 800 5.4rem/1.2 "Manrope", sans-serif;
  color: #008B8B;
  margin: 1rem 0 2rem;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
}
h2:before, .h2:before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: -4.5rem;
  width: 8.3rem;
  height: 8.1rem;
  background-image: url("data:image/svg+xml;utf8,<svg width='83' height='81' viewBox='0 0 83 81' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M11.9191 72.0485L30.9896 46.2857L0 48.9057V32.531L31.2063 34.9326L11.9191 9.16982L27.7389 0L41.8251 27.9461L55.4778 0L71.0809 8.95149L51.7937 35.1509L83 32.531V48.9057L51.7937 46.9407L71.0809 72.0485L54.8277 81L40.9582 52.1806L26.2219 81L11.9191 72.0485Z' fill='%23FFCA28' fill-opacity='0.4'/></svg>");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.title {
  font: 800 5.4rem/1.2 "Manrope", sans-serif;
  color: #008B8B;
  margin: 1rem 0 2rem;
  text-transform: capitalize;
}

.sub_title {
  font: 800 3.4rem/1.2 "Manrope", sans-serif;
  color: #008B8B;
  margin: 1rem 0 2rem;
  text-transform: capitalize;
}

h3, .h3 {
  font: 800 2.4rem/1.2 "Manrope", sans-serif;
  color: #344045;
  margin: 0;
  text-transform: capitalize;
}

h4, .h4 {
  font: 700 2.3rem/1.2 "Manrope", sans-serif;
  color: #344045;
  margin: 0;
  text-transform: capitalize;
}

h5, .h5 {
  font: 700 2.2rem/1.2 "Manrope", sans-serif;
  color: #344045;
  margin: 0;
  text-transform: capitalize;
}

h6, .h6 {
  font: 700 2rem/1.2 "Manrope", sans-serif;
  color: #008B8B;
  margin: 0;
  text-transform: capitalize;
}

.content h1, .content .h1 {
  font: 800 6rem/1.25 "Manrope", sans-serif;
  color: #008B8B;
  margin: 1rem 0 3rem;
  text-transform: capitalize;
}
.content h2, .content .h2, .content .title {
  font: 800 5.4rem/1.2 "Manrope", sans-serif;
  color: #008B8B;
  margin: 1rem 0 2rem;
  text-transform: capitalize;
}
.content h3, .content .h3 {
  font: 800 2.4rem/1.2 "Manrope", sans-serif;
  color: #344045;
  margin: 1rem 0;
  text-transform: capitalize;
}
.content h4, .content .h4 {
  font: 700 2.4rem/1.2 "Manrope", sans-serif;
  color: #344045;
  margin: 1rem 0;
  text-transform: capitalize;
}
.content h5, .content .h5 {
  font: 700 2.2rem/1.2 "Manrope", sans-serif;
  color: #344045;
  margin: 1rem 0;
  text-transform: capitalize;
}
.content h6, .content .h6 {
  font: 700 2rem/1.2 "Manrope", sans-serif;
  color: #344045;
  margin: 1rem 0;
  text-transform: capitalize;
}
.content p {
  margin: 0 0 1.5rem;
}
.content .button {
  margin: 1.5rem 0 0;
}
.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 "Manrope", sans-serif;
  color: #344045;
  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: #008B8B;
  top: 0.5rem;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1.86684%2011.5633L4.85379%207.42857L0%207.84906V5.22102L4.88773%205.60647L1.86684%201.4717L4.34465%200L6.55091%204.48518L8.6893%200L11.1332%201.43666L8.11227%205.64151L13%205.22102V7.84906L8.11227%207.53369L11.1332%2011.5633L8.58747%2013L6.41514%208.37466L4.10705%2013L1.86684%2011.5633Z%22%20fill%3D%22%23FFCA28%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}
.content ol {
  margin-bottom: 1rem;
  margin-left: 4.5rem;
  counter-reset: li;
}
.content ol li {
  display: table;
  font: 400 1.6rem/1.5 "Manrope", sans-serif;
  color: #344045;
  padding: 0 0 0 2rem;
  margin: 1rem 0;
  overflow: hidden;
}
.content ol li:last-child {
  margin-bottom: 0;
}
.content ol li::before {
  margin-left: -2rem;
  counter-increment: li;
  content: counters(li, ".") ". ";
  color: #344045;
  font-weight: 400;
}
.content blockquote {
  font: 400 1.6rem/1.5 "Manrope", sans-serif;
  padding: 0 0 0 2rem;
  margin: 0 0 3rem;
  clear: both;
  position: relative;
}
.content blockquote::after {
  content: "";
  display: block;
  width: 1rem;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
  background: #008B8B;
}
.content a:not(.button) {
  display: inline-block;
  color: #008B8B;
  font-weight: 600;
  transition: 0.3s linear;
}
.content a:not(.button):focus {
  color: #008B8B;
}
.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: #008B8B;
}
.content .content_table th, .content .content_table td {
  padding: 1rem;
}

p {
  font: 400 1.6rem/1.5 "Manrope", sans-serif;
  color: #344045;
  margin: 1.5rem 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: #008B8B;
}

.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 {
  position: relative;
  z-index: 3;
}
.inner_banner .inner_banner_content {
  padding: 20rem 0 10rem;
}
.inner_banner .inner_banner_bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: grayscale(100%);
  z-index: -2;
}
.inner_banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 139, 139, 0.7);
  z-index: -1;
}
.inner_banner h1, .inner_banner .h1, .inner_banner p {
  margin: 0;
  text-align: center;
}

.body_inner_banner09 .inner_banner::after {
  background-color: rgba(0, 139, 139, 0.9);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: 0.2s;
}
.header .header_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.8rem 0 1.4rem;
  border-bottom: 0.1rem solid #fff;
}
.header .header_logo {
  display: inline-block;
  position: relative;
}
.header .header_logo img {
  width: 16.3rem;
}
.header .phone {
  display: flex;
  align-items: center;
  font: 800 2.4rem/1 "Manrope", sans-serif;
  color: #FFCA28;
  transition: 0.3s linear;
}
.header .phone .icon {
  width: 5.4rem;
  height: 5.2rem;
  transition: 0.3s linear;
  margin-right: 1.17rem;
}
.header.fixed {
  position: fixed;
  animation: slide-down 0.7s;
  background-color: #008B8B;
  box-shadow: 0 0 1.5rem 0 rgba(52, 64, 69, 0.2);
}
.header.fixed .header_row {
  padding: 1.4rem 0;
  border-bottom: none;
}
.header.fixed .header_logo img {
  width: 14rem;
}
.header.fixed .top_menu {
  display: none;
}
.header.fixed .navigation {
  margin: 0;
}

.navigation {
  margin: 1rem 0 0;
}
.navigation .header_nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation .header_nav > li > a:not(.button) {
  font: 800 1.6rem "Manrope", sans-serif;
  color: #fff;
  text-transform: capitalize;
  display: block;
  white-space: nowrap;
  padding: 0 1.65rem;
  position: relative;
  transition: 0.3s linear;
}
.navigation .header_nav > li > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 51%;
  right: 51%;
  bottom: -0.5rem;
  display: block;
  background-color: #FFCA28;
  height: 0.3rem;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  z-index: 3;
}
.navigation .header_nav > li.active > a:not(.button) {
  color: #fff;
}
.navigation .header_nav > li.active > a:not(.button):after {
  left: 2rem;
  right: 2rem;
}
.navigation .header_nav > li.dr_down {
  position: relative;
}
.navigation .header_nav > li.dr_down > a:not(.button) {
  position: relative;
  padding: 0 3rem 0 1.65rem;
}
.navigation .header_nav > li.dr_down > a:not(.button):before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 1.65rem;
  transform: translate(0, -50%);
  width: 0.9rem;
  height: 0.9rem;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%229%22%20height%3D%229%22%20viewBox%3D%220%200%209%209%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M3.93182%205.106e-07L5.06818%206.09944e-07L5.06818%206.81818L8.19318%203.69318L9%204.5L4.5%209L-5.60272e-07%204.5L0.806818%203.69318L3.93182%206.81818L3.93182%205.106e-07Z%22%20fill%3D%22white%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.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: 110%;
  left: 2rem;
  margin: 0.6rem 0 0;
  z-index: 3;
  min-width: 25rem;
  background-color: #FFCA28;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0.3rem rgba(52, 64, 69, 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 #FFCA28;
  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;
  font-weight: 800;
  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.3rem solid #ffffff;
}

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

.navigation_btn {
  display: none;
  width: 4.1rem;
  height: 4.1rem;
  position: absolute;
  top: 2.5rem;
  right: 2rem;
  overflow: visible;
  cursor: pointer;
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  z-index: 600;
  background-color: #FFCA28;
  border-radius: 50%;
}
.navigation_btn .hamburger_box {
  display: block;
  width: 2.5rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: #008B8B;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition-property: transform;
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.navigation_btn .hamburger_box::before, .navigation_btn .hamburger_box::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: #008B8B;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  left: 50%;
  transform: translate(-50%, 0);
}
.navigation_btn .hamburger_box::before {
  top: -0.5rem;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.navigation_btn .hamburger_box::after {
  bottom: -0.5rem;
  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(-50%, -50%) rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #008B8B;
}
.navigation_btn.is_open .hamburger_box::before, .navigation_btn.is_open .hamburger_box::after {
  width: 2.5rem;
  background-color: #008B8B;
}
.navigation_btn.is_open .hamburger_box::before {
  top: 0;
  opacity: 0;
  transition: translate(-50%, 0) top 0.075s ease, opacity 0.075s 0.12s ease;
}
.navigation_btn.is_open .hamburger_box::after {
  bottom: 0;
  transform: translate(-50%, 0) 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: #008B8B;
  margin: 0;
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translate(-50%, 0);
}

.home_bar_space {
  position: fixed;
  left: 0;
  bottom: 0;
  display: none;
  width: 100%;
  height: env(safe-area-inset-bottom);
  background-color: #008B8B;
  z-index: 299;
}

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

.logo_sidebar {
  display: none;
}

[data-type=white] td, [data-type=white] img, [data-type=white] h1, [data-type=white] h2, [data-type=white] h4, [data-type=white] h5, [data-type=white] h6, [data-type=white] .h1, [data-type=white] .h2, [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] 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] .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;
}

[data-type=white] h3, .content[data-type=white] h3,
[data-type=white] .h3, .content[data-type=white] .h3 {
  color: #F5F5DC;
}

[data-type=white] h2:before, .content[data-type=white] h2:before,
[data-type=white] .h2:before, .content[data-type=white] .h2:before {
  background-image: url("data:image/svg+xml;utf8,<svg width='83' height='81' viewBox='0 0 83 81' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M11.9191 72.0485L30.9896 46.2857L0 48.9057V32.531L31.2063 34.9326L11.9191 9.16982L27.7389 0L41.8251 27.9461L55.4778 0L71.0809 8.95149L51.7937 35.1509L83 32.531V48.9057L51.7937 46.9407L71.0809 72.0485L54.8277 81L40.9582 52.1806L26.2219 81L11.9191 72.0485Z' fill='white' fill-opacity='0.3'/></svg>");
}

.main_top {
  position: relative;
  padding: 0;
  z-index: 2;
}
.main_top .banner {
  width: 100%;
  max-width: 100%;
  position: relative;
  height: 71.2rem;
  z-index: 2;
}
.main_top .banner .banner_bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  filter: grayscale(100%);
}
.main_top .banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 139, 139, 0.7);
  z-index: -1;
}
.main_top .main_content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  display: block;
  z-index: 4;
  transform: translate(-50%, -50%);
  padding-top: 10.7rem;
}
.main_top .main_content .text {
  max-width: 59.11%;
  width: 100%;
  display: block;
  position: relative;
}
.main_top .main_content .text ul {
  column-count: 3;
  gap: 0;
}
.main_top .main_content .text ul li {
  margin: 0 0 1.5rem;
  font-size: 1.8rem;
}
.main_top .main_content .text ul li:before {
  top: 0.7rem;
}
.main_top .main_content .text .button {
  margin: 2rem 0 0;
}
.main_top .form_main_banner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  display: block;
  z-index: 4;
  transform: translate(-50%, -50%);
  padding-top: 10.7rem;
  pointer-events: none;
}
.main_top .form_main_banner_row {
  display: flex;
  justify-content: end;
}
.main_top .top_slider.hidden_slider {
  opacity: 0;
  overflow: hidden;
  max-height: 71.2rem;
}
.main_top .top_slider .slick-dots {
  bottom: 7rem;
}

.form_main_banner_box {
  background-color: #fff;
  border-radius: 0.5rem;
  max-width: 32.9%;
  width: 100%;
  padding: 4.6rem 5rem 4.4rem 3.9rem;
  pointer-events: auto;
}
.form_main_banner_box .modal_title {
  display: none;
}
.form_main_banner_box h3, .form_main_banner_box .h3 {
  font-weight: 500;
  position: relative;
  padding-left: 1.7rem;
  color: #008B8B;
  margin: 0 0 3rem;
}
.form_main_banner_box h3 b, .form_main_banner_box h3 strong, .form_main_banner_box .h3 b, .form_main_banner_box .h3 strong {
  font-weight: 800;
}
.form_main_banner_box h3:before, .form_main_banner_box .h3:before {
  content: "";
  position: absolute;
  width: 0.9rem;
  aspect-ratio: 1/1;
  top: 1rem;
  left: 0;
  background-color: #008B8B;
  border-radius: 50%;
}

.quis_placerat_sec {
  padding-top: 8rem;
}
.quis_placerat_sec tr {
  gap: 4rem;
}
.quis_placerat_sec td:last-child {
  max-width: 42.34%;
  width: 100%;
}
.quis_placerat_sec td:first-child {
  max-width: 44.6%;
  width: 100%;
}

.pre_banner_sec {
  display: none;
  padding: 0;
  position: fixed;
  bottom:0;
  z-index: 10;
  background-color: #FFCA28;
  width: 100%;
}

.pre_banner_row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.pre_banner_phone_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  margin-left: 2rem;
  transition: 0.3s;
}

.pre_banner_phone {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #344045;
  font: 600 2.6rem/1.2 "Manrope", sans-serif;
}
.pre_banner_phone svg {
  width: 3.3rem;
  height: 3.3rem;
  margin: 0 0.5rem;
}

.pre_banner_phone_text {
  position: absolute;
  top: -1.3rem;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 0 1.6rem;
  background-color: #008B8B;
  border-radius: 0.5rem;
  color: #fff;
  font: 500 1.4rem/2.6rem "Manrope", sans-serif;
  height: 2.6rem;
  white-space: nowrap;
}

.pre_banner_message {
  max-width: 11.3rem;
  width: 100%;
  height: 7.3rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  background-color: #344045;
  transition: 0.3s;
}
.pre_banner_message svg {
  width: 5.2rem;
  height: 4.3rem;
  fill: #FFCA28;
  transition: 0.3s;
}

.table_img table {
  width: 100%;
}
.table_img tr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.table_img td {
  max-width: 50%;
  width: 100%;
  position: relative;
  z-index: 2;
}
.table_img td img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
.table_img.table_img_left td:first-child:before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: -1.6rem;
  z-index: -1;
  width: 92.4%;
  height: 89.7%;
  background-image: url("/img/frame.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.table_img.table_img_right td:last-child:before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: -1.6rem;
  z-index: -1;
  width: 92.4%;
  height: 89.7%;
  background-image: url("/img/frame.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.tc h2, .tc .h2 {
  display: inline-block;
  margin: 0;
}
.tc h3, .tc .h3 {
  margin: 1.4rem 0 0;
}

.plumbing_services_sec {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.plumbing_services_sec .wrapper {
  max-width: 118rem;
}
.plumbing_services_sec:before {
  content: "";
  position: absolute;
  top: 59.5%;
  transform: translate(0, -59.5%);
  left: 0;
  background-color: #ECEFF1;
  width: 100%;
  height: 50%;
  z-index: -1;
}

.card_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 6rem 9rem;
}

.card_row {
  margin: 6.7rem 0 0;
}

.card_item {
  width: calc(50% - 4.5rem);
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.card_item:before {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: -1.4rem;
  z-index: -1;
  width: 90%;
  aspect-ratio: 472/224;
  background-image: url("/img/frame.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.card_image {
  display: block;
  width: 100%;
  position: relative;
  z-index: 5;
  aspect-ratio: 525/264;
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  overflow: hidden;
  background-color: #FFCA28;
  transition: 0.3s;
}
.card_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;
  z-index: 6;
  transition: all 0.3s;
}
.card_image .card_arrow {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: 0;
  width: 7.1rem;
  aspect-ratio: 71/58;
  z-index: 7;
  background-color: #FFCA28;
  border-radius: 0.25rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.card_image .card_arrow svg {
  width: 3.7rem;
  height: 2.7rem;
  fill: #344045;
  animation-name: colorChange;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
  animation-play-state: running;
}

.card_content {
  padding: 1rem 4.2rem 3rem;
  position: relative;
  z-index: 2;
}
.card_content h3, .card_content .h3 {
  color: #008B8B;
}
.card_content h3 a:not(.button), .card_content .h3 a:not(.button) {
  color: #008B8B;
  transition: 0.3s;
}

.card_sub_title {
  text-transform: uppercase;
  font-weight: 600;
}

.card_buttons {
  margin-top: auto;
  padding: 1.5rem 4.2rem 3.3rem;
}

.link {
  position: relative;
  font: 600 1.6rem/1 "Manrope", sans-serif;
  color: #344045;
  transition: 0.3s;
  z-index: 2;
}
.link:before {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background-color: #FFCA28;
  z-index: 2;
}
.link:after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 0;
  height: 0.3rem;
  background-color: #008B8B;
  transition: 0.3s;
  z-index: 3;
}

.hide_desktop550 {
  display: none !important;
}

.why_chose_sec {
  padding-bottom: 10rem;
}
.why_chose_sec .wrapper {
  max-width: 98.4rem;
}

.why_chose_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 9rem;
  margin: 4.5rem 0 0;
}

.why_chose_item {
  display: flex !important;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.4rem;
}
.why_chose_item h3, .why_chose_item .h3 {
  margin-top: 0.7rem;
}

.why_chose_image {
  width: 5rem;
  height: 5rem;
  background-color: #FFCA28;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.why_chose_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;
}

.cta {
  padding: 0;
  position: relative;
  z-index: 3;
}
.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008B8B;
  z-index: -2;
}
.cta .cta_bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.1;
  filter: grayscale(100%);
  z-index: -1;
}
.cta .cta_bg.cta_1_bg {
  width: calc(100% - 57.1rem);
}
.cta .cta_bg.cta_2_bg {
  width: calc(100% - 65.5rem);
}
.cta .wrapper {
  max-width: 118rem;
}

.cta_row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.cta_row.cta_row_1 {
  gap: 10rem;
}
.cta_row.cta_row_2 {
  gap: 8.6rem;
}

.cta_img {
  margin: 0 calc(59rem - 51.2vw) 0 0;
  position: relative;
  max-width: 50%;
  width: 100%;
  aspect-ratio: 571/321;
  z-index: 1;
  flex-shrink: 0;
}
.cta_img:before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  z-index: -1;
  width: 96.8%;
  height: 92.2%;
  background-image: url("/img/frame.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cta_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%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 6;
}

.cta_text {
  padding: 5rem 0 6rem;
  flex-grow: 1;
}
.cta_text h3, .cta_text .h3 {
  text-transform: unset;
  font-weight: 700;
}

.reviews_main_sec {
  padding: 9rem 0 10rem;
}
.reviews_main_sec .wrapper {
  max-width: 118rem;
}

.review_slid {
  padding: 5rem 3.4rem 2.7rem;
  background-color: rgba(236, 239, 241, 0.4);
  transition: all 0.3s;
}

.review_slide_content {
  text-align: center;
}

.review_img_text {
  font: 500 6.4rem/1 "Manrope", sans-serif;
  color: #fff;
  text-transform: uppercase;
}

.review_slider {
  margin: 5rem -1.4rem;
}
.review_slider.hidden_slider {
  opacity: 0;
  overflow: hidden;
  max-height: 65.6rem;
}
.review_slider .slick-track {
  display: flex;
}
.review_slider .slick-slide {
  margin: 0 1.4rem 0;
}
.reviews_main_sec .bottom_arrows_dots .slick-prev, .reviews_main_sec .bottom_arrows_dots .slick-next {
  position: absolute;
  top: 40%;
}
.reviews_main_sec .bottom_arrows_dots .slick-prev {left: .5rem;}
.reviews_main_sec .bottom_arrows_dots .slick-next {right: -3.5rem;}
.review_slider .slick-slide .review_slid {
  margin: 12.9rem 0 0;
  display: flex !important;
  flex-direction: column;
  position: relative;
  opacity: 1;
  transition: all 0.3s;
  /*filter: blur(0.2rem);*/
}
.review_slider .slick-slide .review_slide_img_box {
  position: absolute;
  top: -3.1rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 7rem;
  aspect-ratio: 1/1;
  transition: all 0.3s;
}
.review_slider .slick-slide .google_box {
  background-color: #f3f3f3;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  padding: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.review_slider .slick-slide .google_box svg {
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
}
.review_slider .slick-slide .review_slide_img {
  position: relative;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.review_slider .slick-slide .review_slide_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%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
}
.review_slider .slick-slide:nth-child(2n+1) .review_slide_img {
  background-color: #008B8B;
}
.review_slider .slick-slide:nth-child(2n+2) .review_slide_img {
  background-color: #FFCA28;
}
.review_slider .slick-current.slick-slide {
  margin: 0 1.4rem;
}
.review_slider .slick-current.slick-slide .review_slid {
  margin: 4.9rem 0 0;
  filter: none;
}
.review_slider .slick-current.slick-slide .review_slid .review_slide_img_box {
  position: absolute;
  top: -4.9rem;
  width: 8.5rem;
}
.review_slider .slick-current.slick-slide .review_slid .google_box {
  width: 3.7rem;
  height: 3.7rem;
}
.review_slider .slick-current.slick-slide .review_slid .google_box svg {
  width: 2.5rem;
  height: 2.5rem;
}
.review_slider .slick-slide:not(.slick-current) .review_img_text {
  font-size: 5.4rem;
}
.review_slider .slick-slide:not(.slick-active) {
  margin: 0 1.4rem 0;
  opacity: 0;
}

.review_title {
  text-align: center;
  font-weight: 600;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 1rem 0 2.5rem;
}
.stars svg {
  width: 2.5rem;
  height: 2.5rem;
  fill: #FFCA28;
}

.bottom_arrows_dots {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.bottom_arrows_dots .slick-dots {
  position: static;
  transform: none;
  margin: 0.4rem 0 0;
}
.bottom_arrows_dots .slick-prev, .bottom_arrows_dots .slick-next {
  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
  transform: none;
}
.bottom_arrows_dots .slick-prev:after, .bottom_arrows_dots .slick-next:after {
  content: none;
  display: none;
}
.bottom_arrows_dots .slick-prev svg, .bottom_arrows_dots .slick-next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  fill: #FFCA28;
}
.bottom_arrows_dots.review_slider_arrows {
  max-width: 41.9rem;
  margin: 0 auto;
}

.map_sec {
  height: 53.7rem;
  position: relative;
  z-index: 2;
  padding: 0;
  overflow: hidden;
}

.map_sec_bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.map_row_box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  z-index: 3;
}

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

.map_sec_text {
  background-color: #008B8B;
  max-width: 45.8%;
  width: 100%;
  border-radius: 0.5rem;
  padding: 4rem 4rem 6rem 5rem;
}
.map_sec_text h2, .map_sec_text .h2 {
  text-transform: unset;
  font-weight: 700;
}
.map_sec_text h3, .map_sec_text .h3 {
  text-transform: unset;
  font-weight: 700;
}

.tc.our_services_tc {
  max-width: 89.1rem;
  margin: 0 auto;
}
.tc.our_services_tc h2, .tc.our_services_tc .h2 {
  margin: 0 0 2rem;
}

.our_services_sec {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.our_services_sec:before {
  content: "";
  position: absolute;
  top: 68%;
  transform: translate(0, -68%);
  left: 0;
  background-color: #ECEFF1;
  width: 100%;
  height: 54%;
  z-index: -1;
}
.our_services_sec .wrapper {
  max-width: 118rem;
}

.cta_2 .modal_title {
  display: none;
}
.cta_2 .form_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
  margin-right: 1.5rem;
}
.cta_2 .form_item {
  max-width: 100%;
  width: 100%;
}
.cta_2 .form_item.form_item_half {
  max-width: calc(50% - 0.5rem);
}
.cta_2 .form_item.form_item_captcha {
  margin: 1rem 0 0;
}
.cta_2 .content .button {
  margin: 0;
}
.cta_2 .input {
  border: 0.1rem solid #EFF2F3;
  background-color: #EFF2F3;
}
.cta_2 .custom_checkbox + label .checkbox_text {
  color: #fff;
}

.cta_img.cta_img2 {
  max-width: 57.46%;
}
.cta_img.cta_img2:before {
  top: -2rem;
  left: -2rem;
  width: 99%;
  aspect-ratio: 651/396;
  background-repeat: no-repeat;
}

.main_content_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem 2rem;
}

.banner.banner_second_page {
  height: 59.5rem;
}

.service_inner_sec1 {
  background-color: #ECEFF1;
  padding: 10rem 0;
}
.service_inner_sec1 tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.service_inner_sec1 td {
  max-width: 44.6%;
  width: 100%;
}
.service_inner_sec1 td h2 {
  margin: 0;
}

.service_inner_sec2 {
  padding: 12rem 0 1.5rem;
  overflow: hidden;
}
.service_inner_sec2 .wrapper {
  max-width: 88.3rem;
}

.service_inner_row2 {
  margin: 3rem 0 0;
}

.service_inner_item2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
.service_inner_item2:before, .service_inner_item2:after {
  content: none;
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #ECEFF1;
}
.service_inner_item2:nth-child(2n+2) {
  background-color: #ECEFF1;
}
.service_inner_item2:nth-child(2n+2):before, .service_inner_item2:nth-child(2n+2):after {
  content: "";
}
.service_inner_item2:nth-child(2n+2):before {
  left: 100%;
}
.service_inner_item2:nth-child(2n+2):after {
  right: 100%;
}

.service_inner_image2 {
  max-width: 5rem;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #FFCA28;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  margin-right: 2.4rem;
  flex-shrink: 0;
  overflow: hidden;
}
.service_inner_image2 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;
}

.service_inner_name2 {
  max-width: 41.75%;
  width: 100%;
  margin-right: 6.5rem;
}

.service_inner_text2 {
  max-width: 41.75%;
  width: 100%;
}

.card_content.what_service_include_content {
  padding: 2.5rem 4.2rem 3rem 5.2rem;
}

.what_service_include_sec {
  position: relative;
  z-index: 2;
  background-color: #ECEFF1;
}


.cta_3 {
  background-color: #008B8B;
}
.cta_3 h2, .cta_3 .h2 {
  font-size: 3.6rem;
  margin: 0;
}
.cta_text .h2 {font-size: 3.8rem;}
.cta_3 h2:before, .cta_3 .h2:before {
  content: none;
  display: none;
}
.cta_3 p {
  margin: 0;
}

.cta_3_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem 3rem;
}

.about_sec1 tr {
  gap: 4rem 10rem;
}
.about_sec1 td:first-child {
  width: 47.25%;
}
.about_sec1 td:last-child {
  width: 44.6%;
}

.cta_4 {
  background-color: #008B8B;
  padding: 6rem 0;
}
.cta_4 h2, .cta_4 .h2 {
  margin: 0;
}
.cta_4 h3, .cta_4 .h3 {
  margin-top: 0;
  font-weight: 700;
  text-transform: unset;
}

.cta_4_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem 16rem;
}

.cta_4_title {
  flex-shrink: 0;
}

.cta_4_text {
  flex-grow: 1;
}

.about_sec2 tr {
  gap: 4rem 8.3rem;
}
.about_sec2 td:first-child {
  width: 50.97%;
}
.about_sec2 td:last-child {
  width: 42.34%;
}

.about_sec3 {
  padding-bottom: 10rem;
}
.about_sec3 ol {
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem 7rem;
}
.about_sec3 ol li {
  max-width: calc(25% - 5.25rem);
  width: 100%;
  padding: 6rem 0 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about_sec3 ol li h3, .about_sec3 ol li .h3 {
  margin-top: 0;
}
.about_sec3 ol li hr, .about_sec3 ol li hr.hr {
  margin: 1rem 0;
}
.about_sec3 ol li:before {
  position: absolute;
  top: 0;
  left: 2rem;
  font: 800 2.4rem/1 "Manrope", sans-serif;
  content: counters(li, "") " ";
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FFCA28;
}

.gallery_sec {
  padding-top: 8rem;
}

.card_row.gallery_row {
  margin: 7.2rem 0 6.3rem;
}

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

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

.testimonials_item {
  position: relative;
  z-index: 2;
  background-color: rgba(236, 239, 241, 0.4);
  margin-top: 4.3rem;
  max-width: calc(33.3333333333% - 2.3333333333rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 6.3rem 2.5rem 3rem;
  border-radius: 0.5rem;
}
.testimonials_item:nth-child(2n+1) .review_img {
  background-color: #008B8B;
}
.testimonials_item:nth-child(2n+2) .review_img {
  background-color: #FFCA28;
}

.review_img_box {
  position: absolute;
  top: -4.3rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 8.5rem;
  aspect-ratio: 1/1;
  z-index: 3;
}
.review_img_box .google_box {
  background-color: #f3f3f3;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3.7rem;
  height: 3.7rem;
  padding: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 5;
}
.review_img_box .google_box svg {
  width: 2.5rem;
  height: 2.5rem;
}

.review_img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review_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%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
}

.review_content {
  text-align: center;
}

.review_place {
  margin: 1rem 0 0;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

.tips_sec1 {
  padding: 9rem 0 10rem;
}
.tips_sec1 .wrapper {
  max-width: 122.2rem;
}

.tips_row {
  margin: 3rem 0 0;
}

.tips_item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem 4.7rem;
  padding: 3rem 0;
}

.tips_img {
  max-width: 6.5rem;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #FFCA28;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.tips_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%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.tips_text {
  max-width: 92.2rem;
  width: 100%;
  flex-grow: 1;
}

.tips_sec2 {
  padding: 9rem 0 10rem;
}
.tips_sec2 .wrapper {
  max-width: 85.7rem;
}

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

.card_row.bog_row {
  margin: 7rem 0 10rem;
}

.blog_share_row {
  margin: 1rem 0 2rem;
}
.blog_share_row .sharethis-inline-share-buttons {
  display: flex !important;
  flex-wrap: wrap;
  flex-direction: row !important;
  gap: 1rem 0;
}

.blog_share_row .sharethis-inline-share-buttons .st-btn[data-network=email], .blog_share_row .sharethis-inline-share-buttons .st-btn[data-network=pinterest], .blog_share_row .sharethis-inline-share-buttons .st-btn[data-network=twitter], .blog_share_row .sharethis-inline-share-buttons .st-btn[data-network=facebook] {
  display: block !important;
  width: 2.7rem !important;
  height: 2.7rem !important;
  padding: 0 !important;
  background-color: transparent !important;
  margin-right: 3.2rem !important;
}
.blog_share_row .sharethis-inline-share-buttons .st-btn[data-network=email] img, .blog_share_row .sharethis-inline-share-buttons .st-btn[data-network=pinterest] img, .blog_share_row .sharethis-inline-share-buttons .st-btn[data-network=twitter] img, .blog_share_row .sharethis-inline-share-buttons .st-btn[data-network=facebook] img {
  width: 2.6rem !important;
  height: 2.6rem !important;
  filter: brightness(0) saturate(100%) invert(57%) sepia(38%) saturate(305%) hue-rotate(135deg) brightness(90%) contrast(90%);
}

.blog_share_row .sharethis-inline-share-buttons .st-btn[data-network=sharethis] {
  display: block !important;
  width: 2.7rem !important;
  height: 2.7rem !important;
  padding: 0 !important;
  background-color: transparent !important;
  margin-right: 0 !important;
}
.blog_share_row .sharethis-inline-share-buttons .st-btn[data-network=sharethis] img {
  width: 2.6rem !important;
  height: 2.6rem !important;
  filter: brightness(0) saturate(100%) invert(57%) sepia(38%) saturate(305%) hue-rotate(135deg) brightness(90%) contrast(90%);
}

.blog_post .inner_banner .inner_banner_content {
  max-width: 81.85%;
  width: 100%;
}
.blog_post .inner_banner h1, .blog_post .inner_banner .h1 {
  text-align: left;
  margin: 0 0 2rem;
}
.blog_post .inner_banner p {
  text-align: left;
}
.blog_post .inner_banner td {
  padding-right: 9rem;
}
.blog_post .inner_banner td:last-child {
  padding-right: 0;
}

.blog_post_sec {
  padding: 10rem 0;
}

.blog_wrap {
  display: flex;
  gap: 2rem 7.4rem;
}

.blog_sidebar {
  max-width: 27.9rem;
  width: 100%;
  flex-shrink: 0;
}
.blog_sidebar ul li {
  margin: 0 0 3rem;
}
.blog_sidebar ul li a {
  position: relative;
  display: block;
  font: 800 2.4rem/1 "Manrope", sans-serif;
  color: #344045;
  transition: 0.3s;
  padding-left: 2.4rem;
}
.blog_sidebar ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.9rem;
  height: 0;
  background-color: #FFCA28;
  transition: 0.3s;
}
.blog_sidebar ul li.active a {
  pointer-events: none;
}
.blog_sidebar ul li.active a:before {
  height: 100%;
  background-color: #FFCA28;
}
.blog_sidebar ul li:last-child {
  margin-bottom: 0;
}

.blog_post_title_wrap {
  margin: 0 0 5rem;
}
.blog_post_title_wrap .blog_post_img {
  margin: 3rem 0 1rem;
  text-align: center;
}

.blog_post_sub_title {
  text-transform: uppercase;
  font-weight: 600;
}

.aside_block {
  margin: 0 0 10rem;
}
.aside_block:last-child {
  margin: 0;
}

.blog_content h2:before, .blog_content .h2:before {
  content: none;
  display: none;
}
.blog_content ul li {
  padding-left: 2.5rem;
}
.blog_content ul li:before {
  color: transparent;
  top: 1rem;
  left: 1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-image: none;
  background-color: #344045;
}

.page_404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page_404 .header {
  background-color: #008B8B;
}
.page_404 .header .header_row {
  border-bottom: none;
}
.page_404 .block_404 {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding-top: 17rem;
}
.page_404 .block_404_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page_404 .block_404_content h1, .page_404 .block_404_content .h1 {
  color: #008B8B;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
}
.page_404 .block_404_content h1 span, .page_404 .block_404_content .h1 span {
  color: #FFCA28;
  display: block;
  font-size: 18rem;
  line-height: 1;
}
.page_404 footer {
  flex-shrink: 0;
}

.contact_us_section {
  position: relative;
  z-index: 2;
  padding: 17rem 0 6rem;
}
.contact_us_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 139, 139, 0.9);
  z-index: -1;
}
.contact_us_section .contact_us_section_bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  z-index: -2;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.contact_us_section h3, .contact_us_section .h3 {
  color: #fff;
  margin: 0 0 2.5rem;
}
.contact_us_section address {
  background-color: #FFCA28;
  padding: 3.1rem 4.4rem 3.1rem 3rem;
}
.contact_us_section address p {
  font: 600 1.6rem/1.2 "Manrope", sans-serif;
  color: #008B8B;
  margin: 0;
}
.contact_us_section address a:not(.button) {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  font: 700 1.6rem/1.2 "Manrope", sans-serif;
  color: #344045;
  margin: 0.2rem 0 3rem;
  transition: 0.3s linear;
}
.contact_us_section address a:not(.button).emergency_phone {
  font: 800 2.4rem/1.2 "Manrope", sans-serif;
  margin: 0.2rem 0 2.5rem;
}
.contact_us_section address a:not(.button):last-child {
  margin-bottom: 0;
}
.contact_us_section .contact_us_row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem 12.5rem;
  margin: 7rem 0 0;
}
.contact_us_section .contact_us_form {
  max-width: 43.47%;
  width: 100%;
  margin-left: 9.27%;
}
.contact_us_section .contact_us_address {
  max-width: 26.69%;
  width: 100%;
  position: relative;
  z-index: 3;
}
.contact_us_section .contact_us_address:before {
  content: "";
  position: absolute;
  top: -3rem;
  left: -1.6rem;
  z-index: -1;
  width: 100%;
  aspect-ratio: 333/295;
  background-image: url("/img/frame2.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.contact_us_section form .input {
  border: 0.1rem solid #EFF2F3;
  background-color: #EFF2F3;
}
.contact_us_section form textarea.input {
  min-height: 10.8rem;
  background-color: #EFF2F3;
  border: 0.1rem solid #EFF2F3;
}
.contact_us_section form .custom_checkbox + label .checkbox_text {
  color: #fff;
}

.body_contact .footer_bottom {
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.body_contact .footer_bottom:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
}
.body_contact .footer_bottom:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  z-index: -2;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

footer {
  padding: 6rem 0 0;
  background: #008B8B;
  position: relative;
  z-index: 3;
}
footer .footer_title {
  color: #F5F5DC;
  margin: 0 0 2.7rem;
  text-transform: capitalize;
  font-weight: 600;
}
footer .footer_col2 .footer_title {
  margin: 0 0 1.8rem;
}
footer .footer_row {
  display: grid;
  grid-template-columns: 22rem 25.8rem 28rem;
  justify-content: space-between;
  gap: 0 5rem;
}
footer .certification_images {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.9rem;
}
footer .certification_images img {
  display: block;
}
footer .certification_images img:first-child {
  max-width: 12rem;
  width: 100%;
}
footer .certification_images img:last-child {
  max-width: 15.1rem;
  width: 100%;
}
footer p {
  display: block;
  color: #D9D9D9;
  font: 500 1.6rem/1.3 "Manrope", sans-serif;
  margin: 0 0 0.7rem;
}
footer a {
  display: inline-block;
  font: 500 1.6rem/1.3 "Manrope", sans-serif;
  color: #D9D9D9;
  transition: 0.3s linear;
}
footer ul {
  position: relative;
  top: -0.5rem;
  column-count: 2;
  gap: 4.7rem;
}
footer ul li a {
  margin: 0.5rem 0;
}
footer ul li:nth-child(2n+2) a {
  margin: 1.4rem 0;
}

.footer_bottom {
  padding: 3rem 0 3rem;
  margin: 6rem 0 0;
  position: relative;
  z-index: 3;
  background-color: #fff;
}
.footer_bottom p, .footer_bottom a {
  font: 400 1.6rem/1 "Manrope", sans-serif;
  color: #008B8B;
}
.footer_bottom p {
  margin: 0;
}
.footer_bottom a {
  transition: 0.3s linear;
}

.footer_bottom_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

@-moz-document url-prefix() {
  html {
    scrollbar-width: auto;
    scrollbar-color: #008B8B #f1f1f1;
  }
}
@media only screen and (min-width: 993px) {
.button.button_arrow:hover:before, .button.button_arrow:hover:after {
  left: 78%; opacity: 0;
}
.button.button_arrow:hover {background-color: #fff; padding: 0 4.85rem}

  .navigation .header_nav > li.dr_down:hover .sub_menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  .navigation .header_nav > li.dr_down:hover > a:not(.button):before {
    transform: translate(0, -50%) rotate(180deg);
    transition: all 0.3s ease-in-out;
  }
  .navigation .header_nav .sub_menu > li > a:not(.button):hover {
    color: #008B8B;
    border-left: 0.3rem solid #008B8B;
  }
  .review_slider .slick-slide {
    width: 29% !important;
  }
  .review_slider .slick-slide.slick-current {
    width: 36.75% !important;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  .header .header_contacts .phone:hover {
    color: #fff;
  }
  .navigation .header_nav > li > a:not(.button):hover {
    color: #FFCA28;
  }
  .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;
  }
  footer a:hover {
    color: #FFCA28;
  }
  .footer_bottom a:hover {
    color: #FFCA28;
  }
  .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);
  }
  .pre_banner_phone:hover {
    color: #008B8B;
  }
  .pre_banner_message:hover svg {
    fill: #008B8B;
  }
  .card_content h3 a:not(.button):hover, .card_content .h3 a:not(.button):hover {
    color: #FFCA28;
  }
  .blog_sidebar ul li a:hover {
    color: #FFCA28;
  }
  .blog_sidebar ul li a:hover:before {
    height: 100%;
    background-color: #008B8B;
  }
  .link:hover {
    color: #008B8B;
  }
  .link:hover:after {
    width: 100%;
  }
  .card_image:hover img {
    -moz-transform: translate(-50%, -50%) scale(1.1);
    -o-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
  }
  .button:hover {
    color: #344045;
    background-color: #008B8B;
    border-color: #344045;
  }
  .button:hover svg {
    fill: #344045;
  }
  .button.light:hover {
    color: #ffffff;
    background-color: #008B8B;
    border-color: #008B8B;
  }
  .button.light_2:hover {
    color: #ffffff;
    background-color: #008B8B;
    border-color: #ffffff;
  }
  .button.dark:hover {
    color: #FFCA28;
    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: #344045;
    background-color: #fdae11;
    border-color: #fdae11;
  }
  .button.button_info:hover {
    color: #ffffff;
    background-color: #0890a7;
    border-color: #0890a7;
  }
  .button.button_disable:hover {
    color: #344045;
    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::after, .slick-next:hover::after {
    border-color: #008B8B;
  }
  .dialog .icon_close:hover {
    color: #dc3545;
  }
  .input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 4rem #B0BEC5 inset !important;
    -webkit-text-fill-color: #344045 !important;
  }
  .custom_checkbox + label:hover .checkbox_design {
    border-color: #008B8B;
  }
  .custom_radio_button + label:hover .radio_button_design {
    border-color: #008B8B;
  }
  .pagination li a:hover {
    background-color: #008B8B;
    color: #ffffff;
  }
  .social .social_block:hover .icon, .social .social_block:hover img {
    padding: 0.2rem;
  }
  .content a:not(.button):hover {
    color: #008B8B;
  }
  .contact_us_section address a:not(.button):hover {
    color: #008B8B;
  }
  .toast_notifications .removeTOAST .icon:hover {
    color: #FF3F0A;
  }
}
@media only screen and (max-width: 1400px) {
  .service_inner_sec1 td:first-child {
    padding-left: 2rem;
  }
  .cta_4_title {
    padding-left: 2rem;
  }
  .table_img_right td:first-child {
    padding-left: 2rem;
  }
  .contact_us_section h1, .contact_us_section .h1 {
    margin-left: 2rem;
  }
}
@media only screen and (max-width: 1300px) {
  h1, .h1 {
    font-size: 5rem;
  }
  .content h1, .content .h1 {
    font-size: 5rem;
  }
  h2, .h2 {
    font-size: 4.5rem;
  }
  h2:before, .h2:before {
    left: -3.5rem;
    width: 7.2rem;
    height: 7rem;
  }
  .content h2, .content .h2 {
    font-size: 4.5rem;
  }
  .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;
  }
  .form_main_banner_box {
    max-width: 36%;
  }
  .cta_3 h2, .cta_3 .h2 {
    font-size: 3.7rem;
  }
  .about_sec3 ol {
    gap: 2rem 5rem;
  }
  .about_sec3 ol li {
    max-width: calc(33.3333333333% - 4rem);
  }
}
@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);
  }
  .form_main_banner_box {
    max-width: 37rem;
    padding: 4rem 3.5rem 3.4rem 2.9rem;
  }
  .main_top .main_content .text {
    max-width: calc(100% - 42rem);
  }
  .cta_img {
    margin: 0 -2.5rem 0 0;
  }
  .cta_img.cta_img2 {
    max-width: 50%;
  }
  .cta_row.cta_row_1 {
    gap: 8rem;
  }
  .cta_text {
    margin-left: 2rem;
  }
  .cta_row.cta_row_2 {
    gap: 5.6rem;
  }
  .cta .cta_bg.cta_2_bg,
  .cta .cta_bg.cta_1_bg {
    width: 55%;
  }
  .cta_row.cta_row_2 {
    gap: 4.6rem;
  }
  .header .header_logo img {
    width: 15rem;
  }
  .header .phone {
    font-size: 1.8rem;
  }
  .header .phone .icon {
    width: 4.4rem;
    height: 4.2rem;
    margin-right: 0.8rem;
  }
  .navigation .header_nav > li > a:not(.button) {
    padding: 0 1.4rem;
  }
  .navigation .header_nav > li.dr_down > a:not(.button) {
    padding: 0 2.5rem 0 1.4rem;
  }
  .navigation .header_nav > li.dr_down > a:not(.button):before {
    right: 1.3rem;
  }
  .main_top .main_content .text ul {
    column-count: 2;
    gap: 0 1rem;
  }
  .card_sub_title br {
    display: none;
  }
  .review_slider .slick-slide .review_slid {
    margin: 8.9rem 0 0;
  }
  .map_sec_bg {
    background-position: -16rem bottom;
  }
  footer .footer_row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .inner_banner .inner_banner_content {
    padding: 18rem 0 8rem;
  }
  .table_img td:last-child,
  .table_img td:first-child {
    max-width: 45%;
  }
  .testimonials_item {
    max-width: calc(50% - 1.75rem);
  }
  .testimonials_row {
    gap: 6rem 3.5rem;
    margin: 4.5rem 0 0;
  }
  .contact_us_section .contact_us_form {
    margin-left: 0;
  }
  .contact_us_section .contact_us_address {
    max-width: 30rem;
  }
  .contact_us_section .contact_us_row {
    justify-content: center;
    gap: 2rem 11rem;
  }
  .contact_us_section {
    padding: 14rem 0 5rem;
  }
}
@media only screen and (max-width: 992px) and (-ms-high-contrast: none), only screen and (max-width: 992px) and (-ms-high-contrast: active), only screen and (max-width: 992px) and (-moz-touch-enabled: 0), only screen and (max-width: 992px) and (hover: hover) {
  .navigation .header_nav .sub_menu > li > a:not(.button):hover {
    color: rgba(255, 255, 255, 0.5);
    border-left: 0.3rem solid #344045;
  }
}
@media only screen and (max-width: 992px) {
  .header .header_row, .header.fixed .header_row {
    padding: 1.9rem 0 1.4rem;
  }
  .header .header_logo img, .header.fixed .header_logo img {
    width: 14.7rem;
  }
  .navigation .header_nav > li.dr_down > a:not(.button):before {
    content: none;
    display: none;
  }
  .header .navigation_btn {
    display: block;
  }
  .navigation {
    position: fixed;
    top: 0;
    right: -36rem;
    z-index: 100;
    width: 36rem;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    background-color: #008B8B;
    transition: right 0.3s ease-in;
  }
  .navigation.nav_opened {
    right: 0;
    transition: right 0.3s ease-out;
  }
  .navigation .logo_sidebar img {
    max-width: 24rem;
    width: 100%;
  }
  .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.9rem 0;
    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;
    display: inline-block;
    z-index: 1;
    top: 50%;
    bottom: unset;
    right: -1.3rem;
    transform: translate(0, -50%);
    width: 0.9rem;
    height: 0.9rem;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%229%22%20height%3D%229%22%20viewBox%3D%220%200%209%209%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M3.93182%205.106e-07L5.06818%206.09944e-07L5.06818%206.81818L8.19318%203.69318L9%204.5L4.5%209L-5.60272e-07%204.5L0.806818%203.69318L3.93182%206.81818L3.93182%205.106e-07Z%22%20fill%3D%22white%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in-out;
  }
  .navigation .header_nav > li.dr_down.active > a:not(.button)::after {
    border-color: transparent transparent transparent #008B8B;
  }
  .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: rotate(90deg);
  }
  .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 {
    justify-content: center;
    margin: 2rem 0 0;
  }
  .navigation .header_nav > li.mobile_social .social a {
    display: inline-block;
    vertical-align: middle;
    width: auto;
  }
  .navigation .header_nav > li.mobile_social .social a svg {
    fill: #ffffff;
  }
  .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: 5.1rem;
    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: 4.2rem;
  }
  .content h1, .content .h1 {
    font-size: 4.2rem;
  }
  h2, .h2 {
    font-size: 2.7rem;
  }
  h2:before, .h2:before {
    top: -2rem;
    left: -3rem;
    width: 6.1rem;
    height: 5.9rem;
  }
  .content h2, .content .h2 {
    font-size: 3.6rem;
  }
  .title, .content .title {
    font-size: 3.6rem;
  }
  h3, .h3 {
    font-size: 2.2rem;
  }
  .content h3, .content .h3 {
    font-size: 2.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;
  }
  .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;
  }
  .cta_3 h2, .cta_3 .h2 {
    font-size: 2.8rem;
  }
  .header_contacts {
    display: none;
  }
  section {
    padding: 4.7rem 0;
  }
  .main_top .main_content {
    padding-top: 9rem;
  }
  .main_top .banner {
    height: 64.2rem;
  }
  .main_top .form_main_banner {
    padding-top: 10rem;
  }
  .card_row {
    gap: 5rem 6rem;
  }
  .card_content {
    padding: 1rem 2.5rem 2rem;
  }
  .card_item {
    width: calc(50% - 3rem);
  }
  .why_chose_row {
    margin: 4.1rem 0 0;
    gap: 3rem 5rem;
  }
  .reviews_main_sec {
    padding: 6.8rem 0 7.5rem;
  }
  .review_slider {
    margin: 3rem -1rem;
  }
  .review_slider .slick-slide {
    margin: 0 1rem 0;
  }
  .review_slider .slick-slide .review_slid {
    margin: 6rem 0 0;
    padding: 4rem 2.5rem 3rem;
  }
  .review_slider .slick-slide.slick-current .review_slid {
    margin: 4.9rem 0 0;
  }
  .review_slider .slick-slide .review_slid .review_slide_img_box {
    top: -2.3rem;
    width: 5.3rem;
  }
  .review_slider .slick-slide.slick-current .review_slid .review_slide_img_box {
    top: -3.7rem;
    width: 6.5rem;
  }
  .review_slider .slick-slide .review_slid .google_box {
    width: 2.1rem;
    height: 2.1rem;
  }
  .review_slider .slick-slide .review_slid .google_box svg {
    width: 1.2rem;
    height: 1.2rem;
  }
  .review_slider .slick-slide .review_slid.slick-current .google_box {
    width: 2.7rem;
    height: 2.7rem;
  }
  .review_slider .slick-slide.slick-current .review_slid .google_box svg {
    width: 1.9rem;
    height: 1.9rem;
  }
  .cta_row.cta_row_1 {
    gap: 4rem;
  }
  .why_chose_sec {
    padding-bottom: 7.5rem;
  }
  .quis_placerat_sec {
    padding-top: 6rem;
  }
  .map_sec {
    height: 47rem;
  }
  .map_sec_text {
    padding: 3rem 3rem 4rem 4rem;
    max-width: 50%;
  }
  .footer_bottom {
    margin: 3rem 0 0;
  }
  .table_img td:last-child,
  .table_img td:first-child {
    max-width: 48%;
  }
  .cta_2 .form_wrap {
    gap: 0 0.6rem;
    margin-right: 0;
  }
  .cta_2 .form_item.form_item_half {
    max-width: calc(50% - 0.3rem);
  }
  .cta_row_2 .cta_text {
    padding: 3rem 0 2rem;
  }
  .cta_img.cta_img2 {
    max-width: 45%;
  }
  .inner_banner .inner_banner_content {
    padding: 14rem 0 6rem;
  }
  .service_inner_sec1 {
    padding: 6rem 0 7rem;
  }
  .service_inner_name2 {
    margin-right: 3.5rem;
  }
  .service_inner_image2 {
    margin-right: 2rem;
  }
  .card_content.what_service_include_content {
    padding: 2rem 2.5rem;
  }
  .about_sec1 tr {
    gap: 4rem 6rem;
  }
  .cta_4_row {
    gap: 2rem 8rem;
  }
  .cta_4 {
    padding: 4rem 0;
  }
  .about_sec3 {
    padding-bottom: 7rem;
  }
  .about_sec3 ol li {
    max-width: calc(50% - 3rem);
  }
  .card_row.gallery_row {
    margin: 5rem 0 4rem;
  }
  .gallery_sec {
    padding-top: 6rem;
  }
  .testimonials_item {
    max-width: calc(50% - 1rem);
  }
  .testimonials_row {
    gap: 4rem 2rem;
    margin: 3rem 0 0;
  }
  .review_slider .slick-slide .review_slid .review_img_text {
    font-size: 5.4rem;
  }
  .review_slider .slick-slide:not(.slick-current) .review_slid .review_img_text {
    font-size: 4.4rem;
  }
  .tips_item {
    gap: 1rem 3rem;
    padding: 2rem 0;
  }
  .bog_sec,
  .tips_sec2,
  .tips_sec1 {
    padding: 6rem 0 7rem;
  }
  .blog_sidebar ul li a {
    font-size: 2.1rem;
  }
  .blog_sidebar ul li {
    margin: 0 0 2rem;
  }
  .blog_sidebar {
    max-width: 35%;
  }
  .aside_block {
    margin: 0 0 7rem;
  }
  .blog_wrap {
    gap: 2rem 5rem;
  }
  .blog_post_sec {
    padding: 7rem 0 7rem;
  }
  .blog_post_title_wrap {margin: 0 0 4rem;}
  .contact_us_section .contact_us_row {gap: 2rem 8rem;}
  footer .footer_row {grid-template-columns: 1fr 1fr;}
}
@media only screen and (max-width: 840px) {
  .cta_3_row {flex-direction: column;justify-content: center;text-align: center;}
}
@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: 4rem 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: 3.4rem;
  }
  .content h1, .content .h1 {
    font-size: 3.4rem;
  }
  h2, .h2 {
    font-size: 2.8rem;
  }
  h2:before, .h2:before {
    top: -1rem;
    left: -2.5rem;
    width: 5.1rem;
    height: 4.9rem;
  }
  .content h2, .content .h2 {
    font-size: 2.8rem;
  }
  .title, .content .title {
    font-size: 2.8rem;
  }
  h3, .h3 {
    font-size: 2.1rem;
  }
  .content h3, .content .h3 {
    font-size: 2.1rem;
  }
  h4, .h4 {
    font-size: 1.9rem;
  }
  .content h4, .content .h4 {
    font-size: 1.9rem;
  }
  h5, .h5 {
    font-size: 1.7rem;
  }
  .content h5, .content .h5 {
    font-size: 1.7rem;
  }
  .modal_video.dialog {
    width: 90vw;
  }
  .cta_3 h2, .cta_3 .h2 {
    font-size: 2.2rem;
  }
  .main_content_row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main_top .main_content .text {
    max-width: 100%;
  }
  .main_top .form_main_banner {
    top: unset;
    bottom: 3rem;
    transform: translate(-50%, 0);
    padding-top: 0;
  }
  .main_top .form_main_banner_row {
    justify-content: center;
  }
  .main_top .banner {
    height: 87.2rem;
  }
  .main_top .main_content {
    padding-top: 0;
    top: 11rem;
    transform: translate(-50%, 0%);
  }
  .main_top .main_content h1, .main_top .main_content .h1 {
    margin-left: 1rem;
  }
  .main_top .main_content.main_content_second_page {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .table_img_left tr {
    flex-direction: column-reverse;
  }
  .table_img_right tr {
    flex-direction: column;
  }
  .table_img_right td:first-child,
  .table_img_left td:last-child {
    max-width: 100%;
    width: 100%;
    padding-left: 1.7rem;
  }
  .table_img_right td:last-child,
  .table_img_left td:first-child {
    margin-left: 1rem;
    max-width: calc(100% - 1rem);
    width: 100%;
  }
  .card_row {
    gap: 5rem 4rem;
    justify-content: center;
    margin: 4.8rem 0 0;
  }
  .card_item {
    width: 90%;
  }
  .why_choose_slider {
    display: block;
  }
  .why_choose_slider.hidden_slider {
    opacity: 1;
    overflow: hidden;
    max-height: 27rem;
  }
  .why_chose_row {
    margin: 3.5rem 0 3rem;
  }
  .cta_img {
    display: none;
  }
  .cta_img:before {
    content: none;
    display: none;
  }
  .cta .cta_bg.cta_2_bg,
  .cta .cta_bg.cta_1_bg {
    width: 100%;
  }
  .cta_text {
    padding: 4rem 0 3rem;
    margin-left: 2.2rem;
  }
  .content .button {
    margin: 0;
  }
  .cta h2, .cta .h2 {
    margin: 0 0 1.5rem;
  }
  .cta h3, .cta .h3 {
    margin: 1.5rem 0;
  }
  .why_chose_sec {
    padding-bottom: 5rem;
  }
  .quis_placerat_sec {
    padding-top: 3rem;
  }
  .map_sec {
    height: auto;
  }
  .map_row_box {
    position: relative;
    top: 0;
    transform: none;
  }
  .map_sec_bg {
    position: relative;
    height: 45rem;
    background-position: -5rem bottom;
  }
  .map_sec_text {
    max-width: 100%;
    border-radius: 0;
    position: relative;
  }
  .map_sec_text:before, .map_sec_text:after {
    content: "";
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    background-color: #008B8B;
    z-index: -1;
  }
  .map_sec_text:before {
    right: 99%;
  }
  .map_sec_text:after {
    left: 99%;
  }
  footer .footer_row {
    grid-template-columns: calc(45% - 2.5rem) calc(55% - 2.5rem);
  }
  .plumbing_services_sec:before {
    top: 62%;
    transform: translate(0, -62%);
    height: 72%;
  }
  .our_services_sec:before {
    top: 40rem;
    transform: none;
    height: 82%;
  }
  .inner_banner .inner_banner_content {
    padding: 12rem 0 4rem;
  }
  .textarea.input::placeholder {
    overflow: hidden;
    white-space: nowrap;
  }
  .cta_row_2 .cta_text {
    margin-left: 1.5rem;
  }
  .service_inner_sec1 tr {
    flex-direction: column;
  }
  .service_inner_sec1 td {
    max-width: 100%;
  }
  .service_inner_sec1 {
    padding: 7rem 0 7rem;
  }
  .service_inner_sec2 {
    padding: 7rem 0 1.5rem;
  }
  .service_inner_sec2 {
    padding: 5rem 0 1.5rem;
  }
  .service_inner_name2 {
    margin-right: 2.5rem;
  }

  .cta_4 {
    padding: 3rem 0;
  }
  .cta_4_row {
    flex-direction: column;
    justify-content: center;
    gap: 2rem 8rem;
  }
  .about_sec3 {
    padding-bottom: 5rem;
  }
  .card_row.gallery_row {
    margin: 4rem 0 3rem;
  }
  .gallery_sec {
    padding-top: 5rem;
  }
  .tips_row {
    margin: 1.5rem 0 0;
  }
  .bog_sec,
  .tips_sec2,
  .tips_sec1 {
    padding: 4rem 0 5rem;
  }
  .blog_post_sec {
    padding: 5rem 0 5rem;
  }
  .blog_wrap {
    gap: 3rem 5rem;
    flex-direction: column-reverse;
  }
  .blog_row {
    max-width: 100%;
    width: 100%;
  }
  .blog_post_title_wrap {
    margin: 0 0 3rem;
  }
  .aside_block {
    margin: 0 0 3rem;
  }
  .blog_sidebar {
    max-width: 30rem;
    width: 100%;
  }
  .blog_sidebar ul li a {
    font-size: 1.9rem;
  }
  .contact_us_section .contact_us_row {
    flex-direction: column-reverse;
    align-items: center;
  }
  .contact_us_section .contact_us_form {
    max-width: 100%;
  }
}
@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: 0 auto 2rem !important;
    text-align: center;
  }
  .content img[style*=float][style*=left] {
    margin: 0 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;
  }
  .review_slider .slick-slide.slick-current .review_slid {
    margin: 4.9rem 0 0;
  }
  .review_slider {
    margin: 1.5rem -1rem 3rem;
  }
  .review_slider .slick-slide.slick-current .review_slid .review_slide_img_box {
    top: -2.5rem;
    width: 5rem;
  }
  .review_slider .slick-slide.slick-current .review_slid .google_box {
    width: 2.3rem;
    height: 2.3rem;
  }
  .review_slider .slick-slide.slick-current .review_slid .google_box svg {
    width: 1.7rem;
    height: 1.7rem;
  }
  .review_slider .slick-slide.slick-current .review_slid {
    margin: 3rem 1rem 0;
  }
  footer .footer_row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  footer .footer_title,
  footer .footer_col2 .footer_title {
    margin: 0 0 1.5rem;
  }
  footer ul li:nth-child(2n+2) a {
    margin: 0.5rem 0;
  }
  .testimonials_item {
    max-width: 100%;
    padding: 5rem 2rem 3rem;
  }
  .review_img_box {
    top: -3rem;
    width: 6rem;
  }
  .review_img_box .review_img_text {
    font-size: 4.5rem;
  }
  .review_img_box .google_box {
    width: 2.5rem;
    height: 2.5rem;
  }
  .review_img_box .google_box svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  .stars {
    margin: 0.4rem 0 1.5rem;
  }
  .review_slider .slick-slide .review_slid .review_img_text {
    font-size: 4.4rem;
  }
  .review_slider .slick-slide:not(.slick-current) .review_slid .review_img_text {
    font-size: 3.4rem;
  }
  .pagination li {
    margin: 0 1rem;
  }
  .contact_us_section .contact_us_row {
    margin: 6rem 0 0;
  }
  .contact_us_section .contact_us_address {
    margin: 0 0 0 2rem;
  }
}
@media only screen and (max-width: 550px) {
  .toast_notifications {
    width: 95%;
  }
  .toast_notifications .toast {
    width: 100%;
    font-size: 1rem;
    margin-left: 2rem;
  }
  .pre_banner_sec {
    display: block;
  }
  .main_top .banner {
    height: 95.5rem;
  }
  .main_top .main_content .text ul li {
    font-size: 1.6rem;
  }
  .tc.tc_desktop {
    text-align: left;
    margin-left: 2rem;
  }
  .hide_desktop550 {
    display: block !important;
  }
  .card_buttons {
    margin-top: auto;
    padding: 0 1.7rem 3rem;
  }
  .card_row {
    margin: 3rem 0 0 1rem;
  }
  .card_item {
    width: 100%;
  }
  .card_item.service_item .card_image {
    display: none;
  }
  .card_item.service_item:before {
    content: none;
    display: none;
  }
  .card_content {
    padding: 2rem 1.7rem 1.5rem;
  }
  .reviews_main_sec {
    padding: 4.6rem 0 5rem;
  }
  .why_chose_row {
    margin: 3.7rem 0 3rem;
  }
  .why_chose_item {
    gap: 1.5rem;
  }
  .why_chose_image {
    width: 4.3rem;
    height: 4.3rem;
  }
  .cta_text {
    padding: 3.5rem 0 3rem;
  }
  .map_sec_text {
    padding: 3rem 0 4rem 2rem;
  }
  .map_sec_text h2, .map_sec_text .h2 {
    margin: 0 0 1.5rem;
  }
  .map_sec_text h3, .map_sec_text .h3 {
    margin: 1.5rem 0;
  }
  .map_sec_bg {
    height: 40rem;
    background-position: -7rem center;
  }
  .service_inner_item2 {
    flex-direction: column;
    padding: 2rem 0;
  }
  .service_inner_name2 {
    margin: 0 0 1.5rem;
    max-width: 100%;
  }
  .service_inner_text2 {
    max-width: 100%;
  }
  .service_inner_image2 {
    margin: 0 0 1.5rem;
  }
  .service_inner_row2 {
    margin: 1.5rem 0 0;
  }
  .about_sec3 ol li {
    padding: 5rem 0 0;
    max-width: 100%;
  }
  .about_sec3 ol li:before {
    left: 2rem;
    font-size: 2rem;
    width: 4.3rem;
  }
  .tips_item {
    gap: 1rem 1.5rem;
    padding: 1.5rem 0;
  }
  .tips_img {
    margin-top: 1rem;
    max-width: 5rem;
  }
  .page_404 .block_404_content h1, .page_404 .block_404_content .h1 {
    font-size: 3rem;
  }
  .page_404 .block_404_content h1 span, .page_404 .block_404_content .h1 span {
    font-size: 15rem;
  }
.reviews_main_sec .bottom_arrows_dots .slick-prev {left: .5rem;}
.reviews_main_sec .bottom_arrows_dots .slick-next {right: .5rem;}
#review_slider_dots {margin-left: 4rem;}

.review_slider .slick-current.slick-slide .review_slid {
  margin: 0 0 0;
}
.review_slider .slick-current.slick-slide .review_slid .review_slide_img_box {
  top: 0;
}
.review_slider .slick-slide .review_slid {margin:2rem 0 0;}
}
@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;
  }
  .form_main_banner_box {
    max-width: 37rem;
    padding: 3rem 2.2rem 2.2rem;
  }
  .main_top .banner {
    height: 92.5rem;
  }
  .review_slider .slick-slide.slick-current .review_slid .review_slide_img_box {
    top: -2rem;
    width: 4rem;
  }
  .review_slider .slick-slide.slick-current .review_slid .google_box {
    width: 1.7rem;
    height: 1.7rem;
  }
  .review_slider .slick-slide.slick-current .review_slid .google_box svg {
    width: 1.1rem;
    height: 1.1rem;
  }
  .review_slider .slick-slide.slick-current .review_slid {
    margin: 2rem 0 0;
  }
  .map_sec_bg {
    height: 35.3rem;
  }
  .review_slider .slick-slide .review_slid .review_img_text {
    font-size: 3.4rem;
  }
  .review_slider .slick-slide:not(.slick-current) .review_slid .review_img_text {
    font-size: 2.4rem;
  }
  .cta_2 .form_item.form_item_half.form_item_message, .cta_2 .form_item.form_item_half.form_item_email, .cta_2 .form_item.form_item_half.form_item_captcha, .cta_2 .form_item.form_item_half.form_item_button {
    max-width: 100%;
  }
}
@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;
  }
  .pre_banner_phone_box {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 380px) {
  .navigation {
    right: -30rem;
    width: 30rem;
  }
}
@media only screen and (max-width: 370px) {
  .main_top .banner {
    height: 100.5rem;
  }
  .pagination li {
    margin: 0 0.5rem;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .mobile_phone, .home_bar_space {
    display: none;
  }
  footer {
    padding-bottom: 0;
  }
}
/*# sourceMappingURL=maps/main.css.map */
