﻿/* ------------------------------------------------------------------ */
/* Overview of Styles:
/* a. Base Styles
/* b. Fade-in Effects
/* c. Home Slider
/* d. Home Images
/* e. Text Styles
/* f. Container Styles
/* g. Responsive Sizing
/* h. Animations
/* i. Landing Page Styles
/* j. Home Page Middle Styles
/* k. About Page Styles
/* l. Service Pages Styles
/* m. Listings Page Styles
/* n. Contact Page Styles
/* o. Footer Styles
/* ------------------------------------------------------------------ */

/* ------------------------------------------------------------------ */
/* a. Base Styles
/* ------------------------------------------------------------------ */

:root {
  --main-color: rgb(39, 72, 92);
  --secondary-color: rgb(150, 174, 187);
  --dark-gray-color: rgb(80, 80, 80);
  --gray-color: rgb(135, 135, 135);
  --light-gray-color: rgba(245, 247, 252);
  --mid-gray-color: rgb(185, 185, 185);
  --dark-teal-color: rgb(134, 160, 172);
  --light-teal-color: rgb(150, 174, 187);
  --light-teal-color-faded: rgb(150, 174, 187, 0.5);
  --default-text: rgb(96, 88, 106);
  --light-gray-text: rgb(185, 186, 190);
}

html, body {
  height: 100%;
  width: 100%;
}

/* ------------------------------------------------------------------ */
/* b. Fade-in Effects
/* ------------------------------------------------------------------ */

/* start */
.fade-up {
  opacity: 0;
  transform: translateY(15%);
  transition: all ease-in 0.45s;
}

/* start */
.slight-fade-up {
  opacity: 0;
  transform: translateY(5%);
  transition: all ease-in 0.45s;
}

/* start */
.side-fade {
  opacity: 0;
  transform: translateX(-15%);
  transition: all ease-in 0.45s;
}

/* end */
.faded {
  opacity: 100;
  transform: translateY(0%);
}

/* end */
.side-faded {
  opacity: 100;
  transform: translateX(0%);
}

/* ------------------------------------------------------------------ */
/* c. Home Slider
/* ------------------------------------------------------------------ */

.vh-100 {
  height: 100vh !important;
}

.vh-25 {
  height: 25vh !important;
}

#carouselExampleIndicators {
  position: absolute;
  height: 800px;
  width: 100%;
  background-size: cover !important;
  text-align: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.carousel.carousel-fade .carousel-item {
  display: block;
  opacity: 0;
  transition: opacity ease-out 1s;
}

.carousel.carousel-fade .carousel-item.active {
  opacity: 1 !important;
}

.carousel-filter-one {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  
}

