*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol,
p,
ul {
  margin: 0;
}

body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

a {
  font-family: inherit;
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

@font-face {
  font-family: 'Gilroy';
  src: local("Gilroy Light"), local("Gilroy-Light"), url("../fonts/gilroy/Gilroy-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url("../fonts/gilroy/Gilroy-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: local("Gilroy Bold"), local("Gilroy-Bold"), url("../fonts/gilroy/Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  outline: none;
  border: 0;
}

html, body {
  position: relative;
  overflow-x: hidden;
}

html {
  font-size: 100%;
  height: 100%;
}

button {
  background-color: transparent;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

body {
  position: relative;
  font-family: 'Gilroy', sans-serif;
  font-size: 0.875rem;
  overflow-x: hidden;
  min-width: 320px;
  background: url(../img/bg.jpg) no-repeat top center;
  background-size: cover;
  /* height: 100%; */
  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;
  min-height: 100%;
}

@media (max-width: 1050px) {
  body {
    background: none;
  }
}

body::after, body::before {
  content: "";
  position: absolute;
  bottom: 0;
}

body::before {
  left: -8rem;
  background: url(../img/foot_bg_left.png) no-repeat;
  width: 35.4375rem;
  height: 20.875rem;
  /* bottom: -3rem; */
}

@media (max-width: 1050px) {
  body::before {
    background: url(../img/foot_bg_left_smart.png) no-repeat;
    width: 16.875rem;
    height: 22.5rem;
    top: 27.375rem;
  }
}

body::after {
  right: 0;
  background: url(../img/foot_bg_right.png) no-repeat;
  width: 38.625rem;
  height: 25.9375rem;
}

@media (max-width: 1050px) {
  body::after {
    background: url(../img/foot_bg_right_smart.png) no-repeat;
    width: 5.625rem;
    height: 29.5rem;
    /* top: 12.5rem; */
  }
}

.container {
  position: relative;
  max-width: 1082px;
  margin: auto;
  width: 100%;
}

@media (min-width:1050px) {
	.container {
		height: 100%;
	}
}

.relative {
  position: relative;
}

.w-8\/12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.666667%;
      -ms-flex: 0 0 66.666667%;
          flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.w-7\/12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.333333%;
      -ms-flex: 0 0 58.333333%;
          flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.w-6\/12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.w-5\/12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.666667%;
      -ms-flex: 0 0 41.666667%;
          flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.w-4\/12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.block {
  display: block;
}

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

.flex-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.main {
  position: relative;
  z-index: 2;
  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;
  /* padding-bottom: 4.625rem; */
  height: 100%;
}

@media (max-width: 1050px) {
	.main {
		padding-bottom: 1.5rem;
	}
}

/* @media (max-width: 540px) {
  .main {
    padding-bottom: 1.5rem;
  }
} */

.main__top {
  margin-top: 2rem;
  margin-bottom: 3.3125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 540px) {
  .main__top {
    margin-top: 0.9375rem;
    margin-bottom: 1.25rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main__top .left {
  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;
}

.main__top .left .logo {
  margin-right: 0.75rem;
}

.main__top .left .locale {
  font-weight: 300;
}

@media (max-width: 540px) {
  .main__top .right {
    display: none;
  }
}

.main__center {
  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;
  margin-top: auto;
  margin-bottom: auto;
}

@media (max-width: 1050px) {
  .main__center {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.main__center .left {
  margin-left: 2.375rem;
  margin-top: 1.125rem;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

@media (max-width: 1050px) {
  .main__center .left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    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;
  }
}

.main__center .left__button {
  display: none;
  margin-bottom: 1.625rem;
  width: 100%;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}

.main__center .left__button .button_blue, .main__center .left__button .button_green {
  width: 100%;
}

@media (max-width: 540px) {
  .main__center .left__button {
    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;
  }
}

.main__center .left__button .button_blue {
  margin-bottom: 1.125rem;
  height: 2.625rem;
  padding: 0 1.25rem;
}

.main__center .left .title {
  color: #15457C;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
  .main__center .left .title {
    font-size: 1.5rem;
    margin-bottom: 0.4375rem;
    text-align: center;
  }
}

.main__center .left .subtitle {
  color: #4D4D4D;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 4.5rem;
}

@media (max-width: 1050px) {
  .main__center .left .subtitle {
    margin-bottom: 2.375rem;
  }
}

@media (max-width: 767px) {
  .main__center .left .subtitle {
    font-size: 0.875rem;
    text-align: center;
  }
}

.main__center .left .items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 37.5rem;
      -ms-flex: 0 0 37.5rem;
          flex: 0 0 37.5rem;
  max-width: 37.5rem;
}

@media (max-width: 1050px) {
  .main__center .left .items {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main__center .left .items .item {
  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-bottom: 2.5rem;
}

@media (max-width: 1050px) {
  .main__center .left .items .item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main__center .left .items .item__image {
  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;
  margin-right: 1.25rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 2.8125rem;
      -ms-flex: 0 0 2.8125rem;
          flex: 0 0 2.8125rem;
  max-width: 2.8125rem;
}

.main__center .left .items .item__text {
  max-width: 12.875rem;
  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;
}

.main__center .left .items .item__text h2 {
  font-size: 1.125rem;
  color: #4D4D4D;
  margin-bottom: 0.1875rem;
}

.main__center .left .items .item__text p {
  font-weight: 300;
  color: #4D4D4D;
}

.main__center .right {
  margin-right: 1.5rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 23.0625rem;
      -ms-flex: 0 0 23.0625rem;
          flex: 0 0 23.0625rem;
  max-width: 23.0625rem;
  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-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1050px) {
  .main__center .right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(100% - 20px);
        -ms-flex: 0 0 calc(100% - 20px);
            flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin-right: 0;
    margin-left: 0.625rem;
    margin-right: 0.625rem;
    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;
  }
}

.main__center .right .form__bottom {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#E9E8E8));
  background: -o-linear-gradient(top, #FFFFFF 0%, #E9E8E8 100%);
  background: linear-gradient(180deg, #FFFFFF 0%, #E9E8E8 100%);
  border-radius: 10px;
  padding: 0.25rem 1.875rem;
}

.main__center .right .form__bottom span {
  font-size: 0.75rem;
  font-weight: 300;
  color: #4D4D4D;
}

@media (max-width: 1050px) {
  .main__center .right .form__bottom {
   margin-top: 20px;
  }
}

.main__center .right .form {
  padding: 2.625rem 2.375rem 2.25rem 2.375rem;
  background: #FFFFFF;
  -webkit-box-shadow: 3px 5px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 5px 6px rgba(0, 0, 0, 0.15);
  border-radius: 13px;
  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;
  margin-bottom: 1rem;
}

@media (max-width: 1050px) {
  .main__center .right .form {
    padding: 2rem 1.5rem;
    width: 100%;
    margin-bottom: 0;
    max-width: 33.75rem;
  }
}

.main__center .right .form__title {
  margin-bottom: 1.875rem;
}

@media (max-width: 1050px) {
  .main__center .right .form__title {
    margin-bottom: 1.5rem;
  }
}

.main__center .right .form__title span {
  font-size: 1.125rem;
  color: #15457C;
  font-weight: bold;
}

.main__center .right .form .field-set {
  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;
  margin-bottom: 1.125rem;
  width: 100%;
}

@media (max-width: 1050px) {
  .main__center .right .form .field-set {
    margin-bottom: 0.875rem;
  }
}

.main__center .right .form .field-set label {
  font-weight: 300;
  color: #4D4D4D;
  margin-bottom: 0.625rem;
}

@media (max-width: 1050px) {
  .main__center .right .form .field-set label {
    margin-bottom: 0.4375rem;
  }
}

.main__center .right .form .field-set .field {
  width: 100%;
  background-color: #F1F1F1;
  border-radius: 0.625rem;
  color: #282828;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.5rem 0.875rem;
}

.main__center .right .form .field-set .field::-webkit-input-placeholder {
  color: #282828;
}

.main__center .right .form .field-set .field:-moz-placeholder {
  color: #282828;
}

.main__center .right .form .field-set .field::-moz-placeholder {
  color: #282828;
}

.main__center .right .form .field-set .field:-ms-input-placeholder {
  color: #282828;
}

@media (max-width: 1050px) {
  .main__center .right .form .field-set .field {
    padding: 0.3125rem 0.75rem;
  }
}

.main__center .right .form .field-set .field-control {
  border-radius: 0.625rem;
  overflow: hidden;
  padding: 0.3125rem 1.25rem;
  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-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F1F1F1;
}

@media (max-width: 1050px) {
  .main__center .right .form .field-set .field-control {
    padding: 0.125rem 0.75rem;
    margin-bottom: 0.375rem;
  }
}

.main__center .right .form .field-set .field-control button {
  font-weight: bold;
  font-size: 1.5rem;
  color: #4D4D4D;
}

.main__center .right .form .field-set .field-control .count {
  background-color: #FBFBFB;
  border-radius: 0.625rem;
  height: 2.25rem;
  width: 8.875rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
  color: #282828;
  -moz-appearance: textfield;
}

@media (max-width: 1050px) {
  .main__center .right .form .field-set .field-control .count {
    width: 7.125rem;
    height: 1.75rem;
  }
}

.main__center .right .form .field-set .field-control .count::-webkit-outer-spin-button, .main__center .right .form .field-set .field-control .count::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.main__center .right .form .field-set .field-control .count::-webkit-input-placeholder {
  color: #282828;
}

.main__center .right .form .field-set .field-control .count:-moz-placeholder {
  color: #282828;
}

.main__center .right .form .field-set .field-control .count::-moz-placeholder {
  color: #282828;
}

.main__center .right .form .field-set .field-control .count:-ms-input-placeholder {
  color: #282828;
}

.main__center .right .form .field-button {
  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;
  width: 100%;
}

.main__center .right .form .field-button .button_red {
  margin-bottom: 0.875rem;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#E3722C), to(#C33734));
  background: -o-linear-gradient(top, #E3722C 0%, #C33734 100%);
  background: linear-gradient(180deg, #E3722C 0%, #C33734 100%);
  -webkit-box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  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;
  height: 2.625rem;
}

.main__center .right .form .field-button .button_red span {
  font-weight: bold;
  color: white;
}

.main__foot {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 100%;
  background-color: #F0F0F0;
  padding: 0.125rem 0.875rem;
}

.main__foot .footer {
	display: flex;
  	align-items: center;
 	justify-content: space-between;
}

@media (max-width: 1050px) {
  /* .main__foot {
    display: none;
  } */
}

@media (max-width: 540px) {
	.main__foot .footer p {
		font-size: 14px;
	}
}

.main__foot span {
  font-size: 0.75rem;
  font-weight: 300;
  color: #4D4D4D;
}

.button_blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#54AAD6), to(#3D7EBE));
  background: -o-linear-gradient(top, #54AAD6 0%, #3D7EBE 100%);
  background: linear-gradient(180deg, #54AAD6 0%, #3D7EBE 100%);
  -webkit-box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  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;
  height: 2.625rem;
}

.button_blue span {
  font-weight: bold;
  color: white;
}

.button_green {
  background: -o-linear-gradient(323.85deg, #40FB48 11.56%, #2DCF34 88.44%);
  background: linear-gradient(126.15deg, #40FB48 11.56%, #2DCF34 88.44%);
  -webkit-box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 3px 6px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  padding: 0.5625rem 1.125rem;
  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;
}

@media (max-width: 540px) {
  .button_green {
    padding: 0 1.25rem;
    height: 2.625rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.button_green .icon {
  margin-right: 0.8125rem;
}

.button_green .text {
  font-size: 1.125rem;
  font-weight: bold;
  color: white;
}
.select {
  position: relative;
  display: inline-block;
}
.select:after {
  content: "▼";
  padding: 0 8px;
  font-size: 12px;
  position: absolute;
  right: 8px;
  top: 4px;
  z-index: 1;
  text-align: center;
  width: 10%;
  height: 100%;
  pointer-events: none;
  box-sizing: border-box;
}
select {
  padding-right: 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: url(/img/arrow.png) 100% / 4% no-repeat #eee;
  padding-right: 15px !important;
}