:root {
  --main-color: #1a1a1a;
  --main-color-rgb: 26, 26, 26;
  --sub-color: #f0da2d;
  --body-color: #686868;
  --white-color: #ffffff;
  --rgb-white-color: 255, 255, 255;
  --dark-grey: #222222;
  --yellow-gradient: linear-gradient(180deg, #f0da2d 0%, #ffcd2b 100%);
  --alpha-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  --yellow-color: #fad12c;
  --light-grey: #f2f2f2;
  --lighter-grey: #fcfcfc;
  --green-color-rgb: 19, 167, 0;
  --green-color: #13a700;
  --red-color: #a70000;

  --label-color: var(--body-color);

  --sm-radius: 5px;
  --main-radius: 10px;
  --lg-radius: 15px;
  --xl-radius: 90px;

  --xxs-pad: 4px;
  --xs-pad: 8px;
  --sm-pad: 12px;
  --mid-pad: 16px;
  --main-pad: 24px;
  --med-pad: 32px;
  --lg-pad: 48px;
  --xl-pad: 72px;
  --xxl-pad: 96px;

  --xxs-neg: -4px;
  --xs-neg: -8px;
  --sm-neg: -12px;
  --mid-neg: -16px;
  --main-neg: -24px;
  --lg-neg: -48px;

  --sm-font: 12px;
  --main-font: 14px;
  --button-font: 14px;
  --input-font: 14px;
  --md-font: 16px;
  --lg-font: 18px;
  --xl-font: 20px;

  --xxs-icon: 14px;
  --xs-icon: 16px;
  --sm-icon: 18px;
  --md-icon: 20px;
  --md-icon: 24px;
  --main-icon: 32px;
  --large-icon: 96px;

  --xs-height: 16px;
  --md-height: 32px;
  --lg-height: 48px;

  --h1-font: 72px;
  --h2-font: 32px;
  --h3-font: 24px;
  --h4-font: 16px;
  --h5-font: 14px;
}

/* MAIN STYLES *****************************/

html {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

body {
  padding: 0px;
  margin: 0px;
  background: var(--main-color);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--main-color);
}

/* TEXT & LINK STYLES *****************************/

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0px;
}
h1 {
  font-size: var(--h1-font);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--main-pad);
}
h2 {
  font-size: var(--h2-font);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--xs-pad);
}
h3 {
  font-size: var(--h3-font);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--mid-pad);
}
h4 {
  font-size: var(--h4-font);
  font-weight: 500;
  margin-bottom: var(--xs-pad);
  line-height: 1.2;
}
h5 {
  font-size: var(--h5-font);
  font-weight: 500;
  margin-bottom: var(--xs-pad);
  line-height: 1.2;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  color: var(--sub-color);
}
b, strong {
  font-weight: 500;
}
.sub-title {
  display: block;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: var(--xs-pad);
  margin: 0;
}
.italic {
  font-style: italic;
}
.bold-txt {
  font-weight: 700;
}
p {
  margin-bottom: 24px;
}
.bold-txt {
  font-weight: 700;
  color: var(--white-color);
}
.lead {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.6;
}
h3 + .lead {
  margin-top: 16px;
}
:focus {
  -moz-outline-style: none;
}
::selection {
  background-color: #333333;
  color: #fff;
}
::-moz-selection {
  background-color: #333333;
  color: #fff;
}
img {
  max-width: 100%;
}
input:focus,
button:focus {
  outline: none;
}
a,
a:visited {
  color: var(--main-color);
  border: none;
  outline: 0;
  text-decoration: none;
  -moz-outline-style: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  color: var(--sub-color);
  transition: color 0.4s ease-out;
}

a img {
  border: none;
  outline: 0;
  -moz-outline-style: none;
}

.page p a {
  font-weight: 700;
  text-decoration: underline;
}
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

input.button,
.button,
.button:visited,
.btn,
.btn:visited,
.l-btn {
  display: inline-flex;
  position: relative;
  cursor: pointer;
  font-size: var(--button-font);
  line-height: 24px;
  font-weight: 700;
  border-radius: var(--main-radius);
  border: none;
  outline: none;
  box-shadow: none;
  color: var(--main-color);
  border-radius: var(--main-radius);
  background: var(--white-color);
  text-align: center;
  text-decoration: none;
}
.button::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--yellow-gradient);
  border-radius: var(--main-radius);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.button:hover::after {
  opacity: 0;
}
a.button,
.button {
  color: var(--main-color);
  padding: 12px 32px 12px 32px;
}
.button span {
  z-index: 1;
}
.button:disabled {
  opacity: 0.48;
  cursor: default;
  pointer-events: none;
}
a.w-btn,
.w-btn,
a.w-btn:visited,
.w-btn:visited {
  color: var(--main-color);
  transition: none;
}
a.w-btn:hover,
.w-btn:hover {
  color: var(--main-color);
}
.w-btn::after,
a.l-btn::after,
.l-btn::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--main-radius);
  /* background: var(--white-color); */
  opacity: 0;
}
.w-btn:hover::after,
a.l-btn:hover::after,
.l-btn:hover::after {
  opacity: 1;
}
.w-btn span,
a.l-btn span,
.l-btn span {
  z-index: 1;
}
.l-btn:hover,
.l-btn:active,
.l-btn:focus {
  background: var(--white-color);
  color: var(--sub-color);
  border: 1px solid var(--white-color);
  box-shadow: none;
}
.d-btn::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--main-radius);
  background: var(--main-color);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.d-btn:hover::before {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.d-btn:hover {
  color: var(--white-color);
}
.btn-icon.l-btn {
  padding: 0px 16px 0px 32px;
  line-height: 46px;
}
.btn-icon.l-btn i {
  height: 46px;
}

.btn-icon.button {
  padding: 0px 0px;
  font-weight: 700;
  line-height: 48px;
  background: transparent;
}
.dark-txt.button {
  color: var(--main-color);
}
.btn-icon span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 48px;
  height: 48px;
  padding: 0px;
  margin-left: 16px;
  border-radius: 50%;
  background: var(--sub-color);
  transition: all 0.2s ease;
}
.btn-icon i {
  font-weight: 300;
  font-size: 20px;
  color: var(--white-color);
  transition: all 0.2s ease;
}
.btn-white.btn-icon span {
  background: var(--white-color);
}
.btn-white.btn-icon i {
  color: var(--main-color);
}
.btn-icon:hover span,
.btn-icon:active span,
.btn-icon:focus span {
  box-shadow: none;
  background: var(--sub-color);
  transition: all 0.4s ease;
}
.btn-icon.button:hover i {
  margin-left: 6px;
  transition: all 0.4s ease;
}
.button.txt-btn {
  line-height: 24px;
  font-weight: 700;
  padding: 0;
  background: transparent;
  color: var(--main-color);
  transition: all 0.2s ease;
}
.button.txt-btn::after {
  display: none;
}
.button.txt-btn span {
  font-weight: 600;
  font-size: 14px;
}
.button.txt-btn i {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 24px;
  height: 24px;
  margin: 0px 4px 0px 8px;
  font-weight: 300;
  /*	transition: all 0.2s ease;*/
  font-size: var(--button-font);
}
.button.txt-btn:hover,
.button.txt-btn:active,
.button.txt-btn:focus {
  color: var(--yellow-color);
  transition: all 0.4s ease;
}
.button.txt-btn.i-left i {
  margin: 0px 8px 0px 0px;
}
.txt-link,
.txt-link:visited {
  position: relative;
  font-weight: 400;
  color: var(--sub-color);
}
.txt-link:hover,
.txt-link:active,
.txt-link:focus {
  position: relative;
  text-decoration: underline;
  color: var(--sub-color);
}

.i-btn,
.i-btn:visited {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 32px;
  height: 32px;
  font-weight: 300;
  transition: all 0.2s ease;
  background: var(--white-color);
  font-size: 20px;
  cursor: pointer;
  color: var(--main-color);
  font-size: var(--xxs-icon);
  border-radius: var(--sm-radius);
}
.i-btn:hover {
  color: var(--main-color);
}

/* FORM STYLES *****************************/
textarea {
  resize: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.form-wrap {
  position: relative;
}

.form-title {
  position: relative;
  display: block;
  margin-bottom: 12px;
}
.form-title h1,
.form-title h2,
.form-title h3,
.form-title h4 {
  margin: 0;
}
.form-row-main {
  margin-left: -24px;
  margin-right: -24px;
}
.form-col-main {
  position: relative;
  display: block;
  width: 50%;
  float: left;
  padding: 0px 24px;
}
.form-wrapper .form-wrap {
  margin-bottom: 0px;
}
.form-cols {
  display: flex;
  margin-left: -12px;
  margin-right: -12px;
}
.form-col {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: 0px 12px;
}
.form-cols .form-col {
  display: flex;
  float: none;
}
.form-group {
  position: relative;
  display: block;
  margin-bottom: var(--mid-pad);
}
.form-group-row {
  display: flex;
  flex-direction: row;
  margin: 0 var(--xs-neg);
  margin-bottom: var(--mid-pad);
}
.form-group .dropdown .dropdown-toggle {
  width: 100%;
  font-size: var(--input-font);
  font-weight: 300;
  padding: 12px 16px 12px 16px;
  line-height: 24px;
  height: 48px;
  color: var(--label-color);
  border: none;
  outline: none;
  box-shadow: none;
}
.form-group .dropdown .dropdown-toggle.btn-secondary:active,
.form-group .dropdown .dropdown-toggle.btn-secondary:focus,
.form-group .dropdown .dropdown-toggle:hover {
  background: var(--white-color);
  border: none;
  outline: none;
}
.form-group .dropdown .dropdown-toggle[aria-expanded="true"] {
  box-shadow: 0 6px 6px rgba(0,0,0,.16);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.dropdown-toggle::after {
  border: none;
  margin: 0;
  vertical-align: auto;
  font-family: "Font Awesome 6 Pro";
  content: "\f078";
  background-image: none;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--xs-icon);
  color: var(--body-color);
  font-weight: 300;
}
.dropdown-menu {
  width: 100%;
  border: none;
  border-radius: inherit;
  padding: 0;
  border-bottom-left-radius: var(--main-radius);
  border-bottom-right-radius: var(--main-radius);
  box-shadow: 0 6px 6px rgba(0,0,0,.16);
}
.dropdown-menu.show {
  transform: translate(0px, 48px) !important;
}
.dropdown-item {
  line-height: 1;
  padding: var(--mid-pad);
  font-size: var(--main-font);
  color: var(--body-color);
}
.dropdown-item:focus, .dropdown-item:hover {
  background-color: var(--light-grey);
}
.form-group-row .form-floating {
  width: 50%;
  margin: 0 var(--xs-pad);
}
.form-group:not(.form-floating) .control-label {
  position: relative;
  display: block;
  font-weight: 400;
  margin-bottom: 8px;
}
.form-col h3 {
  padding: 0px 20px;
}
.form-control {
  height: 48px;
  padding: 12px 16px 12px 16px;
  line-height: 24px;
  font-size: var(--input-font);
  border: 1px solid var(--white-color);
  border: 0px;
  border-radius: var(--main-radius);
  color: var(--main-color);
  background: var(--white-color);
  box-shadow: none;
  transition: background 0.2s ease;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  font-size: var(--input-font);
  font-weight: 400;
  padding: 12px 16px 12px 16px;
  line-height: 24px;
  height: 48px;
}
.form-control:focus {
  color: var(--main-color);
  border: 0px;
  background: var(--white-color);
  box-shadow: none;
  transition: background 0.4s ease;
}
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown),
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 21px;
  padding-bottom: 7px;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: 300;
  color: var(--label-color);
  font-size: var(--input-font);
  line-height: 24px;
  line-height: 21px;
  padding: 12px 16px;
  height: 48px;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition:
    opacity 0.1s ease-in-out,
    transform 0.1s ease-in-out;
}
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 1;
  transform: scale(0.8) translateY(-6px) translateX(4px);
}
textarea.form-control {
  min-height: 120px;
  max-height: 200px;
}
.form-group select {
  opacity: 0;
}
.form-floating .selectric {
  height: 48px;
  padding: 12px 16px 12px 16px;
  line-height: 24px;
  font-size: var(--input-font);
  border: 0px;
  border-radius: var(--main-radius);
  color: var(--main-color);
  background: var(--white-color);
}
.form-floating .selectric .label {
  height: 20px;
  padding: 0px;
  line-height: 20px;
  font-size: var(--input-font);
  font-weight: 400;
  margin: 0;
}
.form-floating .selectric .button {
  border: none;
}
.form-floating .selectric-items,
.form-select.form-floating .selectric-items {
  background: var(--bg-input);
}
.form-floating .selectric-wrapper {
  border-radius: 0;
}
.form-floating .selectric-open.selectric-above .selectric,
.form-floating .selectric-open.selectric-below .selectric {
  border-radius: var(--main-radius);
  background: var(--white-color);
  border: 0px;
  box-shadow: none;
}
.form-floating .selectric-open.selectric-above .selectric {
  border-radius: 0px 0px var(--main-radius) var(--main-radius);
}
.form-floating .selectric-open.selectric-below .selectric {
  border-radius: var(--main-radius) var(--main-radius) 0px 0px;
}

