/* ========================================================================== */
/* 1) BASE & RESET                                                            */
/* ========================================================================== */
/* Global reset */
* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  min-width: 1px;
}
html {
  /* Rendering helpers */
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  /* Document metrics & base font */
  height: 100%;
  font: 400 14px/1.5714 'Lato', sans-serif;
}
@media (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}
body {
  color: #000;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100%;
  background: #f9f7f3;
}
a, a:hover, input, textarea, select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0 none;
}
article, aside, details, figcaption, figure, footer, header, nav, section, summary, main {
  display: block;
}
:focus {
  outline: 0;
}
a img, fieldset, hr {
  border: 0;
}
mark {
  background: none;
}
hr {
  clear: both;
  overflow: hidden;
  display: block;
}
footer {
  position: sticky;
  top: 100%;
}
/* Lists */
ol {
  list-style: decimal inside;
  margin-bottom: 20px;
}
ol li {
  padding: 5px 0 5px 15px;
}
ul {
  list-style: none;
}
/* Quotes */
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}
/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@media (max-width: 768px) {
  table {
    overflow-y: scroll;
    display: block;
  }
  table tbody {
    display: block;
    width: 800px;
  }
}
td {
  vertical-align: top;
}
/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Remove default space below figures */
figure {
  margin-bottom: 0;
}
/* Alignment helpers for WP content */
.alignleft {
  float: left;
  margin: 0 30px 10px 0;
}
.alignright {
  float: right;
  margin: 0 0 10px 30px;
}
.aligncenter {
  margin: 0 auto 20px;
}
.alignnone {
  margin: 0 0 20px;
}
@media (max-width: 1024px) {
  .alignleft, .aligncenter, .alignright {
    float: none;
    margin: 0 auto 20px;
  }
}
/* ========================================================================== */
/* 2) SCROLLBARS (DESKTOP ONLY)                                               */
/* ========================================================================== */
@media screen and (min-width: 1201px) {
  ::-webkit-scrollbar {
    width: 7px;
    transition: all 0.3s ease;
  }
  ::-webkit-scrollbar-track {
    background-color: #eaeaea;
    transition: all 0.3s ease;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #4a5eff;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #cb5c28;
  }
  textarea::-webkit-scrollbar {
    width: 7px;
  }
  textarea::-webkit-scrollbar-thumb {
    background: #cb5c28;
    cursor: pointer;
  }
  html {
    scrollbar-color: #cb5c28 #eaeaea;
    scrollbar-width: thin;
  }
}
/* ========================================================================== */
/* 3) TYPOGRAPHY                                                              */
/* ========================================================================== */
p {
  line-height: 1.5;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 150%;
}
p:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  p:not(:last-child) {
    margin-bottom: 12px;
  }
}
a {
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
}
h1 {
  font-family: 'Unbounded';
  font-weight: 800;
  font-size: clamp(28px, 3vw, 50px);
  text-transform: uppercase;
}
h2 {
  font-family: 'Unbounded';
  font-weight: 800;
  font-size: clamp(28px, 3vw, 48px);
  text-transform: uppercase;
}
h3 {
  font-size: 24px;
}
/* Responsive images CLS helper */
img:is([sizes="auto" i], [sizes^="auto," i]) {
  contain-intrinsic-size: 3000px 1500px;
}
/* ========================================================================== */
/* 4) FORMS & BUTTONS                                                         */
/* ========================================================================== */
/* Textual inputs */
input[type="text"], input[type="email"], input[type="tel"], input[type="search"], select, textarea {
  transition: 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
/* Clickable controls */
input[type="submit"], input[type="button"], button, .button {
  transition: 0.3s;
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
}
/* Unified form controls */
input[type="text"], input[type="email"], input[type="url"], input[type="tel"], input[type="search"], input[type="password"], textarea, select {
  height: 40px;
  width: 100%;
  border: 1px solid #000;
  background: #fff;
  padding: 0 20px;
  color: #000;
  font-family: 'Lato';
  font-size: 14px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="tel"]:focus, input[type="search"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  border-color: #d76936;
}
input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="url"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}
input[type="text"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="url"]:-moz-placeholder, input[type="tel"]:-moz-placeholder, input[type="search"]:-moz-placeholder, input[type="password"]:-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder {
  color: #000;
  opacity: 1;
}
input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="url"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="password"]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #000;
  opacity: 1;
}
input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="url"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
select option {
  color: #000;
  padding: 5px 10px;
}
textarea {
  resize: none;
  height: 100px;
  padding: 12px 20px;
  display: block;
}
/* Buttons */
.btn, .submit {
  display: inline-block;
  min-width: 173px;
  line-height: 1.4;
  padding: 20px 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 50px;
  font-family: 'Unbounded';
  background: #d76936;
  color: #fff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}
@media (max-width: 1024px) {
  .btn, .submit {
    padding: 15px;
  }
}
.btn.black, .submit.black {
  background-color: #222;
}
.btn.black:hover, .submit.black:hover {
  background-color: #d76936;
}
.btn.border, .submit.border {
  border: 1px solid #d76936;
  color: #222;
  background: transparent;
}
.btn.border:hover, .submit.border:hover {
  background-color: #d76936;
  color: #fff;
}
.btn:hover, .submit:hover {
  background: #b65224;
}
/* ========================================================================== */
/* 5) LAYOUT & WRAPPERS                                                       */
/* ========================================================================== */
.wrap {
  margin: 0 auto;
  width: 1440px;
  max-width: 94%;
  position: relative;
}
.text {
  max-width: 100%;
}
.text ul {
  margin-bottom: 20px;
}
.text ul li {
  position: relative;
  padding-left: 30px;
}
.text ul li:before {
  content: "";
  position: absolute;
  top: rem(15);
  left: 0;
  width: 4px;
  height: 4px;
  background: #d76936;
  border-radius: 50%;
}
.text h1 a:not(.btn), .text h2 a:not(.btn), .text h3 a:not(.btn), .text h4 a:not(.btn), .text h5 a:not(.btn), .text h6 a:not(.btn), .text li a:not(.btn), .text p a:not(.btn) {
  color: #000;
  text-decoration: underline;
}
.text h1 a:not(.btn):hover, .text h2 a:not(.btn):hover, .text h3 a:not(.btn):hover, .text h4 a:not(.btn):hover, .text h5 a:not(.btn):hover, .text h6 a:not(.btn):hover, .text li a:not(.btn):hover, .text p a:not(.btn):hover {
  text-decoration: none;
  color: #b65224;
}
/* Flex helpers */
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.alc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
/* Spacing utilities */
.space {
  padding: 100px 0;
}
@media (max-width: 1366px) {
  .space {
    padding: 60px 0;
  }
}
@media (max-width: 1024px) {
  .space {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .space {
    padding: 25px 0;
  }
}
.space-bottom {
  padding-bottom: 100px;
}
@media (max-width: 1366px) {
  .space-bottom {
    padding-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .space-bottom {
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .space-bottom {
    padding-bottom: 25px;
  }
}
.outer-space {
  margin: 100px 0;
}
@media (max-width: 1366px) {
  .outer-space {
    margin: 60px 0;
  }
}
@media (max-width: 1024px) {
  .outer-space {
    margin: 40px 0;
  }
}
@media (max-width: 480px) {
  .outer-space {
    margin: 25px 0;
  }
}
.outer-space-bottom {
  margin-bottom: 100px;
}
@media (max-width: 1366px) {
  .outer-space-bottom {
    margin-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .outer-space-bottom {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .outer-space-bottom {
    margin-bottom: 25px;
  }
}
.last-no-spacing > *:last-child:not(.btn) {
  margin-bottom: 0;
  padding-bottom: 0;
}
/* Alignment text helpers */
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
/* Background image helper */
.cover {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
/* ========================================================================== */
/* 6) COMPONENTS                                                              */
/* ========================================================================== */
/* Contact Form 7 */
div.wpcf7 .wpcf7-form-control-wrap {
  display: block !important;
  margin-bottom: 20px;
  clear: both;
}
div.wpcf7 .wpcf7-not-valid-tip {
  position: absolute;
  inset: 0;
  height: 100%;
  line-height: 40px;
  padding: 0 23px;
  background: #fff;
  border: 1px solid #f00;
  text-align: left;
  cursor: pointer;
  font-family: 'Lato';
}
div.wpcf7 .wpcf7-response-output {
  width: 100%;
  margin: 10px 0 0 0;
  padding: 5px 20px;
  background: #fff;
  color: #000;
  text-align: center;
  font-family: 'Lato';
  font-size: 12px;
  line-height: 20px;
}
div.wpcf7 .btn-wrapper {
  display: inline-block;
  position: relative;
}
div.wpcf7 .wpcf7-spinner, div.wpcf7 .ajax-loader {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  margin: 0 10px;
}
/* Desktop main menu with hover dropdowns (non-mobile) */
@media (max-width: 1024px) {
  .mob-menu-actin-menu {
    display: none;
  }
}
.mob-menu-actin-menu > ul {
  font-size: 0;
}
.mob-menu-actin-menu > ul > li {
  display: inline-block;
}
.mob-menu-actin-menu > ul > li > a {
  display: inline-block;
  padding: 0 24px;
  line-height: 40px;
  font-weight: 700;
  font-size: 18px;
  color: #d76936;
  text-transform: uppercase;
}
.mob-menu-actin-menu > ul > li > a:hover {
  background: #d76936;
  color: #fff;
}
.mob-menu-actin-menu > ul > li.menu-item-has-children > .sub-menu {
  left: 0;
  top: 150%;
}
.mob-menu-actin-menu > ul > li.menu-item-has-children:hover > .sub-menu {
  top: 100%;
}
.mob-menu-actin-menu .menu-item-has-children {
  position: relative;
}
.mob-menu-actin-menu .menu-item-has-children .sub-menu {
  position: absolute;
  left: 100%;
  top: 100%;
  min-width: 100%;
  background: #d76936;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.mob-menu-actin-menu .menu-item-has-children .sub-menu li {
  display: block;
}
.mob-menu-actin-menu .menu-item-has-children .sub-menu li a {
  display: block;
  padding: 9px 10px 5px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.mob-menu-actin-menu .menu-item-has-children .sub-menu li a:hover {
  background: #b65224;
}
.mob-menu-actin-menu .menu-item-has-children .sub-menu li:hover > a, .mob-menu-actin-menu .menu-item-has-children .sub-menu li.current-menu-item > a {
  background: #b65224;
}
.mob-menu-actin-menu .menu-item-has-children:hover > a {
  background: #d76936;
  color: #fff;
}
.mob-menu-actin-menu .menu-item-has-children:hover > .sub-menu {
  top: 0%;
  visibility: visible;
  opacity: 1;
  pointer-events: initial;
}
/* Search */
.search-box {
  position: relative;
  display: inline-block;
  font-size: 0;
  z-index: 0;
}
.search-box svg {
  height: 20px;
  color: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.search-box .search-form {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.search-box .search-form button {
  position: absolute;
  inset: 0 auto 0 0;
  width: 40px;
  background: transparent;
  color: #252525;
  font-size: 20px;
  transition: 0.3s;
}
.search-box .search-form button:hover {
  color: #b65224;
}
.search-box .search-form.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.search-box input[type="text"] {
  width: 270px;
  padding: 0 40px;
  font-size: 16px;
}
.search-box .search-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent;
  font-size: 20px;
  color: #252525;
  cursor: pointer;
}
.search-box .search-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: 'x';
  font-size: 24px;
  opacity: 0;
  color: #000;
  transition: 0.3s;
}
.search-box .search-btn svg {
  transition: 0.3s;
}
.search-box .search-btn:hover svg {
  color: #b65224;
}
.search-box .search-btn.close svg {
  opacity: 0;
}
.search-box .search-btn.close::before {
  opacity: 1;
}
.search-box .search-btn.close:hover::before {
  color: #b65224;
}
/* Social icons */
.share-icons, .social-icons {
  display: inline-block;
  text-align: center;
  font-size: 0;
  cursor: pointer;
}
.share-icons a, .social-icons a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 5px;
  font-size: 20px;
  background: #d76936;
  border-radius: 5px;
  transition: 0.3s;
}
.share-icons a.facebook-icon:hover, .social-icons a.facebook-icon:hover {
  background: #3b5993;
}
.share-icons a.twitter-icon:hover, .social-icons a.twitter-icon:hover {
  background: #55acee;
}
.share-icons a.instagram-icon:hover, .social-icons a.instagram-icon:hover {
  background: #d6249f;
}
.share-icons a.linkedin-icon:hover, .social-icons a.linkedin-icon:hover {
  background: #0177b5;
}
.share-icons a.pinterest-icon:hover, .social-icons a.pinterest-icon:hover {
  background: #bd1e23;
}
.share-icons a.youtube-icon:hover, .social-icons a.youtube-icon:hover {
  background: #f80000;
}
.share-icons a.vimeo-icon:hover, .social-icons a.vimeo-icon:hover {
  background: #1ab7ea;
}
.share-icons a svg, .social-icons a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  height: 20px;
  color: #fff;
}
/* Selectric */
.selectric {
  border: none;
  border-bottom: 2px solid #d76936;
  background: transparent;
  transition: 0.3s;
}
.selectric .label {
  height: 40px;
  line-height: 40px;
  margin: 0 40px 0 12px;
  color: #000;
  font-family: 'Lato';
  font-size: 16px;
}
.selectric .button {
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: transparent;
}
.selectric .button::after {
  display: none;
}
.selectric .button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: #d76936 transparent transparent transparent;
  transition: 0.3s;
}
.selectric-hover .selectric, .selectric-focus .selectric {
  border-color: #8b3f1c;
}
.selectric-hover .selectric .button::before, .selectric-focus .selectric .button::before {
  color: #8b3f1c;
}
.selectric-items ul {
  margin: 0;
}
.selectric-items ul li {
  padding: 5px 12px;
  transition: 0.3s;
}
.selectric-items ul li::before {
  display: none;
}
.selectric-items ul li.highlighted {
  background: #d76936;
}
/* Pagination */
.pagination {
  margin-top: 40px;
}
@media (max-width: 480px) {
  .pagination {
    margin-top: 20px;
  }
}
.pagination .screen-reader-text {
  display: none;
}
.pagination .nav-links {
  text-align: center;
  font-size: 0;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 10px;
  padding: 5px 10px;
  font-size: 14px;
  color: #fff;
  background: #d76936;
  border-radius: 4px;
}
.pagination svg {
  height: 12px;
}
.pagination .current {
  background: #e8a88b;
}
.pagination a.page-numbers:hover {
  background: #e8a88b;
}
.pagination .prev, .pagination .next {
  position: relative;
}
/* ========================================================================== */
/* 7) HEADER / MENU WRAPPER & STATES                                          */
/* ========================================================================== */
/* Overlay and info blocks */
#m_over {
  display: none;
  position: absolute;
  inset: 0;
}
#add_info {
  position: relative;
  background: #fff;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
#add_info .wrap {
  padding: 30px 0;
}
#menu-wrap {
  margin: 0 auto;
  width: 100%;
}
.mob-menu-act #menu-wrap, .menu-inited #menu-wrap {
  min-height: 100%;
}
.menu-inited #m_over {
  display: block;
  background: #1c1c1e;
}
.menu-inited #main-menu {
  background: #1c1c1e;
}
#main-menu > li > a {
  display: inline-block;
  padding: 26px 20px;
}
/* Desktop >= 1025px */
@media only screen and (min-width: 1025px) {
  #main-menu {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  #main-menu .menu-item-has-children {
    position: relative;
  }
  #main-menu .menu-item-has-children > a {
    display: block;
    height: 100%;
  }
  #main-menu .menu-item-has-children > ul {
    position: absolute;
    left: 0;
    right: 0;
    top: 105%;
    min-width: 220px;
    max-height: 0;
    opacity: 0;
    transition: 0.4s;
  }
  #main-menu .menu-item-has-children > ul ul {
    top: 0;
    left: 105%;
    right: auto;
  }
  #menu-wrap {
    padding-top: 0 !important;
  }
  #menu-wrap #main-menu > .menu-item-has-children:hover > ul {
    opacity: 1;
    max-height: 100vh;
    top: 100%;
  }
  #menu-wrap #main-menu ul .menu-item-has-children:hover > ul {
    left: 100%;
    opacity: 1;
    max-height: 100vh;
  }
  #menu-wrap #main-menu a {
    display: block;
  }
}
/* Mobile / Tablet <= 1024px */
@media only screen and (max-width: 1024px) {
  /* Burger button */
  /* Mobile menu container */
  #main-menu > li {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  #main-menu > li:first-child {
    transition-delay: 0.1s;
  }
  #main-menu > li:nth-child(2) {
    transition-delay: 0.15s;
  }
  #main-menu > li:nth-child(3) {
    transition-delay: 0.2s;
  }
  #main-menu > li:nth-child(4) {
    transition-delay: 0.25s;
  }
  #main-menu > li:nth-child(5) {
    transition-delay: 0.3s;
  }
  #main-menu > li:nth-child(6) {
    transition-delay: 0.35s;
  }
  #main-menu > li:nth-child(7) {
    transition-delay: 0.4s;
  }
  #main-menu > li:nth-child(8) {
    transition-delay: 0.45s;
  }
  #main-menu > li:nth-child(9) {
    transition-delay: 0.5s;
  }
  #main-menu > li:nth-child(10) {
    transition-delay: 0.55s;
  }
  #main-menu > li a {
    display: block;
    padding: 16px 2%;
    font-size: 18px;
    color: #fff;
  }
  #main-menu li {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #3b3e46;
  }
  #main-menu li a {
    margin: 0;
    text-decoration: none;
    text-transform: uppercase;
  }
  #main-menu li a:hover {
    background: #555;
  }
  #main-menu .menu-item-has-children > span {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, .3);
    cursor: pointer;
  }
  #main-menu .menu-item-has-children > span:before, #main-menu .menu-item-has-children > span:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ccc;
    transform: translate(-50%, -50%);
  }
  #main-menu .menu-item-has-children > span:before {
    width: 15px;
    height: 3px;
  }
  #main-menu .menu-item-has-children > span:after {
    width: 3px;
    height: 15px;
  }
  #main-menu li li a {
    padding-left: 15px;
  }
  #main-menu li li li a {
    padding-left: 20px;
  }
  #main-menu li li li li a {
    padding-left: 25px;
  }
  #main-menu .sub-menu {
    overflow: hidden;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: opacity 0.3s, transform 1s, max-height 0.3s;
  }
  #main-menu .sub-menu li {
    background: rgba(0, 0, 0, .15);
    border-top: 1px solid #3b3e46;
    border-bottom: 0;
  }
  #main-menu .menu-item-has-children > span.act + ul {
    max-height: 100vh;
    transform: scaleY(1);
    opacity: 1;
    transition: opacity 1s, transform 0.3s, max-height 0.5s;
  }
  #main-menu .menu-item-has-children > span.act:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  #main-menu {
    height: auto;
    padding: 0 3% 20px;
    flex-direction: column;
    justify-content: flex-start;
  }
  #main-menu:before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1c1c1e;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out 0.1s;
  }
  header .logo {
    position: relative;
    z-index: 10;
  }
  html.mob-menu-act {
    overflow: hidden;
  }
  html.mob-menu-act body {
    overflow: hidden;
  }
  html.mob-menu-act #main-menu:before {
    transform: scaleY(1);
  }
  html.mob-menu-act #main-menu > li {
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
  }
  html.mob-menu-act #menu-wrap {
    overflow: auto;
    max-height: 100vh;
    max-height: 100svh;
  }
  html.mob-menu-act #add_info {
    max-height: 1000vh;
    transform: translateY(0);
    opacity: 1;
  }
  html.mob-menu-act #m:before {
    animation: m1 0.5s ease forwards 0.1s;
  }
  html.mob-menu-act #m:after {
    animation: m2 0.5s ease forwards 0.1s;
    opacity: 0;
  }
  html.menu-inited #add_info {
    transition-delay: 0s !important;
    max-height: 1000vh;
  }
  html.back-anim #add_info {
    opacity: 0 !important;
  }
  html.back-anim #main-menu li {
    transition-delay: 0s !important;
  }
  html.back-anim #main-menu {
    background: rgba(0, 0, 0, 0);
  }
  #m {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 10;
    width: 40px;
    height: 40px;
    overflow: hidden;
    transform: translateY(-50%);
    cursor: pointer;
    /* Base burger lines */
  }
  #m:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: #4a5eff;
  }
  #m:after {
    content: "";
    position: absolute;
    top: 18px;
    right: 6px;
    width: 30px;
    height: 4px;
    background: #4a5eff;
    box-shadow: 0 -10px 0 0 #4a5eff, 0 10px 0 0 #4a5eff;
    transition: 0.3s ease;
    opacity: 1;
  }
  #menu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
}
/* State when closing animation is needed */
html.back-anim #m:after {
  transition: 0;
  box-shadow: none;
  opacity: 0;
}
/* ========================================================================== */
/* 8) KEYFRAMES                                                               */
/* ========================================================================== */
@keyframes m1 {
  0% {
    right: 0;
  }
  10% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  31%, 100% {
    opacity: 0;
    width: 30px;
    height: 4px;
    transform: rotate(-45deg) translate(100%, 0);
    transform-origin: 100% 100%;
    font-size: 0;
    right: 50%;
    top: 50%;
  }
  100% {
    opacity: 1;
    transform: rotate(-45deg) translate(17px, 2px);
    margin: -2.5px 3px 0 0;
    background: #fff;
  }
}
@keyframes m2 {
  0% {
    right: 0;
  }
  10% {
    opacity: 0;
  }
  30% {
    right: 100px;
    opacity: 0;
    transform: none;
  }
  31%, 100% {
    opacity: 0;
    width: 30px;
    height: 4px;
    transform: rotate(45deg) translate(100%, 0);
    transform-origin: 100% 100%;
    font-size: 0;
    right: 50%;
    top: 50%;
    box-shadow: none;
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 0);
    margin: -2.5px 3px 0 0;
    background: #fff;
  }
}
/* ========================================================================== */
/* 9) TEMPORARY STYLES (REMOVE LATER)                                         */
/* ========================================================================== */
/* Temporary visual aids */
.logo {
  width: 130px;
}
.logo svg {
  width: 100%;
  height: auto;
}
header {
  background: #222;
}
header > * {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#menu-wrap {
  margin: 0 auto;
}
header {
  position: relative;
  z-index: 100;
  padding: 15px 0;
}
@media (max-width: 768px) {
  header > .wrap {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  header .custom-logo-link {
    flex-basis: 100%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
  }
}
header .logo:hover {
  opacity: 0.7;
}
header .header-links {
  display: flex;
}
@media (max-width: 768px) {
  header .header-links {
    flex-basis: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  header .header-links .btn {
    min-width: 140px;
  }
}
header .header-links .header-phone {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  position: relative;
  padding-left: 68px;
  display: flex;
  align-items: center;
  margin-right: 32px;
}
@media (max-width: 1024px) {
  header .header-links .header-phone {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  header .header-links .header-phone {
    padding-left: 0;
  }
}
header .header-links .header-phone .icon {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  margin-right: 13px;
  background: #d76936;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  header .header-links .header-phone .icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}
@media (max-width: 480px) {
  header .header-links .header-phone .icon {
    margin-right: 5px;
  }
}
header .header-links .header-phone .icon:hover {
  background: #b65224;
}
header .header-links .header-phone .icon::before {
  content: url('../img/call-calling.svg');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .header-links .header-phone .text {
  flex: 1;
}
@media (max-width: 1024px) {
  header .header-links .header-phone .text {
    font-size: 18px;
  }
}
.submit-wrap {
  display: inline-block;
  position: relative;
  padding-right: 50px;
}
.submit-wrap .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.submit-wrap.left-loader {
  padding-right: 0;
  padding-left: 50px;
}
.submit-wrap.left-loader .wpcf7-spinner {
  right: auto;
  left: 0;
}
footer {
  background: #222;
  color: #fff;
}
footer .top {
  padding-top: 35px;
  align-items: flex-end;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  footer .top {
    margin-bottom: 30px;
    display: block;
  }
}
@media (max-width: 768px) {
  footer .top .main-text {
    margin-bottom: 20px;
  }
}
footer .top .main-text h2 {
  font-size: clamp(36px, 8vw, 150px);
  font-family: 'Unbounded';
  line-height: 1;
  font-weight: 600;
}
footer .bottom {
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
@media (max-width: 768px) {
  footer .bottom {
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  footer .bottom > * {
    flex-basis: 100%;
    margin-bottom: 15px;
  }
}
footer .bottom h4 {
  font-size: 20px;
  font-family: 'Unbounded';
  font-weight: 500;
  margin-bottom: 5px;
}
footer .bottom p {
  font-size: 24px;
}
@media (max-width: 480px) {
  footer .bottom p {
    font-size: 20px;
  }
}
footer .bottom .s-icons h4 {
  margin-bottom: 27px;
}
footer .bottom .s-icons .items {
  display: flex;
}
footer .bottom .s-icons a {
  margin-right: 24px;
  border-radius: 50%;
}
footer .bottom .s-icons a:last-child {
  margin-right: 0;
}
footer .bottom .s-icons img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
footer .copyright {
  text-align: center;
  padding: 15px 0;
}
footer .copyright span {
  display: inline-block;
  margin: 0 10px;
}
footer #menu-footer-menu li {
  margin-bottom: 10px;
}
footer #menu-footer-menu li a {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.acc-section {
  margin: 120px 0;
  color: #fff;
}
@media (max-width: 1024px) {
  .acc-section {
    margin: 60px 0;
  }
}
@media (max-width: 768px) {
  .acc-section {
    margin: 35px 0;
  }
}
.acc-section .inner-wrap {
  background: #222;
  padding: 80px 100px 0 100px;
  border-radius: 32px;
}
@media (max-width: 1280px) {
  .acc-section .inner-wrap {
    padding: 60px 35px 0 35px;
  }
}
.acc-section .inner-wrap .left .image {
  margin-bottom: -50px;
}
@media (max-width: 1024px) {
  .acc-section .inner-wrap .left .image {
    margin-bottom: 0;
  }
}
.acc-section .inner-wrap .left h3 {
  margin-bottom: 44px;
}
@media (max-width: 1024px) {
  .acc-section .inner-wrap .left h3 {
    margin-bottom: 20px;
  }
}
.acc-section .inner-wrap .left .image img {
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .acc-section .inner-wrap .left .image img {
    width: 100%;
    aspect-ratio: 1.8;
    object-fit: cover;
  }
}
.acc-section .inner-wrap .right-title {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .acc-section .inner-wrap .right-title {
    margin-bottom: 20px;
  }
}
.acc-section .inner-wrap .right-title p {
  font-size: clamp(14px, 3vw, 24px);
}
.acc .item {
  position: relative;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.acc .item:last-child {
  border-bottom: none;
}
.acc .item h3 {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  padding: 5px 45px 5px 5px;
  position: relative;
  font-family: 'Unbounded';
  font-weight: 600;
}
.acc .item h3 span {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  width: 21px;
  height: 21px;
  position: absolute;
}
.acc .item h3 span:before, .acc .item h3 span:after {
  content: '';
  position: absolute;
  background-color: #d76936;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.acc .item h3 span:before {
  width: 21px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.acc .item h3 span:after {
  width: 2px;
  height: 21px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.acc .item h3.active span:after {
  opacity: 0;
}
.acc .item .info {
  display: none;
  padding-left: 29px;
  padding-top: 25px;
  padding-right: 15px;
  color: rgba(255, 255, 255, .7);
}
@media (max-width: 768px) {
  .acc .item .info {
    padding-left: 10px;
    padding-top: 10px;
  }
}
.col-6 {
  flex-basis: 48.5%;
}
@media (max-width: 1024px) {
  .md-12 {
    flex-basis: 100%;
  }
}
@media (max-width: 1024px) {
  .md-bottom {
    margin-bottom: 30px;
  }
}
.follow-circle {
  position: fixed;
  top: -100px;
  left: -100px;
  width: 25px;
  height: 25px;
  background-color: #0c59af;
  /*#031e9f; */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  /* Keep it visible first; re-enable if you want the effect */
  /* mix-blend-mode: difference; */
  /* Center the circle on its x/y coordinates */
  transform: translate(-50%, -50%) scale(1);
  /* Transition only things you’ll change via CSS (not GSAP) */
  transition: transform 0.3s cubic-bezier(0.1, 0.3, 0.5, 1), opacity 0.3s cubic-bezier(0.1, 0.3, 0.5, 1);
  will-change: transform, opacity;
  mix-blend-mode: difference;
}
.follow-circle.cursor-hover {
  transform: translate(-50%, -50%) scale(2);
}
.cursor-small .follow-circle {
  transform: translate(-50%, -50%) scale(0.5);
  mix-blend-mode: normal;
}
.cursor-small .follow-circle.cursor-hover {
  transform: translate(-50%, -50%) scale(1.5);
  mix-blend-mode: difference;
}
body {
  overflow-x: hidden;
}
.ul-style li, .who-we-are .wrapper .content_wwa ul li, .why-choose-us .wrap .right-wrapper ul li {
  position: relative;
  padding-left: 27px;
  opacity: 0.7;
}
.ul-style li:before, .who-we-are .wrapper .content_wwa ul li:before, .why-choose-us .wrap .right-wrapper ul li:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  left: 0;
  top: 2px;
  background: url("data:image/svg+xml;utf8,<svg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'><path d='M16 8C10 8 8 2.66667 8 0C8 6 2.66667 8 0 8C6 8 8 13.3333 8 16C8 10 13.3333 8 16 8Z' fill='%2366B2B2'/></svg>") no-repeat center center;
  background-size: contain;
}
.ul-style.white li:before, .who-we-are .wrapper .content_wwa ul.white li:before, .who-we-are .wrapper .content_wwa ul li:before, .why-choose-us .wrap .right-wrapper ul.white li:before {
  background: url("data:image/svg+xml;utf8,<svg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'><path d='M16 8C10 8 8 2.66667 8 0C8 6 2.66667 8 0 8C6 8 8 13.3333 8 16C8 10 13.3333 8 16 8Z' fill='%23fff'/></svg>") no-repeat center center;
}
.stars {
  position: absolute;
  z-index: 10;
  width: 75px;
  height: 78px;
}
.stars .star-1, .stars .star-2, .stars .star-3 {
  position: absolute;
  background: url("data:image/svg+xml;utf8,<svg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M12 0L15.355 8.16025H24L16.875 14.1213L19.2302 24L12 17.8397L4.76984 24L7.125 14.1213L0 8.16025H8.645L12 0Z' fill='%23FFF'/></svg>") no-repeat center center;
  background-size: contain;
}
.stars .star-1 {
  width: 16px;
  height: 16px;
  top: 0;
  right: 0;
}
.stars .star-2 {
  width: 23px;
  height: 23px;
  top: 4px;
  left: 0;
}
.stars .star-3 {
  width: 42px;
  height: 42px;
  bottom: 0;
  right: 11px;
}
.acc-section .inner-wrap .left .image {
  overflow: hidden;
  border-radius: 32px;
}
.who-we-are {
  margin: 10px 0 120px;
}
@media (max-width: 1024px) {
  .who-we-are {
    margin: 45px 0;
  }
}
@media (max-width: 768px) {
  .who-we-are {
    margin: 35px 0;
  }
}
.who-we-are .background-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.who-we-are .background-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
@media (max-width: 1024px) {
  .who-we-are .background-image img {
    object-fit: cover;
    object-position: bottom left;
    border-radius: 32px;
  }
}
@media (max-width: 768px) {
}
.who-we-are .stars {
  right: 52%;
  transform: translateX(50%);
  bottom: 315px;
}
@media (max-width: 1440px) {
  .who-we-are .stars {
    bottom: 185px;
  }
}
@media (max-width: 1024px) {
  .who-we-are .stars {
    left: auto;
    right: 160px;
    bottom: auto;
    top: 180px;
  }
}
@media (max-width: 768px) {
  .who-we-are .stars {
    display: none;
  }
}
.who-we-are .wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 264px;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .who-we-are .wrapper {
    gap: 13%;
  }
}
@media (max-width: 1024px) {
  .who-we-are .wrapper {
    gap: 20px;
    flex-direction: column-reverse;
    align-items: center;
  }
}
.who-we-are .wrapper .image {
  position: relative;
  flex-basis: 32.4%;
  text-align: center;
}
@media (max-width: 1024px) {
  .who-we-are .wrapper .image {
    flex-basis: auto;
  }
}
.who-we-are .wrapper .image:before {
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
  right: 0;
  border-radius: 500px 500px 0 0;
  aspect-ratio: 1.0376940133;
  background: #7ec4b8;
  bottom: 0;
  z-index: -1;
}
.who-we-are .wrapper .image img {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.who-we-are .wrapper .content_wwa {
  flex-basis: 33.79%;
  margin-bottom: 87px;
  color: #fff;
  padding-top: 40px;
}
@media (max-width: 1240px) {
  .who-we-are .wrapper .content_wwa {
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .who-we-are .wrapper .content_wwa {
    flex-basis: auto;
    margin-bottom: 0;
  }
}
.who-we-are .wrapper .content_wwa h2 {
  margin-bottom: 24px;
}
.who-we-are .wrapper .content_wwa p {
  font-weight: 500;
  opacity: 0.7;
}
.our-cleaning-services {
  margin: 120px 0;
}
@media (max-width: 1024px) {
  .our-cleaning-services {
    margin: 45px 0;
  }
}
@media (max-width: 768px) {
  .our-cleaning-services {
    margin: 35px 0;
  }
}
.our-cleaning-services .wrap .top-title {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .our-cleaning-services .wrap .top-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .our-cleaning-services .wrap .top-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .our-cleaning-services .wrap .top-title {
    margin-bottom: 20px;
  }
}
.our-cleaning-services .wrap .cards-link {
  display: flex;
  justify-content: flex-start;
  flex-flow: wrap;
  transition: 0.3s;
  margin: 0 -1%;
  width: 102%;
  margin-bottom: 60px;
}
.our-cleaning-services .wrap .cards-link > * {
  width: 23%;
  margin: 0 1% 1.25em;
}
@media (max-width: 1024px) {
  .our-cleaning-services .wrap .cards-link {
    display: flex;
    justify-content: flex-start;
    flex-flow: wrap;
    transition: 0.3s;
    margin: 0 -1%;
    width: 102%;
    margin-bottom: 40px;
  }
  .our-cleaning-services .wrap .cards-link > * {
    width: 48%;
    margin: 0 1% 1.5em;
  }
}
@media (max-width: 768px) {
  .our-cleaning-services .wrap .cards-link {
    display: flex;
    justify-content: flex-start;
    flex-flow: wrap;
    transition: 0.3s;
    margin: 0 -0.75%;
    width: 101.5%;
    margin-bottom: 30px;
  }
  .our-cleaning-services .wrap .cards-link > * {
    width: 48.5%;
    margin: 0 0.75% 1.125em;
  }
}
@media (max-width: 480px) {
  .our-cleaning-services .wrap .cards-link {
    display: flex;
    justify-content: flex-start;
    flex-flow: wrap;
    transition: 0.3s;
    margin: 0 -0.5%;
    width: 101%;
    margin-bottom: 30px;
  }
  .our-cleaning-services .wrap .cards-link > * {
    width: 99%;
    margin: 0 0.5% 1em;
  }
}
.our-cleaning-services .wrap .cards-link a {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  padding: 32px;
}
@media (max-width: 768px) {
  .our-cleaning-services .wrap .cards-link a {
    padding: 16px;
  }
}
.our-cleaning-services .wrap .cards-link a:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.our-cleaning-services .wrap .cards-link a:before {
  position: absolute;
  content: '';
  top: 32px;
  right: 32px;
  width: 28px;
  height: 28px;
  background: url('data:image/svg+xml;utf8,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="28" height="28" rx="14" fill="%23222222"/><path d="M17.4499 18.7426L19.4496 18.7426L19.4496 9.25744H9.96443V11.2571H16.0356L9.25732 18.0355L10.6715 19.4497L17.4499 12.6713L17.4499 18.7426Z" fill="white"/></svg>') center/contain no-repeat;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .our-cleaning-services .wrap .cards-link a:before {
    top: 16px;
    right: 16px;
  }
}
.our-cleaning-services .wrap .cards-link a .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 80px;
}
@media (max-width: 1440px) {
  .our-cleaning-services .wrap .cards-link a .icon {
    margin-bottom: 40px;
  }
}
@media (max-width: md) {
}
@media (max-width: sm) {
}
@media (max-width: xs) {
}
.our-cleaning-services .wrap .cards-link a .icon img {
  width: 100%;
  height: 100%;
}
.our-cleaning-services .wrap .cards-link a .content {
  color: #222;
}
.our-cleaning-services .wrap .cards-link a .content h4 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #222;
  margin-bottom: 8px;
}
.our-cleaning-services .wrap .cards-link a .content p {
  letter-spacing: -0.02em;
  opacity: 0.7;
}
.our-cleaning-services .wrap .text-below {
  text-align: center;
}
.our-cleaning-services .wrap .text-below .text-below-wrapper {
  margin-bottom: 24px;
}
.our-cleaning-services .wrap .text-below .text-below-wrapper p {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: #222;
  opacity: 0.7;
}
.our-cleaning-services .wrap .text-below .text-below-wrapper p:last-child {
  margin-bottom: 0;
}
.our-cleaning-services .wrap .text-below .btn:hover, .our-cleaning-services .wrap .text-below .btn:focus {
  filter: brightness(0.9);
}
.why-choose-us {
  overflow-x: clip;
  margin: 120px 0 169px;
}
@media (max-width: 1024px) {
  .why-choose-us {
    margin: 45px 0 100px;
  }
}
@media (max-width: 768px) {
  .why-choose-us {
    margin: 35px 0 80px;
  }
}
@media (max-width: 480px) {
  .why-choose-us {
    margin: 25px 0 60px;
  }
}
.why-choose-us .wrap {
  display: flex;
  gap: 244px;
}
@media (max-width: 1240px) {
  .why-choose-us .wrap {
    gap: 200px;
  }
}
@media (max-width: 1024px) {
  .why-choose-us .wrap {
    flex-direction: column-reverse;
    gap: 25px;
  }
}
@media (max-width: 768px) {
}
.why-choose-us .wrap .left-wrapper {
  flex-basis: 50%;
  position: relative;
  padding-right: 292px;
  padding: 52px 292px 58px 32px;
}
@media (max-width: 1440px) {
  .why-choose-us .wrap .left-wrapper {
    flex-basis: 55%;
  }
}
@media (max-width: 1240px) {
  .why-choose-us .wrap .left-wrapper {
    flex-basis: 60%;
  }
}
@media (max-width: 1024px) {
  .why-choose-us .wrap .left-wrapper {
    padding: 52px 260px 58px 32px;
  }
}
@media (max-width: 660px) {
  .why-choose-us .wrap .left-wrapper {
    padding: 35px 180px 35px 32px;
  }
}
@media (max-width: 580px) {
  .why-choose-us .wrap .left-wrapper {
    padding: 25px 100px 25px 22px;
  }
}
@media (max-width: 480px) {
  .why-choose-us .wrap .left-wrapper {
    padding: 25px 50px 25px 22px;
  }
}
.why-choose-us .wrap .left-wrapper .stars {
  right: 38%;
}
@media (max-width: 1024px) {
  .why-choose-us .wrap .left-wrapper .stars {
    right: 25%;
  }
}
@media (max-width: 768px) {
  .why-choose-us .wrap .left-wrapper .stars {
    right: 20%;
  }
}
@media (max-width: 580px) {
  .why-choose-us .wrap .left-wrapper .stars {
    right: 7%;
    bottom: 25px;
  }
}
@media (max-width: 480px) {
  .why-choose-us .wrap .left-wrapper .stars {
    display: none;
  }
}
.why-choose-us .wrap .left-wrapper .background-image-wcu {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.why-choose-us .wrap .left-wrapper .background-image-wcu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width='732' height='409' viewBox='0 0 732 409' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M640.509 0C658.182 6.35853e-06 672.509 14.3279 672.509 32.001V97.7881C672.509 112.16 682.091 124.768 695.938 128.618L708.571 132.132C722.418 135.982 732 148.59 732 162.962V409H0V0H640.509Z' fill='%23FA0808'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg width='732' height='409' viewBox='0 0 732 409' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M640.509 0C658.182 6.35853e-06 672.509 14.3279 672.509 32.001V97.7881C672.509 112.16 682.091 124.768 695.938 128.618L708.571 132.132C722.418 135.982 732 148.59 732 162.962V409H0V0H640.509Z' fill='%23FA0808'/></svg>");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top right;
  mask-position: top right;
  border-radius: 32px 0 32px 32px;
}
.why-choose-us .wrap .left-wrapper .top-text {
  position: relative;
  z-index: 1;
  margin-bottom: 76px;
}
@media (max-width: 1024px) {
  .why-choose-us .wrap .left-wrapper .top-text {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .why-choose-us .wrap .left-wrapper .top-text {
    margin-bottom: 30px;
  }
}
.why-choose-us .wrap .left-wrapper .top-text p {
  opacity: 0.7;
  color: #fff;
}
.why-choose-us .wrap .left-wrapper .top-text p:has(strong) {
  opacity: 1;
}
.why-choose-us .wrap .left-wrapper .top-text p strong {
  position: relative;
  padding-left: 32px;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #fff;
}
.why-choose-us .wrap .left-wrapper .top-text p strong:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  left: 0;
  top: 2px;
  background: url("data:image/svg+xml;utf8,<svg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'><path d='M16 8C10 8 8 2.66667 8 0C8 6 2.66667 8 0 8C6 8 8 13.3333 8 16C8 10 13.3333 8 16 8Z' fill='%23fff'/></svg>") no-repeat center center;
  background-size: contain;
}
.why-choose-us .wrap .left-wrapper .top-text h3 {
  font-family: 'Unbounded';
  font-weight: 800;
  font-size: clamp(28px, 3vw, 32px);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.why-choose-us .wrap .left-wrapper .top-text h3 br {
  display: none;
}
.why-choose-us .wrap .left-wrapper .btn-with-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .why-choose-us .wrap .left-wrapper .btn-with-text {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.why-choose-us .wrap .left-wrapper .btn-with-text .text-after-button {
  color: #fff;
  opacity: 0.7;
  max-width: 161px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}
@media (max-width: 768px) {
  .why-choose-us .wrap .left-wrapper .btn-with-text .text-after-button {
    max-width: 100%;
  }
}
.why-choose-us .wrap .left-wrapper .center-image {
  position: absolute;
  right: -214px;
  bottom: -124px;
}
@media (max-width: 1024px) {
  .why-choose-us .wrap .left-wrapper .center-image {
    bottom: -106px;
    right: -182px;
    transform: rotateY(180deg);
  }
}
@media (max-width: 768px) {
  .why-choose-us .wrap .left-wrapper .center-image {
    bottom: -106px;
    right: -182px;
  }
}
@media (max-width: 660px) {
  .why-choose-us .wrap .left-wrapper .center-image {
    bottom: -176px;
  }
}
@media (max-width: 580px) {
  .why-choose-us .wrap .left-wrapper .center-image {
    display: none;
  }
}
.why-choose-us .wrap .right-wrapper {
  flex: 1;
  align-self: center;
}
@media (max-width: 1024px) {
  .why-choose-us .wrap .right-wrapper {
    align-self: flex-start;
  }
}
@media (max-width: 1024px) {
  .why-choose-us .wrap .right-wrapper h2 {
    margin-bottom: 10px;
  }
  .why-choose-us .wrap .right-wrapper h2 br {
    display: none;
  }
}
@media (max-width: 1024px) {
  .why-choose-us .wrap .right-wrapper ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.make-your-home {
  overflow-x: clip;
  margin: 150px 0;
}
@media (max-width: 1024px) {
  .make-your-home {
    margin: 100px 0 80px;
  }
}
@media (max-width: 768px) {
  .make-your-home {
    margin: 80px 0 60px;
  }
}
@media (max-width: 480px) {
  .make-your-home {
    margin: 60px 0 40px;
  }
}
.make-your-home .wrap {
  display: flex;
  gap: 22px;
}
@media (max-width: 1024px) {
  .make-your-home .wrap {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 768px) {
}
.make-your-home .wrap .left {
  flex-basis: 40.5%;
}
.make-your-home .wrap .left .top-block {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .make-your-home .wrap .left .top-block {
    text-align: center;
  }
}
.make-your-home .wrap .left .top-block h2 {
  margin-bottom: 25px;
}
.make-your-home .wrap .left .top-block p {
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  color: #222;
  opacity: 0.7;
  max-width: 488px;
}
@media (max-width: 1024px) {
  .make-your-home .wrap .left .top-block p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
}
.make-your-home .wrap .left .buttons {
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .make-your-home .wrap .left .buttons {
    justify-content: center;
  }
}
.make-your-home .wrap .right {
  padding: 202px 441px 35px 53px;
  flex: 1;
  position: relative;
}
@media (max-width: 1440px) {
  .make-your-home .wrap .right {
    padding: 202px 300px 35px 53px;
  }
}
@media (max-width: 768px) {
  .make-your-home .wrap .right {
    padding: 202px 82px 35px 53px;
  }
}
@media (max-width: 480px) {
  .make-your-home .wrap .right {
    padding: 153px 82px 35px 22px;
  }
}
.make-your-home .wrap .right .stars {
  top: 51px;
  left: 147px;
}
@media (max-width: 768px) {
  .make-your-home .wrap .right .stars {
    left: 100px;
    top: 31px;
  }
}
.make-your-home .wrap .right .background-image-lm {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.make-your-home .wrap .right .background-image-lm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width='834' height='409' viewBox='0 0 834 409' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M834 409H0V192.48C0.000209826 178.376 9.23499 165.935 22.7354 161.852L43.8154 155.476C57.3159 151.392 66.5508 138.95 66.5508 124.846V31.999C66.551 14.3512 80.8372 0.0405978 98.4756 0H834V409Z' fill='%23D9D9D9'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg width='834' height='409' viewBox='0 0 834 409' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M834 409H0V192.48C0.000209826 178.376 9.23499 165.935 22.7354 161.852L43.8154 155.476C57.3159 151.392 66.5508 138.95 66.5508 124.846V31.999C66.551 14.3512 80.8372 0.0405978 98.4756 0H834V409Z' fill='%23D9D9D9'/></svg>");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top left;
  mask-position: top left;
  border-radius: 0 32px 32px 32px;
}
.make-your-home .wrap .right .image-lm {
  position: absolute;
  z-index: 1;
  bottom: -62px;
  right: -137px;
}
@media (max-width: 1440px) {
  .make-your-home .wrap .right .image-lm {
    right: -250px;
  }
}
@media (max-width: 1024px) {
  .make-your-home .wrap .right .image-lm {
    right: -106px;
  }
}
@media (max-width: 768px) {
  .make-your-home .wrap .right .image-lm {
    right: -50px;
    width: 300px;
    bottom: auto;
    top: 100px;
  }
}
@media (max-width: 480px) {
  .make-your-home .wrap .right .image-lm {
    top: 42px;
  }
}
.make-your-home .wrap .right .contact-info {
  position: relative;
  z-index: 1;
}
.make-your-home .wrap .right .contact-info .item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.make-your-home .wrap .right .contact-info .item:not(:last-child) {
  margin-bottom: 32px;
}
.make-your-home .wrap .right .contact-info .item .icon {
  flex-basis: 70px;
  width: 70px;
  height: 70px;
  padding: 23px;
  border-radius: 100%;
  background: #222;
}
@media (max-width: 768px) {
  .make-your-home .wrap .right .contact-info .item .icon {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
    padding: 13px;
  }
}
.make-your-home .wrap .right .contact-info .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.make-your-home .wrap .right .contact-info .item .contact-text {
  flex: 1;
  color: #fff;
}
.make-your-home .wrap .right .contact-info .item .contact-text p {
  margin-bottom: 1px;
}
.make-your-home .wrap .right .contact-info .item .contact-text a {
  color: #fff;
}
.make-your-home .wrap .right .contact-info .item .contact-text a:hover {
  text-decoration: underline;
}
.gallery-slider--section {
  margin: 120px auto;
  overflow: hidden;
  width: 1920px;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .gallery-slider--section {
    max-width: 96%;
    margin: 80px 0;
  }
}
@media (max-width: 768px) {
  .gallery-slider--section {
    margin: 80px 0 60px;
  }
}
@media (max-width: 576px) {
  .gallery-slider--section {
    margin: 40px 0;
  }
}
.gallery-slider--wrapper {
  margin-left: -10%;
  margin-right: -10%;
}
@media (max-width: 1024px) {
  .gallery-slider--wrapper {
    margin: 0 auto;
  }
}
.gallery-slider--wrapper .mySwiper {
  padding-top: 180px;
  overflow: visible;
}
@media (max-width: 1024px) {
  .gallery-slider--wrapper .mySwiper {
    padding-top: 40px;
  }
}
.gallery-slider--wrapper .mySwiper .swiper-wrapper .swiper-slide .inner {
  position: relative;
  aspect-ratio: 1;
  transform: scale(0.8);
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .gallery-slider--wrapper .mySwiper .swiper-wrapper .swiper-slide .inner {
    transform: none;
  }
}
.gallery-slider--wrapper .mySwiper .swiper-wrapper .swiper-slide .inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-slider--wrapper .mySwiper .swiper-wrapper .swiper-slide-next .inner {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .gallery-slider--wrapper .mySwiper .swiper-wrapper .swiper-slide-next .inner {
    transform: none;
  }
}
.gallery-slider--wrapper .mySwiper .swiper-wrapper .swiper-slide-next + .swiper-slide .inner {
  transform: none;
}
.gallery-slider--wrapper .mySwiper .swiper-wrapper .swiper-slide-next + .swiper-slide .inner {
  transform: none;
  margin-top: -200px;
}
@media (max-width: 1480px) {
  .gallery-slider--wrapper .mySwiper .swiper-wrapper .swiper-slide-next + .swiper-slide .inner {
    margin-top: -140px;
  }
}
@media (max-width: 1280px) {
  .gallery-slider--wrapper .mySwiper .swiper-wrapper .swiper-slide-next + .swiper-slide .inner {
    margin-top: -100px;
  }
}
@media (max-width: 1024px) {
  .gallery-slider--wrapper .mySwiper .swiper-wrapper .swiper-slide-next + .swiper-slide .inner {
    margin-top: 0;
  }
}
.gallery-slider--wrapper .slider-navigation {
  display: flex;
  justify-content: flex-end;
  width: 750px;
  max-width: 98%;
  margin: 0 auto;
}
@media (max-width: 1480px) {
  .gallery-slider--wrapper .slider-navigation {
    width: 600px;
  }
}
@media (max-width: 1280px) {
  .gallery-slider--wrapper .slider-navigation {
    width: 550px;
  }
}
@media (max-width: 1024px) {
  .gallery-slider--wrapper .slider-navigation {
    width: 100%;
    justify-content: center;
    margin: 40px auto 0;
  }
}
.gallery-slider--wrapper .slider-navigation .swiper-pagination {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 7px 0;
}
@media (max-width: 1024px) {
  .gallery-slider--wrapper .slider-navigation .swiper-pagination {
    transform: translate(0);
  }
}
.gallery-slider--wrapper .slider-navigation .swiper-pagination .swiper-pagination-bullet {
  transform: scale(1);
  background: #69a96e;
  margin: 0 7px;
  width: 7px;
  height: 7px;
}
.gallery-slider--wrapper .slider-navigation .swiper-pagination .swiper-pagination-bullet:after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 18px;
  height: 18px;
  border: 1px solid #69a96e;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.gallery-slider--wrapper .slider-navigation .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
  visibility: visible;
}
#get-a-quote-popup {
  max-width: 700px;
  padding: 60px 40px;
  border-radius: 25px;
}
@media (max-width: 576px) {
  #get-a-quote-popup {
    padding: 40px 20px;
  }
}
#get-a-quote-popup .text h4 {
  font-size: 20px;
}
@media (max-width: 1024px) {
  #get-a-quote-popup .text h4 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #get-a-quote-popup .text h4 {
    font-size: 16px;
  }
}
.testimonials_bl {
  padding: 104px 0 0;
}
@media (max-width: 1024px) {
  .testimonials_bl {
    padding: 40px 0 40px;
  }
}
.testimonials_bl .wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 783px;
}
@media (max-width: 1024px) {
  .testimonials_bl .wrap {
    min-height: 1px;
  }
}
.testimonials_bl .testimonials-items {
  max-width: 712px;
  background: #181a1e;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width='732' height='409' viewBox='0 0 732 409' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M640.509 0C658.182 6.35853e-06 672.509 14.3279 672.509 32.001V97.7881C672.509 112.16 682.091 124.768 695.938 128.618L708.571 132.132C722.418 135.982 732 148.59 732 162.962V409H0V0H640.509Z' fill='%23FA0808'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg width='732' height='409' viewBox='0 0 732 409' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M640.509 0C658.182 6.35853e-06 672.509 14.3279 672.509 32.001V97.7881C672.509 112.16 682.091 124.768 695.938 128.618L708.571 132.132C722.418 135.982 732 148.59 732 162.962V409H0V0H640.509Z' fill='%23FA0808'/></svg>");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: top right;
  mask-position: top right;
  border-radius: 32px 0 32px 32px;
}
.testimonials_bl .testimonials-items .title-testi {
  padding: 60px 60px 120px;
}
@media (max-width: 1024px) {
  .testimonials_bl .testimonials-items .title-testi {
    padding: 40px 40px 40px;
  }
}
.testimonials_bl .testimonials-items .title-testi figure {
  margin-bottom: 20px;
}
.testimonials_bl .testimonials-items .title-testi h2 {
  color: #fff;
}
.testimonials_bl .testimonials-items .testimonials-item {
  padding: 60px;
}
@media (max-width: 1024px) {
  .testimonials_bl .testimonials-items .testimonials-item {
    padding: 40px 40px 40px;
  }
}
.testimonials_bl .testimonials-items .testimonials-item p {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
}
.testimonials_bl .testimonials-items .testimonials-item .name span {
  font-family: 'Unbounded';
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
.testimonials_bl .testimonials-items .pagination-testi {
  padding: 60px;
  background: #d76936;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .testimonials_bl .testimonials-items .pagination-testi {
    padding: 40px 40px 40px;
  }
}
.testimonials_bl .testimonials-items .pagination-testi .swiper-pagination {
  position: static;
  transform: none;
}
.testimonials_bl .testimonials-items .pagination-testi .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
}
.testimonials_bl .testimonials-items .pagination-testi .swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(34, 34, 34, 1);
}
.testimonials_bl .testimonials-items .pagination-testi .btn_link {
  position: relative;
  font-weight: 500;
  font-size: 13px;
  font-family: 'Unbounded';
  color: #fff;
  padding-right: 40px;
}
.testimonials_bl .testimonials-items .pagination-testi .btn_link:hover {
  color: #000;
}
.testimonials_bl .testimonials-items .pagination-testi .btn_link:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url('data:image/svg+xml;utf8,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="28" height="28" rx="14" fill="%23222222"/><path d="M17.4499 18.7426L19.4496 18.7426L19.4496 9.25744H9.96443V11.2571H16.0356L9.25732 18.0355L10.6715 19.4497L17.4499 12.6713L17.4499 18.7426Z" fill="white"/></svg>') center/contain no-repeat;
  border-radius: 50%;
}
.top-block {
  margin: 75px 0 50px;
}
@media (max-width: 1024px) {
  .top-block {
    margin: 40px 0;
  }
}
@media (max-width: 768px) {
  .top-block > .alc {
    display: block;
  }
}
.top-block .text {
  flex: 1;
  margin-right: -5%;
}
@media (max-width: 768px) {
  .top-block .text {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}
.top-block .text h2 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .top-block .text h2 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .top-block .text h2 {
    font-size: 28px;
  }
}
.top-block .text p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  color: rgba(34, 34, 34, 0.7);
}
@media (max-width: 1024px) {
  .top-block .text p {
    font-size: 20px;
  }
  .top-block .text p br {
    display: none;
  }
}
@media (max-width: 768px) {
  .top-block .text p {
    font-size: 16px;
  }
}
.top-block .text .buttons {
  margin-top: 35px;
}
@media (max-width: 1024px) {
  .top-block .text .buttons {
    margin-top: 0;
  }
}
.top-block .text .buttons .btn {
  margin-top: 20px;
  margin-right: 14px;
}
@media (max-width: 1024px) {
  .top-block .text .buttons .btn {
    margin-right: 10px;
  }
}
.top-block .text .buttons .btn:last-child {
  margin-right: 0;
}
.top-block .image {
  flex-basis: 67%;
  position: relative;
  z-index: -1;
}
@media (max-width: 1366px) {
  .top-block .image {
    flex-basis: 56%;
  }
}
@media (max-width: 1024px) {
  .top-block .image {
    flex-basis: 50%;
  }
}
@media (max-width: 768px) {
  .top-block .image {
    max-width: 400px;
    margin: 0 auto;
  }
}
.top-block .image img {
  width: 100%;
  height: auto;
}
