
.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);
  }
}
.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;
  }
}
.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: #f48f1d;
  }
}
@-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;
}

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;
}
.icon_stroke{fill: none;stroke: currentColor;}
.icon_stroke_fill{fill: currentColor;stroke: 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 #f48f1d;
  z-index: 1503;
  position: relative;
}
.modal_wrap .icon_close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: #f48f1d;
  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: #f48f1d;
}
.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: #000000;
  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: #000000;
  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: 2rem 0 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: "Lato", 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.4;
  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;
}
.tc h1:first-child, .tc h2:first-child, .tc .h1:first-child, .tc .h2:first-child {
  margin-top: 0;
}
.tc h1:last-child, .tc h2:last-child, .tc .h1:last-child, .tc .h2:last-child {
  margin-bottom: 0;
}

.tl {
  text-align: left;
}

.tr {
  text-align: right;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

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

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

hr.dotted {
  border-style: dotted;
}

hr.dashed {
  border-style: dashed;
}

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

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

::-webkit-scrollbar-thumb {
  background: #f48f1d;
  -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: #ffffff;
  font-size: 0;
  width: 6.6rem;
  height: 6.6rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border: 0.1rem solid #ffffff;
  z-index: 5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  color: #000000;
  transition: 0.3s linear;
  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.08);
}
.slick-prev::after, .slick-next::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-style: solid;
  border-width: 0 0.2rem 0.2rem 0;
  border-color: #f48f1d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s linear;
}
.slick-prev .icon, .slick-next .icon {
  width: 1.7rem;
  height: 1.1rem;
  transition: 0.3s linear;
}

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

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

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

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

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

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

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

.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: rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}

.form_xi {
  position: relative;
}

.form_item.form_item_xi1 {
  position: absolute;
  left: -999.9rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.form_item.form_item_xi2 {
  position: absolute;
  max-width: 0.1rem !important;
  width: 0.1rem !important;
  height: 0.1rem !important;
  opacity: 0.01 !important;
  pointer-events: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.form_item_xi2 .input {
  max-width: 0.1rem !important;
  min-width: 0 !important;
  height: 0.1rem !important;
  color: transparent !important;
  background-color: transparent !important;
  border: none !important;
  pointer-events: auto !important;
  caret-color: transparent !important;
  padding: 0.1rem !important;
}

.form_item {
  margin: 1rem 0 1.5rem;
}
.form_item .pre_input {
  display: block;
  margin: 0 0 1rem;
  font: 400 1.6rem/1.3 "Lato", sans-serif;
  color: #2A2A2A;
}
.form_item:last-child {
  margin-bottom: 0;
}
.form_item.form_item_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 3.6rem;
  font: 400 1.8rem/1 "Lato", sans-serif;
  padding: 0 0.6rem;
  border: none;
  border-bottom: 0.1rem solid #000000;
  background-color: #ffffff;
  color: #000000;
  border-radius: 0;
  transition: box-shadow 0.2s ease-in;
}
.input:focus, .input:active {
  border-color: #f48f1d;
}
.input::placeholder {
  font: 400 1.8rem/1 "Lato", sans-serif;
  color: rgba(0, 0, 0, 0.25);
  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 #ffffff inset !important;
  -webkit-text-fill-color: #000000 !important;
}

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

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

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

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

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

.select_after {
  position: relative;
  display: block;
}
.select_after::after {
  content: "";
  position: absolute;
  bottom: 1.1rem;
  right: 0;
  width: 1.2rem;
  height: 0.7rem;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1L6 6L1 1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(0deg);
  transition: 0.3s;
}
.select_after select {
  padding-right: 1.8rem;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.select_after:has(select:focus):after {
  transform: rotate(180deg);
}

.custom_checkbox {
  position: absolute;
  left: -999.9rem;
}
.custom_checkbox + label {
  display: inline-flex !important;
  align-items: center;
  user-select: none;
  cursor: pointer;
  margin: 0 1rem 0 0 !important;
}
.custom_checkbox + label .checkbox_design {
  flex: 0 0 auto;
  width: 2.7rem;
  height: 2.7rem;
  border: 0.1rem solid #000000;
  background-color: #ffffff;
  border-radius: 0;
  position: relative;
  transform: scale(1);
  transition: all 0.2s ease;
}
.custom_checkbox + label .checkbox_design svg {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1.6rem;
  height: 1.4rem;
  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: #f48f1d;
  transform: scale(0);
}
.custom_checkbox + label .checkbox_text {
  display: inline-block;
  font-size: 1.6rem;
  padding: 0 0 0 1.2rem;
  color: #2A2A2A;
}
.custom_checkbox:checked + label .checkbox_design {
  background-color: #f48f1d;
  border-color: #f48f1d;
}
.custom_checkbox:checked + label .checkbox_design svg {
  stroke: #ffffff;
  stroke-dashoffset: 0;
}
.custom_checkbox:checked + label .checkbox_design::before {
  opacity: 0;
  transform: scale(3.5);
  transition: all 0.6s ease;
}

.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: #f48f1d;
  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: #f48f1d;
  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-color: #e57373 !important;
}
.validate_error::placeholder {
  color: #e31e26 !important;
}
.validate_error + .icon {
  color: #e57373 !important;
}

textarea.validate_error {
  border-color: #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;
  background-color: #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: 400 1.8rem/1.2 "Lato", sans-serif;
  height: unset;
  min-height: 6.5rem;
  min-width: 10rem;
  padding: 2.1rem 4.9rem;
  color: #ffffff;
  background-color: #f48f1d;
  border: 0.1rem solid #f48f1d;
  border-radius: 0;
  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_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: 2.4rem;
  height: 7.5rem;
  line-height: 7.5rem;
}
.button.light {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}
.button.button_black {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.button.button_icon_right .icon{width: .8em;height: .8em;margin: 0 0 0 1.4rem;}
.button.transparent {
  color: #000000;
  background-color: transparent;
  border-color: #000000;
}
.button.light_2 {
  color: #DC4825;
  background-color: #ffffff;
  border-color: #ffffff;
}
.button.dark {
  color: #ffffff;
  background-color: #F26522;
  border-color: #F26522;
}
.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: #000000;
  background-color: #ffb92e;
  border-color: #ffb92e;
}
.button.button_info {
  color: #ffffff;
  background-color: #119eb5;
  border-color: #119eb5;
}
.button.button_disable {
  color: #000000;
  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;
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  margin-right: 1rem;
}
.button.icon_right .icon {
  margin-right: 0;
  margin-left: 1rem;
}
.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: 12.5rem 0;
}

.pagination {
  padding: 0;
  margin: 3rem 0 0;
  user-select: none;
  font-size: 0;
}
.pagination li {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0 0.9rem;
  list-style: none;
}
.pagination li.active a {
  font-weight: 700;
  background-color: #F26522;
  color: #ffffff;
  pointer-events: none;
}
.pagination li.pagination_arrow {
  margin-left: 1.2rem;
}
.pagination li.pagination_arrow a {
  padding: 0 1.7rem;
}
.pagination li.pagination_arrow .icon {
  position: relative;
  top: 0.1rem;
  width: 0.5rem;
  height: 0.8rem;
  fill: none;
  stroke: currentColor;
  margin: 0 0 0 0.6rem;
}
.pagination li.pagination_arrow_prev {
  margin-left: 0;
  margin-right: 1.2rem;
}
.pagination li.pagination_arrow_prev .icon {
  transform: rotate(180deg);
  margin: 0 0.6rem 0 0;
}
.pagination li a {
  font: 400 1.8rem/3.4rem "Lato", sans-serif;
  display: block;
  min-width: 3.4rem;
  height: 3.4rem;
  padding: 0 1rem;
  background-color: transparent;
  color: #000000;
  text-align: center;
  transition: 0.3s linear;
  border-radius: 3.4rem;
}

em, i {
  font-family: "Noto Serif Display", sans-serif !important;
}

h1, .h1 {
  font: 400 6.4rem/1.25 "Lato", sans-serif;
  color: #000000;
  margin: 2.7rem 0;
  text-transform: capitalize;
}
h1 em, h1 i, .h1 em, .h1 i {
  font-size: 95%;
}

h2, .h2 {
  font: 400 4rem/1.25 "Lato", sans-serif;
  color: #000000;
  margin: 4rem 0;
  text-transform: initial;
}
h2 em, h2 i, .h2 em, .h2 i {
  font-size: 95%;
}

h3, .h3 {
  font: 400 2.4rem/1.2 "Lato", sans-serif;
  color: #000000;
  margin: 0;
  text-transform: uppercase;
}
h3 em, h3 i, .h3 em, .h3 i {
  font-size: 91.6667%;
}

h4, .h4 {
  font: 400 2.2rem/1.2 "Lato", sans-serif;
  color: #000000;
  margin: 0;
  text-transform: capitalize;
}

h5, .h5 {
  font: 400 2rem/1.2 "Lato", sans-serif;
  color: #000000;
  margin: 0;
  text-transform: capitalize;
}

h6, .h6 {
  font: 400 1.8rem/1.2 "Lato", sans-serif;
  color: #000000;
  margin: 0;
  text-transform: capitalize;
}

.content h1, .content .h1 {
  font: 400 6.4rem/1.25 "Lato", sans-serif;
  color: #000000;
  margin: 2.7rem 0;
  text-transform: capitalize;
}
.content h2, .content .h2, .content .title {
  font: 400 4rem/1.25 "Lato", sans-serif;
  color: #000000;
  margin: 4rem 0;
  text-transform: initial;
}
.content h3, .content .h3 {
  font: 400 2.4rem/1.2 "Lato", sans-serif;
  color: #000000;
  margin: 1rem 0;
  text-transform: uppercase;
}
.content h4, .content .h4 {
  font: 400 2.2rem/1.2 "Lato", sans-serif;
  color: #000000;
  margin: 1rem 0;
  text-transform: capitalize;
}
.content h5, .content .h5 {
  font: 400 2rem/1.2 "Lato", sans-serif;
  color: #000000;
  margin: 1rem 0;
  text-transform: capitalize;
}
.content h6, .content .h6 {
  font: 400 1.8rem/1.2 "Lato", sans-serif;
  color: #000000;
  margin: 1rem 0;
  text-transform: capitalize;
}
.content p {
  margin: 0 0 2rem;
}
.content .button {
  margin: 2rem 0 0;
}
.content ul {
  margin-bottom: 2rem;
}
.content ul li {
  display: table;
  font: 400 1.8rem/1.5 "Lato", sans-serif;
  color: #000000;
  padding: 0 0 0 2.2rem;
  margin: 1rem 0;
  position: relative;
}
.content ul li p, .content ul li span {
  margin: 0;
}
.content ul li::before {
  content: "";
  display: block;
  position: absolute;
  color: #f48f1d;
  top: 0.3rem;
  left: 0.5rem;
  width: 0.7rem;
  height: 1.2rem;
  border-style: solid;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(40deg);
}
.content ol {
  margin-bottom: 2rem;
  counter-reset: li;
}
.content ol li {
  display: table;
  font: 400 1.8rem/1.5 "Lato", sans-serif;
  color: #000000;
  padding: 0 0 0 2rem;
  margin: 1rem 0;
  overflow: hidden;
}
.content ol li::before {
  margin-left: -2rem;
  counter-increment: li;
  content: counters(li, ".") ". ";
  color: #000000;
  font-weight: 700;
}
.content blockquote {
  font: 400 1.6rem/1.5 "Lato", 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: #f48f1d;
}
.content a:not(.button, .link_underline) {
  display: inline-block;
  color: #DC4825;
  font-weight: 600;
  transition: 0.3s linear;
}
.content a:not(.button, .link_underline):focus {
  color: #f48f1d;
}
.content img {
  height: auto !important;
}
.content h1:first-child, .content h2:first-child, .content h3:first-child, .content h4:first-child, .content h5:first-child, .content h6:first-child,
.content .h1:first-child, .content .h2:first-child, .content .h3:first-child, .content .h4:first-child, .content .h5:first-child, .content .h6:first-child, .content p:first-child, .content ul:first-child, .content ol:first-child, .content ul li:first-child, .content ol li:first-child, .content table:first-child, .content img:first-child, .content iframe:first-child {
  margin-top: 0;
}
.content h1:last-child, .content h2:last-child, .content h3:last-child, .content h4:last-child, .content h5:last-child, .content h6:last-child,
.content .h1:last-child, .content .h2:last-child, .content .h3:last-child, .content .h4:last-child, .content .h5:last-child, .content .h6:last-child, .content p:last-child, .content ul:last-child, .content ol:last-child, .content ul li:last-child, .content ol li:last-child, .content table:last-child, .content img:last-child, .content iframe: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: #f48f1d;
}
.content .content_table th, .content .content_table td {
  padding: 1rem;
}

p {
  font: 400 1.8rem/1.5 "Lato", sans-serif;
  color: #000000;
  margin: 2rem 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: #f48f1d;
}

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

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

.inner_banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 2;
  min-height: 39.6rem;
  padding: 20rem 0 10rem;
}
.inner_banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 73%;
  height: 100%;
  background: linear-gradient(to right, black 0%, black 20%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.4;
  z-index: -1;
}

.inner_banner_big .inner_banner {
  min-height: 60.9rem;
  padding-bottom: 20rem;
}

