/* ----- Generic ----- */
@font-face {
  font-family: 'Montserrat';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
  src: local("Montserrat-Regular"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff"); }

@font-face {
  font-family: 'Montserrat';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
  src: local("Montserrat-Medium"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"); }

@font-face {
  font-family: 'Montserrat';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  text-rendering: optimizeLegibility;
  src: local("Montserrat-SemiBold"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff"); }

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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

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

html {
  background-color: #f4f4f0; }

body {
  max-width: 1920px;
  margin: 0 auto;
  font: normal 16px/1 Montserrat;
  color: #343434; }

input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font: 16px LatoRegular;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s; }
  input:hover, input:focus {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none; }
  input[type="submit"]:hover {
    cursor: pointer; }

input[type="number"]:hover, input[type="number"]:focus {
  -moz-appearance: number-input; }

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

button {
  display: block;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font: 400 16px/1 Montserrat;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s; }
  button:hover {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02); }
  button:focus {
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none; }

ul {
  list-style: none; }

img {
  display: block; }

html {
  background-color: #fff; }

.container,
.container-fluid {
  max-width: 100%;
  width: 100%;
  margin: 0 auto; }

.d-none {
  display: none; }

.d-block {
  display: block; }

.d-inline-block {
  display: inline-block; }

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

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

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

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

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

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

.justify-content-around {
  -ms-flex-pack: distribute;
      justify-content: space-around; }

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

.align-items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; }

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

.flex-fill {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto; }

.section-title {
  font: bold 22px/30px Montserrat;
  text-align: center;
  color: #593D39; }

.box-shadow {
  -webkit-box-shadow: 0px 4px 10px -8px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 4px 10px -8px rgba(0, 0, 0, 0.5); }

.lazyload,
.lazyloading {
  opacity: 0; }

.lazyloaded {
  opacity: 1;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s; }

.input-error {
  border: 1px solid rgba(250, 0, 0, 0.9) !important; }

label.input-error {
  display: none !important; }

.btn {
  display: block;
  max-width: 250px;
  width: 100%;
  border: none;
  border-radius: 5px;
  font: 600 20px/23px Montserrat;
  color: #593D39;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  margin: 0 auto;
  padding: 20px 15px;
  background: -o-linear-gradient(179.96deg, #D1B662 11.17%, #F2E490 50.26%, #D9AF54 82.67%, #AD8034 98.9%);
  background: linear-gradient(270.04deg, #D1B662 11.17%, #F2E490 50.26%, #D9AF54 82.67%, #AD8034 98.9%);
  -webkit-box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 10px 15px -5px rgba(0, 0, 0, 0.25); }
  .btn-transparent {
    display: block;
    max-width: 250px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font: 600 20px/23px Montserrat;
    color: #593D39;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    padding: 10px 15px;
    border-color: white;
    font-weight: bold;
    color: #fff; }
  .btn:hover {
    border-radius: 5px;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2); }
  .btn-transparent:hover {
    border-radius: 5px; }

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="time"] {
  display: block;
  max-width: 265px;
  width: 100%;
  margin: 0 auto 18px;
  padding: 22px 15px;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #FFFFFF;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #FFFFFF;
  background-blend-mode: soft-light, normal;
  -webkit-box-shadow: inset -2px -2px 2px #FAFBFF, inset 2px 2px 2px #A6ABBD;
          box-shadow: inset -2px -2px 2px #FAFBFF, inset 2px 2px 2px #A6ABBD;
  border-radius: 10px;
  border: none;
  font: 500 20px/23px Montserrat; }

/* Section board start */
.section-board {
  width: 100%;
  margin: 0 auto;
  padding: 35px 15px 20px;
  background-color: #FFF;
  border-radius: 10px; }
  .section-board_title {
    font: bold 20px/24px Montserrat;
    text-align: center;
    color: #42B1B8; }
  .section-board_card {
    padding: 25px 5px 0; }
  .section-board_form {
    width: 100%;
    margin-top: 30px;
    padding: 32px 10px;
    background-color: #42B1B8;
    border-radius: 10px; }
  .section-board_data {
    margin: 10px auto 0;
    padding: 0 15px;
    font: normal 12px/18px Montserrat;
    text-align: center;
    color: #ccc; }
  .section-board input {
    max-width: 285px; }
  .section-board label.input-error {
    display: none !important; }
  .section-board .btn:hover {
    cursor: pointer;
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02); }

.sbc-wrap {
  width: 100%;
  padding: 5px 0; }

.sbc_title {
  padding-bottom: 10px;
  font: 600 14px/17px Montserrat; }

.sbc_radio {
  display: none; }

.sbc_label {
  display: block;
  padding: 5px 0 5px 35px;
  font-size: 13px;
  position: relative; }
  .sbc_label::before {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F4F4F0;
    background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F4F4F0;
    background-blend-mode: soft-light, normal;
    -webkit-box-shadow: inset -2.5px -2.5px 5px #FAFBFF, inset 1px 1px 3px #A6ABBD;
            box-shadow: inset -2.5px -2.5px 5px #FAFBFF, inset 1px 1px 3px #A6ABBD;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 0; }
  .sbc_label:hover {
    cursor: pointer; }

.sbc_radio:checked ~ .sbc_label::before {
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #42B1B8;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #42B1B8;
  background-blend-mode: soft-light, normal;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: inset -2.5px -2.5px 5px rgba(250, 251, 255, 0.1), inset 2.5px 2.5px 5px rgba(54, 108, 189, 0.4);
          box-shadow: inset -2.5px -2.5px 5px rgba(250, 251, 255, 0.1), inset 2.5px 2.5px 5px rgba(54, 108, 189, 0.4); }

.sbc_radio:checked ~ .sbc_label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F4F4F0;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F4F4F0;
  background-blend-mode: soft-light, normal;
  -webkit-box-shadow: -1px -1px 10px rgba(250, 251, 255, 0.4), 1px 1px 10px rgba(12, 18, 44, 0.8);
          box-shadow: -1px -1px 10px rgba(250, 251, 255, 0.4), 1px 1px 10px rgba(12, 18, 44, 0.8);
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 7px; }

.sbf-wrap {
  width: 85%;
  margin: 0 auto 25px; }

.sbf_title {
  font-weight: bold; }

.sbf_label {
  padding: 15px 5px 10px;
  font-weight: 600;
  color: #FFF; }

.sbf_scale {
  width: 100%;
  height: 6px;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F4F4F0;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F4F4F0;
  background-blend-mode: soft-light, normal;
  -webkit-box-shadow: inset -2.5px -2.5px 5px #FAFBFF, inset 1px 1px 3px #A6ABBD;
          box-shadow: inset -2.5px -2.5px 5px #FAFBFF, inset 1px 1px 3px #A6ABBD;
  border-radius: 18px; }

.sbf_scale__bar {
  width: 45%;
  height: 100%;
  padding: 0 5px;
  background-color: #593D39;
  border-radius: 18px; }

.sbf-subtitle {
  width: 250px;
  margin: 0 auto;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #FFF; }

/* Section board end */
/* Range slider start */
.rangeslider_area {
  height: 6px;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F6F3ED;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F6F3ED;
  background-blend-mode: soft-light, normal;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: inset -2.5px -2.5px 5px #FAFBFF, inset 1px 1px 3px #A6ABBD;
          box-shadow: inset -2.5px -2.5px 5px #FAFBFF, inset 1px 1px 3px #A6ABBD;
  border-radius: 18.5px;
  position: relative; }
  .rangeslider_area__fill {
    background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #42B1B8;
    background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #42B1B8;
    background-blend-mode: soft-light, normal;
    border: 0.5px solid rgba(255, 255, 255, 0.4);
    -webkit-box-shadow: inset -2.5px -2.5px 5px rgba(250, 251, 255, 0.1), inset 2.5px 2.5px 5px #366CBD;
            box-shadow: inset -2.5px -2.5px 5px rgba(250, 251, 255, 0.1), inset 2.5px 2.5px 5px #366CBD;
    border-radius: 50px; }
  .rangeslider_area__handle {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F4F4F0;
    background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F4F4F0;
    background-blend-mode: soft-light, normal;
    -webkit-box-shadow: -2.5px -2.5px 10px #FAFBFF, 2.5px 2.5px 10px #A6ABBD;
            box-shadow: -2.5px -2.5px 10px #FAFBFF, 2.5px 2.5px 10px #A6ABBD;
    border: 0.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    cursor: pointer;
    -ms-touch-action: pan-x;
        touch-action: pan-x;
    will-change: left;
    position: absolute;
    top: calc( 50% - 12.5px); }

.rangeslider-output {
  width: 45px;
  padding: 2px 0;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F4F4F0;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #F4F4F0;
  background-blend-mode: soft-light, normal;
  -webkit-box-shadow: -2.5px -2.5px 10px #FAFBFF, 2.5px 2.5px 10px #A6ABBD;
          box-shadow: -2.5px -2.5px 10px #FAFBFF, 2.5px 2.5px 10px #A6ABBD;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: -36px;
  left: calc( 50% - 22.5px); }
  .rangeslider-output::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #F4F4F0 transparent transparent transparent;
    position: absolute;
    bottom: -6px;
    left: calc(50% - 5px); }

/* Range slider end */
/* Slick slider start */
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: -28px; }
  .slick-dots li {
    width: auto;
    height: 4px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: 0 3px; }
    .slick-dots li button {
      width: 100%;
      height: 100%;
      padding: 0;
      background: rgba(215, 205, 176, 0.5);
      border-radius: 20px; }
      .slick-dots li button::before {
        display: none; }
    .slick-dots li.slick-active button {
      background-color: #D7CDB0; }

.slick-slide:focus {
  outline: none; }

.slick-arrow {
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: calc( 50% - 15px);
  z-index: 5; }
  .slick-arrow-prev {
    background-image: url(assets/img/arrow-prev.png);
    left: 0; }
  .slick-arrow-next {
    background-image: url(assets/img/arrow-next.png);
    right: 0; }

/* Slick slider end */
/* Spiner */
.spiner-wrap {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 0;
  padding: 13px 15px;
  background-color: #FEDB74;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #FEDB74;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #FEDB74;
  background-blend-mode: soft-light, normal;
  -webkit-box-shadow: 1px 1px 4px #9F9F9F;
          box-shadow: 1px 1px 4px #9F9F9F;
  border-radius: 10px; }

.sk-fading-circle {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 auto; }
  .sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
    .sk-fading-circle .sk-circle::before {
      content: '';
      display: block;
      margin: 0 auto;
      width: 15%;
      height: 15%;
      background-color: #593D39;
      border-radius: 100%;
      -webkit-animation: sk-fading-circle-delay 1.2s infinite ease-in-out both;
      animation: sk-fading-circle-delay 1.2s infinite ease-in-out both; }
    .sk-fading-circle .sk-circle-2 {
      -webkit-transform: rotate(30deg);
          -ms-transform: rotate(30deg);
              transform: rotate(30deg); }
      .sk-fading-circle .sk-circle-2::before {
        -webkit-animation-delay: -1.1s;
                animation-delay: -1.1s; }
    .sk-fading-circle .sk-circle-3 {
      -webkit-transform: rotate(60deg);
          -ms-transform: rotate(60deg);
              transform: rotate(60deg); }
      .sk-fading-circle .sk-circle-3::before {
        -webkit-animation-delay: -1s;
                animation-delay: -1s; }
    .sk-fading-circle .sk-circle-4 {
      -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
              transform: rotate(90deg); }
      .sk-fading-circle .sk-circle-4::before {
        -webkit-animation-delay: -0.9s;
                animation-delay: -0.9s; }
    .sk-fading-circle .sk-circle-5 {
      -webkit-transform: rotate(120deg);
          -ms-transform: rotate(120deg);
              transform: rotate(120deg); }
      .sk-fading-circle .sk-circle-5::before {
        -webkit-animation-delay: -0.8s;
                animation-delay: -0.8s; }
    .sk-fading-circle .sk-circle-6 {
      -webkit-transform: rotate(150deg);
          -ms-transform: rotate(150deg);
              transform: rotate(150deg); }
      .sk-fading-circle .sk-circle-6::before {
        -webkit-animation-delay: -0.7s;
                animation-delay: -0.7s; }
    .sk-fading-circle .sk-circle-7 {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
      .sk-fading-circle .sk-circle-7::before {
        -webkit-animation-delay: -0.6s;
                animation-delay: -0.6s; }
    .sk-fading-circle .sk-circle-8 {
      -webkit-transform: rotate(210deg);
          -ms-transform: rotate(210deg);
              transform: rotate(210deg); }
      .sk-fading-circle .sk-circle-8::before {
        -webkit-animation-delay: -0.5s;
                animation-delay: -0.5s; }
    .sk-fading-circle .sk-circle-9 {
      -webkit-transform: rotate(240deg);
          -ms-transform: rotate(240deg);
              transform: rotate(240deg); }
      .sk-fading-circle .sk-circle-9::before {
        -webkit-animation-delay: -0.4s;
                animation-delay: -0.4s; }
    .sk-fading-circle .sk-circle-10 {
      -webkit-transform: rotate(270deg);
          -ms-transform: rotate(270deg);
              transform: rotate(270deg); }
      .sk-fading-circle .sk-circle-10::before {
        -webkit-animation-delay: -0.3s;
                animation-delay: -0.3s; }
    .sk-fading-circle .sk-circle-11 {
      -webkit-transform: rotate(300deg);
          -ms-transform: rotate(300deg);
              transform: rotate(300deg); }
      .sk-fading-circle .sk-circle-11::before {
        -webkit-animation-delay: -0.2s;
                animation-delay: -0.2s; }
    .sk-fading-circle .sk-circle-12 {
      -webkit-transform: rotate(330deg);
          -ms-transform: rotate(330deg);
              transform: rotate(330deg); }
      .sk-fading-circle .sk-circle-12::before {
        -webkit-animation-delay: -0.1s;
                animation-delay: -0.1s; }

@-webkit-keyframes sk-fading-circle-delay {
  0%, 39%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }

@keyframes sk-fading-circle-delay {
  0%, 39%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }

/* Spiner end */
/* Success date sttart */
.success-date {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 15px 40px;
  background-color: #42B1B8;
  border-radius: 10px; }
  .success-date_title {
    font: bold 20px/28px Montserrat;
    color: #fff;
    text-align: center; }
  .success-date_form-wrap {
    max-width: 275px;
    margin: 18px auto 0;
    position: relative; }
    .success-date_form-wrap span {
      width: 25px;
      height: 25px;
      background: url(../img/sprite-success.png) -264px -94px no-repeat;
      position: absolute;
      top: 16px;
      left: 20px; }
    .success-date_form-wrap.success-form-time {
      position: relative; }
      .success-date_form-wrap.success-form-time span {
        background-position-x: -289px; }
      .success-date_form-wrap.success-form-time .success-form-time_dropdown {
        display: none;
        width: 170px;
        padding: 5px 0;
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 5px;
        -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        position: absolute;
        bottom: -165px;
        left: 2px;
        z-index: 1; }
        .success-date_form-wrap.success-form-time .success-form-time_dropdown::before {
          content: '';
          border-left: 7px solid transparent;
          border-right: 7px solid transparent;
          border-bottom: 7px solid #fff;
          border-top: 0;
          position: absolute;
          top: -7px;
          left: 6px; }
        .success-date_form-wrap.success-form-time .success-form-time_dropdown__item {
          padding: 10px 25px;
          margin: 10px auto;
          -webkit-transition: all .4s;
          -o-transition: all .4s;
          transition: all .4s;
          text-align: center; }
          .success-date_form-wrap.success-form-time .success-form-time_dropdown__item:hover {
            cursor: pointer;
            background-color: rgba(0, 0, 0, 0.15); }
    .success-date_form-wrap.success-form-address span {
      background-position-x: -315px; }
    .success-date_form-wrap input[type="text"],
    .success-date_form-wrap input[type="date"],
    .success-date_form-wrap input[type="time"] {
      max-width: 100%;
      min-height: 57px;
      margin-bottom: 0;
      padding: 19px 15px 15px 60px;
      font: normal 16px/20px Montserrat; }
  .success-date_form__text {
    margin: 18px auto;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    text-align: center; }
  .success-date_form .btn {
    max-width: 275px;
    padding: 15px; }
    .success-date_form .btn:hover {
      cursor: pointer;
      -webkit-transform: scale(1.02);
          -ms-transform: scale(1.02);
              transform: scale(1.02); }

/* Success date end */
/* ----- Components ----- */
/* Header start */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s; }
  header.box-shadow {
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px); }
  header .container {
    padding: 15px; }
  header .custom-logo-link {
    display: block;
    width: 140px; }
  header .header_phone-mobile {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 20px 0 auto;
    background: url(../img/icon-phone.png) center no-repeat;
    border-radius: 50%; }

/* Header end */
/* First screen start */
.first-screen {
  padding: 67px 0 45px;
  background-color: #f4f4f0;
  position: relative;
  z-index: 2; }
  .first-screen::before {
    content: "";
    width: 100%;
    background: -o-linear-gradient(359.11deg, rgba(244, 244, 240, 0.95) 47.17%, rgba(255, 255, 255, 0) 90.73%);
    background: linear-gradient(90.89deg, rgba(244, 244, 240, 0.95) 47.17%, rgba(255, 255, 255, 0) 90.73%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .first-screen .container {
    position: relative; }
  .first-screen .success-date {
    position: absolute;
    top: 130px;
    left: calc( 50% - 160px); }

.fs-info {
  padding: 20px 15px 0; }
  .fs-info_title {
    max-width: 270px;
    margin: 0 auto;
    padding-bottom: 560px;
    font: bold 30px/37px Montserrat; }

#page-success .fs_list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px; }
  #page-success .fs_list__item-icon {
    display: block;
    width: 66px;
    height: 66px;
    margin-right: 9px;
    background: url(../img/sprite-success.png) 0 -94px no-repeat; }
  #page-success .fs_list__item-desc {
    width: calc( 100% - 75px);
    font-size: 14px;
    line-height: 20px; }

#page-success .fs_list__item:nth-child(2) .fs_list__item-icon {
  background-position-x: -66px; }

#page-success .fs_list__item:nth-child(3) .fs_list__item-icon {
  background-position-x: -132px; }

#page-success .fs_list__item:nth-child(4) .fs_list__item-icon {
  background-position-x: -198px; }

#page-success_calc .first-screen {
  padding-bottom: 70px; }

.fs-board {
  max-width: 320px;
  max-height: 485px;
  width: 100%;
  padding: 40px 30px 50px;
  background: -o-linear-gradient(132.3deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #FFFFFF;
  background: linear-gradient(317.7deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #FFFFFF;
  background-blend-mode: soft-light, normal;
  border: 3px solid rgba(255, 255, 255, 0.16);
  -webkit-box-shadow: -15px -15px 30px #FAFBFF, 15px 15px 30px #A6ABBD;
          box-shadow: -15px -15px 30px #FAFBFF, 15px 15px 30px #A6ABBD;
  border-radius: 10px;
  position: absolute;
  top: 160px;
  left: calc( 50% - 160px); }
  .fs-board_title {
    padding: 0 10px;
    font: bold 20px/24px Montserrat;
    text-align: center;
    color: #42B1B8; }
  .fs-board_desc {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 22px; }
    .fs-board_desc span {
      display: block;
      margin-top: 25px; }
  .fs-board .btn {
    max-width: 265px; }

#page-success_calc .fs_list__item {
  margin-top: 35px;
  font-size: 20px;
  line-height: 28px; }
  #page-success_calc .fs_list__item strong {
    font-weight: bold; }

/* First screen end */
/* Booklet start */
.booklet {
  padding: 15px 15px 45px; }
  .booklet_pic {
    max-width: 370px;
    width: calc( 100% - 70px);
    margin: 0 auto 15px; }
    .booklet_pic img {
      width: 100%; }
  .booklet_info {
    max-width: 320px;
    margin: 0 auto; }
    .booklet_info__title {
      font: bold 26px/32px Montserrat; }
    .booklet_info__subtitle {
      padding: 25px 0 30px;
      font-size: 20px;
      line-height: 26px; }
    .booklet_info .btn {
      max-width: 290px;
      text-decoration: none; }

/* Booklet end */
/* Cansult start */
.consult {
  padding: 60px 15px; }
  .consult .section-title {
    max-width: 810px;
    margin: 0 auto; }
  .consult_info {
    max-width: 525px;
    margin: 40px auto; }
    .consult_info__text {
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 20px; }
      .consult_info__text span {
        font-weight: bold; }
  .consult_list__item {
    max-width: 270px;
    width: 100%;
    padding: 0 15px 30px;
    text-align: center; }
    .consult_list__item-icon {
      display: block;
      width: 94px;
      height: 94px;
      margin: 0 auto 5px;
      background: url(../img/sprite-success.png) 0 0 no-repeat; }
    .consult_list__item:nth-child(2) .consult_list__item-icon {
      background-position-x: -94px; }
    .consult_list__item:nth-child(3) .consult_list__item-icon {
      background-position-x: -188px; }
    .consult_list__item:nth-child(4) .consult_list__item-icon {
      background-position-x: -282px; }
    .consult_list__item-desc {
      font-size: 16px;
      line-height: 20px; }
      .consult_list__item-desc span {
        display: block;
        font-weight: bold;
        text-transform: uppercase; }

/* Bottom success start */
.success-bottom {
  padding: 40px 0 45px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-14.1%, rgba(66, 177, 184, 0.2)), color-stop(31.01%, rgba(66, 177, 184, 0)));
  background: -o-linear-gradient(top, rgba(66, 177, 184, 0.2) -14.1%, rgba(66, 177, 184, 0) 31.01%);
  background: linear-gradient(180deg, rgba(66, 177, 184, 0.2) -14.1%, rgba(66, 177, 184, 0) 31.01%); }
  .success-bottom_card {
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    max-width: 230px;
    width: 100%;
    padding: 0 10px 50px; }
    .success-bottom_card__pic {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1; }
      .success-bottom_card__pic img {
        width: 100%; }
    .success-bottom_card__rate {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding-top: 15px; }
  .success-bottom_pic {
    max-width: 400px;
    width: calc( 100% - 50px);
    margin-bottom: 15px; }
    .success-bottom_pic img {
      width: 100%;
      border-radius: 10px; }

/* Bottom success end */
/* Footer start */
footer {
  background-color: #fff; }
  footer .container {
    padding: 40px 25px 35px; }
  footer .custom-logo-link {
    display: inline-block; }

.footer-social {
  width: 100px;
  margin-left: auto; }
  .footer-social_item {
    display: block;
    width: 35px;
    height: 35px;
    margin-left: 10px;
    background: url(../img/sprite-success.png) -264px -119px no-repeat; }
    .footer-social_item:nth-child(2) {
      background-position-x: -299px; }

.footer-bottom {
  width: 100%;
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #C4C4C4; }
  .footer-bottom p {
    font-size: 10px;
    line-height: 14px; }
  .footer-bottom a {
    color: #343434;
    text-decoration: none; }

.btn-to-top {
  background-color: #e1e1e1; }
  .btn-to-top span, .btn-to-top a {
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin: 0 auto;
    padding: 12px 15px;
    font: 600 14px/20px Montserrat;
    color: #593D39;
    text-align: center;
    text-decoration: none; }
    .btn-to-top span:hover, .btn-to-top a:hover {
      cursor: pointer; }
  .btn-to-top a:hover {
    text-decoration: underline; }

/* Footer end */
/* Policy start */
.policy-title {
  padding: 90px 15px 25px;
  font: bold 22px/28px Montserrat;
  text-align: center; }

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

.policy-subtitle {
  padding: 20px 15px;
  line-height: 20px; }

.policy-content {
  padding-bottom: 30px; }

.policy-block {
  width: calc( 100% - 30px);
  margin: 15px auto 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #000; }
  .policy-block_title {
    display: block;
    font: bold 16px/22px Montserrat; }
    .policy-block_title::-webkit-details-marker {
      display: none; }
    .policy-block_title:focus {
      outline: none; }
  .policy-block_list li {
    padding: 5px 0;
    font-size: 14px;
    line-height: 20px; }

/* Policy end */
/* 404 start */
#page-404 main {
  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;
  min-height: calc( 100vh - 263px);
  padding: 100px 15px 50px; }
  #page-404 main .container {
    width: 240px; }

.page-404_title {
  font: bold 110px/1 Montserrat;
  text-align: center; }

.page-404_subtitle {
  padding: 0 5px 5px;
  border-bottom: 1px solid;
  font: 500 14px/20px Montserrat;
  text-align: center; }

/* 404 end */
/* ----- Media ----- */
@media (min-width: 576px) {
  .container {
    max-width: 540px; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important; }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important; }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; } }

@media (min-width: 768px) {
  .container {
    max-width: 720px; }
  .d-md-none {
    display: none !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  /* Header start */
  header {
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px); }
  .hn_contacts__tel {
    font: 600 18px Montserrat;
    color: #42B1B8;
    text-decoration: none; }
    .hn_contacts__tel:hover {
      text-decoration: underline; }
  .hn_contacts__time {
    font-size: 12px; }
  .hn_contacts .btn-transparent {
    display: none; }
  /* Header end */
  /* First screen start */
  .first-screen .container {
    padding-top: 20px; }
  .first-screen .success-date {
    position: static; }
  .fs-info {
    width: 50%; }
    .fs-info_title {
      padding-bottom: 20px; }
  .fs-board {
    margin: 0 auto;
    position: static; }
  /* First screen start */
  /* Booklet start */
  .booklet {
    padding-top: 35px; }
    .booklet_pic {
      max-width: 300px;
      margin-bottom: 0; }
    .booklet_info .btn {
      margin-left: 0; }
  /* Booklet end */
  /* Success bottom start */
  .success-bottom {
    padding: 60px 0 40px; }
    .success-bottom_card {
      max-width: 250px; }
    .success-bottom_pic {
      max-width: 350px;
      margin: 0 auto; }
  /* Success bottom end */
  .consult_list__item {
    max-width: 330px; } }

@media (min-width: 992px) {
  .container {
    max-width: 960px; }
  .d-lg-none {
    display: none !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important; }
  .flex-lg-row-revers {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important; }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important; }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important; }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important; }
  .text-lg-center {
    text-align: center !important; }
  .section-title {
    font-size: 26px;
    line-height: 32px; }
  /* First screen start */
  .first-screen {
    background: url(../img/success-bg.jpg) center/cover no-repeat; }
  .fs-info_title {
    max-width: none;
    padding-bottom: 0; }
  .fs-info_subtitle {
    margin: 20px 0 30px; }
  /* First screen end */
  /* Booklet start */
  .booklet_pic {
    max-width: 390px;
    margin: 0; }
  .booklet_info {
    max-width: 50%;
    margin: 0;
    padding-left: 95px; }
  /* Booklet end */
  /* Success bottom strat */
  .success-bottom_card {
    max-width: 230px; }
  .success-bottom_pic {
    max-width: 570px; }
  /* Success bottom end */
  /* Policy start */
  .policy-title {
    font-size: 28px;
    line-height: 36px; }
  .policy-content {
    padding-bottom: 60px; }
  .policy-block_title {
    font-size: 22px;
    line-height: 28px; }
    .policy-block_title:hover {
      cursor: pointer; }
  .policy-block_list li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 22px; }
  /* Policy end */
  /* 404 start */
  #page-404 main .container {
    width: 375px; }
  .page-404_title {
    font-size: 180px; }
  .page-404_subtitle {
    font: normal 20px/28px Montserrat; }
  /* 404 end */ }

