:root {
  --primary: #A0E4EA;
  --secondary: #366066;
  --gray: #FBFBFB;
  --dark-gray: #D6D6D6;
  --ultra-dark-gray: #E4E4E4;
  --white: #FFFFFF;
  --text: #36414A;
  --red: #fe0000;
  --light-red: #FF5D5D;
  --font: "Gotham", sans-serif;
  --font-ultra: "Gotham Ultra", sans-serif;
  --ease: 400ms ease-in-out;
  --bounce: 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  margin: 0;
  padding: 0;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  position: relative;
  font-size: 15px;
  line-height: 1;
  background: var(--gray);
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 8px;
  background: var(--gray);
}

html::-webkit-scrollbar-thumb {
  width: 8px;
  background: var(--primary);
}

img {
  border-style: none;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  display: block;
}

hr {
  box-sizing: content-box;
  overflow: visible;
}

a {
  text-decoration: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

button,
input,
optgroup,
select,
textarea {
  font-size: 100%;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  background: transparent;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
  background: transparent;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=search] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  outline-offset: -2px;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  display: none;
  opacity: 0;
  visibility: hidden;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
          appearance: button;
  font: inherit;
}

.__no-scroll {
  overflow: hidden !important;
}

.f-button svg path,
.f-button svg circle,
.fancybox__infobar,
.fancybox__infobar span {
  color: #ffffff;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: var(--font);
  color: var(--text);
}

h2 {
  font-size: 3em;
  line-height: 130%;
}

h3 {
  font-size: 2.4666666667em;
  line-height: 130%;
}

h5 {
  font-size: 1.4666666667em;
  line-height: 116.6666666667%;
}

h6 {
  font-size: 1.2em;
  line-height: 130%;
}

p {
  line-height: 137.5%;
}

