:root {
  --main-color: #000000;
  --secondary-color: #707070;
  --background-color: #D6D6D6;

}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

.post, .page {
  margin-bottom: 0;
}

body {
  font-size: 1.8rem;
  color: var(--main-color);
  font-family: "stolzl", Arial, sans-serif;
  font-weight: 200;
  font-style: normal;
  background-color: var(--background-color);
  letter-spacing: .45px;
  line-height: 28px;
}

a {
  text-decoration: none;
  color: var(--main-color);
  transition: all 0.25s ease-in-out;

  &:visited {
    color: var(--main-color);
  }
  &:hover {
    color: var(--secondary-color);
  }
}

.button {
  display: inline-block;
  line-height: 1;
  border: 2px solid var(--main-color);
  background-color: transparent;
  color: var(--main-color);
  border-radius: 13px;
  white-space: nowrap;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px 20px;

  &.login-button {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2.2rem;
    padding: 8px 12px;
  }

  &.after-hour-button {
    padding: 11px 20px;
    font-size: 1.4rem;

    @media screen and (max-width: 1399px) {
      display: none !important;
    }
  }

  &.nav-after-hour-button {
    margin: 30px 0 0 30px;
    display: none;

    @media screen and (max-width: 1399px) {
      display: inline-block;
      font-size: 1.4rem;
    }
  }

  &:hover {
    background-color: var(--main-color);
    color: #fff;
  }
}

.menu-toggle {
  display: none !important;
}

