/* Headings & Typography */
/* h1{
  font-size: clamp(48px, 3.75vw, 60px); 
}

h2{
}

h3{
  font-size: clamp(28px, 2.25vw, 36px); 
  font-weight: normal;
}

h4{
  font-family: poppins,sans-serif;
  font-size: clamp(24px, 1.875vw, 30px); 
  font-weight: 100;
}

h5{
  font-size: clamp(18px, 1.5vw, 24px); 
  font-weight: 900;
}

h5{
  font-size: clamp(18px, 1.5vw, 24px); 
  font-weight: 900;
  margin-bottom: 10px;
}

h6{
  font-family: poppins,sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 900;
  text-transform: uppercase;
  color: #009994;
  margin-bottom: 5px;
}

p{
  display: block;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 2;
}

p a{
  text-decoration: underline;  
}

ul{
  list-style: none; /* Remove default bullets */
} */

/* ul li{
  display: block;
  font-size: clamp(14px, 1vw, 16px);
  padding: clamp(20px, 2.5vw, 40px) 10px;
  line-height: 2;
} */

/* ul li::before {
  content: "● ";
  color: #00807B; 
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-weight: bolder;
}

ul.no-dots li::before{
  content: '';
  display: none;
}

ul li:not(:last-child){
  padding-bottom: clamp(20px, 2.5vw, 40px);
  border-bottom: 1px solid #CCCCCC;
} */

blockquote{
  position: relative;
  width: min(550px, 100%);
  margin: auto;
  font-size: 20px;
  font-family: poppins,sans-serif;
  border-left: 0px;
  margin-top: 50px;
}

blockquote:before{
  content: '"';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  font-size: 80px;
  color: #00807B;
  font-weight: 900;
  font-family: ivypresto-display, serif;
}

.teal,
.teal *{
  color: #00807B;
}

.white,
.white *{
  color: #fff;
}

.center,
.center *{
  text-align: center;
}

/* Buttons */
.teal-btn-simple{
  display: inline-block;
  font-family: poppins,sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 900;
  text-transform: uppercase;
  background: #00807B;
  padding: 12px 35px;
  border-radius: 100px;
  box-shadow: 3px 3px 6px #00000029;
  margin: 20px 0px;
  text-decoration: unset; 
}

[class*='teal-underline']{
  display: inline-block;
  font-family: poppins,sans-serif;
  font-size: clamp(13px, 1.125vw, 16px);
  color: #fff;
  border-bottom: 2px solid #00807B;
  width: fit-content;
  margin: 0.7rem 0px 1.4rem 0px;
  border-radius: 0px;
  text-decoration: unset; 
  text-align: left;
}

.teal-underline-dark{
  color: #222222;
}

[class*='teal-underline']:hover{
  text-decoration: unset; 
}



/* Header */
.header__navigation--toggle .menu,
.header__global--buttons .gl-button a{
  font-size: clamp(13px, 1.125vw, 18px);
}

/* Header */
.footer{
  background: #313131;
}

.footer hr{
  width: min(1600px, 95%);
  margin: auto;
  border-bottom: 1px solid #00807B;
  background: #00807B;
}

.footer__container{
  display: flex;
  flex-direction: column;
  width: min(1200px, 100%);
  margin: auto;
  padding: clamp(20px, 2.5vw, 40px);
}

.footer__container .footer__logo{
  margin: 80px auto 40px auto; 
}

.footer__container .footer__links{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.footer__container .footer__links ul{
  display:grid;
  grid-template-columns: auto auto;
  grid-row: auto auto;
  grid-column-gap: 20px;
  list-style-type: none;
}

.footer__container .footer__links ul li{
  border: unset !important;
  padding: 0px;
}

.footer__container .footer__links ul li:after,
.footer__container .footer__links ul li:before{
  content: '';
  display: none;
}

.footer__container .footer__help--links p{
  margin: 0px; 
}

.footer__container .footer__links ul li.hs-menu-depth-1:nth-last-child(n+3):after,
.footer__container .footer__help--links p:after{
  content: '';
  display: block;
  bottom: 0px;
  left: 0px;
  width: 100%;
  border-bottom: 1px solid #F2F2F230;
}

.footer__container .footer__help--links p:last-child:after{
  display: none; 
}

.footer__container .footer__links ul li.hs-menu-depth-1 a{
  display: block;
  font-family: poppins,sans-serif;
  font-size: clamp(13px,1.125vw,16px);
  color: #fff;
  border-bottom: 2px solid #00807b;
  width: fit-content;
  margin: 0.7em 0px 1.4em 0px;
  text-align: left;
}

.footer__container .footer__links ul li.hs-menu-depth-1 a:hover{
  text-decoration: none;
}

.footer__container .footer__links ul li.hs-menu-depth-2,
.footer__container .footer__links ul li.hs-menu-depth-3{
  display: none;
}

@media screen and (max-width: 800px){
  .footer .footer__container *:is(h4, h5, h6){
    text-align: left !important; 
  }
  .footer .footer__container .footer__links ul{
    display: block;
  }
  .footer .footer__container .footer__links,
  .footer .footer__container .footer__help--links{
    margin: 20px 0px; 
  }
}