html {
  scroll-behavior: smooth;
}

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/***
  ====================================================================
      Global Settings
  ====================================================================
   ***/
body {
  font-family: var(--default-font-family);
  font-size: var(--ui-text-size-xl);
  color: var(--primary-black);
  line-height: 1.7em;
  font-weight: var(--ui-text-weight-regular);
  background: var(--primary-white);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
}

.auto__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h2 {
  font-family: var(--default-font-family);
  font-weight: 800;
  font-size: 40px;
  line-height: 49px;
  color: var(--primary-black);
}

h3 {
  font-family: var(--default-font-family);
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
}

h4 {
  font-family: var(--default-font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

h6 {
  font-family: var(--default-font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}
h6.sm {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
h6.xsm {
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}

p.med {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}
p.sm {
  font-size: 16px;
  line-height: 24px;
}
p.xsm {
  font-family: var(--default-font-family);
  font-weight: 400;
  font-size: var(--ui-text-size-m);
  line-height: 21px;
}

.button {
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button.light {
  background: var(--color-blue);
  border-radius: 100px;
  font-family: var(--default-font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--primary-white);
  padding: var(--spacer-3) var(--spacer-4);
}
.button.light:hover {
  background: var(--color-blue20);
}
.button.bordered {
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  font-family: var(--default-font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-blue);
  padding: var(--spacer-3) var(--spacer-4);
}
.button.bordered:hover {
  color: var(--color-blue20);
  border: 1px solid var(--color-blue20);
}
.check {
  position: relative;
}
.check input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.check input:checked + label::before {
  border: 1px solid var(--color-blue);
  background: var(--color-blue);
}
.check input:checked + label::after {
  opacity: 1;
}
.check label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding-left: 32px;
  display: block;
}
.check label::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: '';
  width: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #8494b2;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.check label::after {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 4px;
  height: 10px;
  border-bottom: 2px solid var(--primary-white);
  border-right: 2px solid var(--primary-white);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  content: '';
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mBlock {
  padding: var(--spacer-9) var(--spacer-0);
}
.mBlock__head {
  padding: var(--spacer-7) var(--spacer-10);
  background: var(--color-green100);
  margin-bottom: var(--spacer-12);
  border-radius: 8px;
}
.mBlock__head h2 {
  text-align: center;
  margin-bottom: var(--spacer-4);
}
.mBlock__head p {
  font-family: var(--secondary-font-family);
  text-align: center;
  max-width: 792px;
  margin: 0 auto;
}
.mBlock__head-icon {
  width: 64px;
  height: 64px;
  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;
  background: #bfe8e5;
  border-radius: 50%;
  color: #008278;
  margin: 0 auto var(--spacer-4) auto;
}
.mBlock__head-icon > span {
  width: 32px;
  height: 32px;
  background-color: #009999;
}
.mBlock__inner {
  position: relative;
  padding: var(--spacer-9);
}
.mBlock__inner h3 {
  margin-bottom: var(--spacer-9);
  color: var(--primary-white);
  text-align: center;
}
.mBlock__inner-image {
  position: absolute;
  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;
  border-radius: 8px;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
}
.mBlock__inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.mBlock__inner-image::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 8, 32, 0.1882352941);
}
.mBlock__inner-content {
  max-width: 872px;
  margin: 0 auto;
  background: var(--primary-white);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 8, 32, 0.08), 0px 1px 4px 0px rgba(0, 8, 32, 0.12);
  box-shadow: 0px 4px 8px 0px rgba(0, 8, 32, 0.08), 0px 1px 4px 0px rgba(0, 8, 32, 0.12);
  z-index: 1;
  position: relative;
  border-radius: 8px;
  padding: var(--spacer-9);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mBlock__inner-content h3 {
  width: 100%;
  color: var(--primary-black);
  text-align: center;
  margin-bottom: var(--spacer-7);
}
.mBlockCard {
  width: calc(50% - 12px);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d9e1ee;
}
.mBlockCard__head {
  text-align: center;
  padding: var(--spacer-4) var(--spacer-4) var(--spacer-6) var(--spacer-4);
  color: var(--primary-white);
  background: -webkit-gradient(linear, left top, right top, from(var(--color-blue)), to(var(--color-blue20)));
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue20) 100%);
}
.mBlockCard__head-price {
  font-weight: 800;
  font-size: 72px;
  line-height: 88px;
}
.mBlockCard__head h6 {
  margin-bottom: var(--spacer-4);
}
.mBlockCard__inner {
  padding: var(--spacer-6);
}
.mBlockText {
  width: calc(50% - 12px);
  text-align: center;
}
.mBlockText h6 {
  margin-bottom: var(--spacer-3);
}
.mBlockText p {
  font-family: var(--secondary-font-family);
  margin-bottom: var(--spacer-6);
}

