@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap");
html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  overflow-x: hidden;
}

/***********************Custom Scrollbar**************************/
/* width */
::-webkit-scrollbar {
  width: 3px;
  height: 1px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #000000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

.offcanvas-body::-webkit-scrollbar {
  width: 2px;
  height: 1px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background: #000000;
}

/***********************Custom Highlight Text***********************/
::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #B7AC86;
}

::selection {
  color: #fff;
  background: #B7AC86;
}

/***********************Custom Formattings**************************/
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus,
select:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

/***********************Slick Slider Formatting***********************/
.slick-slider:not(.slick-initialized),
.slick-slider-related .products:not(.slick-initialized) {
  display: none !important;
}

.tab-content > .tab-pane:not(.active),
.pill-content > .pill-pane:not(.active) {
  display: block;
  height: 0;
  overflow-y: hidden;
}

.slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
}
.slick-dots li {
  height: 6px !important;
  width: 6px !important;
}
@media only screen and (min-width: 1025px) {
  .slick-dots li {
    height: 0.313vw !important;
    width: 0.313vw !important;
  }
}
.slick-dots li button:before {
  color: #000000;
}
.slick-dots li.slick-active button:before {
  color: #181D24;
}

.slick-dots button {
  height: 6px !important;
  width: 6px !important;
  border-radius: 50%;
  background: #181D24;
  font-size: 0;
  border: 0;
}
@media only screen and (min-width: 1025px) {
  .slick-dots button {
    height: 0.313vw !important;
    width: 0.313vw !important;
  }
}
.slick-dots button:before {
  height: 6px !important;
  width: 6px !important;
}
@media only screen and (min-width: 1025px) {
  .slick-dots button:before {
    height: 0.313vw !important;
    width: 0.313vw !important;
  }
}

