:root {
  --custom-font-family-light: "proxima-nova-light";
  --custom-font-family: "proxima-nova-regular";
  --custom-font-family-medium: "proxima-nova-medium";
  --custom-font-family-semibold: "proxima-nova-semibold";
  --custom-font-family-bold: "proxima-nova-bold";

  --custom-color-one: #427ee4;
  --custom-color-one-hover: #356ac5;

  --custom-color-gray: #dddddd;
  --custom-color-gray-two: #f5f5f5;

  --custom-color-positive: #62DA87;
  --custom-color-negative: #F46464;

  --custom-font-size-one: 14px;
  --custom-font-size-two: 16px;
  --custom-font-size-three: 18px;
  --custom-font-size-four: 20px;
  --custom-font-size-five: 24px;
  --custom-font-size-six: 28px;
  --custom-font-size-seven: 34px;
  --custom-font-size-eight: 40px;
  --custom-font-size-nine: 45px;
  --custom-font-size-ten: 50px;

  --custom-spacing-one: 20px;
  --custom-spacing-two: 40px;
  --custom-spacing-three: 60px;
  --custom-spacing-four: 80px;
  --custom-spacing-five: 100px;
  --custom-spacing-six: 120px;
  --custom-spacing-seven: 140px;
  --custom-spacing-eight: 160px;
  --custom-spacing-nine: 180px;
  --custom-spacing-ten: 200px;

  /* Start - CTA Button */
  --custom-cta-border: var(--custom-color-one);
  --custom-cta-border-hover: var(--custom-color-one-hover);
  --custom-cta-bg: var(--custom-color-one);
  --custom-cta-bg-hover: var(--custom-color-one-hover);
  --custom-cta-color: #FFF;
  /* Start - CTA Button */

  /* Start - CTA Outline Button */
  --custom-cta-outline-border: var(--custom-color-one);
  --custom-cta-outline-border-hover: var(--custom-color-one);
  --custom-cta-outline-bg-hover: var(--custom-color-one);
  --custom-cta-outline-color: var(--custom-color-one);
  --custom-cta-outline-color-hover: #FFF;
  /* Start - CTA Outline Button */
}

@media only screen and (max-width: 700px) {
  :root {
    --custom-spacing-two: 20px;
    --custom-spacing-three: 30px;
    --custom-spacing-four: 40px;
    --custom-spacing-five: 50px;
    --custom-spacing-six: 60px;
    --custom-spacing-seven: 70px;
    --custom-spacing-eight: 80px;
    --custom-spacing-nine: 90px;
    --custom-spacing-ten: 100px;

    --custom-font-size-four: 18px;
    --custom-font-size-five: 20px;
    --custom-font-size-six: 24px;
    --custom-font-size-seven: 28px;
    --custom-font-size-eight: 30px;
    --custom-font-size-nine: 35px;
    --custom-font-size-ten: 40px;
  }
}

