
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: unset;
}
body {
  font-family: sans-serif;
}
.container {
  max-width: 1470px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .container {
    max-width: 1230px;
    width: 90%;
  }
}
@media (max-width: 1199px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
.header {
  background-color: #fff;
  padding: 32px 0;
}
@media (max-width: 991px) {
  .header {
    padding: 16px 0;
  }
}
.header__logo {
  cursor: pointer;
}
@media (max-width: 1700px) {
  .header__logo {
    max-width: 220px;
  }
}
@media (max-width: 991px) {
  .header__logo {
    max-width: 170px;
  }
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__navigation a {
  position: relative;
  font-size: 20px;
  margin-left: 32px;
  color: #000;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  overflow-x: hidden;
}
.header__navigation a::before {
  content: '';
  position: absolute;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__navigation a:hover::before {
  -webkit-transform: translate(0);
  transform: translate(0);
}
@media (max-width: 1700px) {
  .header__navigation a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .header__navigation a {
    margin-left: 24px;
    font-size: 16px;
  }
}
.nav-link.mob-only {
  display: none;
}
.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__navigation a:hover {
  color: #000;
}
.nav-underlay {
  display: none;
}
.menu-open-img,
.menu-close-img {
  display: none;
}
@media (max-width: 599px) {
  .menu-open-img,
  .menu-close-img {
    display: block;
  }
  .header__navigation {
    position: fixed;
    z-index: 33;
    right: -100%;
    top: 0;
    width: 70%;
    height: auto;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #222;
    padding: 4rem 1rem;
    border-left: 2px solid #373737;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
  }
  .header__navigation a {
    font-size: 1.2rem;
    margin-left: 0;
    padding: 0.5rem 0;
    text-align: center;
    color: #fff;
  }
  .nav-underlay {
    display: block;
    position: fixed;
    z-index: -3;
    opacity: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
  }
  .nav-underlay.active {
    z-index: 12;
    opacity: 1;
  }
  .nav-link.mob-only {
    display: block;
    margin-bottom: 1rem;
  }
  .menu-close-img {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
}
.hero {
  padding: 120px 0;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.2)),
      to(rgba(0, 0, 0, 0.2))
    ),
    url(../images/hero-bg.jpg) center center/cover no-repeat;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url(../images/hero-bg.jpg) center center/cover no-repeat;
}
@media (max-width: 1199px) {
  .hero {
    padding: 64px 0;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 48px 0;
  }
}
.hero__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;
}
@media (max-width: 1199px) {
  .hero__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.hero__text {
  width: 64%;
}
@media (max-width: 1199px) {
  .hero__text {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.hero__text h1 {
  margin-top: 8px;
  color: #fff;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -0.52px;
}
@media (max-width: 1700px) {
  .hero__text h1 {
    font-size: 46px;
    line-height: 56px;
  }
}
@media (max-width: 1199px) {
  .hero__text h1 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero__text h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 576px) {
  .hero__text h1 {
    font-size: 34px;
    line-height: 40px;
  }
}
.hero__text p {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 40px;
  background: #de261d;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -0.2px;
  line-height: normal;
}
@media (max-width: 1700px) {
  .hero__text p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hero__text p {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .hero__text p {
    font-size: 18px;
  }
}
.hero__text video {
  margin-top: 32px;
  max-width: 700px;
  width: 100%;
}
.hero__form {
  max-width: 460px;
  width: 31%;
  border-radius: 4px;
  background: #fff;
  padding: 32px;
  padding-bottom: 28px;
}
@media (max-width: 1700px) {
  .hero__form {
    padding: 32px;
    padding-bottom: 12px;
  }
}
@media (max-width: 1199px) {
  .hero__form {
    width: 100%;
    margin-top: 32px;
  }
}
@media (max-width: 576px) {
  .hero__form {
    padding: 24px;
    padding-bottom: 4px;
  }
}
.hero__form-title {
  margin-top: 16px;
  text-align: center;
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1700px) {
  .hero__form-title {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .hero__form-title {
    font-size: 18px;
  }
}
.hero__form-block {
  text-align: center;
  padding: 16px 24px;
  border-radius: 56px;
  background: #ffc633;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.16px;
}
.reason {
  padding: 64px 0;
  background-color: #f8f8f8;
}
@media (max-width: 576px) {
  .reason {
    padding: 48px 0;
  }
}
.reason__wrapper {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .reason__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.reason__img {
  width: 100%;
  max-width: 704px;
}
.reason__left,
.reason__right {
  width: 44%;
}
@media (max-width: 768px) {
  .reason__left,
  .reason__right {
    width: 100%;
  }
}
.reason__left p {
  margin-top: 16px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
}
.reason__divider {
  width: 2px;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-radius: 33px;
  background: #000;
}
@media (max-width: 768px) {
  .reason__divider {
    display: none;
  }
}
@media (max-width: 768px) {
  .reason__right {
    margin-top: 24px;
  }
}
.reason__right p {
  margin-top: 16px;
  color: #3e3e3e;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.16px;
}
.reason__president {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.reason__president-name {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.28px;
}
.reason__president-position {
  color: #bbb;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.16px;
}
.reason__president-wrapper {
  margin-left: 8px;
}
.calculator {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .calculator {
    padding: 48px 0;
  }
}
.calculator__title {
  text-align: center;
}
.calculator__wrapper {
  max-width: 1200px;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .calculator__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.calculator__left {
  max-width: 704px;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, 0.03),
    0px 15.40741px 40.45185px 0px rgba(0, 0, 0, 0.05),
    0px 40px 127px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, 0.03),
    0px 15.40741px 40.45185px 0px rgba(0, 0, 0, 0.05),
    0px 40px 127px 0px rgba(0, 0, 0, 0.08);
}
.calculator__left-title {
  max-width: 510px;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.2px;
}
@media (max-width: 1199px) {
  .calculator__right {
    text-align: center;
    margin-top: 24px;
  }
}
.calculator__right-block:first-child {
  margin-bottom: 40px;
}
.calculator__right-text {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.16px;
}
.calculator__right-sum {
  margin-top: 16px;
  color: #000;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: -0.56px;
}
@media (max-width: 1700px) {
  .calculator__right-sum {
    font-size: 46px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .calculator__right-sum {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 576px) {
  .calculator__right-sum {
    font-size: 34px;
    line-height: 43px;
  }
}
.calculator__profit {
  margin-top: 50px;
  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;
  border-radius: 38px;
  background: #ffc633;
  width: 100%;
  padding: 16px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.2px;
}
@media (max-width: 768px) {
  .calculator__profit {
    font-size: 16px;
    line-height: 20px;
  }
}
.calculator__profit span {
  margin-left: 16px;
  color: #000;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.44px;
}
@media (max-width: 1199px) {
  .calculator__profit span {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .calculator__profit span {
    font-size: 24px;
    line-height: 20px;
  }
}
.why {
  padding: 64px 0;
  background: #f8f8f8;
}
@media (max-width: 576px) {
  .why {
    padding: 48px 0;
  }
}
.why__title {
  text-align: center;
}
.why__subtitle {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
  margin: 16px auto 0;
  max-width: 825px;
}
.why__wrapper {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}
.why__block {
  max-width: 459px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, 0.03),
    0px 15.40741px 40.45185px 0px rgba(0, 0, 0, 0.05),
    0px 40px 127px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, 0.03),
    0px 15.40741px 40.45185px 0px rgba(0, 0, 0, 0.05),
    0px 40px 127px 0px rgba(0, 0, 0, 0.08);
}
@media (max-width: 576px) {
  .why__block {
    padding: 24px;
  }
}
.why__text {
  margin-top: 16px;
  color: #3e3e3e;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.16px;
}
@media (max-width: 576px) {
  .why__text {
    margin-top: 24px;
    font-size: 14px;
  }
}
.feed {
  padding: 96px 0;
}
@media (max-width: 576px) {
  .feed {
    padding: 48px 0;
  }
}
.feed__title {
  text-align: center;
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1700px) {
  .feed__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .feed__title {
    font-size: 26px;
  }
}
.feed__wrapper {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .feed__wrapper {
    grid-template-columns: 1fr;
  }
}
.feed__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, 0.03),
    0px 15.40741px 40.45185px 0px rgba(0, 0, 0, 0.05),
    0px 40px 127px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 3.25926px 10.34815px 0px rgba(0, 0, 0, 0.03),
    0px 15.40741px 40.45185px 0px rgba(0, 0, 0, 0.05),
    0px 40px 127px 0px rgba(0, 0, 0, 0.08);
}
.feed__block img {
  max-width: 64px;
}
@media (max-width: 576px) {
  .feed__block {
    padding: 24px;
  }
}
.feed__name {
  margin-top: 16px;
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.28px;
}
@media (max-width: 1700px) {
  .feed__name {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .feed__name {
    font-size: 18px;
  }
}
.feed__text {
  margin-top: 16px;
  color: #3e3e3e;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
}
@media (max-width: 1700px) {
  .feed__text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .feed__text {
    margin-top: 24px;
    font-size: 16px;
  }
}
.bottom {
  padding-top: 64px;
  background: #de261d;
}
@media (max-width: 576px) {
  .bottom {
    padding-top: 48px;
  }
}
.bottom__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .bottom__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.bottom__left {
  max-width: 800px;
  width: 100%;
}
@media (max-width: 1199px) {
  .bottom__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.bottom__left h2 {
  margin-top: 16px;
  color: #fff;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 68px;
  letter-spacing: -0.52px;
}
@media (max-width: 1700px) {
  .bottom__left h2 {
    font-size: 46px;
    line-height: 52px;
  }
}
@media (max-width: 1199px) {
  .bottom__left h2 {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .bottom__left h2 {
    font-size: 32px;
    line-height: 46px;
  }
}
.bottom__left p {
  margin-top: 16px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.2px;
}
@media (max-width: 1700px) {
  .bottom__left p {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .bottom__left p {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .bottom__left p {
    font-size: 20px;
  }
}
.bottom__left img {
  max-width: 192px;
}
.footer {
  margin-top: 52px;
  padding: 24px 0;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__copy,
.footer__links {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.16px;
}
@media (max-width: 576px) {
  .footer__copy,
  .footer__links {
    font-size: 14px;
  }
}
.footer__copy span,
.footer__links span {
  font-weight: 700;
}
.footer__copy a,
.footer__links a {
  color: #f0f0f0;
}
.footer__links a:last-child {
  margin-left: 32px;
}
@media (max-width: 767px) {
  .footer__links {
    margin-top: 24px;
  }
}
.irs--round .irs-min,
.irs--round .irs-max {
  display: none;
}
.irs-grid-pol.small {
  display: none;
}
.irs--round .irs-grid-text {
  display: none;
}
.irs--round .irs-handle {
  opacity: 0;
}
.js-irs-1 .irs-grid-pol {
  display: none;
}
.irs--round .irs-single {
  cursor: pointer;
  top: 21px;
  z-index: 10;
  padding: 4px 16px;
  border-radius: 31px;
  background: #de261d;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.16px;
}
.irs--round .irs-single::before {
  display: none;
}
.irs--round .irs-grid-pol {
  top: -2px;
  width: 1px !important;
  height: 4px !important;
  border-radius: 35px !important;
  background: #000;
}
.irs--round .irs-grid-pol::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2px;
  width: 1px !important;
  height: 4px !important;
  border-radius: 35px !important;
  background: #000;
}
.irs--round .irs-line {
  height: 8px;
  background: rgba(255, 198, 51, 0.14);
}
.irs--round .irs-bar {
  height: 8px;
  background: #ffc633;
}
.page__title {
  color: #000;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: -0.44px;
}
@media (max-width: 1700px) {
  .page__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .page__title {
    font-size: 34px;
    line-height: 45px;
  }
}
@media (max-width: 576px) {
  .page__title {
    font-size: 28px;
    line-height: 43px;
  }
}
.page__title span {
  color: #de261d;
}
input:not([type='checkbox']) {
  padding: 16px;
  color: #a6a6a6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin: 3px;
}
.checkbox-wrap a {
  color: #111;
  font-weight: 700;
}
button[type='submit'] {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding: 16px;
  border-radius: 8px;
  background: #de261d;
  border: none;
}
@media (max-width: 576px) {
  button[type='submit'] {
    font-size: 18px;
  }
} /*# sourceMappingURL=style.min.css.map */

.form-header {
  text-align: center;
}

[scroll="goScrollToForm"] {
  cursor:pointer;
}

.form-check {
  margin: 10px 5px;
}

[scroll="goScrollToForm"] {
  cursor:pointer;
}