:root {
  --pink: rgba(237, 131, 128, 0.25);
  --green: rgba(215, 236, 226, 0.71);
  --oliveGreen: rgba(133, 120, 41, 1);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 500 !important;
}

.h1-size {
  font-size: 2rem;
}
.h2-size {
  font-size: 2.3rem;
}
.h3-size {
  font-size: 2rem;
}

.long-header-size h2.h2-size {
  font-size: 2rem;
}

/* ==================================================================================== */
/* ====== Links ====== */
a {
  color: #000;
}

a:hover {
  color: var(--oliveGreen);
}

.footer-bg a {
  color: #fff;
}

button {
  background-color: transparent;
  border: none;
}

.btn-link-red {
  color: #e85551;
  text-align: left;
  margin-top: 1rem;
  font-weight: bold;
}

.link-r {
  color: #e85551;
  text-align: left;
  margin-top: 1rem;
  font-weight: bold;
  border: none;
  background: transparent;
}

.link-g {
  color: rgba(157, 210, 184, 1);
  text-align: left;
  margin-top: 1rem;
  font-weight: bold;
  border: none;
  background: transparent;
}

.link-underline {
  text-decoration: underline;
}

.link-size {
  font-size: 20px;
}

.hover-border a:after {
  background: rgba(157, 210, 184, 0.71);
  height: 0.2em;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  transition: right 0.2s ease-in-out;
}

.hover-border a {
  position: relative;
}

.hover-border a:hover:after {
  right: 0;
}
/* ==================================================================================== */
/* ====== Background Colors ====== */
.bgGreen {
  background-color: #d7ece2b5;
  /*   padding-top: 40px;
    padding-bottom: 40px; */
  /* min-height: 982px; */
}

.bgGray {
  background-color: #f6f6f6;
  /*  padding-top: 40px;
    padding-bottom: 40px; */
}

.bgYellow {
  background-color: #fff0bd;
  padding-top: 40px;
  padding-bottom: 40px;
}

.bg-green {
  background-color: rgba(215, 236, 226, 0.71);
  min-height: 982px;
}

.pink-bg {
  background-color: var(--pink);
  height: 50rem;
}

.front-bg-image {
  height: 880px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.footer-bg {
  background-color: #000;
}
/* ==================================================================================== */
/* ====== Header / Navigation ====== */
#header.active {
  background-color: #fff;
  -webkit-transition: background 100ms ease-in 50ms;
  -moz-transition: background 100ms ease-in 50ms;
  -o-transition: background 100ms ease-in 50ms;
  transition: background 100ms ease-in 50ms;
}

#header.hasScrolled {
  background-color: #fff;
  -webkit-transition: background 300ms ease-in 200ms;
  -moz-transition: background 300ms ease-in 200ms;
  -o-transition: background 300ms ease-in 200ms;
  transition: background 300ms ease-in 200ms;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 9%);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 0%;
  opacity: 0;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  text-decoration: none;
}

.menu a {
  text-decoration: none;
}

.menu-img {
  display: none;
}

.nav {
  margin-bottom: 1rem;
  font-weight: 700 !important;
}

.nav a {
  font-size: 30px;
  color: #000;
  font-weight: 700 !important;
}
.nav-wrapper {
  height: 90%;
}
/* ==================================================================================== */
/* ====== Font Weight ====== */
.pink-bg h2,
.pink-bg .h2 {
  font-weight: 600 !important;
}

.regular {
  font-weight: 400 !important;
}

.extra-light {
  font-weight: 200 !important;
}

.light {
  font-weight: 300 !important;
}

.medium {
  font-weight: 500 !important;
}

.semi-bold {
  font-weight: 600 !important;
}

.bold {
  font-weight: 700 !important;
}

.extra-bold {
  font-weight: 700 !important;
}
/* ==================================================================================== */
/* ====== Contact Card overlay ====== */
.image-conatiner {
  position: relative;
  width: 100%;
}

.image-conatiner img {
  width: 100%;
}

.image {
  display: block;
  width: 100%;
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem 0 1.5rem;
  opacity: 0;
  transition: opacity 0.25s;
}

.img-overlay > * {
  transform: translateY(20px);
  transition: transform 0.25s;
}

.img-overlay:hover > * {
  transform: translateY(0);
}

.img-overlay:hover {
  opacity: 1;
}

.img-overlay-blur {
  backdrop-filter: blur(5px);
}

.pgreen {
  font-weight: bold;
  color: #9dd2b8;
}

.text-olive {
  color: var(--oliveGreen);
}

/* ==================================================================================== */

.copy-size {
  font-size: 14px;
}

.main {
  display: block;
}

.main-hidden {
  display: none;
}

.show {
  opacity: 1;
  height: 100vh;
}

/* ==================================================================================== */
/* ====== Header Wrappers ====== */