.slick-arrow {
  border: 0;
  font-size: 0;
  background-color: transparent;
  background-repeat: no-repeat !important;
  background-position: center;
  z-index: 1;
  border-radius: 50%;
}
@media (min-width: 1025px) {
  .slick-arrow {
    width: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .slick-arrow {
    width: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .slick-arrow {
    width: 50px;
  }
}
@media (max-width: 600px) {
  .slick-arrow {
    width: 50px;
  }
}
@media (min-width: 1025px) {
  .slick-arrow {
    height: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .slick-arrow {
    height: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .slick-arrow {
    height: 50px;
  }
}
@media (max-width: 600px) {
  .slick-arrow {
    height: 50px;
  }
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-slider .slick-prev {
  background-image: url("../../images/prev-black.svg") !important;
  transition: all 0.5s;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slick-slider .slick-prev:hover {
  background-image: url("../../images/prev-icon-hover.svg") !important;
  transition: all 0.5s;
}
.slick-slider .slick-next {
  background-image: url("../../images/next-black.svg") !important;
  transition: all 0.5s;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slick-slider .slick-next:hover {
  background-image: url("../../images/next-icon-hover.svg") !important;
  transition: all 0.5s;
}

.white-arrows .slick-prev {
  background-image: url("../../img/prev-w.png") !important;
  transition: all 0.5s;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.white-arrows .slick-prev:hover {
  background-image: url("../../img/prev-w.png") !important;
  transition: all 0.5s;
}
.white-arrows .slick-next {
  background-image: url("../../img/next-w.png") !important;
  transition: all 0.5s;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.white-arrows .slick-next:hover {
  background-image: url("../../img/next-w.png") !important;
  transition: all 0.5s;
}

/***********************Remove Autofill bg Color***********************/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #ffffff !important;
  background-color: transparent !important;
}

/***********************Default Formatting***********************/
/* Page container */
.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: none;
  background-color: transparent;
}
@media (min-width: 1025px) {
  .container {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .container {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .container {
    padding-right: 40px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .container {
    padding-left: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .container {
    padding-left: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .container {
    padding-left: 40px;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .container--md {
    padding-right: 11.9791666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .container--md {
    padding-right: 11.9791666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .container--md {
    padding-right: 60px;
  }
}
@media (max-width: 600px) {
  .container--md {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .container--md {
    padding-left: 11.9791666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .container--md {
    padding-left: 11.9791666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .container--md {
    padding-left: 60px;
  }
}
@media (max-width: 600px) {
  .container--md {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .container--sm {
    padding-right: 19.7916666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .container--sm {
    padding-right: 19.7916666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .container--sm {
    padding-right: 80px;
  }
}
@media (max-width: 600px) {
  .container--sm {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .container--sm {
    padding-left: 19.7916666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .container--sm {
    padding-left: 19.7916666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .container--sm {
    padding-left: 80px;
  }
}
@media (max-width: 600px) {
  .container--sm {
    padding-left: 20px;
  }
}

/*********************************Grid Layout***************************************************/
@media (min-width: 1025px) {
  .two-item-grid {
    margin-left: -0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid {
    margin-left: -0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid {
    margin-left: -10px;
  }
}
@media (max-width: 600px) {
  .two-item-grid {
    margin-left: 0px;
  }
}
@media (min-width: 1025px) {
  .two-item-grid {
    margin-right: -0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid {
    margin-right: -0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid {
    margin-right: -10px;
  }
}
@media (max-width: 600px) {
  .two-item-grid {
    margin-right: 0px;
  }
}
@media (min-width: 1025px) {
  .two-item-grid .list-item {
    width: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid .list-item {
    width: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid .list-item {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .two-item-grid .list-item {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .two-item-grid .list-item {
    max-width: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid .list-item {
    max-width: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid .list-item {
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .two-item-grid .list-item {
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  .two-item-grid .list-item {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid .list-item {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid .list-item {
    padding-left: 10px;
  }
}
@media (max-width: 600px) {
  .two-item-grid .list-item {
    padding-left: 0px;
  }
}
@media (min-width: 1025px) {
  .two-item-grid .list-item {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid .list-item {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid .list-item {
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .two-item-grid .list-item {
    padding-right: 0px;
  }
}
@media (min-width: 1025px) {
  .two-item-grid .list-item {
    padding-bottom: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid .list-item {
    padding-bottom: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid .list-item {
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .two-item-grid .list-item {
    padding-bottom: 40px;
  }
}
@media (min-width: 1025px) {
  .two-item-grid .list-item .medai-image {
    height: 20.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid .list-item .medai-image {
    height: 20.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid .list-item .medai-image {
    height: auto;
  }
}
@media (max-width: 600px) {
  .two-item-grid .list-item .medai-image {
    height: auto;
  }
}
.two-item-grid .list-item .medai-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .two-item-grid--small {
    margin-left: -4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid--small {
    margin-left: -4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid--small {
    margin-left: -40px;
  }
}
@media (max-width: 600px) {
  .two-item-grid--small {
    margin-left: 0px;
  }
}
@media (min-width: 1025px) {
  .two-item-grid--small {
    margin-right: -4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid--small {
    margin-right: -4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid--small {
    margin-right: -40px;
  }
}
@media (max-width: 600px) {
  .two-item-grid--small {
    margin-right: 0px;
  }
}
@media (min-width: 1025px) {
  .two-item-grid--small .list-item {
    padding-left: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid--small .list-item {
    padding-left: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid--small .list-item {
    padding-left: 40px;
  }
}
@media (max-width: 600px) {
  .two-item-grid--small .list-item {
    padding-left: 0px;
  }
}
@media (min-width: 1025px) {
  .two-item-grid--small .list-item {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-grid--small .list-item {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-grid--small .list-item {
    padding-right: 40px;
  }
}
@media (max-width: 600px) {
  .two-item-grid--small .list-item {
    padding-right: 0px;
  }
}

@media (min-width: 1025px) {
  .three-item-grid {
    margin-left: -1.4583333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .three-item-grid {
    margin-left: -1.4583333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .three-item-grid {
    margin-left: -15px;
  }
}
@media (max-width: 600px) {
  .three-item-grid {
    margin-left: 0px;
  }
}
@media (min-width: 1025px) {
  .three-item-grid {
    margin-right: -1.4583333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .three-item-grid {
    margin-right: -1.4583333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .three-item-grid {
    margin-right: -15px;
  }
}
@media (max-width: 600px) {
  .three-item-grid {
    margin-right: 0px;
  }
}
@media (min-width: 1025px) {
  .three-item-grid .list-item {
    width: 33.3%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .three-item-grid .list-item {
    width: 33.3%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .three-item-grid .list-item {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .three-item-grid .list-item {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .three-item-grid .list-item {
    max-width: 33.3%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .three-item-grid .list-item {
    max-width: 33.3%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .three-item-grid .list-item {
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .three-item-grid .list-item {
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  .three-item-grid .list-item {
    padding-left: 1.4583333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .three-item-grid .list-item {
    padding-left: 1.4583333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .three-item-grid .list-item {
    padding-left: 15px;
  }
}
@media (max-width: 600px) {
  .three-item-grid .list-item {
    padding-left: 0px;
  }
}
@media (min-width: 1025px) {
  .three-item-grid .list-item {
    padding-right: 1.4583333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .three-item-grid .list-item {
    padding-right: 1.4583333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .three-item-grid .list-item {
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .three-item-grid .list-item {
    padding-right: 0px;
  }
}
@media (min-width: 1025px) {
  .three-item-grid .list-item {
    padding-bottom: 4.4270833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .three-item-grid .list-item {
    padding-bottom: 4.4270833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .three-item-grid .list-item {
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .three-item-grid .list-item {
    padding-bottom: 40px;
  }
}

@media (min-width: 1025px) {
  .four-item-grid {
    margin-left: -1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .four-item-grid {
    margin-left: -1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .four-item-grid {
    margin-left: -15px;
  }
}
@media (max-width: 600px) {
  .four-item-grid {
    margin-left: 0px;
  }
}
@media (min-width: 1025px) {
  .four-item-grid {
    margin-right: -1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .four-item-grid {
    margin-right: -1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .four-item-grid {
    margin-right: -15px;
  }
}
@media (max-width: 600px) {
  .four-item-grid {
    margin-right: 0px;
  }
}
@media (min-width: 1025px) {
  .four-item-grid .list-item {
    width: 25%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .four-item-grid .list-item {
    width: 25%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .four-item-grid .list-item {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .four-item-grid .list-item {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .four-item-grid .list-item {
    max-width: 25%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .four-item-grid .list-item {
    max-width: 25%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .four-item-grid .list-item {
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .four-item-grid .list-item {
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  .four-item-grid .list-item {
    padding-left: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .four-item-grid .list-item {
    padding-left: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .four-item-grid .list-item {
    padding-left: 15px;
  }
}
@media (max-width: 600px) {
  .four-item-grid .list-item {
    padding-left: 0px;
  }
}
@media (min-width: 1025px) {
  .four-item-grid .list-item {
    padding-right: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .four-item-grid .list-item {
    padding-right: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .four-item-grid .list-item {
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .four-item-grid .list-item {
    padding-right: 0px;
  }
}
@media (min-width: 1025px) {
  .four-item-grid .list-item {
    padding-bottom: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .four-item-grid .list-item {
    padding-bottom: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .four-item-grid .list-item {
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .four-item-grid .list-item {
    padding-bottom: 40px;
  }
}

/*********************************Custom Link Styles***************************************************/
.link {
  transition: 0.3s ease-in-out;
}
.link--white {
  color: #ffffff;
}
.link--white:hover {
  color: #B7AC86 !important;
}

/*********************************Global Styles***************************************************/
.all-caps {
  text-transform: uppercase;
}

.title-case {
  text-transform: capitalize !important;
}

.z-top {
  z-index: 2;
  position: relative;
}

.overflow-hidden {
  overflow-x: hidden !important;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.font-italic {
  font-style: italic;
}

@media only screen and (max-width: 767px) {
  .text-mb-center {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .text-mb-left {
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .text-mb-right {
    text-align: right;
  }
}

@media only screen and (max-width: 1024px) {
  .text-md-center {
    text-align: center;
  }
}

@media only screen and (max-width: 1024px) {
  .text-md-left {
    text-align: left;
  }
}

@media only screen and (max-width: 1024px) {
  .text-md-right {
    text-align: right;
  }
}

@media (min-width: 1025px) {
  .half-div {
    width: 47%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .half-div {
    width: 47%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .half-div {
    width: 48%;
  }
}
@media (max-width: 600px) {
  .half-div {
    width: 100%;
  }
}

.text-deco-none {
  text-decoration: none;
}

@media (min-width: 1025px) {
  .without-banner {
    height: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .without-banner {
    height: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .without-banner {
    height: 60px;
  }
}
@media (max-width: 600px) {
  .without-banner {
    height: 60px;
  }
}

/**************************Bootstrap custom*******************************/
@media (min-width: 1025px) {
  /* Display Utilities */
  .d-1025-block {
    display: block !important;
  }
  .d-1025-inline {
    display: inline !important;
  }
  .d-1025-inline-block {
    display: inline-block !important;
  }
  .d-1025-flex {
    display: flex !important;
  }
  .d-1025-inline-flex {
    display: inline-flex !important;
  }
  .d-1025-none {
    display: none !important;
  }
  /* Flex Justify Content Utilities */
  .justify-content-1025-start {
    justify-content: flex-start !important;
  }
  .justify-content-1025-end {
    justify-content: flex-end !important;
  }
  .justify-content-1025-center {
    justify-content: center !important;
  }
  .justify-content-1025-between {
    justify-content: space-between !important;
  }
  .justify-content-1025-around {
    justify-content: space-around !important;
  }
  .justify-content-1025-evenly {
    justify-content: space-evenly !important;
  }
  /* Flex Align Items Utilities */
  .align-items-1025-start {
    align-items: flex-start !important;
  }
  .align-items-1025-end {
    align-items: flex-end !important;
  }
  .align-items-1025-center {
    align-items: center !important;
  }
  .align-items-1025-baseline {
    align-items: baseline !important;
  }
  .align-items-1025-stretch {
    align-items: stretch !important;
  }
  /* Flex Direction Utilities */
  .flex-1025-row {
    flex-direction: row !important;
  }
  .flex-1025-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-1025-column {
    flex-direction: column !important;
  }
  .flex-1025-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* Text Align Utilities */
  .text-1025-start {
    text-align: left !important;
  }
  .text-1025-end {
    text-align: right !important;
  }
  .text-1025-center {
    text-align: center !important;
  }
}
/**************************Wrapper****************************************/
.wrapper--95 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--95 {
    width: 95%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--95 {
    width: 95%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--95 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--95 {
    width: 90%;
  }
}
.wrapper--90 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--90 {
    width: 90%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--90 {
    width: 90%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--90 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--90 {
    width: 90%;
  }
}
.wrapper--85 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--85 {
    width: 85%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--85 {
    width: 85%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--85 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--85 {
    width: 90%;
  }
}
.wrapper--87 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--87 {
    width: 87%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--87 {
    width: 87%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--87 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--87 {
    width: 90%;
  }
}
.wrapper--80 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--80 {
    width: 80%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--80 {
    width: 80%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--80 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--80 {
    width: 90%;
  }
}
.wrapper--76 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--76 {
    width: 76%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--76 {
    width: 76%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--76 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--76 {
    width: 90%;
  }
}
.wrapper--60 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--60 {
    width: 60%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--60 {
    width: 60%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--60 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--60 {
    width: 90%;
  }
}
.wrapper--55 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--55 {
    width: 55%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--55 {
    width: 55%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--55 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--55 {
    width: 90%;
  }
}
.wrapper--50 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--50 {
    width: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--50 {
    width: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--50 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--50 {
    width: 90%;
  }
}
.wrapper--45 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--45 {
    width: 45%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--45 {
    width: 45%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--45 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--45 {
    width: 90%;
  }
}
.wrapper--40 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--40 {
    width: 40%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--40 {
    width: 40%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--40 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--40 {
    width: 90%;
  }
}
.wrapper--60 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--60 {
    width: 60%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--60 {
    width: 60%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--60 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--60 {
    width: 90%;
  }
}
.wrapper--75 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--75 {
    width: 75%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--75 {
    width: 75%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--75 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--75 {
    width: 90%;
  }
}
.wrapper--25 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--25 {
    width: 25%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--25 {
    width: 25%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--25 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--25 {
    width: 90%;
  }
}
.wrapper--70 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--70 {
    width: 70%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--70 {
    width: 70%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--70 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--70 {
    width: 90%;
  }
}
.wrapper--80 {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--80 {
    width: 80%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--80 {
    width: 80%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--80 {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--80 {
    width: 90%;
  }
}
.wrapper--80-left {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--80-left {
    width: 90%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--80-left {
    width: 90%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--80-left {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--80-left {
    width: 90%;
  }
}
.wrapper--90-left {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--90-left {
    width: 95%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--90-left {
    width: 95%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--90-left {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--90-left {
    width: 90%;
  }
}
.wrapper--90-right {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1025px) {
  .wrapper--90-right {
    width: 95%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wrapper--90-right {
    width: 95%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wrapper--90-right {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .wrapper--90-right {
    width: 90%;
  }
}

@media (min-width: 1025px) {
  .width--90 {
    width: 90%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--90 {
    width: 90%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--90 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--90 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--85 {
    width: 85%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--85 {
    width: 85%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--85 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--85 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--80 {
    width: 80%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--80 {
    width: 80%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--80 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--80 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--75 {
    width: 75%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--75 {
    width: 75%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--75 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--75 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--70 {
    width: 70%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--70 {
    width: 70%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--70 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--70 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--65 {
    width: 65%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--65 {
    width: 65%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--65 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--65 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--60 {
    width: 60%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--60 {
    width: 60%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--60 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--60 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--50 {
    width: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--50 {
    width: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--50 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--50 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--55 {
    width: 55%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--55 {
    width: 55%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--55 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--55 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--40 {
    width: 40%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--40 {
    width: 40%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--40 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--40 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--49 {
    width: 49%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--49 {
    width: 49%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--49 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--49 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--48 {
    width: 48%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--48 {
    width: 48%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--48 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--48 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--45 {
    width: 45%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--45 {
    width: 45%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--45 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--45 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--35 {
    width: 35%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--35 {
    width: 35%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--35 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--35 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--30 {
    width: 30%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--30 {
    width: 30%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--30 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--30 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--25 {
    width: 25%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--25 {
    width: 25%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--25 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--25 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--20 {
    width: 20%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--20 {
    width: 20%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--20 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--20 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .width--10 {
    width: 10%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .width--10 {
    width: 10%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .width--10 {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .width--10 {
    width: 100%;
  }
}

/**************************Wrapper End**************************************************/
/****************************Fonts Styles*********************************************/
@media (min-width: 1025px) {
  .heading--128 {
    font-size: 6.6666666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--128 {
    font-size: 6.6666666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--128 {
    font-size: 80px !important;
  }
}
@media (max-width: 600px) {
  .heading--128 {
    font-size: 50px !important;
  }
}
@media (min-width: 1025px) {
  .heading--128 {
    line-height: 6.6666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--128 {
    line-height: 6.6666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--128 {
    line-height: 80px;
  }
}
@media (max-width: 600px) {
  .heading--128 {
    line-height: 50px;
  }
}
@media (min-width: 1025px) {
  .heading--80 {
    font-size: 4.1666666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--80 {
    font-size: 4.1666666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--80 {
    font-size: 50px !important;
  }
}
@media (max-width: 600px) {
  .heading--80 {
    font-size: 35px !important;
  }
}
@media (min-width: 1025px) {
  .heading--80 {
    line-height: 6.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--80 {
    line-height: 6.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--80 {
    line-height: 70px;
  }
}
@media (max-width: 600px) {
  .heading--80 {
    line-height: 48px;
  }
}
@media (min-width: 1025px) {
  .heading--70 {
    font-size: 3.6458333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--70 {
    font-size: 3.6458333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--70 {
    font-size: 50px !important;
  }
}
@media (max-width: 600px) {
  .heading--70 {
    font-size: 35px !important;
  }
}
@media (min-width: 1025px) {
  .heading--70 {
    line-height: 5.7291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--70 {
    line-height: 5.7291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--70 {
    line-height: 70px;
  }
}
@media (max-width: 600px) {
  .heading--70 {
    line-height: 48px;
  }
}
@media (min-width: 1025px) {
  .heading--70-h2 {
    font-size: 3.6458333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--70-h2 {
    font-size: 3.6458333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--70-h2 {
    font-size: 50px !important;
  }
}
@media (max-width: 600px) {
  .heading--70-h2 {
    font-size: 30px !important;
  }
}
@media (min-width: 1025px) {
  .heading--70-h2 {
    line-height: 5.7291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--70-h2 {
    line-height: 5.7291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--70-h2 {
    line-height: 70px;
  }
}
@media (max-width: 600px) {
  .heading--70-h2 {
    line-height: 45px;
  }
}
@media (min-width: 1025px) {
  .heading--65 {
    font-size: 3.3854166667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--65 {
    font-size: 3.3854166667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--65 {
    font-size: 24px !important;
  }
}
@media (max-width: 600px) {
  .heading--65 {
    font-size: 24px !important;
  }
}
@media (min-width: 1025px) {
  .heading--65 {
    line-height: 5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--65 {
    line-height: 5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--65 {
    line-height: 40px;
  }
}
@media (max-width: 600px) {
  .heading--65 {
    line-height: 40px;
  }
}
@media (min-width: 1025px) {
  .heading--44 {
    font-size: 2.2916666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--44 {
    font-size: 2.2916666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--44 {
    font-size: 35px !important;
  }
}
@media (max-width: 600px) {
  .heading--44 {
    font-size: 30px !important;
  }
}
@media (min-width: 1025px) {
  .heading--44 {
    line-height: 2.8645833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--44 {
    line-height: 2.8645833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--44 {
    line-height: 45px;
  }
}
@media (max-width: 600px) {
  .heading--44 {
    line-height: 38px;
  }
}
@media (min-width: 1025px) {
  .heading--40 {
    font-size: 2.0833333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--40 {
    font-size: 2.0833333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--40 {
    font-size: 32px !important;
  }
}
@media (max-width: 600px) {
  .heading--40 {
    font-size: 28px !important;
  }
}
@media (min-width: 1025px) {
  .heading--40 {
    line-height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--40 {
    line-height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--40 {
    line-height: 40px;
  }
}
@media (max-width: 600px) {
  .heading--40 {
    line-height: 35px;
  }
}
@media (min-width: 1025px) {
  .heading--50 {
    font-size: 2.6041666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--50 {
    font-size: 2.6041666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--50 {
    font-size: 35px !important;
  }
}
@media (max-width: 600px) {
  .heading--50 {
    font-size: 25px !important;
  }
}
@media (min-width: 1025px) {
  .heading--50 {
    line-height: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--50 {
    line-height: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--50 {
    line-height: 48px;
  }
}
@media (max-width: 600px) {
  .heading--50 {
    line-height: 40px;
  }
}
@media (min-width: 1025px) {
  .heading--50-italic {
    font-size: 2.6041666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--50-italic {
    font-size: 2.6041666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--50-italic {
    font-size: 35px !important;
  }
}
@media (max-width: 600px) {
  .heading--50-italic {
    font-size: 25px !important;
  }
}
@media (min-width: 1025px) {
  .heading--50-italic {
    line-height: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--50-italic {
    line-height: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--50-italic {
    line-height: 48px;
  }
}
@media (max-width: 600px) {
  .heading--50-italic {
    line-height: 40px;
  }
}
@media (min-width: 1025px) {
  .heading--35 {
    font-size: 1.8229166667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--35 {
    font-size: 1.8229166667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--35 {
    font-size: 30px !important;
  }
}
@media (max-width: 600px) {
  .heading--35 {
    font-size: 25px !important;
  }
}
@media (min-width: 1025px) {
  .heading--35 {
    line-height: 2.5vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--35 {
    line-height: 2.5vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--35 {
    line-height: 45px;
  }
}
@media (max-width: 600px) {
  .heading--35 {
    line-height: 40px;
  }
}
@media (min-width: 1025px) {
  .heading--32 {
    font-size: 1.6666666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--32 {
    font-size: 1.6666666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--32 {
    font-size: 25px !important;
  }
}
@media (max-width: 600px) {
  .heading--32 {
    font-size: 22px !important;
  }
}
@media (min-width: 1025px) {
  .heading--32 {
    line-height: 2.34375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--32 {
    line-height: 2.34375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--32 {
    line-height: 40px;
  }
}
@media (max-width: 600px) {
  .heading--32 {
    line-height: 32px;
  }
}
@media (min-width: 1025px) {
  .heading--30 {
    font-size: 1.5625vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--30 {
    font-size: 1.5625vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--30 {
    font-size: 25px !important;
  }
}
@media (max-width: 600px) {
  .heading--30 {
    font-size: 22px !important;
  }
}
@media (min-width: 1025px) {
  .heading--30 {
    line-height: 2.34375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--30 {
    line-height: 2.34375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--30 {
    line-height: 40px;
  }
}
@media (max-width: 600px) {
  .heading--30 {
    line-height: 32px;
  }
}
@media (min-width: 1025px) {
  .heading--25 {
    font-size: 1.3020833333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--25 {
    font-size: 1.3020833333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--25 {
    font-size: 20px !important;
  }
}
@media (max-width: 600px) {
  .heading--25 {
    font-size: 20px !important;
  }
}
@media (min-width: 1025px) {
  .heading--25 {
    line-height: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--25 {
    line-height: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--25 {
    line-height: 28px;
  }
}
@media (max-width: 600px) {
  .heading--25 {
    line-height: 28px;
  }
}
@media (min-width: 1025px) {
  .heading--24 {
    font-size: 1.25vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--24 {
    font-size: 1.25vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--24 {
    font-size: 20px !important;
  }
}
@media (max-width: 600px) {
  .heading--24 {
    font-size: 22px !important;
  }
}
@media (min-width: 1025px) {
  .heading--24 {
    line-height: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--24 {
    line-height: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--24 {
    line-height: 28px;
  }
}
@media (max-width: 600px) {
  .heading--24 {
    line-height: 32px;
  }
}
@media (min-width: 1025px) {
  .heading--12 {
    font-size: 0.625vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--12 {
    font-size: 0.625vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--12 {
    font-size: 12px !important;
  }
}
@media (max-width: 600px) {
  .heading--12 {
    font-size: 12px !important;
  }
}
@media (min-width: 1025px) {
  .heading--12 {
    line-height: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .heading--12 {
    line-height: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .heading--12 {
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .heading--12 {
    line-height: 20px;
  }
}

@media (min-width: 1025px) {
  .paragraph--128 {
    font-size: 6.6666666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--128 {
    font-size: 6.6666666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--128 {
    font-size: 60x !important;
  }
}
@media (max-width: 600px) {
  .paragraph--128 {
    font-size: 50px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--128 {
    line-height: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--128 {
    line-height: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--128 {
    line-height: 75px;
  }
}
@media (max-width: 600px) {
  .paragraph--128 {
    line-height: 65px;
  }
}
@media (min-width: 1025px) {
  .paragraph--80 {
    font-size: 4.1666666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--80 {
    font-size: 4.1666666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--80 {
    font-size: 50px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--80 {
    font-size: 40px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--80 {
    line-height: 5vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--80 {
    line-height: 5vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--80 {
    line-height: 60px;
  }
}
@media (max-width: 600px) {
  .paragraph--80 {
    line-height: 50px;
  }
}
@media (min-width: 1025px) {
  .paragraph--40 {
    font-size: 2.0833333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--40 {
    font-size: 2.0833333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--40 {
    font-size: 30px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--40 {
    font-size: 24px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--40 {
    line-height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--40 {
    line-height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--40 {
    line-height: 40px;
  }
}
@media (max-width: 600px) {
  .paragraph--40 {
    line-height: 30px;
  }
}
@media (min-width: 1025px) {
  .paragraph--35 {
    font-size: 1.8229166667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--35 {
    font-size: 1.8229166667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--35 {
    font-size: 30px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--35 {
    font-size: 25px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--35 {
    line-height: 2.34375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--35 {
    line-height: 2.34375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--35 {
    line-height: 35px;
  }
}
@media (max-width: 600px) {
  .paragraph--35 {
    line-height: 35px;
  }
}
@media (min-width: 1025px) {
  .paragraph--30 {
    font-size: 1.5625vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--30 {
    font-size: 1.5625vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--30 {
    font-size: 25px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--30 {
    font-size: 20px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--30 {
    line-height: 2.1354166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--30 {
    line-height: 2.1354166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--30 {
    line-height: 32px;
  }
}
@media (max-width: 600px) {
  .paragraph--30 {
    line-height: 28px;
  }
}
@media (min-width: 1025px) {
  .paragraph--25-large {
    font-size: 1.3020833333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--25-large {
    font-size: 1.3020833333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--25-large {
    font-size: 20px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--25-large {
    font-size: 20px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--25-large {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--25-large {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--25-large {
    line-height: 35px;
  }
}
@media (max-width: 600px) {
  .paragraph--25-large {
    line-height: 28px;
  }
}
@media (min-width: 1025px) {
  .paragraph--25 {
    font-size: 1.3020833333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--25 {
    font-size: 1.3020833333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--25 {
    font-size: 20px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--25 {
    font-size: 18px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--25 {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--25 {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--25 {
    line-height: 35px;
  }
}
@media (max-width: 600px) {
  .paragraph--25 {
    line-height: 28px;
  }
}
@media (min-width: 1025px) {
  .paragraph--22 {
    font-size: 1.1458333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--22 {
    font-size: 1.1458333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--22 {
    font-size: 20px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--22 {
    font-size: 18px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--22 {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--22 {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--22 {
    line-height: 35px;
  }
}
@media (max-width: 600px) {
  .paragraph--22 {
    line-height: 35px;
  }
}
@media (min-width: 1025px) {
  .paragraph--20 {
    font-size: 1.0416666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--20 {
    font-size: 1.0416666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--20 {
    font-size: 18px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--20 {
    font-size: 16px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--20 {
    line-height: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--20 {
    line-height: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--20 {
    line-height: 35px;
  }
}
@media (max-width: 600px) {
  .paragraph--20 {
    line-height: 28px;
  }
}
@media (min-width: 1025px) {
  .paragraph--18 {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--18 {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--18 {
    font-size: 17px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--18 {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--18 {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--18 {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--18 {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .paragraph--18 {
    line-height: 30px;
  }
}
@media (min-width: 1025px) {
  .paragraph--16 {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--16 {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--16 {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--16 {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--16 {
    line-height: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--16 {
    line-height: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--16 {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .paragraph--16 {
    line-height: 25px;
  }
}
@media (min-width: 1025px) {
  .paragraph--15 {
    font-size: 0.78125vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--15 {
    font-size: 0.78125vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--15 {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--15 {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--15 {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--15 {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--15 {
    line-height: 28px;
  }
}
@media (max-width: 600px) {
  .paragraph--15 {
    line-height: 28px;
  }
}
@media (min-width: 1025px) {
  .paragraph-lineheight--15 {
    font-size: 0.78125vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph-lineheight--15 {
    font-size: 0.78125vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph-lineheight--15 {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .paragraph-lineheight--15 {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph-lineheight--15 {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph-lineheight--15 {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph-lineheight--15 {
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .paragraph-lineheight--15 {
    line-height: 20px;
  }
}
@media (min-width: 1025px) {
  .paragraph--14 {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--14 {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--14 {
    font-size: 13px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--14 {
    font-size: 13px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--14 {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--14 {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--14 {
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .paragraph--14 {
    line-height: 20px;
  }
}
@media (min-width: 1025px) {
  .paragraph--12 {
    font-size: 0.625vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--12 {
    font-size: 0.625vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--12 {
    font-size: 12px !important;
  }
}
@media (max-width: 600px) {
  .paragraph--12 {
    font-size: 12px !important;
  }
}
@media (min-width: 1025px) {
  .paragraph--12 {
    line-height: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .paragraph--12 {
    line-height: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .paragraph--12 {
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .paragraph--12 {
    line-height: 20px;
  }
}

/****************************Opacity*********************************************/
.opacity--0 {
  opacity: 0;
}
.opacity--01 {
  opacity: 0.1;
}
.opacity--02 {
  opacity: 0.2;
}
.opacity--03 {
  opacity: 3;
}
.opacity--04 {
  opacity: 0.4;
}
.opacity--05 {
  opacity: 0.5;
}
.opacity--06 {
  opacity: 0.6;
}
.opacity--07 {
  opacity: 0.7;
}
.opacity--08 {
  opacity: 0.8;
}
.opacity--09 {
  opacity: 0.9;
}
.opacity--1 {
  opacity: 1;
}

.font-color--black {
  color: #000000;
}
.font-color--main {
  color: #181D24;
}
.font-color--gold {
  color: #B7AC86;
}
.font-color--lightgold {
  color: #CFC7A9;
}
.font-color--heading {
  color: #272727;
}
.font-color--text {
  color: #494949;
}
.font-color--white {
  color: #ffffff;
}
.font-color--border {
  color: #393939;
}
.font-color--borderdark {
  color: #4B4B4B;
}
.font-color--inputbg {
  background-color: #F8F8F8;
}

.font-family--cm {
  font-family: "Cormorant", serif;
}
.font-family--jo {
  font-family: "Jost", sans-serif;
}
.font-family--os {
  font-family: "Oswald", sans-serif;
}

.font-weight--100 {
  font-weight: 100 !important;
}
.font-weight--300 {
  font-weight: 300 !important;
}
.font-weight--400 {
  font-weight: 400 !important;
}
.font-weight--500 {
  font-weight: 500 !important;
}
.font-weight--600 {
  font-weight: 600 !important;
}
.font-weight--700 {
  font-weight: 700 !important;
}
.font-weight--900 {
  font-weight: 900 !important;
}

@media (min-width: 1025px) {
  .letter-space--18 {
    letter-spacing: 0.09375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .letter-space--18 {
    letter-spacing: 0.09375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .letter-space--18 {
    letter-spacing: 1.8px;
  }
}
@media (max-width: 600px) {
  .letter-space--18 {
    letter-spacing: 1.8px;
  }
}
@media (min-width: 1025px) {
  .letter-space--16 {
    letter-spacing: 0.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .letter-space--16 {
    letter-spacing: 0.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .letter-space--16 {
    letter-spacing: 1.6px;
  }
}
@media (max-width: 600px) {
  .letter-space--16 {
    letter-spacing: 1.6px;
  }
}
@media (min-width: 1025px) {
  .letter-space--15 {
    letter-spacing: 0.078125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .letter-space--15 {
    letter-spacing: 0.078125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .letter-space--15 {
    letter-spacing: 1.5px;
  }
}
@media (max-width: 600px) {
  .letter-space--15 {
    letter-spacing: 1.5px;
  }
}
@media (min-width: 1025px) {
  .letter-space--27 {
    letter-spacing: 0.140625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .letter-space--27 {
    letter-spacing: 0.140625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .letter-space--27 {
    letter-spacing: 2.7px;
  }
}
@media (max-width: 600px) {
  .letter-space--27 {
    letter-spacing: 2.7px;
  }
}
@media (min-width: 1025px) {
  .letter-space--1 {
    letter-spacing: 0.0520833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .letter-space--1 {
    letter-spacing: 0.0520833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .letter-space--1 {
    letter-spacing: 1px;
  }
}
@media (max-width: 600px) {
  .letter-space--1 {
    letter-spacing: 1px;
  }
}

a.font-color--white {
  transition: all 0.5s;
}
a.font-color--white:hover {
  transition: all 0.5s;
  color: #181D24;
}

.text-decoration--underline {
  text-decoration: underline;
}
.text-decoration--none {
  text-decoration: none;
}

/****************************Font Styles END*********************************************/
/****************************padding*********************************************/
@media (min-width: 1025px) {
  .padding-top--240 {
    padding-top: 12.5vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--240 {
    padding-top: 12.5vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--240 {
    padding-top: 140px;
  }
}
@media (max-width: 600px) {
  .padding-top--240 {
    padding-top: 100px;
  }
}
@media (min-width: 1025px) {
  .padding-top--200 {
    padding-top: 10.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--200 {
    padding-top: 10.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--200 {
    padding-top: 130px;
  }
}
@media (max-width: 600px) {
  .padding-top--200 {
    padding-top: 100px;
  }
}
@media (min-width: 1025px) {
  .padding-top--150 {
    padding-top: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--150 {
    padding-top: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--150 {
    padding-top: 80px;
  }
}
@media (max-width: 600px) {
  .padding-top--150 {
    padding-top: 80px;
  }
}
@media (min-width: 1025px) {
  .padding-top--130 {
    padding-top: 6.7708333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--130 {
    padding-top: 6.7708333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--130 {
    padding-top: 70px;
  }
}
@media (max-width: 600px) {
  .padding-top--130 {
    padding-top: 70px;
  }
}
@media (min-width: 1025px) {
  .padding-top--100 {
    padding-top: 5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--100 {
    padding-top: 5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--100 {
    padding-top: 50px;
  }
}
@media (max-width: 600px) {
  .padding-top--100 {
    padding-top: 25px;
  }
}
@media (min-width: 1025px) {
  .padding-top--80 {
    padding-top: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--80 {
    padding-top: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--80 {
    padding-top: 50px;
  }
}
@media (max-width: 600px) {
  .padding-top--80 {
    padding-top: 40px;
  }
}
@media (min-width: 1025px) {
  .padding-top--70 {
    padding-top: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--70 {
    padding-top: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--70 {
    padding-top: 50px;
  }
}
@media (max-width: 600px) {
  .padding-top--70 {
    padding-top: 30px;
  }
}
@media (min-width: 1025px) {
  .padding-top--60 {
    padding-top: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--60 {
    padding-top: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--60 {
    padding-top: 40px;
  }
}
@media (max-width: 600px) {
  .padding-top--60 {
    padding-top: 20px;
  }
}
@media (min-width: 1025px) {
  .padding-top--50 {
    padding-top: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--50 {
    padding-top: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--50 {
    padding-top: 30px;
  }
}
@media (max-width: 600px) {
  .padding-top--50 {
    padding-top: 25px;
  }
}
@media (min-width: 1025px) {
  .padding-top--40 {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--40 {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--40 {
    padding-top: 30px;
  }
}
@media (max-width: 600px) {
  .padding-top--40 {
    padding-top: 25px;
  }
}
@media (min-width: 1025px) {
  .padding-top--30 {
    padding-top: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--30 {
    padding-top: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--30 {
    padding-top: 20px;
  }
}
@media (max-width: 600px) {
  .padding-top--30 {
    padding-top: 20px;
  }
}
@media (min-width: 1025px) {
  .padding-top--20 {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--20 {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--20 {
    padding-top: 15px;
  }
}
@media (max-width: 600px) {
  .padding-top--20 {
    padding-top: 15px;
  }
}
@media (min-width: 1025px) {
  .padding-top--15 {
    padding-top: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--15 {
    padding-top: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--15 {
    padding-top: 10px;
  }
}
@media (max-width: 600px) {
  .padding-top--15 {
    padding-top: 10px;
  }
}
@media (min-width: 1025px) {
  .padding-top--10 {
    padding-top: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-top--10 {
    padding-top: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-top--10 {
    padding-top: 10px;
  }
}
@media (max-width: 600px) {
  .padding-top--10 {
    padding-top: 10px;
  }
}

@media (min-width: 1025px) {
  .padding-bottom--600 {
    padding-bottom: 31.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--600 {
    padding-bottom: 31.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--600 {
    padding-bottom: 300px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--600 {
    padding-bottom: 150px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--550 {
    padding-bottom: 28.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--550 {
    padding-bottom: 28.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--550 {
    padding-bottom: 300px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--550 {
    padding-bottom: 200px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--500 {
    padding-bottom: 26.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--500 {
    padding-bottom: 26.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--500 {
    padding-bottom: 300px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--500 {
    padding-bottom: 200px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--450 {
    padding-bottom: 23.4375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--450 {
    padding-bottom: 23.4375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--450 {
    padding-bottom: 200px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--450 {
    padding-bottom: 150px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--400 {
    padding-bottom: 20.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--400 {
    padding-bottom: 20.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--400 {
    padding-bottom: 200px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--400 {
    padding-bottom: 150px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--350 {
    padding-bottom: 17.1875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--350 {
    padding-bottom: 17.1875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--350 {
    padding-bottom: 150px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--350 {
    padding-bottom: 100px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--330 {
    padding-bottom: 17.1875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--330 {
    padding-bottom: 17.1875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--330 {
    padding-bottom: 150px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--330 {
    padding-bottom: 100px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--300 {
    padding-bottom: 15.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--300 {
    padding-bottom: 15.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--300 {
    padding-bottom: 150px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--300 {
    padding-bottom: 100px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--250 {
    padding-bottom: 10.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--250 {
    padding-bottom: 10.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--250 {
    padding-bottom: 80px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--250 {
    padding-bottom: 80px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--200 {
    padding-bottom: 10.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--200 {
    padding-bottom: 10.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--200 {
    padding-bottom: 80px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--200 {
    padding-bottom: 80px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--150 {
    padding-bottom: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--150 {
    padding-bottom: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--150 {
    padding-bottom: 80px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--150 {
    padding-bottom: 80px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--130 {
    padding-bottom: 6.7708333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--130 {
    padding-bottom: 6.7708333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--130 {
    padding-bottom: 70px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--130 {
    padding-bottom: 70px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--100 {
    padding-bottom: 5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--100 {
    padding-bottom: 5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--100 {
    padding-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--100 {
    padding-bottom: 40px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--80 {
    padding-bottom: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--80 {
    padding-bottom: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--80 {
    padding-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--80 {
    padding-bottom: 40px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--70 {
    padding-top: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--70 {
    padding-top: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--70 {
    padding-top: 50px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--70 {
    padding-top: 30px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--60 {
    padding-bottom: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--60 {
    padding-bottom: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--60 {
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--60 {
    padding-bottom: 28px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--50 {
    padding-bottom: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--50 {
    padding-bottom: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--50 {
    padding-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--50 {
    padding-bottom: 25px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--40 {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--40 {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--40 {
    padding-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--40 {
    padding-bottom: 25px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--30 {
    padding-bottom: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--30 {
    padding-bottom: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--30 {
    padding-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--30 {
    padding-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--20 {
    padding-bottom: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--20 {
    padding-bottom: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--20 {
    padding-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--20 {
    padding-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--15 {
    padding-bottom: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--15 {
    padding-bottom: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--15 {
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--15 {
    padding-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .padding-bottom--10 {
    padding-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-bottom--10 {
    padding-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-bottom--10 {
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .padding-bottom--10 {
    padding-bottom: 10px;
  }
}

@media (min-width: 1025px) {
  .padding-left--10 {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--10 {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--10 {
    padding-left: 10px;
  }
}
@media (max-width: 600px) {
  .padding-left--10 {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .padding-left--12 {
    padding-left: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--12 {
    padding-left: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--12 {
    padding-left: 6px;
  }
}
@media (max-width: 600px) {
  .padding-left--12 {
    padding-left: 6px;
  }
}
@media (min-width: 1025px) {
  .padding-left--16 {
    padding-left: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--16 {
    padding-left: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--16 {
    padding-left: 16px;
  }
}
@media (max-width: 600px) {
  .padding-left--16 {
    padding-left: 16px;
  }
}
@media (min-width: 1025px) {
  .padding-left--20 {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--20 {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--20 {
    padding-left: 10px;
  }
}
@media (max-width: 600px) {
  .padding-left--20 {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .padding-left--30 {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--30 {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--30 {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .padding-left--30 {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .padding-left--35 {
    padding-left: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--35 {
    padding-left: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--35 {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .padding-left--35 {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .padding-left--40 {
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--40 {
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--40 {
    padding-left: 30px;
  }
}
@media (max-width: 600px) {
  .padding-left--40 {
    padding-left: 25px;
  }
}
@media (min-width: 1025px) {
  .padding-left--50 {
    padding-left: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--50 {
    padding-left: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--50 {
    padding-left: 30px;
  }
}
@media (max-width: 600px) {
  .padding-left--50 {
    padding-left: 25px;
  }
}
@media (min-width: 1025px) {
  .padding-left--60 {
    padding-left: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--60 {
    padding-left: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--60 {
    padding-left: 40px;
  }
}
@media (max-width: 600px) {
  .padding-left--60 {
    padding-left: 28px;
  }
}
@media (min-width: 1025px) {
  .padding-left--70 {
    padding-left: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--70 {
    padding-left: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--70 {
    padding-left: 45px;
  }
}
@media (max-width: 600px) {
  .padding-left--70 {
    padding-left: 35px;
  }
}
@media (min-width: 1025px) {
  .padding-left--80 {
    padding-left: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--80 {
    padding-left: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--80 {
    padding-left: 50px;
  }
}
@media (max-width: 600px) {
  .padding-left--80 {
    padding-left: 40px;
  }
}
@media (min-width: 1025px) {
  .padding-left--100 {
    padding-left: 5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--100 {
    padding-left: 5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--100 {
    padding-left: 70px;
  }
}
@media (max-width: 600px) {
  .padding-left--100 {
    padding-left: 50px;
  }
}
@media (min-width: 1025px) {
  .padding-left--140 {
    padding-left: 7.2916666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--140 {
    padding-left: 7.2916666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--140 {
    padding-left: 95px;
  }
}
@media (max-width: 600px) {
  .padding-left--140 {
    padding-left: 95px;
  }
}
@media (min-width: 1025px) {
  .padding-left--150 {
    padding-left: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-left--150 {
    padding-left: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-left--150 {
    padding-left: 80px;
  }
}
@media (max-width: 600px) {
  .padding-left--150 {
    padding-left: 80px;
  }
}

@media (min-width: 1025px) {
  .padding-right--10 {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--10 {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--10 {
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .padding-right--10 {
    padding-right: 10px;
  }
}
@media (min-width: 1025px) {
  .padding-right--12 {
    padding-right: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--12 {
    padding-right: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--12 {
    padding-right: 6px;
  }
}
@media (max-width: 600px) {
  .padding-right--12 {
    padding-right: 6px;
  }
}
@media (min-width: 1025px) {
  .padding-right--16 {
    padding-right: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--16 {
    padding-right: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--16 {
    padding-right: 16px;
  }
}
@media (max-width: 600px) {
  .padding-right--16 {
    padding-right: 16px;
  }
}
@media (min-width: 1025px) {
  .padding-right--20 {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--20 {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--20 {
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .padding-right--20 {
    padding-right: 10px;
  }
}
@media (min-width: 1025px) {
  .padding-right--30 {
    padding-right: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--30 {
    padding-right: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--30 {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .padding-right--30 {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .padding-right--35 {
    padding-right: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--35 {
    padding-right: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--35 {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .padding-right--35 {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .padding-right--40 {
    padding-right: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--40 {
    padding-right: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--40 {
    padding-right: 30px;
  }
}
@media (max-width: 600px) {
  .padding-right--40 {
    padding-right: 25px;
  }
}
@media (min-width: 1025px) {
  .padding-right--50 {
    padding-right: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--50 {
    padding-right: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--50 {
    padding-right: 30px;
  }
}
@media (max-width: 600px) {
  .padding-right--50 {
    padding-right: 25px;
  }
}
@media (min-width: 1025px) {
  .padding-right--60 {
    padding-right: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--60 {
    padding-right: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--60 {
    padding-right: 40px;
  }
}
@media (max-width: 600px) {
  .padding-right--60 {
    padding-right: 28px;
  }
}
@media (min-width: 1025px) {
  .padding-right--70 {
    padding-right: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--70 {
    padding-right: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--70 {
    padding-right: 45px;
  }
}
@media (max-width: 600px) {
  .padding-right--70 {
    padding-right: 35px;
  }
}
@media (min-width: 1025px) {
  .padding-right--80 {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--80 {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--80 {
    padding-right: 50px;
  }
}
@media (max-width: 600px) {
  .padding-right--80 {
    padding-right: 40px;
  }
}
@media (min-width: 1025px) {
  .padding-right--100 {
    padding-right: 5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--100 {
    padding-right: 5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--100 {
    padding-right: 70px;
  }
}
@media (max-width: 600px) {
  .padding-right--100 {
    padding-right: 50px;
  }
}
@media (min-width: 1025px) {
  .padding-right--140 {
    padding-right: 7.2916666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--140 {
    padding-right: 7.2916666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--140 {
    padding-right: 95px;
  }
}
@media (max-width: 600px) {
  .padding-right--140 {
    padding-right: 95px;
  }
}
@media (min-width: 1025px) {
  .padding-right--150 {
    padding-right: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .padding-right--150 {
    padding-right: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .padding-right--150 {
    padding-right: 80px;
  }
}
@media (max-width: 600px) {
  .padding-right--150 {
    padding-right: 80px;
  }
}

@media (min-width: 1025px) {
  .margin-right--10 {
    margin-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--10 {
    margin-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--10 {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .margin-right--10 {
    margin-right: 10px;
  }
}
@media (min-width: 1025px) {
  .margin-right--12 {
    margin-right: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--12 {
    margin-right: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--12 {
    margin-right: 6px;
  }
}
@media (max-width: 600px) {
  .margin-right--12 {
    margin-right: 6px;
  }
}
@media (min-width: 1025px) {
  .margin-right--16 {
    margin-right: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--16 {
    margin-right: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--16 {
    margin-right: 16px;
  }
}
@media (max-width: 600px) {
  .margin-right--16 {
    margin-right: 16px;
  }
}
@media (min-width: 1025px) {
  .margin-right--20 {
    margin-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--20 {
    margin-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--20 {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .margin-right--20 {
    margin-right: 10px;
  }
}
@media (min-width: 1025px) {
  .margin-right--30 {
    margin-right: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--30 {
    margin-right: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--30 {
    margin-right: 20px;
  }
}
@media (max-width: 600px) {
  .margin-right--30 {
    margin-right: 20px;
  }
}
@media (min-width: 1025px) {
  .margin-right--40 {
    margin-right: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--40 {
    margin-right: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--40 {
    margin-right: 30px;
  }
}
@media (max-width: 600px) {
  .margin-right--40 {
    margin-right: 25px;
  }
}
@media (min-width: 1025px) {
  .margin-right--50 {
    margin-right: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--50 {
    margin-right: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--50 {
    margin-right: 30px;
  }
}
@media (max-width: 600px) {
  .margin-right--50 {
    margin-right: 25px;
  }
}
@media (min-width: 1025px) {
  .margin-right--60 {
    margin-right: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--60 {
    margin-right: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--60 {
    margin-right: 40px;
  }
}
@media (max-width: 600px) {
  .margin-right--60 {
    margin-right: 28px;
  }
}
@media (min-width: 1025px) {
  .margin-right--70 {
    margin-right: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--70 {
    margin-right: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--70 {
    margin-right: 45px;
  }
}
@media (max-width: 600px) {
  .margin-right--70 {
    margin-right: 35px;
  }
}
@media (min-width: 1025px) {
  .margin-right--80 {
    margin-right: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--80 {
    margin-right: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--80 {
    margin-right: 50px;
  }
}
@media (max-width: 600px) {
  .margin-right--80 {
    margin-right: 40px;
  }
}
@media (min-width: 1025px) {
  .margin-right--90 {
    margin-right: 4.6875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--90 {
    margin-right: 4.6875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--90 {
    margin-right: 25px;
  }
}
@media (max-width: 600px) {
  .margin-right--90 {
    margin-right: 40px;
  }
}
@media (min-width: 1025px) {
  .margin-right--100 {
    margin-right: 5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--100 {
    margin-right: 5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--100 {
    margin-right: 70px;
  }
}
@media (max-width: 600px) {
  .margin-right--100 {
    margin-right: 50px;
  }
}
@media (min-width: 1025px) {
  .margin-right--140 {
    margin-right: 7.2916666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--140 {
    margin-right: 7.2916666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--140 {
    margin-right: 95px;
  }
}
@media (max-width: 600px) {
  .margin-right--140 {
    margin-right: 95px;
  }
}
@media (min-width: 1025px) {
  .margin-right--150 {
    margin-right: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-right--150 {
    margin-right: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-right--150 {
    margin-right: 80px;
  }
}
@media (max-width: 600px) {
  .margin-right--150 {
    margin-right: 80px;
  }
}

@media (min-width: 1025px) {
  .margin-left--10 {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--10 {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--10 {
    margin-left: 10px;
  }
}
@media (max-width: 600px) {
  .margin-left--10 {
    margin-left: 10px;
  }
}
@media (min-width: 1025px) {
  .margin-left--12 {
    margin-left: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--12 {
    margin-left: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--12 {
    margin-left: 6px;
  }
}
@media (max-width: 600px) {
  .margin-left--12 {
    margin-left: 6px;
  }
}
@media (min-width: 1025px) {
  .margin-left--16 {
    margin-left: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--16 {
    margin-left: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--16 {
    margin-left: 16px;
  }
}
@media (max-width: 600px) {
  .margin-left--16 {
    margin-left: 16px;
  }
}
@media (min-width: 1025px) {
  .margin-left--20 {
    margin-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--20 {
    margin-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--20 {
    margin-left: 10px;
  }
}
@media (max-width: 600px) {
  .margin-left--20 {
    margin-left: 10px;
  }
}
@media (min-width: 1025px) {
  .margin-left--30 {
    margin-left: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--30 {
    margin-left: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--30 {
    margin-left: 20px;
  }
}
@media (max-width: 600px) {
  .margin-left--30 {
    margin-left: 20px;
  }
}
@media (min-width: 1025px) {
  .margin-left--40 {
    margin-left: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--40 {
    margin-left: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--40 {
    margin-left: 30px;
  }
}
@media (max-width: 600px) {
  .margin-left--40 {
    margin-left: 25px;
  }
}
@media (min-width: 1025px) {
  .margin-left--50 {
    margin-left: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--50 {
    margin-left: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--50 {
    margin-left: 30px;
  }
}
@media (max-width: 600px) {
  .margin-left--50 {
    margin-left: 25px;
  }
}
@media (min-width: 1025px) {
  .margin-left--60 {
    margin-left: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--60 {
    margin-left: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--60 {
    margin-left: 40px;
  }
}
@media (max-width: 600px) {
  .margin-left--60 {
    margin-left: 28px;
  }
}
@media (min-width: 1025px) {
  .margin-left--70 {
    margin-left: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--70 {
    margin-left: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--70 {
    margin-left: 45px;
  }
}
@media (max-width: 600px) {
  .margin-left--70 {
    margin-left: 35px;
  }
}
@media (min-width: 1025px) {
  .margin-left--80 {
    margin-left: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--80 {
    margin-left: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--80 {
    margin-left: 50px;
  }
}
@media (max-width: 600px) {
  .margin-left--80 {
    margin-left: 40px;
  }
}
@media (min-width: 1025px) {
  .margin-left--100 {
    margin-left: 5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--100 {
    margin-left: 5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--100 {
    margin-left: 70px;
  }
}
@media (max-width: 600px) {
  .margin-left--100 {
    margin-left: 50px;
  }
}
@media (min-width: 1025px) {
  .margin-left--140 {
    margin-left: 7.2916666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--140 {
    margin-left: 7.2916666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--140 {
    margin-left: 95px;
  }
}
@media (max-width: 600px) {
  .margin-left--140 {
    margin-left: 95px;
  }
}
@media (min-width: 1025px) {
  .margin-left--150 {
    margin-left: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--150 {
    margin-left: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--150 {
    margin-left: 80px;
  }
}
@media (max-width: 600px) {
  .margin-left--150 {
    margin-left: 80px;
  }
}

@media (min-width: 1025px) {
  .margin-bottom--10 {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--10 {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--10 {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--10 {
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--12 {
    margin-bottom: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--12 {
    margin-bottom: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--12 {
    margin-bottom: 6px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--12 {
    margin-bottom: 6px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--16 {
    margin-bottom: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--16 {
    margin-bottom: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--16 {
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--16 {
    margin-bottom: 16px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--20 {
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--20 {
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--20 {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--20 {
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--30 {
    margin-bottom: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--30 {
    margin-bottom: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--30 {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--30 {
    margin-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--50 {
    margin-bottom: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--50 {
    margin-bottom: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--50 {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--50 {
    margin-bottom: 25px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--60 {
    margin-bottom: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--60 {
    margin-bottom: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--60 {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--60 {
    margin-bottom: 28px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--70 {
    margin-bottom: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--70 {
    margin-bottom: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--70 {
    margin-bottom: 45px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--70 {
    margin-bottom: 35px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--80 {
    margin-bottom: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--80 {
    margin-bottom: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--80 {
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--80 {
    margin-bottom: 40px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--100 {
    margin-bottom: 5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--100 {
    margin-bottom: 5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--100 {
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--100 {
    margin-bottom: 25px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--140 {
    margin-bottom: 7.2916666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--140 {
    margin-bottom: 7.2916666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--140 {
    margin-bottom: 70px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--140 {
    margin-bottom: 50px;
  }
}
@media (min-width: 1025px) {
  .margin-bottom--150 {
    margin-bottom: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-bottom--150 {
    margin-bottom: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-bottom--150 {
    margin-bottom: 80px;
  }
}
@media (max-width: 600px) {
  .margin-bottom--150 {
    margin-bottom: 80px;
  }
}

@media (min-width: 1025px) {
  .margin-top--10 {
    margin-top: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--10 {
    margin-top: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--10 {
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .margin-top--10 {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  .margin-top--12 {
    margin-top: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--12 {
    margin-top: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--12 {
    margin-top: 6px;
  }
}
@media (max-width: 600px) {
  .margin-top--12 {
    margin-top: 6px;
  }
}
@media (min-width: 1025px) {
  .margin-top--16 {
    margin-top: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--16 {
    margin-top: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--16 {
    margin-top: 16px;
  }
}
@media (max-width: 600px) {
  .margin-top--16 {
    margin-top: 16px;
  }
}
@media (min-width: 1025px) {
  .margin-top--20 {
    margin-top: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--20 {
    margin-top: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--20 {
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .margin-top--20 {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  .margin-top--25 {
    margin-top: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--25 {
    margin-top: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--25 {
    margin-top: 15px;
  }
}
@media (max-width: 600px) {
  .margin-top--25 {
    margin-top: 15px;
  }
}
@media (min-width: 1025px) {
  .margin-top--30 {
    margin-top: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--30 {
    margin-top: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--30 {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .margin-top--30 {
    margin-top: 20px;
  }
}
@media (min-width: 1025px) {
  .margin-top--40 {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--40 {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--40 {
    margin-top: 35px;
  }
}
@media (max-width: 600px) {
  .margin-top--40 {
    margin-top: 20px;
  }
}
@media (min-width: 1025px) {
  .margin-top--50 {
    margin-top: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--50 {
    margin-top: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--50 {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .margin-top--50 {
    margin-top: 25px;
  }
}
@media (min-width: 1025px) {
  .margin-top--60 {
    margin-top: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--60 {
    margin-top: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--60 {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .margin-top--60 {
    margin-top: 28px;
  }
}
@media (min-width: 1025px) {
  .margin-top--70 {
    margin-top: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--70 {
    margin-top: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--70 {
    margin-top: 45px;
  }
}
@media (max-width: 600px) {
  .margin-top--70 {
    margin-top: 35px;
  }
}
@media (min-width: 1025px) {
  .margin-top--80 {
    margin-top: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--80 {
    margin-top: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--80 {
    margin-top: 50px;
  }
}
@media (max-width: 600px) {
  .margin-top--80 {
    margin-top: 40px;
  }
}
@media (min-width: 1025px) {
  .margin-top--100 {
    margin-top: 5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--100 {
    margin-top: 5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--100 {
    margin-top: 50px;
  }
}
@media (max-width: 600px) {
  .margin-top--100 {
    margin-top: 25px;
  }
}
@media (min-width: 1025px) {
  .margin-top--140 {
    margin-top: 7.2916666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--140 {
    margin-top: 7.2916666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--140 {
    margin-top: 70px;
  }
}
@media (max-width: 600px) {
  .margin-top--140 {
    margin-top: 50px;
  }
}
@media (min-width: 1025px) {
  .margin-top--150 {
    margin-top: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--150 {
    margin-top: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--150 {
    margin-top: 80px;
  }
}
@media (max-width: 600px) {
  .margin-top--150 {
    margin-top: 80px;
  }
}
@media (min-width: 1025px) {
  .margin-top--180 {
    margin-top: 9.375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-top--180 {
    margin-top: 9.375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-top--180 {
    margin-top: 80px;
  }
}
@media (max-width: 600px) {
  .margin-top--180 {
    margin-top: 80px;
  }
}

/****************************padding END*********************************************/
/****************************Display classes START*********************************************/
.display--block {
  display: block;
}
.display--inline-block {
  display: inline-block;
}
.display--flex {
  display: flex;
}
.display--inline-flex {
  display: inline-flex;
}
.display--none {
  display: none;
}

/****************************Display classes END*********************************************/
/****************************bg color*********************************************/
.bg-color--black {
  background-color: #000000;
}
.bg-color--white {
  background-color: #ffffff;
}
.bg-color--main {
  background-color: #181D24;
}
.bg-color--gold {
  background-color: #B7AC86;
}
.bg-color--lightgold {
  background-color: #CFC7A9;
}
.bg-color--text {
  background-color: #494949;
}
.bg-color--heading {
  background-color: #272727;
}
.bg-color--darkblue {
  background-color: #262D38;
}
.bg-color--border {
  background-color: #393939;
}
.bg-color--borderdark {
  background-color: #4B4B4B;
}
.bg-color--inputbg {
  background-color: #F8F8F8;
}
.bg-color--ongoing {
  background-color: #1884DA;
}
.bg-color--new {
  background-color: #3E9E42;
}
.bg-color--occupy {
  background-color: #E3931D;
}
.bg-color--sold {
  background-color: #CE2D22;
}
.bg-color--darkpink {
  background-color: #DDDDDC;
}

a.font-color--gold:hover {
  color: #ffffff;
}

a.font-color--white:hover {
  color: #B7AC86;
}

.font-color--white-mobile {
  color: #494949 !important;
}
@media only screen and (min-width: 1025px) {
  .font-color--white-mobile {
    color: #ffffff !important;
  }
}

.right-align {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1025px) {
  .right-align {
    margin-left: auto;
    margin-right: 0 !important;
  }
}

.left-align {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1025px) {
  .left-align {
    margin-left: 0 !important;
    margin-right: auto;
  }
}

.show-desktop {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .show-desktop {
    display: block;
  }
}

.show-mobile {
  display: block;
}
@media only screen and (min-width: 1025px) {
  .show-mobile {
    display: none;
  }
}

.next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  font-weight: 600;
  width: max-content;
  text-transform: uppercase;
  overflow: hidden;
  font-style: normal;
  transition: all 0.3s;
  border-radius: 1.5625vw;
}
@media (min-width: 1025px) {
  .next-btn {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .next-btn {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .next-btn {
    font-size: 14px !important;
  }
}
@media (max-width: 600px) {
  .next-btn {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .next-btn {
    height: 2.8645833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .next-btn {
    height: 2.8645833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .next-btn {
    height: 45px;
  }
}
@media (max-width: 600px) {
  .next-btn {
    height: 45px;
  }
}
@media (min-width: 1025px) {
  .next-btn {
    letter-spacing: 0.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .next-btn {
    letter-spacing: 0.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .next-btn {
    letter-spacing: 2.4px;
  }
}
@media (max-width: 600px) {
  .next-btn {
    letter-spacing: 2.4px;
  }
}
@media (min-width: 1025px) {
  .next-btn {
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .next-btn {
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .next-btn {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .next-btn {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .next-btn {
    padding-right: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .next-btn {
    padding-right: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .next-btn {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .next-btn {
    padding-right: 20px;
  }
}
.next-btn--white-line {
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
}
.next-btn--white-line:hover {
  transition: all 0.3s;
  color: #000000;
  background: #ffffff;
  border: 1px solid #ffffff;
}

@media (min-width: 1025px) {
  .two-item-slider, .three-item-slider, .flavor-slider {
    margin-left: -0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-slider, .three-item-slider, .flavor-slider {
    margin-left: -0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-slider, .three-item-slider, .flavor-slider {
    margin-left: -5px;
  }
}
@media (max-width: 600px) {
  .two-item-slider, .three-item-slider, .flavor-slider {
    margin-left: -5px;
  }
}
@media (min-width: 1025px) {
  .two-item-slider, .three-item-slider, .flavor-slider {
    margin-right: -0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-slider, .three-item-slider, .flavor-slider {
    margin-right: -0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-slider, .three-item-slider, .flavor-slider {
    margin-right: -5px;
  }
}
@media (max-width: 600px) {
  .two-item-slider, .three-item-slider, .flavor-slider {
    margin-right: -5px;
  }
}
@media (min-width: 1025px) {
  .two-item-slider .slider-item, .three-item-slider .slider-item, .flavor-slider .slider-item {
    padding-left: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-slider .slider-item, .three-item-slider .slider-item, .flavor-slider .slider-item {
    padding-left: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-slider .slider-item, .three-item-slider .slider-item, .flavor-slider .slider-item {
    padding-left: 5px;
  }
}
@media (max-width: 600px) {
  .two-item-slider .slider-item, .three-item-slider .slider-item, .flavor-slider .slider-item {
    padding-left: 5px;
  }
}
@media (min-width: 1025px) {
  .two-item-slider .slider-item, .three-item-slider .slider-item, .flavor-slider .slider-item {
    padding-right: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .two-item-slider .slider-item, .three-item-slider .slider-item, .flavor-slider .slider-item {
    padding-right: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .two-item-slider .slider-item, .three-item-slider .slider-item, .flavor-slider .slider-item {
    padding-right: 5px;
  }
}
@media (max-width: 600px) {
  .two-item-slider .slider-item, .three-item-slider .slider-item, .flavor-slider .slider-item {
    padding-right: 5px;
  }
}

.view-more-btn {
  position: relative;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .view-more-btn {
    padding-bottom: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .view-more-btn {
    padding-bottom: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .view-more-btn {
    padding-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .view-more-btn {
    padding-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  .view-more-btn {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .view-more-btn {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .view-more-btn {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .view-more-btn {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .view-more-btn {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .view-more-btn {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .view-more-btn {
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .view-more-btn {
    line-height: 20px;
  }
}
.view-more-btn:after {
  position: absolute;
  display: block;
  content: "";
  margin: 0 auto;
  background-image: url("../../images/view-more-btn.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .view-more-btn:after {
    bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .view-more-btn:after {
    bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .view-more-btn:after {
    bottom: 0;
  }
}
@media (max-width: 600px) {
  .view-more-btn:after {
    bottom: 0;
  }
}
@media (min-width: 1025px) {
  .view-more-btn:after {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .view-more-btn:after {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .view-more-btn:after {
    left: 0;
  }
}
@media (max-width: 600px) {
  .view-more-btn:after {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .view-more-btn:after {
    right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .view-more-btn:after {
    right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .view-more-btn:after {
    right: 0;
  }
}
@media (max-width: 600px) {
  .view-more-btn:after {
    right: 0;
  }
}
@media (min-width: 1025px) {
  .view-more-btn:after {
    height: 0.46875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .view-more-btn:after {
    height: 0.46875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .view-more-btn:after {
    height: 9px;
  }
}
@media (max-width: 600px) {
  .view-more-btn:after {
    height: 9px;
  }
}
@media (min-width: 1025px) {
  .view-more-btn:after {
    width: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .view-more-btn:after {
    width: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .view-more-btn:after {
    width: 18px;
  }
}
@media (max-width: 600px) {
  .view-more-btn:after {
    width: 18px;
  }
}

/****************************bg Color end*********************************************/
.js-scroll {
  opacity: 0;
  transition: opacity 750ms;
}

.js-scroll.scrolled {
  opacity: 1;
}

.scrolled.revealup {
  animation: animateup 0.5s ease-in-out both;
}

@keyframes animateup {
  0% {
    transform: translate3d(0px, 20px, 0);
    opacity: 0;
    transition: all 0.3s;
  }
  100% {
    transition: all 0.3s;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.scrolled.revealleft {
  animation: animateleft 0.5s ease-in-out both;
}

.scrolled.moveleft {
  animation: moveleft 1s ease-in-out both;
}

.scrolled.movetop {
  animation: movetop 0.5s ease-in-out both;
}

.scrolled.movebottom {
  animation: movebottom 0.5s ease-in-out both;
}

@keyframes animateleft {
  0% {
    transform: translate3d(-100px, 0px, 0);
    opacity: 0;
    transition: all 0.3s;
  }
  100% {
    transition: all 0.3s;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes moveleft {
  0% {
    transform: translate3d(-40px, 0px, 0);
    transition: all 0.3s;
  }
  100% {
    transition: all 0.3s;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes movetop {
  0% {
    transform: translate3d(0px, 40px, 0);
    transition: all 0.3s;
  }
  100% {
    transition: all 0.3s;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes movebottom {
  0% {
    transform: translate3d(0px, -40px, 0);
    transition: all 0.3s;
  }
  100% {
    transition: all 0.3s;
    transform: translate3d(0, 0, 0);
  }
}
/* Initial state for reveal containers */
.reveal-left, .reveal-right, .reveal-top, .reveal-bottom {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: inset(0 100% 0 0); /* Default to reveal-left */
}

.reveal-top img,
.reveal-bottom img,
.reveal-left img,
.reveal-right img {
  transform: scale(1.3); /* Initial zoom-in scale */
}

/* Left side reveal */
.reveal-bottom.scrolled {
  animation: slideInBottomClip 1s forwards ease-out;
}

/* Right side reveal */
.reveal-bottom {
  clip-path: inset(0 0 100% 0); /* Fully clipped from the left initially */
}

/* Left side reveal */
/* Keyframes for left-to-right clip-path reveal */
@keyframes slideInLeftClip {
  from {
    clip-path: inset(0 100% 0 0); /* Fully clipped from the right */
  }
  to {
    clip-path: inset(0 0 0 0); /* No clipping, fully revealed */
  }
}
/* Keyframes for right-to-left clip-path reveal */
@keyframes slideInRightClip {
  from {
    clip-path: inset(0 0 0 100%); /* Fully clipped from the left */
  }
  to {
    clip-path: inset(0 0 0 0); /* No clipping, fully revealed */
  }
}
@keyframes slideInTopClip {
  from {
    clip-path: inset(100% 0 0 0); /* Fully clipped from the top */
  }
  to {
    clip-path: inset(0 0 0 0); /* No clipping, fully revealed */
  }
}
@keyframes slideInBottomClip {
  from {
    clip-path: inset(0 0 100% 0); /* Fully clipped from the bottom */
  }
  to {
    clip-path: inset(0 0 0 0); /* No clipping, fully revealed */
  }
}
/* Keyframes for image scale effect */
@keyframes scaleAndSlideImage {
  from {
    transform: scale(1.3);
  }
  to {
    transform: scale(1);
  }
}
/****************************Nav Buttons END*********************************************/
@media only screen and (min-width: 1025px) {
  .mobile_tab_el, .mobile_el {
    display: none !important;
  }
  .mobile_tab_el {
    display: none !important;
  }
}
@media only screen and (max-width: 1025px) {
  .desktop_el {
    display: none !important;
  }
  .offer-slider {
    padding: 0;
  }
  .slick-slider .slick-arrow {
    position: absolute;
    top: auto !important;
    bottom: 0;
  }
  .slick-slider .slick-prev {
    right: auto !important;
    left: calc(50% - 55px) !important;
  }
  .slick-slider .slick-next {
    left: auto !important;
    right: calc(50% - 55px) !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .mobile_el {
    display: none !important;
  }
}
.fancybox__container {
  z-index: 999999;
}

.fancybox__content {
  padding: 0;
}

.accordion .accordion-item,
.accordion .accordion-button {
  background-color: transparent;
  border: none;
}
.accordion .accordion-header {
  display: flex;
  min-height: 18px;
}
@media only screen and (min-width: 1025px) {
  .accordion .accordion-header {
    min-height: 2.344vw;
  }
}
.accordion .accordion-item {
  position: relative;
}
.accordion .accordion-item:after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0vw;
  left: 0vw;
  height: 0.0520833333vw;
  width: 100%;
  background-image: url("../../images/accordion-border.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.accordion .accordion-item:last-child {
  padding-bottom: 0vw;
}
.accordion .accordion-item:last-child:after {
  background-image: none;
}
.accordion .accordion-button {
  box-shadow: none;
}
@media (min-width: 1025px) {
  .accordion .accordion-button {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .accordion .accordion-button {
    padding-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .accordion .accordion-button {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .accordion .accordion-button {
    padding-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .accordion .accordion-button {
    padding-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .accordion .accordion-button {
    padding-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .accordion .accordion-button {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .accordion .accordion-button {
    padding-top: 0;
  }
}
@media (min-width: 1025px) {
  .accordion .accordion-button {
    padding-left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .accordion .accordion-button {
    padding-left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .accordion .accordion-button {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .accordion .accordion-button {
    padding-left: 0;
  }
}
@media (min-width: 1025px) {
  .accordion .accordion-button {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .accordion .accordion-button {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .accordion .accordion-button {
    padding-right: 30px;
  }
}
@media (max-width: 600px) {
  .accordion .accordion-button {
    padding-right: 30px;
  }
}
.accordion .accordion-button:after {
  display: none;
}
.accordion .accordion-button::before {
  position: absolute;
  display: block;
  content: "";
  top: 4px;
  right: 0;
  height: 8px;
  width: 16px;
  background-image: url("../../images/acc-collapsed.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media only screen and (min-width: 1025px) {
  .accordion .accordion-button::before {
    top: 50%;
    height: 0.5729166667vw;
    width: 1.1458333333vw;
    transform: translateY(-50%);
  }
}
.accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #B7AC86 !important;
}
.accordion .accordion-button:not(.collapsed)::before {
  background-image: url("../../images/acc-opened.svg");
}
@media (min-width: 1025px) {
  .accordion .accordion-body {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .accordion .accordion-body {
    padding-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .accordion .accordion-body {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .accordion .accordion-body {
    padding-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .accordion .accordion-body {
    padding-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .accordion .accordion-body {
    padding-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .accordion .accordion-body {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .accordion .accordion-body {
    padding-top: 0;
  }
}
@media (min-width: 1025px) {
  .accordion .accordion-body {
    padding-left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .accordion .accordion-body {
    padding-left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .accordion .accordion-body {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .accordion .accordion-body {
    padding-left: 0;
  }
}
@media (min-width: 1025px) {
  .accordion .accordion-body {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .accordion .accordion-body {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .accordion .accordion-body {
    padding-right: 30px;
  }
}
@media (max-width: 600px) {
  .accordion .accordion-body {
    padding-right: 30px;
  }
}

html.menu-open {
  overflow: hidden;
}
html.menu-open .header__ham-menu,
html.menu-open .header__media-icon {
  display: none;
}

@media (min-width: 1025px) {
  .inner-page .introduction__wrapper {
    width: 60%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .inner-page .introduction__wrapper {
    width: 60%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .inner-page .introduction__wrapper {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .inner-page .introduction__wrapper {
    width: 90%;
  }
}
.inner-page .introduction__decription-text {
  width: 100%;
}
.inner-page .introduction--404 .content h4 {
  margin-top: 48px;
}
@media only screen and (min-width: 1025px) {
  .inner-page .introduction--404 .content h4 {
    margin-top: 4vw;
  }
}
.inner-page #eme-slider-v2 {
  height: 70vh;
  overflow: hidden;
}
.inner-page #eme-slider-v2 .item img {
  height: 70vh;
  width: 100%;
  object-fit: cover;
}

.nice-select,
.select2 {
  font-family: "Jost", sans-serif;
  color: #000000;
  width: 100%;
  font-weight: 500 !important;
  border: 1px solid #000000;
  background-color: #000000 !important;
  border: 1px solid transparent;
}
@media (min-width: 1025px) {
  .nice-select,
  .select2 {
    height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select,
  .select2 {
    height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select,
  .select2 {
    height: 45px;
  }
}
@media (max-width: 600px) {
  .nice-select,
  .select2 {
    height: 45px;
  }
}
@media (min-width: 1025px) {
  .nice-select,
  .select2 {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select,
  .select2 {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select,
  .select2 {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .nice-select,
  .select2 {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .nice-select,
  .select2 {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select,
  .select2 {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select,
  .select2 {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .nice-select,
  .select2 {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .nice-select,
  .select2 {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select,
  .select2 {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select,
  .select2 {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .nice-select,
  .select2 {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .nice-select,
  .select2 {
    line-height: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select,
  .select2 {
    line-height: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select,
  .select2 {
    line-height: 15px;
  }
}
@media (max-width: 600px) {
  .nice-select,
  .select2 {
    line-height: 15px;
  }
}
.nice-select:focus, .nice-select:hover,
.select2:focus,
.select2:hover {
  border: 1px solid #000000;
  background: #000000 !important;
}
.nice-select .current,
.nice-select .list li,
.select2 .current,
.select2 .list li {
  font-family: "Jost", sans-serif;
  color: #000000;
  font-size: 14px;
  font-weight: 300;
}
@media only screen and (min-width: 1025px) {
  .nice-select .current,
  .nice-select .list li,
  .select2 .current,
  .select2 .list li {
    font-size: 1.042vw;
  }
}

.nice-select,
.select2 {
  position: relative;
  display: flex;
  align-items: center;
  float: none;
  width: 100%;
  height: 42px;
  border-radius: 0;
  border: 1px solid #000000;
  background-color: #000000;
}
@media only screen and (min-width: 1025px) {
  .nice-select,
  .select2 {
    border-radius: 0;
    width: 15.365vw;
    height: 2.604vw;
  }
}
.nice-select:hover,
.select2:hover {
  border: 1px solid #000000;
}
.nice-select .current,
.select2 .current {
  display: flex;
  align-items: center;
  color: #000000;
  font-family: "Cormorant", serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
@media only screen and (min-width: 1025px) {
  .nice-select .current,
  .select2 .current {
    font-size: 1.146vw;
    line-height: 2.5vw;
  }
}
.nice-select:after,
.select2:after {
  border-bottom: 1px solid #272727;
  border-right: 1px solid #272727;
  transform: rotate(45deg) translateY(-50%) !important;
}
@media (min-width: 1025px) {
  .nice-select:after,
  .select2:after {
    width: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select:after,
  .select2:after {
    width: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select:after,
  .select2:after {
    width: 10px;
  }
}
@media (max-width: 600px) {
  .nice-select:after,
  .select2:after {
    width: 10px;
  }
}
@media (min-width: 1025px) {
  .nice-select:after,
  .select2:after {
    height: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select:after,
  .select2:after {
    height: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select:after,
  .select2:after {
    height: 10px;
  }
}
@media (max-width: 600px) {
  .nice-select:after,
  .select2:after {
    height: 10px;
  }
}
@media (min-width: 1025px) {
  .nice-select:after,
  .select2:after {
    right: 1.3541666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select:after,
  .select2:after {
    right: 1.3541666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select:after,
  .select2:after {
    right: 20px;
  }
}
@media (max-width: 600px) {
  .nice-select:after,
  .select2:after {
    right: 20px;
  }
}
.nice-select ul.list,
.select2 ul.list {
  background-color: #ffffff;
  border-radius: 0 !important;
  border-right: 1px solid #DADADA !important;
}
@media (min-width: 1025px) {
  .nice-select ul.list,
  .select2 ul.list {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select ul.list,
  .select2 ul.list {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select ul.list,
  .select2 ul.list {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .nice-select ul.list,
  .select2 ul.list {
    width: 100%;
  }
}
.nice-select ul li,
.select2 ul li {
  color: #272727;
  font-family: "Cormorant", serif;
  font-weight: 600;
  min-height: auto !important;
  text-transform: capitalize;
}
@media (min-width: 1025px) {
  .nice-select ul li,
  .select2 ul li {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select ul li,
  .select2 ul li {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select ul li,
  .select2 ul li {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .nice-select ul li,
  .select2 ul li {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .nice-select ul li,
  .select2 ul li {
    line-height: 1.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select ul li,
  .select2 ul li {
    line-height: 1.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select ul li,
  .select2 ul li {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .nice-select ul li,
  .select2 ul li {
    line-height: 30px;
  }
}
@media (min-width: 1025px) {
  .nice-select ul li,
  .select2 ul li {
    padding-top: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select ul li,
  .select2 ul li {
    padding-top: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select ul li,
  .select2 ul li {
    padding-top: 5px;
  }
}
@media (max-width: 600px) {
  .nice-select ul li,
  .select2 ul li {
    padding-top: 5px;
  }
}
@media (min-width: 1025px) {
  .nice-select ul li,
  .select2 ul li {
    padding-bottom: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select ul li,
  .select2 ul li {
    padding-bottom: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select ul li,
  .select2 ul li {
    padding-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .nice-select ul li,
  .select2 ul li {
    padding-bottom: 5px;
  }
}
.nice-select ul li:hover,
.select2 ul li:hover {
  background-color: #CFC7A9 !important;
}
.nice-select ul li.selected,
.select2 ul li.selected {
  background-color: #CFC7A9 !important;
}
.nice-select .interest-form,
.select2 .interest-form {
  position: relative;
}
.nice-select .interest-form .popup-close,
.select2 .interest-form .popup-close {
  position: absolute;
  display: block;
  content: "";
  top: 10px;
  right: 15px;
  background-image: url("../assets/images/popup-close.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .nice-select .interest-form .popup-close,
  .select2 .interest-form .popup-close {
    height: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select .interest-form .popup-close,
  .select2 .interest-form .popup-close {
    height: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select .interest-form .popup-close,
  .select2 .interest-form .popup-close {
    height: 14px;
  }
}
@media (max-width: 600px) {
  .nice-select .interest-form .popup-close,
  .select2 .interest-form .popup-close {
    height: 14px;
  }
}
@media (min-width: 1025px) {
  .nice-select .interest-form .popup-close,
  .select2 .interest-form .popup-close {
    width: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .nice-select .interest-form .popup-close,
  .select2 .interest-form .popup-close {
    width: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .nice-select .interest-form .popup-close,
  .select2 .interest-form .popup-close {
    width: 14px;
  }
}
@media (max-width: 600px) {
  .nice-select .interest-form .popup-close,
  .select2 .interest-form .popup-close {
    width: 14px;
  }
}
@media only screen and (min-width: 1025px) {
  .nice-select .interest-form .popup-close,
  .select2 .interest-form .popup-close {
    top: 25px;
    right: 30px;
  }
}

.masionary-wrap {
  column-count: 1;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .masionary-wrap {
    column-count: 2;
  }
}

.masionary-item {
  page-break-inside: avoid;
  break-inside: avoid-column;
  display: table;
  width: 100%;
  margin-bottom: 40px;
}

.parallax {
  height: auto;
  position: relative;
}
@media (min-width: 1025px) {
  .parallax {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .parallax {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .parallax {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .parallax {
    width: 100%;
  }
}

.anim {
  overflow: hidden;
}
.anim img {
  transition: 0.5s ease-in-out;
}
.anim img:hover {
  transform: scale(1.1);
}

.pagination {
  position: relative;
}
.pagination .page-numbers {
  color: #272727;
  font-weight: 400;
  border: 1px solid #EDEDED;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .pagination .page-numbers {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pagination .page-numbers {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pagination .page-numbers {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .pagination .page-numbers {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .pagination .page-numbers {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pagination .page-numbers {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pagination .page-numbers {
    line-height: 22px;
  }
}
@media (max-width: 600px) {
  .pagination .page-numbers {
    line-height: 21px;
  }
}
@media (min-width: 1025px) {
  .pagination .page-numbers {
    height: 1.9791666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pagination .page-numbers {
    height: 1.9791666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pagination .page-numbers {
    height: 28px;
  }
}
@media (max-width: 600px) {
  .pagination .page-numbers {
    height: 28px;
  }
}
@media (min-width: 1025px) {
  .pagination .page-numbers {
    width: 1.9791666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pagination .page-numbers {
    width: 1.9791666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pagination .page-numbers {
    width: 28px;
  }
}
@media (max-width: 600px) {
  .pagination .page-numbers {
    width: 28px;
  }
}
@media (min-width: 1025px) {
  .pagination .page-numbers {
    margin-left: 0.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pagination .page-numbers {
    margin-left: 0.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pagination .page-numbers {
    margin-left: 4px;
  }
}
@media (max-width: 600px) {
  .pagination .page-numbers {
    margin-left: 4px;
  }
}
@media (min-width: 1025px) {
  .pagination .page-numbers {
    margin-right: 0.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pagination .page-numbers {
    margin-right: 0.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pagination .page-numbers {
    margin-right: 4px;
  }
}
@media (max-width: 600px) {
  .pagination .page-numbers {
    margin-right: 4px;
  }
}
.pagination .page-numbers:hover {
  background-color: #B7AC86;
}
.pagination .page-numbers.current {
  background-color: #B7AC86;
}
.pagination .page-numbers.current:hover {
  background-color: #B7AC86;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  position: relative;
}
.pagination .page-numbers.next:after, .pagination .page-numbers.prev:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  background-image: url("../../images/nav-next.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate(-50%, -50%);
}
@media (min-width: 1025px) {
  .pagination .page-numbers.next:after, .pagination .page-numbers.prev:after {
    width: 0.7291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pagination .page-numbers.next:after, .pagination .page-numbers.prev:after {
    width: 0.7291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pagination .page-numbers.next:after, .pagination .page-numbers.prev:after {
    width: 10px;
  }
}
@media (max-width: 600px) {
  .pagination .page-numbers.next:after, .pagination .page-numbers.prev:after {
    width: 10px;
  }
}
@media (min-width: 1025px) {
  .pagination .page-numbers.next:after, .pagination .page-numbers.prev:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pagination .page-numbers.next:after, .pagination .page-numbers.prev:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pagination .page-numbers.next:after, .pagination .page-numbers.prev:after {
    height: 7px;
  }
}
@media (max-width: 600px) {
  .pagination .page-numbers.next:after, .pagination .page-numbers.prev:after {
    height: 7px;
  }
}
.pagination .page-numbers.prev:after {
  background-image: url("../../images/nav-prev.svg");
}

.nav {
  flex-wrap: unset !important;
}

.single-slide .slick-dots {
  display: none !important;
}

.gdpr_list_form {
  position: relative;
}
.gdpr_list_form .gdpr_button {
  display: none !important;
}
@media (min-width: 1025px) {
  .gdpr_list_form .gdpr_button {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .gdpr_list_form .gdpr_button {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .gdpr_list_form .gdpr_button {
    padding-top: 30px;
  }
}
@media (max-width: 600px) {
  .gdpr_list_form .gdpr_button {
    padding-top: 25px;
  }
}

@media (min-width: 1025px) {
  .alert-danger,
  .alert-success {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .alert-danger,
  .alert-success {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .alert-danger,
  .alert-success {
    margin-top: 46px;
  }
}
@media (max-width: 600px) {
  .alert-danger,
  .alert-success {
    margin-top: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .page-template-T17_default .main-intro-light {
    min-height: 700px;
  }
}

.no-result-wrapper {
  background-color: #efeaea;
}
@media (min-width: 1025px) {
  .no-result-wrapper {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .no-result-wrapper {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .no-result-wrapper {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .no-result-wrapper {
    padding: 10px;
  }
}
@media (min-width: 1025px) {
  .no-result-wrapper {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .no-result-wrapper {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .no-result-wrapper {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .no-result-wrapper {
    width: 100%;
  }
}

.best-web-fixed {
  position: fixed;
  z-index: 99;
}
@media (min-width: 1025px) {
  .best-web-fixed {
    left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .best-web-fixed {
    left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .best-web-fixed {
    left: 10px;
  }
}
@media (max-width: 600px) {
  .best-web-fixed {
    left: 10px;
  }
}
@media (min-width: 1025px) {
  .best-web-fixed {
    bottom: 7.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .best-web-fixed {
    bottom: 7.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .best-web-fixed {
    bottom: 130px;
  }
}
@media (max-width: 600px) {
  .best-web-fixed {
    bottom: 140px;
  }
}
@media (min-width: 1025px) {
  .best-web-fixed img {
    height: 6.7708333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .best-web-fixed img {
    height: 6.7708333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .best-web-fixed img {
    height: 120px;
  }
}
@media (max-width: 600px) {
  .best-web-fixed img {
    height: 70px;
  }
}
@media (min-width: 1025px) {
  .best-web-fixed img {
    width: 6.7708333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .best-web-fixed img {
    width: 6.7708333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .best-web-fixed img {
    width: 120px;
  }
}
@media (max-width: 600px) {
  .best-web-fixed img {
    width: 70px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 10vh;
  z-index: 9999;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .whatsapp-float {
    right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .whatsapp-float {
    right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .whatsapp-float {
    right: 20px;
  }
}
@media (max-width: 600px) {
  .whatsapp-float {
    right: 20px;
  }
}
@media (min-width: 1025px) {
  .whatsapp-float {
    height: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .whatsapp-float {
    height: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .whatsapp-float {
    height: 60px;
  }
}
@media (max-width: 600px) {
  .whatsapp-float {
    height: 50px;
  }
}
@media (min-width: 1025px) {
  .whatsapp-float {
    width: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .whatsapp-float {
    width: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .whatsapp-float {
    width: 60px;
  }
}
@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
  }
}
@media (min-width: 1025px) {
  .whatsapp-float {
    bottom: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .whatsapp-float {
    bottom: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .whatsapp-float {
    bottom: 50px;
  }
}
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 50px;
  }
}
.whatsapp-float img {
  transform: scale(1);
  transition: all 0.5s;
  object-fit: contain;
}
@media (min-width: 1025px) {
  .whatsapp-float img {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .whatsapp-float img {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .whatsapp-float img {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .whatsapp-float img {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .whatsapp-float img {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .whatsapp-float img {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .whatsapp-float img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .whatsapp-float img {
    width: 100%;
  }
}
.whatsapp-float a:hover img {
  transform: scale(1.1);
  transition: all 0.5s;
}
@media (min-width: 1025px) {
  .whatsapp-float.wapp-plugin {
    right: 13.0208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .whatsapp-float.wapp-plugin {
    right: 26.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .whatsapp-float.wapp-plugin {
    right: 280px;
  }
}
@media (max-width: 600px) {
  .whatsapp-float.wapp-plugin {
    right: 280px;
  }
}
.whatsapp-float .wpp-popup {
  position: absolute;
  bottom: 70px;
  right: 30px;
  width: 220px;
  padding: 5px 10px;
  background-color: rgba(62, 158, 66, 0.9);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  color: #ffffff;
  animation: popupFade 0.5s ease;
}
@media (min-width: 1025px) {
  .whatsapp-float .wpp-popup {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .whatsapp-float .wpp-popup {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .whatsapp-float .wpp-popup {
    font-size: 20px !important;
  }
}
@media (max-width: 600px) {
  .whatsapp-float .wpp-popup {
    font-size: 14px !important;
  }
}
@media (max-width: 600px) {
  .whatsapp-float .wpp-popup {
    max-width: 140px;
  }
}
@media (max-width: 1025px) {
  .whatsapp-float .wpp-popup {
    right: 0;
  }
}
.whatsapp-float .wpp-popup::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid rgba(62, 158, 66, 0.8);
}
.whatsapp-float .wpp-popup .wpp-close {
  position: absolute;
  top: -20px;
  right: 10px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}
.whatsapp-float .wpp-popup .wpp-close:hover {
  color: #ffffff;
  transform: scale(1.1);
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1025px) {
  .margin-left--10 {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .margin-left--10 {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .margin-left--10 {
    margin-left: 10px;
  }
}
@media (max-width: 600px) {
  .margin-left--10 {
    margin-left: 10px;
  }
}

.special-connect img {
  display: block;
}
@media (min-width: 1025px) {
  .special-connect img {
    height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .special-connect img {
    height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .special-connect img {
    height: 50px;
  }
}
@media (max-width: 600px) {
  .special-connect img {
    height: 40px;
  }
}
@media (min-width: 1025px) {
  .special-connect img {
    width: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .special-connect img {
    width: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .special-connect img {
    width: 50px;
  }
}
@media (max-width: 600px) {
  .special-connect img {
    width: 40px;
  }
}
@media (min-width: 1025px) {
  .special-connect img {
    margin-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .special-connect img {
    margin-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .special-connect img {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .special-connect img {
    margin-right: 10px;
  }
}
.special-connect a:hover {
  color: #3E9E42 !important;
}

.res-enquire-now-btn {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (min-width: 1025px) {
  .res-enquire-now-btn {
    display: flex;
  }
}
@media only screen and (max-width: 1025px) {
  .res-enquire-now-btn {
    display: none;
  }
}
.res-enquire-now-btn.show-enquire-btn {
  opacity: 1;
  visibility: visible;
}
.res-enquire-now-btn .bg-color--inputbg {
  background-color: #F8F8F8;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 1025px) {
  .res-enquire-now-btn .bg-color--inputbg {
    border-radius: 0;
  }
}
.res-enquire-now-btn .res-custom-btn {
  padding: 14px 50px 14px 14px;
}
@media only screen and (max-width: 1025px) {
  .res-enquire-now-btn .res-enq-inner {
    justify-content: center !important;
    border-radius: none;
  }
}
@media only screen and (max-width: 1025px) {
  .res-enquire-now-btn .res-enq-inner {
    padding: 10px;
  }
}
@media only screen and (max-width: 1025px) {
  .res-enquire-now-btn .res-enq-inner div {
    display: none;
  }
}

@media only screen and (max-width: 1025px) {
  .residencies-template-T08_residencies-inner {
    margin-bottom: 48px;
  }
}

.res-inner-enquiry-btn {
  display: none;
}
@media only screen and (max-width: 1025px) {
  .res-inner-enquiry-btn {
    position: fixed;
    display: block;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    z-index: 999;
  }
}
@media only screen and (max-width: 1025px) {
  .res-inner-enquiry-btn .res-custom-btn {
    width: 100%;
    border-radius: 0;
    padding-right: 20px;
  }
}
.res-inner-enquiry-btn .res-custom-btn:after {
  display: none;
}

/********************************************Media Querires******************************************/
.wysiwig {
  font-family: "Jost", sans-serif;
  color: #ffffff;
}
.wysiwig p,
.wysiwig td,
.wysiwig th, .wysiwig li, .wysiwig span {
  color: #ffffff;
  font-family: "Jost", sans-serif;
}
.wysiwig strong {
  font-weight: 600 !important;
  color: #ffffff !important;
}
.wysiwig a {
  font-family: "Jost", sans-serif;
  color: #ffffff;
  text-decoration: underline;
}
.wysiwig a:hover {
  text-decoration: underline;
  color: #B7AC86 !important;
}
@media (min-width: 1025px) {
  .wysiwig a:hover {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig a:hover {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig a:hover {
    font-size: 14px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig a:hover {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig a:hover {
    line-height: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig a:hover {
    line-height: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig a:hover {
    line-height: 18px;
  }
}
@media (max-width: 600px) {
  .wysiwig a:hover {
    line-height: 18px;
  }
}
.wysiwig h1,
.wysiwig h2,
.wysiwig h3,
.wysiwig h4,
.wysiwig h5,
.wysiwig h6 {
  color: #ffffff;
  font-family: "Cormorant", serif;
}
@media (min-width: 1025px) {
  .wysiwig h1,
  .wysiwig h2,
  .wysiwig h3,
  .wysiwig h4,
  .wysiwig h5,
  .wysiwig h6 {
    padding-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h1,
  .wysiwig h2,
  .wysiwig h3,
  .wysiwig h4,
  .wysiwig h5,
  .wysiwig h6 {
    padding-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h1,
  .wysiwig h2,
  .wysiwig h3,
  .wysiwig h4,
  .wysiwig h5,
  .wysiwig h6 {
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .wysiwig h1,
  .wysiwig h2,
  .wysiwig h3,
  .wysiwig h4,
  .wysiwig h5,
  .wysiwig h6 {
    padding-bottom: 10px;
  }
}
.wysiwig table {
  border-collapse: collapse;
  width: 100%;
}
.wysiwig table th,
.wysiwig table td {
  border: 1px solid #F8F8F8;
}
@media (min-width: 1025px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-left: 10px;
  }
}
@media (max-width: 600px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-right: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-top: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-top: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-top: 10px;
  }
}
@media (max-width: 600px) {
  .wysiwig table th,
  .wysiwig table td {
    padding-top: 10px;
  }
}
.wysiwig table th {
  background: #F8F8F8;
  color: #ffffff;
}

.wysiwig,
.font-color--white {
  color: #ffffff !important;
}
.wysiwig h1,
.wysiwig h2,
.wysiwig h3,
.wysiwig h4,
.wysiwig h5,
.wysiwig h6,
.font-color--white h1,
.font-color--white h2,
.font-color--white h3,
.font-color--white h4,
.font-color--white h5,
.font-color--white h6 {
  color: #ffffff !important;
}
.wysiwig p,
.wysiwig a,
.wysiwig li,
.wysiwig td,
.wysiwig th,
.font-color--white p,
.font-color--white a,
.font-color--white li,
.font-color--white td,
.font-color--white th {
  color: #ffffff !important;
}
.wysiwig--inverse, .wysiwig.font-color--heading,
.font-color--white--inverse,
.font-color--white.font-color--heading {
  color: #272727 !important;
}
.wysiwig--inverse h1,
.wysiwig--inverse h2,
.wysiwig--inverse h3,
.wysiwig--inverse h4,
.wysiwig--inverse h5,
.wysiwig--inverse h6, .wysiwig.font-color--heading h1,
.wysiwig.font-color--heading h2,
.wysiwig.font-color--heading h3,
.wysiwig.font-color--heading h4,
.wysiwig.font-color--heading h5,
.wysiwig.font-color--heading h6,
.font-color--white--inverse h1,
.font-color--white--inverse h2,
.font-color--white--inverse h3,
.font-color--white--inverse h4,
.font-color--white--inverse h5,
.font-color--white--inverse h6,
.font-color--white.font-color--heading h1,
.font-color--white.font-color--heading h2,
.font-color--white.font-color--heading h3,
.font-color--white.font-color--heading h4,
.font-color--white.font-color--heading h5,
.font-color--white.font-color--heading h6 {
  font-family: "Cormorant", serif;
  color: #272727 !important;
}
.wysiwig--inverse p,
.wysiwig--inverse li,
.wysiwig--inverse td,
.wysiwig--inverse th, .wysiwig.font-color--heading p,
.wysiwig.font-color--heading li,
.wysiwig.font-color--heading td,
.wysiwig.font-color--heading th,
.font-color--white--inverse p,
.font-color--white--inverse li,
.font-color--white--inverse td,
.font-color--white--inverse th,
.font-color--white.font-color--heading p,
.font-color--white.font-color--heading li,
.font-color--white.font-color--heading td,
.font-color--white.font-color--heading th {
  font-family: "Jost", sans-serif;
  color: #494949 !important;
}
.wysiwig--inverse strong, .wysiwig.font-color--heading strong,
.font-color--white--inverse strong,
.font-color--white.font-color--heading strong {
  color: #494949 !important;
}

@media (min-width: 1025px) {
  .wysiwig,
  .wysiwig--inverse {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig,
  .wysiwig--inverse {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig,
  .wysiwig--inverse {
    font-size: 17px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig,
  .wysiwig--inverse {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig,
  .wysiwig--inverse {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig,
  .wysiwig--inverse {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig,
  .wysiwig--inverse {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .wysiwig,
  .wysiwig--inverse {
    line-height: 30px;
  }
}
@media (min-width: 1025px) {
  .wysiwig p,
  .wysiwig--inverse p {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig p,
  .wysiwig--inverse p {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig p,
  .wysiwig--inverse p {
    font-size: 17px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig p,
  .wysiwig--inverse p {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig p,
  .wysiwig--inverse p {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig p,
  .wysiwig--inverse p {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig p,
  .wysiwig--inverse p {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .wysiwig p,
  .wysiwig--inverse p {
    line-height: 30px;
  }
}
.wysiwig ul li,
.wysiwig ol li,
.wysiwig--inverse ul li,
.wysiwig--inverse ol li {
  position: relative;
}
@media (min-width: 1025px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    padding-left: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    padding-left: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    padding-left: 18px;
  }
}
@media (max-width: 600px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    padding-left: 18px;
  }
}
@media (min-width: 1025px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    margin-top: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    margin-top: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    margin-top: 15px;
  }
}
@media (max-width: 600px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    margin-top: 15px;
  }
}
@media (min-width: 1025px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    margin-bottom: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    margin-bottom: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    margin-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    font-size: 17px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .wysiwig ul li,
  .wysiwig ol li,
  .wysiwig--inverse ul li,
  .wysiwig--inverse ol li {
    line-height: 30px;
  }
}
.wysiwig ul li:before,
.wysiwig ol li:before,
.wysiwig--inverse ul li:before,
.wysiwig--inverse ol li:before {
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
  background-color: #B7AC86;
}
@media (min-width: 1025px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    top: 0.7291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    top: 0.7291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    top: 13px;
  }
}
@media (max-width: 600px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    top: 12px;
  }
}
@media (min-width: 1025px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    left: 0;
  }
}
@media (max-width: 600px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    height: 0.46875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    height: 0.46875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    height: 9px;
  }
}
@media (max-width: 600px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    height: 9px;
  }
}
@media (min-width: 1025px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    width: 0.46875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    width: 0.46875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    width: 9px;
  }
}
@media (max-width: 600px) {
  .wysiwig ul li:before,
  .wysiwig ol li:before,
  .wysiwig--inverse ul li:before,
  .wysiwig--inverse ol li:before {
    width: 9px;
  }
}
@media (min-width: 1025px) {
  .wysiwig ul li:first-child,
  .wysiwig ol li:first-child,
  .wysiwig--inverse ul li:first-child,
  .wysiwig--inverse ol li:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig ul li:first-child,
  .wysiwig ol li:first-child,
  .wysiwig--inverse ul li:first-child,
  .wysiwig--inverse ol li:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig ul li:first-child,
  .wysiwig ol li:first-child,
  .wysiwig--inverse ul li:first-child,
  .wysiwig--inverse ol li:first-child {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .wysiwig ul li:first-child,
  .wysiwig ol li:first-child,
  .wysiwig--inverse ul li:first-child,
  .wysiwig--inverse ol li:first-child {
    margin-top: 0;
  }
}
.wysiwig ol li:before,
.wysiwig--inverse ol li:before {
  display: none;
}
@media (min-width: 1025px) {
  .wysiwig a,
  .wysiwig--inverse a {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig a,
  .wysiwig--inverse a {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig a,
  .wysiwig--inverse a {
    font-size: 14px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig a,
  .wysiwig--inverse a {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig a,
  .wysiwig--inverse a {
    line-height: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig a,
  .wysiwig--inverse a {
    line-height: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig a,
  .wysiwig--inverse a {
    line-height: 18px;
  }
}
@media (max-width: 600px) {
  .wysiwig a,
  .wysiwig--inverse a {
    line-height: 18px;
  }
}
@media (min-width: 1025px) {
  .wysiwig td,
  .wysiwig--inverse td {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig td,
  .wysiwig--inverse td {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig td,
  .wysiwig--inverse td {
    font-size: 17px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig td,
  .wysiwig--inverse td {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig td,
  .wysiwig--inverse td {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig td,
  .wysiwig--inverse td {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig td,
  .wysiwig--inverse td {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .wysiwig td,
  .wysiwig--inverse td {
    line-height: 30px;
  }
}
@media (min-width: 1025px) {
  .wysiwig th,
  .wysiwig--inverse th {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig th,
  .wysiwig--inverse th {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig th,
  .wysiwig--inverse th {
    font-size: 17px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig th,
  .wysiwig--inverse th {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig th,
  .wysiwig--inverse th {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig th,
  .wysiwig--inverse th {
    line-height: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig th,
  .wysiwig--inverse th {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .wysiwig th,
  .wysiwig--inverse th {
    line-height: 30px;
  }
}
@media (min-width: 1025px) {
  .wysiwig h1,
  .wysiwig--inverse h1 {
    font-size: 3.6458333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h1,
  .wysiwig--inverse h1 {
    font-size: 3.6458333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h1,
  .wysiwig--inverse h1 {
    font-size: 50px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig h1,
  .wysiwig--inverse h1 {
    font-size: 35px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig h1,
  .wysiwig--inverse h1 {
    line-height: 5.7291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h1,
  .wysiwig--inverse h1 {
    line-height: 5.7291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h1,
  .wysiwig--inverse h1 {
    line-height: 70px;
  }
}
@media (max-width: 600px) {
  .wysiwig h1,
  .wysiwig--inverse h1 {
    line-height: 48px;
  }
}
@media (min-width: 1025px) {
  .wysiwig h2,
  .wysiwig--inverse h2 {
    font-size: 2.6041666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h2,
  .wysiwig--inverse h2 {
    font-size: 2.6041666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h2,
  .wysiwig--inverse h2 {
    font-size: 35px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig h2,
  .wysiwig--inverse h2 {
    font-size: 25px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig h2,
  .wysiwig--inverse h2 {
    line-height: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h2,
  .wysiwig--inverse h2 {
    line-height: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h2,
  .wysiwig--inverse h2 {
    line-height: 48px;
  }
}
@media (max-width: 600px) {
  .wysiwig h2,
  .wysiwig--inverse h2 {
    line-height: 40px;
  }
}
@media (min-width: 1025px) {
  .wysiwig h3,
  .wysiwig--inverse h3 {
    font-size: 2.2916666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h3,
  .wysiwig--inverse h3 {
    font-size: 2.2916666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h3,
  .wysiwig--inverse h3 {
    font-size: 35px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig h3,
  .wysiwig--inverse h3 {
    font-size: 30px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig h3,
  .wysiwig--inverse h3 {
    line-height: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h3,
  .wysiwig--inverse h3 {
    line-height: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h3,
  .wysiwig--inverse h3 {
    line-height: 48px;
  }
}
@media (max-width: 600px) {
  .wysiwig h3,
  .wysiwig--inverse h3 {
    line-height: 45px;
  }
}
@media (min-width: 1025px) {
  .wysiwig h4,
  .wysiwig--inverse h4 {
    font-size: 1.8229166667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h4,
  .wysiwig--inverse h4 {
    font-size: 1.8229166667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h4,
  .wysiwig--inverse h4 {
    font-size: 30px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig h4,
  .wysiwig--inverse h4 {
    font-size: 25px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig h4,
  .wysiwig--inverse h4 {
    line-height: 2.5vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h4,
  .wysiwig--inverse h4 {
    line-height: 2.5vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h4,
  .wysiwig--inverse h4 {
    line-height: 45px;
  }
}
@media (max-width: 600px) {
  .wysiwig h4,
  .wysiwig--inverse h4 {
    line-height: 40px;
  }
}
@media (min-width: 1025px) {
  .wysiwig h5,
  .wysiwig--inverse h5 {
    font-size: 1.5625vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h5,
  .wysiwig--inverse h5 {
    font-size: 1.5625vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h5,
  .wysiwig--inverse h5 {
    font-size: 25px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig h5,
  .wysiwig--inverse h5 {
    font-size: 22px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig h5,
  .wysiwig--inverse h5 {
    line-height: 2.34375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h5,
  .wysiwig--inverse h5 {
    line-height: 2.34375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h5,
  .wysiwig--inverse h5 {
    line-height: 40px;
  }
}
@media (max-width: 600px) {
  .wysiwig h5,
  .wysiwig--inverse h5 {
    line-height: 32px;
  }
}
@media (min-width: 1025px) {
  .wysiwig h6,
  .wysiwig--inverse h6 {
    font-size: 1.3020833333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h6,
  .wysiwig--inverse h6 {
    font-size: 1.3020833333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h6,
  .wysiwig--inverse h6 {
    font-size: 20px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig h6,
  .wysiwig--inverse h6 {
    font-size: 20px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig h6,
  .wysiwig--inverse h6 {
    line-height: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig h6,
  .wysiwig--inverse h6 {
    line-height: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig h6,
  .wysiwig--inverse h6 {
    line-height: 28px;
  }
}
@media (max-width: 600px) {
  .wysiwig h6,
  .wysiwig--inverse h6 {
    line-height: 28px;
  }
}
.wysiwig.custom-bullets li,
.wysiwig--inverse.custom-bullets li {
  position: relative;
}
@media (min-width: 1025px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    padding-left: 1.4583333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    padding-left: 1.4583333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    padding-left: 28px;
  }
}
@media (max-width: 600px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    padding-left: 28px;
  }
}
@media (min-width: 1025px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    margin-top: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    margin-top: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .wysiwig.custom-bullets li,
  .wysiwig--inverse.custom-bullets li {
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig.custom-bullets li:first-child,
  .wysiwig--inverse.custom-bullets li:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig.custom-bullets li:first-child,
  .wysiwig--inverse.custom-bullets li:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig.custom-bullets li:first-child,
  .wysiwig--inverse.custom-bullets li:first-child {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .wysiwig.custom-bullets li:first-child,
  .wysiwig--inverse.custom-bullets li:first-child {
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .wysiwig.custom-bullets li:last-child,
  .wysiwig--inverse.custom-bullets li:last-child {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig.custom-bullets li:last-child,
  .wysiwig--inverse.custom-bullets li:last-child {
    margin-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig.custom-bullets li:last-child,
  .wysiwig--inverse.custom-bullets li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .wysiwig.custom-bullets li:last-child,
  .wysiwig--inverse.custom-bullets li:last-child {
    margin-bottom: 0;
  }
}
.wysiwig.custom-bullets li:before,
.wysiwig--inverse.custom-bullets li:before {
  position: absolute;
  display: block;
  content: "";
  background-image: url("../../../assets/images/custom-bullet.svg");
  background-color: transparent;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    top: 0.5729166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    top: 0.5729166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    top: 9px;
  }
}
@media (max-width: 600px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    top: 9px;
  }
}
@media (min-width: 1025px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    left: 0;
  }
}
@media (max-width: 600px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    height: 0.7291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    height: 0.7291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    height: 14px;
  }
}
@media (max-width: 600px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    height: 14px;
  }
}
@media (min-width: 1025px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    width: 0.5729166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    width: 0.5729166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    width: 11px;
  }
}
@media (max-width: 600px) {
  .wysiwig.custom-bullets li:before,
  .wysiwig--inverse.custom-bullets li:before {
    width: 11px;
  }
}
.wysiwig table,
.wysiwig th,
.wysiwig td,
.wysiwig--inverse table,
.wysiwig--inverse th,
.wysiwig--inverse td {
  border: 1px solid #D9D9D9;
}
.wysiwig table th,
.wysiwig--inverse table th {
  background-color: #B7AC86;
  color: #494949;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-left: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-left: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-left: 16px;
  }
}
@media (max-width: 600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-right: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-right: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-right: 16px;
  }
}
@media (max-width: 600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-right: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-top: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-top: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-top: 10px;
  }
}
@media (max-width: 600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-top: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-bottom: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-bottom: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    padding-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    font-size: 17px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    line-height: 21px;
  }
}
@media (max-width: 600px) {
  .wysiwig table th,
  .wysiwig--inverse table th {
    line-height: 18px;
  }
}
.wysiwig table td,
.wysiwig--inverse table td {
  background-color: #ffffff;
  color: #494949;
  font-weight: 400;
  vertical-align: top;
}
@media (min-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-left: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-left: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-left: 16px;
  }
}
@media (max-width: 600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-right: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-right: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-right: 16px;
  }
}
@media (max-width: 600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-right: 10px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-top: 30px;
  }
}
@media (max-width: 600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-top: 20px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    padding-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    font-size: 17px !important;
  }
}
@media (max-width: 600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    line-height: 21px;
  }
}
@media (max-width: 600px) {
  .wysiwig table td,
  .wysiwig--inverse table td {
    line-height: 18px;
  }
}

/**********************Checkbox Formatting***********************/
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  border-color: transparent;
}

.dfb-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group {
    padding: 10px;
  }
}
.dfb-form .dfb-form-group.checkbox-wrp, .dfb-form .form-group.checkbox-wrp {
  padding-bottom: 0;
}
.dfb-form .dfb-form-group.cont_gdpr_cls_wrap, .dfb-form .form-group.cont_gdpr_cls_wrap {
  font-weight: 400;
  color: #494949;
  letter-spacing: 0.26px;
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap, .dfb-form .form-group.cont_gdpr_cls_wrap {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap, .dfb-form .form-group.cont_gdpr_cls_wrap {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap, .dfb-form .form-group.cont_gdpr_cls_wrap {
    font-size: 13px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap, .dfb-form .form-group.cont_gdpr_cls_wrap {
    font-size: 13px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap, .dfb-form .form-group.cont_gdpr_cls_wrap {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap, .dfb-form .form-group.cont_gdpr_cls_wrap {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap, .dfb-form .form-group.cont_gdpr_cls_wrap {
    line-height: 24px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap, .dfb-form .form-group.cont_gdpr_cls_wrap {
    line-height: 24px;
  }
}
@media only screen and (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap, .dfb-form .form-group.cont_gdpr_cls_wrap {
    letter-spacing: 0.0145833333vw;
  }
}
.dfb-form .dfb-form-group.cont_gdpr_cls_wrap label, .dfb-form .form-group.cont_gdpr_cls_wrap label {
  color: #494949;
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label, .dfb-form .form-group.cont_gdpr_cls_wrap label {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label, .dfb-form .form-group.cont_gdpr_cls_wrap label {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label, .dfb-form .form-group.cont_gdpr_cls_wrap label {
    font-size: 13px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label, .dfb-form .form-group.cont_gdpr_cls_wrap label {
    font-size: 13px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label, .dfb-form .form-group.cont_gdpr_cls_wrap label {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label, .dfb-form .form-group.cont_gdpr_cls_wrap label {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label, .dfb-form .form-group.cont_gdpr_cls_wrap label {
    line-height: 24px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label, .dfb-form .form-group.cont_gdpr_cls_wrap label {
    line-height: 24px;
  }
}
@media only screen and (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label, .dfb-form .form-group.cont_gdpr_cls_wrap label {
    font-size: 0.7291666667vw !important;
    line-height: 1.25vw !important;
  }
}
.dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:first-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:first-child {
  color: #000000 !important;
  font-weight: 500 !important;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:first-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:first-child {
    margin-top: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:first-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:first-child {
    margin-top: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:first-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:first-child {
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:first-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:first-child {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:last-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:last-child {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:last-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:last-child {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:last-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:last-child {
    font-size: 13px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:last-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:last-child {
    font-size: 13px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:last-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:last-child {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:last-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:last-child {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:last-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:last-child {
    line-height: 24px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap label:last-child, .dfb-form .form-group.cont_gdpr_cls_wrap label:last-child {
    line-height: 24px;
  }
}
.dfb-form .dfb-form-group.cont_gdpr_cls_wrap a, .dfb-form .form-group.cont_gdpr_cls_wrap a {
  color: #494949;
  text-decoration: underline;
  transition: 0.5s ease-in-out;
}
.dfb-form .dfb-form-group.cont_gdpr_cls_wrap a:hover, .dfb-form .form-group.cont_gdpr_cls_wrap a:hover {
  color: #B7AC86;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap p, .dfb-form .form-group.cont_gdpr_cls_wrap p {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap p, .dfb-form .form-group.cont_gdpr_cls_wrap p {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap p, .dfb-form .form-group.cont_gdpr_cls_wrap p {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap p, .dfb-form .form-group.cont_gdpr_cls_wrap p {
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap p, .dfb-form .form-group.cont_gdpr_cls_wrap p {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap p, .dfb-form .form-group.cont_gdpr_cls_wrap p {
    margin-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap p, .dfb-form .form-group.cont_gdpr_cls_wrap p {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group.cont_gdpr_cls_wrap p, .dfb-form .form-group.cont_gdpr_cls_wrap p {
    margin-bottom: 0;
  }
}
.dfb-form .dfb-form-group .checkbox-inline, .dfb-form .form-group .checkbox-inline {
  position: relative;
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkbox-inline, .dfb-form .form-group .checkbox-inline {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkbox-inline, .dfb-form .form-group .checkbox-inline {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkbox-inline, .dfb-form .form-group .checkbox-inline {
    padding-left: 30px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkbox-inline, .dfb-form .form-group .checkbox-inline {
    padding-left: 30px;
  }
}
.dfb-form .dfb-form-group .checkbox-inline input, .dfb-form .form-group .checkbox-inline input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkbox-inline input, .dfb-form .form-group .checkbox-inline input {
    height: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkbox-inline input, .dfb-form .form-group .checkbox-inline input {
    height: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkbox-inline input, .dfb-form .form-group .checkbox-inline input {
    height: 0;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkbox-inline input, .dfb-form .form-group .checkbox-inline input {
    height: 0;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkbox-inline input, .dfb-form .form-group .checkbox-inline input {
    width: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkbox-inline input, .dfb-form .form-group .checkbox-inline input {
    width: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkbox-inline input, .dfb-form .form-group .checkbox-inline input {
    width: 0;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkbox-inline input, .dfb-form .form-group .checkbox-inline input {
    width: 0;
  }
}
.dfb-form .dfb-form-group .checkbox-inline input:checked ~ .checkmark, .dfb-form .form-group .checkbox-inline input:checked ~ .checkmark {
  background-color: #ffffff;
  border: 1px solid #B7AC86;
}
.dfb-form .dfb-form-group .checkbox-inline input:checked ~ .checkmark:after, .dfb-form .form-group .checkbox-inline input:checked ~ .checkmark:after {
  display: block;
}
.dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #B7AC86;
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    margin-top: 0.15625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    margin-top: 0.15625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    margin-top: 3px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    margin-top: 3px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    top: 0;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    left: 0;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    height: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    height: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    height: 18px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    height: 18px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    width: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    width: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    width: 18px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkmark, .dfb-form .form-group .checkmark {
    width: 18px;
  }
}
.dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
  content: "";
  position: absolute;
  border: solid #B7AC86;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    top: 0.1041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    top: 0.1041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    top: 2px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    top: 2px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    left: 0.3125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    left: 0.3125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    left: 6px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    left: 6px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    height: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    height: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    height: 10px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    height: 10px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    width: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    width: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    width: 5px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group .checkmark:after, .dfb-form .form-group .checkmark:after {
    width: 5px;
  }
}
.dfb-form .input-group .input-line {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.dfb-form .input-group.response-field-upload {
  background-color: #F8F8F8;
  border: 1px solid #DADADA;
}
@media (min-width: 1025px) {
  .dfb-form .input-group.response-field-upload {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .input-group.response-field-upload {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .input-group.response-field-upload {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .dfb-form .input-group.response-field-upload {
    padding: 10px;
  }
}
.dfb-form .input-group.response-field-upload:hover {
  border: 1px solid #B7AC86;
}
.dfb-form .response-field-date .above-line {
  width: 2%;
  display: flex;
  justify-content: center;
}
.dfb-form .response-field-date .day,
.dfb-form .response-field-date .month,
.dfb-form .response-field-date .year {
  width: 32%;
}
.dfb-form .response-field-time .above-line {
  width: 2%;
  display: flex;
  justify-content: center;
}
.dfb-form .response-field-time .hours,
.dfb-form .response-field-time .minutes,
.dfb-form .response-field-time .seconds {
  width: 30%;
}
.dfb-form .response-field-time .am_pm {
  width: 8%;
}
.dfb-form .checkbox-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 1025px) {
  .dfb-form .is_required,
  .dfb-form .recapture {
    font-size: 0.625vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .is_required,
  .dfb-form .recapture {
    font-size: 0.625vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .is_required,
  .dfb-form .recapture {
    font-size: 12px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .is_required,
  .dfb-form .recapture {
    font-size: 12px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .is_required,
  .dfb-form .recapture {
    line-height: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .is_required,
  .dfb-form .recapture {
    line-height: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .is_required,
  .dfb-form .recapture {
    line-height: 18px;
  }
}
@media (max-width: 600px) {
  .dfb-form .is_required,
  .dfb-form .recapture {
    line-height: 18px;
  }
}
.dfb-form label,
.dfb-form .is_required,
.dfb-form .recapture {
  text-align: left;
  font-family: "Jost", sans-serif;
  font-weight: 400 !important;
  color: #272727;
}
@media (min-width: 1025px) {
  .dfb-form label,
  .dfb-form .is_required,
  .dfb-form .recapture {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form label,
  .dfb-form .is_required,
  .dfb-form .recapture {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form label,
  .dfb-form .is_required,
  .dfb-form .recapture {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form label,
  .dfb-form .is_required,
  .dfb-form .recapture {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form label,
  .dfb-form .is_required,
  .dfb-form .recapture {
    line-height: 1.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form label,
  .dfb-form .is_required,
  .dfb-form .recapture {
    line-height: 1.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form label,
  .dfb-form .is_required,
  .dfb-form .recapture {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .dfb-form label,
  .dfb-form .is_required,
  .dfb-form .recapture {
    line-height: 30px;
  }
}
.dfb-form .dfb-form-group .form-check-label, .dfb-form .dfb-form-group.information-text label, .dfb-form .form-group .form-check-label, .dfb-form .form-group.information-text label {
  font-weight: 400 !important;
}
.dfb-form .nice-select,
.dfb-form .select2 {
  font-family: "Jost", sans-serif;
  color: #000000;
  width: 100%;
  font-weight: 400 !important;
  border: 1px solid #DADADA;
  background-color: #F8F8F8 !important;
}
@media (min-width: 1025px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    height: 45px;
  }
}
@media (max-width: 600px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    height: 45px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    padding-left: 10px;
  }
}
@media (max-width: 600px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    padding-right: 10px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    line-height: 1.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    line-height: 1.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .dfb-form .nice-select,
  .dfb-form .select2 {
    line-height: 30px;
  }
}
.dfb-form .nice-select:focus, .dfb-form .nice-select:hover,
.dfb-form .select2:focus,
.dfb-form .select2:hover {
  border: 1px solid #B7AC86;
  background: #F8F8F8 !important;
}
.dfb-form .nice-select .current,
.dfb-form .nice-select .list li,
.dfb-form .select2 .current,
.dfb-form .select2 .list li {
  font-family: "Jost", sans-serif;
  color: #272727;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .dfb-form .nice-select .current,
  .dfb-form .nice-select .list li,
  .dfb-form .select2 .current,
  .dfb-form .select2 .list li {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .nice-select .current,
  .dfb-form .nice-select .list li,
  .dfb-form .select2 .current,
  .dfb-form .select2 .list li {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .nice-select .current,
  .dfb-form .nice-select .list li,
  .dfb-form .select2 .current,
  .dfb-form .select2 .list li {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .nice-select .current,
  .dfb-form .nice-select .list li,
  .dfb-form .select2 .current,
  .dfb-form .select2 .list li {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .nice-select .current,
  .dfb-form .nice-select .list li,
  .dfb-form .select2 .current,
  .dfb-form .select2 .list li {
    line-height: 1.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .nice-select .current,
  .dfb-form .nice-select .list li,
  .dfb-form .select2 .current,
  .dfb-form .select2 .list li {
    line-height: 1.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .nice-select .current,
  .dfb-form .nice-select .list li,
  .dfb-form .select2 .current,
  .dfb-form .select2 .list li {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .dfb-form .nice-select .current,
  .dfb-form .nice-select .list li,
  .dfb-form .select2 .current,
  .dfb-form .select2 .list li {
    line-height: 30px;
  }
}
.dfb-form .response-field-checkboxes {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  align-items: flex-start;
  flex-direction: column;
}
.dfb-form .response-field-checkboxes div {
  display: flex;
}
.dfb-form .response-field-checkboxes div a {
  display: inline !important;
  padding-left: 0 !important;
  color: #3E9E42;
}
.dfb-form .response-field-checkboxes div a:hover {
  color: #000000;
}
@media (min-width: 1025px) {
  .dfb-form .response-field-checkboxes .row {
    margin-top: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .response-field-checkboxes .row {
    margin-top: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .response-field-checkboxes .row {
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .dfb-form .response-field-checkboxes .row {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .response-field-checkboxes .row {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .response-field-checkboxes .row {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .response-field-checkboxes .row {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .dfb-form .response-field-checkboxes .row {
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .dfb-form .response-field-checkboxes .row {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .response-field-checkboxes .row {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .response-field-checkboxes .row {
    font-size: 14px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .response-field-checkboxes .row {
    font-size: 13px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .response-field-checkboxes .row {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .response-field-checkboxes .row {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .response-field-checkboxes .row {
    line-height: 25px;
  }
}
@media (max-width: 600px) {
  .dfb-form .response-field-checkboxes .row {
    line-height: 20px;
  }
}
.dfb-form .checkboxdiv_id_wrap_cls_wrap .text-danger {
  display: none !important;
}
.dfb-form .checkboxdiv_id_wrap_cls_wrap p {
  margin: 0 !important;
  padding-left: 0 !important;
}
.dfb-form .checkboxdiv_id_wrap_cls_wrap label {
  height: 0 !important;
  display: none;
}
@media (min-width: 1025px) {
  .dfb-form .checkboxdiv_id_wrap_cls_wrap .row {
    padding-left: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .checkboxdiv_id_wrap_cls_wrap .row {
    padding-left: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .checkboxdiv_id_wrap_cls_wrap .row {
    padding-left: 10px;
  }
}
@media (max-width: 600px) {
  .dfb-form .checkboxdiv_id_wrap_cls_wrap .row {
    padding-left: 10px;
  }
}
.dfb-form .checkboxdiv_id_wrap_cls_wrap div label {
  height: auto;
  display: block !important;
}
.dfb-form .checkboxdiv_id_wrap_cls_wrap .checkbox-inline {
  font-size: 0 !important;
}
.dfb-form .checkbox-inline {
  position: relative;
  padding-left: 1.5625vw;
}
.dfb-form .gdpr_field_cls_wrap .checkbox-inline {
  padding-left: 0;
}
.dfb-form .gdpr_field_cls_wrap .checkbox-inline input {
  margin-right: 15px;
}
.dfb-form input[type=text],
.dfb-form input[type=tel],
.dfb-form input[type=email],
.dfb-form input[type=date],
.dfb-form input[type=number],
.dfb-form select {
  font-family: "Jost", sans-serif;
  width: 100%;
  font-weight: 500 !important;
  border: 1px solid #DADADA;
  background-color: #F8F8F8 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  font-family: "Jost", sans-serif;
  color: #272727 !important;
  font-weight: 400;
}
@media (min-width: 1025px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    height: 45px;
  }
}
@media (max-width: 600px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    height: 45px;
  }
}
@media (min-width: 1025px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    line-height: 1.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    line-height: 1.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .dfb-form input[type=text],
  .dfb-form input[type=tel],
  .dfb-form input[type=email],
  .dfb-form input[type=date],
  .dfb-form input[type=number],
  .dfb-form select {
    line-height: 30px;
  }
}
.dfb-form input[type=text]:focus, .dfb-form input[type=text]:hover,
.dfb-form input[type=tel]:focus,
.dfb-form input[type=tel]:hover,
.dfb-form input[type=email]:focus,
.dfb-form input[type=email]:hover,
.dfb-form input[type=date]:focus,
.dfb-form input[type=date]:hover,
.dfb-form input[type=number]:focus,
.dfb-form input[type=number]:hover,
.dfb-form select:focus,
.dfb-form select:hover {
  border: 1px solid #B7AC86;
  background: #F8F8F8 !important;
}
.dfb-form select {
  background-image: rl("../assets/images/select.png");
  background-repeat: no-repeat;
  -webkit-appearance: none;
  background-position: calc(100% - 0.78125vw);
  background-size: 0.78125vw auto;
}
.dfb-form textarea {
  width: 100% !important;
  height: auto !important;
  min-height: 110px !important;
  font-family: "Jost", sans-serif;
  width: 100%;
  font-weight: 500 !important;
  border: 1px solid #DADADA;
  background-color: #F8F8F8 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  font-family: "Jost", sans-serif;
  color: #272727 !important;
  font-weight: 400;
}
@media (min-width: 1025px) {
  .dfb-form textarea {
    height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form textarea {
    height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form textarea {
    height: 45px;
  }
}
@media (max-width: 600px) {
  .dfb-form textarea {
    height: 45px;
  }
}
@media (min-width: 1025px) {
  .dfb-form textarea {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form textarea {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form textarea {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .dfb-form textarea {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .dfb-form textarea {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form textarea {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form textarea {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .dfb-form textarea {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .dfb-form textarea {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form textarea {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form textarea {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form textarea {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form textarea {
    line-height: 1.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form textarea {
    line-height: 1.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form textarea {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .dfb-form textarea {
    line-height: 30px;
  }
}
.dfb-form textarea:focus, .dfb-form textarea:hover {
  border: 1px solid #B7AC86;
  background: #F8F8F8 !important;
}
.dfb-form .input-group .note {
  color: #000000;
}
@media (min-width: 1025px) {
  .dfb-form .input-group .note {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .input-group .note {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .input-group .note {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .input-group .note {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .input-group .note {
    line-height: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .input-group .note {
    line-height: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .input-group .note {
    line-height: 15px;
  }
}
@media (max-width: 600px) {
  .dfb-form .input-group .note {
    line-height: 15px;
  }
}
.dfb-form .response-field-dropdown {
  width: 100%;
}
.dfb-form .help-block.show-error {
  display: block !important;
}
.dfb-form .checkbox-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.dfb-form .dfb-form-group, .dfb-form .form-group,
.dfb-form #gdpr_compliance_id_wrap p,
.dfb-form #gdpr_compliance_id_wrap label {
  font-family: "Jost", sans-serif;
  color: #000000;
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group,
  .dfb-form #gdpr_compliance_id_wrap p,
  .dfb-form #gdpr_compliance_id_wrap label {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group,
  .dfb-form #gdpr_compliance_id_wrap p,
  .dfb-form #gdpr_compliance_id_wrap label {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group,
  .dfb-form #gdpr_compliance_id_wrap p,
  .dfb-form #gdpr_compliance_id_wrap label {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group,
  .dfb-form #gdpr_compliance_id_wrap p,
  .dfb-form #gdpr_compliance_id_wrap label {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group,
  .dfb-form #gdpr_compliance_id_wrap p,
  .dfb-form #gdpr_compliance_id_wrap label {
    line-height: 1.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group,
  .dfb-form #gdpr_compliance_id_wrap p,
  .dfb-form #gdpr_compliance_id_wrap label {
    line-height: 1.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group,
  .dfb-form #gdpr_compliance_id_wrap p,
  .dfb-form #gdpr_compliance_id_wrap label {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .dfb-form .dfb-form-group, .dfb-form .form-group,
  .dfb-form #gdpr_compliance_id_wrap p,
  .dfb-form #gdpr_compliance_id_wrap label {
    line-height: 30px;
  }
}
.dfb-form #gdpr_compliance_id_wrap label {
  font-weight: 400 !important;
}
.dfb-form #gdpr_compliance_id_wrap label:not(.checkbox-inline) {
  font-weight: 600;
}
.dfb-form #gdpr_compliance_id_wrap p:first-child {
  margin: 0;
}
.dfb-form .recapture,
.dfb-form .is_required {
  font-family: "Jost", sans-serif;
  color: #494949;
}
@media (min-width: 1025px) {
  .dfb-form .recapture,
  .dfb-form .is_required {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .recapture,
  .dfb-form .is_required {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .recapture,
  .dfb-form .is_required {
    font-size: 14px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .recapture,
  .dfb-form .is_required {
    font-size: 13px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .recapture,
  .dfb-form .is_required {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .recapture,
  .dfb-form .is_required {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .recapture,
  .dfb-form .is_required {
    line-height: 25px;
  }
}
@media (max-width: 600px) {
  .dfb-form .recapture,
  .dfb-form .is_required {
    line-height: 20px;
  }
}
.dfb-form .recapture a,
.dfb-form .is_required a {
  font-family: "Jost", sans-serif;
  color: #494949;
}
@media (min-width: 1025px) {
  .dfb-form .recapture a,
  .dfb-form .is_required a {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .recapture a,
  .dfb-form .is_required a {
    font-size: 0.7291666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .recapture a,
  .dfb-form .is_required a {
    font-size: 14px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .recapture a,
  .dfb-form .is_required a {
    font-size: 13px !important;
  }
}
@media (min-width: 1025px) {
  .dfb-form .recapture a,
  .dfb-form .is_required a {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .recapture a,
  .dfb-form .is_required a {
    line-height: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .recapture a,
  .dfb-form .is_required a {
    line-height: 25px;
  }
}
@media (max-width: 600px) {
  .dfb-form .recapture a,
  .dfb-form .is_required a {
    line-height: 20px;
  }
}
.dfb-form .recapture a:hover,
.dfb-form .is_required a:hover {
  color: #B7AC86;
}
.dfb-form .recapture a {
  transition: 0.5s ease-in-out;
}
.dfb-form .recapture a:hover {
  color: #B7AC86;
}
.dfb-form #gdpr_compliance__id_wrap label {
  font-weight: 600;
}
@media (min-width: 1025px) {
  .dfb-form #gdpr_compliance__id_wrap label {
    padding-top: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form #gdpr_compliance__id_wrap label {
    padding-top: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form #gdpr_compliance__id_wrap label {
    padding-top: 20px;
  }
}
@media (max-width: 600px) {
  .dfb-form #gdpr_compliance__id_wrap label {
    padding-top: 20px;
  }
}
@media (min-width: 1025px) {
  .dfb-form #gdpr_compliance__id_wrap label {
    padding-bottom: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form #gdpr_compliance__id_wrap label {
    padding-bottom: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form #gdpr_compliance__id_wrap label {
    padding-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .dfb-form #gdpr_compliance__id_wrap label {
    padding-bottom: 20px;
  }
}
.dfb-form #gdpr_compliance__id_wrap a {
  text-decoration: underline;
  color: #3E9E42;
  transition: all 0.5s;
}
.dfb-form #gdpr_compliance__id_wrap a:hover {
  color: #000000;
}
.dfb-form .help-block {
  color: #ff0000;
  width: 100%;
}
@media (min-width: 1025px) {
  .dfb-form .help-block {
    font-size: 0.625vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .dfb-form .help-block {
    font-size: 0.625vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .dfb-form .help-block {
    font-size: 10px !important;
  }
}
@media (max-width: 600px) {
  .dfb-form .help-block {
    font-size: 10px !important;
  }
}
.dfb-form input:-webkit-autofill,
.dfb-form input:-webkit-autofill:hover,
.dfb-form input:-webkit-autofill:focus,
.dfb-form textarea:-webkit-autofill,
.dfb-form textarea:-webkit-autofill:hover,
.dfb-form textarea:-webkit-autofill:focus,
.dfb-form select:-webkit-autofill,
.dfb-form select:-webkit-autofill:hover,
.dfb-form select:-webkit-autofill:focus {
  -webkit-text-fill-color: #272727 !important;
  transition: background-color 100s ease-in-out 0s;
  background-color: transparent !important;
}

@media only screen and (min-width: 1025px) {
  .alert-success,
  .alert-success a,
  .alert-danger,
  .alert-danger a {
    font-size: 0.9375vw !important;
    line-height: 1.5625vw !important;
  }
}
.form-check {
  padding-left: 0;
}

.form-check-label {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 1025px) {
  .form-check-label {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .form-check-label {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .form-check-label {
    font-size: 12px !important;
  }
}
@media (max-width: 600px) {
  .form-check-label {
    font-size: 12px !important;
  }
}
@media only screen and (min-width: 1025px) {
  .form-check-label {
    padding-left: 1.823vw;
  }
}

.form-check-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: auto;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #000000;
}
@media (min-width: 1025px) {
  .checkmark {
    height: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .checkmark {
    height: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .checkmark {
    height: 14px;
  }
}
@media (max-width: 600px) {
  .checkmark {
    height: 14px;
  }
}
@media (min-width: 1025px) {
  .checkmark {
    width: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .checkmark {
    width: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .checkmark {
    width: 14px;
  }
}
@media (max-width: 600px) {
  .checkmark {
    width: 14px;
  }
}

.form-check-label:hover input ~ .checkmark {
  background-color: #ffffff;
}

.form-check-label input:checked ~ .checkmark {
  background-color: #181D24;
  border: 1px solid #181D24;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.form-check-label input:checked ~ .checkmark:after {
  display: block;
}

.form-check-label .checkmark:after {
  left: 4px;
  top: 0;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width: 1025px) {
  .form-check-label .checkmark:after {
    height: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .form-check-label .checkmark:after {
    height: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .form-check-label .checkmark:after {
    height: 10px;
  }
}
@media (max-width: 600px) {
  .form-check-label .checkmark:after {
    height: 10px;
  }
}
@media (min-width: 1025px) {
  .form-check-label .checkmark:after {
    width: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .form-check-label .checkmark:after {
    width: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .form-check-label .checkmark:after {
    width: 5px;
  }
}
@media (max-width: 600px) {
  .form-check-label .checkmark:after {
    width: 5px;
  }
}
@media only screen and (min-width: 1025px) {
  .form-check-label .checkmark:after {
    left: 0.313vw;
    top: 0.104vw;
  }
}

.form-control:focus {
  box-shadow: none;
}

#upload_your_cv {
  visibility: hidden;
  height: 0 !important;
}

.input-file {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1025px) {
  .input-file {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .input-file {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .input-file {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .input-file {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .input-file {
    font-size: 0.78125vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .input-file {
    font-size: 0.78125vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .input-file {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .input-file {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .input-file {
    line-height: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .input-file {
    line-height: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .input-file {
    line-height: 15px;
  }
}
@media (max-width: 600px) {
  .input-file {
    line-height: 15px;
  }
}
.input-file .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: none;
}
@media (min-width: 1025px) {
  .input-file .btn {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .input-file .btn {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .input-file .btn {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .input-file .btn {
    padding-left: 15px;
  }
}
@media (min-width: 1025px) {
  .input-file .btn {
    padding-right: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .input-file .btn {
    padding-right: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .input-file .btn {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .input-file .btn {
    padding-right: 15px;
  }
}
.input-file .btn img {
  object-fit: cover;
}
@media (min-width: 1025px) {
  .input-file .btn img {
    height: 1.4583333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .input-file .btn img {
    height: 1.4583333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .input-file .btn img {
    height: 20px;
  }
}
@media (max-width: 600px) {
  .input-file .btn img {
    height: 20px;
  }
}
@media (min-width: 1025px) {
  .input-file .btn img {
    width: 1.4583333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .input-file .btn img {
    width: 1.4583333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .input-file .btn img {
    width: 20px;
  }
}
@media (max-width: 600px) {
  .input-file .btn img {
    width: 20px;
  }
}
@media (min-width: 1025px) {
  .input-file .btn img {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .input-file .btn img {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .input-file .btn img {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .input-file .btn img {
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .input-file .btn span {
    font-size: 0.6770833333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .input-file .btn span {
    font-size: 0.6770833333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .input-file .btn span {
    font-size: 13px !important;
  }
}
@media (max-width: 600px) {
  .input-file .btn span {
    font-size: 13px !important;
  }
}

@media (min-width: 1025px) {
  .search-form .form-group {
    padding: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .search-form .form-group {
    padding: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .search-form .form-group {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .search-form .form-group {
    padding: 0;
  }
}
@media (min-width: 1025px) {
  .search-form .form-group {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .search-form .form-group {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .search-form .form-group {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .search-form .form-group {
    width: 100%;
  }
}
.search-form .form-group input,
.search-form .form-group input::placeholder,
.search-form .form-group input::-webkit-input-placeholder,
.search-form .form-group input::-moz-placeholder {
  font-family: "Jost", sans-serif;
  font-weight: 400 !important;
  color: #272727;
}
@media (min-width: 1025px) {
  .search-form .form-group input,
  .search-form .form-group input::placeholder,
  .search-form .form-group input::-webkit-input-placeholder,
  .search-form .form-group input::-moz-placeholder {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .search-form .form-group input,
  .search-form .form-group input::placeholder,
  .search-form .form-group input::-webkit-input-placeholder,
  .search-form .form-group input::-moz-placeholder {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .search-form .form-group input,
  .search-form .form-group input::placeholder,
  .search-form .form-group input::-webkit-input-placeholder,
  .search-form .form-group input::-moz-placeholder {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .search-form .form-group input,
  .search-form .form-group input::placeholder,
  .search-form .form-group input::-webkit-input-placeholder,
  .search-form .form-group input::-moz-placeholder {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .search-form .form-group input,
  .search-form .form-group input::placeholder,
  .search-form .form-group input::-webkit-input-placeholder,
  .search-form .form-group input::-moz-placeholder {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .search-form .form-group input,
  .search-form .form-group input::placeholder,
  .search-form .form-group input::-webkit-input-placeholder,
  .search-form .form-group input::-moz-placeholder {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .search-form .form-group input,
  .search-form .form-group input::placeholder,
  .search-form .form-group input::-webkit-input-placeholder,
  .search-form .form-group input::-moz-placeholder {
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .search-form .form-group input,
  .search-form .form-group input::placeholder,
  .search-form .form-group input::-webkit-input-placeholder,
  .search-form .form-group input::-moz-placeholder {
    line-height: 20px;
  }
}

.alert-success strong {
  color: #0f5132 !important;
}
.alert-success strong a {
  color: #0f5132 !important;
}
.alert-success strong a:hover {
  color: #B7AC86 !important;
}
.alert-success .alert-link:hover {
  color: #B7AC86 !important;
}

.alert-danger strong {
  color: #842029 !important;
}
.alert-danger strong a {
  color: #842029 !important;
}
.alert-danger strong a:hover {
  color: #B7AC86 !important;
}
.alert-danger .alert-link:hover {
  color: #B7AC86 !important;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 9999;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header {
    width: 100%;
  }
}
.header:before {
  position: absolute;
  content: "";
  display: block;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent);
}
@media (min-width: 1025px) {
  .header:before {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header:before {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header:before {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header:before {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header:before {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header:before {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header:before {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .header:before {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .header:before {
    top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header:before {
    top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header:before {
    top: 0;
  }
}
@media (max-width: 600px) {
  .header:before {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .header:before {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header:before {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header:before {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header:before {
    left: 0;
  }
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (min-width: 1025px) {
  .header__wrapper .wrapper-inner {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .wrapper-inner {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .wrapper-inner {
    padding-top: 25px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .wrapper-inner {
    padding-top: 25px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .wrapper-inner {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .wrapper-inner {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .wrapper-inner {
    padding-bottom: 25px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .wrapper-inner {
    padding-bottom: 25px;
  }
}
.header__wrapper .left-column,
.header__wrapper .right-column {
  width: calc(50% - 80px);
}
@media only screen and (min-width: 1025px) {
  .header__wrapper .left-column,
  .header__wrapper .right-column {
    width: calc(50% - 10.4166666667vw);
  }
}
@media (min-width: 1025px) {
  .header__wrapper .mid-column .logo-wrapper {
    width: 13.0208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .mid-column .logo-wrapper {
    width: 13.0208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .mid-column .logo-wrapper {
    width: 160px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .mid-column .logo-wrapper {
    width: 160px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .mid-column .logo-wrapper {
    height: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .mid-column .logo-wrapper {
    height: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .mid-column .logo-wrapper {
    height: 38px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .mid-column .logo-wrapper {
    height: 38px;
  }
}
.header__wrapper .mid-column .logo-wrapper img {
  object-fit: cover;
  filter: brightness(0) invert(1);
}
@media (min-width: 1025px) {
  .header__wrapper .mid-column .logo-wrapper img {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .mid-column .logo-wrapper img {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .mid-column .logo-wrapper img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper .mid-column .logo-wrapper img {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .mid-column .logo-wrapper img {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .mid-column .logo-wrapper img {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .mid-column .logo-wrapper img {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper .mid-column .logo-wrapper img {
    height: 100%;
  }
}
.header__wrapper .ham-menu {
  position: relative;
  flex-direction: row;
  border: 1px solid #ffffff;
  cursor: pointer;
  z-index: 999999;
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu {
    width: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu {
    width: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu {
    width: auto;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu {
    width: auto;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu {
    width: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu {
    width: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu {
    width: auto;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu {
    width: auto;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu {
    padding: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu {
    padding: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu {
    padding: 15px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu {
    padding: 15px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu {
    border-radius: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu {
    border-radius: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu {
    border-radius: 24px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu {
    border-radius: 24px;
  }
}
.header__wrapper .ham-menu .hamburger-icon {
  position: relative;
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon {
    top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon {
    top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon {
    top: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon {
    width: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon {
    width: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon {
    width: 28px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon {
    width: 36px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon {
    height: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon {
    height: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon {
    height: 18px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon {
    height: 24px;
  }
}
.header__wrapper .ham-menu .hamburger-icon span {
  position: absolute;
  display: block;
  background-color: #ffffff;
  transition: 0.5s ease-in-out;
  z-index: 1;
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    height: 0.1041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    height: 0.1041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    height: 2px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    height: 2px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon span {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(1) {
    top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(1) {
    top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(1) {
    top: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(1) {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(2) {
    top: 0.3125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(2) {
    top: 0.3125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(2) {
    top: 9px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(2) {
    top: 12px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(3) {
    top: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(3) {
    top: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(3) {
    top: 18px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon span:nth-child(3) {
    top: 24px;
  }
}
.header__wrapper .ham-menu .hamburger-icon.open span {
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon.open span {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .hamburger-icon.open span {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .hamburger-icon.open span {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .hamburger-icon.open span {
    width: 100%;
  }
}
.header__wrapper .ham-menu .hamburger-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
  background-color: #ffffff;
}
.header__wrapper .ham-menu .hamburger-icon.open span:nth-child(2) {
  transform: rotate(45deg);
  top: 8px;
  opacity: 0;
}
.header__wrapper .ham-menu .hamburger-icon.open span:nth-child(3) {
  transform: rotate(135deg);
  top: 8px;
  background-color: #ffffff;
}
.header__wrapper .ham-menu .menu-text {
  text-transform: uppercase;
  font-weight: 400 !important;
}
@media (min-width: 1025px) {
  .header__wrapper .ham-menu .menu-text {
    line-height: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .ham-menu .menu-text {
    line-height: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .ham-menu .menu-text {
    line-height: 15px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .ham-menu .menu-text {
    line-height: 14px;
  }
}
.header__wrapper .left-menu {
  position: relative;
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu {
    margin-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu {
    margin-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu {
    margin-left: 15px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu {
    margin-left: 10px;
  }
}
.header__wrapper .left-menu .header-left-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__wrapper .left-menu .header-left-menu .menu-item {
  position: relative;
  display: flex;
  align-items: center;
}
.header__wrapper .left-menu .header-left-menu .menu-item a {
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    padding-left: 15px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    padding-right: 0.6770833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    padding-right: 0.6770833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    padding-right: 13px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    padding-right: 13px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    line-height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    line-height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    line-height: 40px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item a {
    line-height: 30px;
  }
}
.header__wrapper .left-menu .header-left-menu .menu-item a:hover {
  color: #B7AC86;
}
.header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
  display: none;
  position: absolute;
  bottom: auto;
  width: max-content;
  background-color: #181D24;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: left;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    top: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    top: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    top: 40px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    top: 30px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu {
    padding: 10px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li {
    padding-top: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li {
    padding-top: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li {
    padding-top: 5px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li {
    padding-top: 5px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li {
    padding-bottom: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li {
    padding-bottom: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li {
    padding-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li {
    padding-bottom: 5px;
  }
}
.header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li a {
  display: block;
  color: #B7AC86;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li a {
    line-height: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li a {
    line-height: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li a {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li a {
    line-height: 30px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
.header__wrapper .left-menu .header-left-menu .menu-item ul.sub-menu li a:hover {
  color: #ffffff;
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children {
    padding-right: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children {
    padding-right: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children {
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children {
    padding-right: 15px;
  }
}
.header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  transform: translateY(-50%) rotate(180deg);
  filter: brightness(0) invert(1);
  background-image: url("../../images/more-menu-arrow.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    width: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    width: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    width: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    width: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    right: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    right: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    height: 8px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    height: 8px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    width: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    width: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    width: 18px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:after {
    width: 18px;
  }
}
.header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:hover:after {
  transform: translateY(-50%) rotate(0);
}
.header__wrapper .left-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu {
  display: block;
}
.header__wrapper .right-column {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__wrapper .right-column .right-menu {
  position: relative;
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu {
    margin-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu {
    margin-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu {
    margin-right: 15px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu {
    margin-right: 10px;
  }
}
.header__wrapper .right-column .right-menu .menu-item {
  position: relative;
}
.header__wrapper .right-column .right-menu .menu-item a {
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    padding-left: 15px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    padding-right: 10px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    line-height: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    line-height: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item a {
    line-height: 20px;
  }
}
.header__wrapper .right-column .right-menu .menu-item a:hover {
  color: #B7AC86;
}
.header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
  display: none;
  position: absolute;
  bottom: auto;
  width: max-content;
  background-color: #181D24;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: left;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    top: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    top: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    top: 30px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    top: 30px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu {
    padding: 10px;
  }
}
.header__wrapper .right-column .right-menu .menu-item ul.sub-menu li a {
  display: block;
  color: #B7AC86;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
.header__wrapper .right-column .right-menu .menu-item ul.sub-menu li a:hover {
  color: #ffffff;
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children {
    padding-right: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children {
    padding-right: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children {
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children {
    padding-right: 15px;
  }
}
.header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  transform: translateY(-50%) rotate(180deg);
  filter: brightness(0) invert(1);
  background-image: url("../../images/more-menu-arrow.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    width: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    width: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    width: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    width: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    right: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    right: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    height: 8px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    height: 8px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    width: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    width: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    width: 18px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:after {
    width: 18px;
  }
}
.header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:hover:after {
  transform: rotate(0);
}
.header__wrapper .right-column .right-menu .menu-item.menu-item-has-children:hover .sub-menu {
  display: block;
}
.header__wrapper .right-column .header-cta {
  position: relative;
  flex-direction: row;
  border: 1px solid #ffffff;
  cursor: pointer;
  z-index: 999999;
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta {
    width: auto;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta {
    width: auto;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta {
    padding: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta {
    padding: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta {
    padding: 12px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta {
    padding: 12px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta {
    border-radius: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta {
    border-radius: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta {
    border-radius: 24px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta {
    border-radius: 24px;
  }
}
.header__wrapper .right-column .header-cta .header-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    padding-left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    padding-left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    padding-left: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    padding-right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    padding-right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    padding-right: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    line-height: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    line-height: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    line-height: 15px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn {
    line-height: 14px;
  }
}
.header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img {
  display: block;
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img {
    width: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img {
    width: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img {
    width: 16px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img {
    width: 16px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img {
    height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img {
    height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img {
    height: 16px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img {
    height: 16px;
  }
}
.header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
  object-fit: cover;
  filter: invert(1);
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    width: 100%;
  }
}
.header__wrapper .right-column .header-cta .header-cta-btn:hover {
  color: #B7AC86;
}
.header__wrapper .right-column .header-cta .phone-link {
  display: block;
}
@media (min-width: 1025px) {
  .header__wrapper .right-column .header-cta .phone-link {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper .right-column .header-cta .phone-link {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper .right-column .header-cta .phone-link {
    padding-left: 8px;
  }
}
@media (max-width: 600px) {
  .header__wrapper .right-column .header-cta .phone-link {
    padding-left: 8px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper {
    width: 13.0208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper {
    width: 13.0208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper {
    width: 186px;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper {
    width: 123px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper {
    height: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper {
    height: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper {
    height: 45px;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper {
    height: 30px;
  }
}
.header__wrapper--mobile .mob-left-column .logo-wrapper .mobile-logo {
  object-fit: cover;
  filter: brightness(0) invert(1);
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper .mobile-logo {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper .mobile-logo {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper .mobile-logo {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper .mobile-logo {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper .mobile-logo {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper .mobile-logo {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper .mobile-logo {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-left-column .logo-wrapper .mobile-logo {
    width: 100%;
  }
}
.header__wrapper--mobile .mob-right-column .hamburger-icon {
  position: relative;
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    top: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    width: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    width: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    width: 28px;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    width: 36px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    height: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    height: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    height: 18px;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon {
    height: 24px;
  }
}
.header__wrapper--mobile .mob-right-column .hamburger-icon span {
  position: absolute;
  display: block;
  background-color: #ffffff;
  transition: 0.5s ease-in-out;
  z-index: 1;
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    height: 0.1041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    height: 0.1041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    height: 2px;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    height: 2px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(1) {
    top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(1) {
    top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(1) {
    top: 0;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(1) {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(2) {
    top: 0.3125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(2) {
    top: 0.3125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(2) {
    top: 9px;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(2) {
    top: 12px;
  }
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(3) {
    top: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(3) {
    top: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(3) {
    top: 18px;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon span:nth-child(3) {
    top: 24px;
  }
}
.header__wrapper--mobile .mob-right-column .hamburger-icon.open span {
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon.open span {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon.open span {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon.open span {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header__wrapper--mobile .mob-right-column .hamburger-icon.open span {
    width: 100%;
  }
}
.header__wrapper--mobile .mob-right-column .hamburger-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
  background-color: #ffffff;
}
.header__wrapper--mobile .mob-right-column .hamburger-icon.open span:nth-child(2) {
  transform: rotate(45deg);
  top: 8px;
  opacity: 0;
}
.header__wrapper--mobile .mob-right-column .hamburger-icon.open span:nth-child(3) {
  transform: rotate(135deg);
  top: 8px;
  background-color: #ffffff;
}
.header__wrapper--scroll {
  display: none;
  transition: 0.5s ease-in-out;
}
.header.gold-head::before {
  display: none;
}
.header.gold-head .ham-menu {
  border: 1px solid #1C1C1C;
}
.header.gold-head .ham-menu .hamburger-icon span {
  background-color: #1C1C1C;
}
.header.gold-head .ham-menu .menu-text {
  color: #272727 !important;
}
.header.gold-head .left-menu .header-left-menu .menu-item a,
.header.gold-head .left-menu .header-right-menu .menu-item a,
.header.gold-head .right-menu .header-left-menu .menu-item a,
.header.gold-head .right-menu .header-right-menu .menu-item a {
  color: #272727;
}
.header.gold-head .left-menu .header-left-menu .menu-item a:hover,
.header.gold-head .left-menu .header-right-menu .menu-item a:hover,
.header.gold-head .right-menu .header-left-menu .menu-item a:hover,
.header.gold-head .right-menu .header-right-menu .menu-item a:hover {
  color: #ffffff;
}
.header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
.header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
.header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
.header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
  display: none;
  position: absolute;
  bottom: auto;
  width: max-content;
  background-color: #181D24;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: left;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    top: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    top: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    top: 30px;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    top: 30px;
  }
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu {
    padding: 10px;
  }
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li {
    padding-top: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li {
    padding-top: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li {
    padding-top: 5px;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li {
    padding-top: 5px;
  }
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li {
    padding-bottom: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li {
    padding-bottom: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li {
    padding-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li,
  .header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li {
    padding-bottom: 5px;
  }
}
.header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li a,
.header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li a,
.header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li a,
.header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li a {
  display: block;
  color: #B7AC86;
  transition: 0.5s ease-in-out;
}
.header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li a:hover,
.header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li a:hover,
.header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li a:hover,
.header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li a:hover {
  color: #ffffff;
}
.header.gold-head .left-menu .header-left-menu .menu-item ul.sub-menu li.current-menu-item a,
.header.gold-head .left-menu .header-right-menu .menu-item ul.sub-menu li.current-menu-item a,
.header.gold-head .right-menu .header-left-menu .menu-item ul.sub-menu li.current-menu-item a,
.header.gold-head .right-menu .header-right-menu .menu-item ul.sub-menu li.current-menu-item a {
  color: #ffffff;
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children {
    padding-right: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children {
    padding-right: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children {
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children {
    padding-right: 15px;
  }
}
.header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
.header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
.header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
.header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  transform: translateY(-50%) rotate(180deg);
  filter: invert(1) !important;
  background-image: url("../../images/more-menu-arrow.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    width: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    width: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    width: 0;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    width: 0;
  }
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    right: 0;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    right: 0;
  }
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    height: 8px;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    height: 8px;
  }
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    width: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    width: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    width: 18px;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:after,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:after {
    width: 18px;
  }
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children a,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children a,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children a,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children a {
    line-height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children a,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children a,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children a,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children a {
    line-height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children a,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children a,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children a,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children a {
    line-height: 40px;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children a,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children a,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children a,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children a {
    line-height: 30px;
  }
}
.header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:hover:after,
.header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:hover:after,
.header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:hover:after,
.header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:hover:after {
  transform: translateY(-50%) rotate(0);
}
.header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu,
.header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu,
.header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu,
.header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu {
  display: block;
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu {
    top: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu {
    top: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu {
    top: 40px;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu {
    top: 30px;
  }
}
@media (min-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu li a {
    line-height: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu li a {
    line-height: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu li a {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .header.gold-head .left-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .left-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .right-menu .header-left-menu .menu-item.menu-item-has-children:hover .sub-menu li a,
  .header.gold-head .right-menu .header-right-menu .menu-item.menu-item-has-children:hover .sub-menu li a {
    line-height: 30px;
  }
}
.header.gold-head .left-menu .header-left-menu .menu-item.current-menu-item a,
.header.gold-head .left-menu .header-right-menu .menu-item.current-menu-item a,
.header.gold-head .right-menu .header-left-menu .menu-item.current-menu-item a,
.header.gold-head .right-menu .header-right-menu .menu-item.current-menu-item a {
  color: #ffffff;
}
.header.gold-head .right-column .header-cta {
  border: 1px solid #1C1C1C;
}
.header.gold-head .right-column .header-cta .header-cta-btn {
  color: #272727;
}
.header.gold-head .right-column .header-cta .header-cta-btn:hover {
  color: #ffffff;
}
.header.gold-head .right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
  filter: inherit;
}
.header.gold-head .mid-column .logo-wrapper img {
  filter: inherit;
}
.header.gold-head .header__wrapper--desktop {
  background-color: #B7AC86;
}
.header.gold-head .header__wrapper--mobile {
  background-color: #B7AC86;
}
.header.gold-head .header__wrapper--mobile .mob-left-column .logo-wrapper .mobile-logo {
  filter: inherit;
}
.header.gold-head .header__wrapper--mobile .mob-right-column .mob-ham-menu .hamburger-icon span {
  background-color: #272727;
}
.header--fixed {
  position: fixed;
  background-color: #B7AC86;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
}
@media (min-width: 1025px) {
  .header--fixed {
    top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed {
    top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed {
    top: 0;
  }
}
@media (max-width: 600px) {
  .header--fixed {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .header--fixed {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header--fixed {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header--fixed {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header--fixed {
    width: 100%;
  }
}
.header--fixed::before {
  display: none;
}
@media (min-width: 1025px) {
  .header--fixed .wrapper-inner {
    padding-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .wrapper-inner {
    padding-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .wrapper-inner {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .header--fixed .wrapper-inner {
    padding-top: 0;
  }
}
@media (min-width: 1025px) {
  .header--fixed .wrapper-inner {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .wrapper-inner {
    padding-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .wrapper-inner {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .header--fixed .wrapper-inner {
    padding-bottom: 0;
  }
}
.header--fixed .header__wrapper {
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper {
    padding-top: 0.7291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper {
    padding-top: 0.7291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper {
    padding-top: 14px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper {
    padding-top: 14px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper {
    padding-bottom: 0.7291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper {
    padding-bottom: 0.7291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper {
    padding-bottom: 14px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper {
    padding-bottom: 14px;
  }
}
.header--fixed .header__wrapper--desktop {
  display: none !important;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--desktop {
    padding: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--desktop {
    padding: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--desktop {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--desktop {
    padding: 0;
  }
}
.header--fixed .header__wrapper--scroll {
  transition: 0.5s ease-in-out;
}
@media only screen and (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll {
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  .header--fixed .mob-left-column .logo-wrapper {
    width: 10.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .mob-left-column .logo-wrapper {
    width: 10.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .mob-left-column .logo-wrapper {
    width: 196px;
  }
}
@media (max-width: 600px) {
  .header--fixed .mob-left-column .logo-wrapper {
    width: 123px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .mob-left-column .logo-wrapper {
    height: 2.5vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .mob-left-column .logo-wrapper {
    height: 2.5vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .mob-left-column .logo-wrapper {
    height: 48px;
  }
}
@media (max-width: 600px) {
  .header--fixed .mob-left-column .logo-wrapper {
    height: 30px;
  }
}
.header--fixed .mob-left-column .logo-wrapper .mobile-logo {
  filter: initial;
}
.header--fixed .mob-right-column .mob-ham-menu .hamburger-icon span {
  background-color: #272727;
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .header--fixed .header__wrapper--mobile {
    padding-top: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--mobile {
    padding-top: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--mobile {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .header--fixed .header__wrapper--mobile {
    padding-top: 0;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .header--fixed .header__wrapper--mobile {
    padding-bottom: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--mobile {
    padding-bottom: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--mobile {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .header--fixed .header__wrapper--mobile {
    padding-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-left-column .logo-wrapper {
    width: 10.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-left-column .logo-wrapper {
    width: 10.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-left-column .logo-wrapper {
    width: 196px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-left-column .logo-wrapper {
    width: 196px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-left-column .logo-wrapper {
    height: 2.5vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-left-column .logo-wrapper {
    height: 2.5vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-left-column .logo-wrapper {
    height: 48px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-left-column .logo-wrapper {
    height: 48px;
  }
}
.header--fixed .header__wrapper--scroll .fixed-left-column .logo-wrapper .fixed-logo {
  filter: initial;
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item {
  position: relative;
  display: flex;
  align-items: center;
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
  font-family: "Jost", sans-serif;
  color: #272727;
  font-weight: 400;
  text-transform: uppercase;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    padding-left: 15px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    padding-right: 10px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    line-height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    line-height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    line-height: 40px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a {
    line-height: 30px;
  }
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item a:hover {
  color: #ffffff;
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
  display: none;
  position: absolute;
  bottom: auto;
  width: max-content;
  background-color: #181D24;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: left;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    top: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    top: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    top: 40px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    top: 30px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    padding: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu {
    padding: 10px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li {
    padding-top: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li {
    padding-top: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li {
    padding-top: 5px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li {
    padding-top: 5px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li {
    padding-bottom: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li {
    padding-bottom: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li {
    padding-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li {
    padding-bottom: 5px;
  }
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li a {
  display: block;
  color: #B7AC86;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li a {
    line-height: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li a {
    line-height: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li a {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li a {
    line-height: 30px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li a {
    width: 100%;
  }
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li a:hover {
  color: #ffffff;
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item ul.sub-menu li.current-menu-item {
  color: #ffffff;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children {
    padding-right: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children {
    padding-right: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children {
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children {
    padding-right: 15px;
  }
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  transform: translateY(-50%) rotate(180deg);
  filter: invert(1);
  background-image: url("../../images/more-menu-arrow.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    width: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    width: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    width: 0;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    width: 0;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    right: 0;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    right: 0;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    height: 8px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    height: 8px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    width: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    width: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    width: 18px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:after {
    width: 18px;
  }
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:hover:after {
  transform: translateY(-50%) rotate(0);
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.menu-item-has-children:hover .sub-menu {
  display: block;
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.current-menu-item:after {
  filter: brightness(0) invert(1);
}
.header--fixed .header__wrapper--scroll .fixed-right-column .fixed-menu .header-fixed-menu .menu-item.current-menu-item a {
  color: #ffffff;
}
.header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
  position: relative;
  flex-direction: row;
  border: 1px solid #1C1C1C;
  cursor: pointer;
  z-index: 999999;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    margin-left: 10px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    margin-left: 10px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    width: auto;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    width: auto;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    width: auto;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    padding: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    padding: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    padding: 12px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    padding: 12px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    border-radius: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    border-radius: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    border-radius: 24px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta {
    border-radius: 24px;
  }
}
.header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #272727;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    padding-left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    padding-left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    padding-left: 0;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    padding-right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    padding-right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    padding-right: 0;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    line-height: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    line-height: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    line-height: 15px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn {
    line-height: 14px;
  }
}
.header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
  display: block;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    margin-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    margin-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    margin-right: 10px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    width: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    width: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    width: 16px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    width: 16px;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    height: 16px;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img {
    height: 16px;
  }
}
.header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
  object-fit: cover;
  filter: inherit;
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn .cta-link-img .phone-icon {
    width: 100%;
  }
}
.header--fixed .header__wrapper--scroll .fixed-right-column .header-cta .header-cta-btn:hover {
  color: #ffffff;
}
.header .header-mobile-menu {
  display: none;
  height: 100dvh;
  overflow: auto;
}
@media (min-width: 1025px) {
  .header .header-mobile-menu {
    padding-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu {
    padding-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu {
    padding-top: 50px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu {
    padding-top: 50px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu {
    padding-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu {
    padding-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu {
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .header-mobile-menu {
    width: 50%;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .submenu {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .submenu {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .submenu {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .submenu {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .submenu {
    padding-left: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .submenu {
    padding-left: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .submenu {
    padding-left: 12px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .submenu {
    padding-left: 12px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .submenu {
    padding-right: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .submenu {
    padding-right: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .submenu {
    padding-right: 12px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .submenu {
    padding-right: 12px;
  }
}
.header .header-mobile-menu .primary-mobile-menu li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #4B4B4B;
  justify-content: space-between;
}
.header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children {
  position: relative;
}
.header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    width: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    width: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    width: 20px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    width: 20px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    height: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    height: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    height: 20px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    height: 20px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    right: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    right: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    right: 16px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide {
    right: 16px;
  }
}
.header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide:after {
  position: absolute;
  top: 30px;
  right: 0;
  display: block;
  content: "";
  transform: rotate(180deg);
  filter: brightness(0) invert(1);
  background-image: url("../../images/more-menu-arrow.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide:after {
    height: 8px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide:after {
    height: 8px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 18px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 18px;
  }
}
.header .header-mobile-menu .primary-mobile-menu li.menu-item-has-children .toggle-btn-slide.active:after {
  transform: rotate(0);
  filter: initial !important;
}
.header .header-mobile-menu .primary-mobile-menu li a {
  position: relative;
  display: block;
  width: calc(100% - 60px) !important;
  font-family: "Jost", sans-serif;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    padding-top: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    padding-top: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    padding-top: 18px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    padding-top: 18px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    padding-bottom: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    padding-bottom: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    padding-bottom: 18px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    padding-bottom: 18px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    font-size: 1.1458333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    font-size: 1.1458333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    font-size: 18px !important;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    font-size: 18px !important;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    line-height: 1.4583333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    line-height: 1.4583333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    line-height: 24px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    line-height: 24px;
  }
}
@media only screen and (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li a {
    width: calc(100% - 160px) !important;
  }
}
.header .header-mobile-menu .primary-mobile-menu li ul li {
  border-bottom: none;
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li {
    padding-left: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li {
    padding-left: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li {
    padding-left: 12px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li {
    padding-left: 12px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li {
    padding-right: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li {
    padding-right: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li {
    padding-right: 12px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li {
    padding-right: 12px;
  }
}
.header .header-mobile-menu .primary-mobile-menu li ul li a {
  position: relative;
  display: block;
  font-weight: 400;
  text-transform: none;
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    padding-top: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    padding-top: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    padding-top: 10px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    padding-top: 10px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    padding-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    padding-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    padding-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    font-size: 0.78125vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    font-size: 0.78125vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    font-size: 18px !important;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li a {
    font-size: 18px !important;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li:last-child a {
    margin-bottom: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li:last-child a {
    margin-bottom: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li:last-child a {
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .primary-mobile-menu li ul li:last-child a {
    margin-bottom: 8px;
  }
}
.header .header-mobile-menu .primary-mobile-menu li.open > ul {
  display: block;
}
.header .header-mobile-menu .primary-mobile-menu li.open > a .submenu-icon {
  transform: translateY(-50%) rotate(0deg);
}
.header .header-mobile-menu .primary-mobile-menu li.current-menu-item > a {
  color: #B7AC86 !important;
}
.header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    padding-top: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    padding-top: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    padding-top: 50px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    padding-top: 50px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    padding-bottom: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    padding-bottom: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    padding-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    padding-bottom: 50px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    margin-left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    margin-left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    margin-right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    margin-right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu {
    margin-right: 0;
  }
}
.header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    width: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    width: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    width: 50%;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    padding-left: 10px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu li {
    padding-right: 10px;
  }
}
.header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
  display: block;
  position: relative;
  color: #ffffff;
  font-weight: 400;
  text-transform: none;
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    padding-top: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    padding-top: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    padding-top: 10px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    padding-top: 10px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    padding-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    padding-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    padding-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    font-size: 0.78125vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    font-size: 0.78125vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    font-size: 18px !important;
  }
}
@media (max-width: 600px) {
  .header .header-mobile-menu .header-mobile-secondary-menu .secondary-mobile-menu a {
    font-size: 18px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header.mob-menu-open {
    background-color: rgba(0, 0, 0, 0.7);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header.mob-menu-open .header__wrapper--mobile {
    width: 50%;
  }
}
.header.mob-menu-open:before {
  display: none;
}
.header.mob-menu-open.header--fixed .mob-left-column .logo-wrapper .mobile-logo {
  display: none;
}
.header.mob-menu-open.header--fixed .mob-left-column .logo-wrapper .mobile-logo-white {
  display: block !important;
}
.header.mob-menu-open .header__wrapper--mobile {
  background-color: #181D24 !important;
}
.header.mob-menu-open .header__wrapper .hamburger-icon span {
  background-color: #ffffff !important;
}
.header.mob-menu-open .logo-wrapper .mobile-logo {
  display: none !important;
}
.header.mob-menu-open .logo-wrapper .mobile-logo-white {
  display: block !important;
}
.header .header-mega-menu {
  position: fixed;
  display: block;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.7);
}
@media (min-width: 1025px) {
  .header .header-mega-menu {
    top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu {
    top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu {
    top: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu {
    width: 0;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu {
    width: 0;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu {
    width: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu {
    width: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu {
    height: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .header .header-mega-menu {
    display: none !important;
  }
}
.header .header-mega-menu .header-mega-menu-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    top: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    bottom: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    bottom: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    bottom: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    bottom: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    left: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    left: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    left: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    right: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    right: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    right: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper {
    right: 0;
  }
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
  height: 100vh;
  overflow: auto;
  scrollbar-width: none;
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    width: 20%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    width: 20%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    width: 20%;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    width: 20%;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    padding-top: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col {
    padding-bottom: 0;
  }
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
  width: calc(100% - 60px) !important;
  display: block;
  position: relative;
  font-family: "Jost", sans-serif;
  color: #B7AC86;
  font-weight: 400;
  text-transform: uppercase;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-left: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-top: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-bottom: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-bottom: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    padding-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    font-size: 1.1458333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    font-size: 1.1458333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    font-size: 0 !important;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    font-size: 0 !important;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    line-height: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    line-height: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    line-height: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a {
    line-height: 0;
  }
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li a:hover {
  color: #ffffff;
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul {
    width: 100%;
  }
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
  font-family: "Jost", sans-serif;
  color: #ffffff;
  font-weight: 400;
  text-transform: none;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    padding-left: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    padding-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    padding-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    padding-top: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    font-size: 0 !important;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    font-size: 0 !important;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    line-height: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a {
    line-height: 0;
  }
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li ul li a:hover {
  color: #B7AC86;
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.current-menu-item > a {
  color: #ffffff !important;
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children {
  position: relative;
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide {
    width: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide {
    width: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide {
    width: 60px;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide {
    width: 60px;
  }
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
  position: absolute;
  display: block;
  content: "";
  transform: rotate(180deg);
  filter: initial;
  background-image: url("../../images/more-menu-arrow.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    right: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    right: 0;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    height: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    height: 8px;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    height: 8px;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 18px;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide:after {
    width: 18px;
  }
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-menu-col .primary-mega-menu li.menu-item-has-children .toggle-btn-slide.active:after {
  transform: rotate(0);
  filter: brightness(0) invert(1);
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-featured-col {
  height: 100vh;
  scrollbar-width: none;
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-featured-col {
    width: 35%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-featured-col {
    width: 35%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-featured-col {
    width: 35%;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-featured-col {
    width: 35%;
  }
}
.header .header-mega-menu .header-mega-menu-wrapper .mega-transparent-col {
  height: 100vh;
  scrollbar-width: none;
}
@media (min-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-transparent-col {
    width: 45%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-transparent-col {
    width: 45%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-transparent-col {
    width: 45%;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu .header-mega-menu-wrapper .mega-transparent-col {
    width: 45%;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-menu.menu-open {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-menu.menu-open {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-menu.menu-open {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header .header-mega-menu.menu-open {
    width: 100%;
  }
}
.header .header-mega-secondary-menu .secondary-mega-menu {
  position: relative;
}
.header .header-mega-secondary-menu .secondary-mega-menu li {
  position: relative;
}
.header .header-mega-secondary-menu .secondary-mega-menu li a {
  font-family: "Jost", sans-serif;
  color: #ffffff;
  font-weight: 400;
  text-transform: none;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    font-size: 0 !important;
  }
}
@media (max-width: 600px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    font-size: 0 !important;
  }
}
@media (min-width: 1025px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    line-height: 2.1875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    line-height: 2.1875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    line-height: 0;
  }
}
@media (max-width: 600px) {
  .header .header-mega-secondary-menu .secondary-mega-menu li a {
    line-height: 0;
  }
}
.header .header-mega-secondary-menu .secondary-mega-menu li a:hover {
  color: #B7AC86;
}
.header .header-mega-secondary-menu .secondary-mega-menu li.current-menu-item a {
  color: #B7AC86;
}
.header .mega-featured-col {
  position: relative;
}
.header .mega-featured-col .featured-col-close {
  position: absolute;
  display: block;
  content: "";
  background-image: url("../../images/mega-menu-close.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .header .mega-featured-col .featured-col-close {
    top: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .featured-col-close {
    top: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .featured-col-close {
    top: 0;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .featured-col-close {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .featured-col-close {
    right: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .featured-col-close {
    right: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .featured-col-close {
    right: 0;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .featured-col-close {
    right: 0;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .featured-col-close {
    height: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .featured-col-close {
    height: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .featured-col-close {
    height: 0;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .featured-col-close {
    height: 0;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .featured-col-close {
    width: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .featured-col-close {
    width: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .featured-col-close {
    width: 0;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .featured-col-close {
    width: 0;
  }
}
.header .mega-featured-col .mega-featured-grid {
  height: 100vh;
  overflow: auto;
  scrollbar-width: none;
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid {
    margin-top: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid {
    margin-top: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid {
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid {
    margin-bottom: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid {
    margin-bottom: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid {
    margin-bottom: 0;
  }
}
.header .mega-featured-col .mega-featured-grid .mega-featured-heading {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo,
.header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo {
  width: auto;
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo {
    height: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo {
    height: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo {
    height: 0;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo {
    height: 0;
  }
}
.header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo img,
.header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo img {
  object-fit: cover;
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo img,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo img {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo img,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo img {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo img,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo img {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo img,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo img {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo img,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo img {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo img,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo img {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo img,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .mega-feature-logo img,
  .header .mega-featured-col .mega-featured-grid .mega-featured-heading .desktop-logo img {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper {
    padding-top: 0;
  }
}
.header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper {
  position: absolute;
  display: block;
  z-index: 999;
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper {
    top: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper {
    top: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper {
    top: 10px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper {
    top: 10px;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper {
    left: 0.6770833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper {
    left: 0.6770833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper {
    left: 3px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper {
    left: 3px;
  }
}
.header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
  text-transform: uppercase;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-right: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-right: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-right: 4px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-right: 4px;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-left: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-left: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-left: 4px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-left: 4px;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-top: 5px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-top: 5px;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    margin-bottom: 5px;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-left: 8px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-left: 8px;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-right: 8px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-right: 8px;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-top: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-top: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-top: 6px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-top: 6px;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-bottom: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-bottom: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-bottom: 6px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    padding-bottom: 6px;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    border-radius: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    border-radius: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    border-radius: 16px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag {
    border-radius: 16px;
  }
}
.header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .featured-tags-wrapper .tag:hover {
  opacity: 0.7;
}
.header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-arrow {
  display: none !important;
}
.header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots {
    margin-top: 20px;
  }
}
.header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li {
  width: 20px !important;
  height: 3px !important;
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li {
    margin-left: 5px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li {
    margin-left: 5px;
  }
}
@media (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li {
    margin-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li {
    margin-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li {
    margin-right: 5px;
  }
}
@media (max-width: 600px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li {
    margin-right: 5px;
  }
}
@media only screen and (min-width: 1025px) {
  .header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li {
    width: 2.6041666667vw !important;
  }
}
.header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li button {
  height: 100% !important;
  width: 100% !important;
  background-color: #1C1C1C;
  border-radius: 0 !important;
}
.header .mega-featured-col .mega-featured-grid .featured-projects-wrapper .ri-slider .slick-dots li.slick-active button {
  background-color: #B7AC86;
}
@keyframes expandMenu {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes collapseMenu {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.header .header-mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-100%);
  transition: none;
}
.header .header-mega-menu.menu-open {
  animation: expandMenu 0.4s forwards;
}
.header .header-mega-menu.menu-close {
  animation: collapseMenu 0.4s forwards;
}

.pr-footer {
  position: relative;
}
.pr-footer a {
  color: #ffffff;
  transition: 0.5s ease-in-out;
}
.pr-footer a:hover {
  color: #B7AC86 !important;
}
@media (min-width: 1025px) {
  .pr-footer .footer-menu li {
    padding-top: 0.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer .footer-menu li {
    padding-top: 0.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer .footer-menu li {
    padding-top: 4px;
  }
}
@media (max-width: 600px) {
  .pr-footer .footer-menu li {
    padding-top: 4px;
  }
}
@media (min-width: 1025px) {
  .pr-footer .footer-menu li {
    padding-bottom: 0.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer .footer-menu li {
    padding-bottom: 0.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer .footer-menu li {
    padding-bottom: 4px;
  }
}
@media (max-width: 600px) {
  .pr-footer .footer-menu li {
    padding-bottom: 4px;
  }
}
@media (min-width: 1025px) {
  .pr-footer .footer-menu li a {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer .footer-menu li a {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer .footer-menu li a {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .pr-footer .footer-menu li a {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .pr-footer .footer-menu li a {
    line-height: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer .footer-menu li a {
    line-height: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer .footer-menu li a {
    line-height: 18px;
  }
}
@media (max-width: 600px) {
  .pr-footer .footer-menu li a {
    line-height: 18px;
  }
}
.pr-footer .footer-menu li.current-menu-item a {
  color: #B7AC86;
}
.pr-footer__cta {
  position: relative;
}
@media (min-width: 1025px) {
  .pr-footer__cta {
    padding-top: 2.1875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__cta {
    padding-top: 2.1875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__cta {
    padding-top: 36px;
  }
}
@media (max-width: 600px) {
  .pr-footer__cta {
    padding-top: 36px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__cta {
    padding-bottom: 2.1875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__cta {
    padding-bottom: 2.1875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__cta {
    padding-bottom: 36px;
  }
}
@media (max-width: 600px) {
  .pr-footer__cta {
    padding-bottom: 36px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__cta .column {
    width: 33.3%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__cta .column {
    width: 33.3%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__cta .column {
    width: 48%;
  }
}
@media (max-width: 600px) {
  .pr-footer__cta .column {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .pr-footer__cta .column:first-child {
    width: 33.3%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__cta .column:first-child {
    width: 33.3%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__cta .column:first-child {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .pr-footer__cta .column:first-child {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .pr-footer__cta .column:first-child {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__cta .column:first-child {
    margin-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__cta .column:first-child {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .pr-footer__cta .column:first-child {
    margin-bottom: 35px;
  }
}
.pr-footer__cta .icon {
  display: flex;
  align-items: center;
}
@media (min-width: 1025px) {
  .pr-footer__cta .icon {
    margin-right: 1.7708333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__cta .icon {
    margin-right: 1.7708333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__cta .icon {
    margin-right: 15px;
  }
}
@media (max-width: 600px) {
  .pr-footer__cta .icon {
    margin-right: 15px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__cta .footer-logo {
    height: 3.1770833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__cta .footer-logo {
    height: 3.1770833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__cta .footer-logo {
    height: 44px;
  }
}
@media (max-width: 600px) {
  .pr-footer__cta .footer-logo {
    height: 35px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__cta .footer-logo {
    width: 12.96875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__cta .footer-logo {
    width: 12.96875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__cta .footer-logo {
    width: 180px;
  }
}
@media (max-width: 600px) {
  .pr-footer__cta .footer-logo {
    width: 141px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__cta .footer-cta {
    height: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__cta .footer-cta {
    height: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__cta .footer-cta {
    height: 28px;
  }
}
@media (max-width: 600px) {
  .pr-footer__cta .footer-cta {
    height: 28px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__cta .footer-cta {
    width: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__cta .footer-cta {
    width: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__cta .footer-cta {
    width: 28px;
  }
}
@media (max-width: 600px) {
  .pr-footer__cta .footer-cta {
    width: 28px;
  }
}
.pr-footer__cta a {
  color: #B7AC86;
  transition: 0.5s ease-in-out;
}
.pr-footer__cta a:hover {
  color: #ffffff !important;
}
@media (min-width: 1025px) {
  .pr-footer__inner .column {
    width: 33.3%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__inner .column {
    width: 33.3%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__inner .column {
    width: 33.3%;
  }
}
@media (max-width: 600px) {
  .pr-footer__inner .column {
    width: 48%;
  }
}
@media (min-width: 1025px) {
  .pr-footer__inner .column.order-md-2 {
    width: 33.3%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__inner .column.order-md-2 {
    width: 33.3%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__inner .column.order-md-2 {
    width: 33.3%;
  }
}
@media (max-width: 600px) {
  .pr-footer__inner .column.order-md-2 {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .pr-footer__inner .column.order-md-2 {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__inner .column.order-md-2 {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__inner .column.order-md-2 {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .pr-footer__inner .column.order-md-2 {
    margin-top: 50px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__phone {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__phone {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__phone {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .pr-footer__phone {
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .pr-footer__whatsapp {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__whatsapp {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__whatsapp {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .pr-footer__whatsapp {
    margin-top: 20px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__top {
    padding-top: 3.8541666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__top {
    padding-top: 3.8541666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__top {
    padding-top: 48px;
  }
}
@media (max-width: 600px) {
  .pr-footer__top {
    padding-top: 48px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__top {
    padding-bottom: 3.6458333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__top {
    padding-bottom: 3.6458333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__top {
    padding-bottom: 48px;
  }
}
@media (max-width: 600px) {
  .pr-footer__top {
    padding-bottom: 48px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__middle .middle-content {
    margin-top: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__middle .middle-content {
    margin-top: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__middle .middle-content {
    margin-top: 35px;
  }
}
@media (max-width: 600px) {
  .pr-footer__middle .middle-content {
    margin-top: 35px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__middle .middle-content:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__middle .middle-content:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__middle .middle-content:first-child {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .pr-footer__middle .middle-content:first-child {
    margin-top: 0;
  }
}
.pr-footer__middle .smo-item {
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .pr-footer__middle .smo-item {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__middle .smo-item {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__middle .smo-item {
    margin-left: 10px;
  }
}
@media (max-width: 600px) {
  .pr-footer__middle .smo-item {
    margin-left: 10px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__middle .smo-item {
    margin-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__middle .smo-item {
    margin-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__middle .smo-item {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .pr-footer__middle .smo-item {
    margin-right: 10px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__middle .smo-item {
    height: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__middle .smo-item {
    height: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__middle .smo-item {
    height: 18px;
  }
}
@media (max-width: 600px) {
  .pr-footer__middle .smo-item {
    height: 18px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__middle .smo-item {
    width: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__middle .smo-item {
    width: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__middle .smo-item {
    width: auto;
  }
}
@media (max-width: 600px) {
  .pr-footer__middle .smo-item {
    width: auto;
  }
}
.pr-footer__middle .smo-item:hover {
  opacity: 0.5;
}
.pr-footer__middle .smo-item img,
.pr-footer__middle .smo-item svg {
  object-fit: cover;
}
@media (min-width: 1025px) {
  .pr-footer__middle .smo-item img,
  .pr-footer__middle .smo-item svg {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__middle .smo-item img,
  .pr-footer__middle .smo-item svg {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__middle .smo-item img,
  .pr-footer__middle .smo-item svg {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .pr-footer__middle .smo-item img,
  .pr-footer__middle .smo-item svg {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .pr-footer__middle .smo-item img,
  .pr-footer__middle .smo-item svg {
    width: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__middle .smo-item img,
  .pr-footer__middle .smo-item svg {
    width: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__middle .smo-item img,
  .pr-footer__middle .smo-item svg {
    width: auto;
  }
}
@media (max-width: 600px) {
  .pr-footer__middle .smo-item img,
  .pr-footer__middle .smo-item svg {
    width: auto;
  }
}
.pr-footer__right-menu ul li {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .pr-footer__right-menu ul li {
    text-align: right;
  }
}
.pr-footer__bottom {
  position: relative;
  border-top: 1px solid #393939;
}
@media (min-width: 1025px) {
  .pr-footer__bottom {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom {
    padding-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom {
    padding-top: 40px;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom {
    padding-top: 40px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom {
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .pr-footer__bottom .wrapper--90 {
    max-width: 75%;
  }
}
.pr-footer__bottom-menu ul li {
  position: relative;
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    margin-left: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li {
    margin-left: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    margin-left: 10px;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li {
    margin-left: 10px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    margin-right: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li {
    margin-right: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li {
    margin-right: 10px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    margin-top: 5px;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li {
    margin-top: 5px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li {
    margin-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li {
    margin-bottom: 5px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    font-size: 0.625vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li {
    font-size: 0.625vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    font-size: 12px !important;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li {
    font-size: 12px !important;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    line-height: 0.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li {
    line-height: 0.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li {
    line-height: 12px;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li {
    line-height: 12px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li:first-child {
    margin-left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li:first-child {
    margin-left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li:first-child {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li:first-child {
    margin-left: 0;
  }
}
.pr-footer__bottom-menu ul li:after {
  position: absolute;
  content: "";
  background-color: #ffffff;
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li:after {
    top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li:after {
    top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li:after {
    top: 0;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li:after {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li:after {
    right: -0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li:after {
    right: -0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li:after {
    right: -10px;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li:after {
    right: -10px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li:after {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li:after {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li:after {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li:after {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li:after {
    width: 0.0520833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li:after {
    width: 0.0520833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li:after {
    width: 1px;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li:after {
    width: 1px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__bottom-menu ul li:last-child {
    margin-right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__bottom-menu ul li:last-child {
    margin-right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__bottom-menu ul li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .pr-footer__bottom-menu ul li:last-child {
    margin-right: 0;
  }
}
.pr-footer__bottom-menu ul li:last-child:after {
  display: none;
}
.pr-footer__bottom-menu ul li.current-menu-item a {
  color: #B7AC86;
}
.pr-footer .goto-top {
  position: absolute;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .pr-footer .goto-top {
    bottom: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer .goto-top {
    bottom: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer .goto-top {
    bottom: 60px;
  }
}
@media (max-width: 600px) {
  .pr-footer .goto-top {
    bottom: 240px;
  }
}
@media (min-width: 1025px) {
  .pr-footer .goto-top {
    right: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer .goto-top {
    right: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer .goto-top {
    right: 20px;
  }
}
@media (max-width: 600px) {
  .pr-footer .goto-top {
    right: 20px;
  }
}
.pr-footer .goto-top .goto-top-image {
  object-fit: contain;
}
@media (min-width: 1025px) {
  .pr-footer .goto-top .goto-top-image {
    height: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer .goto-top .goto-top-image {
    height: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer .goto-top .goto-top-image {
    height: 50px;
  }
}
@media (max-width: 600px) {
  .pr-footer .goto-top .goto-top-image {
    height: 38px;
  }
}
@media (min-width: 1025px) {
  .pr-footer .goto-top .goto-top-image {
    width: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer .goto-top .goto-top-image {
    width: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer .goto-top .goto-top-image {
    width: 50px;
  }
}
@media (max-width: 600px) {
  .pr-footer .goto-top .goto-top-image {
    width: 38px;
  }
}
@media (min-width: 1025px) {
  .pr-footer__copyright, .pr-footer__developed-by {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-footer__copyright, .pr-footer__developed-by {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-footer__copyright, .pr-footer__developed-by {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .pr-footer__copyright, .pr-footer__developed-by {
    margin-top: 10px;
  }
}
.pr-footer__copyright a, .pr-footer__developed-by a {
  color: #ffffff;
  transition: 0.5s ease-in-out;
}
.pr-footer__copyright a:hover, .pr-footer__developed-by a:hover {
  color: #B7AC86 !important;
}
@media only screen and (max-width: 1024px) {
  .pr-footer__bottom-menu, .pr-footer__copyright, .pr-footer__developed-by {
    width: 100%;
    text-align: center;
  }
}

.banner-section::after, .banner-section-inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
  background: #000000;
}

.banner-section {
  height: 100vh;
}

.video-container video, .video-container img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .video-container video {
    margin-bottom: -0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .video-container video {
    margin-bottom: -0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .video-container video {
    margin-bottom: -8px;
  }
}
@media (max-width: 600px) {
  .video-container video {
    margin-bottom: -8px;
  }
}

@media (min-width: 1025px) {
  .banner-section-inner {
    height: 41.6666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .banner-section-inner {
    height: 41.6666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .banner-section-inner {
    height: 600px;
  }
}
@media (max-width: 600px) {
  .banner-section-inner {
    height: 500px;
  }
}
.banner-section-inner .banner-img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .banner-section-inner .banner-img {
    height: 41.6666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .banner-section-inner .banner-img {
    height: 41.6666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .banner-section-inner .banner-img {
    height: 600px;
  }
}
@media (max-width: 600px) {
  .banner-section-inner .banner-img {
    height: 500px;
  }
}
.banner-section-inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.6;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

#bannerSlider {
  position: relative;
}
#bannerSlider .carousel-item {
  position: relative;
}
#bannerSlider .carousel-item .banner-img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1025px) {
  #bannerSlider .carousel-item .banner-img {
    height: 100vh;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  #bannerSlider .carousel-item .banner-img {
    height: value-desktop;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  #bannerSlider .carousel-item .banner-img {
    height: 600px;
  }
}
@media (max-width: 600px) {
  #bannerSlider .carousel-item .banner-img {
    height: 500px;
  }
}
#bannerSlider .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
  background: #000000;
}
#bannerSlider .carousel-indicators {
  position: absolute;
  right: 0;
  z-index: 99;
  left: 0;
  bottom: 0;
  justify-content: center;
  display: flex;
  margin: auto !important;
}
@media (min-width: 1025px) {
  #bannerSlider .carousel-indicators {
    bottom: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  #bannerSlider .carousel-indicators {
    bottom: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  #bannerSlider .carousel-indicators {
    bottom: 30px;
  }
}
@media (max-width: 600px) {
  #bannerSlider .carousel-indicators {
    bottom: 30px;
  }
}
#bannerSlider .carousel-indicators button {
  position: relative;
}
@media (min-width: 1025px) {
  #bannerSlider .carousel-indicators button {
    width: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  #bannerSlider .carousel-indicators button {
    width: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  #bannerSlider .carousel-indicators button {
    width: 90px;
  }
}
@media (max-width: 600px) {
  #bannerSlider .carousel-indicators button {
    width: 20px;
  }
}
@media (min-width: 1025px) {
  #bannerSlider .carousel-indicators button {
    margin-left: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  #bannerSlider .carousel-indicators button {
    margin-left: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  #bannerSlider .carousel-indicators button {
    margin-left: 5px;
  }
}
@media (max-width: 600px) {
  #bannerSlider .carousel-indicators button {
    margin-left: 5px;
  }
}
@media (min-width: 1025px) {
  #bannerSlider .carousel-indicators button {
    margin-right: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  #bannerSlider .carousel-indicators button {
    margin-right: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  #bannerSlider .carousel-indicators button {
    margin-right: 5px;
  }
}
@media (max-width: 600px) {
  #bannerSlider .carousel-indicators button {
    margin-right: 5px;
  }
}
#bannerSlider .carousel-indicators button:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  text-indent: unset !important;
  display: flex;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 2px;
  font-family: "DM Sans", serif;
}
#bannerSlider .carousel-indicators button.active:after {
  background: #B7AC86;
}

.banner-caption {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  top: auto;
  z-index: 1;
  width: 100%;
}
@media (min-width: 1025px) {
  .banner-caption {
    padding-top: 10.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .banner-caption {
    padding-top: 10.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .banner-caption {
    padding-top: 100px;
  }
}
@media (max-width: 600px) {
  .banner-caption {
    padding-top: 100px;
  }
}
@media (min-width: 1025px) {
  .banner-caption {
    bottom: 5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .banner-caption {
    bottom: 5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .banner-caption {
    bottom: 50px;
  }
}
@media (max-width: 600px) {
  .banner-caption {
    bottom: 50px;
  }
}
.banner-caption .banner-caption__inner {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.awards-banner {
  position: absolute;
  display: block;
  content: "";
  right: 5%;
  z-index: 9999;
}
@media (min-width: 1025px) {
  .awards-banner {
    top: 6.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .awards-banner {
    top: 6.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .awards-banner {
    top: 100px;
  }
}
@media (max-width: 600px) {
  .awards-banner {
    top: 100px;
  }
}
.awards-banner img {
  object-fit: contain;
}
@media (min-width: 1025px) {
  .awards-banner img {
    height: 5.0520833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .awards-banner img {
    height: 5.0520833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .awards-banner img {
    height: 65px;
  }
}
@media (max-width: 600px) {
  .awards-banner img {
    height: 40px;
  }
}
@media (min-width: 1025px) {
  .awards-banner img {
    width: 12.5vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .awards-banner img {
    width: 12.5vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .awards-banner img {
    width: 160px;
  }
}
@media (max-width: 600px) {
  .awards-banner img {
    width: 100px;
  }
}

@media only screen and (min-width: 1025px) {
  .banner-section-inner {
    height: 41.6666666667vw !important;
  }
  .banner-section-inner .banner-img {
    height: 41.6666666667vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .banner-caption .banner-caption__inner {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 600px) {
  .banner-caption .banner-caption__inner {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .video-container video, .video-container img {
    height: 600px;
  }
  .banner-section {
    height: 600px;
  }
}
@media only screen and (max-width: 600px) {
  .video-container video, .video-container img {
    height: 500px;
  }
  .banner-section {
    height: 500px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

html {
  margin-top: 0;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth;
}

html.fixed {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  display: block;
}
::-webkit-scrollbar:hover {
  display: block;
}

::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5);
  background-color: #B7AC86;
  border-radius: 5px;
}

body,
html {
  padding: 0;
  margin: 0;
  font-size: 100%;
}

body {
  position: relative;
}

body.menu-fixed {
  overflow: hidden;
}

.main {
  position: relative;
  z-index: 9;
}

section {
  position: relative;
  display: block;
}

/* Placeholder */
input::-webkit-input-placeholder {
  color: #000000;
  opacity: 0.5;
}

input:-moz-placeholder {
  color: #000000;
  opacity: 0.5;
}

/* Typography */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Change font styles in mobile */
}

/* Menu opening */
.menu-open {
  background-color: rgba(157, 157, 157, 0.3);
}

html,
body {
  font-family: "Jost", sans-serif;
  overflow-x: hidden;
}
html--white,
body--white {
  color: #ffffff;
}

::-ms-input-placeholder {
  color: #000000;
  opacity: 0.7;
}

::-webkit-input-placeholder {
  color: #000000;
  opacity: 0.7;
}

::-moz-input-placeholder {
  color: #000000;
  opacity: 0.7;
}

::placeholder {
  color: #000000;
  opacity: 0.7;
}

@media (min-width: 1025px) {
  p,
  .p1,
  .paragraph {
    margin-top: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  p,
  .p1,
  .paragraph {
    margin-top: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  p,
  .p1,
  .paragraph {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  p,
  .p1,
  .paragraph {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  p,
  .p1,
  .paragraph {
    margin-bottom: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  p,
  .p1,
  .paragraph {
    margin-bottom: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  p,
  .p1,
  .paragraph {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  p,
  .p1,
  .paragraph {
    margin-bottom: 10px;
  }
}
p:first-child,
.p1:first-child,
.paragraph:first-child {
  margin-top: 0;
}
p:last-child,
.p1:last-child,
.paragraph:last-child {
  margin-bottom: 0;
}

a:active,
a:hover,
a:focus,
li:active,
li:hover,
li:focus {
  outline: none;
}

img, picture {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: unset;
  color: #B7AC86;
  transition: all 0.5s;
}
a:hover {
  text-decoration: unset;
  color: #494949;
}

ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.48px;
}
@media only screen and (min-width: 768px) {
  li {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.6px;
  }
}

::-ms-input-placeholder {
  opacity: 0.7;
}

::-webkit-input-placeholder {
  opacity: 0.7;
}

::-moz-input-placeholder {
  opacity: 0.7;
}

::placeholder {
  opacity: 0.7;
}

.show_center {
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .show_mobile {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .show_upto_tab {
    display: none !important;
  }
}

@media only screen and (min-width: 1024px) {
  .show_mobile_to_tab {
    display: none !important;
  }
}

.show_tab {
  display: none !important;
}
@media only screen and (min-width: 1024px) {
  .show_tab {
    display: block !important;
  }
}

.show_from_tab {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .show_from_tab {
    display: block !important;
  }
}

.show_desktop {
  display: none !important;
}
@media only screen and (min-width: 1200px) {
  .show_desktop {
    display: block !important;
  }
}

.show_tab {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .show_tab {
    display: block !important;
  }
}

.hide_all, .hidden, .hide {
  display: none !important;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .hide_all_tabonly {
    display: none !important;
  }
}

.no-mobile {
  display: none;
}
@media only screen and (min-width: 768px) {
  .no-mobile {
    display: block;
  }
}

.only-mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .only-mobile {
    display: none;
  }
}

.txt_col_white * {
  color: #ffffff !important;
}

.w100 {
  width: 100%;
}

*::placeholder {
  color: #ffffff;
  opacity: 1;
}

.pg_gaps {
  padding: 0 20px;
}
@media only screen and (min-width: 768px) {
  .pg_gaps {
    padding: 0 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .pg_gaps {
    padding: 0 150px;
  }
}
@media only screen and (min-width: 1600px) {
  .pg_gaps {
    padding: 0 225px;
  }
}

.jc_start {
  justify-content: flex-start !important;
}

.fancybox-is-open {
  z-index: 99999999;
}

.txtransformed_allcaps {
  text-transform: uppercase;
}
.txtransformed_captized {
  text-transform: capitalize;
}
.txtransformed_simpled {
  text-transform: lowercase;
}
.txtransformed_discard {
  text-transform: unset;
}

h1 {
  margin: 0;
  padding: 0;
  color: #000000;
}

h2 {
  margin: 0;
  padding: 0;
  color: #000000;
}

h3 {
  margin: 0;
  padding: 0;
  color: #000000;
}

h4 {
  margin: 0;
  padding: 0;
  color: #000000;
}

h5 {
  margin: 0;
  padding: 0;
  color: #000000;
}

h6 {
  margin: 0;
  padding: 0;
  color: #000000;
}

.only-mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .only-mobile {
    display: none;
  }
}

.no-mobile {
  display: none;
}
@media only screen and (min-width: 768px) {
  .no-mobile {
    display: block;
  }
}

.no-portrait {
  display: block;
}
@media only screen and (min-width: 768px) {
  .no-portrait {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .no-portrait {
    display: block;
  }
}

.only-portrait {
  display: none;
}
@media only screen and (min-width: 768px) {
  .only-portrait {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .only-portrait {
    display: none;
  }
}

.no-landscape {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .no-landscape {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .no-landscape {
    display: block;
  }
}

.only-landscape {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .only-landscape {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .only-landscape {
    display: none;
  }
}

.no-ds {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .no-ds {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .no-ds {
    display: block;
  }
}

.only-ds {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .only-ds {
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .only-ds {
    display: none;
  }
}

.no-dm {
  display: block;
}
@media only screen and (min-width: 1200px) {
  .no-dm {
    display: none;
  }
}
@media only screen and (min-width: 1450px) {
  .no-dm {
    display: block;
  }
}

.only-dm {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .only-dm {
    display: block;
  }
}
@media only screen and (min-width: 1450px) {
  .only-dm {
    display: none;
  }
}

.no-dx {
  display: block;
}
@media only screen and (min-width: 1450px) {
  .no-dx {
    display: none;
  }
}
@media only screen and (min-width: 1600px) {
  .no-dx {
    display: block;
  }
}

.only-dx {
  display: none;
}
@media only screen and (min-width: 1450px) {
  .only-dx {
    display: block;
  }
}
@media only screen and (min-width: 1600px) {
  .only-dx {
    display: none;
  }
}

.no-lg {
  display: block;
}
@media only screen and (min-width: 1600px) {
  .no-lg {
    display: none;
  }
}
@media only screen and (min-width: 1920px) {
  .no-lg {
    display: block;
  }
}

.only-lg {
  display: none;
}
@media only screen and (min-width: 1600px) {
  .only-lg {
    display: block;
  }
}
@media only screen and (min-width: 1920px) {
  .only-lg {
    display: none;
  }
}

.no-lgx {
  display: block;
}
@media only screen and (min-width: 1920px) {
  .no-lgx {
    display: none;
  }
}

.only-lgx {
  display: none;
}
@media only screen and (min-width: 1920px) {
  .only-lgx {
    display: block;
  }
}

.slider .owl-theme .owl-nav [class*=owl-] {
  background: transparent;
  height: 35px;
  width: 35px;
  border-radius: 50%;
}
@media only screen and (min-width: 1024px) {
  .slider .owl-theme .owl-nav [class*=owl-] {
    height: 48px;
    width: 48px;
  }
}
.slider .owl-theme .owl-nav [class*=owl-]:hover {
  background-color: transparent;
  border-radius: 50% !important;
}
.slider .owl-nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  top: 30%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .slider .owl-nav {
    top: 35%;
  }
}
.slider .owl-nav__arrow {
  display: block;
  height: 35px;
  width: 35px;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  object-fit: cover;
}
.slider .owl-nav__arrow--prev {
  background-image: url(../assets/images/prev.svg) !important;
}
.slider .owl-nav__arrow--prev:hover {
  background-image: url(../assets/images/prev-hover.svg) !important;
}
.slider .owl-nav__arrow--next {
  background-image: url(../assets/images/next.svg) !important;
}
.slider .owl-nav__arrow--next:hover {
  background-image: url(../assets/images/next-hover.svg) !important;
}

.page-counter-banner,
.page-counter-highlights,
.page-counter-food-menu,
.page-counter-wine-menu,
.page-counter-drink-menu,
.page-counter-offer-inner-details {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  width: 100%;
  z-index: 999;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  .page-counter-banner,
  .page-counter-highlights,
  .page-counter-food-menu,
  .page-counter-wine-menu,
  .page-counter-drink-menu,
  .page-counter-offer-inner-details {
    font-size: 16px;
    line-height: 45px;
    letter-spacing: 0.32px;
  }
}
.page-counter-banner .spacer,
.page-counter-highlights .spacer,
.page-counter-food-menu .spacer,
.page-counter-wine-menu .spacer,
.page-counter-drink-menu .spacer,
.page-counter-offer-inner-details .spacer {
  position: relative;
  display: block;
  height: 1px;
  width: 27px;
  background-color: #ffffff;
  margin: 0 16px;
}
@media only screen and (min-width: 1200px) {
  .page-counter-banner .spacer,
  .page-counter-highlights .spacer,
  .page-counter-food-menu .spacer,
  .page-counter-wine-menu .spacer,
  .page-counter-drink-menu .spacer,
  .page-counter-offer-inner-details .spacer {
    margin: 0 12px;
  }
}

.btn {
  position: relative;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  .btn {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn {
    padding-top: 14px;
  }
}
@media (max-width: 600px) {
  .btn {
    padding-top: 14px;
  }
}
@media (min-width: 1025px) {
  .btn {
    padding-bottom: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn {
    padding-bottom: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn {
    padding-bottom: 14px;
  }
}
@media (max-width: 600px) {
  .btn {
    padding-bottom: 14px;
  }
}
@media (min-width: 1025px) {
  .btn {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn {
    padding-left: 30px;
  }
}
@media (max-width: 600px) {
  .btn {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .btn {
    padding-right: 3.3854166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn {
    padding-right: 3.3854166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn {
    padding-right: 65px;
  }
}
@media (max-width: 600px) {
  .btn {
    padding-right: 50px;
  }
}
@media (min-width: 1025px) {
  .btn {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn {
    font-size: 14px !important;
  }
}
@media (max-width: 600px) {
  .btn {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .btn {
    line-height: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn {
    line-height: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn {
    line-height: 18px;
  }
}
@media (max-width: 600px) {
  .btn {
    line-height: 18px;
  }
}
@media (min-width: 1025px) {
  .btn {
    letter-spacing: 0.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn {
    letter-spacing: 0.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn {
    letter-spacing: 1.4px;
  }
}
@media (max-width: 600px) {
  .btn {
    letter-spacing: 1.4px;
  }
}
@media (min-width: 1025px) {
  .btn {
    border-radius: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn {
    border-radius: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn {
    border-radius: 30px;
  }
}
@media (max-width: 600px) {
  .btn {
    border-radius: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    min-width: 188px !important;
  }
}
.btn:after {
  position: absolute;
  content: "";
  display: block;
  transform: translateY(-50%);
  background-image: url("../../../assets/images/btn-arrow-white.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .btn:after {
    top: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn:after {
    top: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn:after {
    top: 50%;
  }
}
@media (max-width: 600px) {
  .btn:after {
    top: 50%;
  }
}
@media (min-width: 1025px) {
  .btn:after {
    right: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn:after {
    right: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn:after {
    right: 20px;
  }
}
@media (max-width: 600px) {
  .btn:after {
    right: 20px;
  }
}
@media (min-width: 1025px) {
  .btn:after {
    width: 0.7291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn:after {
    width: 0.7291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn:after {
    width: 14px;
  }
}
@media (max-width: 600px) {
  .btn:after {
    width: 14px;
  }
}
@media (min-width: 1025px) {
  .btn:after {
    height: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn:after {
    height: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn:after {
    height: 10px;
  }
}
@media (max-width: 600px) {
  .btn:after {
    height: 10px;
  }
}
.btn--light {
  background-color: transparent;
  color: #ffffff;
  transition: 0.5s ease-in-out;
  border: 1px solid #B7AC86;
}
.btn--light:hover {
  background-color: #B7AC86;
  color: #ffffff;
}
.btn--darktext {
  background-color: transparent;
  color: #272727;
  transition: 0.5s ease-in-out;
  border: 1px solid #B7AC86;
}
.btn--darktext:hover {
  background-color: #B7AC86;
  color: #272727;
}
.btn--darktext:after {
  background-image: url("../../../assets/images/btn-arrow-black.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .btn--darktext:after {
    top: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn--darktext:after {
    top: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn--darktext:after {
    top: 50%;
  }
}
@media (max-width: 600px) {
  .btn--darktext:after {
    top: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .btn--darktext.mobile-fill {
    background-color: #B7AC86;
    transition: 0.5s ease-in-out;
    border: 1px solid #B7AC86;
    color: #272727;
  }
  .btn--darktext.mobile-fill:after {
    border: none;
    background-image: url("../../../assets/images/btn-arrow-black.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .btn--darktext.mobile-fill:hover {
    background-color: #B7AC86 !important;
    border: 1px solid #B7AC86;
    color: #272727;
  }
  .btn--darktext.mobile-fill:hover:after {
    background-image: url("../../../assets/images/btn-arrow-white.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.btn--dark, .btn.submit-btn {
  background-color: #B7AC86;
  color: #272727;
  transition: 0.5s ease-in-out;
  border: 1px solid #B7AC86;
}
.btn--dark:after, .btn.submit-btn:after {
  background-image: url("../../../assets/images/btn-arrow-black.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .btn--dark:after, .btn.submit-btn:after {
    top: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn--dark:after, .btn.submit-btn:after {
    top: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn--dark:after, .btn.submit-btn:after {
    top: 50%;
  }
}
@media (max-width: 600px) {
  .btn--dark:after, .btn.submit-btn:after {
    top: 50%;
  }
}
.btn--dark:hover, .btn.submit-btn:hover {
  background-color: #272727;
  color: #ffffff;
  border: 1px solid #272727;
}
.btn--dark:hover:after, .btn.submit-btn:hover:after {
  background-image: url("../../../assets/images/btn-arrow-white.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .btn--dark:hover:after, .btn.submit-btn:hover:after {
    top: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn--dark:hover:after, .btn.submit-btn:hover:after {
    top: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn--dark:hover:after, .btn.submit-btn:hover:after {
    top: 50%;
  }
}
@media (max-width: 600px) {
  .btn--dark:hover:after, .btn.submit-btn:hover:after {
    top: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .btn--dark.mobile-white {
    background-color: transparent;
    color: #272727;
    transition: 0.5s ease-in-out;
    border: 1px solid #B7AC86;
  }
  .btn--dark.mobile-white:hover {
    background-color: #B7AC86;
    color: #272727;
  }
  .btn--dark.mobile-white:after {
    background-image: url("../../../assets/images/btn-arrow-black.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1025px) {
  .btn--dark.mobile-white:after {
    top: 50%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1025px) and (max-width: 1600px) {
  .btn--dark.mobile-white:after {
    top: 50%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 600px) and (max-width: 1025px) {
  .btn--dark.mobile-white:after {
    top: 50%;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 600px) {
  .btn--dark.mobile-white:after {
    top: 50%;
  }
}
.btn--dark.reset-button:after {
  display: none;
}
.btn--darkfill {
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 1024px) {
  .btn--darkfill {
    background-color: transparent;
    color: #1C1C1C;
    border: 1px solid #B7AC86;
  }
  .btn--darkfill:after {
    background-image: url("../../../assets/images/btn-arrow-black.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 1025px) {
  .btn--darkfill {
    background-color: #1C1C1C;
    color: #ffffff;
    border: 1px solid #1C1C1C;
  }
  .btn--darkfill:after {
    background-image: url("../../../assets/images/btn-arrow-white.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.btn--darkfill:hover {
  background-color: #B7AC86;
  color: #ffffff;
  border: 1px solid #B7AC86;
}
.btn--darkmobile {
  background-color: transparent;
  transition: 0.5s ease-in-out;
  border: 1px solid #B7AC86;
  color: #272727;
}
@media only screen and (min-width: 1025px) {
  .btn--darkmobile {
    color: #ffffff;
  }
}
.btn--darkmobile:after {
  border: none;
}
@media only screen and (max-width: 1024px) {
  .btn--darkmobile:after {
    background-image: url("../../../assets/images/btn-arrow-black.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 1025px) {
  .btn--darkmobile:after {
    background-image: url("../../../assets/images/btn-arrow-white.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.btn--darkmobile:hover {
  background-color: #B7AC86;
  color: #ffffff;
}
.btn--goldfill {
  background-color: #B7AC86;
  transition: 0.5s ease-in-out;
  border: 1px solid #B7AC86;
  color: #272727;
}
@media only screen and (min-width: 1025px) {
  .btn--goldfill {
    color: #ffffff;
    background-color: #272727;
  }
}
.btn--goldfill:after {
  border: none;
}
@media only screen and (max-width: 1024px) {
  .btn--goldfill:after {
    background-image: url("../../../assets/images/btn-arrow-black.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 1025px) {
  .btn--goldfill:after {
    background-image: url("../../../assets/images/btn-arrow-white.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.btn--goldfill:hover {
  background-color: #B7AC86 !important;
  border: 1px solid #B7AC86;
  color: #272727;
}
@media only screen and (max-width: 1024px) {
  .btn--goldfill:hover:after {
    background-image: url("../../../assets/images/btn-arrow-white.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 1025px) {
  .btn--goldfill:hover:after {
    background-image: url("../../../assets/images/btn-arrow-black.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media only screen and (max-width: 1024px) {
  .btn--goldfill.mobile-white {
    background-color: transparent;
    color: #272727;
    transition: 0.5s ease-in-out;
    border: 1px solid #B7AC86;
  }
  .btn--goldfill.mobile-white:hover {
    background-color: #B7AC86;
    color: #272727;
  }
  .btn--goldfill.mobile-white:after {
    background-image: url("../../../assets/images/btn-arrow-black.svg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1025px) {
  .btn--goldfill.mobile-white:after {
    top: 50%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 1025px) and (max-width: 1600px) {
  .btn--goldfill.mobile-white:after {
    top: 50%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 600px) and (max-width: 1025px) {
  .btn--goldfill.mobile-white:after {
    top: 50%;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 600px) {
  .btn--goldfill.mobile-white:after {
    top: 50%;
  }
}
.btn--heading {
  background-color: #272727;
  color: #ffffff;
  transition: 0.5s ease-in-out;
  border: 1px solid #272727;
}
.btn--heading:hover {
  background-color: #B7AC86;
  color: #ffffff;
  border: 1px solid #272727;
}
.btn--heading:after {
  background-image: url("../../../assets/images/btn-arrow-white.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .btn--heading:after {
    top: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn--heading:after {
    top: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn--heading:after {
    top: 50%;
  }
}
@media (max-width: 600px) {
  .btn--heading:after {
    top: 50%;
  }
}
.btn--download {
  background-color: transparent;
  color: #272727;
  text-align: left;
  transition: 0.5s ease-in-out;
  border: 1px solid #B7AC86;
  min-width: 180px;
}
@media only screen and (min-width: 1025px) {
  .btn--download {
    min-width: 9.375vw;
  }
}
.btn--download:hover {
  background-color: #B7AC86;
  color: #272727;
}
.btn--download:after {
  background-image: url("../../../assets/images/btn-down-arrow.svg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .btn--download:after {
    height: 0.7291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn--download:after {
    height: 0.7291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn--download:after {
    height: 14px;
  }
}
@media (max-width: 600px) {
  .btn--download:after {
    height: 14px;
  }
}
@media (min-width: 1025px) {
  .btn--download:after {
    width: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn--download:after {
    width: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn--download:after {
    width: 10px;
  }
}
@media (max-width: 600px) {
  .btn--download:after {
    width: 10px;
  }
}
@media (min-width: 1025px) {
  .btn--download:after {
    top: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .btn--download:after {
    top: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .btn--download:after {
    top: 50%;
  }
}
@media (max-width: 600px) {
  .btn--download:after {
    top: 50%;
  }
}
.btn--reset {
  background-color: transparent;
  color: #494949;
  text-align: center;
  transition: 0.3s ease-in-out;
  border: 1px solid #494949;
  padding: 10px 30px;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1.2px;
  border-radius: 20px;
  font-weight: 400;
  min-width: auto;
  text-transform: uppercase;
}
.btn--reset:after {
  display: none;
}
.btn--reset:hover {
  background-color: #494949;
  color: #ffffff;
  border-color: #494949;
}
@media only screen and (max-width: 767px) {
  .btn--reset {
    min-width: auto !important;
    padding: 8px 20px;
    font-size: 11px;
  }
}

.emeslider-wrapper {
  position: relative;
}
.emeslider-wrapper .eme-slider-wrap-full-screen,
.emeslider-wrapper #eme-slider-v2,
.emeslider-wrapper img {
  height: 100vh;
}

.residence-card {
  position: relative;
}
.residence-card .card-image {
  position: relative;
}
.residence-card .card-image:after {
  position: absolute;
  display: block;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
}
@media (min-width: 1025px) {
  .residence-card .card-image:after {
    bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .card-image:after {
    bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .card-image:after {
    bottom: 0;
  }
}
@media (max-width: 600px) {
  .residence-card .card-image:after {
    bottom: 0;
  }
}
@media (min-width: 1025px) {
  .residence-card .card-image:after {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .card-image:after {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .card-image:after {
    left: 0;
  }
}
@media (max-width: 600px) {
  .residence-card .card-image:after {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .residence-card .card-image:after {
    height: 23.9583333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .card-image:after {
    height: 23.9583333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .card-image:after {
    height: 350;
  }
}
@media (max-width: 600px) {
  .residence-card .card-image:after {
    height: 0;
  }
}
@media (min-width: 1025px) {
  .residence-card .card-image:after {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .card-image:after {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .card-image:after {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .residence-card .card-image:after {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .residence-card .card-image img {
    height: 31.7708333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .card-image img {
    height: 31.7708333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .card-image img {
    height: 420px;
  }
}
@media (max-width: 600px) {
  .residence-card .card-image img {
    height: 280px;
  }
}
.residence-card .card-image .card-date,
.residence-card .card-image .card-title {
  position: relative;
}
.residence-card .card-image__visible {
  position: absolute;
  z-index: 9;
}
@media (min-width: 1025px) {
  .residence-card .card-image__visible {
    bottom: 1.8229166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .card-image__visible {
    bottom: 1.8229166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .card-image__visible {
    bottom: 0;
  }
}
@media (max-width: 600px) {
  .residence-card .card-image__visible {
    bottom: 0;
  }
}
@media (min-width: 1025px) {
  .residence-card .card-image__visible {
    left: 2.34375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .card-image__visible {
    left: 2.34375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .card-image__visible {
    left: 0;
  }
}
@media (max-width: 600px) {
  .residence-card .card-image__visible {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .residence-card .card-image__visible {
    right: 2.34375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .card-image__visible {
    right: 2.34375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .card-image__visible {
    right: 0;
  }
}
@media (max-width: 600px) {
  .residence-card .card-image__visible {
    right: 0;
  }
}
@media (min-width: 1025px) {
  .residence-card .hover-box {
    padding-left: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box {
    padding-left: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .residence-card .hover-box {
    padding-left: 0;
  }
}
@media (min-width: 1025px) {
  .residence-card .hover-box {
    padding-right: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box {
    padding-right: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box {
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .residence-card .hover-box {
    padding-right: 0;
  }
}
@media (min-width: 1025px) {
  .residence-card .hover-box {
    padding-top: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box {
    padding-top: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box {
    padding-top: 30px;
  }
}
@media (max-width: 600px) {
  .residence-card .hover-box {
    padding-top: 25px;
  }
}
@media (min-width: 1025px) {
  .residence-card .hover-box {
    padding-bottom: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box {
    padding-bottom: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box {
    padding-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .residence-card .hover-box {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .residence-card .hover-box {
    background-color: transparent;
  }
}
@media only screen and (min-width: 1025px) {
  .residence-card .hover-box {
    display: flex;
    flex-direction: column;
    position: absolute;
    transform: translateY(0);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: -1;
    cursor: default;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .residence-card .hover-box {
    top: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box {
    top: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box {
    top: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .residence-card .hover-box {
    top: 0;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .residence-card .hover-box {
    left: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box {
    left: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box {
    left: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .residence-card .hover-box {
    left: 0;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .residence-card .hover-box {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .residence-card .hover-box {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .residence-card .hover-box {
    height: 100%;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box {
    height: 100%;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box {
    height: 100%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .residence-card .hover-box {
    height: 100%;
  }
}
.residence-card .hover-box .hover-box-content {
  flex-grow: 1;
}
.residence-card .hover-box .hover-title {
  color: #ffffff;
}
@media only screen and (min-width: 1025px) {
  .residence-card .hover-box .hover-title {
    color: #272727;
  }
}
.residence-card .hover-box .hover-content {
  color: #ffffff;
}
@media (min-width: 1025px) {
  .residence-card .hover-box .hover-content {
    padding-left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box .hover-content {
    padding-left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box .hover-content {
    padding-left: 10px;
  }
}
@media (max-width: 600px) {
  .residence-card .hover-box .hover-content {
    padding-left: 10px;
  }
}
@media (min-width: 1025px) {
  .residence-card .hover-box .hover-content {
    padding-right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box .hover-content {
    padding-right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box .hover-content {
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .residence-card .hover-box .hover-content {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .residence-card .hover-box .hover-content {
    height: 130px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1025px) {
  .residence-card .hover-box .hover-content {
    color: #272727 !important;
  }
}
@media (min-width: 1025px) {
  .residence-card .hover-box .more-details {
    padding-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card .hover-box .more-details {
    padding-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card .hover-box .more-details {
    padding-top: 30px;
  }
}
@media (max-width: 600px) {
  .residence-card .hover-box .more-details {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 1025px) {
  .residence-card:hover .hover-box {
    transform: translateY(0);
    opacity: 1;
    z-index: 99999;
  }
}
@media (min-width: 1025px) {
  .residence-card--short .card-image img {
    height: 22.96875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card--short .card-image img {
    height: 22.96875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card--short .card-image img {
    height: 400px;
  }
}
@media (max-width: 600px) {
  .residence-card--short .card-image img {
    height: 280px;
  }
}
@media (min-width: 1025px) {
  .residence-card--short .hover-title {
    height: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card--short .hover-title {
    height: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card--short .hover-title {
    height: 100px;
  }
}
@media (max-width: 600px) {
  .residence-card--short .hover-title {
    height: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .residence-card--short .hover-title {
    color: #272727 !important;
  }
}
@media (min-width: 1025px) {
  .residence-card--short .more-details {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-card--short .more-details {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-card--short .more-details {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .residence-card--short .more-details {
    margin-top: 0;
  }
}

.projects-card {
  position: relative;
}
@media (min-width: 1025px) {
  .projects-card {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .projects-card {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .projects-card {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .projects-card {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .projects-card {
    flex-direction: column;
    flex-grow: 1;
  }
}
.projects-card .card-image {
  position: relative;
  overflow: hidden;
  z-index: 9;
}
@media only screen and (max-width: 1024px) {
  .projects-card .card-image {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 1025px) {
  .projects-card .card-image:after {
    position: absolute;
    display: block;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .projects-card .card-image:after {
    bottom: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .projects-card .card-image:after {
    bottom: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .projects-card .card-image:after {
    bottom: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .projects-card .card-image:after {
    bottom: 0;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .projects-card .card-image:after {
    left: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .projects-card .card-image:after {
    left: 0vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .projects-card .card-image:after {
    left: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .projects-card .card-image:after {
    left: 0;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .projects-card .card-image:after {
    height: 11.6666666667vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .projects-card .card-image:after {
    height: 11.6666666667vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .projects-card .card-image:after {
    height: 150px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .projects-card .card-image:after {
    height: 0;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .projects-card .card-image:after {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .projects-card .card-image:after {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .projects-card .card-image:after {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .projects-card .card-image:after {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .projects-card .card-image:hover:after {
    height: 100%;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .projects-card .card-image:hover:after {
    height: 100%;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .projects-card .card-image:hover:after {
    height: 100%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .projects-card .card-image:hover:after {
    height: 0;
  }
}
.projects-card .card-image img {
  object-fit: cover;
}
@media (min-width: 1025px) {
  .projects-card .card-image img {
    height: 28.3854166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .projects-card .card-image img {
    height: 28.3854166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .projects-card .card-image img {
    height: 384px;
  }
}
@media (max-width: 600px) {
  .projects-card .card-image img {
    height: 100%;
  }
}
.projects-card .card-image .card-title,
.projects-card .card-image .card-sub-title {
  color: #494949;
}
@media only screen and (min-width: 1025px) {
  .projects-card .card-image .card-title,
  .projects-card .card-image .card-sub-title {
    color: #ffffff;
  }
}
.projects-card .card-image .card-description {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .projects-card .card-image .card-description {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .projects-card .card-image .card-description {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .projects-card .card-image .card-description {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .projects-card .card-image .card-description {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .projects-card .card-image .card-description {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .projects-card .card-image .card-description {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .projects-card .card-image .card-description {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .projects-card .card-image .card-description {
    margin-top: 25px;
  }
}
@media (min-width: 1025px) {
  .projects-card .card-image .card-description {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .projects-card .card-image .card-description {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .projects-card .card-image .card-description {
    padding-left: 30px;
  }
}
@media (max-width: 600px) {
  .projects-card .card-image .card-description {
    padding-left: 25px;
  }
}
@media (min-width: 1025px) {
  .projects-card .card-image .card-description {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .projects-card .card-image .card-description {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .projects-card .card-image .card-description {
    padding-right: 30px;
  }
}
@media (max-width: 600px) {
  .projects-card .card-image .card-description {
    padding-right: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .projects-card .card-image .card-description {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 1025px) {
  .projects-card .card-image .card-description {
    position: absolute;
    bottom: 0vw;
    left: 0vw;
    right: 0vw;
    z-index: 9;
  }
}
.projects-card .card-image .card-description .card-description__visible {
  flex-grow: 1;
  transform: translateY(0);
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 1024px) {
  .projects-card .card-image .card-description .card-description__visible {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 1025px) {
  .projects-card .card-image .card-description .card-description__visible {
    transform: translateY(4.1666666667vw);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .projects-card .card-image .card-description .card-description__visible .card-title {
    min-height: 90px;
  }
}
.projects-card .card-image .card-description .btn-more-details {
  padding-bottom: 40px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s ease-in-out;
}
@media only screen and (min-width: 1025px) {
  .projects-card .card-image .card-description .btn-more-details {
    opacity: 0;
    transform: translateY(0.5208333333vw);
  }
}
.projects-card .card-image:hover .btn-more-details {
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s ease-in-out;
}
.projects-card .card-image:hover .card-description__visible {
  transform: translateY(0px);
  transition: 0.5s ease-in-out;
}

.mini-gallery-section {
  position: relative;
}
.mini-gallery-section__title {
  position: relative;
}
@media only screen and (min-width: 1025px) {
  .mini-gallery-section__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1025px) {
  .mini-gallery-section__title .view-all {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    top: 0vw;
    bottom: 0vw;
    right: 0vw;
    padding-top: 0vw;
  }
}
.mini-gallery-section__centered-title .center-heading {
  margin: 0 auto;
}
.mini-gallery-section .mini-gallery {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mini-gallery-section .mini-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1025px) {
  .mini-gallery-section .mini-gallery {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-items: center;
  }
}
.mini-gallery-section .mini-gallery .item {
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item {
    margin-top: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .mini-gallery-section .mini-gallery .item {
    margin-top: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .mini-gallery-section .mini-gallery .item {
    margin-top: 5px;
  }
}
@media (max-width: 600px) {
  .mini-gallery-section .mini-gallery .item {
    margin-top: 5px;
  }
}
@media (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item {
    margin-bottom: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .mini-gallery-section .mini-gallery .item {
    margin-bottom: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .mini-gallery-section .mini-gallery .item {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .mini-gallery-section .mini-gallery .item {
    margin-bottom: 5px;
  }
}
@media (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item {
    margin-left: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .mini-gallery-section .mini-gallery .item {
    margin-left: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .mini-gallery-section .mini-gallery .item {
    margin-left: 5px;
  }
}
@media (max-width: 600px) {
  .mini-gallery-section .mini-gallery .item {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item {
    margin-right: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .mini-gallery-section .mini-gallery .item {
    margin-right: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .mini-gallery-section .mini-gallery .item {
    margin-right: 5px;
  }
}
@media (max-width: 600px) {
  .mini-gallery-section .mini-gallery .item {
    margin-right: 0;
  }
}
.mini-gallery-section .mini-gallery .item img {
  object-fit: cover;
}
@media (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item img {
    height: 21.3541666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .mini-gallery-section .mini-gallery .item img {
    height: 21.3541666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .mini-gallery-section .mini-gallery .item img {
    height: 280px;
  }
}
@media (max-width: 600px) {
  .mini-gallery-section .mini-gallery .item img {
    height: 280px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mini-gallery-section .mini-gallery .item--block1 {
    width: 48%;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item--block1 {
    grid-area: 1/1/3/3;
  }
}
@media (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item--block1 img {
    height: 43.2291666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .mini-gallery-section .mini-gallery .item--block1 img {
    height: 43.2291666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .mini-gallery-section .mini-gallery .item--block1 img {
    height: 280px;
  }
}
@media (max-width: 600px) {
  .mini-gallery-section .mini-gallery .item--block1 img {
    height: 280px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mini-gallery-section .mini-gallery .item--block2 {
    width: 48%;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item--block2 {
    grid-area: 1/3/2/5;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mini-gallery-section .mini-gallery .item--block3 {
    width: 48%;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item--block3 {
    grid-area: 1/5/2/8;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mini-gallery-section .mini-gallery .item--block4 {
    width: 48%;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item--block4 {
    grid-area: 2/3/3/6;
  }
}
@media only screen and (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item--block5 {
    grid-area: 2/6/3/8;
  }
}
.mini-gallery-section .mini-gallery .item .video-wrapper {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .mini-gallery-section .mini-gallery .item .video-wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    padding-bottom: 162.6%;
  }
}
.mini-gallery-section .mini-gallery .item .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pr-header-two-column-intro {
  z-index: 99;
}
@media (min-width: 1025px) {
  .pr-header-two-column-intro .light-btn {
    padding-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-header-two-column-intro .light-btn {
    padding-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-header-two-column-intro .light-btn {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .pr-header-two-column-intro .light-btn {
    padding-top: 30px;
  }
}
@media (min-width: 1025px) {
  .pr-header-two-column-intro .light-btn {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-header-two-column-intro .light-btn {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-header-two-column-intro .light-btn {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .pr-header-two-column-intro .light-btn {
    padding-left: 0;
  }
}
@media (min-width: 1025px) {
  .pr-header-two-column-intro .subtitle-col {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-header-two-column-intro .subtitle-col {
    padding-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-header-two-column-intro .subtitle-col {
    padding-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .pr-header-two-column-intro .subtitle-col {
    padding-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  .pr-header-two-column-intro--highlight {
    margin-bottom: -5.2083333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-header-two-column-intro--highlight {
    margin-bottom: -5.2083333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-header-two-column-intro--highlight {
    margin-bottom: -50px;
  }
}
@media (max-width: 600px) {
  .pr-header-two-column-intro--highlight {
    margin-bottom: -40px;
  }
}
@media (min-width: 1025px) {
  .pr-header-two-column-intro.no-highlight {
    margin-bottom: -15.625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-header-two-column-intro.no-highlight {
    margin-bottom: -15.625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-header-two-column-intro.no-highlight {
    margin-bottom: -150px;
  }
}
@media (max-width: 600px) {
  .pr-header-two-column-intro.no-highlight {
    margin-bottom: -80px;
  }
}
.pr-header-two-column-intro--withbg {
  position: relative;
}
.pr-header-two-column-intro--withbg .has-bg {
  position: absolute;
  display: block;
  content: "";
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 1025px) {
  .pr-header-two-column-intro--withbg .has-bg {
    bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-header-two-column-intro--withbg .has-bg {
    bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-header-two-column-intro--withbg .has-bg {
    bottom: 0;
  }
}
@media (max-width: 600px) {
  .pr-header-two-column-intro--withbg .has-bg {
    bottom: 0;
  }
}
@media (min-width: 1025px) {
  .pr-header-two-column-intro--withbg .has-bg {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-header-two-column-intro--withbg .has-bg {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-header-two-column-intro--withbg .has-bg {
    left: 0;
  }
}
@media (max-width: 600px) {
  .pr-header-two-column-intro--withbg .has-bg {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .pr-header-two-column-intro--withbg .has-bg {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-header-two-column-intro--withbg .has-bg {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-header-two-column-intro--withbg .has-bg {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .pr-header-two-column-intro--withbg .has-bg {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .pr-header-two-column-intro--withbg .has-bg {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-header-two-column-intro--withbg .has-bg {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-header-two-column-intro--withbg .has-bg {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .pr-header-two-column-intro--withbg .has-bg {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .pr-header-two-column-intro--withbg .has-bg img {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .pr-header-two-column-intro--withbg .has-bg img {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .pr-header-two-column-intro--withbg .has-bg img {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .pr-header-two-column-intro--withbg .has-bg img {
    height: 100%;
  }
}

.director-card {
  position: relative;
}
@media (min-width: 1025px) {
  .director-card .director-image img {
    height: 20.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .director-card .director-image img {
    height: 20.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .director-card .director-image img {
    height: auto;
  }
}
@media (max-width: 600px) {
  .director-card .director-image img {
    height: auto;
  }
}
@media (min-width: 1025px) {
  .director-card--small .director-image {
    width: 21.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .director-card--small .director-image {
    width: 21.875vw;
  }
}
@media (min-width: 1025px) {
  .director-card--small .director-image {
    margin-bottom: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .director-card--small .director-image {
    margin-bottom: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .director-card--small .director-image {
    margin-bottom: 25px;
  }
}
@media (max-width: 600px) {
  .director-card--small .director-image {
    margin-bottom: 25px;
  }
}
@media (min-width: 1025px) {
  .director-card--small .director-image img {
    height: 21.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .director-card--small .director-image img {
    height: 21.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .director-card--small .director-image img {
    height: auto;
  }
}
@media (max-width: 600px) {
  .director-card--small .director-image img {
    height: auto;
  }
}

.achievement-card {
  position: relative;
}
.achievement-card .image-wrapper img {
  object-position: top;
}
@media (min-width: 1025px) {
  .achievement-card .image-wrapper img {
    height: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .achievement-card .image-wrapper img {
    height: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .achievement-card .image-wrapper img {
    height: auto;
  }
}
@media (max-width: 600px) {
  .achievement-card .image-wrapper img {
    height: auto;
  }
}

.tabs {
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .tabs {
    justify-content: space-around !important;
  }
}
.tabs .tab {
  color: #ffffff;
  border-left: 1px solid #ffffff;
}
@media only screen and (max-width: 767px) {
  .tabs .tab {
    text-align: center;
    border: 1px solid #181D24 !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 1025px) {
  .tabs .tab {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (min-width: 1025px) and (max-width: 1600px) {
  .tabs .tab {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (min-width: 600px) and (max-width: 1025px) {
  .tabs .tab {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (max-width: 600px) {
  .tabs .tab {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tabs .tab {
    text-align: center;
    border: 1px solid #181D24 !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (min-width: 1025px) {
  .tabs .tab {
    width: 48%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (min-width: 1025px) and (max-width: 1600px) {
  .tabs .tab {
    width: 48%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (min-width: 600px) and (max-width: 1025px) {
  .tabs .tab {
    width: 48%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (max-width: 600px) {
  .tabs .tab {
    width: 48%;
  }
}
@media only screen and (max-width: 1024px) {
  .tabs .tab:hover:before {
    display: none !important;
  }
}
.tabs .tab:first-child {
  border-left: none;
}
.tabs .tab.active {
  color: #B7AC86;
}
@media only screen and (max-width: 767px) {
  .tabs .tab.active {
    border: 1px solid #B7AC86 !important;
  }
  .tabs .tab.active:before {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .tabs .tab.active {
    border: 1px solid #B7AC86 !important;
  }
  .tabs .tab.active:before {
    display: none !important;
  }
}
.tabs--inverse .tab {
  position: relative;
  color: #272727;
  border-left: 1px solid #272727;
}
@media (min-width: 1025px) {
  .tabs--inverse .tab {
    margin-top: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .tabs--inverse .tab {
    margin-top: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .tabs--inverse .tab {
    margin-top: 5px;
  }
}
@media (max-width: 600px) {
  .tabs--inverse .tab {
    margin-top: 5px;
  }
}
@media (min-width: 1025px) {
  .tabs--inverse .tab {
    margin-bottom: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .tabs--inverse .tab {
    margin-bottom: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .tabs--inverse .tab {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .tabs--inverse .tab {
    margin-bottom: 5px;
  }
}
.tabs--inverse .tab.active, .tabs--inverse .tab:hover {
  color: #B7AC86;
}
.tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
  position: absolute;
  display: block;
  content: "";
  margin: 0 auto;
  background-color: #B7AC86;
}
@media (min-width: 1025px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    width: 80%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    width: 80%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    width: 80%;
  }
}
@media (min-width: 1025px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    height: 0.0520833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    height: 0.0520833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    height: 1px;
  }
}
@media (max-width: 600px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    height: 1px;
  }
}
@media (min-width: 1025px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    bottom: 0;
  }
}
@media (max-width: 600px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    bottom: 0;
  }
}
@media (min-width: 1025px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    left: 0;
  }
}
@media (max-width: 600px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    left: 0;
  }
}
@media (min-width: 1025px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    right: 0;
  }
}
@media (max-width: 600px) {
  .tabs--inverse .tab.active::before, .tabs--inverse .tab:hover::before {
    right: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    border-top: solid 0.5208333333vw #B7AC86;
    border-left: solid 0.5208333333vw transparent;
    border-right: solid 0.5208333333vw transparent;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    bottom: -0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    bottom: -0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    bottom: -8px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    bottom: -8px;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    width: 0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    width: 0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    width: 8px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    width: 8px;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    height: 0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    height: 0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    height: 8px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .tabs--inverse .tab.active:after, .tabs--inverse .tab:hover:after {
    height: 8px;
  }
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
@media (min-width: 1025px) {
  .tab-content .image-wrap img {
    height: 31.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .tab-content .image-wrap img {
    height: 31.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .tab-content .image-wrap img {
    height: 400px;
  }
}
@media (max-width: 600px) {
  .tab-content .image-wrap img {
    height: 300px;
  }
}

.main-intro-light {
  position: relative;
}
.main-intro-light__content {
  margin: 0 auto;
}
.main-intro-light__content.medium-wrapper {
  overflow-x: auto;
}
@media (min-width: 1025px) {
  .main-intro-light__content.medium-wrapper {
    max-width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .main-intro-light__content.medium-wrapper {
    max-width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .main-intro-light__content.medium-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .main-intro-light__content.medium-wrapper {
    max-width: 100%;
  }
}
.main-intro-light__quick-contact .intro-link {
  color: #272727;
  transition: 0.5s ease-in-out;
}
.main-intro-light__quick-contact .intro-link:hover {
  color: #B7AC86;
}
.main-intro-light__sitemap {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .main-intro-light__sitemap .sitemap li {
    margin-top: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .main-intro-light__sitemap .sitemap li {
    margin-top: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .main-intro-light__sitemap .sitemap li {
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .main-intro-light__sitemap .sitemap li {
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  .main-intro-light__sitemap .sitemap li {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .main-intro-light__sitemap .sitemap li {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .main-intro-light__sitemap .sitemap li {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .main-intro-light__sitemap .sitemap li {
    margin-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .main-intro-light__sitemap .sitemap li:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .main-intro-light__sitemap .sitemap li:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .main-intro-light__sitemap .sitemap li:first-child {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .main-intro-light__sitemap .sitemap li:first-child {
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .main-intro-light__sitemap .sitemap li:last-child {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .main-intro-light__sitemap .sitemap li:last-child {
    margin-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .main-intro-light__sitemap .sitemap li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .main-intro-light__sitemap .sitemap li:last-child {
    margin-bottom: 0;
  }
}
.main-intro-light .not-fount-img {
  width: auto;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .main-intro-light .not-fount-img {
    height: 20.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .main-intro-light .not-fount-img {
    height: 20.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .main-intro-light .not-fount-img {
    height: 300px;
  }
}
@media (max-width: 600px) {
  .main-intro-light .not-fount-img {
    height: 200px;
  }
}

.media-center-list .media-center-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.media-center-list .media-center-item .media-description,
.media-center-list .media-center-item .content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.media-center-list.three-item-grid .media-center-item .medai-image img {
  object-fit: cover;
}
@media (min-width: 1025px) {
  .media-center-list.three-item-grid .media-center-item .medai-image img {
    height: 17.4479166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .media-center-list.three-item-grid .media-center-item .medai-image img {
    height: 17.4479166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .media-center-list.three-item-grid .media-center-item .medai-image img {
    height: 275px;
  }
}
@media (max-width: 600px) {
  .media-center-list.three-item-grid .media-center-item .medai-image img {
    height: auto;
  }
}

.residences-filter__content {
  margin: 0 auto;
}
.residences-filter .featured-image-wrapper {
  position: relative;
}
.residences-filter .featured-image-wrapper .featured-tags-wrapper {
  position: absolute;
  display: block;
  z-index: 999;
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper {
    top: 0.9375vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper {
    top: 0.9375vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper {
    top: 10px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper {
    top: 10px;
  }
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper {
    left: 0.6770833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper {
    left: 0.6770833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper {
    left: 3px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper {
    left: 3px;
  }
}
.residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
  text-transform: uppercase;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-right: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-right: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-right: 4px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-right: 4px;
  }
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-left: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-left: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-left: 4px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-left: 4px;
  }
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-top: 5px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-top: 5px;
  }
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    margin-bottom: 5px;
  }
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-left: 8px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-left: 8px;
  }
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-right: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-right: 8px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-right: 8px;
  }
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-top: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-top: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-top: 6px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-top: 6px;
  }
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-bottom: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-bottom: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-bottom: 6px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    padding-bottom: 6px;
  }
}
@media (min-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    border-radius: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    border-radius: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    border-radius: 16px;
  }
}
@media (max-width: 600px) {
  .residences-filter .featured-image-wrapper .featured-tags-wrapper .tag {
    border-radius: 16px;
  }
}
.residences-filter .featured-image-wrapper .featured-tags-wrapper .tag:hover {
  opacity: 0.7;
}
.residences-filter__featured-item {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .residences-filter__featured-item {
    display: block;
  }
}
@media (min-width: 1025px) {
  .residences-filter__featured-item .featured-description-wrapper {
    padding-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__featured-item .featured-description-wrapper {
    padding-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__featured-item .featured-description-wrapper {
    padding-top: 40px;
  }
}
@media (max-width: 600px) {
  .residences-filter__featured-item .featured-description-wrapper {
    padding-top: 30px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__featured-item .featured-description-wrapper {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__featured-item .featured-description-wrapper {
    padding-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__featured-item .featured-description-wrapper {
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .residences-filter__featured-item .featured-description-wrapper {
    padding-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__featured-item .featured-description-wrapper .featured-description {
    padding-left: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__featured-item .featured-description-wrapper .featured-description {
    padding-left: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__featured-item .featured-description-wrapper .featured-description {
    padding-left: 30px;
  }
}
@media (max-width: 600px) {
  .residences-filter__featured-item .featured-description-wrapper .featured-description {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__featured-item .featured-description-wrapper .featured-description {
    padding-right: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__featured-item .featured-description-wrapper .featured-description {
    padding-right: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__featured-item .featured-description-wrapper .featured-description {
    padding-right: 30px;
  }
}
@media (max-width: 600px) {
  .residences-filter__featured-item .featured-description-wrapper .featured-description {
    padding-right: 20px;
  }
}
.residences-filter__options {
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 599px) {
  .residences-filter__options {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.residences-filter__options .filter-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1025px) {
  .residences-filter__options .filter-toggle {
    padding: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .filter-toggle {
    padding: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .filter-toggle {
    padding: 15px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .filter-toggle {
    padding: 15px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .filter-toggle {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .filter-toggle {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .filter-toggle {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .filter-toggle {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .filter-toggle {
    padding-right: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .filter-toggle {
    padding-right: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .filter-toggle {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .filter-toggle {
    padding-right: 20px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .filter-toggle {
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .filter-toggle {
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .filter-toggle {
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .filter-toggle {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1200px) {
  .residences-filter__options .filter-toggle {
    display: flex;
    width: 100%;
  }
}
.residences-filter__options .filter-toggle__text {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #272727;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 1025px) {
  .residences-filter__options .filter-toggle__text {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .filter-toggle__text {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .filter-toggle__text {
    font-size: 16px !important;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .filter-toggle__text {
    font-size: 16px !important;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .filter-toggle__text {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .filter-toggle__text {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .filter-toggle__text {
    line-height: 22px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .filter-toggle__text {
    line-height: 22px;
  }
}
.residences-filter__options .filter-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8a888;
  transition: transform 0.3s ease;
}
@media (min-width: 1025px) {
  .residences-filter__options .filter-toggle__icon svg {
    width: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .filter-toggle__icon svg {
    width: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .filter-toggle__icon svg {
    width: 20px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .filter-toggle__icon svg {
    width: 20px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .filter-toggle__icon svg {
    height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .filter-toggle__icon svg {
    height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .filter-toggle__icon svg {
    height: 20px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .filter-toggle__icon svg {
    height: 20px;
  }
}
.residences-filter__options .filter-toggle:hover {
  background-color: #ebebeb;
  border-color: #B7AC86;
}
.residences-filter__options .filter-toggle.is-open {
  background-color: #B7AC86;
  border-color: #B7AC86;
}
.residences-filter__options .filter-toggle.is-open .filter-toggle__text {
  color: #ffffff;
}
.residences-filter__options .filter-toggle.is-open .filter-toggle__icon {
  color: #ffffff;
  transform: rotate(180deg);
}
@media only screen and (max-width: 1200px) {
  .residences-filter__options .filter-panel {
    display: none;
  }
  .residences-filter__options .filter-panel.is-open {
    display: block;
    animation: slideDown 0.3s ease;
  }
}
@media only screen and (min-width: 1201px) {
  .residences-filter__options .filter-panel {
    display: block !important;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.residences-filter__options .category-filter .category-filter-item {
  position: relative;
  border: 1px solid #B7AC86;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
@media (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-right: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-right: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-right: 5px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-right: 5px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-left: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-left: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-left: 5px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-left: 5px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-top: 5px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-top: 5px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item {
    margin-bottom: 5px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-left: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-left: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-left: 15px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-left: 15px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-right: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-right: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-right: 15px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-top: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-top: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-top: 10px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-top: 10px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-bottom: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-bottom: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item {
    padding-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    width: auto;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item {
    width: auto;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item {
    width: 48%;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item {
    width: 100%;
  }
}
.residences-filter__options .category-filter .category-filter-item.active, .residences-filter__options .category-filter .category-filter-item:hover {
  background-color: #B7AC86;
}
@media only screen and (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    position: absolute;
    display: block;
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
    border-top: solid 0.5208333333vw #B7AC86;
    border-left: solid 0.5208333333vw transparent;
    border-right: solid 0.5208333333vw transparent;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    bottom: -0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    bottom: -0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    bottom: -8px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    bottom: -8px;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    width: 0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    width: 0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    width: 8px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    width: 8px;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    height: 0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    height: 0.5208333333vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    height: 8px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .residences-filter__options .category-filter .category-filter-item.active:after, .residences-filter__options .category-filter .category-filter-item:hover:after {
    height: 8px;
  }
}
.residences-filter__options .category-filter .category-filter-item .category-filter-text {
  text-transform: uppercase;
}
@media only screen and (min-width: 600px) {
  .residences-filter__options .option-filter .option-form {
    justify-content: space-around;
  }
}
.residences-filter__options .option-filter .option-form .form-group {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group {
    padding: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group {
    padding: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group {
    padding: 0;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group {
    width: 30%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group {
    width: 30%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group {
    width: 100%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .residences-filter__options .option-filter .option-form .form-group {
    border-bottom: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
  }
}
@media only screen and (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group {
    border-left: 1px solid #ffffff;
    border-bottom: none;
  }
}
.residences-filter__options .option-filter .option-form .form-group:first-child {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group:first-child {
    width: 10%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group:first-child {
    width: 10%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group:first-child {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group:first-child {
    width: 100%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .residences-filter__options .option-filter .option-form .form-group:first-child {
    border-left: none;
  }
}
@media only screen and (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group:first-child {
    border-left: none;
    border-bottom: none;
  }
}
.residences-filter__options .option-filter .option-form .form-group:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 1024px) {
  .residences-filter__options .option-filter .option-form .form-group:last-child {
    border-left: none;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner {
    margin-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner {
    margin-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner {
    margin-left: 15px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner {
    margin-left: 15px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner {
    margin-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner {
    margin-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner {
    margin-right: 15px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner {
    margin-right: 15px;
  }
}
.residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-top: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-top: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-top: 10px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-top: 10px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-bottom: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-bottom: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-bottom: 10px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-left: 28px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkbox-inline {
    padding-left: 28px;
  }
}
.residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
  background-color: #181D24;
  transform: translateY(-50%);
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    height: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    height: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    height: 18px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    height: 18px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    width: 1.3020833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    width: 1.3020833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    width: 18px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    width: 18px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    margin-right: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    margin-right: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    margin-right: 10px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    top: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    top: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    top: 50%;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    top: 50%;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    border-radius: 0.1041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    border-radius: 0.1041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    border-radius: 2px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark {
    border-radius: 2px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    left: 0.4166666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    left: 0.4166666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    left: 6px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    left: 6px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    top: 0.1041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    top: 0.1041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    top: 3px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    top: 3px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    height: 0.78125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    height: 0.78125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    height: 8px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    height: 8px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    width: 0.3645833333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    width: 0.3645833333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    width: 3px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .option-filter .option-form .form-group .option-block-inner .checkmark:after {
    width: 3px;
  }
}
.residences-filter__options .option-filter .option-form .form-group.active {
  background-color: #B7AC86;
  color: #272727 !important;
}
.residences-filter__options .search-filter .search-form .form-group {
  position: relative;
}
@media (min-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group {
    padding: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .search-filter .search-form .form-group {
    padding: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .search-filter .search-form .form-group {
    padding: 0;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .search-filter .search-form .form-group {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .search-filter .search-form .form-group {
    width: 100%;
  }
}
.residences-filter__options .search-filter .search-form .form-group:after {
  position: absolute;
  display: block;
  content: "";
  transform: translateY(-50%);
  background-image: url("../../../assets/images/search.svg");
  background-position: center center;
  background-size: cover;
  pointer-events: all;
  z-index: 999;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    right: 20px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    right: 20px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    top: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    top: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    top: 50%;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    top: 50%;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    height: 1.3541666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    height: 1.3541666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    height: 20px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    height: 20px;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    width: 1.3541666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    width: 1.3541666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    width: 20px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .search-filter .search-form .form-group:after {
    width: 20px;
  }
}
.residences-filter__options .search-filter .cont_filter_search,
.residences-filter__options .search-filter input {
  font-family: "Jost", sans-serif;
  font-weight: 400 !important;
  color: #272727;
}
@media (min-width: 1025px) {
  .residences-filter__options .search-filter .cont_filter_search,
  .residences-filter__options .search-filter input {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .search-filter .cont_filter_search,
  .residences-filter__options .search-filter input {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .search-filter .cont_filter_search,
  .residences-filter__options .search-filter input {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .search-filter .cont_filter_search,
  .residences-filter__options .search-filter input {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .residences-filter__options .search-filter .cont_filter_search,
  .residences-filter__options .search-filter input {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residences-filter__options .search-filter .cont_filter_search,
  .residences-filter__options .search-filter input {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residences-filter__options .search-filter .cont_filter_search,
  .residences-filter__options .search-filter input {
    line-height: 20px;
  }
}
@media (max-width: 600px) {
  .residences-filter__options .search-filter .cont_filter_search,
  .residences-filter__options .search-filter input {
    line-height: 20px;
  }
}
.residences-filter__options .search-filter input::placeholder,
.residences-filter__options .search-filter input::-webkit-input-placeholder,
.residences-filter__options .search-filter input::-moz-placeholder,
.residences-filter__options .search-filter input:-ms-input-placeholder,
.residences-filter__options .search-filter input::-ms-input-placeholder {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #272727;
}
@media only screen and (min-width: 1025px) {
  .residences-filter__options .search-filter input::placeholder,
  .residences-filter__options .search-filter input::-webkit-input-placeholder,
  .residences-filter__options .search-filter input::-moz-placeholder,
  .residences-filter__options .search-filter input:-ms-input-placeholder,
  .residences-filter__options .search-filter input::-ms-input-placeholder {
    font-size: 0.8333333333vw;
    line-height: 1.25vw;
  }
}

.residence-list .residence-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (min-width: 1025px) {
  .residence-list .residence-item {
    padding-bottom: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .residence-list .residence-item {
    padding-bottom: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .residence-list .residence-item {
    padding-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .residence-list .residence-item {
    padding-bottom: 50px;
  }
}
.residence-list .residence-item .featured-description,
.residence-list .residence-item .content-wrapper,
.residence-list .residence-item .item-content,
.residence-list .residence-item .featured-description-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.advanced-filter {
  margin-top: 20px;
}
.advanced-filter__form {
  width: 100%;
}
@media only screen and (min-width: 1025px) {
  .advanced-filter__form.dfb-form {
    gap: 1.0416666667vw;
  }
}
@media only screen and (max-width: 1024px) {
  .advanced-filter__form.dfb-form {
    gap: 15px;
  }
}
.advanced-filter__form.dfb-form .form-group {
  padding: 0;
}
.advanced-filter__row {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1025px) {
  .advanced-filter__row {
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__row {
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__row {
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .advanced-filter__row {
    margin-bottom: 15px;
  }
}
@media (min-width: 1025px) {
  .advanced-filter__row {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__row {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__row {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .advanced-filter__row {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) {
  .advanced-filter__row {
    gap: 1.0416666667vw;
  }
}
@media only screen and (max-width: 1024px) {
  .advanced-filter__row {
    gap: 15px;
  }
}
.advanced-filter__field {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 0;
}
@media only screen and (max-width: 1024px) {
  .advanced-filter__field {
    flex: 1 1 calc(50% - 8px);
  }
}
@media only screen and (max-width: 599px) {
  .advanced-filter__field {
    flex: 1 1 100%;
  }
}
.advanced-filter__field--budget {
  flex: 1 1 calc(33.333% - 14px);
}
@media only screen and (max-width: 1024px) {
  .advanced-filter__field--budget {
    flex: 1 1 calc(50% - 8px);
  }
}
@media only screen and (max-width: 599px) {
  .advanced-filter__field--budget {
    flex: 1 1 100%;
  }
}
.advanced-filter__field--keywords {
  flex: 1 1 calc(66.666% - 7px);
}
@media only screen and (max-width: 1024px) {
  .advanced-filter__field--keywords {
    flex: 1 1 calc(50% - 8px);
  }
}
@media only screen and (max-width: 599px) {
  .advanced-filter__field--keywords {
    flex: 1 1 100%;
  }
}
.advanced-filter__label {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #272727;
}
@media (min-width: 1025px) {
  .advanced-filter__label {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__label {
    margin-bottom: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__label {
    margin-bottom: 8px;
  }
}
@media (max-width: 600px) {
  .advanced-filter__label {
    margin-bottom: 8px;
  }
}
@media (min-width: 1025px) {
  .advanced-filter__label {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__label {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__label {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .advanced-filter__label {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .advanced-filter__label {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__label {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__label {
    line-height: 22px;
  }
}
@media (max-width: 600px) {
  .advanced-filter__label {
    line-height: 20px;
  }
}
.advanced-filter__select.form-control, .advanced-filter__input.form-control {
  background-color: #f5f5f5 !important;
  border: 1px solid #e8e8e8 !important;
  color: #272727 !important;
}
@media (min-width: 1025px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    height: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    height: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    height: 45px;
  }
}
@media (max-width: 600px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    height: 45px;
  }
}
@media (min-width: 1025px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    padding-left: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    padding-left: 15px;
  }
}
@media (max-width: 600px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    padding-left: 15px;
  }
}
@media (min-width: 1025px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    padding-right: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    padding-right: 15px;
  }
}
@media (max-width: 600px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    padding-right: 15px;
  }
}
@media (min-width: 1025px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    font-size: 14px !important;
  }
}
@media (min-width: 1025px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    line-height: 1.25vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    line-height: 1.25vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    line-height: 22px;
  }
}
@media (max-width: 600px) {
  .advanced-filter__select.form-control, .advanced-filter__input.form-control {
    line-height: 20px;
  }
}
.advanced-filter__select.form-control:focus, .advanced-filter__select.form-control:hover, .advanced-filter__input.form-control:focus, .advanced-filter__input.form-control:hover {
  border: 1px solid #B7AC86 !important;
  background-color: #ffffff !important;
}
.advanced-filter__select.form-control::placeholder, .advanced-filter__input.form-control::placeholder {
  color: #999999;
  opacity: 1;
}
.advanced-filter__select.form-control::-webkit-input-placeholder, .advanced-filter__input.form-control::-webkit-input-placeholder {
  color: #999999;
}
.advanced-filter__select.form-control::-moz-placeholder, .advanced-filter__input.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.advanced-filter__select.form-control:-ms-input-placeholder, .advanced-filter__input.form-control:-ms-input-placeholder {
  color: #999999;
}
.advanced-filter__select.form-control::-ms-input-placeholder, .advanced-filter__input.form-control::-ms-input-placeholder {
  color: #999999;
}
.advanced-filter__select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 20px) center !important;
  cursor: pointer;
}
@media only screen and (min-width: 1025px) {
  .advanced-filter__select.form-control {
    background-position: calc(100% - 1.0416666667vw) center !important;
    background-size: 0.625vw auto !important;
  }
}
.advanced-filter__select.form-control:invalid, .advanced-filter__select.form-control[value=""],
.advanced-filter__select.form-control option[value=""] {
  color: #999999 !important;
}
.advanced-filter__select.form-control option {
  color: #272727;
}
.advanced-filter__button-wrapper {
  width: 100%;
}
@media (min-width: 1025px) {
  .advanced-filter__button-wrapper {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__button-wrapper {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__button-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .advanced-filter__button-wrapper {
    margin-top: 0;
  }
}
.advanced-filter__button {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-align: center;
  background-color: #b8a888;
  color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1025px) {
  .advanced-filter__button {
    padding: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__button {
    padding: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__button {
    padding: 14px;
  }
}
@media (max-width: 600px) {
  .advanced-filter__button {
    padding: 12px;
  }
}
@media (min-width: 1025px) {
  .advanced-filter__button {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .advanced-filter__button {
    font-size: 0.8333333333vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .advanced-filter__button {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .advanced-filter__button {
    font-size: 14px !important;
  }
}
.advanced-filter__button:hover {
  background-color: rgb(164.9421052632, 144.6473684211, 104.0578947368);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.advanced-filter__button:active {
  transform: translateY(0);
}
.advanced-filter__button:after {
  display: none;
}

.res-mini-gallery {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .res-mini-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    grid-gap: 20px;
  }
}
@media only screen and (min-width: 1025px) {
  .res-mini-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
.res-mini-gallery .res-gal-item {
  position: relative;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item {
    margin-top: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item {
    margin-top: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item {
    margin-top: 5px;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item {
    margin-top: 5px;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item {
    margin-bottom: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item {
    margin-bottom: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item {
    margin-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item {
    margin-bottom: 5px;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item {
    margin-left: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item {
    margin-left: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item {
    margin-left: 5px;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item {
    margin-right: 0.2604166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item {
    margin-right: 0.2604166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item {
    margin-right: 5px;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item {
    margin-right: 0;
  }
}
.res-mini-gallery .res-gal-item .img-wrapper {
  position: relative;
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item .img-wrapper {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item .img-wrapper {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item .img-wrapper {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item .img-wrapper {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item img {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item img {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item img {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item img {
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .res-mini-gallery .res-gal-item--block1, .res-mini-gallery .res-gal-item--block2, .res-mini-gallery .res-gal-item--block3, .res-mini-gallery .res-gal-item--block4, .res-mini-gallery .res-gal-item--block5 {
    grid-area: auto;
  }
}
@media only screen and (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block1 {
    grid-area: 1/1/3/5;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block1 img {
    height: 28.8541666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item--block1 img {
    height: 28.8541666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item--block1 img {
    height: 228px;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item--block1 img {
    height: 175px;
  }
}
@media only screen and (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block2 {
    grid-area: 1/5/2/7;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block2 img {
    height: 14.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item--block2 img {
    height: 14.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item--block2 img {
    height: 228px;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item--block2 img {
    height: 175px;
  }
}
@media only screen and (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block3 {
    grid-area: 2/5/3/7;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block3 img {
    height: 14.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item--block3 img {
    height: 14.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item--block3 img {
    height: 228px;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item--block3 img {
    height: 175px;
  }
}
@media only screen and (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block4 {
    grid-area: 3/1/4/3;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block4 img {
    height: 14.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item--block4 img {
    height: 14.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item--block4 img {
    height: 228px;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item--block4 img {
    height: 175px;
  }
}
@media only screen and (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block5 {
    grid-area: 3/3/4/5;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block5 img {
    height: 14.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item--block5 img {
    height: 14.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item--block5 img {
    height: 228px;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item--block5 img {
    height: 175px;
  }
}
@media only screen and (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block6 {
    grid-area: 3/5/4/7;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item--block6 img {
    height: 14.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item--block6 img {
    height: 14.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item--block6 img {
    height: 228px;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item--block6 img {
    height: 175px;
  }
}
.res-mini-gallery .res-gal-item.last:after {
  position: absolute;
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.5);
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item.last:after {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item.last:after {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item.last:after {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item.last:after {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item.last:after {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item.last:after {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item.last:after {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item.last:after {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item.last:after {
    top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item.last:after {
    top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item.last:after {
    top: 0;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item.last:after {
    top: 0;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item.last:after {
    left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item.last:after {
    left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item.last:after {
    left: 0;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item.last:after {
    left: 0;
  }
}
.res-mini-gallery .res-gal-item.last .view-gallery {
  position: absolute;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  z-index: 99;
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    top: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    top: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    top: 50%;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    top: 50%;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    left: 50%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    left: 50%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    left: 50%;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    left: 50%;
  }
}
@media (min-width: 1025px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    right: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    right: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    right: 0;
  }
}
@media (max-width: 600px) {
  .res-mini-gallery .res-gal-item.last .view-gallery {
    right: 0;
  }
}

.annual-reports-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #F8F8F8;
  border-bottom: 3px solid #B7AC86;
}
@media (min-width: 1025px) {
  .annual-reports-card {
    padding-top: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card {
    padding-top: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card {
    padding-top: 40px;
  }
}
@media (max-width: 600px) {
  .annual-reports-card {
    padding-top: 30px;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card {
    padding-bottom: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card {
    padding-bottom: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card {
    padding-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .annual-reports-card {
    padding-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card {
    padding-left: 3.3854166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card {
    padding-left: 3.3854166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card {
    padding-left: 45px;
  }
}
@media (max-width: 600px) {
  .annual-reports-card {
    padding-left: 35px;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card {
    padding-right: 3.3854166667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card {
    padding-right: 3.3854166667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card {
    padding-right: 45px;
  }
}
@media (max-width: 600px) {
  .annual-reports-card {
    padding-right: 35px;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card {
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card {
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .annual-reports-card {
    margin-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card:last-child {
    margin-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card:last-child {
    margin-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .annual-reports-card:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card .report-download {
    width: 35%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card .report-download {
    width: 35%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card .report-download {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .annual-reports-card .report-download {
    width: 100%;
  }
}
.annual-reports-card .report-download .report-image {
  border: 1px solid #E5E5E5;
}
@media (min-width: 1025px) {
  .annual-reports-card .report-download .report-image {
    width: 16.6666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card .report-download .report-image {
    width: 16.6666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card .report-download .report-image {
    width: 250px;
  }
}
@media (max-width: 600px) {
  .annual-reports-card .report-download .report-image {
    width: 250px;
  }
}
@media only screen and (max-width: 1024px) {
  .annual-reports-card .report-download .report-image {
    margin: 20px auto;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card .pdf-donloads {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card .pdf-donloads {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card .pdf-donloads {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .annual-reports-card .pdf-donloads {
    margin-top: 30px;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card .pdf-donloads {
    width: 62%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card .pdf-donloads {
    width: 62%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card .pdf-donloads {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .annual-reports-card .pdf-donloads {
    width: 100%;
  }
}
.annual-reports-card .pdf-donloads .pdf-block {
  border-bottom: 1px solid rgba(183, 172, 134, 0.3);
}
@media (min-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-block {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card .pdf-donloads .pdf-block {
    padding-bottom: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-block {
    padding-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .annual-reports-card .pdf-donloads .pdf-block {
    padding-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-block {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card .pdf-donloads .pdf-block {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-block {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .annual-reports-card .pdf-donloads .pdf-block {
    margin-top: 20px;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-block:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card .pdf-donloads .pdf-block:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-block:first-child {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .annual-reports-card .pdf-donloads .pdf-block:first-child {
    margin-top: 0;
  }
}
.annual-reports-card .pdf-donloads .pdf-block:last-child {
  border-bottom: none;
}
@media (min-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-block:last-child {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card .pdf-donloads .pdf-block:last-child {
    padding-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-block:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .annual-reports-card .pdf-donloads .pdf-block:last-child {
    padding-bottom: 0;
  }
}
.annual-reports-card .pdf-donloads .pdf-list {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-list {
    justify-content: flex-start;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-list .pdf-item-btn {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card .pdf-donloads .pdf-list .pdf-item-btn {
    margin-left: 0.5208333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-list .pdf-item-btn {
    margin-left: 10px;
  }
}
@media (max-width: 600px) {
  .annual-reports-card .pdf-donloads .pdf-list .pdf-item-btn {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-list .pdf-item-btn:first-child {
    margin-left: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .annual-reports-card .pdf-donloads .pdf-list .pdf-item-btn:first-child {
    margin-left: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .annual-reports-card .pdf-donloads .pdf-list .pdf-item-btn:first-child {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .annual-reports-card .pdf-donloads .pdf-list .pdf-item-btn:first-child {
    margin-left: 0;
  }
}

.download-block {
  position: relative;
  margin: 0 auto !important;
}
@media (min-width: 1025px) {
  .download-block {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .download-block {
    margin-top: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .download-block {
    margin-top: 35px;
  }
}
@media (max-width: 600px) {
  .download-block {
    margin-top: 20px;
  }
}
@media (min-width: 1025px) {
  .download-block {
    padding-left: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .download-block {
    padding-left: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .download-block {
    padding-left: 40px;
  }
}
@media (max-width: 600px) {
  .download-block {
    padding-left: 28px;
  }
}
@media (min-width: 1025px) {
  .download-block {
    padding-right: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .download-block {
    padding-right: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .download-block {
    padding-right: 40px;
  }
}
@media (max-width: 600px) {
  .download-block {
    padding-right: 28px;
  }
}
@media (min-width: 1025px) {
  .download-block .download-item {
    width: 48%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .download-block .download-item {
    width: 48%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .download-block .download-item {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .download-block .download-item {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .download-block .download-item {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .download-block .download-item {
    padding-top: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .download-block .download-item {
    padding-top: 20px;
  }
}
@media (max-width: 600px) {
  .download-block .download-item {
    padding-top: 10px;
  }
}
@media (min-width: 1025px) {
  .download-block .download-item {
    padding-bottom: 1.0416666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .download-block .download-item {
    padding-bottom: 1.0416666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .download-block .download-item {
    padding-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .download-block .download-item {
    padding-bottom: 10px;
  }
}
.download-block .download-item .download-pdf-title {
  width: calc(100% - 60px);
}
@media (min-width: 1025px) {
  .download-block .download-item .download-pdf-title {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .download-block .download-item .download-pdf-title {
    padding-left: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .download-block .download-item .download-pdf-title {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .download-block .download-item .download-pdf-title {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .download-block .download-item .download-pdf-title {
    width: calc(100% - 72px);
  }
}
@media only screen and (min-width: 1025px) {
  .download-block .download-item .download-pdf-title {
    width: calc(100% - 3.75vw);
  }
}

.features-block {
  position: relative;
}
@media (min-width: 1025px) {
  .features-block {
    margin-top: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block {
    margin-top: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block {
    margin-top: 50px;
  }
}
@media (max-width: 600px) {
  .features-block {
    margin-top: 40px;
  }
}
@media (min-width: 1025px) {
  .features-block {
    padding-top: 3.125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block {
    padding-top: 3.125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block {
    padding-top: 40px;
  }
}
@media (max-width: 600px) {
  .features-block {
    padding-top: 20px;
  }
}
@media (min-width: 1025px) {
  .features-block {
    padding-bottom: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block {
    padding-bottom: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block {
    padding-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .features-block {
    padding-bottom: 40px;
  }
}
@media (min-width: 1025px) {
  .features-block {
    padding-left: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block {
    padding-left: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block {
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .features-block {
    padding-left: 20px;
  }
}
@media (min-width: 1025px) {
  .features-block {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block {
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block {
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .features-block {
    padding-right: 20px;
  }
}
.features-block .features-title-wrapper {
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .features-block .features-title-wrapper {
    width: 90%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block .features-title-wrapper {
    width: 90%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block .features-title-wrapper {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .features-block .features-title-wrapper {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .features-block .stat-grid .img-col {
    width: 33%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .img-col {
    width: 33%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .img-col {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .features-block .stat-grid .img-col {
    width: 100%;
  }
}
.features-block .stat-grid .img-col img {
  object-fit: cover;
}
@media (min-width: 1025px) {
  .features-block .stat-grid .img-col img {
    height: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .img-col img {
    height: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .img-col img {
    height: 100%;
  }
}
@media (max-width: 600px) {
  .features-block .stat-grid .img-col img {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .features-block .stat-grid .img-col img {
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .img-col img {
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .img-col img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .features-block .stat-grid .img-col img {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .features-block .stat-grid .stat-col {
    width: 66%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .stat-col {
    width: 66%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .stat-col {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .features-block .stat-grid .stat-col {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .features-block .stat-grid .stat-col {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .stat-col {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .stat-col {
    margin-top: 50px;
  }
}
@media (max-width: 600px) {
  .features-block .stat-grid .stat-col {
    margin-top: 40px;
  }
}
.features-block .stat-grid .stat-col .main-stat {
  position: relative;
  width: 100%;
}
@media (min-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat {
    width: 33.3%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .stat-col .main-stat {
    width: 33.3%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat {
    width: 33.3%;
  }
}
@media (max-width: 600px) {
  .features-block .stat-grid .stat-col .main-stat {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .stat-col .main-stat {
    padding-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .features-block .stat-grid .stat-col .main-stat {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    background-color: #B7AC86;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    left: 0vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    left: 0vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 600px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    height: 50%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    height: 50%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    height: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 600px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    height: 50%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    width: 0.0520833333vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    width: 0.0520833333vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    width: 1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 600px) {
  .features-block .stat-grid .stat-col .main-stat:after {
    width: 1px;
  }
}
@media only screen and (min-width: 768px) {
  .features-block .stat-grid .stat-col .main-stat:first-child:after {
    display: none;
  }
}
@media (min-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat .title {
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .stat-col .main-stat .title {
    padding-left: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat .title {
    padding-left: 10px;
  }
}
@media (max-width: 600px) {
  .features-block .stat-grid .stat-col .main-stat .title {
    padding-left: 0;
  }
}
@media (min-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat .title {
    padding-right: 2.0833333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .features-block .stat-grid .stat-col .main-stat .title {
    padding-right: 2.0833333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .features-block .stat-grid .stat-col .main-stat .title {
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .features-block .stat-grid .stat-col .main-stat .title {
    padding-right: 0;
  }
}

.faq-block {
  position: relative;
}
@media (min-width: 1025px) {
  .faq-block {
    margin-top: 4.1666666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block {
    margin-top: 4.1666666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block {
    margin-top: 50px;
  }
}
@media (max-width: 600px) {
  .faq-block {
    margin-top: 40px;
  }
}
.faq-block .faq-block-wrapper {
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper {
    padding-top: 2.6041666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper {
    padding-top: 2.6041666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper {
    padding-top: 40px;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper {
    padding-top: 30px;
  }
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper {
    width: 80%;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper {
    width: 80%;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper:first-child {
    padding-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper:first-child {
    padding-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper:first-child {
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper:first-child {
    padding-top: 0;
  }
}
.faq-block .faq-block-wrapper ol {
  list-style: none;
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ol {
    padding-left: 2.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ol {
    padding-left: 2.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ol {
    padding-left: 34px;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ol {
    padding-left: 30px;
  }
}
.faq-block .faq-block-wrapper ol li {
  border-bottom: 1px dotted #272727;
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ol li {
    padding-bottom: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ol li {
    padding-bottom: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ol li {
    padding-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ol li {
    padding-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ol li {
    margin-top: 1.5625vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ol li {
    margin-top: 1.5625vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ol li {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ol li {
    margin-top: 20px;
  }
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ol li:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ol li:first-child {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ol li:first-child {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ol li:first-child {
    margin-top: 0;
  }
}
.faq-block .faq-block-wrapper ol li:last-child {
  border-bottom: none;
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ol li:last-child {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ol li:last-child {
    padding-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ol li:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ol li:last-child {
    padding-bottom: 0;
  }
}
.faq-block .faq-block-wrapper ol li .title-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.faq-block .faq-block-wrapper ol li .title-wrapper .index {
  display: inline-flex;
  justify-content: center;
  background-color: #B7AC86;
  align-items: center;
  border-radius: 50%;
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    margin-left: -2.8125vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    margin-left: -2.8125vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    margin-left: -34px;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    margin-left: -30px;
  }
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    height: 1.9791666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    height: 1.9791666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    height: 24px;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    height: 20px;
  }
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    width: 1.9791666667vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    width: 1.9791666667vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    width: 24px;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .index {
    width: 20px;
  }
}
.faq-block .faq-block-wrapper ol li .title-wrapper .faq-title {
  display: flex;
  align-items: center;
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .faq-title {
    margin-left: 0.8333333333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .faq-title {
    margin-left: 0.8333333333vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .faq-title {
    margin-left: 10px;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .faq-title {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .faq-block .faq-block-wrapper ol li .title-wrapper .faq-title {
    width: calc(100% - 30px);
  }
}
.faq-block .faq-block-wrapper ul li {
  border-bottom: none;
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ul li {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ul li {
    padding-bottom: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ul li {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ul li {
    padding-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .faq-block .faq-block-wrapper ul li {
    margin-top: 0vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .faq-block .faq-block-wrapper ul li {
    margin-top: 0vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .faq-block .faq-block-wrapper ul li {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .faq-block .faq-block-wrapper ul li {
    margin-top: 0;
  }
}

select,
.select2-selection__arrow {
  background-image: url("../../../assets/images/form-dropdown.svg");
  background-repeat: no-repeat;
  -webkit-appearance: none;
  background-position: calc(100% - 0.5208333333vw);
  background-size: 0.5208333333vw auto;
}
select b,
.select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #F8F8F8 !important;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    line-height: 1.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    line-height: 1.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    line-height: 30px;
  }
}
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.6041666667vw !important;
  text-transform: capitalize;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #B7AC86 !important;
  color: #272727 !important;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    line-height: 1.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    line-height: 1.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    line-height: 30px;
  }
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0 !important;
  right: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #272727 !important;
}

.dfb-form .select2-container {
  display: block;
  width: 100% !important;
  overflow: hidden;
}
.dfb-form .select2-container--default .select2-selection--single {
  background-color: #f7f7f7 !important;
}

@media only screen and (min-width: 1025px) {
  .select2-selection {
    height: 2.6041666667vw !important;
    font-family: "Jost", sans-serif;
    border: 0 !important;
    border-radius: 0 !important;
  }
  .select2-selection__rendered {
    display: flex !important;
    align-items: center;
    padding: 0 !important;
    color: #272727 !important;
    font-weight: 500 !important;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .select2-selection__rendered {
    font-size: 0.9375vw !important;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .select2-selection__rendered {
    font-size: 0.9375vw !important;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .select2-selection__rendered {
    font-size: 15px !important;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .select2-selection__rendered {
    font-size: 15px !important;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) {
  .select2-selection__rendered {
    line-height: 1.875vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .select2-selection__rendered {
    line-height: 1.875vw;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .select2-selection__rendered {
    line-height: 30px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 600px) {
  .select2-selection__rendered {
    line-height: 30px;
  }
}
@media only screen and (min-width: 1025px) {
  .select2-selection__arrow {
    width: 2.6041666667vw !important;
  }
}
@media only screen and (max-width: 1025px) {
  .select2-container {
    width: 100% !important;
  }
  .select2-selection {
    height: 45px !important;
    border: 0 !important;
    font-weight: 500;
    border-radius: 0 !important;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered,
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px !important;
  }
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #F8F8F8 !important;
    font-weight: 500;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    font-size: 0.9375vw !important;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    font-size: 0.9375vw !important;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    font-size: 15px !important;
  }
}
@media only screen and (max-width: 1025px) and (max-width: 600px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    font-size: 15px !important;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    line-height: 1.875vw;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    line-height: 1.875vw;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    line-height: 30px;
  }
}
@media only screen and (max-width: 1025px) and (max-width: 600px) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    line-height: 30px;
  }
}
@media only screen and (max-width: 1025px) {
  .select2-selection__rendered {
    display: flex !important;
    align-items: center;
  }
  .select2-selection__arrow {
    top: 0 !important;
    right: 0 !important;
  }
  .select2-results {
    font-size: 15px !important;
    line-height: 15px !important;
  }
  .select2-results__option--selectable,
  .select2-results__option--highlighted {
    font-weight: 500;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 1025px) {
  .select2-results__option--selectable,
  .select2-results__option--highlighted {
    font-size: 0.9375vw !important;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .select2-results__option--selectable,
  .select2-results__option--highlighted {
    font-size: 0.9375vw !important;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .select2-results__option--selectable,
  .select2-results__option--highlighted {
    font-size: 15px !important;
  }
}
@media only screen and (max-width: 1025px) and (max-width: 600px) {
  .select2-results__option--selectable,
  .select2-results__option--highlighted {
    font-size: 15px !important;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 1025px) {
  .select2-results__option--selectable,
  .select2-results__option--highlighted {
    line-height: 1.875vw;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 1025px) and (max-width: 1600px) {
  .select2-results__option--selectable,
  .select2-results__option--highlighted {
    line-height: 1.875vw;
  }
}
@media only screen and (max-width: 1025px) and (min-width: 600px) and (max-width: 1025px) {
  .select2-results__option--selectable,
  .select2-results__option--highlighted {
    line-height: 30px;
  }
}
@media only screen and (max-width: 1025px) and (max-width: 600px) {
  .select2-results__option--selectable,
  .select2-results__option--highlighted {
    line-height: 30px;
  }
}
@media only screen and (max-width: 1025px) {
  select,
  .select2-selection__arrow {
    background-repeat: no-repeat;
    -webkit-appearance: none;
    background-position: calc(100% - 10px) !important;
    background-size: 10px auto !important;
  }
  select b,
  .select2-selection__arrow b {
    display: none;
  }
}
.select2-container .select2-results__option {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .select2-container .select2-results__option {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .select2-container .select2-results__option {
    font-size: 0.9375vw !important;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .select2-container .select2-results__option {
    font-size: 15px !important;
  }
}
@media (max-width: 600px) {
  .select2-container .select2-results__option {
    font-size: 15px !important;
  }
}
@media (min-width: 1025px) {
  .select2-container .select2-results__option {
    line-height: 1.875vw;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .select2-container .select2-results__option {
    line-height: 1.875vw;
  }
}
@media (min-width: 600px) and (max-width: 1025px) {
  .select2-container .select2-results__option {
    line-height: 30px;
  }
}
@media (max-width: 600px) {
  .select2-container .select2-results__option {
    line-height: 30px;
  }
}
.select2-container .select2-results__option:hover {
  font-family: "Jost", sans-serif;
  color: #272727;
  background-color: #B7AC86;
}
.select2-container .select2-results__option--selected,
.select2-container .select2-results__option--highlighted {
  font-family: "Jost", sans-serif;
  color: #272727;
  background-color: #B7AC86;
}

span#select2-cont_title-container {
  text-transform: capitalize;
}
span#select2-cont_title-container:focus, span#select2-cont_title-container:focus-visible {
  appearance: none !important;
  border: none !important;
  outline: none !important;
}

.select2:focus, .select2:focus-visible, .select2:focus-within {
  border: 1px solid #B7AC86 !important;
}

.select2-selection:focus, .select2-selection:focus-visible, .select2-selection:focus-within {
  appearance: none !important;
  border: none !important;
  outline: none !important;
}
/*# sourceMappingURL=global.css.map */
