:root {
  --ip-default-transition: all 0.35s ease-in-out;
  --site-title-font: "Barlow Condensed", sans-serif;
}

.site-easing {
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.desc {
  p {
    font-size: 18px;
    font-size: 1.125vw;
    color: #2b2b2b;
    line-height: 1.556;
    letter-spacing: 0;
    margin-bottom: 26px;

    &:last-child {
      margin: 0;
    }
  }

  &.centered {
    p {
      text-align: center;
    }
  }
}

.img-wrap {
  position: relative;
  width: 100%;

  canvas {
    position: relative;
    display: block;
    height: auto;
    width: 100%;
  }

  img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    font-size: 0;
    width: 100%;
    height: 100%;
    outline: none;
    transition: var(--ip-default-transition);
  }
}

.bg-section {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  top: 0;
  left: 0;
  overflow: hidden;

  canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.site-banner {
  display: none;
}

#inner-page-wrapper {
  margin-bottom: 0;

  >.container {
    width: 100%;
    padding: 0;
  }
}

.ip-banner {
  /*    display: none;*/
}

.ip-sec {
  position: relative;
}

.flex-row {
  display: flex;
  flex-flow: row wrap;
}

.custom-wrap {
  width: 100%;
  max-width: 1230px;
  max-width: 76.875vw;
  padding: 0 15px;
  margin: auto;
}

.custom-wrap-2 {

  width: 100%;
  max-width: max(81.375vw, 600px);
  margin: auto;

}

#breadcrumbs {
  padding-top: 25px;
  font-size: 16px;
  font-size: max(1vw, 13px);
  letter-spacing: 0.05em;
  color: #828282;

  .breadcrumb_last {
    color: #2b2b2b;
  }
}

u {
  text-decoration: none;
  position: relative;

  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.qs-sec {


  width: 100%;
  max-width: 100%;
  margin: auto;
  padding: 0px 0px 0px max(6.1875vw, 49.5px);
  margin-top: 40px;



  .left-col {

    padding-top: 6.563vw;
    width: calc((686 / 1501) * 100%);
    padding-right: max(3.75vw, 38px);
  }

  .right-col {

    background: #8b6f41;
    width: calc((815 / 1501) * 100%);
    position: relative;
    padding: max(4.6875vw, 37.5px) max(5vw, 40px);

    &::before {
      position: absolute;
      content: "";
      width: 113.3%;
      height: 100%;
      left: 0;
      top: 0;
      background: url(/wp-content/uploads/2024/10/bg-qs.jpg);
      background-size: cover;
      background-position: center;
    }
  }
}

.qs-wrap {
  align-items: flex-start;
}

.sec-title {
  font-size: max(4.75vw, 40px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #0f272c;

  span {
    display: block;
    font-size: 30px;
    font-size: 1.875vw;
    font-weight: 400;
    color: #2b2b2b;
    letter-spacing: 0.1em;
    margin-top: 10px;
    margin-top: 0.625vw;

    &.top {
      margin-top: 0;
      margin-bottom: 0.625vw;
      color: #8b6f41;
    }
  }

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

.main-title {
  position: relative;
  color: #0f272c;
  margin-bottom: max(1.875vw, 15px);
}

.qs-inner {
  position: relative;
}

.qs-form-wrap {
  margin-top: 50px;
  margin-top: max(3.125vw, 35px);
}

.qs-form {
  justify-content: space-between;
}

.qs-subtitle {
  font-size: 30px;
  font-size: max(1.875vw, 20px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;

  color: #ffffff;
}

.qs-field {

  margin-bottom: max(3vw, 24px);
  position: relative;
  height: max-content;

  &.with-caret {
    &::after {
      position: absolute;
      content: "";
      width: 6px;
      height: 5px;
      background: url("/wp-content/uploads/2024/10/icon-caret.png");
      background-size: contain;
      background-position: center;
      top: 45%;
      right: 0;
      transform: translateY(-50%);
    }
  }

  &.long {
    width: 100%;
  }

  &.short {
    width: calc(50% - 10px);
  }

  input,
  select,
  button.btn {

    width: 100%;
    letter-spacing: 0.05em;
    font-size: max(0.875vw, 12px);
    color: #ffffff;
    background: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none !important;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 0;
    padding-right: 10px;
    padding-bottom: 13px;
    outline: none !important;
    font-weight: 400;

    border-radius: inherit;
  }

  select {
    option {
      color: #000000;
    }
  }

  input[type="checkbox"],
  input[type="radio"] {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    opacity: 0;
  }

  span.filter-option.pull-left{
    color: #ffffff!important;
    text-transform: capitalize !important;
  }

  .bs-searchbox input{
    color: #000!important;
  }
}

.field-label,
.qs-field label span {

  letter-spacing: 0.05em;
  font-size: max(0.875vw, 12px);
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
  font-weight: 400;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-top: 0.938vw;
}

input#min-amount,
input#max-amount,
input#min-amount-label,
input#max-amount-label {
  width: 50%;
  padding: 0;
  height: max-content;
  border: none;
}

input#min-amount {
  text-align: left;
}

input#max-amount {
  text-align: right;
}

.slider-range {
  margin-top: 10px;
  margin-top: 0.625vw;
}

#slider-range {
  .ui-slider-handle {
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border: none !important;
    border-radius: 50%;
    outline: none !important;
    width: 12px;
    height: 12px;
    width: 0.75vw;
    height: 0.75vw;
  }

  span.ui-slider-handle:nth-of-type(2) {
    display: none;
  }
}