.form-floating .selectric-items {
  border-radius: 0;
  background: var(--white-color);
  border: 0px;
}
.form-floating .selectric-open.selectric-above .selectric-items {
  border-radius: var(--main-radius) var(--main-radius) 0px 0px;
}
.form-floating .selectric-open.selectric-below .selectric-items {
  border-radius: 0px 0px var(--main-radius) var(--main-radius);
}
.form-floating .selectric-items ul,
.form-floating .selectric-items li {
  font-size: var(--input-font);
}
.error-msg {
  color: var(--red-color) !important;
  font-size: 12px !important;
  padding-left: var(--mid-pad);
  margin-bottom: 0 !important;
  display: none;
}
.selectric-items {
  background: var(--white-input);
}
.selectric-items li {
  color: var(--main-color);
  padding: 14px 16px;
  padding: 14px 24px 14px 16px;
}
.selectric-items li.selected,
.selectric-items li.highlighted {
  color: var(--main-color);
  background: var(--white-color);
  font-weight: 400;
}

.selectric-items li:hover {
  color: var(--sub-color);
  background: transparent;
  background: var(--white-color);
  font-weight: 400;
}
.selectric-scroll {
  scrollbar-color: rgba(0, 0, 0, 0.24) rgba(0, 0, 0, 0.08);
  scrollbar-width: thin;
}
.selectric-scroll::-webkit-scrollbar {
  width: 8px;
  border-radius: 4px;
  cursor: pointer;
}
.selectric-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
  cursor: pointer;
  border-radius: 4px;
}
.selectric-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  cursor: pointer;
  transition: background 300ms ease;
}
.selectric-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.32);
  cursor: pointer;
}
.form-control::-webkit-input-placeholder {
  color: var(--main-color);
}
.form-control::-moz-placeholder {
  color: var(--main-color);
}
.form-control:-ms-input-placeholder {
  color: var(--main-color);
}
.form-control::placeholder {
  color: var(--main-color);
}

input:-internal-autofill-selected,
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-internal-autofill-selected {
  -webkit-appearance: none !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--white-color) inset !important;
  background-color: var(--white-color) !important;
  background-image: none !important;
  color: var(--main-color) !important;
}

.form-group .error-text,
.select-box .error-text,
.checkbox .error-text,
.form-captcha .error-text,
.form-option-group .error-text,
.form-options .error-text {
  display: block;
  font-weight: 400;
  min-height: 20px;
  line-height: 1.2;
  padding-top: 4px;
  color: var(--red-color) !important;
  font-size: 12px !important;
}
.form-floating .error-text {
  padding-left: 16px;
}

.grecaptcha-badge {
  visibility: hidden;
}
.form-btns {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  margin-bottom: 0;
}

/* WRAPPER STYLES *****************************/

#outer-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.white-page {
  background: var(--white-color);
  color: var(--main-color);
}
#bg-wrapper {
  position: fixed;
  content: "";
  display: none;
  opacity: 0;
  width: 100%;
  height: 150%;
  z-index: 10;
  background: var(--main-color);
  background: rgba(0, 0, 0, 0.8);
}
.menu-open #bg-wrapper {
  display: block;
  opacity: 1;
  animation: opac-in-animate 0.4s ease-out forwards;
}
.menu-ani #bg-wrapper {
  display: block;
  opacity: 1;
  animation: opac-out-animate 0.3s ease-in forwards;
}
#main-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
#content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  z-index: 2;
  background: var(--white-color);
}
.content-banner-wrap {
  position: relative;
  display: block;
  padding: 192px 0px;
}
.content-banner-wrap-xs {
  position: relative;
  display: block;
  padding: 96px 0px;
}
.content-banner-main {
  background: var(--main-color);
}
.content-banner-grey {
  background: var(--dark-grey);
}
.content-banner-light {
  background: var(--light-grey);
}
.content-banner-half-grey {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 25%;
  background: var(--dark-grey);
}
.content-banner-half-main {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: var(--main-color);
}
/* HEADER *****************************/
#navbar {
  position: fixed;
  display: flex;
  flex-direction: row;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 0px 24px;
  background: transparent;
  z-index: 9;
}
#navbar.sticky {
  transform: translateY(-100%);
  animation: top-in-animate 0.6s ease-out forwards;
}
.drawer-open #navbar,
.faq-filter-open #navbar {
  pointer-events: none;
}
#navbar:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -1px;
  z-index: -1;
  opacity: 0;
  background: var(--light-grey);
}
#navbar.sticky:before {
  opacity: 1;
}
#navbar:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: var(--white-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}
#navbar.sticky:after {
  opacity: 1;
}
.navbar-main {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.navbar-header {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  width: 25%;
  z-index: 2;
}
.navbar-header .i-btn {
  display: none;
}
.logo-main {
  position: relative;
  display: flex;
  align-self: flex-start;
  margin: 20px 24px;
  padding: 0px;
  opacity: 1;
  z-index: 2;
  transition: all 0.2s ease;
}
#navbar.sticky .logo-main:not(#navbar.sticky .logo-main.logo-main-dark) {
  display: none;
}
.logo-main-dark {
  display: none;
}
#navbar.sticky .logo-main-dark {
  display: flex;
}
.logo-main:hover {
  opacity: 0.64;
  transition: all 0.4s ease;
}
.logo-main img {
  height: 20px;
  width: auto;
  vertical-align: top;
}
.logo-main span {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
}
.navbar-button {
  display: none;
}
.nav-toggle {
  position: relative;
  float: right;
  cursor: pointer;
  display: none;
  width: 24px;
  height: 24px;
  padding: 0px;
  margin-right: var(--xs-pad);
  background: none;
  border: none;
  overflow: hidden;
  cursor: pointer;
}
.nav-icon span,
.menu-ani .nav-icon span {
  display: block;
  position: absolute;
  top: 11px;
  left: 3px;
  right: 3px;
  height: 1px;
  background: var(--white-color);
  transition: background 0s 0.2s;
}
.nav-icon span::before,
.nav-icon span::after,
.menu-ani .nav-icon span::before,
.menu-ani .nav-icon span::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  transition-duration: 0.2s, 0.2s;
  transition-delay: 0.2s, 0s;
}
.nav-icon span::before,
.menu-ani .nav-icon span::before {
  top: -5px;
  transition-property: top, transform, background;
}
.nav-icon span::after,
.menu-ani .nav-icon span::after {
  bottom: -5px;
  transition-property: bottom, transform, background;
}
.menu-open .nav-icon span {
  background: none;
}
.menu-open .nav-icon span::before {
  top: 0;
  width: calc(100% - 3px);
  transform: rotate(45deg);
  background: var(--main-color);
}
.menu-open .nav-icon span::after {
  bottom: 0;
  width: calc(100% - 3px);
  transform: rotate(-45deg);
  background: var(--main-color);
}
.menu-open .nav-icon span::before,
.menu-open .nav-icon span::after {
  transition-delay: 0s, 0.2s;
}

/* NAV MAIN *****************************/
.nav-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 75%;
  margin-left: auto;
}
#nav-main {
  position: relative;
  display: flex;
}
#nav-main ul {
  position: relative;
  display: flex;
  margin: 8px 16px;
  padding: 0px;
  list-style: none;
  text-align: left;
}
#nav-main .nav-sub {
  display: none;
}

#nav-main ul li {
  position: relative;
  display: flex;
  padding: 12px 0px;
  margin: 0px 24px;
  text-align: center;
}

#nav-main ul li a {
  position: relative;
  display: flex;
  line-height: 20px;
  padding: 10px 0px;
  font-weight: 400;
  font-size: var(--main-font);
  color: var(--white-color);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
#nav-main ul li a:hover {
  color: var(--yellow-color);
  transition: all 0.4s ease-out;
}
#navbar.sticky ul li a:not(#navbar ul li a:hover) {
  color: var(--main-color);
}
.nav-mobile {
  display: none;
}
.mobile-only {
  display: none;
}
.tablet-only {
  display: none;
}
.nav-socials {
  display: none;
}
.desktop-only {
  display: flex;
}
.nav-right {
  position: relative;
  display: flex;
  padding: 16px 24px 16px 0px;
  justify-content: flex-end;
}

/* HOME STYLES *****************************/
#banner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}
#banner-main {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100dvh;
}
.main-banner-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  background-size: cover;
}
.banner-video-overlay {
  position: absolute;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0) 0%, #262626 100%);
  mix-blend-mode: hard-light;
}
.banner-main-img {
  position: absolute;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: var(--main-color);
  overflow: hidden;
}
.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
  opacity: 1;
  transition: all 0.2s ease;
  z-index: 1;
}
.banner-text {
  padding: 80px;
}
.banner-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  color: var(--white-color);
  z-index: 2;
}
.subpage .banner-text {
  padding: 0;
  padding-bottom: 80px;
}
.banner-header h1 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--xs-pad);
}
.subpage .banner-header h1 {
  margin-bottom: 0;
}
.banner-header h1 span {
  /* color: rgba(255, 255, 255, 0.48); */
}
.banner-text-main p {
  margin-bottom: 0;
  font-weight: 300;
  width: 40%;
  font-size: var(--lg-font);
}
.main-head {
  position: relative;
  margin-left: var(--med-pad);
  margin-bottom: calc(var(--lg-pad) + var(--mid-pad));
}
.main-head p {
  font-weight: 300;
  margin-bottom: 0;
  color: var(--body-color);
  font-size: var(--main-font);
}
.content-banner-main .main-head p,
.content-banner-grey .main-head p {
  color: var(--white-color);
}
.main-head p.sm-text {
  width: 35%;
}
.main-head p.md-text {
  width: 60%;
}
.main-head p.lg-text {
  width: 80%;
}
.main-head-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.main-head-left {
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  margin-left: 0;
}
.main-head-sm {
  width: 40%;
}
.main-head-xs {
  width: 30%;
}
.main-head-btn {
  position: relative;
  margin-top: var(--lg-pad);
}
.main-head .button {
  margin-top: var(--lg-pad);
}
.main-head.main-head-btn-float-right .button {
  position: absolute;
  right: 0;
  bottom: 0;
}
.blocks-container {
  display: flex;
  flex-direction: column;
  margin: var(--sm-neg);
}
.blocks-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.block-item {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--main-radius);
  background: var(--light-grey);
  padding: var(--med-pad);
  margin: var(--sm-pad);
  transition: all 0.2s ease-in;
  overflow: hidden;
}
.block-item:not(.contact #home-content-1 .block-item):not(#drawer .block-item):hover {
  background: var(--main-color);
  transition: all 0.3s ease-out;
}
.block-item:not(.contact #home-content-1 .block-item):not(#drawer .block-item)::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: radial-gradient(32% 48% at 12% 20%, rgba(244, 219, 4, 0.16) 0%, rgba(244, 219, 4, 0) 100%);
  transition: all 0.2s ease-in;
  pointer-events: none;
}
.block-item:not(.contact #home-content-1 .block-item):hover::after {
  opacity: 1;
  transition: all 0.3s ease-out;
}
.subpage #home-content-1 .block-item {
  width: 33.3333%;
}
.blocks-wrap.blocks-2 .block-item {
  width: 50%;
}
.block-top {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: var(--mid-pad);
}
.block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--lg-height);
  height: var(--lg-height);
  border-radius: var(--sm-radius);
  background: rgba(0, 0, 0, 0.04);
  color: var(--body-color);
  font-size: var(--sm-icon);
  font-weight: 300;
  margin-right: var(--mid-pad);
  transition: all 0.2s ease-in;
}
.block-item:not(.contact #home-content-1 .block-item):not(#drawer .block-item):hover .block-icon {
  color: var(--yellow-color);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease-out;
}
.block-top span {
  font-weight: 500;
  font-size: var(--md-font);
  color: var(--main-color);
  transition: all 0.2s ease-in;
}
.block-item:not(.contact #home-content-1 .block-item):not(#drawer .block-item):hover .block-top span {
  color: var(--white-color);
  transition: all 0.3s ease-out;
}
.block-content {
  font-size: var(--main-font);
  font-weight: 300;
  color: var(--body-color);
  margin-bottom: var(--main-pad);
  transition: all 0.2s ease-in;
}
.block-item:hover .block-content {
  color: var(--white-color);
  transition: all 0.3s ease-out;
}
.block-btm {
  display: flex;
  margin-top: auto;
}
.block-item:hover .button.txt-btn {
  color: var(--white-color);
  transition: all 0.3s ease-out;
}
.block-item:hover .button.txt-btn:hover {
  color: var(--yellow-color);
  transition: all 0.3s ease-out;
}
.content-banner-wrap.txt-info-container {
  padding: 0;
  background: var(--yellow-gradient);
}
.txt-info-blocks {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 var(--sm-neg);
}
.txt-info-blocks .swiper {
  margin: 0;
  width: 100%;
}
.txt-info-blocks .swiper-slide {
  width: 25%;
}
.txt-info-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 var(--sm-pad);
  color: var(--main-color);
  padding: 20px 0px;
}
.txt-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: var(--xs-icon);
  margin-right: var(--xs-pad);
}
.txt-info-block span {
  line-height: 1;
  font-size: var(--md-font);
  font-weight: 500;
}
#home-content-3 {
  color: var(--white-color);
}
.big-block-container {
  display: flex;
  flex-direction: column;
  margin: var(--main-neg);
}
.big-block-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--main-radius);
  background: var(--alpha-gradient);
  min-height: 332px;
  width: 100%;
  padding: var(--lg-pad);
  margin: var(--main-pad);
  overflow: hidden;
}
.big-block-item:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: var(--main-radius);
  pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 50%) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.blocks-wrap.blocks-2 .big-block-item:first-child {
  margin-right: var(--sm-pad);
}
.blocks-wrap.blocks-2 .big-block-item:last-child {
  margin-left: var(--sm-pad);
}
.big-block-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.big-block-bg.img-1 {
  background-image: url(../images/downtown-tattoo-home.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.big-block-bg.blend-mode {
  mix-blend-mode: luminosity;
  opacity: 0.48;
}
.big-block-bg img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center center;
}
.big-block-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.64) 100%);
}
.big-block-top {
  margin-bottom: var(--lg-pad);
  color: #fff;
  font-size: var(--sm-font);
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
  z-index: 1;
}
.blocks-wrap.blocks-1 .big-block-top {
  margin-bottom: auto;
}
.big-block-item h3 {
  margin-bottom: var(--mid-pad);
  z-index: 1;
}
.blocks-wrap.blocks-1 .big-block-item h3 {
  width: 55%;
  margin-bottom: 0;
}
.blocks-wrap .big-block-item p {
  font-size: var(--main-font);
  font-weight: 300;
  margin-bottom: var(--lg-pad);
  z-index: 1;
}
.big-block-btm {
  margin-top: auto;
}
.big-block-btm .button {
  color: var(--yellow-color);
}
.big-block-btm .button:hover {
  color: var(--white-color);
}
#home-content-4:not(.subpage #home-content-4) {
  padding: 0;
}
.half-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--main-radius);
  background: var(--alpha-gradient);
  max-width: 1280px;
  max-height: 640px;
  aspect-ratio: 1280 / 640;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 0px 20px 20px 0px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, #1a1a1a 100%);
  z-index: 1;
}
.layout-1 .half-banner {
  background: url(../images/layout-1/floating-img-2.jpg) lightgray 50% 32% no-repeat;
  background-size: 100%;
}
.layout-2 .half-banner {
  background: url(../images/layout-2/floating-img-2.jpg) lightgray 50% 32% no-repeat;
  background-size: 100%;
}
.layout-3 .half-banner {
  background: url(../images/layout-3/floating-img-2.jpg) lightgray 50% 32% no-repeat;
  background-size: 124%;
  background-position: 16% 64%;
}
.layout-4 .half-banner {
  background: url(../images/layout-4/floating-img-2.jpg) lightgray 50% 32% no-repeat;
  background-size: 124%;
  background-position: 16% 64%;
}
.layout-5 .half-banner {
  background: url(../images/layout-5/floating-img-2.jpg) lightgray 50% 32% no-repeat;
  background-size: 124%;
  background-position: 16% 64%;
}
.half-banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px 20px 20px 0px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, #1a1a1a 100%);
  transition: all 0.2s ease-in;
  pointer-events: none;
}
.yellow-line {
  display: flex;
  width: 96px;
  background: var(--yellow-gradient);
  height: 4px;
  margin-right: var(--main-pad);
}
.half-banner-txt {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
  color: var(--white-color);
  text-align: right;
  margin-top: -144px;
}
.half-banner-txt h1 {
  font-weight: 700;
  font-size: var(--h1-font);
  margin-bottom: 0;
}
#home-content-5 {
  color: var(--white-color);
}
#home-content-5 .main-head-sm {
  padding-top: var(--lg-pad);
}

