/* Helpers files */
*,
*::before,
*::after {
  outline: none;
  -webkit-box-sizing: inherit;
  box-sizing: inherit; }

html {
  line-height: 1.15;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #9e9e9e;
  background-color: #fff;
  margin: 0; }
  body.is-overflow {
    overflow: hidden; }

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
  display: block; }

img {
  border-style: none; }

a {
  color: #252525;
  text-decoration: none; }

.main a {
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  color: #252525; }

@media (min-width: 992px) {
  h1 {
    font-size: 52px;
    line-height: 62px; } }

@media (max-width: 991px) {
  h1 {
    font-size: 42px;
    line-height: 52px; } }

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
    line-height: 42px; } }

@media (min-width: 768px) {
  h2 {
    font-size: 32px;
    line-height: 42px; } }

@media (max-width: 767px) {
  h2 {
    font-size: 26px;
    line-height: 36px; } }

h3 {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 26px; }

h4 {
  font-size: 16px; }

p {
  margin: 0 0 25px; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }
  @media (max-width: 575px) {
    table {
      width: 545px; } }

tr {
  border-bottom: 1px solid rgba(0, 144, 255, 0.1); }
  tr:first-child {
    border-top: 1px solid rgba(0, 144, 255, 0.1); }

th,
td {
  padding: 23px 0;
  text-align: right; }
  th:first-child,
  td:first-child {
    text-align: left; }

th {
  color: #252525;
  font-weight: 400; }

ul {
  margin: 0 0 25px;
  padding: 0;
  list-style: none; }

li {
  position: relative; }
  li::before {
    content: "";
    width: 4px;
    height: 4px;
    /*background-color: #9e9e9e;*/
    display: inline-block;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 20px; }

a:focus,
a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  outline: 0; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px; }