.ui-slider-horizontal {
  .ui-slider-range {
    height: 1px;
    border: none;
    background: #999999;
  }
}

.ui-widget.ui-widget-content {
  height: 1px;
  background: #ffffff;
  border: none;
  margin: 13px 0;
  margin-left: 7px;
}

.qs-field-checkbox {
  label {
    span {
      &::before {
        position: absolute;
        content: "";
        width: 14px;
        height: 14px;
        right: calc(100% + 10px);
        top: 49%;
        transform: translateY(-50%);
        border: 1px solid #fff;
      }
    }

    input:checked+span:before {
      background: #000;
      border: 1px solid #000;
    }
  }

  >label {
    margin-right: 13px;
  }
}

.qs-field-submit {
  margin-top: 20px;
  margin-bottom: 0;
}

.qs-btn {
  margin-left: auto;
}

.site-btn {

  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--ip-default-transition);
  width: 100%;
  max-width: max(13.375vw, 170px);
  height: max(4.5vw, 45px);
  color: #000000;
  font-size: max(0.875vw, 12px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: auto;
  font-weight: 400;

  &:hover {
    background: #000;
    border-color: var(--accent-color);
    color: #fff;
  }

  &::before {
    position: absolute;
    content: "";
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--accent-color);
  }
}


.site-btn {

  &::before,
  &::after {
    position: absolute;

    position: absolute;
    content: "";
    height: 4px;
    background: #000;
    width: calc((80 / 214) * 100%);

    z-index: 2;
  }

  &::before {
    top: 0;
    left: 0;
  }

  &::after {
    bottom: 0;
    right: 0;
  }
}


.site-btn {
  .brd {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    transition: all 0.3s ease-in-out;
  }

  &:hover {
    .brd {
      border-color: #000;
    }
  }
}



.stats-sec {
  margin-top: 110px;
}

.stats-wrap {
  padding: 0 20px;
}

.sec-stats {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;

  >div {
    display: flex;
    flex-flow: row wrap;
    width: 51%;
    padding: 0 25px;

    &:first-child {
      width: 49%;
    }
  }
}






.stat-title {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;

  h2,
  strong {

    font-size: max(1.875vw, 20px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #2b2b2b;
    text-align: center;
    text-transform: uppercase;
  }

  span {
    font-size: 38px;
    font-size: max(2.375vw, 25px);
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1;
    color: #4f4f4f;
    text-align: center;
    text-transform: uppercase;
    margin: 4px 0 0;
    font-family: var(--font-family-title);
  }

  &::after {
    content: "";
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    position: absolute;
    height: 1px;
    background: #828282;
  }
}

.stat-item {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 25%;
  position: relative;

  &::before {
    content: "";
    width: 1px;
    height: 50px;
    background: #828282;
  }

  &.center::before {
    height: 130px;
  }

  span {

    display: block;
    font-size: 1.875vw;
    font-weight: 400;
    line-height: 1;
    color: #0f272c;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    margin: 8px 0 0;
  }

  em {
    display: block;
    font-size: 16px;
    font-size: 1vw;
    font-style: normal !important;
    color: #0f272c;
    text-align: center;
    text-transform: uppercase;
    margin: 4px 0 0;
    letter-spacing: 0.1em;
    width: max-content;
  }
}

.toc-sec {
  margin-top: 6.25vw;
}

.sec-toc {
  background: #000000;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 20px;

  h2 {
    font-size: clamp(20px, 2.4375vw, 39px);
    font-family: var(--BarlowSemiCondensed);
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
  }

  ul {
    padding: 0 30px;
    margin-top: 30px;

    li {
      color: #fff;
      font-size: clamp(15px, 1.3125vw, 21px);
      letter-spacing: 0.05em;
      line-height: 1.7em;
      list-style-type: auto;
      padding-bottom: 5px;

      a {
        color: #fff;

        &:hover {
          color: var(--accent-color);
        }
      }
    }
  }
}

.bio-sec {
  margin-top: 100px;
  margin-top: 6.25vw;
  margin-bottom: 90px;
}

.bio-wrap {
  align-items: center;
  justify-content: space-between;

  .left-col {
    width: calc((550 / 1302) * 100%);
  }

  .right-col {
    width: calc((666 / 1302) * 100%);
    padding-right: 4.125vw;
  }
}

.bio-desc {
  margin-top: 32px;
  margin-top: 2vw;

  p {

    color: #3d3d3d;
    line-height: 1.556;
    letter-spacing: 0;
    margin-bottom: 26px;
    font-size: max(0.8750000000000001vw, 12px);
    font-weight: 400;

  }
}

.bio-img-wrap {
  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 50px;
    right: 50px;
    top: 3.125vw;
    right: 3.125vw;
    background: url("/wp-content/uploads/2024/10/ip-ec-main-photo-accent.jpg");
    background-size: cover;
    background-position: center;
  }
}