.mVouch__head {
  padding: var(--spacer-8) 0;
  border-bottom: 1px solid #d9e1ee;
}
.mVouch__head-inner {
  max-width: 384px;
  margin: 0 auto;
}
.mVouch__head-inner p.uniq {
  font-family: var(--secondary-font-family);
  text-align: center;
  margin: var(--spacer-6) 0;
}
.mVouch__head-inner .button {
  width: 100%;
  max-width: 292px;
  margin: 0 auto;
  text-align: center;
  display: block;
}
.mVouchCard {
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 8, 32, 0.08), 0px 1px 4px 0px rgba(0, 8, 32, 0.12);
  box-shadow: 0px 4px 8px 0px rgba(0, 8, 32, 0.08), 0px 1px 4px 0px rgba(0, 8, 32, 0.12);
}
.mVouchCard__head {
  text-align: center;
  padding: var(--spacer-4) var(--spacer-4) var(--spacer-6) var(--spacer-4);
  color: var(--primary-white);
  background: -webkit-gradient(linear, left top, right top, from(var(--color-blue)), to(var(--color-blue20)));
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue20) 100%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mVouchCard__head.uniq {
  padding-top: var(--spacer-7);
  padding-bottom: var(--spacer-7);
}
.mVouchCard__head-price {
  font-weight: 800;
  font-size: 72px;
  line-height: 88px;
}
.mVouchCard__head h6 {
  margin-bottom: var(--spacer-4);
}
.mVouchCard__head h6:last-child {
  margin-bottom: 0;
}
.mVouchCard__not {
  text-align: center;
  padding: var(--spacer-7) 0;
}
.mVouchCard__not-icon {
  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;
  width: 40px;
  height: 40px;
  color: #ffca3a;
  margin: 0 auto var(--spacer-2) auto;
}
.mVouchCard__not-icon svg {
  width: 100%;
  height: 100%;
}
.mVouchCard__inner {
  padding: var(--spacer-4);
}
.mVouchCard__inner p {
  margin-bottom: var(--spacer-3);
}
.mVouchCard__inner .button {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mVouchCard__code {
  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;
  margin-bottom: var(--spacer-4);
}
.mVouchCard__code h6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mVouchCard__code h6 button {
  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;
  color: var(--color-blue20);
  background: transparent;
  width: 20px;
  height: 20px;
  margin-left: var(--spacer-2);
  cursor: pointer;
}
.mVouchCard__code h6 button svg {
  width: 100%;
  height: 100%;
}
.mVouch__inner {
  padding: var(--spacer-8) 0;
  border-bottom: 1px solid #d9e1ee;
}
.mVouch__inner h4 {
  margin-bottom: var(--spacer-8);
  text-align: center;
}
.mVouch__inner-row {
  margin: 0 -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mVouchItem {
  width: calc(50% - 24px);
  margin: 0 12px;
  text-align: center;
}
.mVouchItem__num {
  width: 40px;
  height: 40px;
  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;
  border: 1px solid var(--color-blue);
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-blue);
  margin: 0 auto var(--spacer-3) auto;
}
.mVouchItem h6 {
  margin-bottom: var(--spacer-3);
}
.mVouch__field {
  margin-top: var(--spacer-3);
  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;
}
.mVouch__field-inner {
  padding: var(--spacer-3);
  background: #f6f8fc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mVouch__field .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: var(--spacer-2);
}
.mVouch__field .input label {
  font-family: var(--font-primary);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 10px;
  color: #333333;
  margin-right: var(--spacer-2);
}
.mVouch__field .input input {
  width: 120px;
  background: #ffffff;
  border: 1px solid #c2c7cc;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 12px;
  line-height: 10px;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: var(--primary-black);
  padding: var(--spacer-2);
}
.mVouch__field button {
  display: inline-block;
  background: #dfe2e6;
  -webkit-box-shadow: 0px 1px 0px #c2c7cc;
  box-shadow: 0px 1px 0px #c2c7cc;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 10px;
  color: #0058a3;
  padding: var(--spacer-2) var(--spacer-3);
  cursor: pointer;
}

.mNewsletter {
  position: relative;
  padding: var(--spacer-8) 0;
  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;
  min-height: 722px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mNewsletter__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
}
.mNewsletter__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.mNewsletter__bg img.mb {
  display: none;
}
.mNewsletter__icon {
  width: 64px;
  height: 64px;
  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;
  background: #bfe8e5;
  border-radius: 50%;
  color: #008278;
  margin: 0 auto var(--spacer-4) auto;
}
.mNewsletter__icon > span {
  width: 32px;
  height: 32px;
  background-color: #009999;
}
.mNewsletter__inner {
  padding: var(--spacer-9);
  border-radius: 8px;
  background: var(--primary-white);
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 8, 32, 0.08), 0px 1px 4px 0px rgba(0, 8, 32, 0.12);
  box-shadow: 0px 4px 8px 0px rgba(0, 8, 32, 0.08), 0px 1px 4px 0px rgba(0, 8, 32, 0.12);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 800px;
  margin: 0 auto;
}
.mNewsletter__inner h3 {
  text-align: center;
  margin-bottom: var(--spacer-4);
}
.mNewsletter__inner h4 {
  text-align: center;
  margin-bottom: var(--spacer-4);
}
.mNewsletter__inner p.med {
  text-align: center;
  margin-bottom: var(--spacer-4);
}
.mNewsletter__inner p.med a {
  text-decoration: underline;
}
.mNewsletter__inner p.med a:hover {
  color: var(--color-blue);
}
.mNewsletter__inner p.sm {
  color: var(--color-blue);
  text-align: center;
}
.mNewsletter__inner p.sm a {
  color: var(--color-blue);
  display: block;
}
.mNewsletter__inner .check label a {
  color: var(--color-blue);
  position: relative;
  z-index: 2;
}
.mNewsletter__inner .check label a:hover {
  color: var(--color-blue20);
}
.mNewsletter__inner .check {
  margin-bottom: var(--spacer-7);
}
.mNewsletter__inner-btn {
  text-align: center;
  margin-bottom: var(--spacer-6);
}

