html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  font-family: 'Rubik', sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  width: 1180px;
  max-width: 90%;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6rem;
}

.flex.half > * {
  width: 100%;
}

.flex.center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex.columns {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}

main, header {
  min-height: 100%;
}

form input, form textarea, form select {
  width: 100%;
  padding: 0.5em 1rem;
  border: 1px solid #01AF62;
  border-radius: 10px;
  background-color: #fff;
  color: #626262;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

form input:focus, form textarea:focus, form select:focus {
  outline: none;
  -webkit-box-shadow: 0px 0px 10px 6px rgba(1, 175, 98, 0.25);
          box-shadow: 0px 0px 10px 6px rgba(1, 175, 98, 0.25);
}

form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder, form select::-webkit-input-placeholder {
  opacity: 0.5;
}

form input:-ms-input-placeholder, form textarea:-ms-input-placeholder, form select:-ms-input-placeholder {
  opacity: 0.5;
}

form input::-ms-input-placeholder, form textarea::-ms-input-placeholder, form select::-ms-input-placeholder {
  opacity: 0.5;
}

form input::placeholder, form textarea::placeholder, form select::placeholder {
  opacity: 0.5;
}

form textarea {
  height: 150px;
  resize: vertical;
}

section {
  padding: 10vh 0;
}

section .title {
  color: #0D293B;
  font-size: 4rem;
  margin-bottom: 3rem;
}

section .description {
  color: #626262;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.mobile {
  display: none;
}

.btn {
  display: inline-block;
  padding: 0.7em 1rem;
  margin: 0.5rem 1rem 0 0;
  border: none;
  border-radius: 30px;
  background-color: #01AF62;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  -webkit-box-shadow: 0px 0px 10px 6px rgba(1, 175, 98, 0.25);
          box-shadow: 0px 0px 10px 6px rgba(1, 175, 98, 0.25);
  cursor: pointer;
}

.btn.icon-arrow {
  padding: 0.7em 4rem 0.5em 1.5rem;
  background-image: url("../img/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: calc( 100% - 20px) center;
}

.btn.icon-phone {
  padding: 0.7em 1.5rem 0.5em 4rem;
  background-image: url("../img/icon-phone.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
}

.btn.sm {
  padding: 0.5em 1rem;
  font-size: 1rem;
}

.btn.disabled {
  pointer-events: none;
}

.btn.orange {
  background-color: #F26C5D;
  -webkit-box-shadow: 0px 0px 10px 6px rgba(242, 108, 93, 0.25);
          box-shadow: 0px 0px 10px 6px rgba(242, 108, 93, 0.25);
}

.btn.black {
  background-color: #0D293B;
  -webkit-box-shadow: 0px 0px 10px 6px rgba(13, 41, 59, 0.25);
          box-shadow: 0px 0px 10px 6px rgba(13, 41, 59, 0.25);
}

.btn:hover {
  background-color: #0D293B;
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.block {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 40px;
  position: relative;
}

.noise {
  position: absolute;
  background-repeat: no-repeat;
  z-index: 0;
}

.intro {
  font-weight: bold;
  color: #F26C5D;
  margin-bottom: 1rem;
}

.intro::before {
  content: ' ';
  display: inline-block;
  width: 60px;
  height: 3px;
  background-color: #F26C5D;
  margin-bottom: 0.3rem;
  margin-right: 1rem;
}

.intro.green {
  color: #01AF62;
}

.intro.green::before {
  background-color: #01AF62;
}

.intro.white {
  color: #fff;
}

.intro.white::before {
  background-color: #fff;
}

.nav {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1;
}

.nav.scrolling {
  background-color: #fff;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  display: inline-block;
  padding: 0.7em 1em;
  text-decoration: none;
  color: #0D293B;
  font-size: 1.2rem;
  margin-left: 0.8em;
  border-radius: 5px;
}

.nav ul li a:hover {
  background: #0D293B;
  color: #fff;
}

.menu-btn {
  background-color: #01AF62;
  position: relative;
  height: 50px;
  width: 50px;
  border-radius: 18px 18px 0px 18px;
  cursor: pointer;
}

.menu-btn div {
  position: absolute;
  background-color: #fff;
  height: 6px;
  width: 6px;
  top: 10px;
  left: 10px;
}

.menu-btn div:nth-of-type(2) {
  left: 22px;
}

.menu-btn div:nth-of-type(3) {
  left: 34px;
}

.menu-btn div:nth-of-type(4) {
  top: 22px;
}

.menu-btn div:nth-of-type(5) {
  top: 22px;
  left: 22px;
}

.menu-btn div:nth-of-type(6) {
  top: 22px;
  left: 34px;
}

.menu-btn div:nth-of-type(7) {
  top: 34px;
}

.menu-btn div:nth-of-type(8) {
  top: 34px;
  left: 22px;
}

.menu-btn div:nth-of-type(9) {
  top: 34px;
  left: 34px;
}

.menu-btn:hover div:nth-of-type(1), .menu-btn:hover div:nth-of-type(4), .menu-btn:hover div:nth-of-type(7) {
  width: 12px;
}

.menu-btn:hover div:nth-of-type(3), .menu-btn:hover div:nth-of-type(6), .menu-btn:hover div:nth-of-type(9) {
  left: 28px;
  width: 12px;
}

.menu-btn.close {
  background-color: #F26C5D;
}

.menu-btn.close div {
  width: 6px !important;
}

.menu-btn.close div:nth-of-type(1) {
  left: 10px;
}

.menu-btn.close div:nth-of-type(2) {
  top: 16px;
  left: 16px;
}

.menu-btn.close div:nth-of-type(3) {
  left: 34px;
}

.menu-btn.close div:nth-of-type(4) {
  left: 16px;
  top: 28px;
}

.menu-btn.close div:nth-of-type(6) {
  left: 28px;
  top: 16px;
}

.menu-btn.close div:nth-of-type(7) {
  left: 10px;
}

.menu-btn.close div:nth-of-type(8) {
  left: 28px;
  top: 28px;
}

.menu-btn.close div:nth-of-type(9) {
  left: 34px;
}

.banner {
  padding: 20vh 0;
  background-color: #fff;
  overflow: hidden;
}

.banner .container .img {
  position: absolute;
  width: 50%;
  left: 50%;
}

.banner .container .img .banner-img {
  width: 100%;
  height: auto;
  -webkit-animation: slide-in-right 0.75s ease-in-out forwards 1s;
          animation: slide-in-right 0.75s ease-in-out forwards 1s;
  opacity: 0;
}

.banner .container .img .arrow-img {
  opacity: 0;
  -webkit-animation: fade-in 0.75s ease-in-out forwards 1.5s;
          animation: fade-in 0.75s ease-in-out forwards 1.5s;
}

.banner .container .content {
  position: relative;
}

.banner .container .content h1 {
  width: 50%;
  font-size: 4rem;
  color: #0D293B;
}

.banner .container .content p {
  width: 50%;
  font-size: 1.5rem;
  color: #626262;
  margin-top: 2rem;
}

.banner .container .content a {
  margin-top: 2rem;
}

.banner .container .content:after {
  background-color: #0D293B;
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-animation: shrink-out-left 1s ease-in-out forwards 0.5s;
          animation: shrink-out-left 1s ease-in-out forwards 0.5s;
}

@-webkit-keyframes slide-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slide-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes shrink-out-left {
  0% {
    width: 50%;
  }
  100% {
    width: 0;
  }
}

@keyframes shrink-out-left {
  0% {
    width: 50%;
  }
  100% {
    width: 0;
  }
}

.find {
  background-color: #77C898;
  height: 450px;
  margin-bottom: 350px;
  background-image: url("../img/find-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.find p {
  font-size: 2rem;
  color: #fff;
}

.resources {
  position: relative;
  overflow: hidden;
}

.resources .circle {
  left: 75vw;
  top: 50px;
}

.resources .dot-img {
  left: 65vw;
  top: 0;
}

.resources .element {
  left: 35vw;
  bottom: 0;
}

.resources .line-shape-2 {
  left: 60vw;
  bottom: 0;
}

.resources .line-shape {
  left: 25vw;
  top: 0;
}

.resources .container {
  max-width: 90%;
  width: 750px;
}

.resources .container .block {
  text-align: center;
}

.resources .container .block h2 {
  font-size: 3rem;
  line-height: 4rem;
  color: #0D293B;
  margin-bottom: 1rem;
}

.resources .container .block h2 span {
  color: #F26C5D;
  text-decoration: underline;
}

.resources .container .block h2 span::before {
  content: "Clients";
  -webkit-animation: animate infinite 20s;
          animation: animate infinite 20s;
  padding-left: 0;
  overflow: hidden;
}

.resources .container .block h2 span::after {
  content: "|";
  -webkit-animation: blink infinite 1s;
          animation: blink infinite 1s;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes animate {
  0% {
    content: "C";
  }
  0.5% {
    content: "Cl";
  }
  1% {
    content: "Cli";
  }
  1.5% {
    content: "Clie";
  }
  2% {
    content: "Clien";
  }
  2.5% {
    content: "Client";
  }
  3% {
    content: "Clients";
  }
  20.5% {
    content: "Clients";
  }
  21% {
    content: "Client";
  }
  21.5% {
    content: "Clien";
  }
  22% {
    content: "Clie";
  }
  22.5% {
    content: "Cli";
  }
  23% {
    content: "Cl";
  }
  23.5% {
    content: "C";
  }
  24% {
    content: "";
  }
  25% {
    content: "";
  }
  25.5% {
    content: "T";
  }
  26% {
    content: "Ta";
  }
  26.5% {
    content: "Tal";
  }
  27% {
    content: "Tale";
  }
  27.8% {
    content: "Talen";
  }
  28% {
    content: "Talent";
  }
  46.5% {
    content: "Talent";
  }
  47% {
    content: "Talen";
  }
  47.5% {
    content: "Tale";
  }
  48% {
    content: "Tal";
  }
  48.5% {
    content: "Ta";
  }
  49% {
    content: "T";
  }
  49.5% {
    content: "";
  }
  51% {
    content: "";
  }
  51.5% {
    content: "F";
  }
  52% {
    content: "Fu";
  }
  52.5% {
    content: "Fun";
  }
  53% {
    content: "Fund";
  }
  53.5% {
    content: "Fundi";
  }
  54% {
    content: "Fundin";
  }
  54.5% {
    content: "Funding";
  }
  72% {
    content: "Funding";
  }
  72.5% {
    content: "Fundin";
  }
  73% {
    content: "Fundi";
  }
  73.5% {
    content: "Fund";
  }
  74% {
    content: "Fu";
  }
  74.5% {
    content: "F";
  }
  75% {
    content: "";
  }
  75.5% {
    content: "";
  }
  76% {
    content: "";
  }
  76.5% {
    content: "R";
  }
  77% {
    content: "Re";
  }
  77.5% {
    content: "Res";
  }
  78% {
    content: "Reso";
  }
  78.5% {
    content: "Resou";
  }
  79% {
    content: "Resour";
  }
  79.5% {
    content: "Resourc";
  }
  80% {
    content: "Resource";
  }
  80.5% {
    content: "Resources";
  }
  94.5% {
    content: "Resources";
  }
  95% {
    content: "Resourc";
  }
  95.5% {
    content: "Resour";
  }
  96% {
    content: "Resou";
  }
  96.5% {
    content: "Reso";
  }
  97% {
    content: "Res";
  }
  97.5% {
    content: "Re";
  }
  98% {
    content: "R";
  }
  98.5% {
    content: "";
  }
  100% {
    content: "";
  }
}

@keyframes animate {
  0% {
    content: "C";
  }
  0.5% {
    content: "Cl";
  }
  1% {
    content: "Cli";
  }
  1.5% {
    content: "Clie";
  }
  2% {
    content: "Clien";
  }
  2.5% {
    content: "Client";
  }
  3% {
    content: "Clients";
  }
  20.5% {
    content: "Clients";
  }
  21% {
    content: "Client";
  }
  21.5% {
    content: "Clien";
  }
  22% {
    content: "Clie";
  }
  22.5% {
    content: "Cli";
  }
  23% {
    content: "Cl";
  }
  23.5% {
    content: "C";
  }
  24% {
    content: "";
  }
  25% {
    content: "";
  }
  25.5% {
    content: "T";
  }
  26% {
    content: "Ta";
  }
  26.5% {
    content: "Tal";
  }
  27% {
    content: "Tale";
  }
  27.8% {
    content: "Talen";
  }
  28% {
    content: "Talent";
  }
  46.5% {
    content: "Talent";
  }
  47% {
    content: "Talen";
  }
  47.5% {
    content: "Tale";
  }
  48% {
    content: "Tal";
  }
  48.5% {
    content: "Ta";
  }
  49% {
    content: "T";
  }
  49.5% {
    content: "";
  }
  51% {
    content: "";
  }
  51.5% {
    content: "F";
  }
  52% {
    content: "Fu";
  }
  52.5% {
    content: "Fun";
  }
  53% {
    content: "Fund";
  }
  53.5% {
    content: "Fundi";
  }
  54% {
    content: "Fundin";
  }
  54.5% {
    content: "Funding";
  }
  72% {
    content: "Funding";
  }
  72.5% {
    content: "Fundin";
  }
  73% {
    content: "Fundi";
  }
  73.5% {
    content: "Fund";
  }
  74% {
    content: "Fu";
  }
  74.5% {
    content: "F";
  }
  75% {
    content: "";
  }
  75.5% {
    content: "";
  }
  76% {
    content: "";
  }
  76.5% {
    content: "R";
  }
  77% {
    content: "Re";
  }
  77.5% {
    content: "Res";
  }
  78% {
    content: "Reso";
  }
  78.5% {
    content: "Resou";
  }
  79% {
    content: "Resour";
  }
  79.5% {
    content: "Resourc";
  }
  80% {
    content: "Resource";
  }
  80.5% {
    content: "Resources";
  }
  94.5% {
    content: "Resources";
  }
  95% {
    content: "Resourc";
  }
  95.5% {
    content: "Resour";
  }
  96% {
    content: "Resou";
  }
  96.5% {
    content: "Reso";
  }
  97% {
    content: "Res";
  }
  97.5% {
    content: "Re";
  }
  98% {
    content: "R";
  }
  98.5% {
    content: "";
  }
  100% {
    content: "";
  }
}

.how {
  background: -webkit-gradient(linear, left top, left bottom, from(#F7F9FB), to(#FFFFFF));
  background: linear-gradient(180deg, #F7F9FB 0%, #FFFFFF 100%);
}

.how .step {
  position: relative;
}

.how .step .number {
  font-size: 5rem;
  font-weight: 700;
  background: -webkit-linear-gradient(#FF568E 1.92%, rgba(255, 86, 142, 0) 78.17%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how .step .icon {
  background-color: #FF568E;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  position: relative;
}

.how .step a {
  text-decoration: none;
}

.how .step a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.how .step h3 {
  font-weight: 300;
  color: #FF568E;
}

.how .step::before {
  content: ' ';
  display: block;
  border-top: 2px dashed #626262;
  height: 2px;
  width: 25vw;
  position: absolute;
  top: 65%;
  left: 65%;
  z-index: 0;
  opacity: 0.25;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.how .step:nth-of-type(2) {
  margin-top: 100px;
}

.how .step:nth-of-type(2) .number {
  background: linear-gradient(177.95deg, #3BBEFF 1.92%, rgba(59, 190, 255, 0) 78.17%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how .step:nth-of-type(2) .icon {
  background-color: #3BBEFF;
}

.how .step:nth-of-type(2)::before {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.how .step:nth-of-type(2) h3 {
  color: #3BBEFF;
}

.how .step:nth-of-type(3) .number {
  background: linear-gradient(177.95deg, #C656FF 1.92%, rgba(198, 86, 255, 0) 78.17%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how .step:nth-of-type(3) .icon {
  background-color: #C656FF;
}

.how .step:nth-of-type(3) h3 {
  color: #C656FF;
}

.how .step:nth-of-type(4) {
  margin-top: 100px;
}

.how .step:nth-of-type(4) .number {
  background: linear-gradient(177.95deg, #FFA03A 1.92%, rgba(255, 160, 58, 0) 78.17%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how .step:nth-of-type(4) .icon {
  background-color: #FFA03A;
}

.how .step:nth-of-type(4)::before {
  display: none;
}

.how .step:nth-of-type(4) h3 {
  color: #FFA03A;
}

section.blog {
  background-color: #01AF62;
}

section.blog .container {
  width: 90%;
  max-width: 600px;
}

section.blog .title {
  color: #fff;
  font-size: 3rem;
  text-align: center;
}

section.blog ul.posts {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

section.blog ul.posts li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

section.blog ul.posts li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
  background-image: url("../img/icon-arrow.svg");
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
}

section.blog ul.posts li a span.date {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
}

section.blog ul.posts li a:hover {
  color: #fff;
  opacity: 0.8;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  background-color: #01AF62;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
}

section.blog .pagination {
  margin-top: 2rem;
}

section.blog .pagination ul li {
  display: inline-block;
  margin-right: 1rem;
}

section.blog .pagination ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

section.blog .pagination ul li a:hover, section.blog .pagination ul li a.active {
  color: #01AF62;
  background-color: #fff;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  font-weight: 700;
}

section.blog .pagination ul li a:hover {
  opacity: 0.5;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
}

.newsletter .title {
  font-size: 3rem;
}

.newsletter .container {
  width: 90%;
  max-width: 700px;
}

.newsletter form {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  padding: 0;
  position: relative;
  border-radius: 30px;
}

.newsletter form input {
  margin: 0;
  height: 60px;
  border: 0;
  border-radius: 30px;
  -webkit-box-shadow: 0;
          box-shadow: 0;
}

.newsletter form input[type=submit] {
  position: absolute;
  width: 30%;
  right: 0;
  top: 0;
}

footer {
  padding: 2rem 0;
}

footer .social li {
  display: inline-block;
}

footer p {
  color: #626262;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 2rem;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #626262;
  display: inline-block;
}

footer a:hover {
  opacity: 0.75;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.pop-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

.pop-up .container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 5rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5rem rgba(0, 0, 0, 0.25);
  max-width: 600px;
  width: 90%;
}

.pop-up .container .close {
  float: right;
  margin: -50px;
  height: 50px;
  width: 50px;
  text-align: center;
}

.pop-up .container h2 {
  color: #01AF62;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pop-up .container p {
  font-size: 1.5rem;
  color: #626262;
}

.pop-up.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pop-up.error .container h2 {
  color: #F26C5D;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-transform-origin: 40px 40px;
          transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
          animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
          animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
          animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
          animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
          animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
          animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
          animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
          animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

.blog-page .nav {
  background-color: #fff;
}

.blog-page .find {
  margin-bottom: 0;
  padding: 180px 0 20px 0;
  height: auto;
}

.blog-page .find .title {
  margin: 2rem 0;
}

.blog-page .content p, .blog-page .content ul {
  font-size: 1.2rem;
  color: #626262;
  margin-bottom: 2rem;
}

.blog-page .content blockquote {
  border-left: 5px solid #01AF62;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  color: #626262;
  margin-bottom: 2rem;
}

.blog-page .content a {
  color: #01AF62;
  text-decoration: none;
}

.blog-page .content a:hover {
  color: #fff;
  opacity: 0.8;
  background-color: #01AF62;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
  padding: 0 0.5rem;
}

@-webkit-keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media screen and (max-width: 1280px) {
  section .title {
    font-size: 3rem;
  }
  .banner .container .content h1 {
    width: 100%;
    font-size: 2.5rem;
  }
  .banner .container .content p {
    font-size: 1.5rem;
    width: 100%;
  }
  .banner .container .content .img {
    width: 100%;
  }
  .banner .container .content::after {
    width: 100%;
  }
  @-webkit-keyframes shrink-out-left {
    0% {
      width: 100%;
    }
    100% {
      width: 0;
    }
  }
  @keyframes shrink-out-left {
    0% {
      width: 100%;
    }
    100% {
      width: 0;
    }
  }
}

@media screen and (max-width: 900px) {
  .mobile {
    display: block;
  }
  .nav .logo img {
    height: 50px;
  }
  .nav .menu {
    position: absolute;
    width: 100%;
    -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
            box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.25);
    left: 0;
    top: 90px;
    background-color: #fff;
    height: 0;
    overflow: hidden;
  }
  .nav .menu.open {
    height: auto;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
  }
  .nav .menu li {
    display: block;
  }
  .nav .menu li a {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .flex {
    display: block;
  }
  .flex-sm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .desktop {
    display: none;
  }
  img {
    max-width: 100%;
  }
  .banner {
    position: relative;
    overflow: hidden;
  }
  .banner .img {
    top: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    left: 0;
  }
  .banner .img .banner-img {
    display: none;
  }
  .banner .img .flex {
    height: 100%;
  }
  .banner .img .flex .arrow-img {
    position: absolute;
  }
  .banner .img .flex .arrow-img.arrow-1 {
    top: 35%;
    left: 70%;
  }
  .banner .img .flex .arrow-img.arrow-2 {
    bottom: 50px;
    left: 20px;
  }
  .banner .img .flex .arrow-img.arrow-3 {
    bottom: 50px;
    right: 20px;
  }
  .find {
    height: auto;
    margin-bottom: 0rem;
  }
  .how .step {
    margin-top: 100px;
  }
  .how .step:nth-of-type(1) {
    margin-top: 0;
  }
  .how .step::before {
    height: 400px;
    width: 2px;
    border-left: 2px dashed #626262;
    top: 50%;
    left: 50%;
    -webkit-transform: none;
            transform: none;
  }
  .how .step:nth-of-type(2)::before {
    -webkit-transform: none;
            transform: none;
  }
  .how .step h3 {
    background-color: #fff;
    padding: 10px;
  }
  .resources .container .block h2 {
    font-size: 2.5rem;
  }
  .newsletter .title {
    font-size: 2.5rem;
  }
  .newsletter form input[type=submit] {
    position: absolute;
    font-size: 0;
    padding: 0px;
    height: 60px;
    width: 60px;
  }
  footer {
    padding: 0;
    overflow: hidden;
  }
  footer .copyright {
    text-align: center;
    margin: 30px -6% 0 -6%;
    background-color: #0D293B;
    padding: 1rem;
    color: #fff;
  }
}
/*# sourceMappingURL=style.css.map */