@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&display=swap");
* {
  font-family: 'Nunito', sans-serif !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
}

.cta {
  padding: 8px 28px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 99px;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.cta-primary {
  color: #FFF;
  background-color: #000;
  border: 1px solid #000;
}

.cta-primary:hover {
  background-color: #4D4D4D;
  border: 1px solid #4D4D4D;
}

.cta-secondary {
  color: #000;
  background-color: transparent;
  border: 1px solid #000;
}

.cta-secondary:hover {
  background-color: #DDDDDD;
  border: 1px solid #707070;
}

.container {
  max-width: 1590px;
  margin: auto;
}

.img-fluid {
  max-width: 100%;
}

.logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.logo-wrapper a img, .logo-wrapper img {
  margin: 1rem;
}

@media only screen and (max-width: 600px) {
  .logo-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.top {
  background: url("../img/top_bg.svg") right no-repeat;
  background-position-x: 105%;
  background-size: 50%;
}

.top .container .top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1rem 2rem;
}

.top .container .top-wrapper .top-copy h2 {
  font-size: 32px;
  font-weight: 300;
}

.top .container .top-wrapper .top-copy h1 {
  font-size: 36px;
  font-weight: 300;
}

.top .container .top-wrapper .top-copy h1 b {
  font-weight: 600;
}

@media screen and (max-width: 1300px) {
  .top {
    background: none;
  }
  .top .container .top-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .top .container .top-wrapper .top-copy {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 800px) {
  .top .container .top-wrapper .top-copy h2 {
    font-size: 24px;
    font-weight: 300;
  }
  .top .container .top-wrapper .top-copy h1 {
    font-size: 28px;
    font-weight: 300;
  }
  .top .container .top-wrapper .top-copy h1 b {
    font-weight: 600;
  }
}

.steps {
  max-width: 1384px;
  border-radius: 20px;
  background-color: #FFF;
  -webkit-box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: auto;
  padding: 30px;
}

.steps a {
  color: #0082FA;
}

.steps h2 {
  font-weight: 300;
  font-size: 32px;
}

.steps h2 b {
  font-weight: 600;
}

@media screen and (max-width: 800px) {
  .steps h2 {
    font-size: 24px;
    font-weight: 300;
  }
}

.steps .steps-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.steps .steps-wrapper .step {
  max-width: 400px;
  margin: 1rem .5rem;
}

.steps .steps-wrapper .step h4 {
  font-size: 21px;
  margin: 0;
  padding: 1rem 0 .5rem;
}

.steps .steps-wrapper .step p {
  margin: 0;
}

.bottom {
  background: url("../img/bg-bottom.svg") left no-repeat;
  background-size: contain;
  margin-top: 4rem;
}

.bottom .container .bottom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.bottom .container .bottom-wrapper .bottom-text h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 2rem;
}

@media screen and (max-width: 1300px) {
  .bottom {
    background: none;
  }
  .bottom .container .bottom-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .bottom .container .bottom-wrapper .bottom-text {
    margin-bottom: 2rem;
    text-align: center;
  }
  .bottom .container .bottom-wrapper .bottom-text img {
    padding: 0 2rem;
  }
  .bottom .container .bottom-wrapper .bottom-img {
    padding: 2rem;
  }
}

@media screen and (max-width: 800px) {
  .bottom .container .bottom-wrapper .bottom-text {
    padding: 0 1rem;
  }
  .bottom .container .bottom-wrapper .bottom-text h2 {
    font-size: 28px;
  }
}

footer {
  max-width: 1320px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

footer p {
  font-size: 14px;
  font-weight: 300;
}

@media screen and (max-width: 400px) {
  footer p {
    font-size: 12px;
  }
}