.carousel-filter-two {
  height: 100%;
  width: 100%;
  background-color: rgb(239, 214, 179, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.carousel-inner {
  overflow: visible !important;
  margin: 0 !important;
}

#carouselExampleIndicators .carousel-inner {
  position: relative;
  height: 100%;
  width: 100%;
  background: #fff;
}

.carousel-one {
  position: absolute;
  background-image: url('../images/Listings/81st-1.jpeg');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.carousel-two {
  position: absolute;
  background-image: url('../images/Listings/opal-2.jpg');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  backdrop-filter: blur(0.9px);
  -webkit-backdrop-filter: blur(0.9px);
}

.carousel-three {
  position: absolute;
  background-image: url('../images/Listings/river-rd-2.jpg');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.carousel-four {
  position: absolute;
  background-image: url('../images/Listings/oak-2.jpg');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.carousel-five {
  position: absolute;
  background-image: url('../images/Listings/128th-4.jpeg');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ------------------------------------------------------------------ */
/* d. Home Images
/* ------------------------------------------------------------------ */

.page-about-header-img {
  position: absolute;
  background-image: url('../images/kettle-faded.jpg');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.selling-header-img {
  position: absolute;
  background-image: url('../images/modern-kitchen.jpg');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.buying-header-img {
  position: absolute;
  background-image: url('../images/lamp.jpg');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-contact-header-img {
  position: absolute;
  background-image: url('../images/buildings-faded.jpg');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* ------------------------------------------------------------------ */
/* e. Text Styles
/* ------------------------------------------------------------------ */

h1, h2, h3 {
  font-family: 'Source Serif Pro', serif;
  font-style: normal;
}

h4, h5, h6, p, a, li {
  font-family: 'Raleway', sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none !important;
}

.h-35 {
  height: 35% !important;
}

.header {
  font-family: 'Source Serif Pro', serif;
  color: var(--main-color);
  font-weight: 600 !important;
  line-height: 1.8;
}

.header-one {
  color: var(--main-color);
  font-weight: bold;
}

.sub-header {
  font-family: 'Source Serif Pro', serif;
  font-style: normal;
}

.content-top-icon {
  display: flex;
  justify-content: center;
  transform: translate(10px, 0px);
}

.content-header {
  text-align: center;
  padding: 0rem 2.5rem 0.5rem 2.5rem;
  color: rgb(65, 67, 70);
  font-weight: 600;
}

.content-sub-header,
.content-top-header,
.content-bottom-header {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.content-sub-header-dot {
  padding-left: 8px;
  padding-right: 8px;
}

.content-top-header p {
  color: rgb(171, 173, 175);
}

@media(max-width: 991px) {
  .content-top-header p {
    margin-top: 2rem !important;
  }
}

@media(min-width: 992px) {
  .content-top-header p {
    margin-top: 4rem !important;
  }
}

.content-bottom-header p {
  background: var(--light-gray-color);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 6px;
  margin-right: 8px;
  margin-left: 8px;
  font-family: 'Source Serif Pro';
  font-weight: 600;
  font-size: 16px;
  color: rgb(140, 140, 140) !important;
}

.default-list {
  list-style: initial !important;
}

.default-list li {
  text-align: left !important;
  color: var(--default-text);
  line-height: 1.6;
  padding-top: 1rem;
}

.white-text {
  color: white !important;
}

.teal-text {
  color: var(--main-color);
}

.bright-teal-text {
  color: var(--secondary-color);
}

.white-background {
  background-color: white !important;
}

.description-text-header {
  color: var(--light-gray-color) !important;
}

.description-text {
  color: rgb(140, 140, 140) !important;
  line-height: 1.8 !important;
}

.text-arrow-link {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.01);
  padding: 0rem 1rem;
  margin-top: 0.5rem;
}

.text-arrow-link p {
  font-family: 'Source Serif Pro', serif;
  color: rgba(39, 72, 92, 0.7);
  font-size: 0.9rem;
  padding-right: 0.5rem;
}

.text-arrow-link svg {
  fill: rgba(39, 72, 92, 0.7);
  margin-bottom: 2px;
}

.text-align-center {
  text-align: center;
}

.description-text-white {
  color: white;
}

.description-text-two {
  color: var(--mid-gray-color);
  margin-bottom: 0 !important;
  font-size: 0.9rem !important;
}

.description-text-three {
  color: var(--dark-gray-color);
  margin-bottom: 0 !important;
}

.description-text-four {
  color: var(--light-gray-color);
  line-height: 1.8;
}

.description-text-start {
  font-family: 'Source Serif Pro', serif;
  color: white;
}

.description-text-start-inverted {
  color: var(--main-color);
}

.description-text-start-teal {
  font-family: 'Source Serif Pro', serif;
  color: var(--secondary-color);
}

.fancy-text {
  font-family: 'Source Serif Pro', serif;
}

.list-text-container {
  list-style: disc !important;
}

li::marker {
  color: var(--gray-color);
}

.list-text {
  color: var(--gray-color);
}

.list-text-click {
  color: var(--secondary-color);
  list-style: none;
}

.list-text-click-inverted {
  color: var(--main-color);
  list-style: none;
}

.fa-brands {
  color: var(--main-color);
  font-weight: 400;
}

.fa-quote-left {
  padding-right: 10px !important;
}

.fa-star {
  color: var(--light-teal-color);
}

.fa-quote-right {
  padding-left: 10px !important;
}

.general-header {
  color: white;
  font-weight: 400;
}

.blue-bold-text {
  color: var(--main-color) !important;
  font-weight: 600 !important;
  font-family: 'Source Serif Pro';
}

.page-header-text-container {
  display: flex;
  justify-content: center;
  color: white;
  font-weight: 500;
  align-items: center;
  font-family: 'Source Serif Pro';
}

/* ------------------------------------------------------------------ */
/* f. Container styles
/* ------------------------------------------------------------------ */

.content-outer {
  display: flex;
  justify-content: center;
}

.content-inner {
  max-width: 1000px;
}

.slight-move-down {
  transform: translateY(3px);
}

.blog-text {
  color: var(--default-text);
}

.blog-left {
  position: sticky;
  top: 90px;
}

.blog-left a {
  text-decoration: none !important;
  box-shadow: 0 3px 5px rgba(0,0,0,.06),0 7px 9px rgba(0,0,0,.12),0 20px 25px -8px rgba(0,0,0,.18) !important;
  margin: 5px;
  background: var(--dark-teal-color);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}

.blog-left a:hover {
  box-shadow: 0 7px 30px rgba(0,0,0,.08),0 22px 30px 2px rgba(0,0,0,.15),0 8px 10px rgba(0,0,0,.15) !important;
}

@media (max-width: 768px) {
  .blog-left {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
  }

  .blog-left a {
    margin: 15px;
  }
}

@media (min-width: 992px) {
  .blog-left-outer {
    margin-bottom: 5rem;
  }

  .blog-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    border-radius: 4px;
  }
}

.blog-left i {
  background-color: var(--dark-teal-color);
}

.event-blog-image-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}

.event-blog-image {
  height: auto;
  object-fit: cover;
  margin-top: -1rem;
  margin-bottom: 2.3rem;
  box-shadow: 0 3px 5px rgba(0,0,0,.02),0 0 2px rgba(0,0,0,.05),0 1px 4px rgba(0,0,0,.08)!important;
}

@media (max-width: 991px) {
  .event-blog-image {
    max-height: 500px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .event-blog-image-container {
    background-color: var(--light-gray-color);
    margin-bottom: 2rem;
  }

  .event-blog-image {
    width: 900px;
  }
}

.blog-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.blog-image-caption {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.blog-image-caption p {
  color: #AAAAAA;
}

.blog-quote .fa-quote-left,
.review-quote .fa-quote-left {
  color: var(--main-color) !important;
}

.blog-quote-underline,
.review-quote-underline {
  border-bottom: 1px solid var(--main-color);
  padding-top: 2rem;
  width: 40%;
}

@media(max-width: 768px) {
  .blog-quote {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media(min-width: 768px) {
  .blog-quote {
    padding-left: 4rem !important;
    padding-right: 5rem !important;
  }
}

.blog-quote-outer {
  background-color: var(--light-gray-color);
  border-radius: 4px;
  padding: 1rem 0.5rem 1.5rem 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,.025),0 0 1px rgba(0,0,0,.04),0 1px 3px rgba(0,0,0,.05);
}

@media (min-width: 768px) {
  .blog-quote-outer {
    background-color: var(--light-gray-color);
    border-radius: 4px;
    padding: 1rem 1rem 2rem 1rem;
    max-width: 500px;
  }
}

.blog-page-container {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 75vh;
  justify-content: space-between;
}

.general-container-outer {
  background-color: var(--main-color);
  padding: 10px;
  box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
  border-radius: 2px;
}

.general-container-outer-no-shade {
  background-color: var(--main-color);
  padding: 10px;
}

.general-container-inner {
  padding: 10px;
  background:
    linear-gradient(to right, var(--secondary-color) 2px, transparent 2px) 0 100%,
    linear-gradient(to left, var(--secondary-color) 2px, transparent 2px) 100% 0,
    linear-gradient(to bottom, var(--secondary-color) 2px, transparent 2px) 100% 0,
    linear-gradient(to top, var(--secondary-color) 2px, transparent 2px) 0 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  z-index: 10;
}

.general-container-outer-inverted {
  background-color: rgb(255, 255, 255, 0.9);
  padding: 10px;
}

.general-container-inner-inverted {
  padding: 10px;
  background:
    linear-gradient(to right, var(--main-color) 2px, transparent 2px) 0 100%,
    linear-gradient(to left, var(--main-color) 2px, transparent 2px) 100% 0,
    linear-gradient(to bottom, var(--main-color) 2px, transparent 2px) 100% 0,
    linear-gradient(to top, var(--main-color) 2px, transparent 2px) 0 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  z-index: 10;
}

.general-container-outer-gray {
  background-color: var(--light-gray-color);
  padding: 10px;
}

.general-container-inner-gray {
  padding: 10px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  z-index: 10;
}

.general-container-inner-gray-squares {
  padding: 10px;
  background:
    linear-gradient(to right, var(--main-color) 2px, transparent 2px) 0 100%,
    linear-gradient(to left, var(--main-color) 2px, transparent 2px) 100% 0,
    linear-gradient(to bottom, var(--main-color) 2px, transparent 2px) 100% 0,
    linear-gradient(to top, var(--main-color) 2px, transparent 2px) 0 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  z-index: 10;
}

.general-container-placeholder {
  padding: 10px;
  background:
    linear-gradient(to right, var(--secondary-color) 4px, transparent 4px) 0 0,
    linear-gradient(to right, var(--secondary-color) 4px, transparent 4px) 0 100%,
    linear-gradient(to left, var(--secondary-color) 4px, transparent 4px) 100% 0,
    linear-gradient(to left, var(--secondary-color) 4px, transparent 4px) 100% 100%,
    linear-gradient(to bottom, var(--secondary-color) 4px, transparent 4px) 0 0,
    linear-gradient(to bottom, var(--secondary-color) 4px, transparent 4px) 100% 0,
    linear-gradient(to top, var(--secondary-color) 4px, transparent 4px) 0 100%,
    linear-gradient(to top, var(--secondary-color) 4px, transparent 4px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  z-index: 10;
}

.general-container-bottom {
  padding: 20px;
  padding-bottom: 33px;
  position: absolute;
  z-index: 1;
  background-color: var(--light-gray-color);
  transform: translate(-20px, 20px);
  border-radius: 3px;
}

.absolute {
  position: absolute;
  z-index: 2;
}

.shadow-behind-text {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.light-teal-background {
  background-color: var(--light-teal-color) !important;
}

.general-button {
  cursor: pointer;
  display: inline-block;
  padding: 0rem 1rem;
  margin: 0 0.3em 0.3em 0;
  border-radius: 0.12em;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 300;
  background-color: var(--light-teal-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white !important;
  text-align: center;
  transition: all 0.4s;
  box-shadow: 0 1px 8px rgba(0,0,0,.08),0 3px 4px rgba(0,0,0,.1),0 1px 4px -1px rgba(0,0,0,.1);
}

.general-button:hover {
  background-color: var(--dark-teal-color);
}

.general-button p {
  margin-bottom: 0 !important;
  font-family: 'Source Serif Pro';
}

.no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.wrap-text {
  overflow-wrap: break-word;
}

.block-display {
  display: inline-block;
}

.wave {
  display: flex;
  width: 100%;
}

.wave svg {
  width: 100%;
  z-index: -1;
  align-self: flex-end;
}

.move-down {
  transform: translateY(15%);
}

.move-down-two svg {
  transform: translateY(3%);
}

.move-up {
  transform: translateY(-9%);
}

.pt-6 {
  padding-top: 5rem;
}

/* ------------------------------------------------------------------ */
/* g. Responsive Sizing
/* ------------------------------------------------------------------ */

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

h6,
.home-button-text {
  font-size: 17px;
}

.banner-container,
.top-container {
  width: 95%;
}

p, .button-link {
  font-size: 16px;
}

p {
  line-height: 1.9;
}

.button-link {
  padding: 5px 10px 5px 10px;
}

.mobile-container {
  padding-top: 25%;
}

.offset-general {
  display: block;
  position: relative;
  visibility: hidden;
  top: -50px;
}

.offset-one {
  display: block;
  position: relative;
  visibility: hidden;
  top: -8%;
}

.offset-two {
  display: block;
  position: relative;
  visibility: hidden;
  top: 50px;
}

.about-header-img-container img {
  height: 85px;
  width: 256px;
  object-fit: contain;
}

.home-page-header,
.banner-sub-header {
  text-shadow: 0.5px 0.5px black;
}

.nav-logo-container img {
  height: 30px;
  width: 120px;
}

.carousel-indicators li {
  width: 3px;
  height: 3px;
}

.black-background {
  background-color: black;
}

.clickable-container img {
  transition: all 0.4s;
  cursor: pointer;
}

.clickable-container img:hover {
  opacity: 50%;
}

.about-lower {
  height: 600px;
}

.top-wave {
  transform: translateY(7%);
}

.bottom-wave {
  transform: translateY(-20%);
}

.sub-header-text {
  font-size: 1rem;
}

@media only screen and (min-width: 325px) {

  .banner-container,
  .top-container {
    width: 90%;
  }

  .button-link {
    padding: 5px 15px 5px 15px;
  }

  .mobile-container {
    padding-top: 20%;
  }

  .about-container {
    padding-bottom: 15%;
  }

  .project-single-container {
    padding-bottom: 9% !important;
  }
}

@media only screen and (min-width: 350px) {
  .about-lower {
    height: 500px;
  }
}

@media only screen and (min-width: 480px) {

  .banner-container,
  .top-container {
    width: 90%;
  }

  .button-link {
    padding: 5px 15px 5px 15px;
  }

  .mobile-container {
    padding-top: 18%;
  }

  .about-container {
    padding-bottom: 13%;
  }

  .project-single-container {
    padding-bottom: 8% !important;
  }

  .nav-logo-container img {
    height: 35px;
    width: 125px;
  }

  .listing-container {
    padding-left: 7%;
    padding-right: 7%;
  }

  .about-header-container {
    padding-left: 7%;
    padding-right: 7%;
  }

  .top-wave {
    transform: translateY(0%);
  }

  .bottom-wave {
    transform: translateY(0%);
  }

  .about-lower {
    height: 80vw;
  }
}

@media only screen and (min-width: 530px) {
  .about-lower {
    height: 70vw;
  }
}

@media only screen and (min-width: 600px) {
  .button-link {
    padding: 7px 18px 7px 18px;
  }

  .mobile-container {
    padding-top: 16%;
  }

  .about-container {
    padding-bottom: 5%;
  }

  .project-single-container {
    padding-bottom: 3% !important;
  }

  .home-page-header,
  .banner-sub-header {
    text-shadow: 1px 1px black;
  }

  .about-lower {
    height: 50vw;
  }
}

@media only screen and (max-width: 768px) {
  .headline-container {
    height: 175px;
  }
}

@media only screen and (min-width: 768px) {
  .headline-right {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media only screen and (min-width: 900px) {

  .banner-container,
  .top-container {
    width: 55%;
  }

  p,
  .button-link {
    font-size: 16px;
  }

  .button-link {
    padding: 10px 24px 10px 24px;
  }

  .mobile-container {
    padding-top: 11%;
  }

  .nav-logo-container img {
    height: 38px;
    width: 145px;
  }

  .listing-container {
    padding-left: 10%;
    padding-right: 10%;
  }

  .about-header-container {
    padding-left: 10%;
    padding-right: 10%;
  }

  .about-lower {
    height: 38vw;
  }
}

@media only screen and (min-width: 992px) {

  h1,
  h2 {
    font-size: 48px;
  }

  h6 {
    font-size: 18px;
  }

  p {
    font-size: 17px;
  }

  .about-lower {
    height: 48vw;
  }

  .sub-header-text {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 1024px) {
  .mobile-container {
    padding-top: 7%;
  }

  .about-container {
    padding-bottom: 3%;
  }

  .carousel-indicators li {
    width: 5px;
    height: 5px;
  }

  .about-lower {
    height: 485px;
  }
}

@media only screen and (min-width: 1180px) {
  .about-lower {
    height: 480px;
  }

  .about-header-container {
    padding-left: 16%;
    padding-right: 16%;
  }
}

@media only screen and (min-width: 1700px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 44px;
  }

  h6 {
    font-size: 20px;
  }

  p {
    font-size: 17px;
  }

  .sub-header-text {
    font-size: 22px !important;
  }
}

@media (min-width: 1900px) {
  .about-mid-left-text {
    padding-left: 10rem;
  }

  h2 {
    font-size: 55px;
  }
}

@media (min-width: 2200px) {
  .about-mid-left-text {
    padding-left: 14rem;
  }
}

/* ------------------------------------------------------------------ */
/* h. Animations
/* ------------------------------------------------------------------ */

@keyframes general-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes title-fade-in {
  0% {
    opacity: 0;
    text-shadow: 1px 1px 2px black;
    transform: translateY(30%);
  }

  100% {
    opacity: 1;
    text-shadow: 1px 1px 2px black;
    transform: translateY(0%);
  }
}

@keyframes sub-title-fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(50%);
  }

  70% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(50%);
  }

  100% {
    visibility: visible;
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes down-arrow-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }

  70% {
    opacity: 0;
    transform: translateY(-50%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

/* ------------------------------------------------------------------ */
/* i. Landing Page Styles
/* ------------------------------------------------------------------ */

.nav-active {
  color: rgb(230, 230, 230) !important;
}

.main-nav {
  background-color: rgb(255, 255, 255, 0);
  padding-top: 1.5%;
  color: white;
  transition: 0.5s background-color ease-in, 0.5s padding ease-in;
}

.main-nav.active {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: white;
  z-index: 99;
  transition: all 0.8s;
  background-color: var(--main-color);
  box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
}

ul li {
  text-align: center;
}

.nav-fade-in {
  animation: general-fade-in 1.1s;
}

.nav-item a {
  color: white;
}

.nav-link:hover {
  transition: 0.4s;
  color: var(--mid-gray-color) !important;
}

.navbar-toggler i {
  color: white;
}

.navbar-toggler:focus {
  outline: none;
}

#home {
  margin: 0 !important;
  padding: 0 !important;
}

.body-container {
  height: 100%;
  width: 100%;
}

.main-header {
  position: relative;
  height: 800px;
  width: 100%;
  background-size: cover !important;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 992px) {
  .home-page-buttons {
    padding: 0px;
  }
}

.carousel {
  z-index: 0;
  position: relative;
}

.banner-container {
  position: relative;
  z-index: 9;
  color: white;
  word-wrap: break-word;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  padding: 1rem;
  max-width: 900px;
}

.banner-inner-container {
  padding: 2rem;
}

.banner-logo img {
  max-width: 400px !important;
  margin-bottom: 1rem;
}

.banner-container hr {
  width: 40%;
  border-color: white;
}

.top-container {
  word-wrap: break-word;
  text-align: center;
}

.banner-main {
  height: 100%;
  z-index: 9;
}

.banner-main-inner {
  padding-bottom: 2%;
}

.banner-inner-text {
  padding-left: 3%;
  text-align: left !important;
}

.home-page-header {
  padding-bottom: 0;
  font-family: 'Great Vibes', cursive;
  color: rgb(152, 81, 169, 1);
}

.banner-sub-header {
  color: white;
  font-family: 'Great Vibes', cursive;
}

.symbols-title-container {
  position: relative !important;
  padding-bottom: 4rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .symbols-title-container {
    padding-top: 3rem;
  }
}

@media (min-width: 768px) {
  .symbols-title-container {
    padding-top: 6rem;
  }
}

.symbols-title {
  text-align: center;
  z-index: 30;
  background-color: white;
  position: absolute;
  padding-left: 2rem;
  padding-right: 2rem;
}

.symbols-title-line {
  position: absolute;
  height: 1px;
  width: 100%;
  z-index: 2;
}

@media (min-width: 992px) {
  .symbols-title-line {
    width: 60%;
  }
}

.symbols-main-container {
  padding-bottom: 7rem;
}

.symbols-clickable {
  transition: 0.3s ease-out;
  transition-property: transform;
}

.center-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-column h4 {
  color: rgb(39, 72, 92);
}

.center-column p {
  text-align: center;
  color: rgb(170, 170, 170);
  max-width: 220px;
}

.icon-text-container {
  background: var(--light-gray-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 2rem 1rem 1rem 1rem;
  box-shadow: 0 3px 5px rgba(0,0,0,.02),0 0 2px rgba(0,0,0,.05),0 1px 4px rgba(0,0,0,.08);
}

.icon-text-container:hover .symbols-clickable {
  transform: translateY(-4px);
}

.icon-text-container:hover .symbols-top-left {
  opacity: 70%;
}

.icon-text-container p {
  font-size: 0.95rem !important;
}

.icon-text-container:hover .text-arrow-link p,
.icon-text-container:hover .text-arrow-link svg {
  color: rgba(39, 72, 92, 1);
  fill: rgba(39, 72, 92, 1);
}

.icon-container {
  height: 75px;
  width: 75px;
  position: relative;
  overflow: hidden !important;
}

.icon-container svg {
  position: absolute;
  z-index: 22;
  height: 60px;
  width: 60px;
  margin-left: 0.5rem;
}

.symbols-top-left {
  background-color: var(--light-teal-color);
  height: 40px;
  width: 40px;
  position: absolute;
  z-index: 2;
  transition: 0.3s ease-out;
  opacity: 30%;
  border-radius: 2px;
}

.home-page-lower-container {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 92%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.logo-container {
  cursor: pointer;
}

.down-arrow svg {
  fill: white;
  height: 2.4rem;
  width: 2.4rem;
  border: 1px solid white;
  border-radius: 100%;
}

.down-arrow svg:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.down-arrow svg:active {
  background-color: rgba(255, 255, 255, 0.6);
}

.banner-button-one {
  margin-right: 1rem;
  background: var(--light-teal-color);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: fit-content;
  margin-top: 1rem;
  border-radius: 2px;
  font-family: 'Source Serif Pro';
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 8px rgba(0,0,0,.08),0 3px 4px rgba(0,0,0,.1),0 1px 4px -1px rgba(0,0,0,.1)!important;
  color: white !important;
  padding-right: 10px;
  padding-left: 10px;
}

.banner-button-two {
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: fit-content;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
  border-radius: 2px;
  font-family: 'Source Serif Pro';
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 8px rgba(0,0,0,.08),0 3px 4px rgba(0,0,0,.1),0 1px 4px -1px rgba(0,0,0,.1)!important;
  color: white !important;
  padding-right: 10px;
  padding-left: 10px;
}

.banner-button-one:hover {
  background: var(--dark-teal-color);
}

.banner-button-two:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ------------------------------------------------------------------ */
/* j. Home page middle styles
/* ------------------------------------------------------------------ */

.swiper-pagination-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem !important;
}

.swiper-pagination-container .swiper-button-prev,
.swiper-pagination-container .swiper-button-next {
  position: relative;
  display: inline;
}

.swiper-pagination-container .swiper-button-next:after,
.swiper-pagination-container .swiper-button-prev:after {
  font-size: 17px !important;
  border: 1px solid white;
  padding: 10px;
  border-radius: 100%;
  width: 30px !important;
  height: 30px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-container .swiper-button-next:hover:after,
.swiper-pagination-container .swiper-button-prev:hover:after {
  background-color: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-container .swiper-button-next:active:after,
.swiper-pagination-container .swiper-button-prev:active:after {
  background-color: rgba(255, 255, 255, 0.6);
}

.swiper-button-mid {
  width: 40px;
}

.reviews-outer-container,
.listings-outer-container {
  background-color: var(--light-teal-color);
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 100vw !important;
}

.reviews-outer-container .container,
.listings-outer-container .container {
  overflow: hidden;
}

.reviews-outer-container .swiper-carousel .swiper-slide {
  height: fit-content !important;
}

.review-swiper {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.client-image img {
  height: 6rem;
  width: 6rem;
  object-fit: contain;
  border-radius: 50%;
}

.client-image-words {
  padding-top: 1rem;
  padding-left: 1rem;
}

.client-sub-header {
  font-size: 13px !important;
  color: rgb(140, 140, 140) !important;
}

.client-text {
  font-size: 16px;
  padding-top: 1rem;
  line-height: 1.8rem;
  color: rgb(120, 120, 123);
}

@media (min-width: 992px) {
  .client-text {
    min-height: 190px;
  }
}

.carousel-item {
  margin: 10%;
}

.carousel-point {
  padding: 1%;
}

.about-container {
  position: relative;
  background-color: white;
}

.about-header {
  color: white;
  font-weight: 400;
  padding: 10px;
}

.about-header-inverted {
  color: var(--main-color);
  font-weight: 400;
  padding: 10px;
}

.about-stats-container {
  background-color: var(--light-teal-color);
  padding-top: 6%;
  padding-bottom: 6%;
}

.stat-container {
  height: 100%;
  width: 100%;
}

.about-mid-left {
  color: white;
  background-color: var(--dark-teal-color);
  padding-top: 10%;
  padding-bottom: 10%;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.about-mid-left-container {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.about-mid-right-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100%;
}

.about-mid-right {
  background-image: url('../images/main-page-image.jpg');
  height: 100%;
  width: 100%;
  min-height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.about-lower {
  width: 100%;
  position: relative;
  padding-top: 5%;
  min-height: 520px !important;
}

.reviews-arrow {
  color: white !important;
  padding-right: 10px;
  padding-left: 10px;
  transition: 0.4s;
  cursor: pointer;
}

.reviews-arrow:hover {
  opacity: 50%;
}

.carousel-indicators li {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  border-radius: 100% !important;
  background-color: var(--main-color) !important;
  margin-right: 6px;
  margin-left: 6px;
  text-indent: -999px;
  cursor: pointer;
  background-clip: unset !important;
  border-top: none !important;
  border-bottom: none !important;
  opacity: .5;
  transition: opacity .6s ease;
}

.about-lower-carousel-inner {
  height: 100%;
}

.circle-div {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  background-color: var(--dark-teal-color);
}

.carousel-item {
  margin: 0 !important;
  padding-top: 0px !important;
}

.carousel-item p {
  display: inline-block;
}

.carousel-item-next,
.carousel-item-prev {
  display: none !important;
}

.carousel-points .active {
  background-color: white;
}

.carousel-container {
  overflow-x: hidden;
}

.review-quote {
  background-color: white;
  box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
  padding: 2rem !important;
  border-radius: 2px;
}

.about-final {
  padding-top: 1%;
  padding-bottom: 5%;
}

.about-final-button {
  background-color: var(--light-teal-color);
  text-align: center;
  transition: all 0.4s;
  border-radius: 0.3rem;
  box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
  cursor: pointer;
}

.about-final-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
}

.about-final-button:active {
  background-color: rgb(49, 73, 74);
}

.about-final-button p {
  margin-bottom: 0 !important;
}

@media (max-width: 576px) {
  .about-final-button {
    margin-bottom: 10px;
  }
}

@media (min-width: 576px) {
  .about-final-button {
    margin: 5px;
  }
}

.about-final-button.top {
  padding: 12px 24px;
}

@media (min-width: 1060px) {
  .about-final-button.top {
    min-height: 199.2px;
  }
}

@media (min-width: 1075px) {
  .about-final-button.top {
    min-height: fit-content;
  }
}

.get-in-touch-desc {
  display: flex;
  justify-content: center;
}

.get-in-touch-desc p {
  max-width: 650px;
}

.bottom-section-main-container {
  margin-top: 5rem;
  margin-bottom: 0rem;
  background: var(--light-gray-color);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 2px;
  padding: 3rem 1.6rem 2rem 1.6rem;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
  max-width: 800px;
  box-shadow: 0 3px 5px rgba(0,0,0,.02),0 0 2px rgba(0,0,0,.05),0 1px 4px rgba(0,0,0,.08);
  font-size: 16px;
  color: rgb(120, 120, 123);
}

@media (min-width: 768px) {
  .bottom-section-main-container {
    padding: 3rem 4rem 4rem 4rem !important;
    margin-right: 2rem !important;
    margin-left: 2rem !important;
    margin-bottom: 5rem !important;
  }
}

.bottom-section-main-container h3 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 1.5rem;
}

.bottom-section-main-container hr {
  border-color: var(--main-color);
  opacity: 20%;
  width: 100% !important;
}

.bottom-section-sub-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}

.bottom-section-image img {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .bottom-section-image img {
    height: 70px !important;
  }
}

@media (min-width: 1400px) {
  .bottom-section-image img {
    height: 100px !important;
  }
}

.bottom-symbols-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .bottom-symbols-container {
    padding-top: 8rem !important;
  }
}

.bottom-symbols-container h3 {
  text-align: center;
  padding-bottom: 2rem;
}

/* ------------------------------------------------------------------ */
/* k. About Page Styles
/* ------------------------------------------------------------------ */

.page-about-header h3,
.page-about-header h5,
.page-about-header h6 {
  padding-left: 10px;
  color: white;
}

.page-about-header h3 {
  color: white;
}

.page-about-header h5,
.page-about-header h6 {
  color: var(--mid-gray-color);
}

.bio-container {
  background-color: var(--light-teal-color);
}

.bio-image-container img {
  width: 100%;
  object-fit: cover !important;
  height: 285px;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);
}

.bio-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bio-header {
  z-index: 3;
  position: relative;
}

.bio-header h3 {
  font-weight: 600;
  color: var(--main-color);
}

.bio-header h5 {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Source Serif Pro';
}

.about-img-container {
  position: relative;
  z-index: 2;
}

.about-img-container::before {
  content: "";
  position: absolute;
  background-color: var(--light-gray-color);
  height: 100%;
  width: 100%;
  left: -2.5rem;
  top: 1rem;
  z-index: -1;
  height: 300px;
}

@media (max-width: 991px) {

  .bio-header {
    text-align: center !important;
    padding-top: 2rem;
  }

  .about-img-container::before {
    left: -1rem !important;
    top: 0.5rem !important;
    height: 290px !important;
  }
  
}

@media (min-width: 992px) {
  .bio-right-text {
    padding-left: 2rem;
  }
} 

/* ------------------------------------------------------------------ */
/* l. Service Pages Styles
/* ------------------------------------------------------------------ */

.services-item-container {
  border-left: solid 2px var(--dark-teal-color) !important;
  padding-bottom: 5%;
}

.services-item-container-inner {
  padding-left: 3%;
}

.card {
  color: white;
  background-color: var(--dark-teal-color);
  padding-top: 10%;
  padding-bottom: 10%;
}

.card-white {
  border: none;
  color: var(--main-color);
}

.service-third-section {
  background-color: var(--light-gray-color);
}

.selling-mid-right-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100%;
}

.selling-mid-right {
  background-image: url('../images/selling-page-image.jpg');
  height: 100%;
  width: 100%;
  min-height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.buying-mid-right-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100%;
}

.buying-mid-right {
  background-image: url('../images/buying-image.jpg');
  height: 100%;
  width: 100%;
  min-height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ------------------------------------------------------------------ */
/* m. Listings Page Styles
/* ------------------------------------------------------------------ */

.listing-container {
  max-width: 1800px;
}

.listing-container-inner {
  border-radius: 0.2rem;
  height: 100%;
  box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
}

.listings-image-container {
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

.listings-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listings-two-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.listings-image-container-two img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a {
  text-decoration: none !important;
}

.small-listing-container {
  position: relative;
  background-color: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
  transition: 0.4s;
}

.small-listing-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
}

.small-blog-image img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.small-listing-image {
  position: relative;
}

.small-listing-image img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .small-listing-image img {
    height: 220px;
  }
}

@media (min-width: 992px) {
  .small-listing-image img {
    height: 240px;
  }
}

.small-listing-address {
  position: absolute;
  left: 10px;
  top: 0;
  padding-top: 0.5rem;
}

.small-listing-address h4 {
  color: white;
  font-family: 'Source Serif Pro' !important;
}

.listing-description {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
}

.listing-description-top {
  padding-top: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.listing-description-top h6 {
  font-family: 'Source Serif Pro', serif;
  color: #212529;
  font-weight: 500 !important;
  font-size: 16px;
}

.listing-description-mid p {
  color: rgb(140, 140, 140);
  font-size: 14px;
}

.listing-description-fade {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, white, transparent);
  max-height: 60px;
}

.listing-link-container {
  display: flex;
  justify-content: center;
}

.listing-link {
  color: var(--main-color);
}

.listing-link:hover {
  color: rgb(140, 140, 140);
}

.blog-description {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  position: relative;
}

.blog-description-top {
  padding-top: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.blog-description-top h6 {
  font-family: 'Source Serif Pro', serif;
  color: #212529;
  font-weight: 500 !important;
  font-size: 16px;
}

.blog-description-mid p {
  color: rgb(140, 140, 140);
  font-size: 14px;
}

.blog-description-fade {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, white, transparent);
  max-height: 60px;
}

/* ------------------------------------------------------------------ */
/* n. Contact Page Styles
/* ------------------------------------------------------------------ */

.contact-container {
  width: 100%;
  margin-top: 1rem;
  position: relative;
}

.contact-left {
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  background: rgba(250, 251, 253);
  z-index: 5;
  margin-top: 1rem;
  border-radius: 2px;
  box-shadow: 0 3px 5px rgba(0,0,0,.02),0 0 2px rgba(0,0,0,.05),0 1px 4px rgba(0,0,0,.08);
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-right {
  margin-top: 2.5rem;
}

.contact-svg {
  padding: 0.3rem;
  background-color: rgba(150, 174, 187, 0.3);
  border-radius: 100%;
  margin-right: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-svg svg {
  fill: var(--light-teal-color);
  height: 16px;
  width: 16px;
}

.contact-left,
.contact-right {
  width: 100%;
}

.contact-left h6 {
  font-family: 'Source Serif Pro', serif;
  color: var(--main-color);
  font-size: 1rem;
}

.contact-left h5 {
  font-family: 'Source Serif Pro', serif !important;
  color: var(--main-color);
  margin-bottom: 0px !important;
}

.contact-left p,
.contact-phone {
  font-size: 1rem !important;
  margin-bottom: 0px !important;
  color: var(--light-gray-text) !important;
  line-height: 1.5 !important;
  font-family: 'Source Serif Pro', serif !important;
}

.contact-left hr {
  margin-bottom: 0px !important;
  margin-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-left: none;
}

.contact-right img {
  height: 100%;
  width: 100%;
  border-radius: 2px;
}

.contact-intro-text {
  display: flex;  
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
}

.contact-intro-text p {
  max-width: 600px;
  text-align: center;
}

@media (min-width: 992px) {

  .contact-container {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    margin-bottom: 12rem;
  }

  .contact-left {
    width: 45%;
    min-width: 450px;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);
    padding: 3rem;
    margin-left: 1rem;
    margin-top: 3rem;
  }

  .contact-right {
    margin-top: 0rem;
    width: 75%;
    position: absolute;
    right: 0;
  }

  .contact-right img {
    min-height: 550px;
    object-fit: cover;
  }

  .contact-svg {
    padding: 0.4rem;
    margin-right: 1rem;
    height: 34px;
    width: 34px;
  }

}

.map-container-outer {
  height: 100%;
  width: 100%;
}

.contact-map-container {
  height: 100%;
  width: 100%;
  min-height: 250px;
  padding-bottom: 3rem;
}

.contact-map-container iframe {
  height: 100%;
  width: 100%;
  box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
}

@media (min-width: 992px) {
  .contact-map-container {
    min-height: 325px;
    padding-right: 2rem;
  }
}

/* ------------------------------------------------------------------ */
/* o. Footer Styles
/* ------------------------------------------------------------------ */

.footer-container {
  position: relative;
  width: 100%;
  background-color: var(--main-color);
  color: white !important;
  padding-top: 2.5rem;
}

@media (max-width: 768px) {
  .footer-container {
    padding-left: 1rem;
  }
}

@media (min-width: 768px) {
  .footer-logos {
    padding-left: 3rem;
  }
}

.footer-header-container {
  position: relative;
  height: auto;
  text-align: center;
}

.footer-fa-brands {
  color: white;
  font-weight: 400;
}

.footer-logo-container img {
  height: 80px;
  width: 160px;
  margin-bottom: 1.5rem !important;
}

.footer-container p {
  font-size: 16px !important;
  color: rgb(239, 240, 241);
  margin-bottom: 0px !important;
}

.footer-container a {
  margin-right: 8px;
}

main, body {
  padding-bottom: 0 !important;
}

.make-invisible-test {
  display: none;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.footer-link,
.footer-container .fa-brands {
  color: white;
  transition: all ease-in 0.2s;
}

.footer-link:hover,
.footer-container .fa-brands:hover {
  color: rgb(170, 170, 170);
}

.footer-link:active {
  color: rgb(150, 150, 150);
}

.point-list {
  text-align: left !important;
  padding-left: 0 !important;
}

.point-list li {
  text-align: left !important;
  color: white;
}

.point-list li::before {
  content: "• ";
  color: white;
}

.light-teal-text {
  color: var(--light-teal-color) !important;
}

.dark-teal-text {
  color: var(--dark-teal-color) !important;
}

.bold {
  font-weight: bold !important;
}

.swiper {
  width: 600px;
  height: 300px;
}

.swiper-pagination-bullet {
  display: none !important;
}