.clients-swiper {
  position: relative;
  display: flex;
  flex-direction: row;
}
.clients-swiper .swiper {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.clients-swiper .swiper.swiper-initialized {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.clients-swiper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, #222 0%, rgba(34, 34, 34, 0) 100%);
  z-index: 2;
  pointer-events: none;
}
.clients-swiper::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, rgba(34, 34, 34, 0) 0%, #222 100%);
  z-index: 1;
  pointer-events: none;
}
.client-block {
  padding: var(--main-pad);
  border-radius: var(--main-radius);
  background: var(--alpha-gradient);
  opacity: 0.24;
  transition: opacity 0.2s ease-in;
}
.swiper-slide.swiper-slide-active .client-block {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.client-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: var(--mid-pad);
}
.client-initials {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--md-font);
  color: var(--white-color);
  background-color: rgba(var(--main-color-rgb), 0.32);
  margin-right: var(--mid-pad);
  border-radius: var(--sm-radius);
  font-weight: 700;
}
.client-body {
  font-size: var(--main-font);
  color: var(--white-color);
  font-weight: 300;
  margin-bottom: var(--main-pad);
}
.client-btm {
  display: flex;
  flex-direction: row;
}
.client-btm div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.client-btm i {
  color: var(--yellow-color);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #424242;
  border-radius: 50%;
  font-size: var(--md-icon);
  color: var(--white-color);
  z-index: 10;
}
.clients-btm {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
}
#home-content-6 {
  color: var(--white-color);
  padding-top: 0;
}
.swiper-overflow-container-sm {
  max-width: none;
  padding-left: calc((100vw - 1376px) / 3);
  padding-right: 0;
}
.swiper-overflow-container {
  max-width: none;
  padding-left: calc((100vw - 1456px) / 2);
  padding-right: 0;
}
.staff-swiper {
  position: relative;
}
.staff-swiper .swiper {
  padding-right: var(--main-pad);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.staff-swiper .swiper.swiper-initialized {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.staff-swiper::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, rgba(34, 34, 34, 0) 0%, #222 100%);
  z-index: 9;
  pointer-events: none;
}
.staff-swiper::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 10%;
  height: 100%;
  background: linear-gradient(-90deg, rgba(34, 34, 34, 0) 0%, #222 100%);
  opacity: 0;
  z-index: 9;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.staff-swiper.has-slided::before {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.staff-swiper .swiper-button-next {
  right: 10.5%;
  background: var(--white-color);
  color: var(--main-color);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.24);
}
.staff-swiper .swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.staff-swiper .swiper-button-next.swiper-button-disabled i {
  opacity: 0.32;
}
.staff-block {
  border-radius: var(--main-radius);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.staff-block::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, rgba(26, 26, 26, 0) 0%, #1a1a1a 100%);
  border-radius: 8px;
}
.staff-block::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  border-radius: 8px;
  background: linear-gradient(0deg, #1a1a1a 0%, rgba(26, 26, 26, 0) 100%);
}
.staff-top {
  position: absolute;
  top: 0;
  padding: var(--med-pad);
  text-transform: uppercase;
  font-size: var(--sm-font);
  letter-spacing: 10px;
  color: var(--white-color);
  overflow: hidden;
  z-index: 1;
  font-weight: 300;
}
.staff-btm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: var(--med-pad);
  z-index: 1;
}
.staff-btm-left {
  margin-right: auto;
}
.staff-btm-left span {
  font-size: var(--md-font);
  color: var(--white-color);
  font-weight: 500;
}
.staff-btm-right {
  display: flex;
  flex-direction: row;
} 
.staff-btm-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: var(--xs-icon);
  cursor: pointer;
  color: var(--white-color);
  transition: all 0.2s ease-in;
  margin-right: var(--mid-pad);
}
.staff-btm-right a:last-child {
  margin-right: 0;
}
.staff-btm-right a:hover {
  color: var(--yellow-color);
  transition: all 0.3s ease-out;
}
#home-content-7 .container {
  display: flex;
  flex-direction: row;
}
.content-block {
  display: flex;
  flex-direction: row;
}
.content-block-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  margin-right: var(--xxl-pad);
}
.content-block-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55%;
}
.content-block-right img {
}
.content-block-left h2 {
  line-height: 40px;
  margin-bottom: var(--mid-pad);
  color: var(--main-color);
}
.content-block-left p {
  color: var(--body-color);
  font-size: var(--main-font);
  margin-bottom: var(--med-pad);
  font-weight: 300;
}
.content-block-left ul {
  list-style: none;
  padding: 0;
}
.content-block-left li {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: var(--mid-pad);
}
.content-block-left div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: var(--xs-icon);
  color: var(--green-color);
  margin-right: var(--xs-pad);
}
.content-block-left span {
  color: var(--green-color);
  font-size: var(--main-font);
  font-weight: 300;
}
#faq .main-head {
  margin-left: var(--main-pad);
  margin-bottom: 0;
}
.faq-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: calc(var(--lg-pad) + var(--mid-pad));
}
.faq-navigation {
  display: flex;
  flex-direction: row;
  margin: 0 var(--sm-neg);
  margin-left: auto;
}
.faq-navigation a {
  position: relative;
  margin: 0 var(--sm-pad);
  min-width: 80px;
  color: var(--body-color);
  font-size: var(--main-font);
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.faq-navigation > a:hover {
  color: var(--yellow-color);
  font-weight: 500;
  transition: all 0.4s ease;
}
.faq-navigation > a:last-child {
  margin-right: 0;
}
.faq-navigation > a.active {
  color: var(--yellow-color);
  font-weight: 500;
}
.faq-navigation > a.active::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--yellow-color);
}
.faq-accordions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: start;
  margin-left: var(--sm-neg);
  margin-right: var(--sm-neg);
}
.accordion-item {
  border: none;
  background: var(--light-grey);
  width: calc(50% - var(--main-pad));
  margin: 0 var(--sm-pad);
  margin-bottom: var(--main-pad);
  border-radius: var(--lg-radius);
}
.accordion-button:not(.collapsed),
.accordion-button {
  padding: var(--mid-pad) var(--main-pad);
  padding-right: 53px;
  background: var(--light-grey);
  line-height: 24px;
  font-weight: 300;
  box-shadow: none;
}
.accordion-button {
  border-radius: var(--lg-radius);
}
.accordion-button:focus {
  border: none;
  box-shadow: none;
}
.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:first-of-type,
.accordion-item:first-of-type .accordion-button {
  border-radius: var(--lg-radius);
}
.accordion-button:not(.collapsed) {
  color: var(--main-color);
  font-weight: 500;
  font-size: var(--md-font);
}
.accordion-button:not(.collapsed)::after,
.accordion-button::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f078";
  background-image: none;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--xs-icon);
  color: var(--body-color);
  font-weight: 300;
}
.accordion-body {
  padding: var(--main-pad);
  padding-top: 0;
  color: var(--body-color);
  font-weight: 300;
  font-size: var(--main-font);
}
.accordion-body p:last-child {
  margin-bottom: 0;
}
.accordion-body ul {
  list-style-type: auto;
  margin-top: var(--mid-pad);
  padding: 0;
  padding-left: var(--mid-pad);
}

#footer {
  background: var(--main-color);
  color: var(--lighter-grey);
}
.footer-content {
  position: relative;
  display: flex;
  font-size: var(--sm-font);
  padding: var(--xxl-pad) 0 var(--xxl-pad) 0;
  margin-left: var(--sm-neg);
  margin-right: var(--sm-neg);
  color: rgba(var(--color-white-rgb), 0.64);
}
.footer-start-content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 12px;
  width: 25%;
}
.footer-logo {
  position: relative;
  padding: 0;
  margin-bottom: var(--mid-pad);
}
.footer-logo img {
  height: 20px;
  width: auto;
}
.footer-start-content span {
  font-size: var(--main-font);
  font-weight: 300;
  line-height: 1.4;
}
.footer-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 12px;
  width: 25%;
}
.footer-menu .footer-menu-collapse {
  margin-bottom: auto;
  margin-top: var(--main-pad);
}
.footer-menu .footer-menu-collapse:first-child {
  margin-top: 0;
}
.footer-menu .footer-menu-collapse:last-child {
  margin-bottom: 0;
}
.footer-menu-img {
  margin-top: 56px;
}
.footer-menu-title {
  color: var(--white-color);
}
.footer-menu-title h2 {
  font-size: var(--md-font);
  font-weight: 500;
  margin-bottom: var(--xxs-pad);
  line-height: var(--main-pad);
}
.footer-menu-list {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-menu-list li {
  margin: 0;
  padding: var(--xxs-pad) 0;
  line-height: var(--main-pad);
}
.footer-menu-list li:last-child {
  padding-bottom: var(--mid-pad);
}
.footer-menu-list a {
  color: var(--light-grey);
  font-size: var(--main-font);
  font-weight: 300;
  transition: color 0.2s ease,
  font-weight 0.2s ease;
}
.footer-menu-list a.no-hover {
  pointer-events: none;
}
.footer-menu-list a:hover {
  color: var(--white-color);
  font-weight: 500;
}
.footer-menu-list a:not([href]):not([class]):hover {
  font-weight: 300;
}
.footer-menu-list a img {
  height: 32px;
  width: auto;
}
#copyright {
  background: #2b2b2b;
  padding: var(--mid-pad) 0px;
}
#copyright > div {
  color: var(--white-color);
  font-weight: 300;
  font-size: var(--main-font);
}
#copyright .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#copyright .socials {
  display: flex;
  flex-direction: row;
  margin: 0 var(--xs-neg);
  margin-left: auto;
}
#copyright .socials > a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  width: 48px;
  height: 48px;
  transition: all 0.2s ease;
  margin: 0 var(--xs-pad);
  font-size: var(--sm-icon);
  cursor: pointer;
}
#copyright .socials > a:hover {
  color: var(--yellow-color);
  transition: all 0.4s ease;
}