p {
  margin: 0 0 1em 0; 

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

.mobile-only {
  display: none;
}

.desktop-display {
  display: block;

  @media screen and (max-width: 767px) {
    display: none !important;
  }
}

.mobile-display {
  display: none;

  @media screen and (max-width: 767px) {
    display: block !important;
  }
}

.desktop-only {
  display: block;
}

.left-in.animated {
  animation: left-in 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.left-in-delay.animated {
  animation: left-in 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.left-in-delay-2.animated {
  animation: left-in 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

.right-in.animated {
  animation: right-in 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.right-in-delay.animated {
  animation: right-in 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.right-in-delay-2.animated {
  animation: right-in 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

.bottom-in.animated {
  animation: bottom-in 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes left-in {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes right-in {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bottom-in {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.page-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  overflow: hidden;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1800px;
  padding: 0 45px;
}

.image-wrapper {
  overflow: hidden;
  & img {
    object-fit: cover;
    object-position: center center;
    height: 100%;
  }
}

.site-header {
  font-weight: 400;
  padding: 64px 0;
  .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .site-logo {
    display: block;
    width: 100%;
    max-width: 230px;
    margin-right: 10%;
    line-height: 0;
  }
}

.site-footer {
  font-size: 1.5rem;

  .inner-wrapper {
    padding: 108px 0;
    border-top: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
  }

  .footer-logo {
    width: 180px;
    margin-right: 160px;
    & img {
      width: 100%;
    }
  }

  .company-info {
    margin-right: 295px;
    font-weight: 400;
    font-size: 1.5rem;

    & a {
      gap: 30px;
      font-weight: 200;
      & span {
        display: block;
        width: 171px;
        font-weight: 400;
        &::after {
          content: "";
          display: block;
          width: 103px;
          height: 1px;
          background-color: var(--main-color);
          position: absolute;
          right: 0;
          bottom: 0;
        }
      }
    }
  }

  .company-contact {
    margin-top: 36px;
  }

  .footer-copyright {
    padding: 25px 0;
    font-weight: 400;
  }
}

.main-navigation {
  #menu-item-113 {
    display: none; 
  }

  .nav-menu {
    display: grid;
    max-width: 566px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 25%;
    grid-row-gap: 6px;
    font-size: 1.5rem;

    .menu-item {
      width: fit-content;

      &.current-menu-item {
        a {
          color: var(--secondary-color);
        }
      }

      & a {
        white-space: nowrap;
      }
    }
  }
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

.footer-menu {
  .menu-item {
    a{
      font-weight: 400;
      white-space: nowrap;
    }
  }
}

section {
  .row {
    padding: 60px 0;
    border-bottom: 2px solid var(--main-color);
  }

  &:last-child {
    .row {
      border-bottom: 0;
    }
  }

  & h1, & h2 {
    font-size: 5.5rem;
    line-height: 79px;
    letter-spacing: 1.38px;
    font-weight: 200;
    text-transform: uppercase;
  }

  & h3 {
    font-size: 2rem;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--secondary-color);
  }

  h4 {
    font-weight: 400;
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.header-button-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-button {
  width: 209px;
  height: 209px;
  border-radius: 100%;
  border: 2px solid var(--main-color);
  background-color: transparent;
  position: absolute;
  transition: all 0.25s ease-in-out;

  &::before {
    content: "";
    display: none;
    width: 209px;
    height: 209px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.25s ease-in-out;
    border: 3px solid var(--main-color);
    border-right: 0;
    border-bottom: 0;
    z-index: 1;
  }

  &.right-button {
    .button-wrapper {
      right: auto;
      left: 120px;
    }

    .button-wrapper {
      flex-direction: row-reverse;
    }

    .button-arrow {
      &::after, &::before {
        right: auto;
        left: 0;
      }

      &::after {
        transform: rotate(-45deg);
      }
  
      &::before {
        transform: rotate(45deg);
      }
    }
  }

  .button-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 30px;
    top: 60px;
    right: 120px;
    transition: all 0.5s ease-in-out;
  }

  .button-text {
    display: block;
    font-size: 1.5rem;
    letter-spacing: .38px;
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
    color: var(--main-color);
  }

  .button-arrow {
    position: relative;
    display: block;
    width: 160px;
    height: 2px;
    background-color: var(--main-color);
    transition: all 0.5s ease-in-out;

    &::after, &::before {
      position: absolute;
      content: '';
      width: 12px;
      height: 2px;
      background-color: var(--main-color);
      right: 0;
      transition: all 0.5s ease-in-out;
    }

    &::after {
      transform: rotate(45deg);
      bottom: 5px;
    }

    &::before {
      transform: rotate(-45deg);
      top: 5px;
    }
  }

  &:hover {
    .button-wrapper {
      transform: translateX(20px);
    }

    .button-text {
      color: var(--main-color);
    }

    &.right-button {
      .button-wrapper {
        transform: translateX(-20px);
      }
    }
  }
}

.switch-step-arrow {
  position: absolute;
  display: block;
  height: 2px;
  width: 90%;
  background-color: var(--main-color);
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 60px;

  &::after, &::before {
    position: absolute;
    content: '';
    width: 12px;
    height: 2px;
    background-color: var(--main-color);
    right: 0;
  }

  &::after {
    transform: rotate(45deg);
    bottom: 5px;
  }

  &::before {
    transform: rotate(-45deg);
    top: 5px;
  }
}

button.site-arrow-no-circle {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  margin-top: 38px;

  .button-arrow {
    width: 67px;
  }
}

.site-arrow-no-circle {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all .5s ease-in-out;

  &:hover {
    transform: translateX(20px);
  }

  .button-text {
    display: block;
    font-size: 1.5rem;
    letter-spacing: .38px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--main-color);
    white-space: nowrap;
  }

  .button-arrow {
    position: relative;
    display: block;
    width: 160px;
    height: 2px;
    background-color: var(--main-color);

    &::after, &::before {
      position: absolute;
      content: '';
      width: 12px;
      height: 2px;
      background-color: var(--main-color);
      right: 0;
    }

    &::after {
      transform: rotate(45deg);
      bottom: 5px;
    }

    &::before {
      transform: rotate(-45deg);
      top: 5px;
    }

  }
}

.image-wrapper {
  line-height: 0;
}
/* Home */

.home-banner {
  .container {
    z-index: 1;
  }
  .row {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .banner-wrapper {
    width: 100%;
    background-size: cover;
    background-position: center center;
    height: 860px;
    background-repeat: no-repeat;
    padding: 32px 60px;

    & h2 {
      margin-bottom: 10px;
    }

    & h3 {
      margin-bottom: 30px;
    }

    .banner-content {
      max-width: 340px;
    }
  }

  .banner-content-wrapper {
    padding: 60px 30px;
    max-width: 570px;

    .button {
      margin-top: 35px;
    }
  }
}

/* Owner Corporation */
.oc-banner {
  .banner-wrapper {
    gap: 70px;
    z-index: 2;

    .banner-heading {
      width: 100%;
      margin-bottom: 35px;
    }

    .button {
      margin-top: 35px;
    }

    .banner-content-wrapper {
      width: 100%;
      max-width: 650px;
    }

    .banner-image-wrapper {
      position: relative;
      width: 100%;
      max-width: 820px;
    }
  }

}

/* Property Management */
.pm-banner {
  .banner-wrapper {
    width: 100%;
    gap: 70px;
    justify-content: space-between;

    & h2 {
      margin-bottom: 35px;
    }

    .button {
      margin-top: 35px;
    }

    .banner-content-wrapper {
      width: 100%;
      max-width: 715px;
    }

    .banner-image-wrapper {
      position: relative;
      width: 100%;
      max-width: 820px;
    }
  }
}

/* Services */
.service-banner {
  .banner-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    z-index: 1;
  }
  .service-banner-heading {
    max-width: 700px;
  }

  .services-wrapper {
    display: grid;
    max-width: 865px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 56px;
    grid-row-gap: 72px;
  }

  .service-item {
    .image-wrapper {
      text-align: center;
      height: 78px;
      margin-bottom: 40px;
      
    }

    .service-heading {
      margin-bottom: 25px;
      @media screen and (max-width: 767px) {
        text-align: center;
      }
    }
  }

  .service-image-wrapper {
    position: absolute;
    max-width: 627px;
    left: 0;
    bottom: 120px;
    z-index: 0;
  }
}

/* Landmark */
.landmark-banner {
  .banner-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    z-index: 1;
  }

  .landmark-banner-heading {
    margin-bottom: 25px;
  }

  .landmark-banner-subheading {
    max-width: 506px;
  }

  .landmark-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 56px;
    grid-row-gap: 27px;
    font-size: 1.5rem;
    font-weight: 200;
    .image-wrapper {
      margin-bottom: 6px;
      & img {
        transition: all 1.5s ease-in-out;  
      }

      &:hover {
        img {
          transform: scale(1.1);
        }
      }
    }
  }

  .banner-content {
    max-width: 663px;
  }

  .landmark-image-wrapper {
    position: absolute;
    left: 0;
    bottom: 120px;
    z-index: 1;
  }

  .site-button {
    top: 0;
    right: 0;
    transform: translate(90px, -110px);
  }
}

/* Experience and Testimonial */
.et-banner {
  .experience-banner-wrapper {
    width: 100%;
    max-width: 563px;
    .et-banner-heading {
      max-width: 363px;
    }
  }

  .row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }

  h2 {
    margin-bottom: 1em;
  }

  .testimonial-wrapper {
    width: 100%;
    max-width: 853px;
  }

  .experience-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: fit-content;
    margin-left: auto;
    .experience-item {
      display: flex;
      flex-direction: column;
      width: 282px;
      height: 282px;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--main-color);
      border-radius: 100%;
      overflow: hidden;
      .experience-number {
        font-size: 5.5rem;
        margin-bottom: 25px;
      }
      .experience-unit {
        color: var(--secondary-color);
        max-width: 100px;
        text-align: center;
        font-weight: 400;
      }
    }
  }

  .testimonial-wrapper {
    border: 1px solid var(--secondary-color);
    font-size: 1.7rem;
    line-height: 25px;
    letter-spacing: .42px;
    max-height: 950px;
    overflow-y: auto;

    &::-webkit-scrollbar {
      width: 22px;
    }

    &::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
    }

    &::-webkit-scrollbar-thumb {
      background-color: #999;
    }

    .testimonial-item {
      padding: 30px;
      border-bottom: 1px solid var(--secondary-color);
      &:last-child {
        border-bottom: 0;
      }
    }

    .testimonial-content {
      margin-bottom: 25px;
      font-weight: 200;
    }

    .testimonial-author {
      color: var(--secondary-color);
      margin-bottom: 10px;
      font-weight: 300;
    }

    .testimonial-position {
      color: var(--secondary-color);
    }
  }

  .testimonial-banner-heading {
    max-width: 503px;
  }

  .banner-images-wrapper {
    position: absolute;
    left: 0;
    bottom: 407px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 45px;
  }
}

/* Explore Services */
.es-banner {
  .banner-wrapper {
    width: 100%;
    justify-content: space-between;
  }

  .row {
    z-index: 1;
    border-bottom: 0;
  }

  .banner-content-wrapper {
    width: 100%;
    max-width: 710px;
  }

  h2 {
    margin-bottom: 35px;
  }

  .es-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;

    .service-item {
      font-size: 2rem;
      font-weight: 400;
      letter-spacing: .5px;
    }
  }

  .banner-image-wrapper {
    width: 100%;
    max-width: 960px;
    & img {
      width: 100%;
    }
  }

  .es-banner-content {
    margin-bottom: 0;
  }
}

/* About Banner */
.about-banner {
  .row {
    padding-top: 0;
  }

  .banner-wrapper {
    padding: 32px 45px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    height: 865px;
    z-index: 1;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    .page-heading-wrapper {
      width: 100%;
      max-width: calc(100% - 760px);

      & h1 {
        margin-bottom: 10px;
      }
    }

    .banner-heading {
      width: 100%;
      max-width: 720px;
    }

    h1 {
      margin-bottom: 20px;
    }
  }
}

/* History Banner */
.history-banner {
  & h2 {
    margin-bottom: 100px;
  }

  .banner-content {
    display: flex;
    gap: 80px;

    > div {
      width: 100%;
    }
  }

}

/* Our Care Banner */
.our-care-banner {
  .banner-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;

    .banner-content {
      width: 100%;
      max-width: 605px;
    }

    h2 {
      margin-bottom: 30px;
      max-width: 425px;
    }
  }

  .banner-image-wrapper {
    position: relative;
  }
}

/* Leadership Banner */
.leadership-banner {
  h2 {
    margin-bottom: 50px;
  }
  .banner-images {
    position: relative;
    display: flex;
    gap: 100px;

    .banner-image-wrapper {
      width: 100%;
      max-width: 756px;
    }

    h3 {
      font-size: 4.3rem;
      letter-spacing: 1.07px;
      line-height: 48px;
      color: var(--main-color);
      font-weight: 200;
      position: relative;
      z-index: 1;
    }

    .leader-position {
      font-size: 2.9rem;
      letter-spacing: .72px;
      line-height: 48px;
      font-weight: 200;
      position: relative;
      z-index: 1;
      margin-bottom: 40px;
    }

    .image-wrapper {
      width: 100%;
      position: relative;
      margin-bottom: 45px;
      aspect-ratio: 8/5;

      .second-image {
        opacity: 0;
        visibility: hidden;
      }

      &:hover {
        .main-image {
          opacity: 0;
          visibility: hidden;
        }

        .second-image {
          opacity: 1;
          visibility: visible;
        }
      }

      > img {
        width: 100%;
        height: 100%;
        transition: all 0.5s ease-in-out;
        position: absolute;
        top: 0;
        left: 0;
      }

    }
  }
}

/* Team Banner */
.team-banner {
  h2 {
    margin-bottom: 55px;
  }

  .team-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 90px;
    grid-row-gap: 45px;
    
    @media screen and (min-width: 1400px) {
      padding-inline: 30px;
    }
  }

  .image-wrapper {
    margin-bottom: 30px;
    position: relative;
    aspect-ratio: 1/1;
    max-width: 358px;

    & img {
      width: 100%;
      height: 100%;
      transition: all 0.5s ease-in-out;
      position: absolute;
      top: 0;
      left: 0;
    }

    .second-staff-image {
      opacity: 0;
      visibility: hidden;
    }

    &:hover {
      .main-staff-image {
        opacity: 0;
        visibility: hidden;
      }

      .second-staff-image {
        opacity: 1;
        visibility: visible;
      }
    }
  }

  .team-name {
    font-size: 3.5rem;
    letter-spacing: .88px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 200;
  }

  .team-role {
    font-size: 2.5rem;
    letter-spacing: .63px;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 20px;
    height: 80px;

  }
}

