.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 300ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 300ms ease-in-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
html {
  font-size: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: hsl(233, 8%, 62%);
  line-height: 1.3;
  overflow-x: hidden;
}
@media (max-width: 87.4375em) {
  body {
    font-size: 1.125rem;
  }
}
body.noscroll {
  overflow: hidden;
}
@media (min-width: 40em) {
  body.noscroll {
    overflow: visible;
  }
}

h1, h2, h3 {
  font-weight: 300;
  line-height: 1.15;
  color: hsl(233, 26%, 24%);
  margin-top: 0;
}

h1 {
  font-size: 2.31rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 64em) {
  h1 {
    font-size: 2.875rem;
  }
}

p {
  line-height: 1.5;
  margin-bottom: 2.25rem;
}

a, a:visited, a:hover {
  text-decoration: none;
}

.container {
  max-width: 69.375rem;
  margin: 0 auto;
}
.container--pall {
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
}
@media (min-width: 64em) {
  .container--pall {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375em;
}
@media (min-width: 64em) {
  .container--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.container--pt {
  padding-top: 4.375rem;
}
@media (min-width: 64em) {
  .container--pt {
    padding-top: 6rem;
  }
}
.container--pr {
  padding-right: 1.5rem;
}
.container--pb {
  padding-bottom: 2.25rem;
}
@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 6rem;
  }
}
.container--pl {
  padding-left: 1.5rem;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

.button {
  position: relative;
  display: inline-block;
  color: hsl(220, 16%, 96%);
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(#69C7C0, #11808C);
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 200ms ease-in-out;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(200, 255, 255, 0.2);
  opacity: 0;
  transition: all 200ms ease-in-out;
}
.button:hover::before {
  opacity: 1;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: hsl(0, 0%, 98%);
  z-index: 999;
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header nav {
  position: relative;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  transition: padding 300ms ease;
}
@media (min-width: 40em) {
  .header nav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.header__logo svg {
  margin-top: 4px;
  width: 9.375rem;
  height: 2.5875rem;
  opacity: 1;
  transition: opacity 300ms ease-in;
}
.header__logo svg:hover {
  opacity: 0.75;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: hsl(233, 26%, 24%);
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__links a {
  position: relative;
  font-size: 0.875rem;
  color: hsl(233, 26%, 24%);
  transition: color 200ms ease-in-out;
}
.header__links a:not(:last-child) {
  margin-right: 32px;
}
.header__links a::before {
  content: "";
  position: absolute;
  display: block;
  height: 3px;
  background: linear-gradient(to bottom, #69C7C0, #11808C);
  left: 0;
  right: 0;
  bottom: -10px;
  visibility: hidden;
  transform: scaleX(0);
  transition: 150ms linear;
}
.header__links a:hover, .header__links a.active {
  color: hsl(233, 8%, 62%);
}
.header__links a:hover::before, .header__links a.active::before {
  visibility: visible;
  transform: scaleX(1.1);
}
@media (max-width: 39.9375em) {
  .header__links {
    background-color: #11808C;
    padding: 0 1.625rem;
    margin: 0.75rem 0.75rem;
    border-radius: 5px;
    position: absolute;
    top: 4.95rem;
    width: calc(100% - 4.5rem);
    left: 0;
    z-index: 3;
  }
  .header__links a {
    display: block;
    padding: 0.625rem;
    color: hsl(0, 0%, 100%);
    font-size: 1.125rem;
    text-transform: uppercase;
    text-align: center;
  }
  .header__links a:not(:last-child) {
    margin-right: 0;
  }
  .header__links a::before {
    content: none;
    background-color: none;
    bottom: 0;
    height: 0;
    bottom: 0px;
  }
  .header__links a:hover {
    color: hsl(233, 8%, 62%);
  }
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 3.95rem;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(hsl(233, 26%, 24%), transparent);
}
@media (min-width: 40em) {
  .header .overlay {
    display: none;
  }
}

.hero {
  background: linear-gradient(135deg, #11808C 0%, #69C7C0 100%);
  position: relative;
  min-height: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23a)"/><circle cx="800" cy="200" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 64em) {
  .hero .container {
    display: flex;
    align-items: center;
  }
}
.hero__text {
  position: relative;
  text-align: center;
  color: hsl(0, 0%, 100%);
  font-size: 1.125rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}
@media (min-width: 64em) {
  .hero__text {
    flex: 2;
    order: 1;
  }
}
.hero__text h1 {
  color: hsl(0, 0%, 100%);
  animation: fadeInUp 1s ease-out;
}
.hero__text .button {
  color: hsl(233, 8%, 62%);
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  background: hsl(220, 16%, 96%);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  animation: fadeInUp 1s ease-out 0.4s both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hero__text .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: hsl(0, 0%, 98%);
}
.hero .floating-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.hero .shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.hero .shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}
.hero .shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.feature {
  background-color: hsl(220, 16%, 96%);
  padding-top: 2rem;
  padding-bottom: 1rem;
  text-align: center;
}
@media (min-width: 40em) {
  .feature {
    text-align: left;
  }
}
.feature__intro {
  margin-bottom: 1.75rem;
}
@media (min-width: 64em) {
  .feature__intro {
    width: 60%;
  }
}
@media (min-width: 40em) {
  .feature__grid {
    display: flex;
    flex-wrap: wrap;
  }
}
.feature__item {
  padding: 0.9375rem;
}
@media (min-width: 40em) {
  .feature__item {
    flex: 0 0 45%;
  }
}
@media (min-width: 64em) {
  .feature__item {
    flex: 1;
  }
}
.feature__icon {
  margin-bottom: 1.875rem;
}
@media (min-width: 64em) {
  .feature__icon {
    margin-bottom: 2.75rem;
  }
}
.feature__title {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.15;
  color: #11808C;
  margin-bottom: 1rem;
}
@media (min-width: 64em) {
  .feature__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.feature__description {
  font-size: 0.875rem;
  line-height: 1.5;
}
.feature img {
  float: right;
  width: 250px;
  margin: auto;
}
@media (min-width: 64em) {
  .feature img {
    width: 350px;
    background-color: #fff;
    padding: 4px;
  }
}

.articles {
  background-color: hsl(0, 0%, 98%);
  margin-bottom: 1rem;
}

.article__content {
  padding-bottom: 1rem;
  padding-top: 0;
}
.article__content h2, .article__content h3, .article__content p {
  text-align: center;
}
.article__content p {
  font-size: 0.9375rem;
}
.article__content h2 {
  padding-top: 1rem;
  font-size: 2rem;
  font-weight: 400;
  color: hsl(233, 8%, 62%);
  margin-bottom: 0.5rem;
}
.article__content img {
  width: 300px;
  margin: auto;
  display: block;
  padding-bottom: 1rem;
}
.article__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 40em) {
  .article__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .article__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.article__item {
  display: inline-block;
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.3125rem;
  overflow: hidden;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
  transition: all 200ms ease-in-out;
}
.article__item:hover {
  transform: scale(1.02);
}
.article__image {
  height: 11rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.article__text {
  padding: 1.875rem 1.875rem 1.875rem 1.875rem;
  color: hsl(233, 8%, 62%);
}
@media (min-width: 40em) {
  .article__text {
    padding: 1.5rem 1.5625rem;
  }
}
.article__author {
  font-size: 0.625rem;
  margin-bottom: 0.75rem;
}
.article__title {
  font-size: 1.0625rem;
  line-height: 1.2;
  color: hsl(233, 26%, 24%);
  margin-bottom: 0.5rem;
}
.article__description {
  font-size: 0.8125rem;
}

.footer {
  background-color: hsl(233, 26%, 24%);
  color: hsl(0, 0%, 100%);
  padding: 2.5rem;
  text-align: center;
}
@media (min-width: 64em) {
  .footer .container {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "logo links1 links2 cta" "logo links1 links2 copyright";
    gap: 1rem;
    justify-items: start;
  }
}
.footer a {
  color: hsl(0, 0%, 100%);
}
.footer__logo {
  display: inline-block;
}
@media (max-width: 63.9375em) {
  .footer__logo {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
  }
}
.footer__logo svg path {
  transition: fill 150ms ease-in-out;
}
.footer__logo:hover svg path {
  fill: #69C7C0;
}
.footer__logo:hover svg path:nth-child(n+10) {
  fill: #11808C;
}
.footer__logo a {
  display: inline-block;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
}
@media (min-width: 64em) {
  .footer__links {
    justify-content: space-between;
    align-items: start;
  }
}
@media (min-width: 64em) {
  .footer__links.col1 {
    grid-area: links1;
    text-align: left;
    color: hsl(220, 16%, 96%);
  }
}
@media (max-width: 63.9375em) {
  .footer__links.col2 {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__links.col2 {
    grid-area: links2;
  }
}
.footer__links a {
  line-height: 2.25;
  transition: color 150ms ease-in-out;
}
.footer__links a:hover {
  color: #69C7C0;
}
@media (min-width: 64em) {
  .footer__cta {
    grid-area: cta;
    text-align: right;
    justify-self: end;
  }
}
@media (max-width: 63.9375em) {
  .footer__cta a.button {
    margin-bottom: 1.875rem;
    display: inline-block;
  }
}
.footer__copyright {
  font-size: 0.8125rem;
  color: hsl(233, 8%, 62%);
}
@media (min-width: 64em) {
  .footer__copyright {
    grid-area: copyright;
    align-self: end;
    justify-self: end;
  }
}

.tophero {
  position: relative;
  background: linear-gradient(135deg, #69C7C0 0%, #11808C 100%);
  margin-top: 3rem;
  padding: 0.5rem 1.5rem 0rem 1.5rem;
}
.tophero::before {
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23a)"/><circle cx="800" cy="200" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
  background-size: cover;
  position: absolute;
  background-position: 0% 44%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.2;
}
.tophero__text {
  position: relative;
  text-align: center;
  color: hsl(0, 0%, 100%);
  font-size: 0.875rem;
  padding: 1rem 0 0.5rem 0;
}
@media (min-width: 64em) {
  .tophero__text {
    display: flex;
    text-align: initial;
    align-items: center;
  }
  .tophero__text p {
    flex: 1;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .tophero__text h1 {
    flex: 2;
  }
}
.tophero__text h1 {
  color: hsl(0, 0%, 100%);
  margin-bottom: 0;
}

.services {
  background-color: hsl(220, 16%, 96%);
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 40em) {
  .services {
    text-align: left;
  }
}
@media (min-width: 40em) {
  .services__row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  .services__row__image {
    flex: 2;
  }
}
.services__row li {
  text-decoration: none;
  margin-left: 2rem;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
}
.services__image img {
  width: 300px;
}
.services p {
  color: hsl(233, 8%, 62%);
  font-size: 0.9375rem;
}

.line {
  border-top: 2px solid #69C7C0;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  border-radius: 5px;
}

form {
  width: 80%;
  background: #fff;
  padding: 15px 40px 40px;
  border: 1px solid #ccc;
  margin: 50px auto 0;
  border-radius: 5px;
  left: 0%;
}
@media (min-width: 40em) {
  form {
    width: 600px;
  }
}

label {
  display: block;
  margin-bottom: 5px;
}

label i {
  color: #999;
  font-size: 80%;
}

input, select {
  border: 1px solid #ccc;
  padding: 10px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 2px;
}
input:focus, select:focus {
  outline: none;
}

.row {
  padding-bottom: 10px;
}
.row .button {
  width: 200px;
}

.form-inline {
  border: 1px solid #ccc;
  padding: 8px 10px 4px;
  border-radius: 2px;
}

.form-inline label, .form-inline input {
  display: inline-block;
  width: auto;
  padding-right: 15px;
}

.error {
  color: red;
  font-size: 90%;
}

textarea {
  font-family: "Public Sans", sans-serif;
  font-size: 0.875rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
textarea:focus {
  outline: none;
}

.sidebar {
  background: #fff;
  padding: 15px 40px 40px;
  margin: 50px auto 0;
  color: hsl(233, 26%, 24%);
  font-size: 0.875rem;
}

.map {
  filter: grayscale(0.2);
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid hsl(220, 16%, 96%);
  position: relative;
  padding-bottom: 40%;
  height: 0;
  overflow: hidden;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}