.show_mobile_550 {
  display: none !important;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.9rem 0 9rem;
  z-index: 999;
  transition: 0.2s;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.52) 50%, rgba(0, 0, 0, 0) 100%);
}
.header .header_row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4rem;
}
.header .header_right_top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
}
.header .cart_button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
  transition: 0.3s;
  color: #ffffff;
  font: 600 1.5rem/1 "Lato", sans-serif;
}
.header .cart_button .cart_icon_box {
  position: relative;
}
.header .cart_button .icon {
  font-size: 1.6rem;
  transition: 0.3s;
}
.header .cart_button .item_total_cart {
  display: none;
  position: absolute;
  background-color: #DC4825;
  color: #ffffff;
  min-width: 1.4rem;
  border-radius: 1.4rem;
  text-align: center;
  height: 1.4rem;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.5rem;
  top: -1rem;
  right: -0.7rem;
  font: 400 0.7rem/1 "Lato", sans-serif;
}
.header .cart_button .item_total_cart.active {
  display: flex;
}
.header .languageSelection {
  position: relative;
  padding: 0 0.5rem;
  transition: 0.3s;
  z-index: 2;
}
.header .languageSelection:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 0.1rem);
  height: 0.5rem;
  left: 0;
  right: 0;
  background-color: #343434;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.header .languageSelection_btn {
  position: relative;
  padding: 0 1.2rem 0 0;
  font: 600 1.5rem/1.8rem "Lato", sans-serif;
  white-space: nowrap;
  color: #ffffff;
  transition: 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-transform: uppercase;
  gap: 0.6rem;
}
.header .languageSelection_btn .icon {
  font-size: 1.9rem;
  transition: 0.3s;
}
.header .languageSelection_btn:after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.00525 3.89874e-07L4 3.01966L0.994745 -1.35582e-07L3.49937e-07 0.997191L4 5L8 0.997191L7.00525 3.89874e-07Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transition: 0.3s;
  transform: translate(0, -50%);
}
.header .languageSelection_box {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  padding: 0.5rem;
  z-index: 2;
  background-color: #343434;
}
.header .languageSelection_box li a {
  padding: 0.5rem 0;
  font: 600 1.5rem/1.8rem "Lato", sans-serif;
  white-space: nowrap;
  color: #ffffff;
  transition: 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-transform: uppercase;
  gap: 0.6rem;
}
.header .languageSelection_box li a .icon {
  font-size: 1.9rem;
  transition: 0.3s;
}
.header .languageSelection.open {
  background-color: #343434;
}
.header .languageSelection.open:before {
  opacity: 1;
  visibility: visible;
}
.header .languageSelection.open .languageSelection_box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .languageSelection.open .languageSelection_btn:after {
  transform: translate(0, -50%) rotate(180deg);
}
.header .header_logo {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
.header .header_logo img {
  width: 21.3rem;
}
.header.fixed {
  position: fixed;
  animation: slide-down 0.7s;
  background: #000;
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
}
.header.fixed .header_logo img {
  width: 15rem;
}
.header.fixed .top_menu {
  display: none;
}
.header.fixed .navigation {
  margin: 0;
}
.header.fixed .navigation .header_nav_full {
  margin-top: 2rem;
}

.navigation {
  margin: 0.4rem 0 0;
  max-width: 82rem;
  width: 100%;
}
.navigation .navigation_box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
}
.navigation .header_nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 3rem;
}
.navigation .header_nav > li > a:not(.button) {
  font: 400 1.5rem/1.2 "Lato", sans-serif;
  color: #ffffff;
  text-transform: capitalize;
  display: block;
  white-space: nowrap;
  padding: 0;
  position: relative;
  transition: 0.3s linear;
}
.navigation .header_nav > li > a:not(.button)::before {
  content: "";
  position: absolute;
  left: 51%;
  right: 51%;
  bottom: -0.7rem;
  display: block;
  background-color: #ffffff;
  height: 0.1rem;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  z-index: 3;
}
.navigation .header_nav > li.active > a:not(.button):before {
  left: 0;
  right: 0;
}
.navigation .header_nav > li.dr_down {
  position: relative;
}
.navigation .header_nav > li.dr_down > a {
  padding-right: 1.3rem;
  position: relative;
}
.navigation .header_nav > li.dr_down > a:after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.00525 3.89874e-07L4 3.01966L0.994745 -1.35582e-07L3.49937e-07 0.997191L4 5L8 0.997191L7.00525 3.89874e-07Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transition: 0.3s;
  transform: translate(0, -50%);
}
.navigation .header_nav > li.header_btn {
  padding: 0 0 0 1rem;
}
.navigation .header_nav > li.mobile_social {
  display: none;
}
.navigation .header_nav > li.nav_logo_li {
  display: none;
}
.navigation .header_nav > li:last-child .sub_menu {
  left: unset;
  right: 0;
  min-width: 100%;
  max-width: 100%;
}
.navigation .header_nav .sub_menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 2rem;
  margin: 1rem 0 0;
  z-index: 3;
  min-width: 25rem;
  background-color: #f48f1d;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 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 #f48f1d;
  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: 1.5rem;
}
.navigation .header_nav .sub_menu > li {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}
.navigation .header_nav .sub_menu > li > a:not(.button) {
  font-size: 1.4rem;
  color: #ffffff;
  display: block;
  padding: 0.9rem 1.5rem 0.7rem;
  white-space: pre-wrap;
  text-align: left;
  text-transform: initial;
  transition: 0.3s linear;
  border-left: 0.5rem solid transparent;
}
.navigation .header_nav_full {
  grid-column: 1/-1;
  gap: 0 3.5rem;
  margin-top: 3rem;
}
.navigation .header_nav_full > li > a:not(.button) {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}

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

.navigation_btn {
  display: none;
  position: absolute;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  top: 2.7rem;
  right: 2.5rem;
  overflow: visible;
  cursor: pointer;
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  z-index: 600;
}
.navigation_btn .navigation_btn_text {
  color: #ffffff;
  font: 1.4rem/1 "Lato", sans-serif;
  white-space: nowrap;
}
.navigation_btn .hamburger_box {
  display: block;
  width: 2.6rem;
  height: 0.4rem;
  border-radius: 0;
  background-color: #DC4825;
  position: relative;
  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: 2.6rem;
  height: 0.4rem;
  border-radius: 0;
  background-color: #f48f1d;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.navigation_btn .hamburger_box::before {
  top: -0.8rem;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.navigation_btn .hamburger_box::after {
  bottom: -0.8rem;
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.navigation_btn.is_open .hamburger_box {
  transform: translate(0, -50%) rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #f48f1d;
}
.navigation_btn.is_open .hamburger_box::before, .navigation_btn.is_open .hamburger_box::after {
  background-color: #f48f1d;
}
.navigation_btn.is_open .hamburger_box::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.navigation_btn.is_open .hamburger_box::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.navigation_btn p {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #f48f1d;
  margin: 0;
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translate(-50%, 0);
}

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

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

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

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

.main_top {
  position: relative;
  padding: 0;
  z-index: 2;
}
.main_top .banner {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 100%;
  position: relative;
  min-height: 77.3rem;
  z-index: 2;
}
.main_top .banner video {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main_top .banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 80%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.4;
  z-index: 2;
}
.main_top .main_content {
  position: absolute;
  top: 51%;
  left: 50%;
  width: 100%;
  display: block;
  z-index: 4;
  transform: translate(-50%, -50%);
  padding: 12rem 0;
}
.main_top .main_content .text {
  max-width: 72.7rem;
  width: 100%;
}
.main_top .main_content .text * {
  text-shadow: 0 0 1.4rem rgba(0, 0, 0, 0.75);
}
.main_top .main_content .text .button {
  text-shadow: none !important;
}

.our_products_sec {
  padding: 8.2rem 0 0;
}

.our_products_row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.3rem 2rem;
  align-items: stretch;
  justify-content: flex-start;
  margin: 4rem 0 0;
}

.our_products_tem {
  max-width: calc(33.3333333333% - 1.3333333333rem);
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 451/349;
}

.our_products_overflow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem;
  min-height: 61%;
  max-height: 100%;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.1rem;
  justify-content: center;
  transition: 0.3s;
}
.our_products_overflow h3, .our_products_overflow .h3 {
  color: #ffffff;
}
.our_products_overflow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
  opacity: 0.8;
  transition: 0.3s;
}

.link_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-align: center;
  width: 6.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  transition: 0.3s;
}

.counters {
  padding: 7.5rem 0;
}

.counters .wrapper {
  max-width: 128.7rem;
}

.counters .counter_wrap {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  gap: 4rem 12rem;
}

.counters .counter_item {
  display: block;
  vertical-align: top;
  max-width: calc(25% - 9rem);
  width: 100%;
  position: relative;
}
.counters .counter_item:last-child .counter_line, .counters .counter_item:nth-child(4n+4) .counter_line {
  content: none;
  display: none;
}
.counters .counter_item:last-child .counter_line:before, .counters .counter_item:nth-child(4n+4) .counter_line:before {
  content: none;
  display: none;
}

.counters .counter_item p {
  font: 400 1.8rem/1.22 "Lato", sans-serif;
  color: #2A2A2A;
  text-align: center;
  margin: 0;
}

.counters .counter_item p.number {
  font: 500 4.8rem/1.08 "Noto Serif Display", sans-serif;
  font-style: italic;
  margin: 0 0 1.5rem;
  color: #000000;
}

.counter_line {
  content: "";
  position: absolute;
  top: 0;
  right: -6.1rem;
  width: 0.1rem;
  height: 100%;
  display: block;
  background: linear-gradient(to bottom, rgba(217, 217, 217, 0) 0%, #d9d9d9 40%, #d9d9d9 60%, rgba(217, 217, 217, 0) 100%);
  z-index: 1;
}
.counter_line:before {
  content: "";
  position: absolute;
  display: block;
  background-color: #D9D9D9;
  top: 50%;
  left: calc(50% - 0.04rem);
  transform: translate(-50%, -50%);
  width: 1.4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.3rem solid #ffffff;
  z-index: 2;
}

.why_choose_row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 4rem 12.5rem;
  margin: 4rem 0 0;
}

.card_img {
  display: block;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.card_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  transition: 0.3s;
}

.why_choose_name {
  margin: 0 0 4rem;
}
.why_choose_name a {
  margin: 0;
  position: relative;
  padding: 0 0 2.3rem;
  transition: 0.3s linear;
}
.why_choose_name a:before, .why_choose_name a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 0.1rem;
  max-width: 10.5rem;
  width: 0;
  transition: 0.3s linear;
  transform: translate(-50%, 0);
}
.why_choose_name a:before {
  width: 100%;
  background-color: #000000;
  z-index: 1;
}
.why_choose_name a:after {
  width: 0;
  background-color: #f48f1d;
  z-index: 2;
}

.why_choose_content {
  margin: 0 0 4rem;
}

.why_choose_img {
  max-width: 7.5rem;
  width: 100%;
  margin: 0 auto 4rem;
}
.why_choose_img img {
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}

.why_choose_item {
  max-width: calc(33.3333333333% - 8.3333333333rem - 0.799rem);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.why_choose_item:nth-child(2n+2) {
  max-width: calc(33.3333333333% - 8.3333333333rem + 1.401rem);
}
.why_choose_item:after {
  content: "";
  display: block;
  position: absolute;
  width: 0.1rem;
  right: -6.25rem;
  height: calc(100% - 4.8rem);
  background: linear-gradient(to bottom, rgba(217, 217, 217, 0) 0%, #d9d9d9 45%, rgba(217, 217, 217, 0) 100%);
}
.why_choose_item:last-child:after, .why_choose_item:nth-child(3n+3):after {
  content: none;
  display: none;
}

.bottom_buttons {
  margin: auto 0 0;
}

.link_underline {
  display: inline-block;
  position: relative;
  font: 400 1.8rem/1.22 "Lato", sans-serif;
  padding: 0 0 0.6rem;
  transition: 0.3s linear;
}
.link_underline:before, .link_underline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 0.1rem;
  max-width: 100%;
  width: 0;
  transition: 0.3s linear;
  transform: translate(-50%, 0);
}
.link_underline:before {
  width: 100%;
  background-color: #000000;
  z-index: 1;
}
.link_underline:after {
  background-color: #f48f1d;
  z-index: 2;
}

.product_sec2 {
  padding: 0;
}

.product_row2 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2rem;
}

.product_item2 {
  max-width: calc(50% - 1rem);
  width: 100%;
  padding-top: 47.9%;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.product_overflow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 54.7%;
  max-height: 100%;
  padding: 7rem 4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.7) 51%, rgba(0, 0, 0, 0) 100%);
  transition: 0.3s;
}
.product_overflow p:last-child {
  margin-bottom: 0;
}
.product_overflow .link_arrow {
  margin: 0 auto 0;
}
.product_overflow h3, .product_overflow .h3 {
  margin: 3.8rem 0 2.7rem;
  padding: 0 0 2.3rem;
  position: relative;
}
.product_overflow h3:before, .product_overflow .h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #ffffff;
  width: 10.5rem;
  height: 0.1rem;
}

.product_overflow_inner {
  max-width: 45.1rem;
  width: 100%;
}

.logos_wrapper_text {
  max-width: 75.6rem;
  margin-bottom: 7.4rem;
}