/********************************************/
/* START -- WHITELABEL */
/********************************************/
.whitelabel {

  /********************************************/
  /* START -- GENERAL */
  /********************************************/
  .button {
    display: inline-block;
    background: var(--custom-cta-bg);
    border: 2px solid var(--custom-cta-border);
    font-family: var(--custom-font-family-semibold);
    font-size: var(--custom-font-size-two);
    color: var(--custom-cta-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    outline: none;
    border-radius: 3px;
    transition: 0.3s all;

    &:hover {
      background: var(--custom-cta-bg-hover);
      border-color: var(--custom-cta-border-hover);
    }

    &.outline {
      border-color: var(--custom-cta-outline-border);
      background: transparent;
      color: var(--custom-cta-outline-color);

      &:hover {
        background: var(--custom-cta-outline-bg-hover);
        border-color: var(--custom-cta-outline-bg-hover);
        color: var(--custom-cta-outline-color-hover);
      }

      &.white {
        border-color: #FFF;
        color: #FFF;

        &:hover {
          background: #FFF;
          color: #000;
        }
      }
    }

    &.small {
      font-size: var(--custom-font-size-one);
      padding: 7px 15px;
    }
  }
  /********************************************/
  /* END -- GENERALS */
  /********************************************/

  /********************************************/
  /* START -- HEADER */
  /********************************************/
  & header {
    width: 100%;
    height: 90px;
    background: #FFF;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    z-index: 100;

    &.active {
      height: 60px;

      & .logo-wrapper {
        padding: 10px 0;
      }

      & nav {

        & li {

          & .button {
            padding: 5px 10px !important;
          }
        }
      }
    }

    & .header-wrapper {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      flex-flow: row nowrap;
      justify-content: space-between;
      padding: 0 40px;

      @media only screen and (max-width: 1024px) {
        padding: 0 10px;
      }

      & .logo-wrapper {
        height: 100%;
        max-height: 70px;
        width: 200px;

        @media only screen and (max-width: 1024px) {
          width: 150px;
        }

        & img {
          display: block;
          height: 100%;
          width: 100%;
          object-fit: contain;
          object-position: left;
        }
      }

      & nav {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 30px;

        & ul {
          display: flex;
          flex-flow: row nowrap;
          align-items: center;
          gap: 30px;

          @media only screen and (max-width: 1024px) {
            gap: 10px
          }

          &.mobile-group {

            @media only screen and (max-width: 1024px) {
              display: none;
              position: fixed;
              top: 0;
              left: 0;
              right: 0;
              border: 0;
              height: 100%;
              width: 100%;
              background: #FFF;
              flex-flow: column;
              align-items: center;
              justify-content: center;
              gap: 30px;
              z-index: 100;

              &.active {
                display: flex;
              }

              & li {
                display: block !important;

                &.mobile-show {
                  display: block !important;
                }

                &.close-mobile {
                  position: absolute;
                  top: 10px;
                  right: 10px;
                  padding: 10px;
                  background: #FFF;
                  border-radius: 5px;
                  box-shadow: 0 0 20px rgba(0,0,0,0.2);
                }

                & a {
                  font-size: 20px;
                }

                & .button {
                  margin-top: 20px;
                  font-size: 20px;
                }
              }
            }

            & li.mobile-show {
              display: none;
            }
          }

          & li {

            & a {
              position: relative;
              font-family: var(--custom-font-family-semibold);
              text-transform: uppercase;
              letter-spacing: 1px;
              font-size: var(--custom-font-size-one);
              transition: 0.3s all;

              &:after {
                content: "";
                position: absolute;
                top: 130%;
                left: 0;
                right: 0;
                width: 0%;
                height: 2px;
                background: var(--custom-color-one);
                transition: 0.2s all;
              }

              &:hover {

                &:after {
                  width: 100%;
                }
              }

              &.button {
                font-family: var(--custom-font-family-semibold);
                font-size: var(--custom-font-size-one);
                padding: 8px 15px;

                @media only screen and (max-width: 700px) {
                  font-size: 12px;
                }

                &:after {
                  display: none;
                }

                &:hover {
                }
              }
            }

            &:has(.mobile-nav-menu) {
              display: none;

              @media only screen and (max-width: 1024px) {
                display: block;
              }
            }

            & .mobile-nav-menu {
              padding: 10px;

              & span {
                display: block;
                width: 20px;
                height: 2px;
                background: #000;
                margin-bottom: 5px;

                &:last-child {
                  margin: 0;
                }
              }
            }
          }
        }
      }
    }
  }
  /********************************************/
  /* END -- HEADER */
  /********************************************/

  /********************************************/
  /* START -- SECTIONS */
  /********************************************/
  & section {

    /********************************************/
    /* START -- HOMEPAGE */
    /********************************************/

    /* Start -- Hero */
    &.hero {
      position: relative;
      width: 100%;
      height: calc(90vh - 90px);
      display: flex;
      flex-flow: column;
      align-items: center;
      justify-content: center;
      background-color: #000;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      padding: 20px;

      @media only screen and (max-width: 700px) {
        height: auto;
        padding-top: 100px;
        padding-bottom: 100px;
      }

      &:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
      }

      & .hero-content {
        position: relative;
        text-align: center;
        color: #FFF;
        z-index: 1;

        & h1 {
          font-size: var(--custom-font-size-three);
          margin-bottom: calc(var(--custom-spacing-one)/2);
        }

        & h2 {
          font-family: var(--custom-font-family-bold);
          text-transform: uppercase;
          font-size: var(--custom-font-size-ten);

          @media only screen and (max-width: 700px) {
            line-height: 1.3;
          }
        }

        & .buttons-wrapper {
          display: flex;
          flex-flow: row nowrap;
          justify-content: center;
          gap: 20px;
          margin-top: var(--custom-spacing-two);

          @media only screen and (max-width: 700px) {
            flex-flow: column;
          }

          & .button {

            &.outline {
              border-color: #FFF;
              color: #FFF;

              &:hover {
                border-color: var(--custom-cta-outline-bg-hover);
              }
            }
          }
        }
      }
    }
    /* End -- Hero */

    /* Start -- About Company */
    &.about-company {
      width: 100%;
      padding: var(--custom-spacing-four) var(--custom-spacing-three);

      & .content-wrapper {
        width: 100%;
        max-width: 1000px;
        margin: auto;
        text-align: center;

        & .headline {
          display: inline-block;
          font-family: var(--custom-font-family-bold);
          text-transform: uppercase;
          font-size: var(--custom-font-size-eight);
          text-align: center;
        }

        & .spacer {
          width: 150px;
          height: 2px;
          background: #000;
          margin: var(--custom-spacing-one) auto var(--custom-spacing-two);
        }
      }
    }
    /* End -- About Company */

    /* Start -- CTA */
    &.cta {
      width: 100%;
      position: relative;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      text-align: center;

      &:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
      }

      & .cta-content {
        position: relative;
        padding: var(--custom-spacing-seven);
        z-index: 2;

        & .headline {
          font-family: var(--custom-font-family-bold);
          text-transform: uppercase;
          font-size: var(--custom-font-size-eight);
          text-align: center;
          color: #FFF;
          margin-bottom: var(--custom-spacing-two);
        }

        & .button {
          border-color: #FFF;
          color: #FFF;

          &:hover {
            background: #FFF;
            color: #000;
          }
        }
      }
    }
    /* End -- CTA */

    /* Start -- Image Carousel Wrapper */
    &.image-carousel-wrapper {

      & .carousel-title {
        padding: var(--custom-spacing-four);
        text-align: center;

        & .title {
          font-family: var(--custom-font-family-bold);
          text-transform: uppercase;
          font-size: var(--custom-font-size-six);
          margin-bottom: var(--custom-spacing-one);
        }

        & .subtitle {
          font-size: var(--custom-font-size-three);
        }
      }

      & .carousel {
        width: 100%;
        position: relative;
        display: flex;
        flex-flow: row nowrap;

        & .carousel-container {

          & .splide {

            & .splide__arrows {
              @media only screen and (max-width: 700px) {
                display: none;
              }
            }

            & .splide__track {

              & .splide__list {

                &.cursor-grab-true {
                  cursor: grab;
                }

                & .splide__slide {
                  position: relative;

                  & .image-details {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    width: 100%;
                    padding: var(--custom-spacing-two) 10px 0;
                    text-align: center;

                    & .image-title {
                      font-family: var(--custom-font-family-semibold);
                      text-transform: uppercase;
                      font-size: var(--custom-font-size-four);
                      margin-bottom: var(--custom-spacing-one);
                    }

                    & .button {
                      border-color: #000;
                      font-size: var(--custom-font-size-one);
                      color: #000;
                      padding: 10px 15px;

                      &:hover {
                        background: #000;
                        color: #FFF;
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }

      & .outro {
        text-align: center;
        padding: var(--custom-spacing-two);

        & p {
          font-size: var(--custom-font-size-three);

          & a {
            text-decoration: underline;

            &:hover {
              text-decoration: none;
            }
          }
        }
      }
    }
    /* End -- Image Carousel Wrapper */

    /* Start -- Featured Build */
    &.featured-build {
      width: 100%;
      background: #F5F5F5;

      & .featured-wrapper {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;

        @media only screen and (max-width: 1024px) {
          flex-flow: column;
        }

        & .featured-container {
          position: relative;
          width: 50%;
          overflow: hidden;

          @media only screen and (max-width: 1024px) {
            width: 100%;
          }

          &:has(.featured-content) {
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: center;
          }

          & .featured-content {
            padding: var(--custom-spacing-five);

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

            & .subtitle {
              font-family: var(--custom-font-family-semibold);
              color: var(--custom-color-one);
              text-transform: uppercase;
              margin-bottom: 10px;
            }

            & .title {
              font-family: var(--custom-font-family-bold);
              font-size: var(--custom-font-size-nine);
              text-transform: uppercase;
              margin-bottom: var(--custom-spacing-one);
              line-height: 50px;
            }

            & .description {
              font-size: var(--custom-font-size-three);
            }

            & .button-wrapper {
              display: flex;
              flex-flow: row nowrap;
              align-items: center;
              margin-top: var(--custom-spacing-two);
              gap: 15px;

              @media only screen and (max-width: 700px) {
                width: 100%;
                flex-flow: column;

                & .button {
                  width: 100%;
                  text-align: center;
                }
              }
            }
          }

          & img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }
      }
    }
    /* End -- Featured Build */

    /* Start -- Testimonials */
    &.testimonials {
      width: 100%;

      & .testimonials-wrapper {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;

        @media only screen and (max-width: 1024px) {
          flex-flow: column-reverse;
        }

        & .testimonials-container {
          position: relative;
          width: 50%;
          overflow: hidden;

          @media only screen and (max-width: 1024px) {
            width: 100%;
          }

          &:has(.testimonials-content) {
            display: flex;
            flex-flow: column;
            align-items: center;
            justify-content: center;
          }

          & .testimonials-content {
            width: 100%;
            padding: var(--custom-spacing-five) 0;

            @media only screen and (max-width: 700px) {
              padding: 20px 20px 10px;
            }

            & .divider {
              width: 100px;
              height: 2px;
              background: #000;
              margin: var(--custom-spacing-one) auto var(--custom-spacing-two);
            }

            & .title {
              font-family: var(--custom-font-family-bold);
              font-size: var(--custom-font-size-nine);
              text-transform: uppercase;
              text-align: center;
              line-height: 50px;
            }

            & .testimonial-slider {

              & .splide__arrows {

                @media only screen and (max-width: 700px) {
                  display: none;
                }

                & .splide__arrow {
                  background: #000 !important;

                  &.splide__arrow--prev {
                    left: 2rem;
                  }

                  &.splide__arrow--next {
                    right: 2rem;
                  }

                  & svg {
                    fill: #FFF;
                  }
                }
              }

              & .testimonial-slide-content {
                padding: 0 var(--custom-spacing-six) var(--custom-spacing-four);
                cursor: grab;

                @media only screen and (max-width: 700px) {
                  padding: 0 20px 70px;
                }

                & .testimonial-title {
                  font-family: var(--custom-font-family-semibold);
                  font-size: var(--custom-font-size-five);
                  text-align: center;
                  margin-top: var(--custom-spacing-one);
                }

                & .testimonial-description {
                  font-size: var(--custom-font-size-three);
                  text-align: center;
                }
              }

              & .splide__pagination {

                & li {

                  &.is-active {

                    & button {
                      background: var(--custom-color-one) !important;
                    }
                  }

                  & button {
                    background: #c8c8c8 !important;
                    opacity: 1;
                  }
                }
              }
            }
          }

          & img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }
      }
    }
    /* End -- Testimonials */

    /********************************************/
    /* END -- HOMEPAGE */
    /********************************************/

    /********************************************/
    /* START -- PROJECTS */
    /********************************************/

    /* Start -- Projects Index */
    &.projects-wrapper {
      padding: var(--custom-spacing-five);

      @media only screen and (max-width: 1200px) {
        padding-left: 25px;
        padding-right: 25px;
      }

      @media only screen and (max-width: 700px) {
        padding: 30px 20px;
      }

      & h1 {
        font-family: var(--custom-font-family-bold);
        text-transform: uppercase;
        font-size: var(--custom-font-size-eight);
        text-align: center;
        margin-bottom: var(--custom-spacing-two);
      }

      & .projects-grid {
        display: flex;
        flex-flow: row wrap;

        & .project-card {
          width: 33.333333%;
          padding: 10px;

          @media only screen and (max-width: 1024px) {
            width: 50%;
          }

          @media only screen and (max-width: 700px) {
            width: 100%;
            padding: 10px 0;
          }

          & .img-wrapper {
            position: relative;
            display: block;
            width: 100%;
            background: var(--custom-color-gray);
            padding-bottom: 70%;
            overflow: hidden;
            border-radius: 8px;

            &:before {
              content: "";
              display: block;
              position: absolute;
              bottom: 0;
              left: 0;
              right: 0;
              height: 80px;
              width: 100%;
              background: #000;
              background: linear-gradient(183deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
              z-index: 2;

              @media only screen and (max-width: 1024px) {
                height: 100px;
              }
            }

            &:hover button {
              display: block !important;
            }

            & img {
              display: block;
              position: absolute;
              top: 0;
              left: 0;
              height: 100%;
              width: 100%;
              object-fit: cover;
              object-position: center;
              transition: 0.2s all;

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

            & .content-wrapper {
              position: absolute;
              bottom: 15px;
              left: 20px;
              z-index: 3;

              & p {
                font-family: var(--custom-font-family-bold);
                font-size: var(--custom-font-size-four);
                text-transform: uppercase;
                color: #FFF;
              }

              & button {
                display: none;
                margin: 10px 0 0;

                @media only screen and (max-width: 1024px) {
                  display: block !important;
                  padding: 5px 10px;
                }
              }
            }
          }
        }
      }
    }
    /* End -- Projects Index */

    /* Start -- Projects Show */
    &.project-wrapper {
      width: 100%;
      display: flex;
      flex-flow: row nowrap;

      @media only screen and (max-width: 1200px) {
        flex-flow: column;
      }

      & .project-container {
        width: 50%;

        @media only screen and (max-width: 1200px) {
          width: 100%;
          padding: var(--custom-spacing-three);

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

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

        & .project-content {
          position: sticky;
          top: 0;
          padding: var(--custom-spacing-three);

          @media only screen and (max-width: 1200px) {
            position: static;
            padding: 0;
          }

          & h1 {
            font-family: var(--custom-font-family-bold);
            text-transform: uppercase;
            font-size: var(--custom-font-size-eight);
            margin: var(--custom-spacing-one) 0;
          }
        }

        & .project-images {
          display: flex;
          flex-flow: column;
          gap: 10px;

          @media only screen and (max-width: 700px) {
            gap: 20px;
          }

          & img {
            display: block;
          }
        }
      }
    }
    /* End -- Projects Show */

    /********************************************/
    /* END -- PROJECTS */
    /********************************************/

    /********************************************/
    /* START -- MODELS */
    /********************************************/

    /* Start -- Models */
    &.models-wrapper {
      padding: var(--custom-spacing-three) 0;

      & h1 {
        font-family: var(--custom-font-family-bold);
        text-transform: uppercase;
        font-size: var(--custom-font-size-eight);
        text-align: center;
      }

      & .subtitle {
        text-align: center;
        margin-top: 10px;

        & a {
          text-decoration: underline;

          &:hover {
            color: var(--custom-color-one);
            text-decoration: none;
          }
        }
      }

      & .models-container {
        margin-top: var(--custom-spacing-two);

        & .title {
          font-family: var(--custom-font-family-semibold);
          font-size: var(--custom-font-size-five);
          padding: 0 var(--custom-spacing-three);
          margin-bottom: 15px;
        }

        & .carousel-container {

          & .splide {

            & .splide__track {

              & .splide__list {

                &.cursor-grab-true {
                  cursor: grab;
                }

                & .splide__slide {
                  border: 1px solid var(--custom-color-gray);
                  border-radius: 8px;
                  overflow: hidden;

                  & .image-details {
                    position: relative;
                    width: 100%;
                    padding-bottom: 60%;

                    & img {
                      position: absolute;
                      top: 0;
                      left: 0;
                      width: 100%;
                      height: 100%;
                      object-fit: cover;
                      object-position: center;
                    }
                  }

                  & .content-details {
                    padding: var(--custom-spacing-one);

                    & .content-title {
                      font-family: var(--custom-font-family-semibold);
                      font-size: var(--custom-font-size-four);
                    }

                    & .content-row {
                      display: flex;
                      flex-flow: row nowrap;
                      align-items: center;
                      gap: 8px;
                      margin: 5px 0 15px;
                    }

                    & .button {
                      width: 100%;
                      text-align: center;
                      font-size: var(--custom-font-size-one);
                    }
                  }
                }
              }
            }
          }

          & .models-card {

            & .models-img-wrapper {
              position: relative;
              width: 300px;
              height: 200px;

              @media only screen and (max-width: 700px) {
                width: 100%;
                height: 150px;
              }

              & img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
              }
            }

            & h3 {
              text-align: center;
              margin: 10px 0;
              font-weight: bold;
              font-size: 16px;
            }

            & p {
              text-align: center;
            }
          }
        }
      }
    }
    /********************************************/
    /* END -- MODELS */
    /********************************************/

    /********************************************/
    /* START -- ABOUT US */
    /********************************************/

    /* Start - Company Info */
    &.about-wrapper {
      width: 100%;

      & .content-wrapper {
        width: 100%;
        max-width: 1000px;
        margin: auto;
        text-align: center;
        padding: var(--custom-spacing-four) var(--custom-spacing-three) var(--custom-spacing-two);

        & .headline {
          display: inline-block;
          font-family: var(--custom-font-family-bold);
          text-transform: uppercase;
          font-size: var(--custom-font-size-eight);
          text-align: center;
        }

        & .spacer {
          width: 150px;
          height: 2px;
          background: #000;
          margin: var(--custom-spacing-one) auto var(--custom-spacing-two);
        }

        & .description {
          line-height: 2;
        }
      }
      /* End - Company Info */

      /* Start - Counties */
      & .counties-wrapper {
        width: 100%;
        max-width: 1000px;
        margin: auto;
        border-top: 1px solid var(--custom-color-gray);
        padding: var(--custom-spacing-two) var(--custom-spacing-one);

        & h2 {
          font-family: var(--custom-font-family-bold);
          font-size: var(--custom-font-size-three);
          margin-bottom: var(--custom-spacing-one);
        }

        & .counties-container {
          width: 100%;
          display: flex;
          flex-flow: row wrap;
          align-items: center;
          gap: 12px 10px;

          & p {
            border: 1px solid var(--custom-color-gray);
            font-family: var(--custom-font-family-medium);
            font-size: var(--custom-font-size-one);
            padding: 7px 15px;
            border-radius: 100px;
          }
        }
      }
      /* End - Counties */

      /* Start - Testimonials */
      & .testimonials-wrapper {
        background: var(--custom-color-gray-two);
        padding: var(--custom-spacing-three);

        @media only screen and (max-width: 700px) {
          padding-left: 20px;
          padding-right: 20px;
        }

        & .testimonials-container {
          width: 100%;
          max-width: 1000px;
          margin: auto;

          & h3 {
            font-family: var(--custom-font-family-bold);
            font-size: var(--custom-font-size-three);
            margin-bottom: var(--custom-spacing-one);
          }

          & .testimonials-list {
            width: 100%;
            display: flex;
            flex-flow: row wrap;
            gap: 15px;

            & .testimonial-box {
              background: #FFF;
              padding: 20px;
              border-radius: 8px;

              & .name {
                font-family: var(--custom-font-family-semibold);
                margin-top: 10px;
              }
            }
          }
        }
      }
      /* End - Testimonials */

    }
    /********************************************/
    /* END -- ABOUT US */
    /********************************************/

    /********************************************/
    /* START -- CONTACT US */
    /********************************************/
    &.contact-wrapper {
      width: 100%;
      padding: var(--custom-spacing-five);

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

      & .contact-container {
        width: 100%;
        max-width: 1200px;
        margin: auto;
        display: flex;
        flex-flow: row nowrap;
        gap: var(--custom-spacing-three);

        @media only screen and (max-width: 1024px) {
          flex-flow: column;
        }

        & .contact-row {
          width: 50%;

          @media only screen and (max-width: 1024px) {
            width: 100%;
          }

          & h1 {
            font-family: var(--custom-font-family-bold);
            font-size: var(--custom-font-size-six);
            margin-bottom: 10px;
          }

          & form {

            & .alert {
              color: var(--custom-color-negative);
            }

            & .input-container {
              margin-top: var(--custom-spacing-one);
            }

          }

          & .map-img {
            position: relative;
            width: 100%;
            padding-bottom: 60%;
            overflow: hidden;
            border-radius: 8px;

            & img {
              position: absolute;
              top: 0;
              left: 0;
              height: 100%;
              width: 100%;
              object-fit: cover;
              object-position: center;
            }
          }

          & .contact-info {
            padding: 20px 10px 0;

            & p {
              margin-bottom: 7px;

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

              & b {
                font-size: var(--custom-font-size-three);
              }
            }
          }
        }
      }
    }
    /********************************************/
    /* END -- CONTACT US */
    /********************************************/
  }
  /********************************************/
  /* END -- SECTIONS */
  /********************************************/

  /********************************************/
  /* START -- FOOTER */
  /********************************************/
  & footer {
    width: 100%;
    background: #222222;

    & .footer-wrapper {
      width: 100%;
      max-width: 1200px;
      margin: auto;
      text-align: center;
      color: #FFF;
      padding: var(--custom-spacing-four) var(--custom-spacing-one);

      & .logo-wrapper {
        width: 100%;
        max-width: 250px;
        margin: 0 auto 20px;

        & img {
          display: block;
          width: 100%;
          filter: brightness(0) invert(1);
        }
      }

      & .footer-contact {

        & p {
          margin-top: 10px;
        }

        & .social-wrapper {
          display: flex;
          flex-flow: row nowrap;
          align-items: center;
          justify-content: center;
          gap: 10px;
          margin-top: var(--custom-spacing-one);

          & .social-link {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            justify-content: center;
            height: 50px;
            width: 50px;
            background: #000;
            border-radius: 50%;
          }
        }
      }
    }

    & .copyright-wrapper {
      width: 100%;
      background: #000;
      color: #FFF;
      text-align: center;
      padding: var(--custom-spacing-one);
    }
  }
  /********************************************/
  /* END -- FOOTER */
  /********************************************/

  /********************************************/
  /* TEMPORARY */
  /********************************************/
  .map-wrapper {
    position: relative;

    & .map-popup {
      display: none;
      position: absolute;
      top: -100px;
      left: 0;
      background: #FFF;
      border-radius: 8px;
      overflow: hidden;
      padding: 20px;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);

      & .title {
        font-size: 20px;
        text-align: left;
        font-family: var(--custom-font-family-semibold);
        margin-bottom: 15px;
      }

      & .home {
        display: flex;
        flex-flow: row nowrap;
        border-radius: 3px;
        border: 1px solid rgba(0,0,0,0.1);
        overflow: hidden;
        margin-top: 5px;

        & .image-wrapper {
          width: 100px;
          position: relative;
          overflow: hidden;

          & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
          }
        }

        & .content {
          display: flex;
          flex-flow: row nowrap;
          align-items: center;
          padding: 0 15px 0 10px;

          & div {
            width: 250px;
            padding: 15px 20px 15px 15px;
            text-align: left;

            & .home-title {
              font-size: 18px;
              text-align: left;
              font-family: var(--custom-font-family-semibold);
              margin-bottom: 5px;
            }
          }
        }
      }
    }

    .image-mapper-shape {
        fill: rgba(0, 0, 0, 0);
    }
    g:hover .image-mapper-shape, .image-mapper-shape.active {
        fill: #000;
        stroke: white;
        stroke-width: 2px;
        opacity: 50%;
    }
  }

  .about-wrapper.expand {

    & .content-wrapper {
      max-width: 1300px;
      padding: 150px 30px;
    }
  }

  h2 {
    text-align: center;
    margin-bottom: 40px;
  }

  .interior-wrapper {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 20px;

    @media only screen and (max-width: 700px) {
      flex-direction: column;
    }

    & .interior-container {
      width: 33.333333%;
      border: 4px solid transparent;
      border-radius: 10px;
      padding: 5px;
      overflow: hidden;
      cursor: pointer;

      &:hover {
        border-color: var(--custom-color-one);
      }

      @media only screen and (max-width: 700px) {
        width: 100%;
      }

      & .interior-box {
        position: relative;
        border-radius: 5px;
        overflow: hidden;

        &:before {
          content: "";
          display: block;
          background: #000;
          background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.66) 100%);
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 2;
        }

        & .content {
          position: absolute;
          bottom: 0;
          left: 0;
          padding: 20px;
          color: #FFF;
          text-align: left;
          z-index: 3;

          & .content-title {
            font-family: var(--custom-font-family-bold);
            text-transform: uppercase;
            font-size: 24px;
          }
        }

        & img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
        }
      }
    }
  }

}
/********************************************/
/* END -- WHITELABEL */
/********************************************/