/* LAYOUT 1 STYLES *****************************/
.subpage #banner-main {
  aspect-ratio: 1920 / 560;
  width: 100%;
  height: max-content;
}
.subpage .main-banner-img {
  width: 100%;
  height: 100%;
  opacity: 0.48;
}
.layout-1 .main-banner-img {
  background: url(../images/layout-1/main-banner.jpg) var(--main-color) 50% 32% no-repeat;
  background-size: 100%;
  background-position: 100% 32%;
}
.layout-2 .main-banner-img {
  background: url(../images/layout-2/main-banner.jpg) var(--main-color) 50% 32% no-repeat;
  background-size: 100%;
  background-position: 100% 32%;
}
.layout-3 .main-banner-img {
  background: url(../images/layout-3/main-banner.jpg) var(--main-color) 50% 32% no-repeat;
  background-size: 100%;
  background-position: 100% 48%;
}
.layout-4 .main-banner-img {
  background: url(../images/layout-4/main-banner.jpg) var(--main-color) 50% 32% no-repeat;
  background-size: 100%;
  background-position: 100% 100%;
}
.layout-5 .main-banner-img {
  background: url(../images/layout-5/main-banner.jpg) var(--main-color) 50% 32% no-repeat;
  background-size: 100%;
  background-position: 100% 48%;
}
.contact .main-banner-img {
  background: url(../images/contact/main-banner.jpg) var(--main-color) 50% 32% no-repeat;
  background-size: 100%;
  background-position: 100% 48%;
}
.banner-img-overlay {
  position: absolute;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, #1a1a1a 100%);
  mix-blend-mode: hard-light;
}
.subpage .banner-text-main p {
  width: 100%;
}
.subpage .txt-info-container {
  background: var(--light-grey);
}
.layout-1 #home-content-2 {
  padding-top: 0;
}
.layout-1 #home-content-2 .container-sm {
  padding-bottom: var(--lg-pad);
}
.subpage #home-content-2 .main-head {
  margin-bottom: 0;
  padding-bottom: var(--lg-pad);
}
.subpage #home-content-3 {
  position: relative;
}
.subpage #home-content-3::after {
  position: absolute;
  top: 0%;
  left: 0%;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/layout-1/bg.png) var(--main-color) 50% 50% no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}
.subpage #home-content-3 .main-head {
  z-index: 1;
}
.subpage #home-content-3 .main-head h2 {
  margin-bottom: var(--mid-pad);
}
.subpage #home-content-3 .floating-top-img {
  position: absolute;
  top: -96px;
  right: 0;
  border-radius: 20px 0px 0px 20px;
  overflow: hidden;
  width: 100%;
  max-width: 604px;
  aspect-ratio: 444 / 333;
  background: url(../images/layout-1/floating-img-1.jpg) var(--main-color) 50% 50% no-repeat;
  background-size: cover;
  flex-shrink: 0;
  z-index: 1;
}
.subpage #home-content-4 {
  padding-top: 0;
}
.subpage #home-content-4 h5 {
  font-size: var(--sm-font);
  margin-bottom: var(--main-pad);
  font-weight: 300;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--white-color);
}
.subpage #home-content-4 p {
  margin-bottom: 0;
  font-size: var(--xl-font);
  color: var(--white-color);
  font-weight: 300;
}
.subpage .half-banner-txt {
  margin-top: -128px;
  justify-content: flex-start;
  margin-left: var(--lg-pad);
}
.subpage #home-content-5 {
  padding-top: 0;
}
.subpage #home-content-5 .content-banner-half-main {
  bottom: initial;
  top: 0;
}
.subpage #home-content-6 {
  padding-top: var(--lg-pad);
}
.subpage #home-content-6 .main-head {
  margin-bottom: 0;
  margin-left: auto;
}
.subpage #home-content-6 .main-head h2 {
  color: var(--main-color);
  margin-bottom: var(--mid-pad);
}
.subpage #home-content-7 {
  padding-top: 0;
}
.subpage #home-content-7 .main-head {
  margin-bottom: 40px;
}
.main-flex-column {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.small-block-container {
  display: flex;
  flex-direction: row;
  width: calc(100% + var(--main-pad));
}
.small-block {
  display: flex;
  align-items: center;
  flex-direction: row;
  background: var(--white-color);
  padding: var(--mid-pad);
  color: var(--main-color);
  margin: 0 var(--sm-pad);
  border-radius: var(--main-radius);
  font-size: var(--md-font);
  font-weight: 500;
  width: 33.3333%;
}
.small-block-icon {
  padding: var(--mid-pad);
  width: var(--lg-height);
  height: var(--lg-height);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
  font-size: var(--md-icon);
  color: var(--body-color);
  margin-right: var(--mid-pad);
}
.subpage #home-content-8 {
  padding-top: 0;
}
.services-swiper {
  position: relative;
}
.services-swiper .swiper {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.services-swiper .swiper.swiper-initialized {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.services-swiper::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 10%;
  height: 100%;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  opacity: 0;
  z-index: 9;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.services-swiper.has-slided::before {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.services-swiper::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  z-index: 9;
  pointer-events: none;
}
.services-swiper .swiper-button-next {
  background: var(--main-color);
  right: 0;
}
.services-swiper .block-item {
  margin: 0;
}
/* LAYOUT 2 STYLES *****************************/
.layout-2 #home-content-2 {
  color: var(--white-color);
}
.layout-2 #home-content-2 h2 {
  margin-bottom: var(--mid-pad);
}
.table-main-row {
  display: flex;
  flex-direction: row;
  border: none;
  margin: 0 var(--sm-neg);
}
.table-main {
  width: 50%;
  margin: 0 var(--sm-pad);
}
.table-row {
  display: flex;
  flex-direction: row;
  border-radius: var(--sm-radius);
}
.table-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.04);
}
.table-col {
  display: flex;
  align-items: center;
  padding: var(--mid-pad);
  line-height: 1;
  width: 33.3333%;
  font-size: var(--main-font);
  text-align: left;
  color: rgba(var(--rgb-white-color), 0.48);
}
.table-col:nth-child(1) {
  font-weight: 500;
  color: var(--white-color);
  width: 50%;
}
.table-col:nth-child(2) {
  width: 30%;
}
.table-col:last-child {
  text-align: right;
  justify-content: flex-end;
  font-weight: 700;
  color: var(--yellow-color);
  width: 20%;
}
/* LAYOUT 3 STYLES *****************************/
.layout-3 #home-content-9 {
  padding-top: 0;
}
.layout-3 #home-content-2 {
  color: var(--white-color);
  padding-top: 280px;
}
.pricelist-row {
  display: flex;
  flex-direction: row;
}
.pricelist-row .main-head {
  margin: 0;
  padding-bottom: 0;
  width: 50%;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.pricelist-row .table-main-row {
  width: 50%;
  margin: 0;
}
.pricelist-row .table-main {
  margin: 0;
  width: 100%;
}
.pricelist-row .table-col:nth-child(1) {
  width: 30%;
}
.pricelist-row .table-col:nth-child(2) {
  width: 50%;
}
.pricelist-row .table-col:nth-child(3) {
  width: 20%;
}
#home-content-6 ul {
  margin: 0;
  margin-top: var(--main-pad);
  color: var(--main-color);
  padding: 0;
  list-style: none;
}
#home-content-6 li {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: var(--xs-pad);
  font-weight: 700;
}
#home-content-6 li:last-child {
  margin-bottom: 0;
}
#home-content-6 li div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--md-height);
  height: var(--md-height);
  color: var(--green-color);
  font-size: var(--xs-icon);
  margin-right: var(--xs-pad);
}
/* LAYOUT 4 STYLES *****************************/
.layout-4 #home-content-9 {
  padding-top: 0;
}
.layout-4 #home-content-2 {
  color: var(--white-color);
  padding-top: 280px;
}
/* LAYOUT 5 STYLES *****************************/
.layout-5 .txt-info-blocks .swiper-slide {
  width: 20%;
}
.layout-5 #home-content-2 {
  color: var(--white-color);
  padding-top: 280px;
}
/* 404 STYLES *****************************/
.page-404 {
  background: var(--main-color);
  color: var(--white-color);
}
.page-404 #content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  background: var(--main-color);
}