.logos {
  background: linear-gradient(to right, #000000 0%, #252525 50%, #000000 100%);
  padding: 7.5rem 0;
  overflow: hidden;
}

.bx-wrapper {
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  background-color: transparent;
}

.logos .image {
  position: relative;
  height: 12.4rem;
  display: block;
}
.logos .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 73.3%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.product_gallery_sec {
  overflow: hidden;
  padding-top: 0;
}

.product_gallery_row {
  position: relative;
  margin: 0 0 3rem;
}
.product_gallery_row .slick-arrow {
  top: unset;
  transform: translate(-50%, 0);
  bottom: 4.6rem;
}
.product_gallery_row .slick-arrow:after {
  content: none;
  display: none;
}
.product_gallery_row .slick-next {
  right: unset;
  left: calc(50% + 24rem);
}
.product_gallery_row .slick-prev {
  right: unset;
  left: calc(50% - 24rem);
}

.product_gallery_slider.hidden_slider {
  max-height: 81.9rem;
  overflow: hidden;
  opacity: 0;
}
.product_gallery_slider .slider_item {
  aspect-ratio: 70/41;
  z-index: 1;
  background-color: #D9D9D9;
}
.product_gallery_slider .overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  top: unset;
  width: 100%;
  max-height: 100%;
  height: unset;
  min-height: 25.7%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0) 100%);
  padding: 6.7rem 7rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}
.product_gallery_slider .overlay_inner {
  max-width: 38rem;
  width: 100%;
  display: block;
}

.product_gallery_slider_nav.hidden_slider {
  max-height: 18.2rem;
  overflow: hidden;
  opacity: 0;
}
.product_gallery_slider_nav .slick-track {
  display: flex;
}
.product_gallery_slider_nav .slick-list {
  overflow: unset;
}
.product_gallery_slider_nav .slider_item {
  position: relative;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 278/182;
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  overflow: hidden;
  transition: 0.3s linear;
  z-index: 1;
  background-color: #D9D9D9;
}
.product_gallery_slider_nav .overlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0);
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: 0.5s;
}

.bottom_dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0 0;
}
.bottom_dots .slick-dots {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  display: flex;
  transform: unset;
}

.slide_name {
  color: #ffffff;
  position: relative;
  text-align: center;
}
.slide_name:before {
  content: "";
  position: absolute;
  bottom: -2.3rem;
  left: 50%;
  width: 11.6rem;
  height: 0.1rem;
  transform: translate(-50%, 0);
  background-color: #ffffff;
}

.reviews_sec {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.reviews_sec_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.reviews_sec_top h2, .reviews_sec_top .h2 {
  margin: 0;
}
.reviews_sec_top .slick-arrow {
  position: relative;
  left: unset;
  top: unset;
  right: unset;
  bottom: unset;
  transform: unset;
  background-color: transparent;
  color: #ffffff;
}
.reviews_sec_top .slick-arrow:after {
  content: none;
  display: none;
}

.reviews_slider {
  margin: 3.2rem -1.2rem 4rem;
}
.reviews_slider .slick-list {
  overflow: unset;
}
.reviews_slider.hidden_slider {
  opacity: 0;
  overflow: hidden;
  max-height: 42.1rem;
}
.reviews_slider .slick-track {
  display: flex;
}
.reviews_slider .review_slide {
  background-color: #000000;
  padding: 4rem 6.2rem;
  margin: 0 1.2rem;
  display: flex !important;
  flex-direction: column;
  height: auto !important;
}

.icon_quotes {
  width: 4rem;
  height: unset;
  aspect-ratio: 40/31;
  color: #ffffff;
  margin: 0 0 4rem;
}

.reviews_slider_content {
  margin: 0 0 3.9rem;
}

.reviews_slider_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: auto;
}

.google_box {
  width: 2.7rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.google_box .icon {
  font-size: 1.9rem;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.stars .icon {
  font-size: 2.9rem;
  color: #F7921E;
  margin: 0;
}

.revier_name {
  text-transform: initial;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
}

.reviews_slider_arrows {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.7rem;
}

.map_sec {
  padding: 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.map_sec .wrapper {
  position: static;
}

.map_row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2rem;
}

.map_countries_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.5rem;
}

.map_text {
  max-width: 60.5rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.map_text .button {
  border-radius: 5rem;
  margin: 0 0 3rem;
}
.map_text ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
.map_text ul li {
  padding: 0;
  margin: 0;
}
.map_text ul li:before {
  content: none;
  display: none;
}
.map_text ul li a:not(.button) {
  position: relative;
  padding: 0 0.6rem 0 1.4rem;
  font: 400 1.8rem/1.5 "Lato", sans-serif;
  color: #000000;
  transition: 0.3s;
}
.map_text ul li a:not(.button):before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0;
  display: block;
  width: 0.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #000000;
  transition: 0.3s;
}
.map_text ul li a:not(.button) .icon {
  position: absolute;
  display: inline-block;
  top: 1.2rem;
  left: 100%;
  width: 0.5rem;
  height: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.map_bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 88.7rem;
  flex-grow: 1;
  z-index: 1;
}
.map_bg h2, .map_bg .h2 {
  display: none;
}
.map_bg img {
  position: relative;
  right: 0;
  max-width: 100%;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center right;
}

.w_100 {max-width: 100% !important;width: 100% !important;}

.loaded .form_item_upload {
  opacity: 1;
}

.form_item_upload {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 3rem;
  text-align: center;
  opacity: 0;
  min-height: 17.8rem;
  border: 0.1rem dashed #000000;
}

.wrapped_upload {
  margin: 0 auto 1.5rem;
  text-align: center;
}

.form_item_upload .file_input {
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  color: transparent !important;
  background-color: transparent !important;
  border: none !important;
  cursor: pointer;
  z-index: 2 !important;
}

.xiForms_input_file + label.input {
  background-color: #EDEDED;
  border: none;
  font: 400 1.8rem/4.7rem "Lato", sans-serif;
  height: 4.7rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 15.9rem !important;
  max-width: unset !important;
  width: unset !important;
  margin: 0 !important;
  padding: 0 1rem !important;
  transition: 0.3s !important;
}

.xiForms_input_file + label.input svg {
  display: none !important;
}

.xiForms_form .wrapped_upload p {
  font: 400 1.8rem/1.5 "Lato", sans-serif;
  color: #2A2A2A;
  margin: 0;
}
.xiForms_form .wrapped_upload p:nth-child(2) {
  font: 400 1.6rem/1.69 "Lato", sans-serif;
  color: rgba(0, 0, 0, 0.25);
}
.xiForms_form .wrapped_upload p:last-child {
  margin-bottom: 0;
}

.breadcrumbs_sec {
  padding: 2rem 0 0;
  font-size: 0;
}

.breadcrumbs {
  font-size: 0;
}

.breadcrumbs li {
  display: inline-block;
  position: relative;
  color: #2A2A2A;
  font: 400 1.8rem/1.22 "Lato", sans-serif;
}

.breadcrumbs .before {
  display: none;
}

.breadcrumbs li + li .before {
  color: #000;
  stroke: currentColor;
  fill: none;
  margin: 0 0.5rem 0 0.9rem;
  display: inline-block;
  width: 0.7rem;
  height: 1rem;
}

.breadcrumbs li a {
  color: #2A2A2A;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumbs li > span {
  color: #DC4825;
  font-weight: 700;
}

.map_sec_2 {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  flex-grow: 1;
}
.map_sec_2 .img_wrap {
  position: absolute;
  width: calc(50vw - 62.25rem + 100%);
  margin-right: calc(-50vw + 62.25rem);
  height: 100%;
  z-index: -1;
}
.map_sec_2 .img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.testimonials_sec {
  padding: 7.5rem 0;
}

.testimonials_row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 3rem 2.4rem;
}

.testimonial_item {
  max-width: calc(50% - 1.2rem);
  width: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to right, #000000 0%, #252525 50%, #000000 100%);
  padding: 4rem 6rem;
}

