body, html {
  margin: 0px;
  padding: 0px;
  background-color: #fdf9f3;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Roboto",sans-serif;
  color: #033355;
}

.container {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

a.regular-btn {
  padding: 10px 30px;
  border-style: solid;
  border-width: 1px;
  border-color: #ff5d5e;
  border-radius: 8px;
  background-color: transparent;
  -webkit-transition: color 300ms ease, border-color 300ms ease;
  transition: color 300ms ease, border-color 300ms ease;
  color: #ff5e5e;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}
a.regular-btn:hover {
  border-color: #001524;
  color: #001524;
}

header {
  border-bottom: 1px solid #ff7d00;
}
header .outer__header {
  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;
  min-height: 105px;
}
header .outer__header .header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .outer__header .header__buttons > a {
  margin-right: 10px;
}
header .outer__header .header__buttons > a:last-child {
  margin-right: 0px;
}
header .outer__header .header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
header .outer__header .header__logo > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: .4s ease all;
  transition: .4s ease all;
}
header .outer__header .header__logo > a:hover {
  opacity: .7;
}
header .outer__header .header__logo > a > img {
  max-width: 150px;
}

h1 {
  color: #001524;
  font-size: 80px;
  line-height: 88px;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 30px;
}

.big-btn.dark {
  min-width: 220px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 8px;
  background-color: #001524;
  -webkit-box-shadow: -4px -4px 9px -4px rgba(255, 94, 94, 0.8), 4px 4px 9px -4px rgba(0, 21, 36, 0.8);
          box-shadow: -4px -4px 9px -4px rgba(255, 94, 94, 0.8), 4px 4px 9px -4px rgba(0, 21, 36, 0.8);
  -webkit-transition: box-shadow 500ms ease;
  -webkit-transition: -webkit-box-shadow 500ms ease;
  transition: -webkit-box-shadow 500ms ease;
  transition: box-shadow 500ms ease;
  transition: box-shadow 500ms ease, -webkit-box-shadow 500ms ease;
  text-decoration: none;
  color: #fff;
  font-size: 25px;
  line-height: 33px;
  font-weight: 500;
  text-align: center;
}
.big-btn.dark.white {
  background-color: #fff;
  color: #ff7d00;
}
.big-btn.dark:hover {
  -webkit-box-shadow: -11px -11px 20px -9px rgba(255, 125, 0, 0.8), 11px 11px 20px -9px rgba(0, 21, 36, 0.8);
          box-shadow: -11px -11px 20px -9px rgba(255, 125, 0, 0.8), 11px 11px 20px -9px rgba(0, 21, 36, 0.8);
}

.big-btn.light {
  overflow: visible;
  min-width: 220px;
  padding: 20px 25px;
  border-radius: 8px;
  background-color: #ff5e5e;
  -webkit-box-shadow: -4px -4px 9px -4px rgba(255, 94, 94, 0.8), 4px 4px 9px -4px rgba(0, 21, 36, 0.8);
          box-shadow: -4px -4px 9px -4px rgba(255, 94, 94, 0.8), 4px 4px 9px -4px rgba(0, 21, 36, 0.8);
  -webkit-transition: box-shadow 500ms ease;
  -webkit-transition: -webkit-box-shadow 500ms ease;
  transition: -webkit-box-shadow 500ms ease;
  transition: box-shadow 500ms ease;
  transition: box-shadow 500ms ease, -webkit-box-shadow 500ms ease;
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  line-height: 33px;
  font-weight: 500;
  text-align: center;
}
.big-btn.light:hover {
  -webkit-box-shadow: -11px -11px 20px -9px rgba(255, 125, 0, 0.8), 11px 11px 20px -9px rgba(0, 21, 36, 0.8);
          box-shadow: -11px -11px 20px -9px rgba(255, 125, 0, 0.8), 11px 11px 20px -9px rgba(0, 21, 36, 0.8);
}

.hero__section {
  padding-top: 120px;
}
.hero__section .hero__desc {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 70px;
}
.hero__section .hero__desc .hero__buttons {
  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;
  margin-top: 40px;
}
.hero__section .hero__desc .hero__buttons > a {
  margin-right: 20px;
}
.hero__section .hero__desc .hero__buttons > a:last-child {
  margin-right: 0px;
}
.hero__section .hero__desc > p {
  margin: 0px;
  font-size: 25px;
  line-height: 33px;
  font-weight: 300;
}
.hero__section .hero__desc > h1 {
  margin-top: 0px;
  margin-bottom: 30px;
}
.hero__section .hero__video {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.hero__section .hero__video .video__box {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.hero__section .hero__video .video__box > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.small__desc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #001524;
}
.small__desc p {
  text-align: center;
  margin: 0px;
  font-size: 15px;
  margin-bottom: 40px;
  color: #fff;
  line-height: 23px;
  font-weight: 400;
  letter-spacing: 2px;
}

h2 {
  margin-top: 0px;
  margin-bottom: 30px;
  color: #001524;
  font-size: 56px;
  line-height: 64px;
  font-weight: 400;
}

.features__wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}
.features__wrapper .outer__features .elem__feature {
  margin-bottom: 140px;
}
.features__wrapper .outer__features .elem__feature .feature__quote {
  padding: 60px 60px 40px;
  border: 1px solid #d9dbdb;
  border-radius: 10px;
  background-color: #fff;
}
.features__wrapper .outer__features .elem__feature .feature__quote .quote__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.features__wrapper .outer__features .elem__feature .feature__quote .quote__author .quote__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.features__wrapper .outer__features .elem__feature .feature__quote .quote__author .quote__desc > p {
  margin: 0px;
  font-weight: 500;
  font-size: 30px;
  line-height: 38px;
}
.features__wrapper .outer__features .elem__feature .feature__quote .quote__author .quote__desc > span {
  font-size: 25px;
  line-height: 33px;
  font-weight: 300;
}
.features__wrapper .outer__features .elem__feature .feature__quote .quote__author .quote__desc > .spacer {
  width: 2px;
  height: 30px;
  margin-right: 20px;
  margin-left: 20px;
  background-color: #033355;
}
.features__wrapper .outer__features .elem__feature .feature__quote .quote__author > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 20px;
}
.features__wrapper .outer__features .elem__feature .feature__quote .quote__author > span > img {
  min-width: 99px;
  max-width: 99px;
  border-radius: 250px;
}
.features__wrapper .outer__features .elem__feature .feature__quote .quote__text {
  margin-bottom: 20px;
  padding-right: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9dbdb;
}
.features__wrapper .outer__features .elem__feature .feature__quote .quote__text > p {
  margin: 0px;
  font-size: 30px;
  line-height: 38px;
  font-weight: 300;
}
.features__wrapper .outer__features .elem__feature .feature__quote .quote__text > p span {
  background-color: #ffecd1;
  font-weight: 500;
}
.features__wrapper .outer__features .elem__feature .feature__desc {
  margin-bottom: 100px;
  max-width: 505px;
}
.features__wrapper .outer__features .elem__feature .feature__desc .button__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.features__wrapper .outer__features .elem__feature .feature__desc .button__wrapper > a {
  margin-right: 20px;
}
.features__wrapper .outer__features .elem__feature .feature__desc .button__wrapper > a:last-child {
  margin-right: 0px;
}
.features__wrapper .outer__features .elem__feature .feature__desc ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
  margin-top: 10px;
}
.features__wrapper .outer__features .elem__feature .feature__desc ul > li {
  font-size: 20px;
  line-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 300;
  margin-bottom: 10px;
}
.features__wrapper .outer__features .elem__feature .feature__desc ul > li:last-child {
  margin-bottom: 0px;
}
.features__wrapper .outer__features .elem__feature .feature__desc ul > li span {
  position: relative;
  top: 7px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 20px;
}
.features__wrapper .outer__features .elem__feature .feature__desc ul > li span img {
  min-width: 16px;
}
.features__wrapper .outer__features .elem__feature .feature__desc > p {
  margin: 0px;
  margin-top: 0px;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}
