/* ------------------------------ */
/* ------------ VARS ------------ */
/* ------------------------------ */
:root {
  --font-family--regular: 'DM Sans', sans-serif;
  --font-family--heading: 'DM Serif Display', serif;

  --color--white: #FFF;
  --color--black: #000;
  --color--shaft: #3e3e3e;
  --color--alabaster: #F7F7F7;
  --color--gallery: #eeeeee;
  --color--yellow: #fbaf1e;
  --color--yellow-light: #ffc353;
  --color--green: #02813f;
  --color--green-light: #12aa5b;
}
















/* ------------------------------ */
/* --------- NORMALIZE ---------- */
/* ------------------------------ */
input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}
button {
  cursor: pointer;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
p {
  margin: 0;
}
html, body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}















/* ------------------------------ */
/* -------- TYPOGRAPHY ---------- */
/* ------------------------------ */

body {
  font-family: var(--font-family--regular);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color--shaft);
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--font-family--heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color--green);
}
h1, .h1 {
  font-size: 2.2rem;
  line-height: 1.12;
}
h2, .h2 {
  font-size: 1.95rem;
  line-height: 1.17;
}
h3, .h3 {
  font-size: 1.75rem;
  line-height: 1.2;
}
h4, .h4 {
  font-size: 1.5rem;
  line-height: 1.23;
}
h5, .h5 {
  font-size: 1.2rem;
  line-height: 1.27;
}
h6, .h6 {
  font-size: 1.07rem;
  line-height: 1.3;
}

@media (min-width: 600px) {
  body {
    font-size: 16px;
  }
}

@media (min-width: 825px) {
  h1, .h1 {
    font-size: 3.1rem;
  }
  h2, .h2 {
    font-size: 2.3rem;
  }
}

@media (min-width: 1250px) {
  body {
    font-size: 18px;
  }
  h1, .h1 {
    font-size: 4rem;
  }
  h2, .h2 {
    font-size: 2.85rem;
  }
  h3, .h3 {
    font-size: 2.1rem;
  }
  h4, .h4 {
    font-size: 1.6rem;
  }
  h5, .h5 {
    font-size: 1.35rem;
  }
  h6, .h6 {
    font-size: 1.15rem;
  }
}



















/* ------------------------------ */
/* ------------ UI -------------- */
/* ------------------------------ */

/***** Link *****/
a {
  color: var(--color--black);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
.link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--color--black);
  text-decoration: none;
}
.link:hover {
  color: var(--color--black);
  text-decoration: underline;
}
.link--yellow {
  color: var(--color--yellow);
}
.link--yellow:hover {
  color: var(--color--yellow);
}
.link__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: var(--color--green);
  border-radius: 50%;
}
.link__icon svg {
  width: 16px;
  height: 16px;
  fill: var(--color--white);
}
.link__text {
  margin-left: 6px;
}

/***** Button *****/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  text-align: center;
  text-decoration: none;
  outline: none;
  border-radius: 8px;
  transition: all .3s;
  background-color: var(--color--yellow);
  color: var(--color--black);
  outline: none;
  border: none;
}
.button:hover {
  background-color: var(--color--yellow-light);
}















/* ------------------------------ */
/* --------- COMPONENTS --------- */
/* ------------------------------ */

/***** Section *****/
.section {
  padding-top: 44px;
  padding-bottom: 44px;
}
.section--small {
  padding-top: 18px;
  padding-bottom: 18px;
}

/***** Container *****/
.container {
  padding-left: 6%;
  padding-right: 6%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/***** Inline List *****/
.inline-list {
  display: inline-flex;
  flex-wrap: wrap;
}
.inline-list__item {
  line-height: 1;
  margin-right: 7px;
}
.inline-list__item:last-child {
  margin-right: 0;
}
.inline-list--links .inline-list__item {
  margin-bottom: 7px;
  margin-right: 26px;
}
.inline-list--locations .inline-list__item {
  margin: 16px;
}

/***** List *****/
.list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 6px;
}
.list li:last-child {
  margin-bottom: 0;
}
.list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: var(--color--black);
}

/***** Logo *****/
.logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
}
.logo svg {
  width: 70px;
  height: 70px;
}