.content_block {
  position: relative;
  z-index: 3;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.content_block.section_style_1 .content h1, .content_block.section_style_1 .content .h1, .content_block.section_style_1 .content h2, .content_block.section_style_1 .content .h2, .content_block.section_style_1 .content h3, .content_block.section_style_1 .content .h3, .content_block.section_style_1 .content h4, .content_block.section_style_1 .content .h4, .content_block.section_style_1 .content h5, .content_block.section_style_1 .content .h5, .content_block.section_style_1 .content h6, .content_block.section_style_1 .content .h6, .content_block.section_style_1 .content p {color: #FFFFFF;}
.content_block.section_style_1 .content blockquote {color: #FFFFFF;}
.content_block.section_style_1 .content blockquote::after {background: #FFFFFF;}
.content_block.section_style_1 .content ul li {color: #FFFFFF;}
.content_block.section_style_1 .content ul li:before {color: #FFFFFF;}
.content_block.section_style_1 .content ol li {color: #FFFFFF;}
.content_block.section_style_orange .content_block_bg {background-color: #f48f1d;}
.content_block.text_left .row_f_builder .col_12 > * {max-width: 59.5rem;}
.content_block.text_left .row_f_builder .col_12 > h1, .content_block.text_left .row_f_builder .col_12 > .h1, .content_block.text_left .row_f_builder .col_12 > h2, .content_block.text_left .row_f_builder .col_12 > .h2 {max-width: unset;}
.content_block.shadow_left:before {content: "";position: absolute;top: 0;left: 0;width: 63%;height: 100%;background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);z-index: -1;}

.small_wrapper_main_text .content p {
  max-width: 78.1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.button_margin_0 .content .button {
  margin: 0;
}

.row_f_builder {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
}
.row_f_builder .col_12 {
  max-width: 100%;
  width: 100%;
}
.row_f_builder .col_6 {
  max-width: calc(50% - 1.5rem);
  width: 100%;
}
.row_f_builder .col_4 {
  max-width: calc(33.3333333333% - 2rem);
  width: 100%;
}
.row_f_builder .col_3 {
  max-width: calc(25% - 2.25rem);
  width: 100%;
}

.padding_0 {
  padding: 0.001rem 0;
}

.padding_top_0 {
  padding-top: 0.001rem;
}

.padding_bottom_0 {
  padding-bottom: 0.001rem;
}

.padding_small {
  padding: 7.5rem 0;
}

.padding_top_small {
  padding-top: 7.5rem;
}

.padding_bottom_small {
  padding-bottom: 7.5rem;
}

.content_block_bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.image_float_left .content img[style*="float: left"] {
  margin: 0 7rem 0 calc(-50vw + 61.9rem);
  width: 52.7%;
}

.image_float_right .content img[style*="float: right"] {
  margin: 0 calc(-50vw + 61.9rem) 0 7rem;
  width: 52.7%;
}

.ser_apart_wrap {
  max-width: 64.6rem;
}

.ser_apart_button {
  display: block;
  width: 6.6rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
}
.ser_apart_button:before, .ser_apart_button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  background-color: #000000;
}
.ser_apart_button:before {
  width: 1.7rem;
  height: 0.2rem;
}
.ser_apart_button:after {
  height: 1.7rem;
  width: 0.2rem;
}

.ser_apart_sec {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.ser_apart_sec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 67%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.5) 66%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.ser_apart_sec .ser_apart_item {
  position: relative;
  border-bottom: 0.1rem solid #ffffff;
  margin: 4rem 0;
  padding-bottom: 4rem;
}
.ser_apart_sec .ser_apart_item:first-child {
  margin-top: 0;
}
.ser_apart_sec .ser_apart_item:last-child {
  margin-bottom: 0;
  border-color: transparent;
  padding-bottom: 0;
}
.ser_apart_sec .ser_apart_item.active .ser_apart_button:before, .ser_apart_sec .ser_apart_item.active .ser_apart_button:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.ser_apart_sec .ser_apart_item.active .ser_apart_button:before {
  opacity: 0;
}
.ser_apart_sec .ser_apart_question {
  position: relative;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: initial;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  margin: 0;
}
.ser_apart_sec .ser_apart_content {
  display: none;
  padding: 0.8rem 13.1rem 0 0;
}

.cta_1 {
  padding: 7.5rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.cta_1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 67%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.cta_1 table {
  width: 100%;
}
.cta_1 tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem 4rem;
}
.cta_1 td:first-child {
  max-width: 68.8rem;
  width: 100%;
}
.cta_1 td:last-child {
  flex-shrink: 0;
}

.contact_us_section {
  padding: 0;
  overflow: hidden;
}
.contact_us_section .wrapper {
  max-width: 124rem;
}
.contact_us_section .form_box {
  padding: 11.6rem 0 7.5rem 7.2rem;
}
.contact_us_section .breadcrumbs_sec {
  position: absolute;
  top: 0;
  left: 2.5rem;
  width: 100%;
  z-index: 5;
}
.contact_us_section .breadcrumbs_sec .wrapper {
  padding: 0;
}
.contact_us_section .breadcrumbs li a {
  color: #ffffff;
}
.contact_us_section .breadcrumbs li + li .before {
  color: #ffffff;
}

.contact_us_row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}

.contact_us_form {
  display: flex;
  flex-direction: column;
  max-width: 72rem;
  width: 100%;
}
.contact_us_form .form_item {
  margin: 0;
}
.contact_us_form .row_f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem 1rem;
  margin: 0 !important;
}
.contact_us_form .col_12 {
  margin: 0 !important;
  max-width: 100%;
  width: 100%;
}
.contact_us_form .col_6 {
  margin: 0 !important;
  max-width: calc(50% - 0.5rem);
  width: 100%;
}
.contact_us_form .col_4 {
  margin: 0 !important;
  max-width: calc(33.3333333333% - 1.6rem);
  width: 100%;
}
.contact_us_form .col_3 {
  margin: 0 !important;
  max-width: calc(25% - 1.5rem);
  width: 100%;
}

.contact_us_address {
  max-width: 47.4rem;
  width: 100%;
  padding: 11.6rem 10.2rem 8.2rem 0.6rem;
  position: relative;
  z-index: 2;
}
.contact_us_address h3, .contact_us_address .h3 {
  font-weight: 500 !important;
  color: #f48f1d !important;
}
.contact_us_address .content a:not(.button) {
  color: #ffffff;
  font-weight: 400;
}
.contact_us_address .content table {
  width: 100%;
  position: relative;
  border-collapse: collapse;
}
.contact_us_address .content table:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0.1rem;
  height: 100%;
  background: linear-gradient(to bottom, rgba(217, 217, 217, 0) 0%, #d9d9d9 100%);
}
.contact_us_address .content table:first-child {
  margin-top: 0;
}
.contact_us_address .content table:last-child {
  margin-bottom: 0;
}
.contact_us_address .content td {
  padding: 0 0 0 2rem;
}
.contact_us_address .content_box {
  margin: 0 0 6rem;
}
.contact_us_address .content_box table {
  margin: 4rem 0;
}
.contact_us_address .content_box td {
  padding-bottom: 3rem;
}
.contact_us_address .content_box td p {
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.contact_us_address .content_box td p:last-child {
  margin-bottom: 0;
}
.contact_us_address .content_box tr:last-child td {
  padding-bottom: 0;
}
.contact_us_address .values_form_boxes table {
  margin: 3rem 0 4rem;
  width: fit-content;
}
.contact_us_address .values_form_boxes tr:last-child td {
  padding-bottom: 0;
}
.contact_us_address .values_form_boxes td {
  font-size: 1.8rem;
  line-height: 1.334;
  padding: 0 0 1rem 2rem;
}
.contact_us_address .values_form_boxes td:nth-child(1) {
  min-width: 9.8rem;
  font-weight: 700;
}
.contact_us_address .values_form_boxes td:nth-child(2) {
  padding-left: 1.5rem;
}
.contact_us_address .values_form_boxes td p {
  margin: 0 0 1rem;
  line-height: 1.3;
}
.contact_us_address .values_form_boxes td p:last-child {
  margin-bottom: 0;
}
.contact_us_address:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(to bottom, #000000 0%, #252525 50%, #000000 100%);
  z-index: -1;
  pointer-events: none;
}
.contact_us_address .form_box label {
  display: block;
}

.form_box label {
  margin: 0 0 1rem;
  font: 400 1.6rem/1.3 "Lato", sans-serif;
  color: #2A2A2A;
}
.form_box a:not(.button) {
  font-weight: 700;
  color: #DC4825;
  transition: 0.3s;
}
.form_box h2:first-child, .form_box .h2:first-child {
  margin-top: 0;
}
.form_box p:last-child {
  margin-bottom: 1rem;
}

.faqs_row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 7.5rem;
}

.faqs_aside {
  max-width: 27.2rem;
  width: 100%;
}

.aside_categorises {
  position: relative;
  z-index: 2;
  margin: 0;
}
.aside_categorises:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.2rem;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.aside_categorises li {
  margin: 0 0 2rem;
}
.aside_categorises li a {
  display: inline-block;
  position: relative;
  z-index: 3;
  padding: 0.8rem 2.9rem;
  font: 700 1.8rem/1.3 "Lato", sans-serif;
  transition: 0.3s;
}
.aside_categorises li a:before {
  content: "";
  position: absolute;
  left: -0.2rem;
  top: 0;
  width: 0.6rem;
  height: 100%;
  background-color: transparent;
  transition: 0.3s;
}
.aside_categorises li.active a {
  pointer-events: none;
}
.aside_categorises li.active a:before {
  background-color: #2A2A2A;
}

.faqs_form_top {
  margin: 2.9rem 0 7.4rem;
}
.faqs_form_top .form_item {
  position: relative;
  margin: 0;
}
.faqs_form_top .input {
  position: relative;
  z-index: 1;
}
.faqs_form_top .button {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
}

.faqs_main {
  max-width: 84.8rem;
  width: 100%;
}

.faqs_arrow {
  position: relative;
  display: block;
  width: 6.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.1rem solid #000000;
  background-color: transparent;
}
.faqs_arrow:before, .faqs_arrow:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  width: 1.7rem;
  height: 0.243rem;
  background-color: #000000;
}
.faqs_arrow:before {
  height: 1.7rem;
  width: 0.243rem;
}
.faqs_arrow:after {
  width: 1.7rem;
  height: 0.243rem;
}

.faqs {
  padding-top: 7.5rem;
}
.faqs .faqs_wrap1 {
  margin: 0;
}
.faqs .faqs_wrap2 {
  display: none;
  margin: 3rem 0 0;
}
.faqs .faqs_bottom_tc {
  margin: 4rem 0 0;
}
.faqs .faqs_item {
  position: relative;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
  margin: 0 0 3rem;
  padding: 0 0 3rem;
}
.faqs .faqs_item:last-child {
  margin-bottom: 0;
}
.faqs .faqs_item.active .faqs_question .faqs_arrow {
  background-color: #f48f1d;
  border-color: #f48f1d;
}
.faqs .faqs_item.active .faqs_question .faqs_arrow:before, .faqs .faqs_item.active .faqs_question .faqs_arrow:after {
  transform: translate(-50%, -50%) rotate(90deg);
  background-color: #ffffff;
}
.faqs .faqs_item.active .faqs_question .faqs_arrow::after {
  opacity: 0;
}
.faqs .faqs_question {
  position: relative;
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: initial;
  cursor: pointer;
  gap: 5rem;
  transition: all 0.3s;
  user-select: none;
  color: #000000;
}
.faqs .faqs_question .name {
  max-width: 64.6rem;
  width: 100%;
  padding: 0.4rem 0;
}
.faqs .faqs_content {
  display: none;
  padding: 0.1rem 5rem 0 0;
  max-width: 55.5rem;
}
.faqs .faqs_content .link_underline {
  margin-top: 1rem;
}

body.st-body-no-scroll {
  position: relative !important;
}

.blog {
  padding-top: 3.6rem;
}

.aside_mobile_btn {
  display: none;
}

.blog_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7.5rem;
}

.blog_main {
  max-width: 72.9rem;
  width: 100%;
  padding: 3.9rem 0 0;
}

.blog_post .blog_main {
  padding: 0;
}

.bog_aside {
  max-width: 39rem;
  width: 100%;
}

.blog_row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 3rem 2.5rem;
}

.blog_item {
  max-width: calc(50% - 1.25rem);
  width: 100%;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  box-shadow: 0 0 2.8rem rgba(0, 0, 0, 0.05);
}

.blog_img.card_img {
  aspect-ratio: unset;
  padding-top: 84%;
}

.blog_item_inner {
  margin: auto 0;
  padding: 4rem 3.3rem;
}

.blog_name {
  margin: 0 0 1.5rem;
}
.blog_name a {
  transition: 0.3s;
}

.publish_date {
  margin: 0 0 2rem;
  font: 400 1.8rem/1 "Lato", sans-serif;
  color: rgba(0, 0, 0, 0.5);
}

.sharethis-inline-share-buttons {
  position: relative;
  z-index: 1;
  margin: 0 0 1.5rem;
}
.sharethis-inline-share-buttons .st-btn {
  background-color: #000000 !important;
}

.blog_content {
  margin: 0 0 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.aside_block {
  margin: 0 0 7.5rem;
}
.aside_block:last-child {
  margin-bottom: 0;
}
.aside_block .aside_title {
  color: #F7921E;
  margin: 0 0 3rem;
}

.aside_form_block .row_f {
  gap: 2.2rem 0;
  align-items: center;
}
.aside_form_block .button {
  min-width: unset;
  max-width: 100%;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.blog_search {
  position: relative;
}
.blog_search .input {
  position: relative;
  z-index: 1;
}
.blog_search button {
  position: absolute;
  z-index: 2;
  bottom: 0.8rem;
  right: 0;
  background-color: transparent;
  border: none;
}
.blog_search button .icon {
  font-size: 2.4rem;
}

.recent_articles li {
  position: relative;
  padding-left: 3rem;
  margin: 0 0 3rem;
}
.recent_articles li:last-child {
  margin-bottom: 0;
}
.recent_articles li:before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 0.8rem;
  height: 1.3rem;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%2213%22%20viewBox%3D%220%200%208%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M4.06179e-07%2011.3835L4.83146%206.5L-2.07531e-08%201.61646L1.59551%202.79949e-07L8%206.5L1.59551%2013L4.06179e-07%2011.3835Z%22%20fill%3D%22black%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.recent_articles li .name {
  font: 700 1.8rem/1.2 "Lato", sans-serif;
  color: #000000;
  margin: 0 0 1.5rem;
}
.recent_articles li .date {
  font: 400 1.8rem/1 "Lato", sans-serif;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}
.recent_articles li a {
  transition: 0.3s;
}

.blog .blog_post_img {
  float: right;
  margin: 0 0 1rem 2rem;
  max-width: 40%;
  width: 40%;
}

.pre_banner_form {
  position: relative;
  z-index: 3;
  margin-top: -18.9rem;
}

.pre_banner_form_box {
  background-color: #ffffff;
  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.1);
}
.pre_banner_form_box .modal_title {
  background: linear-gradient(to bottom, #252525 0%, #121212 50%, #252525 100%);
  color: #ffffff;
  font: 700 2.4rem/1.2 "Lato", sans-serif;
  padding: 1.96rem 2.2rem;
  margin: 0;
}
.pre_banner_form_box .form_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4.2rem;
  padding: 4rem;
}
.pre_banner_form_box .form_wrap .form_item {
  max-width: calc(33.3333333333% - 2.8rem);
  width: 100%;
  margin: 0;
}
.pre_banner_form_box .modal_bottom_info {
  position: relative;
  background-color: #FAFAFA;
  margin: 0;
  padding: 2rem 4.6rem 2rem 8.2rem;
}
.pre_banner_form_box .modal_bottom_info .icon {
  position: absolute;
  top: 2.4rem;
  left: 4.8rem;
  font-size: 2.2rem;
}
.pre_banner_form_box .input {
  height: 3rem;
}
.pre_banner_form_box .select_after::after {
  bottom: 1rem;
  width: 1rem;
  height: 0.5rem;
}

.type_product {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.3rem;
  margin: 0 0 1.6rem;
  font: 700 1.8rem/1.5 "Lato", sans-serif;
  white-space: nowrap;
}
.type_product .number {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 3.6rem;
  height: 3.6rem;
  white-space: nowrap;
  background-color: #000000;
  border-radius: 3.6rem;
  color: #ffffff;
  font: 500 2rem/1 "Noto Serif Display", sans-serif;
}

.bottom_type {
  color: #7C7575;
  font: 400 1.6rem/1.4 "Lato", sans-serif;
  margin: 2rem 0 0;
}
.bottom_type .lear_more {
  color: #DC4825;
  font-weight: 700;
}

.material_kits_top {
  padding: 4.4rem 0;
}

.material_kits_top_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.material_kits_top_row .wrapper {
  padding: 0;
}
.material_kits_top_row .breadcrumbs_sec {
  padding: 0;
  flex-shrink: 0;
}

.sort_by {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 4rem;
  max-width: 32.2rem;
  width: 100%;
}
.sort_by .select_after {
  max-width: 21.6rem;
  width: 100%;
}
.sort_by .select_after::after {
  bottom: 1rem;
  width: 1rem;
  height: 0.5rem;
}
.sort_by .name {
  font: 700 1.8rem/1.5 "Lato", sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}
.sort_by .input {
  height: 3rem;
}

.products {
  padding-top: 0 !important;
}

.products_row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 3rem 2rem;
  margin: 0 0 7.5rem;
}

.products_item {
  max-width: calc(33.3333333333% - 1.3333333333rem);
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 2.8rem rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  padding: 1.2rem 0 3rem;
}
.products_item hr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 0 3rem;
}
.products_item .products_button {
  padding: 0 2rem;
}
.products_item .button {
  max-width: 24rem;
  width: 100%;
  min-width: unset;
  padding-left: 2rem;
  padding-right: 2rem;
  margin: auto auto 0;
}

.products_specs:last-child{margin-bottom: 0;}

.products_specs {
  margin: 0 0 2rem;
  padding: 0 2rem;
}
.products_specs p {
  margin: 0 0 1rem;
  line-height: 1.2;
}
.products_specs p:last-child {
  margin-bottom: 0;
}

.products_name {
  padding: 0 2rem;
  font-weight: 700;
  margin: 1.5rem 0 2rem;
}

.card_img.products_img {
  aspect-ratio: unset;
  padding-top: 57%;
}
.card_img.products_img img {
  max-width: calc(100% - 4rem);
  -o-object-fit: contain;
  object-fit: contain;
}
.card_img.img_contain{-o-object-fit: contain;object-fit: contain;}

.products_price {
  margin: 0 0 2rem;
  padding: 0 2rem;
  font: 500 3rem/1 "Noto Serif Display", sans-serif;
}
.products_price sub {
  font-size: 1.6rem;
  font-style: italic;
  bottom: 0;
}

.goes_to_kit_row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 3rem 2rem;
  margin: 4rem 0 0;
}

.goes_to_kit_item {
  display: flex;
  flex-direction: column;
  max-width: calc(33.3333333333% - 1.3333333333rem);
  width: 100%;
  padding: 6rem 3.9rem;
  border: 0.1rem solid #2A2A2A;
}

.goes_to_kit_name {
  position: relative;
  padding-bottom: 2.3rem;
  margin: 0 0 4rem;
}
.goes_to_kit_name:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10.5rem;
  height: 0.1rem;
  background-color: #000000;
  transform: translate(-50%, 0);
}

.products_content {
  margin: 0 0 4rem;
}

.types_wrapper {
  margin: 4rem 0 0;
}