/* Values Banner */
.values-banner {
  h2 {
    margin-bottom: 60px;
  }

  .values-wrapper {
    display: flex;
    gap: 25px;
    justify-content: center;

    .values-item {
      width: 100%;
      max-width: 380px;
      aspect-ratio: 1/1;
      border: 2px solid var(--main-color);
      border-radius: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
      gap: 20px;

      .values-heading {
        font-size: 1.5rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: .38px;
        line-height: 24px;
        max-width: 250px;

      }
      .values-content {
        font-size: 1.4rem;
        letter-spacing: .35px;
        line-height: 22px;
        max-width: 250px;
      }
    }  
  }
}

/* Help Banner */
.help-banner {
  .banner-wrapper {
    width: 100%;
    gap: 90px;
    justify-content: space-between;
  }

  h2 {
    margin-bottom: 25px;
  }

  h3 {
    margin-bottom: 30px;
    max-width: 340px;
  }

  .banner-content-wrapper {
    width: 100%;
    max-width: 705px;
  }

  .banner-image-wrapper {
    width: 100%;
    max-width: 906px;
    & img {
      width: 100%;
    }
  }
}

/* Property Management First Banner */
.property-management-first-banner {
  .row {
    padding-top: 0;
  }

  .banner-wrapper {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 860px;
    padding: 32px 45px;

    & h1 {
      margin-bottom: 70px;
      max-width: 350px;
    }

    .pm-first-banner-content {
      max-width: 450px;
    }
  }
}

/* Property Management Expert Banner */
.expert-banner {
  .banner-wrapper {
    display: flex;
    gap: 100px;
    position: relative;

    h2 {
      width: 100%;
      margin-bottom: 70px;
    }

    .banner-content-wrapper {
      width: 100%;
      max-width: 700px;

      &:last-child {
        max-width: 604px;
      }
    }
  }
}

