.has-fade {
  visibility: hidden;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

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

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

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

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: 0.975rem;
  font-weight: 300;
  color: hsl(249deg, 69%, 32%);
  line-height: 1.3;
  overflow-x: hidden;
}
@media (min-width: 64em) {
  body {
    font-size: 1.125rem;
  }
}
body.noscroll {
  overflow: hidden;
}

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

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

.content-wrap {
  padding: 10px 0 20px;
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5625rem;
}
@media (min-width: 64em) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}

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

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

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

.containerlower {
  max-width: 89.375rem;
  margin: 0 auto;
}
.containerlower--pall {
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
}
@media (min-width: 64em) {
  .containerlower--pall {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.containerlower--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .containerlower--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.containerlower--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.containerlower--pt {
  padding-top: 4.375rem;
}
@media (min-width: 64em) {
  .containerlower--pt {
    padding-top: 6rem;
  }
}
.containerlower--pr {
  padding-right: 1.5rem;
}
.containerlower--pb {
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .containerlower--pb {
    padding-bottom: 6rem;
  }
}
.containerlower--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,
.button {
  position: relative;
  display: inline-block;
  padding: 0.875rem 1.1875rem;
  background-image: linear-gradient(to right, hsl(136deg, 65%, 51%), hsl(192deg, 70%, 51%));
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  color: hsl(0deg, 0%, 100%);
  font-weight: 400;
  font-size: 0.975rem;
  transition: opacity 300ms ease-in-out;
  overflow: hidden;
}
button::before,
.button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.25);
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
button:hover::before,
.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 {
  position: relative;
  z-index: 1;
}
.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 .overlay {
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(hsl(233deg, 26%, 24%), transparent);
}
.header nav {
  position: relative;
  background-color: hsl(0deg, 0%, 100%);
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
.header__logo img {
  width: 12.8125rem;
  height: 3.375rem;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: hsl(233deg, 26%, 24%);
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__menu {
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  background: hsl(0deg, 0%, 100%);
  margin-top: 1.5rem;
  padding: 1.625rem;
  border-radius: 5px;
}
.header__menu a {
  display: block;
  padding: 0.625rem;
  color: hsl(233deg, 26%, 24%);
  text-align: center;
}
.header__links a {
  position: relative;
  font-size: 1rem;
  font-weight: bold;
  color: hsl(249deg, 69%, 32%);
  transition: color 300ms ease-in-out;
}
.header__links a:not(:last-child) {
  margin-right: 32px;
}
.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -30px;
  background: linear-gradient(to right, hsl(136deg, 65%, 51%), hsl(192deg, 70%, 51%));
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.header__links a:hover {
  color: hsl(233deg, 26%, 24%);
  text-decoration: none;
}
.header__links a:hover::before {
  opacity: 1;
}

.hero {
  background-color: hsl(0deg, 0%, 98%);
}
@media (min-width: 64em) {
  .hero .containerhome {
    display: flex;
    align-items: center;
  }
}
.hero__image {
  position: relative;
  background-image: url("../images/bg-intro-mobile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 17.5rem;
}
@media (min-width: 40em) {
  .hero__image {
    min-height: 25rem;
    background-position: center 70%;
  }
}
@media (min-width: 64em) {
  .hero__image {
    flex: 3;
    order: 2;
    height: 41rem;
    background-image: none;
  }
}
@media (min-width: 64em) {
  .hero__image::before {
    content: "";
    position: absolute;
    height: 100%;
    background-image: url("../images/bg-intro-desktop.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 150%;
    background-size: 122%;
    background-position: 0% 83%;
  }
}
.hero__image::after {
  content: "";
  position: absolute;
  justify-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-image: url("../images/uploads/hero_background.png");
  background-size: 53%;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (min-width: 40em) {
  .hero__image::after {
    background-size: 52%;
  }
}
@media (min-width: 64em) {
  .hero__image::after {
    width: 120%;
    height: 122%;
    background-size: 94%;
    background-position: center 150%;
    left: 22%;
  }
}
.hero__text {
  text-align: center;
}
@media (min-width: 64em) {
  .hero__text {
    flex: 2;
    order: 1;
    text-align: left;
  }
}

.feature {
  background-color: hsl(0deg, 0%, 100%);
  text-align: center;
}
@media (min-width: 40em) {
  .feature {
    text-align: left;
  }
}
.feature__intro {
  margin-bottom: 3.75rem;
}
@media (min-width: 64em) {
  .feature__intro {
    width: 100%;
  }
}
@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 50%;
  }
}
@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: hsl(233deg, 26%, 24%);
  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;
}

.articles {
  background-color: hsl(0deg, 0%, 98%);
}

.article__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@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 {
  border-radius: 0.3125rem;
  overflow: hidden;
  background-color: hsl(0deg, 0%, 100%);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  transition: all 150ms ease-in-out;
}
.article__item:hover {
  transform: scale(1.05);
}
.article__image {
  height: 12.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.article__text {
  padding: 1.875rem 1.875rem 2.5rem 1.875rem;
  color: hsl(249deg, 69%, 32%);
}
@media (min-width: 40em) {
  .article__text {
    padding: 1.875rem 1.5625rem;
  }
}
.article__author {
  font-size: 0.625rem;
  margin-bottom: 0.75rem;
}
.article__title {
  font-size: 1.0625rem;
  line-height: 1.2;
  color: hsl(233deg, 26%, 24%);
  margin-bottom: 0.5rem;
}
.article__description {
  font-size: 0.8125rem;
}

.footer {
  background-color: hsl(233deg, 26%, 24%);
  color: hsl(0deg, 0%, 100%);
  padding: 2.5rem;
  text-align: center;
}
@media (min-width: 64em) {
  .footer .containerhome {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 3fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "logo links1 links2 cta" "social links1 links2 copyright";
    gap: 1rem;
    justify-items: start;
  }
}
.footer a {
  color: hsl(0deg, 0%, 100%);
}
.footer__logo {
  display: inline-block;
}
.footer__logo img {
  width: 12.8125rem;
  height: 3.375rem;
}
@media (max-width: 63.9375em) {
  .footer__logo {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
  }
}
@media (max-width: 63.9375em) {
  .footer__social {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__social {
    grid-area: social;
    align-self: end;
  }
}
.footer__social a {
  display: inline-block;
  height: 1.25rem;
}
.footer__social a svg path {
  transition: fill 150ms ease-in-out;
}
.footer__social a:hover svg path {
  fill: hsl(136deg, 65%, 51%);
}
.footer__social a:not(:last-child) {
  margin-right: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9375rem;
}
@media (min-width: 64em) {
  .footer__links {
    justify-content: space-between;
    align-items: start;
  }
}
@media (min-width: 64em) {
  .footer__links.col1 {
    grid-area: links1;
  }
}
@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: hsl(136deg, 65%, 51%);
  text-decoration: none;
}
@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;
  }
}
.footer__copyright {
  font-size: 0.8125rem;
  color: hsl(0deg, 0%, 100%);
}
@media (min-width: 64em) {
  .footer__copyright {
    grid-area: copyright;
    align-self: end;
    justify-self: end;
  }
}
.footer .attribution {
  margin-top: 4rem;
  font-size: 0.875rem;
}

.assets__allpages {
  position: relative;
  background-image: url("../images/bg-intro-mobile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 17.5rem;
}
@media (min-width: 40em) {
  .assets__allpages {
    min-height: 25rem;
    background-position: center 70%;
  }
}
@media (min-width: 64em) {
  .assets__allpages {
    flex: 3;
    order: 2;
    height: 41rem;
    background-image: none;
  }
}
@media (min-width: 64em) {
  .assets__allpages::before {
    content: "";
    position: absolute;
    height: 100%;
    background-image: url("../images/bg-intro-desktop.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 150%;
    background-size: 122%;
    background-position: 0% 83%;
  }
}
.assets__imagesblock {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  position: relative;
}
.assets__tabulargrid {
  /* Change the link color to #111 (black) on hover */
}
.assets__tabulargrid ul {
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  width: 100%;
  display: inline-block;
}
.assets__tabulargrid li {
  float: left;
}
.assets__tabulargrid li a {
  display: block;
  color: hsl(192deg, 70%, 51%);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  width: 250px;
  border-radius: 2px;
  transition: opacity 150ms ease-in-out;
}
.assets__tabulargrid li a:hover {
  background-color: rgb(36, 119, 139);
  color: whitesmoke;
}
.assets__tabulargrid.active {
  background-color: hsl(233deg, 26%, 24%);
  color: whitesmoke;
}
.assets__tabulargrid #rcorners {
  border-radius: 15px;
  background: #73AD21;
  padding: 20px;
  width: 200px;
  height: 150px;
}
@media screen and (max-width: 600px) {
  .assets__tabulargrid ul.topnav li.right,
.assets__tabulargrid ul.topnav li {
    float: none;
  }
}

.gridviewtoggle body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.375em;
}
.gridviewtoggle h1 {
  text-align: center;
  color: Teal;
  padding-top: 2.5%;
  line-height: 1.25em;
}
.gridviewtoggle h3, .gridviewtoggle h4 {
  text-align: center;
  color: black;
  line-height: 1.25em;
}
.gridviewtoggle p {
  text-align: left;
  color: white;
  line-height: 1.25em;
}
.gridviewtoggle div {
  box-sizing: border-box;
  word-wrap: break-word;
}
.gridviewtoggle .content-wrap {
  padding: 10px 0 20px;
}
.gridviewtoggle .grid_items {
  margin: auto auto;
  color: #ffffff;
  background-color: Teal;
  background-position: center;
}
.gridviewtoggle .grid_item {
  position: relative;
}
.gridviewtoggle .grid_item img {
  width: 100%;
}
.gridviewtoggle .grid_item > div {
  padding: 20px 30px;
}
.gridviewtoggle .grid_item > .title {
  position: absolute;
  top: 0;
  padding-top: 52.5%;
  width: 100%;
  font-size: 1.5em;
  font-weight: bold;
}
.gridviewtoggle .grid_item button {
  display: none;
  cursor: pointer;
}
@media only screen and (min-width: 786px) {
  .gridviewtoggle .grid_items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 0;
  }
  .gridviewtoggle .grid_item button {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    margin-top: -6px;
    background-color: #ffffff;
    border: none;
  }
  .gridviewtoggle .grid_item button > span {
    display: none;
  }
  .gridviewtoggle .grid_item button::before {
    content: "+";
    font-size: 2em;
    line-height: 0.625em;
    color: hsl(0deg, 0%, 98%);
  }
  .gridviewtoggle .grid_item.active button::before {
    content: "-";
  }
  .gridviewtoggle .grid_item > .content {
    transform: translatex(-2000px);
    opacity: 0;
    width: 300%;
    transition: transform 0.3s ease-in-out 0s, opacity 0.3s ease-in-out 0.3s;
  }
  .gridviewtoggle .grid_item:nth-child(3n+2) > .content {
    margin-left: -100%;
  }
  .gridviewtoggle .grid_item:nth-child(3n) > .content {
    margin-left: -200%;
  }
  .gridviewtoggle .grid_item.active {
    z-index: 1;
  }
  .gridviewtoggle .grid_item.active > .content {
    transform: translatey(0);
    opacity: 1;
  }
  .gridviewtoggle .grid_item img {
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
  .gridviewtoggle .grid_item.active img {
    opacity: 1;
    transform: translatey(-20%);
  }
  .gridviewtoggle .grid_item.active > .title {
    margin-top: 10%;
  }
  .gridviewtoggle .grid_item > .title {
    font-size: 1.125em;
    transition: margin 0.3s ease-in-out;
  }
}
@media only screen and (min-width: 981px) {
  .gridviewtoggle .grid_item > .title {
    font-size: 1.5em;
  }
}
.gridviewtoggle .containerhome {
  max-width: 69.375rem;
  margin: 0 auto;
}
.gridviewtoggle .containerhome--pall {
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
}
@media (min-width: 64em) {
  .gridviewtoggle .containerhome--pall {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.gridviewtoggle .containerhome--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .gridviewtoggle .containerhome--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.gridviewtoggle .containerhome--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.gridviewtoggle .containerhome--pt {
  padding-top: 4.375rem;
}
@media (min-width: 64em) {
  .gridviewtoggle .containerhome--pt {
    padding-top: 6rem;
  }
}
.gridviewtoggle .containerhome--pr {
  padding-right: 1.5rem;
}
.gridviewtoggle .containerhome--pb {
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .gridviewtoggle .containerhome--pb {
    padding-bottom: 6rem;
  }
}
.gridviewtoggle .containerhome--pl {
  padding-left: 1.5rem;
}/*# sourceMappingURL=style.css.map */