.types_row {
  margin: 0 0 4rem;
  background-color: #ffffff;
  border-radius: 5rem 5rem 0 0;
  box-shadow: 0 0 2.8rem rgba(0, 0, 0, 0.05);
}
.types_row:last-child {
  margin-bottom: 0;
}
.types_row .name_of_types {
  background-color: #000000;
  color: #ffffff;
  padding: 2.2rem 5rem;
  border-radius: 5rem;
  margin: 0;
  text-transform: initial;
}

.types_item_row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16.4rem;
  position: relative;
  padding: 4rem;
  overflow: hidden;
}
.types_item_row:before, .types_item_row:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: calc(50% - 3.2rem);
  width: 0.1rem;
  background: linear-gradient(to bottom, rgba(217, 217, 217, 0) 0%, #d9d9d9 50%, rgba(217, 217, 217, 0) 100%);
}
.types_item_row:before {
  top: 4.2rem;
}
.types_item_row:after {
  bottom: 1.3rem;
}
.types_item_row .vs_box {
  position: absolute;
  top: calc(50% + 1.6rem);
  left: 50%;
  transform: translate(-50%, -50%);
  font: 500 2.2rem/3.2rem "Noto Serif Display", sans-serif;
  height: 3.2rem;
  font-style: italic;
}
.types_item_row .types_item {
  max-width: calc(50% - 8.2rem);
  width: 100%;
}
.types_item_row .types_item h3, .types_item_row .types_item .h3 {
  text-transform: uppercase;
  padding-bottom: 2.3rem;
  margin: 0 0 4rem;
  position: relative;
}
.types_item_row .types_item h3:before, .types_item_row .types_item .h3:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10.5rem;
  height: 0.1rem;
  background-color: #000000;
  transform: translate(-50%, 0);
}

.types_sec1 {
  padding-top: 7.5rem;
}

.types_sec2 {
  padding-bottom: 5rem;
}

.types_item_slider_row {
  display: flex;
  gap: 2.8rem;
}

.types_item_slider_box {
  max-width: calc(50% - 1.4rem);
  width: 100%;
}

.types_item_slider.hidden_slider {
  aspect-ratio: 583/302;
  opacity: 0;
  overflow: hidden;
}
.types_item_slider .slick-arrow {
  top: unset;
  bottom: 2.4rem;
  left: 50%;
  transform: translate(-50%, 0);
}
.types_item_slider .slick-arrow:after {
  content: none;
  display: none;
}
.types_item_slider .slick-prev {
  left: calc(50% - 5.3rem);
}
.types_item_slider .slick-next {
  left: calc(50% + 5.3rem);
  right: unset;
}
.types_item_slider .types_item_slide.card_img {
  aspect-ratio: 583/302;
}

.bottom_arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.6rem;
  position: relative;
  z-index: 5;
}
.bottom_arrows .slick-arrow {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  transform: unset;
}
.bottom_arrows .slick-arrow:after {
  content: none;
  display: none;
}
.bottom_arrows .slick-dots {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  transform: unset;
}

footer {
  padding: 4.6rem 0 0;
  background: #000000;
  position: relative;
  z-index: 3;
}
footer .footer_title {
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 4rem;
  text-transform: initial;
}
footer .footer_media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
footer .footer_top_row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 4rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.4);
  margin-bottom: 4rem;
  gap: 4rem;
}
footer .footer_top_col {
  width: 100%;
}
footer .footer_top_col1 {
  max-width: 41.6rem;
}
footer .footer_top_col2 {
  max-width: 57.5rem;
  padding-right: 4.3rem;
}
footer .footer_row {
  display: grid;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  grid-template-columns: 27.8rem 20.2rem 13rem 6.6rem;
}
footer address {
  margin: 0 0 3.2rem;
}
footer p {
  display: block;
  color: #ffffff;
  font: 400 1.5rem/1.47 "Lato", sans-serif;
  margin: 1rem 0;
}
footer a {
  display: inline-block;
  font: 400 1.5rem/1.47 "Lato", sans-serif;
  color: #ffffff;
  transition: 0.3s linear;
}
footer br {
  display: none;
}
footer ul {
  margin: 0.5rem 0;
}
footer ul li {
  margin: 0 0 1rem;
}
footer ul li:last-child {
  margin-bottom: 0;
}
footer td {
  color: #ffffff;
  font: 400 1.5rem/1.47 "Lato", sans-serif;
}
footer td:first-child {
  font-weight: 700;
}
footer .hours_col td {
  padding: 0.5rem 1.5rem;
}
footer .hours_col td:first-child {
  padding-left: 0;
}
footer .hours_col td:last-child {
  padding-right: 0;
}
footer .contacts_table {
  margin: 3rem 0;
}
footer .contacts_table td {
  padding: 0.5rem 2.5rem;
}
footer .contacts_table td:first-child {
  padding-left: 0;
}
footer .contacts_table td:last-child {
  padding-right: 0;
}
footer form .form_item {
  margin: 0 0 1.5rem;
}
footer form .form_item:last-child {
  margin-bottom: 0;
}
footer form .form_item_button {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
footer form .form_item_button label {
  flex-grow: 1;
}
footer form .input {
  color: #000000;
  background-color: #ffffff;
  border: 0.1rem solid #ffffff;
  height: 5rem;
  font: 400 1.8rem/1 "Lato", sans-serif;
  border-radius: 0;
}
footer form .input::placeholder {
  color: rgba(0, 0, 0, 0.8);
}
footer form .custom_checkbox + label .checkbox_text {
  color: #ffffff;
}
footer form .button {
  padding: 0 2rem;
  width: 11.5rem;
  height: 5rem;
  min-height: initial;
  line-height: 5rem;
  position: relative;
  flex-shrink: 0;
}
footer form .button .icon {
  width: 0.6rem;
  height: 0.9rem;
}
footer form .button:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 0.1rem;
  height: 3.4rem;
  background-color: rgba(194, 190, 181, 0.3);
}

.footer_media.desc {
  display: flex;
}
.footer_media.mobile {
  display: none;
}

.footer_bottom {
  margin: 3rem 0 0;
  position: relative;
  z-index: 3;
}
.footer_bottom p, .footer_bottom a {
  font: 500 1.5rem/1.47 "Lato", sans-serif;
  color: #ffffff;
}
.footer_bottom p {
  margin: 0;
}
.footer_bottom a {
  transition: 0.3s linear;
}

.footer_bottom_row {
  padding: 4rem 0;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.page_404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page_404 .header {
  background-color: #000000;
  padding: 1.9rem 0;
}
.page_404 .header.fixed {
  padding: 1rem 0;
}
.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: #2A2A2A;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
}
.page_404 .block_404_content h1 span, .page_404 .block_404_content .h1 span {
  color: #F26522;
  display: block;
  font-size: 18rem;
  line-height: 1;
}
.page_404 .block_404_content .button {
  max-width: 27rem;
  width: 100%;
}
.page_404 footer {
  flex-shrink: 0;
}