.listings-sec {
  position: relative;
  padding: 100px 0 98px;
}

.bg-listings {
  filter: grayscale(1);
  opacity: 10%;
}

.listings-wrap {
  position: relative;
  max-width: max(87.625vw, 600px) !important;
}

.listings-inner {
  margin: 0 -0.5px;
  margin-top: 55px;
}

.listings-item {
  padding: 0.5px;
  width: calc(100% / 3);

  a {
    display: block;
    position: relative;

    &:hover {
      img {
        filter: grayscale(1);
      }

      .listings-address {
        background: var(--accent-color);
      }

      .listings-img-wrap {
        &::before {
          opacity: 1;
        }

        &::after {
          opacity: 0;
        }
      }
    }
  }
}

.listings-img-wrap {
  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 62%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top,
        rgb(37 37 37 / 90%) 0%,
        rgba(0, 0, 0, 0) 100%);
    transition: var(--ip-default-transition);
    opacity: 0;
    z-index: 1;
  }

  &::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 62%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0) 100%);
    transition: var(--ip-default-transition);
    opacity: 1;
  }
}

.listings-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.listings-price {

  font-size: 1.875vw;
  letter-spacing: 0.05em;
  font-weight: 400;
  width: 44.2%;
}

.listings-address {
  line-height: 1.375;
  width: 55.8%;
  font-size: 16px;
  font-size: 1vw;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 18px 10px;
  padding: 1.125vw 0.625vw;
  background: #181619;
  transition: var(--ip-default-transition);
}

.listings-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 65px;
}

.listings-pagination {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #2b2b2b;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;

  ul {
    display: flex;
    margin: 0 60px;
    margin: 0 3.75vw;

    li {
      padding: 0 5px;

      a {
        color: #828282;

        &.current {
          color: #2b2b2b;
          cursor: not-allowed;
        }

        &.listings-prev,
        &.listings-next {
          color: #337ab7 !important;
        }
      }
    }
  }

  a {
    transition: var(--ip-default-transition);

    &:hover {
      color: #000000;
    }
  }
}

.listings-nav {
  display: flex;
  align-items: center;
}

.listings-prev span {
  margin-right: 10px;
}

.listings-next span {
  margin-left: 10px;
}

.narrate-sec {
  margin-top: 120px;
  margin-bottom: 80px;
}

.sub-section {
  margin-bottom: 100px;

  &:last-child {
    margin-bottom: 0;
  }
}

.sub-section-a-img-wrap {
  margin: 35px 0 45px;
}

.sub-section-b {}

.sub-section-desc-b {
  margin-bottom: 26px;
  margin-top: 40px;
}

.sub-section-list {
  li {
    margin-bottom: 26px;
    padding-left: 30px;
    position: relative;

    &::before {
      position: absolute;
      content: "";
      width: 8px;
      height: 8px;
      background: var(--accent-color);
      border-radius: 50%;
      left: 12px;
      top: 10px;
    }

    &:last-child {
      margin-bottom: 0;
    }
  }
}

.sub-section-c-title {
  margin-bottom: 40px;
}

.sub-section-d-img-wrap,
.sub-section-img-wrap {
  margin: 35px 0 45px;
}

.sub-section-desc-d {
  margin-bottom: 26px;
}

.sub-section-e {
  .row {
    margin-top: 17px;
  }

  .col-md-4>p {
    margin-bottom: 0;
  }

  .sub-section-list-e {
    li {
      margin-bottom: 0;
    }
  }

  .desc-e {
    margin-top: 40px;
  }
}