.header-wrapper-w {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.header-wrapper-w-l {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.header-wrapper-w-650 {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.header-wrapper-80 {
  max-width: 80%;
  margin: 0 auto;
}

.header-wrapper-60 {
  max-width: 60%;
  margin: 0 auto;
}

.header-wrapper-50 {
  max-width: 50%;
  margin: 0 auto;
}

.front-header-space {
  margin-top: 80px !important;
  margin-bottom: 40px !important;
}
/* ==================================================================================== */
/* ====== Word animation ====== */
.front-header-height {
  height: 20rem;
}
.header-text-sub {
  font-size: 20px;
  text-align: center;
}
.header-wrapper {
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.header-wrapper span {
  display: block;
  padding: 0 8px 0 8px;
  height: 100%;
  animation: spin_words 5s infinite;
}
.words {
  overflow: hidden;
  height: 60px;
  font-weight: bold;
  color: #9dd2b8;
  /* text-align: center; */
}

@keyframes spin_words {
  10% {
    transform: translateY(-112%);
  }
  30% {
    transform: translateY(-100%);
  }
  45% {
    transform: translateY(-212%);
  }
  65% {
    transform: translateY(-200%);
  }
  75% {
    transform: translateY(-312%);
  }
  100% {
    transform: translateY(-300%);
  }
}

/* ==================================================================================== */
/* ====== Green underline/animation ====== */
.green-underline,
.green-underline-l {
  position: relative;
  z-index: 5;
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}

.green-underline::before,
.green-underline-l::before {
  display: block;
  content: "";
  width: 0px;
  height: 0.5rem;
  background: rgba(157, 210, 184, 0.71);
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: -1;
  -webkit-animation-name: border;
  /* Safari 4.0 - 8.0 */
  -webkit-animation-fill-mode: both;
  /* Safari 4.0 - 8.0 */
  animation-name: border;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
.green-underline::before {
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.green-underline-l::before {
  /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@-webkit-keyframes border {
  from {
    width: 0px;
  }
  to {
    width: 100%;
  }
}

/* ==================================================================================== */
/* ====== Screen sizes ====== */
@media only screen and (min-width: 544px) {
  .h2-size {
    font-size: 3rem;
  }
  .h1-size {
    font-size: 3rem;
  }
  .long-header-size h2.h2-size {
    font-size: 3rem;
  }
  .text-w {
    width: 50%;
  }
  .green-underline::before {
    height: 0.6rem;
  }
  .green-underline-l::before {
    height: 0.6rem;
  }
  .header-text-sub {
    max-width: 80%;
    margin: auto;
  }
  .front-header-space {
    margin-top: 180px !important;
  }
}
/* Small screen devices (600px and above) */
@media only screen and (min-width: 600px) {
  .front-bg-image {
    height: 450px !important;
    background-position: center center;
  }
}
@media only screen and (min-width: 768px) {
  .front-bg-image {
    height: 550px !important;
    background-position: center center;
  }
  .front-header-height {
    height: 30rem;
  }
}
/* Big screen devices (889px and above) */
@media only screen and (min-width: 889px) {
  .front-bg-image {
    height: 650px !important;
    background-position: center center;
  }
}
@media only screen and (min-width: 992px) {
  /*  .h1 {
      font-size: 3.9rem;
    } */
  .menu-img {
    display: block;
  }
  .green-underline::before {
    height: 1rem;
  }
  .green-underline-l::before {
    height: 1rem;
  }

  .header-text-sub {
    max-width: 75%;
    margin: auto;
  }
}
/* Extra big screen devices (1200px and above) */
@media only screen and (min-width: 1200px) {
  .front-bg-image {
    height: 800px !important;
    background-position: left top;
  }
}
@media only screen and (min-width: 1300px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px !important;
  }
}
@media only screen and (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1340px !important;
  }
  .nav a {
    font-size: 40px;
  }
}

/* ===== Max width ===== */
@media only screen and (max-width: 576px) {
  .front-header-space .h1,
  .front-header-space h1 {
    font-size: 2.3rem;
  }
  .pink-bg {
    height: 30rem !important;
  }
  .site-logo,
  .site-menu {
    width: 80%;
  }
  .front-bg-image {
    height: 450px;
    background-position: center center;
  }
  .green-underline::before,
  .green-underline-l::before {
    height: 0.6rem;
  }
}
/* For extremely small screen devices (595px and below) */
@media only screen and (max-width: 595px) {
  .front-bg-image {
    height: 450px !important;
    background-position: center center;
  }
}
/* Medium screen devices (768px and above) */
@media only screen and (max-width: 820px) {
  h2.header-wrapper.h1 {
    text-align: left;
    margin-bottom: 0px !important;
    font-size: 36px !important;
  }
  .words {
    height: 50px !important;
  }
  .pink-bg {
    height: 30rem !important;
  }
  .header-wrapper-w {
    max-width: 685px !important;
  }
  h1.static-text.display-4.font-weight-semibold.header-wrapper {
    font-size: 38px !important;
  }
}