.center-action-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.center-action-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 48px;
  margin-bottom: var(--main-pad);
}
.center-action-block h2 {
  margin-bottom: var(--mid-pad);
  text-align: center;
}
.center-action-block span:not(.button span) {
  font-size: var(--main-font);
  color: rgba(var(--rgb-white-color), 0.64);
  margin-bottom: var(--lg-pad);
  text-align: center;
}
.center-action-block span b {
  font-weight: 700;
  color: var(--white-color);
}
/* CONTACT STYLES *****************************/
#contact-form {
  pointer-events: none;
}
.contact-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--lg-pad);
  border-radius: var(--main-radius);
  background: var(--light-grey);
  max-width: 640px;
  margin-left: auto;
  margin-top: -28%;
  pointer-events: all;
}
.contact-wrap h3 {
  line-height: 40px;
  margin-bottom: var(--xs-pad);
  color: var(--main-color);
}
.contact-wrap span:not(.button span) {
  font-size: var(--main-font);
  color: var(--body-color);
  margin-bottom: var(--lg-pad);
}
.form-textarea {
  min-height: 140px;
}
.form-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 0;
  min-height: auto;
}
.form-check-input,
.form-check-input[type=checkbox] {
  position: relative;
  width: 24px;
  height: 24px;
  border: none;
  cursor: pointer;
  margin: 0;
  margin-right: var(--mid-pad);
  border-radius: var(--sm-radius);
}
.form-check-input:focus,
.form-check-input:checked {
  background-color: var(--white-color);
  outline: none;
  box-shadow: none;
}
.form-check-input:active {
  filter: none;
}
.form-check-input:checked[type=checkbox] {
  background-image: none;
  color: var(--green-color);
}
.form-check-input:checked[type=checkbox]::after {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.form-check-label {
  font-size: var(--md-font);
  color: var(--body-color);
}
.form-check.error .form-check-label {
  color: var(--red-color);
}
.form-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
}
.form-footer .button {
  margin-top: var(--lg-pad);
}
.contact #home-content-1 {
  padding-top: var(--xxl-pad);
}
.contact #home-content-1 .block-item {
  padding: var(--med-pad);
}
.contact #home-content-1 .block-content {
  display: flex;
  flex-direction: column;
  margin: 0;
  width: fit-content;
}
.contact #home-content-1 .block-content span,
.contact #home-content-1 .block-content a {
  color: var(--body-color);
}
.contact #home-content-1 .block-content span a {
  font-weight: 700;
  transition: all 0.15s ease-out;
}
.contact #home-content-1 .block-content a:hover {
  font-weight: 700;
  color: var(--main-color);
  cursor: pointer;
  transition: all 0.2s ease-in;
}
.contact #home-content-1 .block-content span a:hover {
  color: var(--main-color);
  cursor: pointer;
}
#map {
  position: relative;
  padding: 0;
}
#map::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
  z-index: 1;
}
#map::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
  z-index: 1;
}
#map-canvas {
  width: 100%;
  height: 1200px;
}
.map-popup {
  position: absolute;
  z-index: 5;
  padding: var(--main-pad);
  background: var(--white-color);
  border-radius: var(--main-radius);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.24);
  min-width: 304px;
  top: 50%;
  left: 50%;
  transform: translate(8%, -50%);
}
.map-content {
  display: flex;
  flex-direction: column;
}
.map-content h4 {
  font-weight: 500;
  margin-bottom: var(--xs-pad);
}
.map-body {
  display: flex;
  flex-direction: column;
}
.map-body span {
  color: var(--main-color);
  opacity: .64;
  font-size: var(--main-font);
}
.map-footer {
  margin-top: var(--med-pad);
}
.map-footer .button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--md-height);
  padding: 0;
  padding-left: var(--xs-pad); 
  padding-right: var(--mid-pad);
  width: fit-content;
  border-radius: var(--sm-radius);
}
.map-footer .button::before,
.map-footer .button::after {
  border-radius: var(--sm-radius);
}
.map-footer .button div {
  z-index: 2;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: var(--xs-icon);
  margin-right: var(--xs-pad);  
  transition: color 0.2s ease;
}
.map-footer .button:hover div {
  color: var(--white-color);
  transition: color 0.4s ease;
}
.contact-wrap .center-action-block {
  pointer-events: none;
  position: absolute;
  margin: 0;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-wrap .center-action-block-icon {
  border-radius: 50%;
  background: rgba(var(--green-color-rgb), 0.08);
  color: var(--green-color);
  font-size: 32px;
}
.contact-wrap .center-action-block h2 {
  font-size: var(--h3-font);
  margin-bottom: var(--xs-pad);
}

/* ANIMATE STYLES *****************************/
@keyframes top-in-animate {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes opac-in-animate {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opac-out-animate {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes drop-show-animate {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drop-hide-animate {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

/* RESPONSIVE STYLES *****************************/

.container {
  padding-right: 48px;
  padding-left: 48px;
}

.row {
  margin-right: -24px;
  margin-left: -24px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  padding-right: 48px;
  padding-left: 48px;
  padding-right: 24px;
  padding-left: 24px;
}

@media (min-width: 1200px) {
}

@media (min-width: 1921px) {
  .container {
    max-width: 1536px;
    padding-right: 48px;
    padding-left: 48px;
  }
  .container-sm {
    max-width: 1376px;
    padding-right: 48px;
    padding-left: 48px;
  }
  .container-xs {
    max-width: 1016px;
    padding-right: 48px;
    padding-left: 48px;
    margin-right: auto;
    margin-left: auto;
  }
  .swiper-overflow-container-sm {
    max-width: none;
    padding-left: calc((100vw - 1376px) / 2);
  }
  .swiper-overflow-container {
    max-width: none;
    padding-left: calc((100vw - 1456px) / 2);
  }
}

@media (min-width: 1440px) and (max-width: 1681px) {
  .contact-wrap {
    margin-top: -23%;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1536px;
    padding-right: 48px;
    padding-left: 48px;
  }
  .container-sm {
    max-width: 1376px;
    padding-right: 48px;
    padding-left: 48px;
  }
  .container-xs {
    max-width: 1016px;
    padding-right: 48px;
    padding-left: 48px;
    margin-right: auto;
    margin-left: auto;
  }
  .swiper-overflow-container-sm {
    max-width: none;
    padding-left: calc((100vw - 1376px) / 2);
  }
  .swiper-overflow-container {
    max-width: none;
    padding-left: calc((100vw - 1456px) / 2);
  }
  .contact-wrap {
    margin-top: -23%;
  }

}

@media (min-width: 1200px) and (max-width: 1599px) {
  h1 {
    font-size: 80px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  .container {
    max-width: 1320px;
    padding-right: 48px;
    padding-left: 48px;
  }
  .container-sm {
    max-width: 1160px;
    padding-right: 48px;
    padding-left: 48px;
  }
  .container-xs {
    max-width: 800px;
    padding-right: 48px;
    padding-left: 48px;
    margin-right: auto;
    margin-left: auto;
  }
  .banner-text {
    padding-bottom: var(--med-pad); 
  }
  .swiper-overflow-container-sm {
    max-width: none;
    padding-left: calc((100vw - 1160px) / 2);
  }
  .sm-container .container {
    padding-left: 48px;
    padding-right: 48px;
  }
  .half-banner {
    max-width: 90%;
  }
  .contact-wrap {
    margin-top: -23%;
    max-width: 560px;
  }
  #map-canvas {
    width: 100%;
    height: 640px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  :root {
    --h1-font: 40px;
    --h2-font: 22px;
    --h3-font: 18px;
    --h4-font: 16px;

    --sm-font: 14px;
  }
  body.drawer-open,
  body.faq-filter-open {
    overflow: hidden;
  }
  .container {
    max-width: 1320px;
    padding-right: 48px;
    padding-left: 48px;
  }
  .swiper-overflow-container-sm,
  .container-sm {
    max-width: 1160px;
    padding-right: 48px;
    padding-left: 48px;
  }
  .container-xs {
    max-width: 800px;
    padding-right: 48px;
    padding-left: 48px;
    margin-right: auto;
    margin-left: auto;
  }
  #outer-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  #main-wrapper {
    padding: 0;
  }
  #content-wrapper {
    padding: 0px 0px;
  }
  .navbar-header {
    width: 50%;
  }
  .mobile-only {
    display: none;
  }
  .desktop-only {
    display: none;
  }
  .tablet-only {
    display: flex;
  }
  .home-wrap #banner-main {
    height: 100dvh;
  }
  .banner-main-img {
    height: 100%;
  }
  .banner-text {
    padding: 0;
  }
  .banner-text-wrap {
    padding: var(--mid-pad);
  }
  .subpage .banner-text {
    z-index: 1;
    padding-bottom: 0;
  }
  .banner-text p {
    font-size: var(--sm-font);
  }
  .subpage .banner-header h1 {
    margin-bottom: var(--xs-pad);
  }
  .banner-header h1 span {
    display: flex;
  }
  .content-banner-wrap {
    padding: var(--xxl-pad) 0;
  }
  .main-head {
    margin-left: 0;
    margin-bottom: var(--main-pad);
  }
  .main-head p {
    font-size: var(--sm-font);
  }
  .main-head-xs,
  .main-head-sm {
    width: 100%;
  }
  .blocks-container {
    margin: var(--xxs-neg);
  }
  .blocks-wrap:not(.blocks-container .blocks-wrap) {
    flex-direction: column;
  }
  .blocks-wrap.blocks-3 {
    flex-wrap: wrap;
  }
  .blocks-wrap.blocks-3 .block-item {
    width: calc(50% - 8px);
  }
  .block-item {
    padding: var(--xs-pad);
    margin: var(--xxs-pad);
  }
  .block-top {
    margin: 0;
  }
  .block-top span {
    font-size: var(--sm-font);
  }
  .block-icon {
    width: var(--md-height);
    height: var(--md-height);
    border-radius: 6px;
    font-size: var(--sm-icon);
  }
  .block-content,
  .block-btm {
    display: none;
  }
  .big-block-container {
    margin: 0;
  }
  .big-block-item {
    padding: var(--main-pad);
    min-height: auto;
    margin: 0;
    margin-bottom: var(--mid-pad);
  }
  .blocks-wrap.blocks-1 .big-block-item {
    aspect-ratio: 2.5 / 1;
  }
  .blocks-wrap.blocks-2 .big-block-item:last-child {
    margin: 0;
  }
  .big-block-top {
    margin-bottom: var(--main-pad);
  }
  .big-block-item h3 {
    margin-bottom: var(--main-pad);
  }
  .blocks-wrap.blocks-1 .big-block-item h3 {
    width: 80%;
  }
  .txt-info-blocks .swiper-slide {
    width: 50%;
  }
  .txt-info-block {
    padding: var(--xs-pad) 0;
  }
  .txt-info-block span {
    font-size: var(--main-font);
  }
  .txt-info-icon {
    width: var(--md-height);
    height: var(--md-height);
  }
  #home-content-3 .main-head-sm {
    margin-bottom: var(--lg-pad);
  }
  .half-banner {
    width: calc(100% - var(--lg-pad));
    aspect-ratio: 359 / 200;
    max-width: initial;
    background-size: 112% !important;
  }
  .half-banner img {
    object-fit: cover;
    object-position: center center;
    height: 100%;
    width: 100%;
  }
  .yellow-line {
    width: 32px;
  }
  .half-banner-txt {
    margin-top: -40px;
    justify-content: flex-start;
    margin-left: var(--xs-pad);
  }
  .half-banner-txt h1 {
    font-size: var(--h2-font);
  }
  #home-content-5 .main-head-sm {
    padding-top: var(--mid-pad);
  }
  .clients-swiper {
    margin: 0 var(--mid-neg);
  }
  .clients-swiper .swiper-slide {
    width: 80%;
  }
  .clients-swiper::before,
  .clients-swiper::after {
    width: 12px;
  }
  .client-top {
    margin-bottom: 12px;
  }
  .client-initials {
    width: var(--md-height);
    height: var(--md-height);
    font-size: var(--sm-font);
  }
  .client-btm div {
    width: var(--xs-height);
    height: var(--xs-height);
    margin-right: var(--xxs-pad);
  }
  .clients-btm {
    margin-top: var(--lg-pad);
  }
  .staff-swiper {
    margin-right: var(--lg-neg);
  }
  .staff-swiper::before {
    width: 64px;
    left: -8px;
  }
  .staff-swiper::after {
    width: 64px;
    right: -8px;
  }
  .staff-swiper .swiper {
    padding-right: var(--mid-pad);
  }
  .staff-swiper .swiper-slide {
    width: 50%;
  }
  .staff-top,
  .staff-btm {
    padding: var(--mid-pad);
  }
  .staff-top {
    font-size: 12px;
  }
  .staff-btm-left span {
    font-size: var(--main-font);
  }
  .content-block {
    flex-direction: column;
  }
  .content-block-left {
    width: 100%;
  }
  .content-block-left h2 {
    line-height: 1.4;
    margin-bottom: var(--xs-pad);
  }
  .content-block-left p {
    margin-bottom: var(--main-pad);
  }
  .content-block-left li {
    margin-bottom: var(--xs-pad);
  }
  .content-block-right {
    width: 60%;
    margin: 0 auto;
  }
  .faq-accordions {
    margin-left: var(--mid-neg);
    margin-right: var(--mid-neg);
  }
  #faq .main-head {
    margin: 0;
  }
  #faq .main-head h2 {
    margin: 0;
  }
  .main-head-row {
    display: flex;
    flex-direction: row;
  }
  .main-head-row .button.w-btn {
    background: var(--main-color);
    color: var(--white-color);
    padding: 4px 24px 4px 24px;
    height: 32px;
    border-radius: var(--sm-radius);
    margin-left: auto;
    margin-top: 0;
  }
  .main-head-row .button.w-btn:hover::after {
    opacity: 0;
  }
  .faq-top {
    margin-bottom: var(--main-pad);
  }
  .backdrop {
    opacity: 0;
    position: fixed;
    content: "";
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: var(--main-color);
    z-index: 11;
    pointer-events: none;
    transition: opacity 0.15s ease-in;
  }
  .drawer-open .backdrop,
  .faq-filter-open .backdrop {
    opacity: 0.48;
    pointer-events: all;
    transition: opacity 0.25s ease-out;
  }
  .faq-filter-open .faq-navigation {
    animation: drop-show-animate 0.4s ease-out forwards;
    pointer-events: all;
  }
  .faq-filter-out .faq-navigation {
    animation: drop-hide-animate 0.3s ease-in forwards;
    pointer-events: none;
  }
  .faq-navigation {
    position: fixed;
    bottom: 0;
    z-index: 999999999999;
    background: var(--white-color);
    left: 0;
    flex-direction: column;
    width: 100%;
    border-radius: var(--lg-radius) var(--lg-radius) 0px 0px;
    opacity: 0;
    pointer-events: none;
  }
  .faq-navigation-head {
    display: flex;
    align-items: center;
    padding: var(--mid-pad);
  }
  .faq-navigation-head span {
    font-size: var(--md-font);
    color: var(--main-color);
    font-weight: 500;
  }
  .faq-navigation-head .i-btn {
    background: transparent;
    outline: none;
    box-shadow: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--xxs-icon);
    color: var(--main-color);
    margin-left: auto;
  }
  .faq-navigation > a {
    display: flex;
    align-items: center;
    color: var(--body-color);
    font-size: var(--sm-font);
    text-align: left;
    line-height: 32px;
    margin-bottom: var(--xs-pad);
  }
  .faq-navigation > a::before {
    content: "";
    position: absolute;
    border-radius: 3px;
    background: var(--light-grey);
    right: 0;
    width: 20px;
    height: 20px;
  }
  .faq-navigation > a:last-child {
    margin-bottom: 0;
  }
  .faq-navigation > a.active {
    color: var(--main-color);
    font-weight: 500;
  }
  .faq-navigation > a.active::after {
    content: "";
    position: absolute;
    border-radius: 3px;
    background: var(--main-color);
    right: var(--xxs-pad);
    width: 12px;
    height: 12px;
    bottom: initial;
    left: initial;
  }
  .faq-navigation-btm {
    padding-top: var(--med-pad);
    padding-bottom: var(--mid-pad);
  }
  .faq-navigation-btm .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .accordion-item {
    width: 100%;
    margin-bottom: var(--xs-pad);
  }
  .accordion-button:not(.collapsed),
  .accordion-button {
    padding: 12px var(--main-pad);
    padding-right: 52px;
    font-size: var(--main-font);
  }
  .accordion-item:last-of-type {
    margin-bottom: 0;
  }
  .footer-content {
    flex-direction: column;
  }
  .footer-start-content {
    width: 100%;
  }
  .footer-menu {
    width: 100%;
  }
  #copyright .container {
    flex-direction: column;
  }
  #copyright div:not(.socials) {
    order: 1;
    font-size: var(--sm-font);
  }
  #copyright .socials {
    margin: 0;
    margin-bottom: var(--mid-pad);
  }
  #copyright .socials > a {
    width: var(--md-height);
    height: var(--md-height);
    font-size: var(--sm-icon);
  }

  /* LAYOUT SHARED STYLES *****************************/
  #drawer {
    position: fixed;
    bottom: 0;
    z-index: 999999999999;
    background: var(--white-color);
    left: 0;
    flex-direction: column;
    width: 100%;
    border-radius: var(--lg-radius) var(--lg-radius) 0px 0px;
    opacity: 0;
    pointer-events: none;
  }
  #drawer.open {
    animation: drop-show-animate 0.4s ease-out forwards;
    pointer-events: all;
  }
  .drawer-close #drawer {
    animation: drop-hide-animate 0.3s ease-in forwards;
    pointer-events: none;
  }
  #drawer .block-item {
    padding: 0;
    margin: 0;
  }
  #drawer .block-item:hover {
    background: var(--light-grey);
  }
  #drawer .block-item:hover::after {
    opacity: 0;
  }
  #drawer .block-icon {
    display: none;
  }
  #drawer .block-inner-top {
    padding: var(--mid-pad);
    padding-bottom: var(--xs-pad);
    width: 100%;
    display: flex;
    align-items: center;
  }
  #drawer .block-top span {
    font-size: var(--md-font);
    color: var(--main-color);
    font-weight: 500;
  }
  #drawer .block-inner-top .button {
    display: none;
  }
  #drawer .block-inner-top .i-btn {
    background: transparent;
    outline: none;
    box-shadow: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--xxs-icon);
    color: var(--main-color);
    margin-left: auto;
  }
  #drawer .block-content {
    display: flex;
    padding: 0 var(--mid-pad);
    margin-bottom: var(--lg-pad);
  }
  #drawer .block-item:hover .block-content {
    color: var(--body-color);
  }
  #drawer .block-btm {
    display: flex;
    padding: var(--mid-pad);
    padding-top: 0;
  }
  #drawer .block-btm .txt-btn {
    display: none;
  }
  #drawer .block-btm .button {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: var(--main-radius);
    line-height: 32px;
  }

  /* LAYOUT 1 STYLES *****************************/
  .subpage #banner-main {
    height: 319px;
    width: 100vw;
    display: inline-block;
  }
  .subpage .main-banner-img {
    background-size: 132%;
    background-position: center center;
  }
  .main-head p.lg-text,
  .main-head p.sm-text,
  .main-head p.md-text {
    width: 100%;
  }
  .subpage .blocks-container {
    margin: 0;
  }
  .subpage .blocks-wrap {
    flex-direction: column;
  }
  .subpage .blocks-wrap.blocks-3 {
    flex-wrap: nowrap;
  }
  .subpage #home-content-1 .block-item,
  .subpage .blocks-wrap .block-item {
    width: 100%;
    margin: 0;
    margin-bottom: var(--xs-pad);
  }
  .subpage #home-content-1 .block-item:last-child,
  .subpage .blocks-wrap .block-item:last-child {
    margin-bottom: 0;
  }
  .subpage .blocks-wrap .block-item .block-icon {
    width: var(--lg-height);
    height: var(--lg-height);
  }
  .subpage .blocks-wrap .block-inner-top {
    display: flex;
    flex-direction: column;
  }
  .subpage .blocks-wrap .block-inner-top span {
    font-size: var(--main-font);
    line-height: 24px;
    margin-bottom: 2px;
  }
  .subpage .blocks-wrap .block-inner-top .i-btn {
    display: none;
  }
  .subpage .blocks-wrap .block-inner-top .button.txt-btn {
    align-items: center;
    font-size: var(--sm-font);
    color: var(--yellow-color);
    line-height: 16px;
  }
  .subpage .blocks-wrap .block-inner-top .button.txt-btn i {
    width: var(--xs-height);
    height: var(--xs-height);
    margin-left: var(--xxs-pad);
  }
  .subpage .blocks-wrap .block-item:last-child {
    margin-bottom: 0;
  }
  .subpage #home-content-3 .floating-top-img {
    width: calc(100% - 48px);
    aspect-ratio: 327 / 192;
  }
  .subpage #home-content-3 .container-sm {
    padding-top: var(--xxl-pad);
  }
  .subpage #home-content-3 .main-head h2 {
    margin-bottom: var(--xs-pad);
  }
  .subpage #home-content-3 .main-head {
    margin-bottom: 0;
  }
  .subpage #home-content-4 h5 {
    color: #fff;
    font-size: var(--sm-font);
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    z-index: 1;
    margin-bottom: var(--mid-pad);
  }
  .subpage #home-content-4 p {
    font-size: var(--sm-font);
  }
  .subpage #home-content-6 {
    padding-top: var(--main-pad);
  }
  .subpage #home-content-6 .main-head h2 {
    margin-bottom: var(--xs-pad);
  }
  .subpage #home-content-7 .main-head {
    text-align: left;
    margin-bottom: var(--mid-pad);
  }
  .small-block-container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .small-block {
    width: 100%;
    margin: 0;
    margin-bottom: var(--xs-pad);
    padding: var(--xs-pad);
    font-size: var(--sm-font);
  }
  .small-block:last-child {
    margin-bottom: 0;
  }
  .small-block-icon {
    width: var(--md-height);
    height: var(--md-height);
    font-size: var(--xs-icon);
    padding: 0;
  }
  .services-swiper {
    margin: var(--xxs-neg);
  }
  .services-swiper::after {
    display: none;
  }
  .services-swiper .swiper {
    opacity: 1;
  }
  .services-swiper .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .services-swiper .swiper-slide {
    margin: var(--xxs-pad);
    width: calc(50% - 8px);
  }

  /* LAYOUT 2 STYLES *****************************/
  .layout-2 #home-content-2 h2 {
    margin-bottom: var(--xs-pad);
  }
  .layout-2 #home-content-2 .main-head {
    padding-bottom: var(--main-pad);
  }
  .layout-2 #home-content-2 .table-btm {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--lg-pad);
    width: 100%;
  }
  .table-main-row {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .table-main {
    margin: 0;
    width: 100%;
  }
  .table-main:last-child {
    opacity: 0;
    height: 0;
    transition: all 0.3s ease;
  }
  .show-all-prices .table-main:last-child {
    height: max-content;
    /* height: 614px;  */ /* TODO: FIX HEIGHT; */ 
    opacity: 1;
    transition: all 0.3s ease;
  }
  .table-col {
    display: flex;
    align-items: center;
    font-size: var(--sm-font);
    line-height: 1.4;
    padding: var(--mid-pad) 12px;
  }
  .table-col:nth-child(1) {
    width: 40%;
  }
  .table-col:nth-child(2) {
    width: 40%;
  }
  .table-col:nth-child(3) {
    width: 25%;
    justify-content: flex-end;
  }
  .half-banner-txt {
    margin-top: -48px;
  }
  /* LAYOUT 3 STYLES *****************************/
  .layout-3 #home-content-9 {
    padding-top: 0;
  }
  .layout-3 #home-content-9 .main-head {
    padding-bottom: 0;
  }
  .layout-3 #home-content-2 {
    padding-top: var(--xxl-pad);
  }
  .layout-3 #home-content-2 .main-head {
    padding-bottom: var(--main-pad);
    width: 100%;
  }
  .pricelist-row {
    flex-direction: column;
  }
  .pricelist-row .table-main-row {
    width: 100%;
  }
  .layout-3 .table-main:last-child {
    opacity: 1;
    height: auto;
  }
  .layout-3 #home-content-6 li {
    font-size: var(--sm-font);
  }
  /* LAYOUT 4 STYLES *****************************/
  .layout-4 #home-content-2 {
    padding-top: var(--xxl-pad);
  }
  .layout-4 #home-content-2 .main-head {
    padding-bottom: var(--main-pad);
    width: 100%;
  }
  .layout-4 .table-main:last-child {
    opacity: 1;
    height: auto;
  }
  .layout-4 #home-content-6 li {
    font-size: var(--sm-font);
  }
  /* LAYOUT 5 STYLES *****************************/
  .layout-5 .txt-info-blocks .swiper-slide {
    width: 60%;
  }
  .layout-5 #home-content-2 {
    padding-top: var(--xxl-pad);
  }
  .layout-5 #home-content-2 .main-head {
    padding-bottom: var(--main-pad);
    width: 100%;
  }
  .layout-5 .table-main:last-child {
    opacity: 1;
    height: auto;
  }
  /* 404 STYLES *****************************/
  .page-404 #navbar {
    display: none;
  }
  .center-action-block {
    width: 100%;
  }
   /* CONTACT STYLES *****************************/
   #contact-form {
    background: var(--light-grey);
  }
  .contact-wrap {
    margin-top: 0;
    max-width: 100%;
    padding: 0;
    background: transparent;
    padding-top: var(--lg-pad);
    padding-bottom: var(--mid-pad);
  }
  .contact-wrap h3 {
    font-size: var(--h4-font);
    margin-bottom: var(--mid-pad);
    line-height: 1.2;
  }
  .form-group .dropdown .dropdown-toggle,
  .form-floating > label {
    font-size: var(--sm-font);
  }
  .form-check-label {
    font-size: var(--main-font);
  }
  .contact #home-content-1 .block-item {
    padding: var(--sm-pad);
  }
  .subpage.contact .blocks-wrap .block-item .block-icon {
    width: var(--md-height);
    height: var(--md-height);
    font-size: var(--xs-icon);
  }
  .contact .block-top span {
    font-size: var(--main-font);
    font-weight: 500;
  }
  .contact #home-content-1 .block-content {
    display: flex;
    padding-left: var(--lg-pad);
  }
  #map-canvas {
    width: 100%;
    height: 480px;
  }
  .contact #home-content-1 {
    padding-bottom: 0;
  }
  .map-popup {
    top: initial;
    bottom: 0;
    left: var(--main-pad);
    width: calc(100% - var(--lg-pad));
    min-width: initial;
    transform: initial;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 100%;
  }
  .mobile-only {
    display: none;
  }
  .desktop-only {
    display: none;
  }
  .tablet-only {
    display: flex;
  }
}