/* Comprehensive Banner */
.comprehensive-banner {
  .row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
  }

  .banner-wrapper {
    width: 100%;
    max-width: 650px;

    h2 {
      margin-bottom: 10px;
    }

    .banner-content {
      max-width: 325px;
    }
  }

  .property-management-wrapper {
    display: flex;
    width: 100%;
    max-width: 873px;
    flex-direction: column;

    .property-management {
      padding: 45px 0;
      border-bottom: 1px solid var(--main-color);

      &:last-child {
        border-bottom: 0;
        padding-bottom: 0;
      }
    }

    .property-management-inner-wrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 20px;
    }

    h4 {
      font-size: 3rem;
      letter-spacing: .75px;
      line-height: 40px;
      text-transform: uppercase;
      font-weight: 300;
      margin-bottom: 30px;
    }

    .property-management-item {
      display: flex;
      gap: 25px;
      flex-direction: column;
      max-width: 240px;
    }

    .property-management-heading {
      font-size: 1.5rem;
      letter-spacing: .38px;
      line-height: 30px;
      text-transform: uppercase;
      font-weight: 400;
    }
  }

  .banner-image-wrapper {
    position: absolute;
    left: 0;
    bottom: 120px;
    z-index: 0;
    max-width: 856px;
  }
}

/* Owner Corporation First Banner */
.oc-first-banner {
  
  .banner-wrapper {
    width: 100%;
    padding: 32px 45px;
    height: 860px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    h1 {
      margin-bottom: 70px;
      @media screen and (min-width: 768px) {
        color: #fff;  
      }
    }
    
    .banner-content {
      width: 100%;
      max-width: 435px;
      margin-bottom: 100px;
      @media screen and (min-width: 768px) {
        color: #fff;  
      }
    }
  }
}

/* Every Property */
.every-property-banner {
  .banner-wrapper {
    display: flex;
    gap: 100px;
    z-index: 1;
    position: relative;
    flex-direction: row-reverse;

    .banner-content {
      width: 100%;
      max-width: 435px;
      margin-top: 45px;
      margin-bottom: 35px;
    }
    h2 {
      width: 100%;
      max-width: 516px;
    }
  }
  .banner-content-wrapper {
    width: 100%;
  }

  .banner-image-wrapper {
    width: 100%;
    max-width: 856px;
  }
}

/* attentive service Banner */
.attentive-service-banner {
  .row {
    display: flex;
    gap: 40px;
    justify-content: space-between;
  }
  .banner-wrapper {
    width: 100%;
    max-width: 700px;

  }

  .banner-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .banner-content {
    width: 100%;
    max-width: 442px;
  }

  .banner-image-wrapper {
    position: relative;
    max-width: 845px;
  }

}

/* Switch Owner Corporation */
.switch-oc-banner {
  .banner-wrapper {
    h2 {
      margin-bottom: 60px;
    }

    .switch-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-column-gap: 35px;
      margin-bottom: 120px;

      .step-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 35px;
        aspect-ratio: 1/1;
        border: 100%;
        border-radius: 100%;
        border: 2px solid var(--main-color);
      }
    }
  }

  .banner-image-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;

    .image-wrapper {
      width: 100%;
      max-width: 845px;
    }

    .banner-content-wrapper {
      max-width: 500px;
      width: 100%;
    }

    .banner-image-wrapper-heading {
      font-size: 3rem;
      letter-spacing: .75px;
      line-height: 50px;
      text-transform: uppercase;
      color: var(--main-color);
      font-weight: 200;
      margin-bottom: 45px;

    }
  }
}

/* Why Us First Banner */
.why-first-banner {
  .banner-wrapper {
    display: flex;
    height: 860px;
    padding: 32px 45px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    gap: 40px;
    position: relative;
    gap: 300px;

    .page-heading-wrapper {
      width: 100%;
      max-width: 502px;
      @media screen and (min-width: 768px) {
        color: #fff;  
        
      }

      h1 {
        margin-bottom: 40px;
        @media screen and (min-width: 768px) {
          color: #fff;  
        }
      }
    }

  }

  .banner-image-wrapper {
    position: relative;
    max-width: 826px;

    h2 {
      margin: 0 0 -140px -67px;
      position: relative;
      z-index: 1;

      @media screen and (min-width: 768px) {
        color: #fff;  
      }
    }
  }

  .site-button{
    position: absolute;
    left: -120px;
    bottom: -40px;
    z-index: 1;
  }
}

/* Why Us Banner */
.why-us-banner {
  .container {
    z-index: 1;
  }

  h2 {
    margin-bottom: 30px;
  }

  .banner-wrapper {
    display: flex;
    gap: 70px;
  }

  .banner-image-wrapper {
    position: relative;
    max-width: 784px;
  }

  .why-us-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 70px;
    grid-row-gap: 70px;

    .service-item {
      display: flex;
      gap: 25px;
      flex-direction: column;
      max-width: 290px;

      .service-heading {
        margin-bottom: 15px;
      }
    }
  }

}

/* Trusted Experts Banner */
.trusted-experts-banner {
  .banner-wrapper {
    position: relative;
    display: flex;
    gap: 40px;
    justify-content: space-between;

    h2 {
      margin-bottom: 40px;
    }

    .banner-content {
      width: 100%;
      margin-bottom: 45px;
    }

    .banner-content-wrapper {
      width: 100%;
      max-width: 720px;
    }
  }

  .banner-image-wrapper {
    width: 100%;
    max-width: 862px;
  }

}

/* Contact Us First Banner */
.contact-first-banner {
  h1 {
    margin-bottom: 80px;
  }

  .banner-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;
  }

  .banner-content-wrapper {
    display: flex;

    .banner-content-inner-wrapper {
      width: 100%;
      max-width: 355px;
      padding: 15px 0;
      padding-right: 40px;
      display: flex;
      flex-direction: column;
      gap: 150px;

      &:last-child {
        max-width: 404px;
        padding-left: 30px;
        padding-right: 0;
      }

      .banner-content-item {
        margin-bottom: 25px;
        &:last-child {
          margin-bottom: 0;
        }
      }
    }
  }

  .banner-map {
    width: 100%;
    max-width: 855px;
    aspect-ratio: 32/25;
    filter: grayscale(1);
  }

}

.how-banner {
  .container {
    z-index: 1;
  }
  .banner-wrapper {
    max-width: 855px;
    margin-left: auto;
    h2 {
      margin-bottom: 32px;
    }

    .banner-content {
      margin-bottom: 60px;
    }

  }

  .banner-image-wrapper {
    position: absolute;
    max-width: 855px;
    left: 0;
    top: 100px;
  }

  .contact-form {
    width: 100%;
    max-width: 528px;
  }

  .fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 63px;
    grid-row-gap: 45px;
    margin-bottom: 45px;
  }

  .textarea-field, .field {
    .label {
      font-size: 1.6rem;
      font-weight: 200;
      letter-spacing: 0;
      line-height: 19px;
      margin-bottom: 10px;
      display: block;
    }

    input, textarea {
      background-color: transparent;
      line-height: 32px;
      border: 1px solid var(--main-color);
      padding: 0;
      outline: 0;
      border-radius: 0;
    }

    textarea {
      height: 191px;
    }
  }
}

