html {
  box-sizing: border-box;
}

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

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 18px;
    line-height: 1.4;
    position: relative;
    min-height: 100%;
    background: #fff;
}

.desc-wrapper {
    -webkit-animation: feature-text-anim .75s ease-in-out;
    animation: feature-text-anim .75s ease-in-out;
    z-index: 100;
    position: relative;
    width: 100%;
    max-width: 956px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 32px;
    text-align: center;
    text-rendering: optimizeLegibility;
}

.page-content {
    max-width: 1020px;
    margin: 0 auto;
    padding: 96px 32px;
}

h1 {
    font-size: 75px;
    line-height: 1.2em;
    text-transform: none;
    letter-spacing: 0em;
    font-weight: 700;
    font-style: normal;
}

a {
  color: #1ECD97;
}

.button {
  outline:none;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  padding: 16px;
  margin: 8px 32px 16px 32px;
  border-radius:40px;
  background: #fff;
  border: 2px solid #1ECD97;
  color: #1ECD97;
  letter-spacing: 1px;
  text-shadow: 0;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.button:hover {
  color: #FFFFFF;
  background: #1ECD97;;
}

/* NAV */

ul {
  padding: 0;
  margin: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
}

.nav__section {
  align-items: center;
  display: flex;
}

.nav__list{
  display: flex;
}

.nav__item {
  list-style: none;
}

.nav__link, .filter li {
  color: inherit;
  text-decoration: none;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
  box-shadow: none !important;
  text-align: center;
}
/* end NAV */

/* ANIMATIONS */

@keyframes floating {
  0% {
    transform: translateY(3px);
}

100% {
    transform: translateY(5px);
}
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fast {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}
/* end ANIMATIONS */

/* CARDS */

.cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  /*margin: 0 4%;*/
}

.cards__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(33% - 16px);
  margin: 10px 0;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: white;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
/* end CARDS */