@media (max-width: 767px) {
  :root {
    --xs-pad: 8px;
    --sm-pad: 16px;
    --main-pad: 24px;
    --med-pad: 32px;
    --lg-pad: 48px;
    --xl-pad: 72px;
    --xxl-pad: 96px;
    --lg-neg: -48px;
    --main-neg: -24px;
    --main-font: 14px;
    --sm-font: 14px;
    --lg-font: 14px;
    --input-font: 16px;
    --button-font: 14px;
    --sm-icon: 18px;
    --main-icon: 32px;
    --large-icon: 96px;
    --xl-radius: 45px;

    --h1-font: 28px;
    --h2-font: 20px;
    --h3-font: 18px;
    --h4-font: 16px;
  }
  .col,
  .col-1,
  .col-10,
  .col-11,
  .col-12,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-auto,
  .col-lg,
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-auto,
  .col-md,
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-auto,
  .col-sm,
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-auto,
  .col-xl,
  .col-xl-1,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-auto {
    padding-right: 16px;
    padding-left: 16px;
  }
  body {
    font-size: 14px;
  }
  body.drawer-open,
  body.faq-filter-open {
    overflow: hidden;
  }
  .swiper-overflow-container,
  .swiper-overflow-container-sm,
  .container-sm,
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }
  .container-xs {
    padding-right: 16px;
    padding-left: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .row {
    margin-right: -16px;
    margin-left: -16px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    line-height: 1.4;
  }
  h3 {
    letter-spacing: 0;
    line-height: 1.4;
  }
  h4 {
    line-height: 1.4;
  }
  h5 {
    line-height: 1.4;
  }
  p {
    margin-bottom: 24px;
  }
  .large-quote {
    font-size: 24px;
  }
  .sub-title {
    font-size: 12px;
  }
  .mob-break {
    display: inline;
  }
  .web-break {
    display: none;
  }
  .hide-mob {
    display: none;
  }
  .show-mob {
    display: inline-block !important;
  }
  .button,
  .l-btn {
    font-size: 14px;
  }
  .btn-icon.button {
    line-height: 32px;
  }
  .btn-icon span {
    width: 32px;
    height: 32px;
  }
  .btn-icon i {
    font-size: 16px;
  }
  .button.txt-btn {
    font-size: 14px;
  }
  .button.txt-btn i {
    font-size: 12px;
  }
  .form-cols {
    flex-direction: column;
    margin: 0;
  }
  .form-col {
    width: 100%;
    margin: 0;
    margin-bottom: 12px;
  }
  .desktop-only {
    display: none;
  }
  .tablet-only {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  .home-wrap #banner-main {
    height: 92vh;
    height: 100dvh;
  }
  .banner-main-img {
    height: 100%;
  }
  .banner-text {
    padding: 0;
  }
  .banner-text-wrap {
    padding: var(--mid-pad);
  }
  .subpage .banner-text {
    z-index: 1;
    padding-bottom: 0;
  }
  .banner-text p {
    font-size: var(--sm-font);
  }
  .subpage .banner-header h1 {
    margin-bottom: var(--xs-pad);
  }
  .banner-header h1 span {
    display: flex;
  }
  .content-banner-wrap {
    padding: var(--xxl-pad) 0;
  }
  .main-head {
    margin-left: 0;
    margin-bottom: var(--main-pad);
  }
  .main-head p {
    font-size: var(--sm-font);
  }
  .main-head-xs,
  .main-head-sm {
    width: 100%;
  }
  .blocks-container {
    margin: var(--xxs-neg);
  }
  .blocks-wrap:not(.blocks-container .blocks-wrap) {
    flex-direction: column;
  }
  .blocks-wrap.blocks-3 {
    flex-wrap: wrap;
  }
  .blocks-wrap.blocks-3 .block-item {
    width: calc(50% - 8px);
  }
  .block-item {
    padding: var(--xs-pad);
    margin: var(--xxs-pad);
  }
  .block-top {
    margin: 0;
  }
  .block-top span {
    font-size: var(--sm-font);
  }
  .block-icon {
    width: var(--md-height);
    height: var(--md-height);
    border-radius: 6px;
    font-size: var(--sm-icon);
  }
  .block-content,
  .block-btm {
    display: none;
  }
  .big-block-container {
    margin: 0;
  }
  .big-block-item {
    padding: var(--main-pad);
    min-height: auto;
    margin: 0;
    margin-bottom: var(--mid-pad);
  }
  .blocks-wrap.blocks-1 .big-block-item {
    aspect-ratio: 343 / 208;
  }
  .blocks-wrap.blocks-2 .big-block-item:last-child {
    margin: 0;
  }
  .big-block-top {
    margin-bottom: var(--main-pad);
  }
  .big-block-item h3 {
    margin-bottom: var(--main-pad);
  }
  .blocks-wrap.blocks-1 .big-block-item h3 {
    width: 80%;
  }
  .txt-info-blocks .swiper-slide {
    width: 80%;
  }
  .txt-info-block {
    padding: var(--xs-pad) 0;
  }
  .txt-info-block span {
    font-size: var(--main-font);
  }
  .txt-info-icon {
    width: var(--md-height);
    height: var(--md-height);
  }
  #home-content-3 .main-head-sm {
    margin-bottom: var(--lg-pad);
  }
  .half-banner {
    width: calc(100% - var(--mid-pad));
    aspect-ratio: 359 / 200;
    max-width: initial;
    background-size: 112% !important;
  }
  .half-banner img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
  }
  .yellow-line {
    width: 32px;
  }
  .subpage .half-banner-txt,
  .half-banner-txt {
    margin-top: -40px;
    justify-content: flex-start;
    margin-left: var(--xs-pad);
  }
  .half-banner-txt h1 {
    font-size: var(--h2-font);
  }
  #home-content-5 .main-head-sm {
    padding-top: var(--mid-pad);
  }
  .clients-swiper {
    margin: 0 var(--mid-neg);
  }
  .clients-swiper .swiper-slide {
    width: 80%;
  }
  .clients-swiper::before,
  .clients-swiper::after {
    width: 12px;
  }
  .client-top {
    margin-bottom: 12px;
  }
  .client-initials {
    width: var(--md-height);
    height: var(--md-height);
    font-size: var(--sm-font);
  }
  .client-btm div {
    width: var(--xs-height);
    height: var(--xs-height);
    margin-right: var(--xxs-pad);
  }
  .clients-btm {
    margin-top: var(--lg-pad);
  }
  .staff-swiper {
    margin-right: var(--mid-neg);
  }
  .staff-swiper::before {
    width: 64px;
    left: -8px;
  }
  .staff-swiper::after {
    width: 64px;
    right: -8px;
  }
  .staff-swiper .swiper {
    padding-right: var(--mid-pad);
  }
  .staff-swiper .swiper-slide {
    width: 80%;
  }
  .staff-top,
  .staff-btm {
    padding: var(--mid-pad);
  }
  .staff-top {
    font-size: 12px;
  }
  .staff-btm-left span {
    font-size: var(--main-font);
  }
  .content-block {
    flex-direction: column;
  }
  .content-block-left {
    width: 100%;
  }
  .content-block-left h2 {
    line-height: 1.4;
    margin-bottom: var(--xs-pad);
  }
  .content-block-left p {
    margin-bottom: var(--main-pad);
  }
  .content-block-left li {
    margin-bottom: var(--xs-pad);
  }
  .content-block-right {
    width: 100%;
  }
  .faq-accordions {
    margin-left: var(--mid-neg);
    margin-right: var(--mid-neg);
  }
  #faq .main-head {
    margin: 0;
  }
  #faq .main-head h2 {
    margin: 0;
  }
  .main-head-row {
    display: flex;
    flex-direction: row;
  }
  .main-head-row .button.w-btn {
    background: var(--main-color);
    color: var(--white-color);
    padding: 4px 24px 4px 24px;
    height: 32px;
    border-radius: var(--sm-radius);
    margin-left: auto;
    margin-top: 0;
  }
  .main-head-row .button.w-btn:hover::after {
    opacity: 0;
  }
  .faq-top {
    margin-bottom: var(--main-pad);
  }
  .backdrop {
    opacity: 0;
    position: fixed;
    content: "";
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: var(--main-color);
    z-index: 11;
    pointer-events: none;
    transition: opacity 0.15s ease-in;
  }
  .drawer-open .backdrop,
  .faq-filter-open .backdrop {
    opacity: 0.48;
    pointer-events: all;
    transition: opacity 0.25s ease-out;
  }
  .faq-filter-open .faq-navigation {
    animation: drop-show-animate 0.4s ease-out forwards;
    pointer-events: all;
  }
  .faq-filter-out .faq-navigation {
    animation: drop-hide-animate 0.3s ease-in forwards;
    pointer-events: none;
  }
  .faq-navigation {
    position: fixed;
    bottom: 0;
    z-index: 999999999999;
    background: var(--white-color);
    left: 0;
    flex-direction: column;
    width: 100%;
    border-radius: var(--lg-radius) var(--lg-radius) 0px 0px;
    opacity: 0;
    pointer-events: none;
  }
  .faq-navigation-head {
    display: flex;
    align-items: center;
    padding: var(--mid-pad);
  }
  .faq-navigation-head span {
    font-size: var(--md-font);
    color: var(--main-color);
    font-weight: 500;
  }
  .faq-navigation-head .i-btn {
    background: transparent;
    outline: none;
    box-shadow: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--xxs-icon);
    color: var(--main-color);
    margin-left: auto;
  }
  .faq-navigation > a {
    display: flex;
    align-items: center;
    color: var(--body-color);
    font-size: var(--sm-font);
    text-align: left;
    line-height: 32px;
    margin-bottom: var(--xs-pad);
  }
  .faq-navigation > a::before {
    content: "";
    position: absolute;
    border-radius: 3px;
    background: var(--light-grey);
    right: 0;
    width: 20px;
    height: 20px;
  }
  .faq-navigation > a:last-child {
    margin-bottom: 0;
  }
  .faq-navigation > a.active {
    color: var(--main-color);
    font-weight: 500;
  }
  .faq-navigation > a.active::after {
    content: "";
    position: absolute;
    border-radius: 3px;
    background: var(--main-color);
    right: var(--xxs-pad);
    width: 12px;
    height: 12px;
    bottom: initial;
    left: initial;
  }
  .faq-navigation-btm {
    padding-top: var(--med-pad);
    padding-bottom: var(--mid-pad);
  }
  .faq-navigation-btm .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .accordion-item {
    width: 100%;
    margin-bottom: var(--xs-pad);
  }
  .accordion-button:not(.collapsed),
  .accordion-button {
    padding: 12px var(--main-pad);
    padding-right: 52px;
  }
  .accordion-item:last-of-type {
    margin-bottom: 0;
  }
  .accordion-button:not(.collapsed),
  .accordion-button {
    font-size: var(--sm-font);
  }
  .accordion-body {
    font-size: var(--sm-font);
  }
  .footer-content {
    flex-direction: column;
  }
  .footer-start-content {
    width: 100%;
  }
  .footer-menu {
    width: 100%;
  }
  #copyright .container {
    flex-direction: column;
  }
  #copyright div:not(.socials) {
    order: 1;
    font-size: var(--sm-font);
  }
  #copyright .socials {
    margin: 0;
    margin-bottom: var(--mid-pad);
  }
  #copyright .socials > a {
    width: var(--md-height);
    height: var(--md-height);
    font-size: var(--sm-icon);
  }

  /* LAYOUT SHARED STYLES *****************************/
  #drawer {
    position: fixed;
    bottom: 0;
    z-index: 999999999999;
    background: var(--white-color);
    left: 0;
    flex-direction: column;
    width: 100%;
    border-radius: var(--lg-radius) var(--lg-radius) 0px 0px;
    opacity: 0;
    pointer-events: none;
  }
  #drawer.open {
    animation: drop-show-animate 0.4s ease-out forwards;
    pointer-events: all;
  }
  .drawer-close #drawer {
    animation: drop-hide-animate 0.3s ease-in forwards;
    pointer-events: none;
  }
  #drawer .block-item {
    padding: 0;
    margin: 0;
  }
  #drawer .block-item:hover {
    background: var(--light-grey);
  }
  #drawer .block-item:hover::after {
    opacity: 0;
  }
  #drawer .block-icon {
    display: none;
  }
  #drawer .block-inner-top {
    padding: var(--mid-pad);
    padding-bottom: var(--xs-pad);
    width: 100%;
    display: flex;
    align-items: center;
  }
  #drawer .block-top span {
    font-size: var(--md-font);
    color: var(--main-color);
    font-weight: 500;
  }
  #drawer .block-inner-top .button {
    display: none;
  }
  #drawer .block-inner-top .i-btn {
    background: transparent;
    outline: none;
    box-shadow: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--xxs-icon);
    color: var(--main-color);
    margin-left: auto;
  }
  #drawer .block-content {
    display: flex;
    padding: 0 var(--mid-pad);
    margin-bottom: var(--lg-pad);
  }
  #drawer .block-item:hover .block-content {
    color: var(--body-color);
  }
  #drawer .block-btm {
    display: flex;
    padding: var(--mid-pad);
    padding-top: 0;
  }
  #drawer .block-btm .txt-btn {
    display: none;
  }
  #drawer .block-btm .button {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: var(--main-radius);
    line-height: 32px;
  }

  /* LAYOUT 1 STYLES *****************************/
  .subpage #banner-main {
    height: 319px;
    width: 100vw;
    display: inline-block;
  }
  .subpage .main-banner-img {
    background-size: 132%;
    background-position: center center;
  }
  .layout-1 .main-banner-img {
    background: url(../images/layout-1/main-banner-mobile.jpg) var(--main-color) 50% 85% no-repeat;
  }
  .layout-2 .main-banner-img {
    background: url(../images/layout-2/main-banner-mobile.jpg) var(--main-color) 50% 32% no-repeat;
  }
  .layout-3 .main-banner-img {
    background: url(../images/layout-3/main-banner-mobile.jpg) var(--main-color) 50% 50% no-repeat;
  }
  .layout-4 .main-banner-img {
    background: url(../images/layout-4/main-banner-mobile.jpg) var(--main-color) 50% 88% no-repeat;
  }
  .layout-5 .main-banner-img {
    background: url(../images/layout-5/main-banner-mobile.jpg) var(--main-color) 50% 32% no-repeat;
  }
  .contact .main-banner-img {
    background: url(../images/contact/main-banner-mobile.jpg) var(--main-color) 0% 64% no-repeat;
  }
  .main-head p.lg-text,
  .main-head p.sm-text,
  .main-head p.md-text {
    width: 100%;
  }
  .subpage .blocks-container {
    margin: 0;
  }
  .subpage .blocks-wrap {
    flex-direction: column;
  }
  .subpage .blocks-wrap.blocks-3 {
    flex-wrap: nowrap;
  }
  .subpage #home-content-1 .block-item,
  .subpage .blocks-wrap .block-item {
    width: 100%;
    margin: 0;
    margin-bottom: var(--xs-pad);
  }
  .subpage #home-content-1 .block-item:last-child,
  .subpage .blocks-wrap .block-item:last-child {
    margin-bottom: 0;
  }
  .subpage .blocks-wrap .block-item .block-icon {
    width: var(--lg-height);
    height: var(--lg-height);
  }
  .subpage .blocks-wrap .block-inner-top {
    display: flex;
    flex-direction: column;
  }
  .subpage .blocks-wrap .block-inner-top span {
    font-size: var(--main-font);
    line-height: 24px;
    margin-bottom: 2px;
  }
  .subpage .blocks-wrap .block-inner-top .i-btn {
    display: none;
  }
  .subpage .blocks-wrap .block-inner-top .button.txt-btn {
    align-items: center;
    font-size: var(--sm-font);
    color: var(--yellow-color);
    line-height: 16px;
  }
  .subpage .blocks-wrap .block-inner-top .button.txt-btn i {
    width: var(--xs-height);
    height: var(--xs-height);
    margin-left: var(--xxs-pad);
  }
  .subpage .blocks-wrap .block-item:last-child {
    margin-bottom: 0;
  }
  .subpage #home-content-3 .floating-top-img {
    width: calc(100% - 48px);
    aspect-ratio: 327 / 192;
  }
  .subpage #home-content-3 .container-sm {
    padding-top: var(--xxl-pad);
  }
  .subpage #home-content-3 .main-head h2 {
    margin-bottom: var(--xs-pad);
  }
  .subpage #home-content-3 .main-head {
    margin-bottom: 0;
  }
  .subpage #home-content-4 h5 {
    color: #fff;
    font-size: var(--sm-font);
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    z-index: 1;
    margin-bottom: var(--mid-pad);
  }
  .subpage #home-content-4 p {
    font-size: var(--sm-font);
  }
  .subpage #home-content-6 {
    padding-top: var(--main-pad);
  }
  .subpage #home-content-6 .main-head h2 {
    margin-bottom: var(--xs-pad);
  }
  .subpage #home-content-7 .main-head {
    text-align: left;
    margin-bottom: var(--mid-pad);
  }
  .small-block-container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .small-block {
    width: 100%;
    margin: 0;
    margin-bottom: var(--xs-pad);
    padding: var(--xs-pad);
    font-size: var(--sm-font);
  }
  .small-block:last-child {
    margin-bottom: 0;
  }
  .small-block-icon {
    width: var(--md-height);
    height: var(--md-height);
    font-size: var(--xs-icon);
    padding: 0;
  }
  .services-swiper {
    margin: var(--xxs-neg);
  }
  .services-swiper::after {
    display: none;
  }
  .services-swiper .swiper {
    opacity: 1;
  }
  .services-swiper .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .services-swiper .swiper-slide {
    margin: var(--xxs-pad);
    width: calc(50% - 8px);
  }

  /* LAYOUT 2 STYLES *****************************/
  .layout-2 #home-content-2 h2 {
    margin-bottom: var(--xs-pad);
  }
  .layout-2 #home-content-2 .main-head {
    padding-bottom: var(--main-pad);
  }
  .layout-2 #home-content-2 .table-btm {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--lg-pad);
    width: 100%;
  }
  .table-main-row {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .table-main {
    margin: 0;
    width: 100%;
  }
  .table-main:last-child {
    opacity: 0;
    height: 0;
    transition: all 0.3s ease;
  }
  .show-all-prices .table-main:last-child {
    height: max-content;
    /* height: 614px; */ /* TODO: FIX HEIGHT; */ 
    opacity: 1;
    transition: all 0.3s ease;
  }
  .table-col {
    display: flex;
    align-items: center;
    font-size: var(--sm-font);
    line-height: 1.4;
    padding: var(--mid-pad) 12px;
  }
  .table-col:nth-child(1) {
    width: 40%;
    padding-left: var(--mid-pad);
  }
  .table-col:nth-child(2) {
    width: 40%;
  }
  .table-col:nth-child(3) {
    width: 25%;
    justify-content: flex-end;
    padding-right: var(--mid-pad);
  }
  /* LAYOUT 3 STYLES *****************************/
  .layout-3 #home-content-9 {
    padding-top: 0;
  }
  .layout-3 #home-content-9 .main-head {
    padding-bottom: 0;
  }
  .layout-3 #home-content-2 {
    padding-top: var(--xxl-pad);
  }
  .layout-3 #home-content-2 .main-head {
    padding-bottom: var(--main-pad);
    width: 100%;
  }
  .pricelist-row {
    flex-direction: column;
  }
  .pricelist-row .table-main-row {
    width: 100%;
  }
  .layout-3 .table-main:last-child {
    opacity: 1;
    height: auto;
  }
  .layout-3 #home-content-6 li {
    font-size: var(--sm-font);
  }
  /* LAYOUT 4 STYLES *****************************/
  .layout-4 #home-content-2 {
    padding-top: var(--xxl-pad);
  }
  .layout-4 #home-content-2 .main-head {
    padding-bottom: var(--main-pad);
    width: 100%;
  }
  .layout-4 .table-main:last-child {
    opacity: 1;
    height: auto;
  }
  .layout-4 #home-content-6 li {
    font-size: var(--sm-font);
  }
  /* LAYOUT 5 STYLES *****************************/
  .layout-5 .txt-info-blocks .swiper-slide {
    width: 60%;
  }
  .layout-5 #home-content-2 {
    padding-top: var(--xxl-pad);
  }
  .layout-5 #home-content-2 .main-head {
    padding-bottom: var(--main-pad);
    width: 100%;
  }
  .layout-5 .table-main:last-child {
    opacity: 1;
    height: auto;
  }
  /* 404 STYLES *****************************/
  .page-404 #navbar {
    display: none;
  }
  .center-action-block {
    width: 100%;
  }
  /* CONTACT STYLES *****************************/
  #contact-form {
    background: var(--light-grey);
  }
  .contact-wrap {
    margin-top: 0;
    max-width: 100%;
    padding: 0;
    background: transparent;
    padding-top: var(--lg-pad);
    padding-bottom: var(--mid-pad);
  }
  .contact-wrap h3 {
    font-size: var(--h4-font);
    margin-bottom: var(--mid-pad);
    line-height: 1.2;
  }
  .form-group .dropdown .dropdown-toggle,
  .form-floating > label {
    font-size: var(--sm-font);
  }
  .form-check-label {
    font-size: var(--main-font);
  }
  .contact #home-content-1 .block-item {
    padding: var(--sm-pad);
  }
  .subpage.contact .blocks-wrap .block-item .block-icon {
    width: var(--md-height);
    height: var(--md-height);
    font-size: var(--xs-icon);
  }
  .contact .block-top span {
    font-size: var(--main-font);
    font-weight: 500;
  }
  .contact #home-content-1 .block-content {
    display: flex;
    padding-left: var(--lg-pad);
  }
  #map-canvas {
    width: 100%;
    height: 480px;
  }
  .contact #home-content-1 {
    padding-bottom: 0;
  }
  .map-popup {
    top: initial;
    bottom: 0;
    left: var(--main-pad);
    width: calc(100% - var(--lg-pad));
    min-width: initial;
    transform: initial;
  }
}