/* Contact Links Banner */
.contact-link-banner {
  .row {
    display: flex;
    gap: 105px;
    justify-content: center;
  }

  .banner-wrapper {
    width: 100%;
    max-width: 400px;
    font-size: 1.7rem;
    letter-spacing: 0;
    line-height: 27px;
    color: var(--secondary-color);

    .link-heading {
      font-weight: 300;
      margin-bottom: 5px;
    }

    .link-content {
      margin-bottom: 25px;
    }

    .site-arrow-no-circle {
      .button-arrow {
        width: 67px;
      }
    }

  }
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.modal {
  display: none;
  width: 100%;
  margin: auto;
  position: fixed;
  max-width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  z-index: 999;
  height: 60dvh;
  overflow-y: scroll;
  border: 2px solid var(--main-color);

  .modal-top-wrapper {
    padding: 20px 30px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    background-color: var(--secondary-color);
    color: white;

    @media screen and (max-width: 767px) {
      padding: 20px 15px;
    }
  }

  h2 {
    font-weight: 200;

    @media screen and (max-width: 767px) {
      font-size: 1.8rem;
    }
  }

  .modal-content {
    padding: 20px 30px 20px;

    @media screen and (max-width: 767px) {
      padding: 20px 15px;
    }
  }

  .modal-toggle {
    padding: 0 30px 30px; 

    @media screen and (max-width: 767px) {
      padding: 0 15px 15px;
    }
  }

  .modal-close {
    position: absolute;
    top: 22px;
    right: 20px;
    cursor: pointer;

    &::before, &::after {
      content: '';
      position: absolute;
      width: 2px;
      height: 20px;
      background-color: white;
    }

    &::before {
      transform: rotate(45deg);
    }

    &::after {
      transform: rotate(-45deg);
    }
  }

  .modal-toggle-item {
    border-bottom: 2px solid #fff;

    .modal-toggle-item-heading {
      font-size: 1.5rem;
      font-weight: 200;
      padding: 10px;
      background-color: var(--background-color);
      color: #fff;
      cursor: pointer;
    }

    .modal-toggle-item-heading {
      text-transform: uppercase;
    }

    .modal-toggle-item-content {
      padding: 10px;
      border: 1px solid var(--background-color);
      display: none;
    }
  }
}

@media screen and (max-width: 1799px) {
  section {
    & h1, & h2 {
      font-size: 4.5rem;
      line-height: 64px;
    }

    & h3 {
      font-size: 1.8rem;
      line-height: 27px;
    }
  }

  .team-banner {
    .team-name {
      font-size: 3rem;
    }

    .team-role {
      font-size: 2rem;
    }
  }

  .comprehensive-banner {
    .banner-image-wrapper {
      max-width: 650px;
    }
  }

  .help-banner {
    height: 642px;

    .banner-wrapper {
      height: 442px;
    }
    .site-button {
      right: 0
    }
  }

  .how-banner {
    .banner-wrapper {
      max-width: 50%;
    }

    .banner-image-wrapper {
      max-width: calc(100% - 55%);
    }
  }
}

@media screen and (max-width: 1599px) {
  .site-header {
    .site-logo {
      max-width: 180px;
    }
  }

  .main-navigation {
    .nav-menu {
      grid-column-gap: 10%;
      grid-row-gap: 0;
    }
  }
}

@media screen and (max-width: 1499px) {
  .site-button {
    width: 150px;
    height: 150px;

    &.right-button {
      .button-wrapper{
        left: 80px;
        top: 50px;
      }
    }

    .button-wrapper {
      gap: 15px;
      top: 40px;
      right: 100px;
    }

    .button-text {
      font-size: 1.4rem;
    }

    .button-arrow {
      width: 100px;
    }
  }

  .site-arrow-no-circle {
    .button-arrow {
      width: 100px;
    }
  }

  .site-header {
    .site-logo {
      position: relative;
      z-index: 999;
      margin-right: 60px;
    }
  }

  .main-navigation {
    .nav-menu {
      grid-column-gap: 10px;
    }
  }

  section {
    & h1, & h2 {
      font-size: 4rem;
      line-height: 58px;
    }

    & h3 {
      font-size: 1.6rem;
      line-height: 24px;
    }
  }

  .landmark-banner {
    .site-button {
      top: 30px;
      right: 20px;
    }
  }

  .et-banner {
    .experience-wrapper {
      .experience-item {
        width: 220px;
        height: 220px;

        .experience-number {
          font-size: 4rem;
        }

        .experience-unit {
          font-size: 1.6rem;
        }
      }
    }

    .testimonial-wrapper {
      max-width: 800px;
      font-size: 1.4rem;
      .testimonial-item {
        padding: 20px;
      }
    }
  }

  .es-banner {
    .es-features-wrapper {
      .service-item {
        font-size: 1.8rem;
      }
    }

    .banner-image-wrapper {
      width: 100%;
      max-width: 800px;
      height: 511px;
      bottom: 100px;
    }
  }

  .about-banner {
    .banner-image-wrapper {
      margin-top: -140px;
    }
  }

  .leadership-banner {
    .banner-images {
      h3 {
        font-size: 3.5rem;
        line-height: 40px;
      }

      .leader-position {
        font-size: 2rem;
        line-height: 40px;
      }

      .leader-description {
        max-width: 100%;
      }

      .leadership-feedback{
        margin-top: 30px;
        max-width: 100%;
        position: static;
      }
    }
  }

  .team-banner {
    .team-wrapper {
      grid-template-columns: repeat(3, 1fr);
      grid-column-gap: 50px;
      grid-row-gap: 30px;
    }

    .team-name {
      font-size: 2.5rem;
    }

    .team-role {
      font-size: 1.8rem;
    }
  }

  .values-banner {
    .values-wrapper {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 50px;
      grid-row-gap: 50px;
    }
  }

  .switch-step-arrow {
    bottom: 30px;
  }

  .switch-oc-banner {
    .banner-wrapper {
      .switch-steps {
        grid-column-gap: 15px;
      }
    }
  }

  .every-property-banner {
    .banner-image-wrapper {
      width: 100%;
      max-width: 50%;
    }

    .site-button {
      left: -100px;
      bottom: -40px;
    }
  }

  .expert-banner {
    .banner-main-image {
      width: 100%;
      max-width: 50%;
    }
  }

  .comprehensive-banner {
    .banner-image-wrapper {
      max-width: 50%;
    }
  }

  .oc-banner {
    .banner-wrapper {
      .banner-content {
        max-width: 50%;
      }
    }

    .banner-image-wrapper {
      width: 100%;
      max-width: 50%;
    }
  }

  .pm-banner {
    .image-wrapper {
      width: 100%;
      max-width: 50%;
    }
  }

  .oc-banner {
    .site-button {
      left: 48%;
    }
  }

  .site-footer {
    .footer-logo {
      margin-right: 100px;
    }

    .company-info {
      margin-right: 150px;
    }
  }
}

@media screen and (max-width: 1399px) {
  .site-header {
    position: sticky;
  }

  #menu-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 999;
    gap: 10px;
    & span {
      display: block;
      width: 45px;
      height: 2px;
      background-color: var(--main-color);
      transition: all .3s ease-in-out;
    }

    &.active {
      span {
        &:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
        }
        &:nth-child(2) {
          display: none;
        }
        &:nth-child(3) {
          transform: rotate(-45deg) translate(5px, -5px);
        }
      }
    }
  }

  .main-navigation, .login-link {
    display: none;
  }
  
}