.title-with-line {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #252525;
  text-align: center;
  margin: 0;
  padding-bottom: 26px;
  border-bottom: 1px solid #252525; }

.upper-title {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 14px;
  letter-spacing: 5px;
  color: #252525; }
  @media (min-width: 768px) {
    .upper-title {
      margin-bottom: 97px; } }
  @media (max-width: 767px) {
    .upper-title {
      margin-bottom: 37px; } }

.gradient-number {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 20px;
  color: #fff;
  opacity: .5; }
  @supports (mix-blend-mode: lighten) {
    .gradient-number {
      display: inline-block;
      position: relative;
      color: #000;
      background: #fff;
      mix-blend-mode: multiply; }
      .gradient-number::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: -webkit-gradient(linear, left top, right top, from(#0090ff), to(#3c37bf));
        background: -webkit-linear-gradient(left, #0090ff, #3c37bf);
        background: -o-linear-gradient(left, #0090ff, #3c37bf);
        background: linear-gradient(to right, #0090ff, #3c37bf);
        pointer-events: none; }
      .gradient-number::before {
        mix-blend-mode: screen; } }

/* Components */
@media (max-width: 991px) {
  .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    background: rgba(38, 38, 38, 0);
    -webkit-transition: visibility .3s linear, background .3s linear;
    -o-transition: visibility .3s linear, background .3s linear;
    transition: visibility .3s linear, background .3s linear;
    cursor: pointer;
    z-index: 999; } }

.overlay.is-overlay {
  visibility: visible;
  background: rgba(38, 38, 38, 0.4);
  -webkit-transition: visibility .3s linear, background .3s linear;
  -o-transition: visibility .3s linear, background .3s linear;
  transition: visibility .3s linear, background .3s linear; }

.btn {
  display: block;
  border: none;
  background-color: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  min-width: 160px;
  color: #fff;
  cursor: pointer; }

.btn-lg {
  min-width: 350px;
  padding: 27px 30px;
  border-radius: 35px; }

.btn-sm {
  padding: 17px;
  border-radius: 25px; }

.btn-center {
  text-align: center; }

.btn-transparent {
  background-color: transparent;
  color: #e1303f;
  border: 2px solid #e1303f; }

.btn-red {
  background-color: #e1303f; }

.btn-white {
  background-color: #fff;
  color: #e1303f; }

header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff; }
  @media (min-width: 992px) {
    header {
      /*padding: 25px 0;*/ 
      padding: 8px 0; 
    } 
  }
  @media (max-width: 991px) {
    header {
      /*padding: 15px 0;*/ 
      padding: 8px 0; 
    } 
  }

.with-shadow {
  -webkit-box-shadow: 0 1px 3px 0 rgba(37, 37, 37, 0.1);
  box-shadow: 0 1px 3px 0 rgba(37, 37, 37, 0.1); }

.header-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.open-menu-btn {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  margin-right: -15px; }
  .open-menu-btn:focus, .open-menu-btn:active {
    outline: none; }
  @media (min-width: 992px) {
    .open-menu-btn {
      display: none; } }
  @media (max-width: 991px) {
    .open-menu-btn {
      display: block; } }
  .open-menu-btn span, .open-menu-btn::before, .open-menu-btn::after {
    position: absolute;
    left: calc(50% - 10px);
    display: block;
    width: 20px;
    height: 1px;
    background-color: #000; }
  .open-menu-btn span {
    top: 20px; }
  .open-menu-btn::before, .open-menu-btn::after {
    content: ""; }
  .open-menu-btn::before {
    top: 25px; }
  .open-menu-btn::after {
    top: 30px; }

@media (max-width: 991px) {
  .close-menu-btn {
    padding: 30px 15px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer; } }

.close-menu-btn span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }
  @media (max-width: 991px) {
    .close-menu-btn span::before, .close-menu-btn span::after {
      content: "";
      background-color: #252525;
      position: absolute;
      display: block; } }
  @media (max-width: 991px) {
    .close-menu-btn span::before {
      width: 1px;
      height: 20px;
      top: calc(50% - 10px);
      left: 50%; } }
  @media (max-width: 991px) {
    .close-menu-btn span::after {
      width: 20px;
      height: 1px;
      top: 50%;
      left: calc(50% - 10px); } }

.burger-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  @media (min-width: 992px) {
    .burger-box {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; } }
  @media (max-width: 991px) {
    .burger-box {
      position: fixed;
      top: 0;
      right: -320px;
      bottom: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
      min-height: 100vh;
      padding: 80px 15px;
      background-color: #fff;
      visibility: hidden;
      -webkit-transition: right .3s linear, visibility .3s linear;
      -o-transition: right .3s linear, visibility .3s linear;
      transition: right .3s linear, visibility .3s linear;
      overflow-y: auto;
      z-index: 1000; } }
  @media (min-width: 576px) {
    .burger-box {
      width: 320px; } }
  @media (max-width: 575px) {
    .burger-box {
      width: 100%;
      right: -100%;
      -webkit-transition: right .3s linear, visibility .3s linear;
      -o-transition: right .3s linear, visibility .3s linear;
      transition: right .3s linear, visibility .3s linear; } }
  .burger-box.is-show {
    visibility: visible;
    right: 0;
    -webkit-transition: right .3s linear, visibility .3s linear;
    -o-transition: right .3s linear, visibility .3s linear;
    transition: right .3s linear, visibility .3s linear; }

@media (min-width: 992px) {
  .header-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; } }

.header-menu a {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: #252525;
  font-weight: 700;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear; }
  @media (min-width: 992px) {
    .header-menu a {
      padding: 18px 25px; } }
  @media (max-width: 991px) {
    .header-menu a {
      padding: 15px;
      margin-bottom: 10px; } }
  .header-menu a.is-active {
    position: relative;
    color: #e1303f; }
    .header-menu a.is-active::after {
      content: "";
      position: absolute;
      bottom: 6px;
      left: calc(50% - 2px);
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background-color: #e1303f; }
  .header-menu a:hover, .header-menu a:active {
    color: #e1303f;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear; }

.logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1; }

.logo-img {
  display: block;
  width: 50px;
  height: 48px;
  margin-right: 20px; }

.top-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (min-width: 1200px) {
    .top-box {
      background: url(../img/big-bg.jpg) top center no-repeat;background-size:cover;padding-top:30px; } }
  @media (max-width: 600px) {
    .top-box {
      background:white !important; } }
  @media (max-width: 1199px) {
    .top-box {
      background: url(../img/big-bg.jpg) top center/cover no-repeat;background-size:cover;padding-top:30px; } }
  @media (min-width: 992px) {
    .top-box {
      min-height: calc(100vh - 100px); } }
  @media (max-width: 991px) {
    .top-box {
      min-height: calc(100vh - 80px); } }

.top-box-form {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  max-width: 410px;
  margin: 0 auto;
  text-align: center; }
  @media (min-width: 768px) {
    .top-box-form {
      padding: 40px 45px 50px; } }
  @media (max-width: 767px) {
    .top-box-form {
      padding: 20px 30px 30px; } }
  .top-box-form h2 {
    text-align: center; }
    @media (min-width: 768px) {
      .top-box-form h2 {
        font-size: 26px;
        line-height: 36px;
        margin: 0 0 25px; } }
    @media (max-width: 767px) {
      .top-box-form h2 {
        font-size: 22px;
        line-height: 34px;
        margin: 0 0 15px; } }
    .top-box-form h2 span {
      color: #e1303f; }
  .top-box-form input {
    text-align: center;
    border: none;
    border-bottom: 2px solid #9e9e9e;
    color: #252525;
    font-size: 14px;
    width: 100%;
    height: 46px;
    padding: 0;
    -webkit-transition: border-bottom .2s linear;
    -o-transition: border-bottom .2s linear;
    transition: border-bottom .2s linear; }
    .top-box-form input:focus {
      border-bottom: 2px solid #252525;
      -webkit-transition: border-bottom .2s linear;
      -o-transition: border-bottom .2s linear;
      transition: border-bottom .2s linear; }
  .top-box-form button {
    margin: 0 auto; }

@media (min-width: 768px) {
  .input-group {
    padding-bottom: 18px; } }

@media (max-width: 767px) {
  .input-group {
    padding-bottom: 8px; } }

@media (min-width: 768px) {
  .input-box {
    margin-bottom: 32px; } }

@media (max-width: 767px) {
  .input-box {
    margin-bottom: 22px; } }

@media (min-width: 768px) {
  .how-it-works {
    padding: 65px 0 0; } }

@media (max-width: 767px) {
  .how-it-works {
    padding: 37px 0 0; } }

.how-it-works .upper-title {
  width: 100%; }
  @media (min-width: 768px) {
    .how-it-works .upper-title {
      margin-bottom: 60px; } }
  @media (max-width: 767px) {
    .how-it-works .upper-title {
      margin-bottom: 30px; } }

.how-it-works h3 {
  margin: 0 0 16px; }

.how-it-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 144, 255, 0.1); }
  @media (min-width: 768px) {
    .how-it-box {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 0 0 54px; } }
  @media (max-width: 767px) {
    .how-it-box {
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 0; } }

.how-it-item {
  position: relative;
  text-align: center; }
  @media (min-width: 992px) {
    .how-it-item {
      padding: 0 50px 17px; } }
  @media (max-width: 991px) {
    .how-it-item {
      padding: 0 25px 17px; } }
  @media (min-width: 768px) {
    .how-it-item {
      max-width: 365px; } }
  @media (max-width: 767px) {
    .how-it-item {
      padding: 34px 0 54px;
      max-width: 250px; } }
  @media (min-width: 768px) {
    .how-it-item:nth-child(3)::before {
      display: none; } }
  @media (max-width: 767px) {
    .how-it-item:first-child {
      padding: 0 0 50px; } }
  @media (max-width: 767px) {
    .how-it-item:last-child::before {
      display: none; } }
  .how-it-item::before, .how-it-item::after {
    content: "";
    position: absolute; }
  .how-it-item::before {
    background-color: rgba(0, 144, 255, 0.1); }
    @media (min-width: 768px) {
      .how-it-item::before {
        top: calc(50% - 50px);
        right: 0;
        width: 1px;
        height: 100px; } }
    @media (max-width: 767px) {
      .how-it-item::before {
        width: 100%;
        height: 1px;
        left: 0;
        bottom: 0; } }
  .how-it-item::after {
    width: 4px;
    height: 4px;
    left: calc(50% - 2px);
    background-color: #e1303f;
    border-radius: 50%; }
    @media (min-width: 768px) {
      .how-it-item::after {
        top: 100%; } }
    @media (max-width: 767px) {
      .how-it-item::after {
        bottom: 40px; } }

.number {
  display: block;
  line-height: 1;
  color: rgba(225, 48, 63, 0.5);
  font-weight: 300; }
  @media (min-width: 768px) {
    .number {
      font-size: 50px;
      margin-bottom: 36px; } }
  @media (max-width: 767px) {
    .number {
      font-size: 40px;
      margin-bottom: 26px; } }

.what-is-cash {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  @media (min-width: 768px) {
    .what-is-cash {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 56px 0 37px; } }
  @media (max-width: 767px) {
    .what-is-cash {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 30px 0 40px; } }

.up-to {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media (min-width: 768px) {
    .up-to {
      width: 540px; } }
  @media (max-width: 767px) {
    .up-to {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1; } }

.up-to-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 220px;
  text-align: center; }

.big-price-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #e1303f;
  font-size: 20px; }
  @media (min-width: 768px) {
    .big-price-box {
      padding: 17px 0 0; } }
  .big-price-box p {
    width: 100%;
    margin: 0 0 19px; }
  .big-price-box .big-price {
    padding: 0 0 21px;
    border-bottom: 2px solid #e1303f; }

.big-price {
  line-height: 1;
  color: #e1303f; }
  @media (min-width: 992px) {
    .big-price {
      font-size: 72px; } }
  @media (max-width: 991px) {
    .big-price {
      font-size: 62px; } }
  @media (max-width: 767px) {
    .big-price {
      font-size: 52px; } }

.what-is-box {
  font-size: 20px;
  line-height: 32px; }
  @media (min-width: 768px) {
    .what-is-box {
      width: 540px; } }
  @media (max-width: 767px) {
    .what-is-box {
      -webkit-box-ordinal-group: 1;
      -webkit-order: 0;
      -ms-flex-order: 0;
      order: 0; } }
  @media (min-width: 768px) {
    .what-is-box h1 {
      margin: 0 0 51px; } }
  @media (max-width: 767px) {
    .what-is-box h1 {
      margin: 0 0 21px; } }

.questions-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media (min-width: 768px) {
    .questions-box {
      padding: 65px 0 55px; } }
  @media (max-width: 767px) {
    .questions-box {
      padding: 35px 0 5px; } }
  @media (min-width: 768px) {
    .questions-box .upper-title {
      margin-bottom: 91px; } }
  @media (max-width: 767px) {
    .questions-box .upper-title {
      margin-bottom: 33px; } }

@media (min-width: 768px) {
  .question-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 48.65%;
    -ms-flex: 0 1 48.65%;
    flex: 0 1 48.65%; } }

@media (min-width: 768px) {
  .question-item h3 {
    margin: 0 0 16px; } }

@media (max-width: 767px) {
  .question-item h3 {
    margin: 0 0 14px; } }

@media (min-width: 768px) {
  .question-item p {
    margin: 0 0 38px; } }

@media (max-width: 767px) {
  .question-item p {
    margin: 0 0 29px; } }

@media (min-width: 992px) {
  .internal-content {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 92px 0 68px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }

@media (max-width: 991px) {
  .internal-content {
    padding: 32px 0 0; } }

@media (min-width: 992px) {
  .main {
    max-width: 665px;
    margin-right: 30px; } }

@media (min-width: 992px) {
  .main-text-block {
    padding: 0 0 30px; } }

.main-text-block:last-of-type {
  padding: 0; }

.table-box {
  overflow-x: auto; }
  @media (min-width: 992px) {
    .table-box {
      padding: 37px 0 0;
      margin: 0 0 63px; } }
  @media (max-width: 991px) {
    .table-box {
      padding: 7px 0 0;
      margin: 0 0 33px; } }

.aside {
  text-align: center; }
  @media (min-width: 992px) {
    .aside {
      max-width: 285px; } }
  @media (max-width: 767px) {
    .aside {
      max-width: 285px;
      margin: 0 auto; } }
  .aside .title-with-line {
    padding: 0 0 26px;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .aside .title-with-line {
        max-width: 285px; } }

.aside-why,
.aside-how {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  @media (min-width: 992px) {
    .aside-why,
    .aside-how {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; } }
  @media (max-width: 991px) {
    .aside-why,
    .aside-how {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; } }
  @media (max-width: 767px) {
    .aside-why,
    .aside-how {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

@media (min-width: 992px) {
  .aside-why-item,
  .aside-how-item {
    padding: 22px 0 0;
    border-bottom: 1px solid rgba(0, 144, 255, 0.1); } }

@media (max-width: 991px) {
  .aside-why-item,
  .aside-how-item {
    padding: 27px 15px 7px; } }

@media (max-width: 767px) {
  .aside-why-item,
  .aside-how-item {
    padding: 27px 0 7px;
    border-bottom: 1px solid rgba(0, 144, 255, 0.1);
    margin: 0; } }

.aside-why-item:last-child,
.aside-how-item:last-child {
  border: none; }

.aside-why-item h4,
.aside-how-item h4 {
  margin: 0 0 18px; }

.aside-why-item p,
.aside-how-item p {
  margin: 0 0 23px; }

.aside-why-item .number,
.aside-how-item .number {
  font-size: 20px;
  margin-bottom: 21px;
  font-weight: 700; }

.dividers {
  background-color: #fcfcfc; }
  @media (min-width: 768px) {
    .dividers {
      padding: 70px 0 40px; } }
  @media (max-width: 767px) {
    .dividers {
      padding: 35px 0 18px; } }

.dividers-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  @media (min-width: 768px) {
    .dividers-box {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  @media (max-width: 767px) {
    .dividers-box {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

.divider-item {
  color: #252525;
  text-align: center; }
  @media (min-width: 768px) {
    .divider-item {
      max-width: 350px;
      padding: 0 40px; } }
  @media (max-width: 767px) {
    .divider-item {
      max-width: 270px; } }
  .divider-item img {
    width: 48px;
    height: 44px;
    display: inline-block;
    margin: 0 0 15px; }

.why {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  max-width: 540px;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .why {
      padding: 64px 0 62px; } }
  @media (max-width: 767px) {
    .why {
      padding: 38px 0 32px; } }
  .why .upper-title {
    margin-bottom: 17px; }
  @media (min-width: 768px) {
    .why h2 {
      margin: 0 0 33px; } }
  @media (max-width: 767px) {
    .why h2 {
      margin: 0 0 23px; } }

@media (min-width: 768px) {
  .why-content {
    margin: 0 0 18px; } }

@media (max-width: 767px) {
  .why-content {
    margin: 0 0 8px; } }

.why-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  @media (min-width: 768px) {
    .why-box {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin: 0 0 67px; } }
  @media (max-width: 767px) {
    .why-box {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      margin: 0 0 7px; } }

.why-item {
  width: 350px;
  text-align: center; }
  @media (min-width: 768px) {
    .why-item {
      max-width: 350px;
      padding: 0 40px; } }
  @media (max-width: 767px) {
    .why-item {
      max-width: 270px; } }
  .why-item h3 {
    margin: 0 0 15px; }

.ready-to {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (min-width: 1200px) {
    .ready-to {
      background: url(../img/approved.jpg) top center no-repeat; } }
  @media (max-width: 1199px) {
    .ready-to {
      background: url(../img/approved.jpg) top center/cover no-repeat; } }
  @media (min-width: 768px) {
    .ready-to {
      padding: 93px 0; } }
  @media (max-width: 767px) {
    .ready-to {
      padding: 32px 0 40px; } }

.ready-to-box {
  max-width: 730px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .ready-to-box {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; } }
  @media (max-width: 767px) {
    .ready-to-box {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; } }

.ready-to-left {
  color: #fff;
  max-width: 350px; }
  @media (max-width: 767px) {
    .ready-to-left {
      text-align: center; } }
  .ready-to-left h2 {
    color: #fff; }
    @media (min-width: 768px) {
      .ready-to-left h2 {
        margin: 0; } }
    @media (max-width: 767px) {
      .ready-to-left h2 {
        margin: 0 0 33px; } }

footer {
  border-top: 1px solid rgba(158, 158, 158, 0.1);
  background-color: #fcfcfc; }

.footer-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (min-width: 768px) {
    .footer-top {
      padding: 50px 0; } }
  @media (max-width: 767px) {
    .footer-top {
      padding: 40px 0; } }

.footer-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%; }
  @media (min-width: 768px) {
    .footer-menu {
      padding: 32px 0; } }
  @media (max-width: 767px) {
    .footer-menu {
      padding: 12px 0; } }
  @media (min-width: 576px) {
    .footer-menu {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  @media (max-width: 575px) {
    .footer-menu {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; } }
  .footer-menu a {
    display: block;
    color: #252525;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear; }
    @media (min-width: 576px) {
      .footer-menu a {
        padding: 17px; } }
    @media (max-width: 575px) {
      .footer-menu a {
        padding: 12px 0; } }
    .footer-menu a.is-active {
      color: #e1303f; }
    .footer-menu a:hover, .footer-menu a:active {
      color: #e1303f;
      -webkit-transition: color 0.2s linear;
      -o-transition: color 0.2s linear;
      transition: color 0.2s linear; }

.footer-info {
  border-top: 1px solid rgba(158, 158, 158, 0.1); }
  @media (min-width: 768px) {
    .footer-info {
      padding: 65px 0; } }
  @media (max-width: 767px) {
    .footer-info {
      padding: 35px 0; } }

.footer-info-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.important,
.on-about-loans {
  color: #9e9e9e;
  font-size: 14px;
  line-height: 24px; }
  .important h4,
  .on-about-loans h4 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 20px; }
  @media (min-width: 768px) {
    .important p,
    .on-about-loans p {
      margin: 0 0 25px; } }
  @media (max-width: 767px) {
    .important p,
    .on-about-loans p {
      margin: 0 0 15px; } }
  .important p:last-of-type,
  .on-about-loans p:last-of-type {
    margin: 0; }
  .important a,
  .on-about-loans a {
    text-decoration: underline;
    color: #9e9e9e; }

.important {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  @media (min-width: 768px) {
    .important {
      width: 50%; } }
  @media (max-width: 767px) {
    .important {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1; } }
  @media (max-width: 767px) {
    .important p:last-of-type {
      margin-bottom: 15px; } }

@media (min-width: 768px) {
  .on-about-loans {
    width: calc(50% - 30px);
    margin-left: 30px; } }

@media (max-width: 767px) {
  .on-about-loans {
    margin-bottom: 30px; } }

.copyright {
  font-size: 14px;
  line-height: 20px; }

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

/*IE only css rules*/
@media screen\0 {
    header, .top-box, .aside-why, .aside-how{
        display:block;
    }
}