header:not(.shepherd-header) {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  display: block;
  padding: 10px 0;
  background: var(--white);
  top: 0;
  left: 0;
  z-index: 100;
  transition: top var(--ease);
}
@media (max-width: 768px) {
  header:not(.shepherd-header) {
    overflow: hidden;
  }
}
header:not(.shepherd-header) .header_wrapper {
  width: 85%;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 1494px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  header:not(.shepherd-header) .header_wrapper {
    width: 95%;
    padding: 0 15px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper {
    width: 93%;
    padding: 0 10px 0 0;
    max-width: 600px;
  }
}
header:not(.shepherd-header) .header_wrapper::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 74px;
  background: var(--white);
  border-radius: 14px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper::before {
    right: 0;
    left: unset;
    width: 90%;
  }
}
header:not(.shepherd-header) .header_wrapper nav {
  width: calc(50% - 67px);
  position: initial;
  display: block;
  z-index: 3;
}
@media (max-width: 1024px) {
  header:not(.shepherd-header) .header_wrapper nav {
    width: calc(50% - 50px);
  }
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav {
    width: 100%;
    position: absolute;
    left: 0;
    top: calc(100% + 134px);
    opacity: 0;
    visibility: hidden;
    transition: var(--ease);
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: initial;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 1024px) {
  header:not(.shepherd-header) .header_wrapper nav > ul {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav > ul {
    width: 100%;
    gap: 0;
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: initial;
  display: block;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li {
    width: 100%;
  }
  header:not(.shepherd-header) .header_wrapper nav > ul > li:nth-of-type(-n + 2) {
    background: var(--primary);
    padding: 25px;
  }
  header:not(.shepherd-header) .header_wrapper nav > ul > li:nth-child(1) {
    border-radius: 19px 19px 0 0;
  }
  header:not(.shepherd-header) .header_wrapper nav > ul > li:nth-child(2) {
    border-radius: 0 0 19px 19px;
    margin-bottom: 10px;
  }
  header:not(.shepherd-header) .header_wrapper nav > ul > li:nth-last-of-type(-n + 2) {
    background: var(--secondary);
    padding: 25px;
  }
  header:not(.shepherd-header) .header_wrapper nav > ul > li:nth-last-of-type(-n + 2) a {
    color: var(--white);
  }
  header:not(.shepherd-header) .header_wrapper nav > ul > li:nth-child(3) {
    border-radius: 19px 19px 0 0;
  }
  header:not(.shepherd-header) .header_wrapper nav > ul > li:nth-child(4) {
    border-radius: 0 0 19px 19px;
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li > a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  font-weight: 500;
  transition: var(--ease);
}
header:not(.shepherd-header) .header_wrapper nav > ul > li > a i {
  display: none;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header:not(.shepherd-header) .header_wrapper nav > ul > li > a i {
    display: block;
  }
}
@media not all and (pointer: coarse) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li > a:hover {
    color: var(--primary);
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children > a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  z-index: 1;
  transition: var(--ease);
}
@media not all and (pointer: coarse) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children > a:hover {
    color: var(--text);
  }
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children > a:hover::after {
    width: 90%;
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children > a.active {
  color: var(--text);
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children > a.active::after {
  width: 90%;
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  display: block;
  top: 70%;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children {
    position: fixed;
    top: 100px;
    height: calc(100vh - 100px);
    background: var(--gray);
    overflow: auto;
    left: -30px;
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background: var(--white);
  padding: 50px 35px;
  border-radius: 0 0 14px 14px;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper {
    background: var(--gray);
    padding: 0;
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper .back_mobile {
  width: 100%;
  position: relative;
  display: none;
  border-top: 1px solid var(--dark-gray);
  padding: 25px 15px;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper .back_mobile {
    display: block;
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper .back_mobile button {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper .back_mobile button i {
  font-size: 1.2em;
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._title {
  width: 230px;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._title {
    width: 100%;
    border-top: 1px solid var(--dark-gray);
    padding: 25px 15px;
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._title a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 23px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 500;
  gap: 5px;
  transition: var(--ease);
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._title a i {
  color: inherit;
}
@media not all and (pointer: coarse) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._title a:hover {
    background: var(--secondary);
    color: var(--primary);
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._title a.active {
  background: var(--secondary);
  color: var(--primary);
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._title a:not(:last-child) {
  margin-bottom: 10px;
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links {
  width: calc(50% - 115px);
  position: relative;
  display: block;
  padding: 0 35px;
  border-left: 1px solid var(--dark-gray);
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links {
    width: 100%;
    padding: 25px 15px;
    border-left: none;
    border-top: 1px solid var(--dark-gray);
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links h6 {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 15px;
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links ul {
  width: 100%;
  position: relative;
  display: block;
  height: 240px;
  overflow: auto;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links ul {
    height: 130px;
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links ul::-webkit-scrollbar {
  width: 4px;
  background: var(--gray);
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links ul::-webkit-scrollbar-thumb {
  width: 4px;
  background: var(--primary);
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links ul li {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 12px;
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links ul li a {
  width: 100%;
  position: relative;
  display: block;
  font-size: 0.8666666667em;
  line-height: 137.5%;
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links ul li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--primary);
  bottom: -3px;
  left: 0;
  z-index: 1;
  transition: var(--ease);
}
@media not all and (pointer: coarse) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children .children-wrapper ._links ul li a:hover::after {
    width: 50px;
  }
}
header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children._visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper nav > ul > li.has-children .children._visible {
    left: 0px;
  }
}
header:not(.shepherd-header) .header_wrapper .logo {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  z-index: 5;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper .logo {
    order: 1;
  }
}
header:not(.shepherd-header) .header_wrapper .logo a {
  width: 100px;
  position: relative;
  display: block;
}
@media (max-width: 1024px) {
  header:not(.shepherd-header) .header_wrapper .logo a {
    width: 80px;
  }
}
header:not(.shepherd-header) .header_wrapper .right-box {
  width: calc(50% - 67px);
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap-reverse;
  gap: 25px;
  z-index: 2;
}
@media (max-width: 1024px) {
  header:not(.shepherd-header) .header_wrapper .right-box {
    width: calc(50% - 50px);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper .right-box {
    width: calc(100% - 90px);
    order: 2;
    position: initial;
  }
}
header:not(.shepherd-header) .header_wrapper .right-box .user-options {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  
}
header:not(.shepherd-header) .header_wrapper .right-box .user-options ul {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
header:not(.shepherd-header) .header_wrapper .right-box .user-options ul li {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper .right-box .user-options ul li {
    width: 100%;
  }
}
header:not(.shepherd-header) .header_wrapper .right-box .user-options ul li a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 5px;
  transition: var(--ease);
}
header:not(.shepherd-header) .header_wrapper .right-box .user-options ul li a span {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header:not(.shepherd-header) .header_wrapper .right-box .user-options ul li a span svg {
  width: 24px;
  position: relative;
  display: block;
  fill: var(--red);
}
header:not(.shepherd-header) .header_wrapper .right-box .user-options ul li a span canvas {
  width: 44px;
  height: 44px;
  position: absolute;
  display: block;
}
@media not all and (pointer: coarse) {
  header:not(.shepherd-header) .header_wrapper .right-box .user-options ul li a:hover {
    color: var(--primary);
  }
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  header:not(.shepherd-header) .header_wrapper .right-box .buttons ul {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper .right-box .buttons ul {
    gap: 12px;
  }
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li a.pay_online {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 23px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 500;
  gap: 5px;
  transition: var(--ease);
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li a.pay_online i {
  color: inherit;
}
@media not all and (pointer: coarse) {
  header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li a.pay_online:hover {
    background: var(--secondary);
    color: var(--primary);
  }
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li a.pay_online.active {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li a.pay_online {
    padding: 10px 15px;
  }
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.handle_filter {
  width: 40px;
  height: 40px;
  position: relative;
  display: none;
  border: 1px solid var(--primary);
  border-radius: 50%;
  font-size: 1.3333333333em;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.handle_filter {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.menu_toggler {
  width: 40px;
  height: 40px;
  position: relative;
  display: none;
  background: var(--secondary);
  border-radius: 50%;
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.menu_toggler .menu_toggler--wrapper {
  width: 21px;
  height: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.menu_toggler .menu_toggler--wrapper::before, header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.menu_toggler .menu_toggler--wrapper::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  position: relative;
  display: block;
  background: var(--primary);
  transform-origin: center;
  transition: var(--ease);
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.menu_toggler .menu_toggler--wrapper span {
  width: 100%;
  height: 2px;
  position: relative;
  display: block;
  background: var(--primary);
  transform-origin: center;
  transition: var(--ease);
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.menu_toggler {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.menu_toggler._active .menu_toggler--wrapper::before {
  transform: translateY(8px) rotate(45deg);
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.menu_toggler._active .menu_toggler--wrapper::after {
  transform: translateY(-8px) rotate(-45deg);
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li button.menu_toggler._active .menu_toggler--wrapper span {
  transform: scale(0);
  opacity: 0;
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li.list_mobile {
  display: none;
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li.list_mobile a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li.list_mobile a svg {
  width: 28px;
  position: relative;
  display: block;
  fill: var(--red);
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li.list_mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li.search_button {
    display: none;
  }
}
header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li.menu {
  display: none;
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .header_wrapper .right-box .buttons ul li.menu {
    display: block;
  }
}
header:not(.shepherd-header).__fixed .header_wrapper .right-box .buttons ul {
  gap: 30px;
}
@media (max-width: 1024px) {
  header:not(.shepherd-header).__fixed .header_wrapper .right-box .buttons ul {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  header:not(.shepherd-header).__fixed .header_wrapper .right-box .buttons ul {
    gap: 12px;
  }
}
header:not(.shepherd-header).__fixed .header_wrapper .right-box .buttons ul li button.handle_filter {
  display: flex;
  justify-content: center;
  align-items: center;
}
header:not(.shepherd-header) .featured_categories--content {
  width: 100%;
  position: relative;
  display: none;
  padding-top: 424px;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .featured_categories--content {
    display: block;
  }
}
header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper {
  width: 100%;
  position: relative;
  display: block;
}
header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm {
  width: 100%;
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm .featured_category--image {
  width: 100%;
  position: relative;
  display: block;
}
header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm .featured_category--image picture {
  width: 100%;
  position: relative;
  display: block;
  aspect-ratio: 496/596;
}
header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm .featured_category--image picture img {
  height: 100%;
}
header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm .featured_category--text {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  padding: 24px;
  top: 0;
  left: 0;
  z-index: 1;
  transition: var(--ease);
}
header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm .featured_category--text h6 {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 5px;
}
header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm .featured_category--text p {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 5px;
}
header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm .featured_category--text a {
  width: 100%;
  position: relative;
  display: block;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}
@media (max-width: 768px) {
  header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm .featured_category--text a {
    opacity: 1;
    visibility: visible;
    text-decoration: underline;
  }
}
@media not all and (pointer: coarse) {
  header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm .featured_category--text a:hover {
    text-decoration: underline;
  }
}
@media not all and (pointer: coarse) {
  header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm:hover .featured_category--text {
    background: var(--primary);
  }
  header:not(.shepherd-header) .featured_categories--content .featured_categories--wrapper .featured_category--itm:hover .featured_category--text a {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 768px) {
  header:not(.shepherd-header)._toggled {
    height: 100%;
    overflow: auto;
    background: var(--gray) !important;
  }
  header:not(.shepherd-header)._toggled .header_wrapper nav {
    opacity: 1;
    visibility: visible;
  }
  header:not(.shepherd-header)._toggled .header_wrapper .right-box .user-options {
    opacity: 1;
    visibility: visible;
  }
  header:not(.shepherd-header)._toggled .header_wrapper .right-box .buttons ul li.list_mobile {
    display: none;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  header:not(.shepherd-header)._toggled .header_wrapper .right-box .buttons ul li.search_button {
    display: block;
  }
}
@media (max-width: 768px) {
  header:not(.shepherd-header)._toggled .featured_categories--content {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

body._reduced-menu header:not(.shepherd-header) {
  background: transparent;
  padding: 15px 0;
}

aside.whatsapp {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  display: block;
  bottom: 30px;
  right: 25px;
  z-index: 10;
}
@media (max-width: 768px) {
  aside.whatsapp {
    bottom: 90px;
    right: 10px;
  }
}
aside.whatsapp a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
aside.whatsapp a ._icon {
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary);
  border-radius: 50%;
  margin: 0 auto 5px;
  box-shadow: 0px 18px 24px rgba(0, 0, 0, 0.1607843137);
}
aside.whatsapp a ._icon i {
  color: var(--primary);
  font-size: 2em;
}
aside.whatsapp a span {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  font-size: 0.8666666667em;
  font-weight: 500;
}
@media (max-width: 768px) {
  aside.whatsapp a span {
    display: none;
  }
}
aside.whatsapp._mix-blend a span {
  color: var(--white);
}

aside.wishlist_card {
  width: 100%;
  height: 100dvh;
  max-width: 380px;
  position: fixed;
  display: block;
  padding: 25px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 40px 0px 0px 40px;
  background: var(--secondary);
  top: 0;
  right: 0;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: var(--ease);
}
@media (max-width: 768px) {
  aside.wishlist_card {
    max-width: 100%;
  }
}
aside.wishlist_card button.wishlist_card--close {
  width: 20px;
  height: 20px;
  position: absolute;
  display: block;
  top: 25px;
  left: 25px;
  z-index: 1;
}
aside.wishlist_card button.wishlist_card--close i {
  color: var(--white);
  font-size: 1.3333333333em;
}
aside.wishlist_card .wishlist_card--wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--title {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 20px;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--title ._icon {
  width: 70px;
  height: 70px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto 10px;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--title ._icon i {
  font-size: 2.4em;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--title ._icon svg {
  width: 36px;
  position: relative;
  display: block;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--title h5 {
  width: 100%;
  position: relative;
  display: block;
  text-align: center;
  color: var(--white);
  margin: 0 auto 10px;
  font-size: 1.3333333333em;
  max-width: 220px;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--title p {
  width: 100%;
  position: relative;
  display: block;
  text-align: center;
  color: var(--white);
  margin: 0 auto;
  line-height: 137.5%;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form {
  width: 100%;
  position: relative;
  display: block;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group {
  width: 100%;
  position: relative;
  display: none;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input {
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: 15px;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input label {
  width: 100%;
  position: relative;
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 7px;
  font-size: 0.9333333333em;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input ._input-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  background-color: var(--white);
  border-radius: 9px;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input ._input-wrapper input {
  width: 100%;
  position: relative;
  display: block;
  font-weight: 600;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input ._input-wrapper input.placeholder {
  color: #2a2a2a;
  opacity: 0.31;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input ._input-wrapper input:-moz-placeholder {
  color: #2a2a2a;
  opacity: 0.31;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input ._input-wrapper input::-moz-placeholder {
  color: #2a2a2a;
  opacity: 0.31;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input ._input-wrapper input:-ms-input-placeholder {
  color: #2a2a2a;
  opacity: 0.31;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input ._input-wrapper input::-webkit-input-placeholder {
  color: #2a2a2a;
  opacity: 0.31;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input ._input-wrapper.phone select {
  width: 70px;
  position: relative;
  display: block;
  font-weight: 600;
  text-align: center;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input ._input-wrapper.phone select option {
  font-weight: 600;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._input ._input-wrapper.phone input {
  width: calc(100% - 80px);
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--primary);
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._submit {
  width: 100%;
  position: relative;
  display: block;
  margin: 0 auto 20px;
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._submit button {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 23px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 500;
  gap: 5px;
  transition: var(--ease);
  border: 1px solid var(--primary);
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._submit button i {
  color: inherit;
}
@media not all and (pointer: coarse) {
  aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._submit button:hover {
    background: var(--secondary);
    color: var(--primary);
  }
}
aside.wishlist_card .wishlist_card--wrapper .wishlist_card--form form.form_group ._submit button.active {
  background: var(--secondary);
  color: var(--primary);
}
aside.wishlist_card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
}

section.filter_overlay {
  width: 100%;
  height: 100dvh;
  position: fixed;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  top: 0;
  left: 0;
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}
section.filter_overlay .filter_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.filter_overlay .filter_wrapper .filter_container {
  width: 90%;
  max-width: 900px;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container {
    width: 100%;
    transform: translateY(-70px);
  }
}
section.filter_overlay .filter_wrapper .filter_container ._title {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container ._title {
    width: 90%;
    margin: 0 auto 20px;
  }
}
section.filter_overlay .filter_wrapper .filter_container ._title h4 {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: block;
  font-size: 2.6666666667em;
  color: var(--white);
  font-family: var(--font-ultra);
}
section.filter_overlay .filter_wrapper .filter_container ._title button {
  width: 22px;
  height: 22px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border-radius: 50%;
}
section.filter_overlay .filter_wrapper .filter_container ._title button svg {
  width: 18px;
  position: relative;
  display: block;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content {
  width: 100%;
  position: relative;
  display: block;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--gray);
  border-left: 1px solid var(--gray);
  border-right: 1px solid var(--gray);
  border-radius: 25px 25px 0 0;
  background: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  padding: 10px 20px;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box {
    gap: 0;
    border: unset;
    border-radius: unset;
    background: unset;
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
    padding: 0;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs {
    display: none;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs ul {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs ul li {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs ul li button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 23px;
  background: var(--white);
  color: var(--secondary);
  font-weight: 500;
  gap: 5px;
  transition: var(--ease);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs ul li button i {
  color: inherit;
}
@media not all and (pointer: coarse) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs ul li button:hover {
    background: var(--secondary);
    color: var(--primary);
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs ul li button.active {
  background: var(--secondary);
  color: var(--primary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs ul li button h3 {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  font-size: 0.8666666667em;
  text-transform: uppercase;
  transition: var(--ease);
  letter-spacing: 1px;
}
@media not all and (pointer: coarse) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs ul li button:hover h3 {
    color: var(--primary);
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .tabs ul li button.active h3 {
  color: var(--primary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .search_by {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .search_by {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .search_by button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 23px;
  background: var(--white);
  color: var(--secondary);
  font-weight: 500;
  gap: 5px;
  transition: var(--ease);
  font-size: 0.8666666667em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .search_by button i {
  color: inherit;
}
@media not all and (pointer: coarse) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .search_by button:hover {
    background: var(--secondary);
    color: var(--primary);
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .search_by button.active {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .top_box .search_by button {
    background: transparent;
    color: var(--secondary);
    text-decoration: underline;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box {
  width: 100%;
  position: relative;
  display: block;
  border-bottom: 1px solid var(--gray);
  border-left: 1px solid var(--gray);
  border-right: 1px solid var(--gray);
  border-radius: 0 0 25px 25px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  padding-right: 20px;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box {
    padding: 20px;
    border-radius: 25px;
    transform: translateY(70px);
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form {
  width: 100%;
  position: relative;
  display: none;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input {
  width: calc(50% - 28px);
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  border-radius: 0 25px 0 25px;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input {
    width: 100%;
    padding: 15px 0;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input label {
  width: 100%;
  position: relative;
  display: block;
  font-size: 0.8em;
  color: var(--text);
  font-weight: 700;
  opacity: 0.5;
  margin-bottom: 5px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input input {
  width: 100%;
  position: relative;
  display: block;
  padding-right: 30px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input input.placeholder {
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input input:-moz-placeholder {
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input input::-moz-placeholder {
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input input:-ms-input-placeholder {
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input input::-webkit-input-placeholder {
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input input.location {
  padding-left: 25px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input ._selected-locations {
  width: calc(50% - 10px);
  height: 100%;
  position: absolute;
  display: none;
  left: 50%;
  top: 0;
  z-index: 1;
  background: var(--primary);
  padding: 8px 14px;
  border-radius: 0 25px 0 25px;
  cursor: pointer;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input ._selected-locations h6 {
  width: 100%;
  position: relative;
  display: block;
  font-size: 0.8666666667em;
  line-height: 1;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input ._selected-locations ._info {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input ._selected-locations ._info p {
  width: calc(100% - 30px);
  position: relative;
  display: -webkit-box;
  font-size: 0.9333333333em;
  overflow: hidden;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  line-height: 110%;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input ._selected-locations ._info span {
  width: 25px;
  height: 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary);
  font-size: 0.7333333333em;
  font-weight: 500;
  color: var(--primary);
  border-radius: 50%;
  line-height: 1;
  transform: translateY(-5px);
  transition: var(--ease);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input ._selected-locations.added {
  animation: added 300ms linear;
  animation-iteration-count: 1;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input ._selected-locations.added ._info span {
  background: var(--white);
  color: var(--secondary);
}
@keyframes added {
  0% {
    background: var(--primary);
  }
  50% {
    background: #def000;
  }
  100% {
    background: var(--primary);
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input span.estate_type {
  width: 16px;
  height: 16px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary);
  top: 20px;
  right: 21px;
  border-radius: 50%;
  cursor: pointer;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input span.estate_type i {
  color: var(--primary);
  font-size: 13px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input span.location {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  display: block;
  top: 28px;
  left: 20px;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input span.location {
    top: 34px;
    left: 0;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input span.location i {
  font-size: 16px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options {
  width: 100%;
  max-width: 370px;
  position: absolute;
  display: none;
  background: var(--white);
  border-radius: 0 0 14px 14px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 10px;
  left: 0;
  right: 0;
  top: 100%;
  margin: auto;
  z-index: 2;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options {
    width: 100dvw;
    max-width: unset !important;
    left: -20px;
    top: 100%;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options span.close_options {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  display: block;
  top: 5px;
  right: 5px;
  z-index: 2;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options span.close_options i {
  font-size: 1.3333333333em;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options ul {
  width: 100%;
  position: relative;
  max-height: 180px;
  overflow: auto;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options ul::-webkit-scrollbar {
  width: 4px;
  background: var(--gray);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options ul::-webkit-scrollbar-thumb {
  width: 4px;
  background: var(--primary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.estate ul, section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.transaction ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.estate ul li, section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.transaction ul li {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.estate ul li button, section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.transaction ul li button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 23px;
  background: var(--ultra-dark-gray);
  color: var(--secondary);
  font-weight: 500;
  gap: 5px;
  transition: var(--ease);
  padding: 8px 12px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.estate ul li button i, section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.transaction ul li button i {
  color: inherit;
}
@media not all and (pointer: coarse) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.estate ul li button:hover, section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.transaction ul li button:hover {
    background: var(--primary);
    color: var(--secondary);
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.estate ul li button.active, section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.transaction ul li button.active {
  background: var(--primary);
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.estate ul li button img, section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.transaction ul li button img {
  width: 24px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.estate ul li button.active, section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.transaction ul li button.active {
  background: var(--primary);
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location {
  max-width: 350px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul {
  display: block;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul li {
  width: 100%;
  position: relative;
  display: block;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul li button {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  text-align: left;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul li button ._name {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul li button ._name p {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  font-weight: 500;
  text-align: left;
  transition: var(--ease);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul li button ._name small {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  font-size: 0.8666666667em;
  transition: var(--ease);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul li button span {
  width: 15px;
  height: 15px;
  position: relative;
  display: none;
  background: var(--primary);
  border-radius: 50%;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul li button span i {
  color: var(--white);
  font-size: 0.8666666667em;
}
@media not all and (pointer: coarse) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul li button:hover {
    background: var(--gray);
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul li button.selected ._name p {
  color: var(--primary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .options.location ul li button.selected span {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options {
  width: 100%;
  max-width: 350px;
  position: absolute;
  display: block;
  background: var(--white);
  border-radius: 0 0 14px 14px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 10px;
  left: 25px;
  right: 0;
  top: 100%;
  margin: auto;
  z-index: 2;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options {
    width: 100dvw;
    max-width: unset !important;
    left: -20px;
    top: 100%;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options .selected_options--title {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options .selected_options--title h6 {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  font-size: 1em;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options .selected_options--title button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options .selected_options--title button i {
  font-size: 1.2666666667em;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul {
  width: 100%;
  position: relative;
  max-height: 180px;
  display: block;
  overflow: auto;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul::-webkit-scrollbar {
  width: 4px;
  background: var(--gray);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul::-webkit-scrollbar-thumb {
  width: 4px;
  background: var(--primary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul li {
  width: 100%;
  position: relative;
  display: block;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul li button {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  text-align: left;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul li button ._name {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  text-align: left;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul li button ._name p {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  font-weight: 500;
  text-align: left;
  transition: var(--ease);
  text-align: left;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul li button ._name small {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  font-size: 0.8666666667em;
  transition: var(--ease);
  text-align: left;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul li button span {
  width: 15px;
  height: 15px;
  position: relative;
  display: none;
  background: var(--primary);
  border-radius: 50%;
  text-align: left;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul li button span i {
  color: var(--white);
  font-size: 0.8666666667em;
}
@media not all and (pointer: coarse) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul li button:hover {
    background: var(--gray);
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul li button.selected ._name p {
  color: var(--primary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input .selected_options ul li button.selected span {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input.mobile {
  display: none;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input.mobile {
    display: block;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input.__notEmpty {
  background: var(--primary);
  padding: 15px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input.property_location.__notEmpty {
  background: transparent;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input.property_location.__notEmpty input {
  width: 50%;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._input.property_location.__notEmpty ._selected-locations {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._submit {
  width: 36px;
  height: 36px;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._submit {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._submit button {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--primary);
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._submit button {
    border-radius: 30px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 8px 16px;
    gap: 10px;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._submit button span {
  font-weight: 500;
  display: none;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._submit button span {
    display: block;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .filter_form .form_wrapper ._submit button i {
  font-size: 1.3333333333em;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form {
  width: 100%;
  position: relative;
  display: none;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input {
  width: calc(100% - 36px);
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input {
    width: 100%;
    padding: 15px 0;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input label {
  width: 100%;
  position: relative;
  display: block;
  font-size: 0.8em;
  color: var(--text);
  font-weight: 700;
  opacity: 0.5;
  margin-bottom: 5px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input input {
  width: 100%;
  position: relative;
  display: block;
  padding-right: 30px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input input.placeholder {
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input input:-moz-placeholder {
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input input::-moz-placeholder {
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input input:-ms-input-placeholder {
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input input::-webkit-input-placeholder {
  color: var(--secondary);
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input input.code {
  padding-left: 25px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input span.code {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  display: block;
  top: 28px;
  left: 20px;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input span.code {
    top: 34px;
    left: 0;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._input span.code i {
  font-size: 16px;
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._submit {
  width: 36px;
  height: 36px;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._submit {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._submit button {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--primary);
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._submit button {
    border-radius: 30px;
    height: -moz-fit-content;
    height: fit-content;
    padding: 8px 16px;
    gap: 10px;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._submit button span {
  font-weight: 500;
  display: none;
}
@media (max-width: 768px) {
  section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._submit button span {
    display: block;
  }
}
section.filter_overlay .filter_wrapper .filter_container .filter_content .bottom_box .code_form form ._submit button i {
  font-size: 1.3333333333em;
}
section.filter_overlay.visible {
  opacity: 1;
  visibility: visible;
}

footer {
  width: 100%;
  position: relative;
  display: block;
  background: var(--secondary);
  padding: 70px 0 0;
}
footer .footer-wrapper {
  width: 100%;
  position: relative;
  display: block;
}
footer .footer-wrapper .footer_top--box {
  width: 100%;
  position: relative;
  display: block;
  padding-bottom: 30px;
  border-bottom: 1px solid #90969b;
}
footer .footer-wrapper .footer_top--box .top--box_container {
  width: 85%;
  max-width: 1312px;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer_top--box .top--box_container {
    width: 90%;
  }
}
footer .footer-wrapper .footer_top--box .top--box_container .logo {
  width: calc(20% - 24px);
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer_top--box .top--box_container .logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
}
footer .footer-wrapper .footer_top--box .top--box_container .logo > a {
  width: 100px;
  position: relative;
  display: block;
  margin: 0 auto 30px;
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer_top--box .top--box_container .logo > a {
    margin: unset;
  }
}
footer .footer-wrapper .footer_top--box .top--box_container .logo ._social-networks {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer_top--box .top--box_container .logo ._social-networks {
    width: calc(100% - 110px);
    justify-content: flex-end;
  }
}
footer .footer-wrapper .footer_top--box .top--box_container .logo ._social-networks a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  font-size: 1.6666666667em;
}
footer .footer-wrapper .footer_top--box .top--box_container .logo ._social-networks a i {
  color: var(--primary);
}
footer .footer-wrapper .footer_top--box .top--box_container .footer_links {
  width: calc(20% - 24px);
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer_top--box .top--box_container .footer_links {
    width: calc(50% - 15px);
  }
}
footer .footer-wrapper .footer_top--box .top--box_container .footer_links h6 {
  width: 100%;
  position: relative;
  display: block;
  color: var(--white);
  opacity: 46%;
  font-size: 1.0666666667em;
  margin-bottom: 20px;
}
footer .footer-wrapper .footer_top--box .top--box_container .footer_links ul {
  width: 100%;
  position: relative;
  display: block;
}
footer .footer-wrapper .footer_top--box .top--box_container .footer_links ul li {
  width: 100%;
  position: relative;
  display: block;
  color: var(--white);
  opacity: 75%;
  line-height: 137.5%;
}
footer .footer-wrapper .footer_top--box .top--box_container .footer_links ul li:not(:last-child) {
  margin-bottom: 10px;
}
footer .footer-wrapper .footer_top--box .top--box_container .footer_links ul li a {
  width: 100%;
  position: relative;
  display: block;
  color: var(--white);
}
footer .footer-wrapper .footer_top--box .top--box_container .footer_links:last-child a {
  color: var(--primary);
  text-decoration: underline;
}
footer .footer-wrapper .footer_bottom--box {
  width: 100%;
  position: relative;
  display: block;
  padding: 30px 0;
  border-bottom: 1px solid #90969b;
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container {
  width: 85%;
  max-width: 1312px;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer_bottom--box .bottom--box_container {
    width: 90%;
  }
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .spacer {
  width: calc(20% - 24px);
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer_bottom--box .bottom--box_container .spacer {
    display: none;
  }
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links {
  width: calc(20% - 24px);
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links {
    width: 100%;
  }
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links h6 {
  width: 100%;
  position: relative;
  display: block;
  color: var(--white);
  opacity: 46%;
  font-size: 1.0666666667em;
  margin-bottom: 20px;
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links ul {
  width: 100%;
  position: relative;
  max-height: 173px;
  display: block;
  overflow: hidden;
  transition: var(--ease);
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links ul li {
  width: 100%;
  position: relative;
  display: block;
  color: var(--white);
  opacity: 75%;
  line-height: 137.5%;
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links ul li:not(:last-child) {
  margin-bottom: 10px;
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links ul li a {
  width: 100%;
  position: relative;
  display: block;
  color: var(--white);
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links ul.see_more {
  max-height: 100%;
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links p {
  width: 100%;
  position: relative;
  display: block;
  color: var(--white);
  opacity: 75%;
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links p span,
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links p strong {
  color: var(--white);
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links span,
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links strong {
  color: var(--white);
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  display: block;
  color: var(--primary);
  text-decoration: underline;
  margin-top: 10px;
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links button span {
  color: var(--primary);
}
footer .footer-wrapper .footer_bottom--box .bottom--box_container .footer_links button i {
  color: var(--primary);
}
footer .footer-wrapper .copyright {
  width: 85%;
  max-width: 1312px;
  position: relative;
  margin: 0 auto;
  display: block;
  padding: 15px 0;
}
@media (max-width: 768px) {
  footer .footer-wrapper .copyright {
    width: 90%;
  }
}
footer .footer-wrapper .copyright p {
  width: 100%;
  position: relative;
  display: block;
  color: var(--white);
  opacity: 75%;
  text-align: center;
}