.page_grow {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page_grow .element_grow {
  flex-grow: 1;
}
.page_grow .element_grow_center {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_grow footer {
  flex-shrink: 0;
}
.inner_banner_small .inner_banner{height: 13.9rem;min-height: unset;padding: 0;}
.inner_banner_small .inner_banner::after {width: 100%;background: linear-gradient(to bottom, rgba(0,0,0,.8) 0%, rgba(0,0,0,.65) 45%, rgba(0, 0, 0, 0) 100%);}
.single_product_row{display: flex;gap: 2rem;justify-content: space-between;align-items: flex-start}
.single_product_row .img_block{max-width: 53.8rem;width: 100%}
.single_product_row .desc_block {max-width: 48rem;width: 100%;padding-top: 1.7rem}
.single_product_row .product_name_main{font-size: 4.8rem;margin: 0 0 4rem;}
.single_product_row .product_name_main i, .single_product_row .product_name_main em{font-size: 4.5rem;}
.single_product_row .price{font: 500 3rem/1 "Noto Serif Display",sans-serif;margin: 0 0 3rem;}
.single_product_row .price small{font-size: 1.6rem;line-height: 1.375;font-style: italic;margin: 0 0 3rem;}
.mailBookmark {margin: 0 0 .8rem;}
.mailBookmark .mail{position: relative;font: 400 1.8rem/1.2 "Lato",sans-serif;padding-left: 2.2rem;color: #F7921E;transition: .3s}
.mailBookmark .mail .icon{position: absolute;top: 50%;left: 0;transform: translate(0,-50%);font-size: 1.6rem;}
.single_product_specification{margin: 0 0 3rem;}
.single_product_specification table{margin: 2rem 0}
.single_product_specification td{padding: 0 1rem .75rem;font: 400 1.8rem/1.5 "Lato",sans-serif;}
.single_product_specification td:first-child{padding-left:0;}
.single_product_specification td:last-child{padding-right:0;}
.single_product_specification tr:last-child td{padding-bottom:0;}
.single_product_row .desc_block .button{min-width: 26.7rem;}
.step_item{display: none}
.step_item.active{display: block;}
.product_config_form{padding: 0 0 7.5rem;overflow: hidden}
.steps_progress{background-color: #FAFAFA;padding: 4rem 0;}
.steps_progress_row{display: flex;align-items: flex-start;justify-content: space-between;gap: 4rem;position: relative;z-index: 2}
.step_line{content: "";display: block;position: absolute;top: 1.7rem;left: 50%;width: 22rem;height: .2rem;background: rgba(217,217,217,.6);z-index: -1}
.step_progress_item:nth-child(6n+6) .step_line, .step_progress_item&:last-child .step_line {content: none;display: none;}
.step_progress_item{max-width: calc(100%/6 - 4rem*5/6);position: relative;z-index: 2;display: flex;flex-direction: column;align-items: center;justify-content: center;gap: 1rem;}
.step_circle{display: flex;align-items: center;justify-content: center;text-align: center;width: 3.6rem;aspect-ratio: 1/1;border-radius: 50%;padding: .5rem;background-color: #929292;color: #FFFFFF;font: 500 2rem/1 "Noto Serif Display",sans-serif;position: relative;z-index: 3}
.step_progress_item_checkbox{display: none;}
.step_text{color: rgba(42,42,42,.5);font: 700 1.6rem/1.2 "Lato",sans-serif;}
.step_progress_current .step_circle{background-color: #DC4825;}
.step_progress_current .step_text{color: #2A2A2A;}
.step_progress_current .step_line{background: linear-gradient(to right, #DC4825 0%,#DFDADA 70%);}
.step_progress_passed .step_circle{background-color: #DC4825;}
.step_progress_passed .step_text{color: #2A2A2A;}
.step_progress_passed .step_line{background: #DC4825;}
.kit_customize_controls{max-width: 76.1rem;width: 100%;}
.kit_customize_controls .products_row {gap: 3rem 1.7rem;margin: 4rem 3.4rem 4rem 0;}
.kit_customize_controls .products_row .products_item {max-width: calc(50% - 1.7rem/2);position: relative;}
.kit_customize_wrap{display: flex;align-items: flex-start;justify-content: flex-start;}
.kit_customize_summary{max-width: 43.3rem;width: 100%;padding: 4.6rem 4rem;box-shadow: 0 0 1.49rem rgba(0,0,0,.1)}
.products_item_item_input{position: absolute;left: -999.9rem;}
.products_item_item_label{cursor: pointer;}
.products_item_item_label .card_img img{pointer-events: none}
.products_item_item_label .checkbox_design{position: absolute;left: 0;top: 0;width: 4.9rem;height: 4.9rem;border: 0.1rem solid #000000;background-color: #ffffff;border-radius: 0;transform: scale(1);transition: all 0.2s ease;z-index: 3}
.products_item_item_label .checkbox_design:before{content: "";position: absolute;top: 0;left: 0;display: block;width: 100%;height: 100%;opacity: 1;border-radius: 50%;background-color: #f48f1d;transform: scale(0);}
.products_item_item_label .checkbox_design svg{position: absolute;    top: 0.9rem;left: 0.9rem;width: 3.2rem;height: 3rem;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);}

.products_item_item_input:checked + label .checkbox_design svg {stroke: #ffffff;stroke-dashoffset: 0;}
.products_item_item_input:checked + label .checkbox_design::before {opacity: 0;transform: scale(3.5);transition: all 0.6s ease;}
.products_item_item_input:checked + label .checkbox_design {background-color: #000000;border-color: #000000;}
.step_heading{position: relative;z-index: 2;padding: 3rem 0;margin: 0 0 4rem;background-color: #000000;color: #FFFFFF;font-weight: 400}
.step_heading:before{content: "";position: absolute;right:99%;top:0;width: 100vw;height: 100%;z-index: -1;background-color: #000000;}
.catName{position: relative;padding: 0 0 2.3rem;margin: 0 0 4rem;}
.catName:after{content: "";position: absolute;width: 10.5rem;height: .1rem;bottom: 0;left: 50%;transform: translate(-50%,0);background-color: #000000;}
.order_summary_title{margin: 0 0 4rem;color:#F7921E;font-weight: 500;}
.kit_customize_summary table{width: 100%;margin: 0 0 3rem}
.kit_customize_summary table.total{margin: 2.2rem 0 2rem}
.kit_customize_summary td{width: 45%;padding: 0 1rem 1rem;font: 400 1.8rem/1.2 "Lato",sans-serif;}
.kit_customize_summary td.price{font: 500 3rem/1 "Noto Serif Display",sans-serif;}
.kit_customize_summary td p{font: 400 1.8rem/1.2 "Lato",sans-serif;margin: 0 0 0.5rem}
.kit_customize_summary td p:last-child{margin-bottom: 0}
.kit_customize_summary td:first-child{padding-left: 0;}
.kit_customize_summary td:last-child{padding-right: 0;}
.kit_customize_summary tr:last-child td{padding-bottom: 0}
.mt_0{margin-top: 0!important;}
.mb_0{margin-bottom: 0!important;}
.m_0{margin: 0!important;}
.show_details{text-transform: capitalize;position: relative;color: #F7921E;transition: .3s;padding-right: 1.3rem}
.show_details .icon{content: "";position: absolute;display: block;right: 0;top: 50%;transform: translate(0,-50%)rotate(0);width: .8rem;height: .5rem;}
.show_details.active .icon{transform: translate(0,-50%)rotate(0);}
.validate_radio.validate_error .products_item_item_label {border: .1rem solid #e57373!important;}
.validate_radio.validate_error .products_item_item_label .checkbox_design {border: .1rem solid #e57373!important;}
.step_buttons_bottom{display: flex;align-items: center;justify-content: center;gap: 1rem 7.8rem;}
.link_arrow_left{position: relative;cursor: pointer;font: 400 1.8rem/1.2 "Lato",sans-serif;padding-left: 1.3rem;color: #000000;transition: .3s;white-space: nowrap;display: inline-block;}
.link_arrow_left .icon{position: absolute;width: .6rem;height: 1rem;transform: translate(0,-50%)rotate(90deg);top: 50%;left: 0;}
.link_arrow_left.disabled{color: #b3b3b3;pointer-events: none;}
.product_with_hover{max-width: calc(100%/3 - 1.7rem*2/3);width: 100%;position: relative;overflow: hidden;box-shadow: 0 0 1.03rem rgba(0,0,0,.05)}
.product_with_hover_img{top: 50%;left: 50%;position: absolute;z-index: 1;max-width: calc(100% - 3.5rem);width: 100%;transform: translate(-50%,-50%);display: flex;align-items: center;justify-content: center}
.product_with_hover_img img{max-width: 100%;max-height: 8.5rem;}
.product_with_hover_bottom{position: relative;top: 3rem;background-color: rgba(0,0,0,0.8);opacity: 0;z-index: 2;transition: .3s;padding: 4.5rem 1.8rem}
.product_with_hover_bottom .name{font: 700 1.8rem/1.5 "Lato",sans-serif;margin: 0 0 2.2rem;color:#F7921E}
.product_with_hover_bottom .content p{font: 400 1.8rem/1.5 "Lato",sans-serif;margin: 0 0 1rem;}
.product_with_hover_bottom .content p:last-child{margin-bottom: 0;}
.product_with_hover_bottom:hover{top: 0;opacity: 1;}
@-moz-document url-prefix() {
  html {scrollbar-width: auto;scrollbar-color: #f48f1d #f1f1f1;}
}
@media only screen and (min-width: 993px) {
  .navigation .header_nav > li.dr_down:hover .sub_menu {opacity: 1;visibility: visible;transform: translate3d(0, 0, 0);}
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  .header .phone_block .phone:hover {
    color: #f48f1d;
  }
  .navigation .header_nav > li > a:not(.button):hover {
    color: #f48f1d;
  }
  .navigation .header_nav > li:hover > a:not(.button)::before {
    left: 0;
    right: 0;
  }
  .navigation .header_nav > li.dr_down:hover > a:not(.button)::before {
    left: 5rem;
  }
  .navigation .header_nav .sub_menu > li > a:not(.button):hover {
    color: #000;
    border-color: #ffffff;
  }
  .navigation .header_nav > li.dr_down > a:hover:after {
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.00525 3.89874e-07L4 3.01966L0.994745 -1.35582e-07L3.49937e-07 0.997191L4 5L8 0.997191L7.00525 3.89874e-07Z' fill='%23f48f1d'/%3E%3C/svg%3E");
  }
  footer a:hover {
    color: #f48f1d;
  }
  .footer_bottom a:hover {
    color: #f48f1d;
  }
  .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);
  }
  .header .languageSelection_btn:hover {
    color: #f48f1d;
  }
  .button:hover {
    color: #f48f1d;
    background-color: #ffffff;
    border-color: #f48f1d;
  }
  .button.light:hover {
    color: #ffffff;
    background-color: #f48f1d;
    border-color: #f48f1d;
  }
  .button.light_2:hover {
    color: #ffffff;
    background-color: #f48f1d;
    border-color: #f48f1d;
  }
  .button.dark:hover {
    color: #F26522;
    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: #000000;
    background-color: #fdae11;
    border-color: #fdae11;
  }
  .button.button_info:hover {
    color: #ffffff;
    background-color: #0890a7;
    border-color: #0890a7;
  }
  .button.button_disable:hover {
    color: #000000;
    background-color: #c3bfbf;
    border-color: #c3bfbf;
  }
  .button.button_default:hover {
    color: #ffffff;
    background-color: #50606e;
    border-color: #50606e;
  }
  .button.btn_icon:hover svg {
    transform: translate(-50%, 0.9rem);
  }
  .button.btn_icon:hover span {
    transform: translateY(3rem);
  }
  .slick-prev:hover, .slick-next:hover {
    background-color: #f48f1d;
    border-color: #f48f1d;
    color: #ffffff;
  }
  .slick-prev:hover::after, .slick-next:hover::after {
    border-color: #ffffff;
  }
  .dialog .icon_close:hover {
    color: #dc3545;
  }
  .input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 4rem #ffffff inset !important;
    -webkit-text-fill-color: #000000 !important;
  }
  .custom_checkbox + label:hover .checkbox_design {
    border-color: #f48f1d;
  }
  .custom_radio_button + label:hover .radio_button_design {
    border-color: #f48f1d;
  }
  .pagination li a:hover {
    background-color: #f48f1d;
    color: #ffffff;
  }
  .social .social_block:hover .icon, .social .social_block:hover img {
    padding: 0.2rem;
  }
  .content a:not(.button):hover {
    color: #f48f1d;
  }
  .form_box a:not(.button):hover {
    color: #f48f1d;
  }
  .toast_notifications .removeTOAST .icon:hover {
    color: #FF3F0A;
  }
  .our_products_tem:hover .our_products_overflow {min-height: 100%;max-height: 100%;}
  .our_products_tem:hover .our_products_overflow:before {
    opacity: 0.95;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0) 100%);
  }
  .product_gallery_slider_nav .slider_item:hover .overlay {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  .map_text ul li a:not(.button):hover {
    color: #DC4825;
  }
  .map_text ul li a:not(.button):hover:before {
    background-color: #DC4825;
  }
  .map_text ul li a:not(.button):hover .icon {
    opacity: 1;
    visibility: visible;
  }
  .header .cart_button:hover {
    color: #f48f1d;
  }
  .header .languageSelection_box li a:hover {
    color: #f48f1d;
  }
  .breadcrumbs li a:hover {
    color: #DC4825;
  }
  .xiForms_input_file:hover + label.input {
    background-color: #F7921E !important;
    color: #ffffff !important;
  }
  .aside_categorises li a:hover {
    color: #f48f1d;
  }
  .aside_categorises li a:hover:before {
    background-color: #f48f1d;
  }
  .recent_articles li a:hover {
    color: #f48f1d;
  }
  .product_item2:hover .product_overflow {
    min-height: 100%;
    max-height: 100%;
  }
  .why_choose_name a:hover {
    color: #f48f1d;
  }
  .why_choose_name a:hover:after {
    width: 100%;
  }
  .link_underline:hover {
    color: #f48f1d;
  }
  .link_underline:hover:after {
    width: 100%;
  }
  .card_img:hover img {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
@media only screen and (min-width: 1921px) {
  .map_bg img {
    right: calc(50vw - 96rem);
  }
}
@media only screen and (max-width: 1800px) {
  .map_bg img {
    right: -10rem;
  }
}
@media only screen and (max-width: 1500px) {
  .map_bg img {
    right: -21rem;
  }
}
@media only screen and (max-width: 1300px) {
  h1, .h1,
  .content h1, .content .h1 {
    font-size: 5.5rem;
  }
  h2, .h2,
  .content h2, .content .h2,
  .title, .content .title {
    font-size: 3.6rem;
  }
  .content img[style*="float: right"] {
    margin: 1rem 0 1rem 4.5rem !important;
  }
  .content img[style*="float: left"] {
    margin: 1rem 4.5rem 1.5rem 0 !important;
  }
  .navigation .header_nav_full {
    gap: 0 2rem;
    justify-content: space-between;
  }
  .navigation .header_nav_full > li > a:not(.button) {
    font-size: 1.7rem;
  }
  .counters .counter_item p.number {
    font-size: 4.1rem;
  }
}
@media only screen and (max-width: 1235px) {
  .map_bg img {
    right: -21rem;
  }
}
@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);
  }
  .products_item {
    padding: 1.5rem 0;
    max-width: calc(33.3333333333% - 1rem);
  }
  .products_row {
    gap: 3rem 1.5rem;
  }
  .our_products_overflow {
    gap: 1rem;
    min-height: 11.6rem;
    padding: 2rem 2rem;
  }
  .counters .counter_wrap {
    gap: 4rem 9rem;
  }
  .counters .counter_item {
    max-width: calc(25% - 6.75rem);
  }
  .counter_line {
    right: -4.6rem;
  }
  .product_overflow br {
    display: none;
  }
  .product_overflow {
    min-height: 54.7%;
    padding: 2rem;
  }
  .why_choose_row {
    gap: 4rem 6rem;
    margin: 3.5rem 0 0;
  }
  .why_choose_item:after {
    right: -3.1rem;
  }
  .why_choose_item:nth-child(2n+2),
  .why_choose_item {
    max-width: calc(33.3333333333% - 4rem);
  }
  .product_gallery_slider_nav .overlay {
    padding: 1.5rem;
  }
  .reviews_slider {
    margin: 3rem -0.8rem 3.5rem;
  }
  .reviews_slider .review_slide {
    padding: 3rem 4rem;
    margin: 0 0.8rem;
  }
  .faqs_row {
    gap: 4rem;
  }
  .contact_us_address {
    padding: 8rem 7rem 6.2rem 0.6rem;
    max-width: 36rem;
  }
  .contact_us_section .form_box {
    padding: 8rem 0 4rem 5.2rem;
  }
  .contact_us_address .content_box table {
    margin: 3rem 0;
  }
  .contact_us_address .content_box {
    margin: 0 0 4.5rem;
  }
  .blog_wrapper {
    gap: 4rem;
  }
  .bog_aside {
    max-width: 30rem;
  }
  .aside_block .aside_title {
    margin: 0 0 2rem;
  }
  .blog_main {
    padding: 1.5rem 0 0;
  }
  .blog_item_inner {
    padding: 2rem 3rem;
  }
  .types_item_row {
    gap: 10rem;
    padding: 3rem;
  }
  .types_item_row:before {
    top: 3.2rem;
  }
  .types_item_row .types_item {
    max-width: calc(50% - 5rem);
  }
  .types_item_row .vs_box {
    top: calc(50% + 0.8rem);
  }
}
@media only screen and (max-width: 1100px) {
  .navigation .header_nav > li > a:not(.button) {
    font-size: 1.6rem;
  }
  .navigation .header_nav_full > li > a:not(.button) {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 992px) {
  .header, .header.fixed {
    padding: 0.7rem 0;
  }
  .header .header_logo img, .header.fixed .header_logo img {
    width: 13.9rem;
  }
  .header .navigation_btn {
    display: flex;
  }
  .header .header_right_top {
    gap: 1.5rem;
    flex-direction: column;
    order: 3;
    margin-top: 1.5rem;
  }
  .navigation {
    position: fixed;
    top: 0;
    right: -36rem;
    z-index: 100;
    width: 36rem;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    background-color: #000000;
    transition: right 0.3s ease-in;
    display: block;
  }
  .navigation .navigation_box {
    display: flex;
    flex-direction: column;
    margin: 9rem 0 0;
    padding: 0 1.5rem;
    height: calc(100vh - 16rem);
    overflow-y: auto;
    justify-content: flex-start;
  }
  .navigation.nav_opened {
    right: 0;
    transition: right 0.3s ease-out;
  }
  .navigation .header_nav {
    display: block;
    order: 2;
    width: 100%;
  }
  .navigation .header_nav.header_nav_full {
    order: 1;
    margin: 0;
  }
  .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;
    padding: 0.9rem 0;
    width: 100%;
    margin: 0 auto;
  }
  .navigation .header_nav > li > a:not(.button)::before {
    display: none;
  }
  .navigation .header_nav > li.dr_down > a:not(.button)::after {
    content: "";
    position: relative;
    top: -0.3rem;
    left: auto !important;
    right: -1.3rem;
    display: inline-block;
    transform: rotate(0deg);
  }
  .navigation .header_nav > li.dr_down.active > a:not(.button)::after {
    top: -0.5rem;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.00525 3.89874e-07L4 3.01966L0.994745 -1.35582e-07L3.49937e-07 0.997191L4 5L8 0.997191L7.00525 3.89874e-07Z' fill='%23f48f1d'/%3E%3C/svg%3E");
  }
  .navigation .header_nav > li.dr_down .sub_menu {
    display: none;
    position: relative;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0 0 1rem;
    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 0.8rem 2rem;
    margin: 0 auto;
    max-width: 80%;
    text-align: center;
  }
  .navigation .header_nav > li.dr_down.visible_sub > a:not(.button)::after {
    top: -0.5rem;
    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.nav_logo_li {
    display: block;
    margin-bottom: 1rem;
  }
  .navigation .header_nav > li.nav_logo_li .nav_logo {
    max-width: 20rem;
    width: 100%;
  }
  .navigation .header_nav > li.nav_logo_li .nav_logo img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
  }
  .navigation .header_nav > li.mobile_social {
    display: block;
  }
  .navigation .header_nav > li.mobile_social .social {
    text-align: center;
    margin: 1rem 0 0;
  }
  .navigation .header_nav > li.mobile_social .social li {
    margin: 0.5rem 0;
  }
  .navigation .header_nav > li.mobile_social .social a {
    display: inline-block;
    vertical-align: middle;
    font-size: 2rem;
    width: auto;
    color: #ffffff;
    margin: 0;
  }
  .mobile_phone, .home_bar_space {
    display: block;
  }
  .hide_desktop {
    display: block !important;
  }
  .hide_tablet {
    display: none !important;
  }
  .page aside, .page main {
    display: block;
    width: 100%;
    float: none;
    margin: 1rem 0;
    padding: 0;
  }
  .map iframe, .map #map {
    height: 30rem;
  }
  .row.tablet .col_3, .row.tablet .col_4 {
    width: calc(50% - 3rem);
  }
  .header .top_header {
    display: none;
  }
  footer {
    padding-bottom: 5.1rem;
    padding-top: 4rem;
  }
  .footer_bottom_row {
    padding: 2rem 0;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  footer .footer_row {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 5rem;
  }
  footer address {
    margin: 0 0 2rem;
  }
  footer .footer_top_col2 {
    padding-right: 2rem;
  }
  .footer_bottom {
    margin: 2rem 0 0;
  }
  footer .footer_title {
    margin: 0 0 2rem;
  }
  footer .footer_top_row {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    gap: 1.5rem 2.5rem;
  }
  .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,
  .content h1, .content .h1 {
    font-size: 4.5rem;
  }
  h2, .h2,
  .content h2, .content .h2,
  .title, .content .title {
    font-size: 3.2rem;
  }
  h3, .h3,
  .content h3, .content .h3 {
    font-size: 2.2rem;
  }
  h4, .h4,
  .content h4, .content .h4 {
    font-size: 2.1rem;
  }
  h5, .h5,
  .content h5, .content .h5 {
    font-size: 2rem;
  }
  h6, .h6,
  .content h6, .content .h6 {
    font-size: 1.8rem;
  }
  .content img[style*="float: right"] {
    margin: 1rem 0 1rem 2.5rem !important;
  }
  .content img[style*="float: left"] {
    margin: 1rem 2.5rem 1.5rem 0 !important;
  }
  .modal_video.dialog .icon_close {
    display: none;
  }
  footer .contacts_table td {
    padding: 0.5rem 1.5rem;
  }
  section, .section {
    padding: 8.75rem 0;
  }
  .inner_banner {
    min-height: 32rem;
    padding: 17.1rem 0 8.55rem;
  }
  .inner_banner_big .inner_banner {
    min-height: 50rem;
    padding: 17.1rem 0 8.55rem;
  }
  .content ul li,
  .content ol li, p, .content p {
    font-size: 1.6rem;
  }
  .type_product {
    font-size: 1.6rem;
    gap: 0.8rem;
  }
  .pre_banner_form_box .modal_title {
    font-size: 2.2rem;
  }
  .type_product .number {
    min-width: 2.1rem;
    height: 2.1rem;
    font-size: 1.6rem;
  }
  .bottom_type {
    font-size: 1.5rem;
    margin: 1.5rem 0 0;
  }
  .pre_banner_form_box .form_wrap {
    gap: 2.5rem 2rem;
    padding: 3rem 2rem;
  }
  .pre_banner_form_box .form_wrap .form_item {
    max-width: calc(33.3333333333% - 1.3333333333rem);
  }
  .pre_banner_form_box .modal_bottom_info {
    padding: 3rem 2rem 3rem 5rem;
  }
  .pre_banner_form_box .modal_bottom_info .icon {
    top: 3rem;
    left: 2rem;
  }
  .breadcrumbs li {
    font-size: 1.6rem;
  }
  .sort_by {
    gap: 1rem 2.8rem;
    max-width: 34.3rem;
  }
  .sort_by .select_after {
    max-width: 25.1rem;
  }
  .material_kits_top {
    padding: 1.5rem 0 3rem;
  }
  .products_price {
    font-size: 2.75rem;
    margin: 0 0 1.5rem;
  }
  .products_specs p {
    margin: 0 0 0.5rem;
  }
  .products_name {
    margin: 1.5rem 0;
  }
  .products_item hr {
    margin: 0 0 1.5rem;
  }
  .products_specs {
    margin: 0 0 1.5rem;
  }
  .button {
    min-height: 5.5rem;
    padding: 1.6rem 3rem;
  }
  .products_row {
    margin: 0 0 5.25rem;
  }
  .pagination li {
    margin: 0 0.5rem;
  }
  .pagination li.pagination_arrow {
    margin-left: 0.5rem;
  }
  .pagination li.pagination_arrow_prev {
    margin-left: 0;
    margin-right: 0.5rem;
  }
  .cta_1:before,
  .content_block.shadow_left:before {
    width: 75%;
  }
  .map_text ul li a:not(.button) {
    font-size: 1.6rem;
  }
  .map_text ul li a:not(.button):before {
    top: 1rem;
  }
  .content ul li:before {
    top: 0.5rem;
  }
  .map_countries_row {
    gap: 4rem;
  }
  .map_text ul li a:not(.button) .icon {
    top: 1rem;
  }
  .goes_to_kit_item {
    max-width: calc(50% - 1rem);
    padding: 4.5rem 3rem;
  }
  .goes_to_kit_name {
    padding-bottom: 1.95rem;
    margin: 0 0 3.5rem;
  }
  .products_content {
    margin: 0 0 2.75rem;
  }
  .link_underline {
    font-size: 1.6rem;
    padding: 0 0 0.4rem;
  }
  .main_top .main_content {
    padding: 9rem 0;
  }
  .main_top .banner {
    min-height: 64.3rem;
  }
  .our_products_row {
    margin: 3.5rem 0 0;
  }
  .our_products_tem {
    max-width: calc(50% - 1rem);
  }
  .our_products_sec {
    padding: 3rem 0 0;
  }
  .counters {
    padding: 5rem 0;
  }
  .slick-arrow {
    width: 5.2rem;
    height: 5.2rem;
  }
  .slick-arrow .icon {
    width: 1.4rem;
    height: 0.9rem;
  }
  .ser_apart_button {
    width: 5.2rem;
  }
  .ser_apart_button:before {
    width: 1.5rem;
    height: 0.1rem;
  }
  .ser_apart_button:after {
    height: 1.5rem;
    width: 0.1rem;
  }
  .link_arrow {
    font-size: 1.2rem;
    width: 5.2rem;
  }
  .counters .counter_item p.number {
    font-size: 3.6rem;
  }
  .counters .counter_item {
    max-width: calc(50% - 4.5rem);
  }
  .counters .counter_item:nth-child(2n+2) .counter_line {
    content: none;
    display: none;
  }
  .product_overflow h3, .product_overflow .h3 {
    margin: 2.5rem 0 2.5rem;
    padding: 0 0 1.95rem;
  }
  .why_choose_row {
    gap: 4rem;
    justify-content: center;
  }
  .why_choose_item:after {
    right: -2.1rem;
  }
  .why_choose_item:nth-child(2n+2):after {
    content: none;
    display: none;
  }
  .why_choose_item:nth-child(2n+2),
  .why_choose_item {
    max-width: calc(50% - 2rem);
  }
  .why_choose_name a {
    padding: 0 0 1.95rem;
  }
  .logos {
    padding: 5.5rem 0;
  }
  .logos_wrapper_text {
    margin-bottom: 5rem;
  }
  .padding_small {
    padding: 5rem 0;
  }
  .padding_top_small {
    padding-top: 5rem;
  }
  .padding_bottom_small {
    padding-bottom: 5rem;
  }
  .slide_name:before {
    bottom: -1.95rem;
  }
  .product_gallery_slider .overlay {
    padding: 5rem 7rem;
  }
  .product_gallery_row .slick-arrow {
    bottom: 3.8rem;
  }
  .product_gallery_slider_nav .slider_item {
    aspect-ratio: 300/260;
    max-width: calc(100% - 1rem);
  }
  .slide_name {
    font-size: 2rem;
  }
  .bottom_dots {
    margin: 3rem 0 0;
  }
  .product_gallery_row {
    margin: 0 0 2rem;
  }
  .icon_quotes {
    width: 3.5rem;
    margin: 0 0 3.5rem;
  }
  .reviews_slider_content {
    margin: 0 0 3.2rem;
  }
  .reviews_slider .review_slide {
    padding: 2.5rem 2rem;
  }
  .testimonial_item {
    padding: 2.5rem 3rem;
  }
  .stars .icon {
    font-size: 2.7rem;
  }
  .google_box {
    width: 2.5rem;
  }
  .google_box .icon {
    font-size: 1.7rem;
  }
  .ser_apart_sec .ser_apart_item {
    margin: 3rem 0;
    padding-bottom: 3rem;
  }
  .ser_apart_sec .ser_apart_content {
    padding: 0.8rem 9rem 0 0;
  }
  .faqs_aside {
    max-width: 18rem;
  }
  .faqs_arrow {
    width: 5.2rem;
  }
  .faqs_arrow:before {
    height: 1.5rem;
    width: 0.2rem;
  }
  .faqs_arrow:after {
    width: 1.5rem;
    height: 0.2rem;
  }
  .faqs_form_top {
    margin: 2rem 0 5.2rem;
  }
  .faqs .faqs_item {
    margin: 0 0 2.5rem;
    padding: 0 0 2.5rem;
  }
  .contact_us_row {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  .contact_us_section .form_box {
    padding: 7rem 0 4rem;
    max-width: 64rem;
    width: 100%;
  }
  .contact_us_address {
    padding: 4rem 0;
    max-width: 100%;
    display: flex;
    gap: 3rem;
  }
  .contact_us_section .breadcrumbs li a {
    color: #2A2A2A;
  }
  .contact_us_section .breadcrumbs li + li .before {
    color: #000000;
  }
  .contact_us_address .content_box {
    margin: 0;
  }
  .contact_us_address .content_box td {
    padding-bottom: 2rem;
  }
  .contact_us_address:before {
    right: -2.5rem;
  }
  .map_sec_2 {
    flex-shrink: 1;
    flex-grow: 0;
    min-height: 35.5rem;
    width: 100%;
  }
  .map_sec_2 .img_wrap {
    width: 100vw;
    max-width: 100vw;
    margin: 0 -2.5rem;
  }
  .map_sec_2 .img_wrap img {
    width: 100vw;
    max-width: 100vw;
  }
  .contact_us_form {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .blog_wrapper {
    flex-direction: column;
    align-items: center;
  }
  .blog_main {
    padding: 0;
    max-width: 100%;
  }
  .bog_aside {
    max-width: 37rem;
  }
  .aside_form_block {
    display: none;
  }
  .aside_mobile_btn {
    display: block;
  }
  .aside_block {
    margin: 0 0 5rem;
  }
  .aside_categorises li a {
    font-size: 1.6rem;
    padding: 0.6rem 1.9rem;
  }
  .recent_articles li .name {
    font-size: 1.6rem;
  }
  .recent_articles li .date {
    font-size: 1.6rem;
  }
  .recent_articles li {
    position: relative;
    padding-left: 2rem;
    margin: 0 0 2rem;
  }
  .recent_articles li:before {
    top: 0.4rem;
    width: 0.6rem;
    height: 1.1rem;
  }
  .publish_date {
    margin: 0 0 1.5rem;
    font-size: 1.6rem;
  }
  .blog_content {
    margin: 0 0 1.5rem;
  }
  .types_sec1 {
    padding-top: 5rem;
  }
  .types_sec2 {
    padding-bottom: 4rem;
  }
  .types_row .name_of_types {
    padding: 1rem 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: #f48f1d;
    border-color: #f48f1d;
  }
}
@media only screen and (max-width: 840px) {
  .types_item_row .types_item {
    max-width: 100%;
    padding: 2rem;
  }
  .types_item_row {
    display: contents;
    padding: 0;
  }
  .types_row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 0 3rem;
  }
  .types_item_before {
    order: 2;
  }
  .types_row .name_of_types {
    order: 1;
    width: 100%;
  }
  .types_item_slider_row {
    display: contents;
  }
  .types_item_row:before, .types_item_row:after {
    content: none;
    display: none;
  }
  .types_item_row .vs_box {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    font-size: 2.2rem;
    line-height: 1.2;
    height: unset;
    order: 4;
    text-align: center;
    width: 100%;
    margin: 2rem 0 2rem;
  }
  .types_item_row .vs_box:before, .types_item_row .vs_box:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: calc(50% - 3.2rem);
    height: 0.1rem;
    background: linear-gradient(to right, rgba(217, 217, 217, 0) 0%, #d9d9d9 50%, rgba(217, 217, 217, 0) 100%);
  }
  .types_item_row .vs_box:before {
    left: 0;
  }
  .types_item_row .vs_box:after {
    right: 0;
  }
  .types_item_slider_box_before {
    order: 3;
    margin-bottom: 2rem;
  }
  .types_item_after {
    order: 5;
  }
  .types_item_slider_box_after {
    order: 6;
  }
  .types_item_slider_box {
    max-width: 100%;
  }
  .types_item_slider .slick-prev {
    left: calc(50% - 3rem);
  }
  .types_item_slider .slick-next {
    left: calc(50% + 3rem);
  }
  .content br {
    display: none;
  }
}
@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, .section {
    padding: 5rem 0;
  }
  .row.mobile .col_1, .row.mobile .col_2, .row.mobile .col_3, .row.mobile .col_4, .row.mobile .col_5, .row.mobile .col_6, .row.mobile .col_7, .row.mobile .col_8, .row.mobile .col_9, .row.mobile .col_10, .row.mobile .col_11, .row.mobile .col_12 {
    width: calc(100% - 3rem);
  }
  .row_f .col_sm_1 {
    width: calc(8.3333333333% - 3.01rem);
  }
  .row_f .col_sm_2 {
    width: calc(16.6666666667% - 3.01rem);
  }
  .row_f .col_sm_3 {
    width: calc(25% - 3.01rem);
  }
  .row_f .col_sm_4 {
    width: calc(33.3333333333% - 3.01rem);
  }
  .row_f .col_sm_5 {
    width: calc(41.6666666667% - 3.01rem);
  }
  .row_f .col_sm_6 {
    width: calc(50% - 3.01rem);
  }
  .row_f .col_sm_7 {
    width: calc(58.3333333333% - 3.01rem);
  }
  .row_f .col_sm_8 {
    width: calc(66.6666666667% - 3.01rem);
  }
  .row_f .col_sm_9 {
    width: calc(75.0000000019% - 3.01rem);
  }
  .row_f .col_sm_10 {
    width: calc(83.3333333333% - 3.01rem);
  }
  .row_f .col_sm_11 {
    width: calc(91.6666666667% - 3.01rem);
  }
  .row_f .col_sm_12 {
    width: calc(100% - 3.01rem);
  }
  h1, .h1,
  .content h1, .content .h1 {
    font-size: 3.6rem;
    margin: 3rem 0;
  }
  h2, .h2,
  .content h2, .content .h2,
  .title, .content .title {
    font-size: 2.8rem;
    margin: 3rem 0;
  }
  h3, .h3,
  .content h3, .content .h3 {
    font-size: 2rem;
  }
  h4, .h4,
  .content h4, .content .h4 {
    font-size: 1.8rem;
  }
  h5, .h5,
  .content h5, .content .h5 {
    font-size: 2.7rem;
  }
  h6, .h6,
  .content h6, .content .h6 {
    font-size: 1.6rem;
  }
  .content p {
    margin: 0 0 1.5rem;
  }
  .modal_video.dialog {
    width: 90vw;
  }
  footer .footer_row {
    gap: 3rem;
  }
  footer .footer_media {
    gap: 1.5rem;
  }
  .footer_bottom_imgs {
    max-width: 40rem;
  }
  footer .contacts_table {
    margin: 2rem 0;
  }
  footer .contacts_table td {
    padding: 0.5rem 2.5rem;
  }
  footer .hours_col td {
    padding: 0.5rem 1.55rem;
  }
  footer .footer_top_row {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  footer .footer_top_col2 {
    padding-left: 2rem;
  }
  footer .footer_top_col1 {
    text-align: center;
  }
  .pre_banner_form_box .modal_title {
    font-size: 2rem;
  }
  .pre_banner_form_box .form_wrap .form_item {
    max-width: 100%;
  }
  .material_kits_top_row {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4rem;
    flex-direction: column;
  }
  .sort_by {
    margin-left: auto;
  }
  .material_kits_top {
    padding: 1.5rem 0 3rem;
  }
  .products_price {
    font-size: 2.5rem;
  }
  .products_item {
    max-width: calc(50% - 0.75rem);
  }
  .products_row {
    margin: 0 0 3rem;
  }
  .cta_1 {
    padding: 11rem 0 9rem;
  }
  .cta_1 tr {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .content .button {
    margin: 0;
  }
  .cta_1:before,
  .content_block.shadow_left:before {
    width: 100%;
    height: 71%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.7;
  }
  .content_block.shadow_left {
    padding: 7.1rem 0;
    text-align: center;
  }
  .map_bg {
    position: relative;
    height: unset;
    width: 100%;
    flex-grow: 0;
    aspect-ratio: 390/316;
  }
  .map_bg h2, .map_bg .h2 {
    display: block;
    margin: 5rem 0;
    position: relative;
    z-index: 2;
  }
  .map_bg img {
    position: absolute;
    top: 0;
    right: -9rem;
    width: calc(100vw + 9rem);
    max-width: calc(100vw + 9rem);
    z-index: 1;
  }
  .map_sec .map_text h2, .map_sec .map_text .h2 {
    display: none;
  }
  .map_text {
    padding-top: 0;
    max-width: 100%;
  }
  .map_row {
    gap: 0;
    flex-direction: column-reverse;
  }
  .map_text .button {
    margin: 0 0 1.5rem;
  }
  .map_countries_row {
    gap: 2.4rem;
  }
  .map_text ul {
    gap: 0.5rem 1rem;
  }
  .goes_to_kit_name {
    padding-bottom: 1.6rem;
    margin: 0 0 3rem;
  }
  .products_content {
    margin: 0 0 1.5rem;
  }
  .main_top .main_content {
    padding: 6rem 0;
  }
  .main_top .banner::after {
    background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 80%, rgba(0, 0, 0, 0) 100%);
  }
  .main_top .banner {
    min-height: 51.3rem;
  }
  .our_products_row {
    margin: 3rem 0 0;
  }
  .our_products_sec {
    padding: 3rem 0 0;
  }
  .counters {
    padding: 3rem 0;
  }
  .link_arrow {
    font-size: 1.1rem;
    width: 4.2rem;
  }
  .ser_apart_button {
    width: 4.2rem;
  }
  .ser_apart_button:before {
    width: 1.3rem;
    height: 0.1rem;
  }
  .ser_apart_button:after {
    height: 1.3rem;
    width: 0.1rem;
  }
  .slick-arrow {
    width: 4.2rem;
    height: 4.2rem;
  }
  .slick-arrow .icon {
    width: 1.1rem;
    height: 0.7rem;
  }
  .counters .counter_item p.number {
    font-size: 3.2rem;
    margin: 0 0 1rem;
  }
  .product_overflow h3, .product_overflow .h3 {
    margin: 2rem 0 2rem;
    padding: 0 0 1.6rem;
  }
  .product_item2 {
    max-width: 100%;
    padding-top: 85%;
  }
  .why_choose_row {
    margin: 3rem 0 0;
  }
  .why_choose_name a {
    padding: 0 0 1.6rem;
  }
  .logos {
    padding: 3rem 0;
  }
  .logos_wrapper_text {
    margin-bottom: 3rem;
  }
  .padding_small {
    padding: 3rem 0;
  }
  .padding_top_small {
    padding-top: 3rem;
  }
  .padding_bottom_small {
    padding-bottom: 3rem;
  }
  .slide_name:before {
    bottom: -1.6rem;
  }
  .slide_name {
    font-size: 1.8rem;
  }
  .bottom_dots {
    margin: 2rem 0 0;
  }
  .reviews_slider {
    margin: 2.8rem -0.8rem 3rem;
  }
  .icon_quotes {
    width: 3rem;
    margin: 0 0 3rem;
  }
  .reviews_slider_content {
    margin: 0 0 2.4rem;
  }
  .reviews_slider .review_slide {
    padding: 2.5rem 3rem;
  }
  .testimonial_item {
    max-width: 100%;
    padding: 2.5rem 3rem;
  }
  .stars .icon {
    font-size: 2.5rem;
  }
  .google_box {
    width: 2.3rem;
  }
  .google_box .icon {
    font-size: 1.5rem;
  }
  .ser_apart_sec .ser_apart_question {
    gap: 3rem;
  }
  .ser_apart_sec .ser_apart_item {
    margin: 2rem 0;
    padding-bottom: 2rem;
  }
  .ser_apart_sec .ser_apart_content {
    padding: 0.8rem 5rem 0 0;
  }
  .faqs_arrow {
    width: 4.2rem;
  }
  .faqs_arrow:before {
    height: 1.3rem;
    width: 0.1rem;
  }
  .faqs_arrow:after {
    width: 1.3rem;
    height: 0.1rem;
  }
  .faqs_form_top {
    margin: 2rem 0 3rem;
  }
  .faqs_row {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .faqs .faqs_item {
    margin: 0 0 2rem;
    padding: 0 0 2rem;
  }
  .faqs .faqs_content .link_underline {
    margin-top: 0;
  }
  .faqs .faqs_question {
    gap: 3rem;
  }
  .faqs .faqs_content {
    padding: 0.5rem 5rem 0 0;
  }
  .contact_us_address .content_box table {
    margin: 2rem 0;
  }
  .contact_us_address .content_box td {
    padding-bottom: 1.5rem;
  }
  .aside_block {
    margin: 0 0 3rem;
  }
  .aside_categorises li {
    margin: 0 0 1.5rem;
  }
  .blog_item_inner {
    padding: 2rem;
  }
  .blog_row {
    gap: 2.5rem 1.5rem;
  }
  .blog_item {
    max-width: calc(50% - 0.75rem);
  }
  .types_sec1 {
    padding-top: 3rem;
  }
  .types_sec2 {
    padding-bottom: 3rem;
  }
}
@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: right"] {
    margin: 0 auto 2rem !important;
    text-align: center;
  }
  .content img[style*="float: 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;
  }
  .map_text ul {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
  .goes_to_kit_item {
    max-width: 100%;
    padding: 3rem 2rem;
  }
  .goes_to_kit_slider {
    margin: 3rem -1rem 1.5rem;
  }
  .goes_to_kit_slider.hidden_slider {
    max-height: 83.4rem;
    opacity: 0;
    overflow: hidden;
  }
  .goes_to_kit_slider .slick-slide {
    margin: 0 1rem;
  }
  .goes_to_kit_slider .slick-slide > div {
    margin: 0 0 3rem;
  }
  .goes_to_kit_slider .slick-slide > div:last-child {
    margin-bottom: 0;
  }
  .slick-dots li {
    width: 1.241rem;
    height: 1.241rem;
  }
  .counters .counter_item {
    max-width: 100%;
  }
  .counters .counter_item:nth-child(2n+2) .counter_line {
    content: "";
    display: block;
  }
  .counters .counter_item:last-child .counter_line {
    content: none;
    display: none;
  }
  .counter_line {
    top: unset;
    width: 100%;
    height: 0.1rem;
    background: linear-gradient(to right, rgba(217, 217, 217, 0) 0%, #d9d9d9 40%, #d9d9d9 60%, rgba(217, 217, 217, 0) 100%);
    right: unset;
    left: 0;
    bottom: -2rem;
  }
  .why_choose_item {
    max-width: 100%;
  }
  .why_choose_item:after {
    content: none;
    display: none;
  }
  .product_gallery_slider .overlay {
    padding: 4rem 7rem;
  }
  .product_gallery_row .slick-arrow {
    bottom: 2.8rem;
    transform: unset;
  }
  .product_gallery_row .slick-next {
    right: 2rem;
    left: unset;
  }
  .product_gallery_row .slick-prev {
    right: unset;
    left: 2rem;
  }
  .contact_us_form .row_f {
    gap: 2rem 1rem;
  }
  .contact_us_form .col_xs_12 {
    max-width: 100%;
    width: 100%;
  }
  .contact_us_address {
    flex-direction: column;
  }
  .blog_item {
    max-width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  .toast_notifications {width: 95%;}
  .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;}
  .toast_notifications .toast {width: 100%;font-size: 1rem;margin-left: 2rem;}
  footer .footer_row{grid-template-columns: 1fr;}
  footer .footer_media {
    max-width: 27.5rem;
    gap: 3rem;
  }
  .footer_bottom_imgs {
    max-width: 32.4rem;
  }
  footer ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 85%;
  }
  footer ul li {
    text-align: center;
  }
  footer .footer_title {
    text-align: center;
  }
  .footer_location p {
    text-align: center;
  }
  footer .footer_media, footer .contacts_table, footer table {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  footer address {
    margin: 0;
  }
  footer .footer_top_col2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .inner_banner {
    min-height: 25rem;
    padding: 14.2rem 0 7.1rem;
  }
  .inner_banner_big .inner_banner {
    min-height: 45rem;
    padding: 14.2rem 0 21.4rem;
  }
  .pre_banner_form {
    margin-top: -20.4rem;
  }
  .footer_media {
    margin-top: 3rem;
  }
  .footer_media.desc {
    display: none;
  }
  .footer_media.mobile {
    display: flex;
  }
  .products_item {
    max-width: 100%;
  }
  .hide_desktop_550 {
    display: none !important;
  }
  .show_mobile_550 {
    display: block !important;
  }
  .main_top .banner {
    min-height: 38rem;
  }
  .main_top .main_content .text {
    text-align: center;
  }
  .our_products_tem {
    max-width: 100%;
  }
  .testimonial_item,
  .reviews_slider .review_slide {
    padding: 2.5rem 2rem;
  }
  .reviews_slider_bottom {
    justify-content: center;
    flex-direction: column;
  }
}
@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;
  }
}
@media only screen and (max-width: 380px) {
  .navigation {
    right: -30rem;
    width: 30rem;
  }
  .pre_banner_form_box .form_wrap {
    gap: 2.5rem 2rem;
  }
  .type_product {
    margin: 0 0 1.5rem;
  }
  .bottom_type {
    margin: 1rem 0 0;
  }
}
@media (orientation: landscape) and (max-height: 450px) {
  .mobile_phone, .home_bar_space {
    display: none;
  }
  footer {
    padding-bottom: 0;
  }
}