@media screen and (max-width: 1199px) {
  .container {
    padding: 0 30px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block !important;
  }

  .site-footer {
    .inner-wrapper {
      padding: 45px 0;
      flex-direction: column;
      gap: 30px;
    }

    .footer-logo {
      margin-right: 0;
    }

    .company-info {
      margin-right: 0;
      font-size: 1.4rem;
    }

    .footer-menu {
      margin: 0;
      padding: 0;
    }
  }

  .site-button {
    width: 120px;
    height: 120px;

    .button-wrapper {
      gap: 10px;
      top: 30px;
      right: 80px;
    }

    .button-arrow {
      width: 120px;
    }

    .button-text {
      font-size: 1.2rem;
      white-space: wrap;
    }
  }

  section {
    & h1, & h2 {
      font-size: 3.5rem;
      line-height: 48px;
    }

    .row {
      padding: 45px 0;
    }
  }

  .site-arrow-no-circle {
    .button-arrow {
      width: 80px;
    }

    .button-text {
      font-size: 1.2rem;
      color: var(--main-color);
    }
  }

  .site-header {
    position: sticky;
    top: 0;
    padding: 45px 0 ;
    background-color: var(--background-color);
    z-index: 999;
  }

  .contact-first-banner {
    .image-wrapper {
      display: none;
    }

    h1 {
      margin-bottom: 45px;
    }
  }

  .how-banner {
    .fields {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .banner-wrapper {
      .banner-content {
        margin-bottom: 30px;
      }
    }

    .textarea-field, .field {
      .label {
        font-size: 1.4rem;
      }

      input, textarea {
        font-size: 1.4rem;
      }
    }
  }

  .main-navigation {
    display: block;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #efefef;
    z-index: 998;
    padding: 145px 0 0;
    transition: all .5s ease-in-out;
    transform: translateX(-100%);
    &.active {
      display: block;
      transform: translateX(0);
      visibility: visible;
      opacity: 1;
    }

    #menu-item-113 {
      display: block;
    }

    .nav-menu {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding: 0 30px;
    }

    .menu-item {
      font-size: 2.3rem;
      font-weight: 200;
      letter-spacing: .45px;
      line-height: 27px;
      text-transform: uppercase;
      color: white;
    }
  }

  .home-banner {
    .row {
      padding-top: 0;
    }
    .banner-wrapper {
      position: static !important; 
      .banner-content {
        max-width: 100%;
      }
    }

    .banner-small-image {
      display: none;
    }

    .row {
      flex-direction: column;
    }

    .banner-content-wrapper {
      padding-top: 30px;
    }

    .banner-image-wrapper {
      margin-left: 0;
      padding-bottom: 50px;

      .site-button {
        transform: translate(0, 0);
        right: 0;
        left: auto;
      }
    }

    h2 {
      margin-bottom: 20px;
    }

    h3 {
      margin-bottom: 20px;
    }
  }

  .oc-banner {
    .banner-wrapper {
      flex-direction: column-reverse;
      gap: 40px;

      .banner-heading {
        max-width: 100%;
      }

      .banner-content {
        max-width: 100%;
      }

      .banner-content-wrapper {
        padding: 0 15px;
      }
    }

    .oc-image-wrapper {
      display: none !important;
    }

    .banner-image-wrapper {
      max-width: 100%;
      margin-left: 0;
    }

    .site-button {
      left: 0;
      bottom: 15px;
    }
  }

  .pm-banner {
    .banner-wrapper {
      flex-direction: column;
      gap: 40px;
      .banner-content {
        max-width: 100%;
      }

      .banner-content-wrapper {
        padding: 0 15px;
      }
    }
    .banner-small-image {
      display: none;
    }

    .image-wrapper {
      max-width: 100%;
      position: static;
    }

    .pm-button-wrapper {
      margin-top: 30px;
    }

  }

  .service-banner {
    .banner-wrapper {
      gap: 30px;
      flex-direction: column;
      padding: 0 15px;
    }

    .services-wrapper {
      max-width: 100%;
    }

    .service-image-wrapper {
      position: static;
      margin-top: 30px;
    }
  }

  .landmark-banner {
    .banner-wrapper {
      gap: 30px;
      flex-direction: column;
    }

    .landmark-wrapper {
      max-width: 100%;
    }

    .banner-image-wrapper {
      display: none;
    }

    .banner-content {
      padding: 0 15px;
    }
  }

  .et-banner {
    .banner-images-wrapper {
      display: none;
    }

    .row {
      flex-direction: column;
      gap: 30px;  
    }

    .experience-wrapper {
      width: 100%;
      max-width: 100%;
      flex-direction: row;

      .experience-item {
        aspect-ratio: 1/1;
      }
    }

    .experience-banner-wrapper {
      max-width: 100%;
    }
  }

  .es-banner {
    .banner-wrapper {
      flex-direction: column;
      gap: 30px;

      .banner-content {
        max-width: 100%;
      }

      .banner-content-wrapper {
        padding: 0 15px;
      }
    }
    .banner-image-wrapper {
      position: static;
    }

    h3 {
      margin-bottom: 30px;
    }

    .es-features-wrapper {
      .service-item {
        font-size: 1.4rem;
      }
    }

    .site-button {
      left: 0;
      z-index: 1;
      bottom: -150px;
      transform: translate(0, 0);
    }
  }

  .about-banner {
    .row {
      padding-top: 0;
    }

    .banner-wrapper {
      flex-direction: column;
      gap: 30px;

      .page-heading-wrapper {
        max-width: 100%;
      }

    }

    .banner-image-wrapper {
      position: static;
      max-width: 100%;
      margin-top: 30px;
      padding-bottom: 80px;
    }

    .site-button {
      right: 0;
      bottom: 20px;
    }
  }

  .history-banner {
    h2 {
      margin-bottom: 30px;
      padding: 0 15px;
    }

    .banner-content {
      flex-direction: column;
      gap: 30px;

      .banner-content-detail {
        padding: 0 15px;
      }
    }
  }

  .our-care-banner {
    .banner-wrapper {
      flex-direction: column;
      gap: 30px;

      .banner-content {
        max-width: 100%;
        padding: 0 15px;
      }
    }
    .site-button {
      right: 0;
      left: auto;
      bottom: -20px;
    }
  }

  .leadership-banner {
    h2 {
      margin-bottom: 20px;
      padding: 0 15px;
    }

    .banner-images {
      flex-direction: column;
      gap: 30px;

      .leader-description {
        max-width: 100%;
        padding: 0 15px;
      }

      .image-wrapper {
        margin-bottom: 25px;
      }

      .leadership-feedback {
        max-width: 100%;
      }

      h3 {
        font-size: 2rem;
        font-weight: 400;
        padding-left: 15px;
        padding-right: 15px;
      }

      .leader-position {
        font-size: 1.4rem;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 25px;
      }

      .image-wrapper {
        max-width: 100%;
        margin-top: 20px;
      }
    }
  }

  .team-banner {
    h2 {
      margin-bottom: 30px;
      padding: 0 15px;
      font-weight: 400;
    }

    .team-wrapper {
      display: flex;
      flex-direction: column;
      gap: 45px;
    }

    .team-name {
      font-size: 2rem;
      margin-bottom: 0;
    }

    .team-content {
      padding: 0 15px;
    }

    .team-role {
      font-size: 1.4rem;
      height: auto;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .image-wrapper {
      margin-bottom: 10px;
    }
  }

  .values-banner {
    h2 {
      margin-bottom: 30px;
      padding: 0 15px;
    }

    .values-wrapper {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }
  }

  .help-banner {
    h2 {
      margin-bottom: 30px;
    }

    .banner-wrapper {
      gap: 30px;
      flex-direction: column;
    }

    .banner-content-wrapper {
      padding: 0 15px;
    }

    .banner-image-wrapper {
      margin-top: 15px;
    }
  }

  #ready-help-banner {
    height: auto;

    .banner-wrapper {
      max-width: 100%;
      height: auto;
    }

    .banner-image-wrapper {
      position: static;
      width: 100%;
      height: auto;
    }

    h3 {
      max-width: 100%;
    }
  }

  .property-management-first-banner {
    .row {
      padding-top: 0;
    }
    .banner-wrapper {
      gap: 30px;
      flex-direction: column;

      .page-heading-wrapper {
        max-width: 100%;
      }

      h2 {
        margin-bottom: 30px;
      }
    }

    .pm-first-content-wrapper {
      max-width: 100%;
    }

    .banner-image-wrapper {
      max-width: 100%;
      margin-left: 0;
      padding-bottom: 80px;
    }

    .site-button {
      right: 0;
      left: auto;
      bottom: -20px;
    }
  }

  .expert-banner {
    .banner-wrapper {
      gap: 30px;
      flex-direction: column;
      height: auto;

      .banner-content {
        margin-top: 0;
        max-width: 100%;
      }

      h2 {
        margin-bottom: 30px;
      }
    }

    .banner-content-wrapper {
      padding: 0 15px;
    }

    .banner-small-image {
      display: none;
    }

    .banner-main-image {
      position: static;
      max-width: 100%;
    }
  }

  #comprehensive-banner {
    .row {
      flex-direction: column;
      gap: 30px;
    }

    .banner-wrapper {
      .banner-content {
        max-width: 100%;
      }
    }

    h2 {
      padding: 0 15px;
      margin-bottom: 0;
    }

    .banner-image-wrapper {
      position: static;
      max-width: 100%;
    }

    .property-management-wrapper {
      max-width: 100%;

      .property-management {
        padding: 30px 0;

        &:first-child {
          padding-top: 0;
        }

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

      .property-management-inner-wrapper {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap: 20px;
      }

      h4 {
        font-size: 2rem;
        margin-bottom: 10px;
      }

      .property-management-item {
        max-width: 100%;
        gap: 10px;
      }

      .property-management-heading {
        font-size: 1.4rem;
      }
    }
  }

  .contact-first-banner {
    .row {
      padding-top: 0;
    }

    h1 {
      margin-bottom: 30px;
    }

    .banner-content {
      flex-direction: column;
      gap: 30px;
    }

    .banner-content-wrapper {
      flex-direction: column;
      padding: 0 15px;

      .banner-content-inner-wrapper {
        max-width: 100%;
        padding: 0;
        gap: 15px;

        &:last-child {
          border-left: 0;
          padding-left: 0;
          padding-top: 20px;
          margin-top: 20px;
          border-top: 1px solid var(--main-color);
        }

        .banner-content-item {
          margin-bottom: 0;
        }
      }
    }
  }

  #form-banner {
    h2 {
      margin-bottom: 30px;
    }
    .banner-wrapper {
      width: 100%;
      max-width: 100%;
      padding: 0 15px;
    }

    .banner-image-wrapper {
      display: none;
    }
  }

  .contact-link-banner {
    .row {
      flex-direction: column;
      gap: 30px;
    }

    .banner-wrapper {
      font-size: 1.4rem;
      
      .link-heading {
        font-size: 1.6rem;
        font-weight: 400;
      }
    }
  }

  .why-first-banner {
    .banner-wrapper {
      gap: 30px;
      flex-direction: column;

      .page-heading-wrapper {
        max-width: 100%;
      }

      h2 {
        margin-bottom: 30px;
      }
    }

    .banner-image-wrapper {
      max-width: 100%;
      padding-bottom: 30px;
      margin-bottom: 10px;
      
      h2 {
        margin: 0 0 30px 0;
      }
    }

    .site-button {
      left: auto;
      right: 0;
      bottom: -25px;
    }
  }

  .why-us-banner {
    .banner-wrapper {
      gap: 30px;
      flex-direction: column;
    }

    .why-us-list {
      grid-column-gap: 15px;
      grid-row-gap: 15px;
      padding: 0 15px;
    }

    .page-heading {
      padding: 0 15px;
    }

    .banner-small-image-wrapper {
      display: none;
    }
  }

  .trusted-experts-banner {
    .banner-wrapper {
      gap: 30px;
      flex-direction: column;

      h2 {
        margin-bottom: 30px;
      }
    }

    .banner-image-wrapper {
      margin-top: 30px;
      max-width: 100%;
      padding-bottom: 70px;
      position: static;
    }

    .site-button {
      left: auto;
      right: 0;
      bottom: -25px;
    }
  }

  .oc-first-banner {
    .row {
      padding-top: 0;
      gap: 30px;
      flex-direction: column;
    }

    .banner-wrapper {
      .banner-content {
        margin-bottom: 30px;
      }
    }

    .site-arrow-no-circle {
      margin-bottom: 10px;
    }

    .banner-image-wrapper {
      max-width: 100%;
    }

    h2 {
      margin: 0 0 30px 0;
    }
  }

  .every-property-banner {
    .banner-wrapper {
      height: auto;
      gap: 30px;
      flex-direction: column;
      max-width: 100%;

      h2 {
        margin-bottom: 20px;
      }

      .banner-content {
        max-width: 100%;
        margin-top: 0;
      }

      .banner-content-wrapper {
        padding: 0 15px;
      }
    }

    .banner-image-wrapper {
      max-width: 100%;
      position: static;
    }

    .banner-small-image-wrapper {
      display: none;
    }
  }

  .attentive-service-banner {
    .row {
      gap: 30px;
      flex-direction: column;
    }

    .banner-wrapper {
      max-width: 100%;
    }

    .banner-image-wrapper {
      max-width: 100%;
      position: static;
    }

    .banner-content-wrapper {
      flex-direction: column;
      gap: 30px;
      padding: 0 15px;
    }

    .banner-content, .banner-testimonial {
      max-width: 100%;
    }
  }

  .switch-oc-banner {
    .banner-wrapper {
      display: flex;
      gap: 30px;
      flex-direction: column;

      h2 {
        margin-bottom: 30px;
      }
      .switch-steps {
        flex-wrap: wrap;
        display: flex;
        gap: 15px;
        margin-bottom: 30px;

        .step-content {
          width: 100%;
          max-width: calc((100% - 30px) / 3);
        }
      }

    }

    .banner-image-wrapper {
      max-width: 100%;
      flex-direction: column;
      gap: 30px;

      .banner-content-wrapper {
        padding: 0 15px;
      }

      .banner-image-wrapper-heading {
        position: static;
        margin: 0;
        max-width: 100%;
        margin-bottom: 30px;
      }
    }

    .switch-step-arrow {
      display: none;
    }

    .banner-small-image-wrapper {
      display: none;
    }

    .site-button {
      left: auto;
      right: 0;
      bottom: 25px;
    }
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }

  section {
    & h1, & h2 {
      font-size: 3rem;
      line-height: 42px;
    }

    & h3 {
      font-size: 1.6rem;
      line-height: 21px;
    }
  }

  .site-header {
    padding: 30px 0;
    .site-logo {
      max-width: 150px;
    }
  }

  
  .about-banner, .oc-first-banner, .why-first-banner {
    h1 {
      margin-bottom: 20px;
    }

    h2 {
      margin-bottom: 20px;
      font-size: 1.6rem;
      line-height: 21px;
      color: var(--secondary-color);
      font-weight: 400;
      
      & br {
        display: none;
      }
    }
  }

  .home-banner, .about-banner, .oc-first-banner, .why-first-banner, .property-management-first-banner {
    .row {
      gap: 0;
      padding-bottom: 15px;
    }

    .banner-wrapper {
      padding: 30px;
      width: 100%;
      height: auto;
      aspect-ratio: 2/1;
    }

    .banner-content-wrapper {
      padding: 30px 15px;
    }
  }

  .site-footer {
    .footer-copyright {
      flex-direction: column;
      font-size: 1.3rem;
      text-align: center;
    }

    .company-info {
      a {
        gap: 15px;
        span {
          width: 140px;

          &::after {
            width: 77px;
          }
        }
      }
    }
  }

  .service-banner {
    .services-wrapper {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .service-item {
      .image-wrapper {
        height: 50px;
      }

      .service-heading {
      }
    }
  }

  .landmark-banner {
    .landmark-wrapper {
      grid-template-columns: repeat(2, 1fr);
      grid-column-gap: 5px;
      grid-row-gap: 5px;
    }
  }

  .et-banner {
    .experience-wrapper {
      flex-direction: column;
      gap: 15px;
      align-items: center;
      .experience-item {
        .experience-number {
          font-size: 3rem;
        }

        .experience-unit {
          font-size: 1.4rem;
        }
      }
    }
  }

  .et-banner {
    .testimonial-wrapper {
      &::-webkit-scrollbar {
        width: 12px;
      }
    }
  }

  .why-us-banner {
    .why-us-list {
      grid-template-columns: repeat(1, 1fr);
      grid-column-gap: 0;
      grid-row-gap: 15px;
    }
  }

  .switch-oc-banner {
    .banner-wrapper {
      .switch-steps {
        .step-content {
          max-width: 100%;
        }
      }
    }
  }

  .property-management-first-banner {
    .row {
      padding-bottom: 0;
      border-bottom: 0;
    }
  }
}