@font-face {
  font-family: "Open Sans Regular";
  src: url("/fonts/OpenSans/OpenSans-Regular.ttf");
}
@font-face {
  font-family: "Open Sans Light";
  src: url("/fonts/OpenSans/OpenSans-Light.ttf");
}
@font-face {
  font-family: "Open Sans Bold";
  src: url("/fonts/OpenSans/OpenSans-Bold.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

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

html {
  height: 100%;
}

body {
  min-height: 100%;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.common__paragraph-text {
  font-size: 18px;
  font-family: "Open Sans Regular";
  color: rgba(0, 0, 0, 0.6);
  line-height: 27px;
  margin-bottom: 27px;
}
.common__paragraph-header {
  font-size: 24px;
  font-family: "Open Sans Regular";
  color: #2F3144;
  margin-bottom: 17px;
}
.common__link {
  font-size: 18px;
  font-family: "Open Sans Regular";
  color: rgba(29, 128, 132, 0.6);
}

@media only screen and (min-width: 768px) {
  .common__paragraph-text {
    margin-bottom: 27px;
  }
  .common__paragraph-header {
    margin-bottom: 36px;
    font-size: 28px;
  }
}
@media only screen and (min-width: 1200px) {
  .common__paragraph-text {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 36px;
  }
  .common__paragraph-header {
    font-size: 42px;
    margin-bottom: 52px;
  }
  .common__link {
    font-size: 24px;
  }
}
header {
  position: fixed;
  background: #FFF;
  padding: 10px 32px 9px 29px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
  width: 100%;
  z-index: 100;
}

.header-fit {
  position: relative;
}
.header__logo {
  font-size: 14px;
  font-family: "Open Sans Regular", sans-serif;
  color: #2F3144;
  font-weight: bold;
  display: inline-block;
}
.header__logo-image {
  width: 122px;
  vertical-align: middle;
  margin-right: 6px;
}
.header__hamburger {
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  position: absolute;
  width: 18px;
  cursor: pointer;
}
.header__hamburger:before, .header__hamburger:after, .header__hamburger div {
  background: #000000;
  content: "";
  display: block;
  height: 2px;
  border-radius: 3px;
  margin: 3px 0;
  transition: 0.5s;
}
.header__hamburger--open:before {
  transform: translateY(5px) rotate(135deg);
}
.header__hamburger--open:after {
  transform: translateY(-5px) rotate(-135deg);
}
.header__hamburger--open div {
  transform: scale(0);
}

.menu--mobile {
  display: none;
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 45px;
  background: #FFFFFF;
  z-index: 100;
  overflow-y: auto;
}
.menu--open {
  display: block;
}
.menu__item {
  color: #000000;
  display: block;
  background: transparent;
  padding: 16px 0px 16px 31px;
  font-size: 30px;
  font-family: "Open Sans Bold", sans-serif;
}
.menu__item--active {
  color: #1A777A;
}

@media only screen and (min-width: 768px) {
  header {
    padding: 20px 48px 19px 49px;
  }
  .header__logo {
    font-size: 22px;
  }
  .header__logo-image {
    width: 170px;
    margin-right: 8px;
  }
  .header__hamburger {
    width: 38px;
  }
  .header__hamburger:before, .header__hamburger:after, .header__hamburger div {
    height: 4px;
    margin: 6px 0;
    transition: 0.5s;
  }
  .header__hamburger--open:before {
    transform: translateY(10px) rotate(135deg);
  }
  .header__hamburger--open:after {
    transform: translateY(-10px) rotate(-135deg);
  }
  .menu--mobile {
    margin-top: 26px;
    padding-top: 51px;
  }
  .menu__item {
    padding: 29px 0 29px 46px;
    font-size: 42px;
  }
}
@media only screen and (min-width: 1200px) {
  header {
    padding: 0;
  }
  .header-fit {
    width: 100%;
    max-width: 1150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding-left: 8px;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  body {
    padding-top: 80px;
  }
  .header__logo {
    font-size: 20px;
  }
  .header__logo-image {
    width: 179px;
    margin-right: 16px;
  }
  .header__hamburger {
    display: none;
  }
  .menu {
    position: relative;
    display: block;
    margin-left: auto;
    top: 0;
  }
  .menu--mobile {
    background: transparent;
    padding-top: 0;
    margin-top: 0;
    overflow-y: hidden;
  }
  .menu__item {
    color: #2F3144;
    font-family: "Open Sans Regular", sans-serif;
    font-size: 18px;
    line-height: 35px;
    padding: 0 8px;
    display: inline-block;
    text-align: center;
    margin-right: 16px;
    text-decoration: none;
  }
  .menu__item--active {
    border-bottom: 2px solid #28BB45;
  }
  .menu__item:last-child {
    margin-right: 0;
  }
}
.footer {
  background-color: #3D3E48;
}
.footer__content {
  padding: 24px 15px 18px;
}
.footer__menu {
  margin-bottom: 13px;
}
.footer__copyright {
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
  font-family: "Open Sans Regular";
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-menu__link {
  color: #FFF;
  display: block;
  font-size: 12px;
  font-family: "Open Sans Regular";
}

@media only screen and (min-width: 400px) {
  .footer__content {
    padding: 24px 25px 18px;
  }
}
@media only screen and (min-width: 768px) {
  .footer__content {
    padding: 26px 42px 25px 57px;
  }
  .footer__menu {
    margin-bottom: 0;
  }
  .footer__copyright {
    text-align: left;
    float: right;
  }
  .footer-menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    float: left;
  }
  .footer-menu__item {
    margin-right: 40px;
  }
  .footer-menu__item:last-child {
    margin-right: 0;
  }
  .footer-menu__link {
    color: #FFF;
    display: block;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer__content {
    width: 1094px;
    margin: 0 auto;
    padding: 26px 0 25px 0;
  }
  .footer-menu__link {
    color: #FFF;
    display: block;
    font-size: 12px;
  }
}
.common__paragraph-header {
  margin-top: 66px;
}

.terms {
  padding-top: 78px;
  padding-bottom: 111px;
}
.terms__content {
  width: 300px;
  margin: 0 auto;
}
.terms__header {
  font-size: 30px;
  font-weight: bold;
  font-family: "Open Sans Bold", sans-serif;
  line-height: 45px;
  color: #2F3144;
}
.terms__updated {
  font-size: 18px;
  font-family: "Open Sans Regular";
  font-style: italic;
  color: rgba(0, 0, 0, 0.6);
  line-height: 27px;
  margin-top: 13px;
  margin-bottom: 27px;
}
.steps-list {
  line-height: 27px;
  margin-bottom: 27px;
}
.steps-list__step {
  margin-left: 20px;
  font-size: 18px;
  font-family: "Open Sans Regular";
  color: rgba(0, 0, 0, 0.6);
}

@media only screen and (min-width: 768px) {
  .terms {
    padding-top: 160px;
    padding-bottom: 126px;
  }
  .terms__content {
    width: 673px;
    margin: 0 auto;
  }
  .terms__header {
    font-size: 42px;
  }
  .terms__updated {
    margin-top: 31px;
  }
  .common__paragraph-header {
    margin-top: 81px;
  }
}
@media only screen and (min-width: 1200px) {
  .common__paragraph-header {
    margin-top: 95px;
    margin-bottom: 52px;
  }
  .common__link {
    word-break: keep-all;
  }
  .terms {
    padding-top: 129px;
    padding-bottom: 144px;
  }
  .terms__header {
    font-size: 63px;
    margin-bottom: 54px;
  }
  .terms__content {
    width: 1000px;
    margin: 0 auto;
  }
  .terms__updated {
    font-size: 24px;
  }
  .steps-list {
    margin-bottom: 36px;
  }
  .steps-list__step {
    font-size: 24px;
    line-height: 36px;
  }
}

/*# sourceMappingURL=terms.css.map */