.sub-section-subtitle {
  font-size: 30px;

  text-transform: uppercase;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 25px;
}

.sub-section-list-title {
  margin: 35px 0 25px;
}

.sub-section-list-g {
  margin-top: 25px;
}

.best-sec {
  padding: 70px 0;
}

.bg-best {
  canvas {
    opacity: 10%;
    filter: grayscale(1);
  }
}

.best-wrap {
  position: relative;
}

.sub-section-best-title {
  margin-bottom: 50px;
}

.cta-sec {
  padding-top: 110px;
  padding-top: max(6.875vw, 70px);
  padding-bottom: max(6.875vw, 70px);
}

.cta-inner {
  margin-top: 75px;
  margin-top: max(4.688vw, 50px);
}

.cta-item {
  position: relative;
  cursor: pointer;
  width: 20%;

  &::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    background: #2b2b2b;
  }

  &:last-child::after {
    opacity: 0;
  }

  &:hover {
    .cta-item-title {
      opacity: 0;
    }
  }
}

.cta-img-wrap {
  background: #2b2b2b;

  img {
    opacity: 10%;
  }
}

.cta-details {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  width: 100%;
  padding: 0 15px;

  a {
    color: #ffffff;
    transition: var(--ip-default-transition);
  }

  ul {
    line-height: 1.455;
    font-size: 22px;
    font-size: 1.375vw;
    margin-top: 15px;
    margin-top: max(0.938vw, 10px);

    li {
      a:hover {
        opacity: 0.5;
      }
    }
  }
}

.cta-hover-title {
  display: block;
  width: 100%;
  font-size: 40px;
  font-size: 2.5vw;

  font-weight: 400;
  text-transform: uppercase;
}

.cta-item-title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: var(--ip-default-transition);
  opacity: 1;
  pointer-events: none;

  span {

    font-size: 2.5vw;
    color: #0f272c;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    letter-spacing: 0.05em;
  }
}

.comm-sec {
  padding-top: 70px;
  padding-bottom: 50px;
}

.comm-inner {
  margin-top: 40px;
  position: relative;
}

.comm-slick {
  margin: 0 -6.5px;
  margin: 0 -0.406vw;

  &:not(.slick-initialized) {
    display: flex;
    flex-flow: wrap;
  }

  .slick-slide>div:first-child {
    display: flex;

    .comm-item:nth-child(even) canvas {
      height: 260px;
      height: 16.25vw;
    }
  }

  .slick-slide>div:last-child {
    display: flex;
    align-items: flex-end;
    margin-top: -26px;
    margin-top: -1.625vw;

    .comm-item:nth-child(odd) canvas {
      height: 260px;
      height: 16.25vw;
    }
  }
}

.comm-item {
  padding: 6.5px;
  padding: 0.406vw;

  a {
    position: relative;
    display: block;

    &:hover {
      img {
        filter: grayscale(1);
        opacity: 50%;
        transform: scale(1.15);
      }
    }
  }

  img {
    opacity: 70%;
  }
}

.comm-item-title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 15px;
  color: #ffffff;
  text-transform: uppercase;

  font-size: 30px;
  font-size: max(1.875vw, 20px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  transform: translateY(-50%);
}

.comm-img-wrap {
  background: #000000;
  overflow: hidden;
}

.slick-arrow-wrap {
  display: flex;
  pointer-events: none;
  justify-content: space-between;
}

.slick-prev,
.slick-next {
  color: #ffffff !important;
  background: #2b2b2b;
  width: 100px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  transition: var(--ip-default-transition);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;

  span {
    &:first-child {
      margin-right: 10px;
    }

    &:last-child {
      margin-left: 10px;
    }
  }

  &:hover {
    background: var(--accent-color);
    color: #ffffff;
  }
}

.comm-arrow-wrap {
  position: absolute;
  width: 100%;
  top: 51%;
  transform: translateY(-50%);
}

.footer_form_wrap {
  display: none;
}

#slider-range {
  span.ui-slider-handle:nth-of-type(2) {
    display: none;
  }
}

ul.sub-section-list {
  font-size: 18px;
  font-size: 1.125vw;
  color: #2b2b2b;
  line-height: 1.556;
}