/***** Header *****/
.header {
  position: relative;
  z-index: 10;
}
.header__bar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 2px;
  padding-bottom: 5px;
  background-color: var(--color--white);
}
.header__bar .link__text {
  display: none;
}
.header__bar .logo {
  order: 1;
}
.header__bar .link {
  order: 2;
}
.header__bar-inner {
  display: flex;
}
.header__bar-inner > * {
  margin-right: 10px;
}
.header__main .burger-button {
  position: fixed;
  top: 21px;
  right: 6%;
}

/***** Burger Button *****/
.burger-button {
  position: relative;
  z-index: 10;
  padding: 12px;
  background-color: var(--color--black);
  border: none;
  border-radius: 10px;
}
.burger-button div {
  height: 2px;
  background-color: var(--color--white);
  width: 26px;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .5s;
}
.burger-button div:last-child {
  margin-top: 4px;
}
.st--nav-open .burger-button div:first-child {
  transform: rotate(15deg) translateY(3px);
}
.st--nav-open .burger-button div:last-child {
  transform: rotate(-15deg) translateY(-3px);
}

/***** Main *****/
.main {
  margin-top: 77px;
}

/***** Intro *****/
.intro {
  padding-top: 70px;
  padding-bottom: 80px;
}
.intro::before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 0;
  padding-bottom: 5%;
  -webkit-clip-path: polygon(25% 0, 0% 100%, 100% 100%);
  clip-path: polygon(25% 0, 0% 100%, 100% 100%);
  background-color: var(--color--white);
}

/***** Preview Card *****/
.preview-card {
  position: relative;
  overflow: hidden;
}
.preview-card__inner {
  position: relative;
  top: 78%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(2, 129, 63, 0.86);
  color: var(--color--white);
  transition: .3s ease;
}
.preview-card:hover .preview-card__inner {
  top: 0;
}

/***** Collage *****/
.collage {
  position: relative;
  margin-bottom: 40px;
}
.collage__big {
  width: 100%;
  padding-right: 40px;
}
.collage__small {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 45%;
}

/***** Image Card *****/
.image-card {
  padding: 120px 20px 20px;
}

/* Swiper: Testimonials Slider */
body .swiper-button-next,
body .swiper-button-prev {
  z-index: 1;
}
.swiper-button-wrapper {
  display: flex;
  justify-content: center;
}
.swiper-button-wrapper .swiper-button {
  position: static;
  margin-top: 0;
  margin-right: 20px;
  color: var(--color--black);
  transition: all .3s ease;
}
.swiper-button-wrapper .swiper-button:hover {
  color: var(--color--yellow);
}
.swiper-button-wrapper .swiper-button:last-child {
  margin-right: 0;
}

/***** Avatar *****/
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.avatar img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

/***** Box Label *****/
.box-label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-label__inner {
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-family--heading);
  padding: 10px 20px;
  background-color: rgba(2, 129, 63, 0.86);
  color: var(--color--white);
}

/* Icon Link */
.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color--green);
  border-radius: 50%;
  transition: all .3s ease-in;
}
.icon-link:hover {
  background-color: var(--color--yellow);
}
.icon-link svg {
  width: 16px;
  height: 16px;
  fill: var(--color--white);
  transition: fill .3s ease-in-out;
}
.icon-link:hover svg {
  fill: var(--color--white);
}