@media (min-width: 1200px) {
  .container {
    max-width: 1140px; }
  .d-xl-none {
    display: none !important; }
  .d-xl-block {
    display: block; }
  .d-xl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .flex-xl-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
  .justify-content-xl-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .justify-content-xl-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .justify-content-xl-around {
    -ms-flex-pack: distribute;
        justify-content: space-around; }
  .justify-content-xl-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .align-items-xl-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .align-items-xl-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .align-items-xl-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .success-date {
    max-width: 470px;
    padding: 50px; }
    .success-date_title {
      padding: 0 20px; }
    .success-date_form-wrap, .success-date_form .btn {
      max-width: 355px; }
    .success-date_form__text {
      padding: 0 30px; }
  /* Header start */
  .hn_contacts__tel {
    color: #000;
    font-weight: bold; }
  /* Header end */
  /* First screen start */
  .first-screen {
    padding-bottom: 90px; }
    .first-screen .container {
      padding-top: 50px; }
    .first-screen .success-date {
      margin-right: 0;
      margin-left: 45px; }
  .fs-info {
    max-width: 530px; }
    .fs-info_subtitle {
      margin: 30px 0 35px;
      font-size: 18px;
      line-height: 22px; }
  .fs_list__item-desc {
    font-size: 16px;
    line-height: 20px; }
  .fs-board {
    max-width: 540px;
    margin: 0 0 0 45px;
    padding: 50px 70px; }
    .fs-board_desc {
      margin-bottom: 50px;
      padding-top: 10px; }
  #page-success_calc .fs_list__item-desc {
    font-size: 20px;
    line-height: 28px; }
  /* First screen end */
  /* Booklet start */
  .booklet {
    padding: 50px 0; }
    .booklet_info {
      max-width: 530px;
      padding-left: 160px; }
      .booklet_info__subtitle {
        padding: 40px 0 35px; }
  /* Booklet end */
  /* Consult start */
  .consult .section-title {
    margin-bottom: 45px; }
  .consult_info {
    margin: 0; }
  .consult_list {
    max-width: 615px; }
    .consult_list__item {
      max-width: 270px; }
  /* Consult end */
  /* Success bottom start */
  .success-bottom {
    padding: 60px 0; }
    .success-bottom_card {
      max-width: 250px;
      margin: 0 15px; }
    .success-bottom_pic {
      max-width: 630px; }
  /* Success bottom end */ }

@media (min-width: 1366px) {
  .container {
    max-width: 1320px; }
  .d-xxl-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .justify-content-xxl-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .sbc_title, .sbc_label {
    font-size: 16px;
    line-height: 20px; }
  .sbc_label {
    font-weight: 500; }
  .sbf-wrap {
    margin-bottom: 45px; }
  .sbf_label {
    font-size: 20px;
    line-height: 24px; }
  .sbf-subtitle {
    padding-bottom: 35px; }
  .success-bottom .success-date {
    margin-right: 0;
    margin-left: 35px; }
  .success-bottom_pic {
    margin: 0;
    max-width: 700px; } }

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