/*Mobile AND TABLET Footer*/
@media (max-width: 1199px) {
  #footer {
    padding: 0;
    margin: 0px;
  }
  .footer-top,
  .footer-content,
  .footer-bottom .container {
    flex-direction: column;
  }
  .footer-top {
    background: var(--main-color);
  }

  .footer-start-content {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: var(--lg-pad);
  }
  .footer-logo img {
    height: 16px;
  }
  .footer-menu-collapse {
    margin: 0 !important;
  }
  .footer-menu-img {
    margin-top: 0;
  }
  .footer-menu-list a img {
    height: 24px;
  }
  .footer-start-content .button {
    align-self: center;
    margin-top: 24px;
  }
  .footer-start-content > div {
    display: none;
  }
  .footer-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .footer-menu {
    width: 100%;
  }
  .footer-menu-title {
    position: relative;
    display: flex;
    padding: 10px 0px;
    line-height: 24px;
    color: var(--white-color);
    transition: color 0.15s ease-out;
  }
  .footer-menu-open .footer-menu-title {
    color: var(--sub-color);
    transition: color 0.2s ease-in;
  }
  .footer-menu-title.footer-title-margin {
    margin-top: 0;
  }
  .footer-menu-collapse .footer-menu-title:after {
    position: absolute;
    display: inline-block;
    content: "\f078";
    right: 0px;
    top: 12px;
    height: 24px;
    width: 24px;
    line-height: 24px;
    font-size: 14px;
    color: var(--white-color);
    vertical-align: middle;
    text-align: center;
    font-style: normal;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    transform: rotate(0deg);
    transition: all 0.2s ease;
  }
  .footer-menu-collapse.footer-menu-open .footer-menu-title:after {
    color: var(--white-color);
    transform: rotate(-180deg);
    transition: all 0.3s ease;
  }
  .footer-menu-title h4 {
    margin: 0;
    line-height: 48px;
  }
  .footer-menu-collapse .footer-menu-list {
    display: none;
    padding-bottom: 8px;
  }
  .footer-menu-list li {
    line-height: 20px;
  }

  .footer-bottom {
    padding: 0;
  }
  .footer-bottom .container {
    padding: 0;
  }
  .footer-app-buttons {
    justify-content: center;
    width: 100%;
    background: var(--main-color);
    order: 1;
    padding: 0 16px 48px 16px;
  }
  .footer-app-buttons .app-btn {
    margin: 0 var(--xs-pad);
  }
  .footer-copyright {
    flex-direction: column;
    width: 100%;
    font-size: 14px;
    padding: 0 48px;
    margin-bottom: 8px;
    order: 3;
    text-align: center;
  }
  .footer-copyright div {
    display: block;
    text-align: center;
  }
  .footer-copyright p {
    margin: 0;
  }
  .footer-social {
    order: 2;
    width: 100%;
    margin: 0;
    padding: 32px 16px;
    justify-content: center;
  }
  .footer-socials {
    margin: 0;
  }
  .footer-socials li {
    margin: 0 8px;
  }
  .footer-social a {
    font-size: 18px;
  }
  .footer-sub-links {
    order: 4;
    width: 100%;
    padding: 0 16px;
    padding-bottom: 24px;
  }
  .footer-sub-links ul {
    align-self: center;
  }
  .footer-sub-links li {
    margin: 0 4px;
  }
}