@media (min-width: 600px) {
  /***** Section *****/
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section--small {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  /***** Header *****/
  .header__bar .link__text {
    display: inline;
  }
  .header__bar-inner>* {
    margin-right: 16px;
  }

  /***** Intro *****/
  .intro {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  /***** Preview Card *****/
  .preview-card__inner {
    top: 76%;
  }
}

@media (min-width: 825px) {
  /***** Section *****/
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /***** Preview Card *****/
  .preview-card__inner {
    top: 74%;
  }
}

@media (max-width: 1023px) {
  /***** Nav *****/
  .nav {
    display: block;
    position: fixed;
    width: 100%;
    top: -150%;
    left: 0;
    padding-bottom: 40px;
  }
  .st--nav-open .nav {
    top: 77px;
    z-index: 10;
    background-color: var(--color--green);
    height: calc(100vh - 77px);
  }

  /***** Nav List *****/
  .nav-list {
    overflow: auto;
    padding: 20px 6%;
    height: calc(100vh - 77px);
  }

  /***** Nav Link *****/
  .nav-link {
    font-size: 1.65rem;
    color: var(--color--white);
    text-decoration: none;
    transition: all .3s;
  }
  .nav-link:hover {
    text-decoration: none;
  }
  .nav-link--toggler * {
    pointer-events: none;
  }
  .nav-link--toggler svg {
    width: 16px;
    height: 16px;
    stroke: var(--color--white);
    margin-left: 10px;
  }
  /* Inner Nav List */
  .inner-nav-list {
    padding-left: 27px;
    display: none;
  }
  .inner-nav-list.st--active {
    display: block;
  }
  .inner-nav-list a {
    font-size: 1.1rem;
    color: var(--color--white);
    text-decoration: none;
  }
  .inner-nav-list a:hover {
    text-decoration: none;
  }
}

@media (min-width: 1024px) {
  /***** Section *****/
  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  /***** List *****/
  .list--grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .list--grid li {
    width: 45%;
  }

  /***** Logo *****/
  .logo {
    width: 110px;
    height: 110px;
  }
  .logo svg {
    width: 110px;
    height: 110px;
  }

  /***** Header *****/
  .header__bar {
    position: static;
    padding-top: 4px;
    padding-bottom: 11px;
  }
  .header__bar .logo {
    order: 0;
  }
  .header__bar .link {
    order: 0;
  }
  .header__bar-inner {
    justify-content: space-around;
  }
  .header__main {
    border-top: 1px solid var(--color--gallery);
    border-bottom: 1px solid var(--color--gallery);
  }

  /***** Nav List *****/
  .nav-list {
    display: flex;
    justify-content: space-between;
  }
  .nav-list__item {
    position: relative;
  }

  /***** Nav Link, Inner Nav List *****/
  .nav-link {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.17rem;
    color: var(--color--black);
    text-decoration: none;
    transition: all .3s;
  }
  .nav-link:hover {
    text-decoration: none;
    color: var(--color--green);
  }
  .nav-link--toggler * {
    pointer-events: none;
  }
  .nav-link--toggler svg {
    width: 14px;
    height: 14px;
    stroke: var(--color--black);
    margin-left: 6px;
    transition: all .3s;
  }
  .inner-nav-list {
    display: none;
  }
  .inner-nav-list.st--active {
    display: block;
  }
  .nav-link--toggler:hover + .inner-nav-list,
  .inner-nav-list:hover {
    display: flex;
  }
  .nav-link--toggler:hover svg {
    fill: var(--color--geraldine);
  }
  .inner-nav-list {
    padding: 6px;
    position: absolute;
    z-index: 10;
    top: 99%;
    left: -12px;
    width: 220px;
    border: 1px solid var(--color--gallery);
    background-color: var(--color--white);
    border-top: none;
    flex-direction: column;
  }
  .inner-nav-list li:first-child {
    display: none;
  }
  .inner-nav-list a {
    display: block;
    text-decoration: none;
    padding: 2px 6px;
    transition: all .3s;
  }
  .inner-nav-list a:hover {
    background-color: var(--color--green);
    color: var(--color--white);
  }

  /***** Burger Button *****/
  .burger-button {
    display: none;
  }

  /***** Main *****/
  .main {
    margin-top: 0;
  }

  /***** Intro *****/
  .intro {
    padding-top: 120px;
    padding-bottom: 166px;
  }

  /***** Image Card *****/
  .image-card {
    padding: 160px 20px 20px;
  }
}

@media (min-width: 1250px) {
  /***** Section *****/
  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .section--small {
    padding-top: 26px;
    padding-bottom: 26px;
  }
  /***** List *****/
  .list li {
    padding-left: 32px;
    margin-bottom: 9px;
  }
  .list li::before {
    top: 13px;
    width: 19px;
  }
  /***** Intro *****/
  .intro {
    padding-top: 130px;
    padding-bottom: 186px;
  }
}

@media (min-width: 1600px) {
  /***** Intro *****/
  .intro {
    padding-top: 140px;
    padding-bottom: 220px;
  }

  /***** Image Card *****/
  .image-card {
    padding: 200px 20px 20px;
  }
}




/* ------------------------------ */
/* ----------- FOOTER ----------- */
/* ------------------------------ */

/* Footer List */
.f-list {
  margin-bottom: 26px;
}
.f-list:last-child {
  margin-bottom: 0;
}
.f-list__item {
  margin-bottom: 26px;
}
.f-list__item:last-child {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .f-list {
    display: inline-flex;
    align-items: center;
  }
  .f-list__item {
    margin-bottom: 0;
    margin-right: 26px;
  }
  .f-list__item:last-child {
    margin-right: 0;
  }
}

@media (min-width: 825px) {
  .f-list {
    margin-bottom: 32px;
  }
  .f-list__item {
    margin-right: 32px;
  }
}






/* ------------------------------ */
/* ---------- ANIMATION --------- */
/* ------------------------------ */

/* Animate on scroll */
.animate {
  transform: translateY(50px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: .3s;
  transition-timing-function: linear;
}
.animate.animate--active {
  transform: none;
  opacity: 1;
}















/* --------------------------- */
/* --------- HELPERS --------- */
/* --------------------------- */

/***** Box *****/
.box {
  padding: 20px;
}

/***** Overlay *****/
.overlay {
  position: relative;
}
.overlay::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.overlay > * {
  position: relative;
  z-index: 1;
}

/***** Display *****/
.d--b {
  display: block;
}
.d--n {
  display: none;
}

/***** Flex *****/
.jc--c {
  justify-content: center;
}
.ai--c {
  align-items: center;
}
.ai--fs {
  align-items: flex-start;
}

/***** Width *****/
.mw {
  max-width: 620px;
}
.w--100 {
  width: 100%;
}

/***** Position *****/
.p--r {
  position: relative;
}

/***** Align *****/
.ta--c {
  text-align: center;
}
.ta--r {
  text-align: right;
}

/***** Z-index *****/
.zi--1 {
  z-index: 1;
}

/***** Borders *****/
.bb--1 {
  border-bottom: 1px solid;
}
.bc--white {
  border-color: var(--color--white);
}
.br--10 {
  border-radius: 10px;
}
.br--12 {
  border-radius: 12px;
}

/***** Box Shadow *****/
.bs--d {
  box-shadow: rgba(100, 100, 111, 0.1) 0px 6px 15px 0px;
}

/*****  Color *****/
body .c--white {
  color: var(--color--white);
}
body .c--yellow {
  color: var(--color--yellow);
}

/*****  Bg *****/
.bg--i {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bg--white {
  background-color: var(--color--white);
}
.bg--alabaster {
  background-color: var(--color--alabaster);
}
.bg--green {
  background-color: var(--color--green);
}

/*****  Font Size *****/
.fz--s {
  font-size: 0.9rem;
  line-height: 1.4;
}
.fz--b {
  font-size: 1.09rem;
}

/***** Font Style *****/
.fs--i {
  font-style: italic;
}

/***** Font Weight *****/
.fw--300 {
  font-weight: 300;
}
.fw--400 {
  font-weight: 400;
}
.fw--500 {
  font-weight: 500;
}
.fw--600 {
  font-weight: 600;
}
.fw--700 {
  font-weight: 700;
}
.fw--800 {
  font-weight: 800;
}
.fw--900 {
  font-weight: 900;
}

/***** Padding *****/
.pb--0 {
  padding-bottom: 0;
}
.pt--0 {
  padding-bottom: 0;
}

/***** Marigin *****/
.mlr--a {
  margin-left: auto;
  margin-right: auto;
}
.mb--s {
  margin-bottom: 15px;
}
.mb--d {
  margin-bottom: 26px;
}
.mb--b {
  margin-bottom: 38px;
}
.mb--sec {
  margin-bottom: 65px;
}
.mt--s {
  margin-top: 15px;
}
.mt--d {
  margin-top: 26px;
}
.mt--b {
  margin-top: 38px;
}
.mt--sec {
  margin-top: 65px;
}

@media (min-width: 600px) {
  /***** Font Size *****/
  .fz--b {
    font-size: 1.12rem;
  }
}

@media (min-width: 825px) {
  /***** Box *****/
  .box {
    padding: 32px;
  }
}

@media (min-width: 1250px) {
  /***** Box *****/
  .box {
    padding: 42px;
  }
  /***** Width *****/
  .mw {
    max-width: 700px;
  }

  /***** Font Size *****/
  .fz--b {
    font-size: 1.27rem;
  }
  .fz--s {
    font-size: 0.94rem;
  }

  /***** Marigin *****/
  .mb--s {
    margin-bottom: 22px;
  }
  .mb--d {
    margin-bottom: 36px;
  }
  .mb--b {
    margin-bottom: 60px;
  }
  .mb--sec {
    margin-bottom: 125px;
  }
  .mt--s {
    margin-top: 22px;
  }
  .mt--d {
    margin-top: 36px;
  }
  .mt--b {
    margin-top: 60px;
  }
  .mt--sec {
    margin-top: 125px;
  }
}











/* ----------------------------- */
/* ----------- GRIDS ----------- */
/* ----------------------------- */

/***** Grid Two *****/
.grid-two {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
}
.grid-two.grid-two--layout {
  row-gap: 26px;
}
.grid-two.grid-two--no-gap {
  row-gap: 0;
}
.grid-two.grid-two--sec-bg > div:last-child {
  height: 300px;
}

/***** Grid Gallery *****/
.grid-gallery {
  display: grid;
  justify-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-gap: 7px;
}
.grid-gallery__item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.grid-gallery__item--1,
.grid-gallery__item--8 {
  grid-column: span 2;
  grid-row: span 2;
}
.grid-gallery__item--5,
.grid-gallery__item--7 {
  grid-column: span 2;
}
.grid-gallery__item--2 {
  height: 100px;
}

@media (min-width: 600px) {
  /***** Grid Two *****/
  .grid-two {
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
  }
  .grid-two.grid-two--layout {
    column-gap: 20px;
  }
  .grid-two.grid-two--invert > div:first-child {
    order: 2;
  }
  .grid-two.grid-two--invert > div:last-child {
    order: 1;
  }
  .grid-two.grid-two--sec-bg>div:last-child {
    height: auto;
  }
  .grid-two.grid-two--no-gap {
    column-gap: 0;
  }

  /***** Grid Gallery *****/
  .grid-gallery__item--2 {
    height: 160px;
  }
}

@media (min-width: 825px) {
  /***** Grid Two *****/
  .grid-two {
    row-gap: 20px;
    column-gap: 20px;
  }
  .grid-two.grid-two--layout {
    column-gap: 40px;
  }

  /***** Grid Gallery *****/
  .grid-gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .grid-gallery__item--4,
  .grid-gallery__item--9 {
    grid-column: span 2;
  }
  .grid-gallery__item--5,
  .grid-gallery__item--7 {
    grid-column: span 1;
  }
  .grid-gallery__item--6 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .grid-gallery__item--8 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (min-width: 1024px) {
  /***** Grid Two *****/
  .grid-two.grid-two--layout {
    column-gap: 80px;
  }

  /***** Grid Gallery *****/
  .grid-gallery {
    grid-gap: 12px;
  }
}











/* ------------------------------ */
/* ------------ CF -------------- */
/* ------------------------------ */
.cf {
  display: block;
  text-align: left;
}
.cf__row {
  margin-bottom: 12px;
}
.cf__row--message {
  margin-bottom: 18px;
}
.cf__row:last-child {
  margin-bottom: 0;
}
.cf__row--buttons {
  display: flex;
  justify-content: space-between;
}
.cf__row--buttons button {
  width: 48%;
}
.cf__input {
  width: 100%;
  padding: 13px 20px 11px;
  line-height: 1.1;
  font-weight: 500;
  background-color: #f0f0f0;
  border: 1px solid #979693;
  border-radius: 8px;
  transition: all .3s ease;
}
.cf__input--textarea {
  display: block;
  min-width: 100%;
  max-width: 100%;
  height: 160px;
  max-height: 160px;
  min-height: 160px;
  line-height: 1.4;
}
.cf__input:focus {
  background-color: var(--color--white);
}
.cf__label {
  display: block;
  color: var(--color--black);
  font-family: var(--font-family--heading);
}
.cf__alert {
  display: block;
  color: red;
}

@media (min-width: 1250px) {
  .cf {
    padding: 0 40px;
  }
  .cf__alert {
    font-size: 0.7rem;
  }
}
















/* ------------------------------ */
/* ------- CALENDLY WIDGET ------ */
/* ------------------------------ */
.calendly-widget ._cUP1np9gMvFQrcPftuf.xahN8AEzyAvQtVj17TPv {
  margin: 0;
}
.calendly-inline-widget,
.calendly-inline-widget *,
.calendly-badge-widget,
.calendly-badge-widget *,
.calendly-overlay,
.calendly-overlay * {
  font-size: 16px;
  line-height: 1.2em;
}
.calendly-inline-widget iframe,
.calendly-badge-widget iframe,
.calendly-overlay iframe {
  /*
  Values other than `display: inline` cause a scrolling bug on iOS where the underlying page
  scrolls instead of the iframe
  */
  display: inline;
  width: 100%;
  height: 100%;
}
.calendly-popup-content {
  /* Any updates in this section should be updated for inline mode */
  position: relative;
}
.calendly-popup-content.calendly-mobile {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.calendly-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 7;
  background-color: #a5a5a5;
  background-color: rgba(31, 31, 31, .4);
}
.calendly-overlay .calendly-close-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.calendly-overlay .calendly-popup {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 80%;
  min-width: 900px;
  max-width: 1000px;
  height: 90%;
  max-height: 680px;
}

@media (max-width: 975px) {
  .calendly-overlay .calendly-popup {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: auto;
    min-width: 0;
    max-height: none
  }
}

.calendly-overlay .calendly-popup .calendly-popup-content {
  height: 100%;
}
.calendly-overlay .calendly-popup-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #fff;
  width: 19px;
  height: 19px;
  cursor: pointer;
  background: url(../../assets/external/close-icon.svg) no-repeat;
  background-size: contain;
}

@media (max-width: 975px) {
  .calendly-overlay .calendly-popup-close {
    top: 15px;
    right: 15px
  }
}

.calendly-badge-widget {
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 6;
}
.calendly-badge-widget .calendly-badge-content {
  display: table-cell;
  width: auto;
  height: 45px;
  padding: 0 30px;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 2px 5px;
  font-family: sans-serif;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.calendly-badge-widget .calendly-badge-content.calendly-white {
  color: #666a73;
}
.calendly-badge-widget .calendly-badge-content span {
  display: block;
  font-size: 12px;
}
.calendly-spinner {
  display: none;
}

/* Calendly Widget, Calendly Toggler */
.calendly-widget-toggler {
  display: flex;
  margin-bottom: 60px;
}
.calendly-widget-toggler__item {
  width: 50%;
  text-align: center;
}
.calendly-widget-toggler__item:first-child {
  border-right: 1px solid #e4e4e4;
}
.calendly-widget-link {
  display: block;
  padding: 20px;
  transition: all .3s ease-in-out;
  background-color: #fff;
}
.calendly-widget-toggler__item:first-child .calendly-widget-link {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.calendly-widget-toggler__item:last-child .calendly-widget-link {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.calendly-widget-link {
  color: var(--color-heading);
  font-weight: 500;
  text-decoration: none;
}
.calendly-widget-link:hover {
  color: #fbaf1e;
  text-decoration: none;
}
.calendly-widget-link.active {
  color: #fbaf1e;
  background-color: #fffbf4;
  font-weight: 700;
}
.calendly-widget {
  height: 932px;
}

@media (min-width: 1000px) {
  .calendly-widget {
    height: 795px;
    margin-top: -30px;
  }
}

@media (min-width: 1250px) {
  .calendly-widget {
    margin-top: -70px;
  }
}




/* Float Banner Left */
.float-banner {
  position: fixed;
  z-index: 5;
  bottom: 20px;
  left: -100%;
  background-color: #fff;
  border: 4px solid var(--color--green);
  border-radius: 6px;
  padding: 20px 25px 20px 20px;
  text-align: center;
  transition: all .6s ease-in-out;
}
.float-banner.active {
  left: 20px;
}
.float-banner h4 {
  margin-bottom: 16px;
}
.float-banner__close {
  width: 34px;
  height: 34px;
  position: absolute;
  top: -17px;
  right: -17px;
  border-radius: 50%;
  background-color: #2f2f2f;
  border: 2px solid var(--color--green);
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  padding: 0;
  margin: 0;
  transition: all .2s ease-in-out;
}
.float-banner__close svg {
  fill: #fff;
  width: 22px;
  height: 22px;
  transition: all .2s ease-in-out;
}
.float-banner__close:hover {
  background-color: #181818;
  border: 2px solid var(--color--green);
}
.float-banner__close:hover svg {
  fill: #fff;
}

@media (min-width: 1024px) {
  .float-banner {
    bottom: 40px;
  }
  .float-banner.active {
    left: 40px;
  }
}



.ghl-widget {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}




b,
strong {
  font-weight: 400;
}

h1 b, h1 strong,
h2 b, h2 strong,
h3 b, h3 strong,
h4 b, h4 strong,
h5 b, h5 strong,
h6 b, h6 strong,
.h1 b, .h1 strong,
.h2 b, .h2 strong,
.h3 b, .h3 strong,
.h4 b, .h4 strong,
.h5 b, .h5 strong,
.h6 b, .h6 strong {
  font-weight: 400;
}