.input__outer {
  text-align: left;
  margin-bottom: var(--spacer-7);
}
.input__outer label {
  display: block;
  font-family: var(--default-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: 8px;
}
.input input {
  padding: var(--spacer-3) var(--spacer-4);
  border-radius: var(--Corner-Radius-corner-radius_s, 4px);
  border: 1px solid #8494b2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  color: var(--primary-black);
  font-family: var(--default-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.input input::-webkit-input-placeholder {
  color: #556685;
}
.input input::-moz-placeholder {
  color: #556685;
}
.input input:-ms-input-placeholder {
  color: #556685;
}
.input input::-ms-input-placeholder {
  color: #556685;
}
.input input::placeholder {
  color: #556685;
}

@media (max-width: 950px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
  }
  h3 {
    font-size: 24px;
    line-height: 28px;
  }
  h3 {
    font-size: 20px;
    line-height: 24px;
  }
  h4 {
    font-size: 20px;
    line-height: 28px;
  }
  h6.sm {
    font-size: 14px;
    line-height: 20px;
  }
  p.med {
    font-size: 16px;
    line-height: 24px;
  }
  p.sm {
    font-size: 14px;
    line-height: 20px;
  }
  .check label {
    font-size: 12px;
    line-height: 24px;
  }
  .button.light {
    font-size: 14px;
    line-height: 24px;
  }
  .button.bordered {
    font-size: 14px;
    line-height: 24px;
  }
  body {
    font-size: 16px;
    line-height: 24px;
  }
  .mBlock__head {
    padding: var(--spacer-6);
    margin-bottom: 64px;
  }
  .mBlock__head-icon {
    width: 56px;
    height: 56px;
  }
  .mBlock__inner {
    padding: var(--spacer-8) var(--spacer-6);
  }
  .mBlock__inner-content {
    padding: var(--spacer-8);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mBlock__inner-content h3 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .mBlockText {
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    max-width: 465px;
    margin: 0 auto;
  }
  .mBlockCard {
    width: 100%;
    max-width: 268px;
    margin: 0 auto var(--spacer-6) auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .mVouch__head-inner {
    max-width: 304px;
  }
  .mVouch__inner h4 {
    margin-bottom: var(--spacer-6);
  }
  .mVouch__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  .mVouchItem {
    width: 100%;
    margin: 0 0 var(--spacer-5) 0;
  }
  .mVouchItem:last-child {
    margin-bottom: 0;
  }
  .mNewsletter {
    padding: var(--spacer-5) 0;
  }
}
@media (max-width: 700px) {
  h2 {
    font-size: 24px;
    line-height: 28px;
  }
  h3 {
    font-size: 20px;
    line-height: 24px;
  }
  h6 {
    font-size: 16px;
    line-height: 24px;
  }
  .auto__container {
    padding: 0 20px;
  }
  .mBlock {
    overflow: hidden;
  }
  .mBlock__header {
    padding: var(--spacer-6) var(--spacer-4);
  }
  .mBlock__inner {
    padding: var(--spacer-8) 0;
  }
  .mBlock__inner-image {
    border-radius: 0;
    left: -20px;
    width: calc(100% + 40px);
  }
  .mBlock__inner-content {
    padding: var(--spacer-8) var(--spacer-5);
  }
  .mBlockCard {
    max-width: 300px;
  }
  .mVouch__head-inner {
    max-width: 350px;
  }
  .mNewsletter {
    min-height: 575px;
  }
  .mNewsletter__icon {
    width: 56px;
    height: 56px;
  }
  .mNewsletter__bg img {
    display: none;
  }
  .mNewsletter__bg img.mb {
    display: inline-block;
  }
  .mNewsletter__inner {
    padding: var(--spacer-5);
  }
  .mNewsletter__inner p.sm {
    font-size: 12px;
    line-height: 20px;
  }
}