/*NAV STYLES*/
@media (max-width: 1199px) {
  body.menu-open {
    overflow: hidden;
  }
  .navbar-button {
    position: relative;
    display: flex;
  }
  .nav-toggle {
    cursor: pointer;
    display: flex;
  }
  #navbar {
    padding: 0px 16px;
    flex-direction: row;
    height: 48px;
    width: 100%;
  }
  #navbar:after {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.48) 0%, rgba(26, 26, 26, 0.32) 100%);
    backdrop-filter: blur(12px);
  }
  .navbar-header {
    width: 100%;
    padding: 0px 0;
    z-index: 3;
    align-items: center;
  }
  .navbar-header .i-btn {
    display: flex;
    transition: all 0.3s ease-out;
  }
  .menu-open .navbar-header .i-btn {
    background: var(--main-color);
    color: var(--white-color);
  }
  .nav-mobile {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--light-main-color);
    padding: 24px 16px 16px 16px;
    margin-top: auto;
  }
  .nav-mobile .button {
    justify-content: center;
  }
  .logo-main {
    margin: 8px auto;
    justify-content: center;
  }
  .logo-main span {
    height: 32px;
  }
  .logo-main img {
    height: 16px;
    width: auto;
  }
  #navbar.sticky .logo-main-dark {
    display: none;
  }
  #navbar.sticky .logo-main:not(#navbar.sticky .logo-main.logo-main-dark) {
    display: flex;
  }
  .menu-open .logo-main {
    display: none !important;
  }
  .menu-open .logo-main-dark {
    display: flex !important;
  }
  #navbar.sticky:before {
    display: none;
  }
  .nav-socials {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-socials .i-btn {
    margin: 0 var(--xs-pad);
    font-size: var(--sm-icon); 
  }
  .nav-right {
    padding: var(--mid-pad);
    margin-top: auto;
  }
  .nav-right .button {
    width: 100%;
    text-align: center;
    font-size: var(--main-font);
    justify-content: center;
  }
  .nav-right a.w-btn,
  .nav-right .w-btn,
  .nav-right a.w-btn:visited,
  .nav-right .w-btn:visited {
    width: 100%;
    justify-content: center;
    background: var(--main-color);
    color: var(--white-color);
  }
  .nav-wrap {
    display: flex;
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    height: 100dvh;
    left: -100%;
    top: 0px;
    padding: 72px 0px 0px 0px;
    background: var(--main-color);
    background: var(--white-color);
    border-radius: 0px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.2s ease;
  }
  .menu-open .nav-wrap {
    left: 0%;
    transition: all 0.3s ease-out;
  }
  .nav-mobile {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--light-main-color);
    padding: 24px 16px 16px 16px;
    margin-top: auto;
  }
  .nav-mobile .button {
    justify-content: center;
  }
  #nav-main {
    margin-top: 64px;
    flex-direction: column;
    padding: 0 24px;
    height: 100%;
  }
  #nav-main ul {
    flex-direction: column;
    margin: 0;
  }
  #nav-main .nav-sub {
    display: flex;
    margin-top: var(--mid-pad);
  }
  #nav-main ul li {
    margin: 0;
    padding: 0px 0px;
  }
  #nav-main ul li a {
    line-height: 24px;
    padding: 12px 0px;
    width: 100%;
    font-weight: 500;
    font-size: var(--md-font);
    color: var(--main-color);
  }
  #nav-main ul.nav-sub li {
    padding-bottom: var(--main-pad);
  }
  #nav-main ul.nav-sub li a {
    color: var(--body-color);
    font-size: var(--sm-font);
    font-weight: 300;
    padding: 0;
  }
  .menu-open #nav-main a {
  }
  #nav-main ul:not(.nav-sub) li a:after {
    position: absolute;
    display: inline-block;
    content: "\f054";
    right: -16px;
    top: 0px;
    height: 48px;
    width: 48px;
    line-height: 48px;
    font-size: 14px;
    color: var(--body-color);
    vertical-align: middle;
    text-align: center;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    transform: rotate(0deg);
    transition: all 0.3s ease;
  }
  .nav-wrap .footer-social {
    padding: 0 16px;
    justify-content: space-between;
  }
  .nav-wrap .footer-social div {
    font-weight: 700;
    color: var(--sub-color);
  }
  .nav-wrap .footer-social ul.nav-social li {
    margin: 0 0 0 24px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #navbar {
    padding: 0px 24px;
  }

  #nav-main {
    padding: 48px 40px 0 48px;
  }
  #nav-main ul li a {
    font-size: 24px;
  }
  .nav-toggle {
    margin: 28px 16px 24px 16px;
  }
}

@media (max-width: 361px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }
}