.ip-ec-wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.bg-section {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

.comm-toc-title {
  font-size: 30px;
  font-family: var(--BarlowSemiCondensed);
  text-transform: uppercase;
  font-size: max(1.875vw, 20px);
}

.comm-toc-list {
  list-style: disc;
  list-style-position: inside;
  margin-top: 25px;

  li {
    a {
      display: inline-block;
      font-size: 18px;
      font-size: 1.125vw;
      color: #2b2b2b;
      line-height: 1;
      letter-spacing: 0;
      margin-bottom: 26px;
    }
  }

  p {
    margin: 0;
  }
}

.ip-ec-wrap ul , .ip-ec-wrap ol{
  list-style: unset!important;
  margin-left: 25px!important;
}

.ip-ec-wrap li p{
  margin-bottom: 20px!important;
}

.ip-ec-wrap .listings-pagination ul{
  list-style: none!important;
}



@media only screen and (min-width: 992px) {
  .sub-section-list {
    li {
      margin-bottom: 1.625vw;
      padding-left: 1.875vw;

      &::before {
        width: 0.5vw;
        height: 0.5vw;
        left: 0.75vw;
        top: 0.625vw;
      }
    }
  }

  .sub-section-subtitle {
    font-size: 1.875vw;
    margin-bottom: 1.563vw;
  }
}

@media only screen and (min-width: 1601px) {
  // Add styles here if needed
}

@media only screen and (max-width: 1480px) {
  // Add styles here if needed
}

@media only screen and (max-width: 1366px) {
  // Add styles here if needed
}

@media only screen and (max-width: 1280px) {
  // Add styles here if needed
}

@media only screen and (max-width: 1199px) {
  // Add styles here if needed
}

@media only screen and (max-width: 991px) {

  .custom-wrap,
  .custom-wrap-2 {
    max-width: 700px;
    padding: 0 15px;
  }

  .qs-sec {

    .left-col,
    .right-col {
      width: 100%;
      padding: 0;
    }

    .right-col {
      margin-top: 30px;
      padding: 50px 30px;

      &::before {
        width: 100%;
      }
    }
  }

  #slider-range {
    .ui-slider-handle {
      height: 10px;
      width: 10px;
    }
  }

  .sec-title {
    text-align: center;
    font-size: 55px;

    span {
      font-size: 25px;
    }
  }

  .main-title {
    &::before {
      opacity: 0;
    }
  }

  .stats-sec {
    margin-top: 70px;
  }

  .stats-wrap {
    padding: 0;
  }

  .sec-stats {
    >div {
      width: 100%;
      margin-bottom: 40px;
      padding: 0;

      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  .stat-title {

    h2,
    strong {
      font-size: 25px;
    }
  }

  .stat-item {
    span {
      font-size: 25px;
    }

    em {
      font-size: 14px;
    }
  }

  .bio-sec {
    margin-top: 70px;
  }

  .bio-wrap {

    .left-col,
    .right-col {
      width: 100%;
      padding: 0;
    }

    .right-col {
      margin: 50px 0 0;
    }
  }

  .bio-desc {
    margin-top: 30px;
  }

  .desc {
    p {
      font-size: 16px;
    }
  }

  .listings-item {
    width: 50%;
  }

  .listings-price {
    font-size: 18px;
  }

  .listings-address {
    font-size: 13px;
    padding: 10px;
  }

  .sub-section-e {
    .col-md-4 {
      margin-bottom: 20px;

      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  .cta-inner {
    justify-content: center;
    padding: 0 15px;
  }

  .cta-item {
    width: calc(100% / 3);
    border-bottom: 1px solid #2b2b2b;
  }

  .cta-item-title {
    span {
      font-size: 35px;
    }
  }

  .cta-hover-title {
    font-size: 35px;
  }

  .cta-details {
    ul {
      font-size: 18px;
    }
  }

  .comm-img-wrap {
    canvas {
      height: auto !important;
    }
  }

  .comm-arrow-wrap {
    top: 50%;
  }

  ul.sub-section-list {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .listings-item {
    width: 100%;
    max-width: 450px;
    margin: auto;
  }

  .cta-item {
    width: calc(100% / 2);
    border: 0.5px solid #2b2b2b;

    &::after {
      opacity: 0;
    }
  }
}

@media only screen and (max-width: 480px) {
  .sec-title {
    font-size: 45px;

    span {
      font-size: 20px;
    }
  }

  .qs-sec {
    .right-col {
      padding: 40px 15px;
    }
  }

  .qs-field {
    &.short {
      width: 100%;
    }
  }

  .qs-field-checkbox {
    >label {
      display: block;
    }
  }

  .desc {
    p {
      font-size: 14px;
    }
  }

  .cta-item {
    width: 100%;
  }

  .comm-arrow-wrap {
    position: relative;
    top: 0;
    transform: unset;
    margin-top: 14px;
  }

  ul.sub-section-list {
    font-size: 14px;
  }

  .sec-toc {
    padding: 30px 8px;
  }
}