.features__wrapper .outer__features .elem__feature .feature__desc > p:last-child {
  margin-bottom: 0px;
}
.features__wrapper .outer__features .elem__feature .feature__desc > span {
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
  color: #ff5e5e;
  font-size: 15px;
  line-height: 23px;
  font-weight: 700;
}
.features__wrapper .outer__features .elem__feature .feature__desc.left__side {
  margin-right: auto;
  margin-left: 0px;
  text-align: left;
}
.features__wrapper .outer__features .elem__feature .feature__desc.right__side {
  margin-left: auto;
  margin-right: 0px;
}
.features__wrapper .outer__features .elem__feature:last-child {
  margin-bottom: 0px;
}

.desc__wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #001524;
}
.desc__wrapper .outer__desc .desc__text {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.desc__wrapper .outer__desc .desc__text > span {
  text-align: center;
  display: block;
  color: #ff5e5e;
  font-size: 15px;
  line-height: 23px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.desc__wrapper .outer__desc .desc__text > h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #fff;
}
.desc__wrapper .outer__desc .desc__text > p {
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 10px;
}
.desc__wrapper .outer__desc .desc__text .button__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;
  margin-top: 30px;
}
.desc__wrapper .outer__desc .desc__text .button__wrapper > a {
  margin-right: 20px;
}
.desc__wrapper .outer__desc .desc__text .button__wrapper > a:last-child {
  margin-right: 0px;
}
.desc__wrapper .outer__desc .desc__grid {
  display: -ms-grid;
  display: grid;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.desc__wrapper .outer__desc .desc__grid > .elem__desc {
  padding: 50px;
  border-radius: 10px;
  background-color: #fff;
}
.desc__wrapper .outer__desc .desc__grid > .elem__desc > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 20px;
}
.desc__wrapper .outer__desc .desc__grid > .elem__desc > h6 {
  margin: 0px;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 10px;
}
.desc__wrapper .outer__desc .desc__grid > .elem__desc > p {
  margin: 0px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
.desc__wrapper .outer__desc .desc__text {
  text-align: center;
}
.desc__wrapper .outer__desc .desc__text .button__wrapper {
  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;
}

.text__wrapper {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.text__wrapper .outer__text {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.text__wrapper .outer__text > p {
  margin: 0px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
}

footer {
  background-color: #001524;
}
footer .outer__footer {
  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;
}
footer .outer__footer .footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
footer .outer__footer .footer__right ul {
  padding: 0px;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
footer .outer__footer .footer__right ul > li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 10px;
}
footer .outer__footer .footer__right ul > li > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 250px;
  min-width: 36px;
  max-width: 36px;
  min-height: 36px;
  max-height: 36px;
  border-radius: 250px;
  background-color: #033355;
  -webkit-transform: scale(0.92);
          transform: scale(0.92);
  -webkit-transition: .2s ease all;
  transition: .2s ease all;
}
footer .outer__footer .footer__right ul > li > a:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
footer .outer__footer .footer__right ul > li:last-child {
  margin-right: 0px;
}
footer .outer__footer .footer__right > p {
  margin: 0px;
  margin-right: 60px;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  line-height: 22px;
}
footer .outer__footer .footer__right > p a {
  color: #fff;
  text-decoration: none;
}
footer .outer__footer .footer__right > p a:hover {
  text-decoration: underline;
}
footer .outer__footer > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: .4s ease all;
  transition: .4s ease all;
}
footer .outer__footer > a:hover {
  opacity: .7;
}
footer .outer__footer > a > img {
  max-width: 100px;
}

@media (max-width: 991px) {
  footer .outer__footer .footer__right > p {
    margin-right: 30px;
  }

  .text__wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .desc__wrapper .outer__desc .desc__grid > .elem__desc {
    padding: 25px;
  }

  .desc__wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .features__wrapper .outer__features .elem__feature .feature__desc {
    margin-bottom: 50px;
  }

  .features__wrapper .outer__features .elem__feature {
    margin-bottom: 80px;
  }

  .features__wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__text > p {
    font-size: 24px;
    line-height: 32px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote {
    padding: 40px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author > span > img {
    max-width: 80px;
    min-width: 80px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author .quote__desc > p {
    font-size: 24px;
    line-height: 32px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author .quote__desc > span {
    font-size: 20px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author .quote__desc > .spacer {
    margin-left: 15px;
    margin-right: 15px;
    height: 24px;
  }

  h2 {
    font-size: 46px;
    line-height: 54px;
  }

  .hero__section {
    padding-top: 60px;
  }

  h1 {
    font-size: 60px;
    line-height: 68px;
  }

  .hero__section .hero__desc > p {
    font-size: 20px;
    line-height: 30px;
  }

  .big-btn.dark {
    font-size: 22px;
    line-height: 30px;
  }

  .big-btn.light {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  footer .outer__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 0px;
  }

  footer .outer__footer .footer__right > p {
    margin-right: 0px;
    text-align: center;
  }

  footer .outer__footer .footer__right ul {
    margin: 0px;
    margin-bottom: 10px;
  }

  footer .outer__footer .footer__right {
    margin-top: 15px;
  }

  footer .outer__footer .footer__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .desc__wrapper .outer__desc .desc__grid {
    margin-top: 35px;
  }

  .desc__wrapper .outer__desc .desc__grid {
    grid-template-columns: 1fr;
  }

  .big-btn.dark {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .big-btn.light {
    min-width: 210px;
  }

  .big-btn.light {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .features__wrapper .outer__features .elem__feature .feature__desc {
    max-width: 100%;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote {
    padding: 20px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__text > p {
    font-size: 22px;
    line-height: 30px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author > span > img {
    min-width: 60px;
    max-width: 60px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author .quote__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author .quote__desc > .spacer {
    display: none;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author .quote__desc > p {
    font-size: 22px;
    line-height: 30px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author > span {
    margin-right: 15px;
  }

  .features__wrapper .outer__features .elem__feature {
    margin-bottom: 50px;
  }

  .features__wrapper .outer__features .elem__feature .feature__desc {
    margin-bottom: 35px;
  }

  h2 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 15px;
  }

  .small__desc p {
    margin-bottom: 20px;
  }

  .small__desc {
    padding: 35px 0px;
  }

  h1 {
    font-size: 46px;
    line-height: 54px;
  }

  .hero__section .hero__desc {
    margin-bottom: 40px;
  }

  .hero__section .hero__video {
    max-width: 100%;
  }

  header .outer__header {
    min-height: 0px;
    padding: 15px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  header .outer__header .header__logo {
    margin-bottom: 10px;
  }

  .hero__section {
    padding-top: 35px;
  }

  .features__wrapper .outer__features .elem__feature .feature__desc .button__wrapper {
    margin-top: 20px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__text {
    padding-right: 0px;
  }
}
@media (max-width: 480px) {
  .text__wrapper {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .desc__wrapper {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .desc__wrapper .outer__desc .desc__text .button__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .desc__wrapper .outer__desc .desc__text .button__wrapper > a {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .desc__wrapper .outer__desc .desc__text .button__wrapper > a:last-child {
    margin-bottom: 0px;
  }

  .features__wrapper {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .features__wrapper .outer__features .elem__feature .feature__quote .quote__author > span {
    margin-bottom: 15px;
  }

  .features__wrapper .outer__features .elem__feature .feature__desc .button__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .features__wrapper .outer__features .elem__feature .feature__desc .button__wrapper > a {
    margin-bottom: 15px;
    margin-right: 0px;
  }
  .features__wrapper .outer__features .elem__feature .feature__desc .button__wrapper > a:last-child {
    margin-bottom: 0px;
  }

  .big-btn.dark {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    min-width: 0px;
  }

  .big-btn.light {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    min-width: 0px;
  }

  .hero__section .hero__desc .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero__section .hero__desc .hero__buttons > a {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .hero__section .hero__desc .hero__buttons > a:last-child {
    margin-bottom: 0px;
  }

  h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 400px) {
  header .outer__header .header__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  header .outer__header .header__buttons > a {
    margin-right: 0px;
    margin-bottom: 10px;
    width: 100%;
  }
  header .outer__header .header__buttons > a:last-child {
    margin-bottom: 0px;
  }
}
