/* Web fonts */
/* GRID switcher */
.grid-switcher {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #363636;
  border-radius: 50%;
  bottom: 10px;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 10px;
  position: fixed;
  width: 40px;
  height: 40px;
  text-transform: uppercase;
  -webkit-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  z-index: 99999999;
  font-family: "Open Sans", Arial, sans-serif;
}

.grid-switcher.is-active, .grid-switcher:focus, .grid-switcher:hover {
  color: #000000;
  background-color: #ffe5e5;
}

.grid-container {
  font-size: 0;
  pointer-events: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 9999999;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: opacity 600ms ease;
  -o-transition: opacity 600ms ease;
  transition: opacity 600ms ease;
}

.grid-container.is-active {
  opacity: 1;
  overflow: visible;
  -webkit-transition: opacity 600ms ease;
  -o-transition: opacity 600ms ease;
  transition: opacity 600ms ease;
}

.grid-column-item {
  width: 100%;
  min-width: 1px;
  min-height: 0;
  width: calc(100% / 6);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 6);
          flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
}

@media (min-width: 771px) {
  .grid-column-item {
    width: calc(100% / 12);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12);
            flex: 0 0 calc(100% / 12);
    max-width: calc(100% / 12);
  }
}

.grid-column {
  background-color: rgba(255, 0, 0, 0.1);
  height: 100vh;
}

/* Animate helpers */
@-webkit-keyframes spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.loading-spinner {
  display: inline-block;
  width: 80px;
  height: 80px;
  -webkit-animation-name: spinner-rotate;
          animation-name: spinner-rotate;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border: 10px solid #003b7e;
  border-right-color: transparent;
  border-radius: 50%;
}

.donut-spinner {
  display: inline-block;
  border: 10px solid #e6edff;
  border-left-color: #003b7e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: donut-spin 1.2s linear infinite;
          animation: donut-spin 1.2s linear infinite;
}

@-webkit-keyframes donut-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes donut-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.bouncing-loader > div,
.bouncing-loader:before,
.bouncing-loader:after {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #003b7e;
  margin-bottom: -5px;
  border-radius: 50%;
  -webkit-animation: bouncing-loader 0.6s infinite alternate;
          animation: bouncing-loader 0.6s infinite alternate;
}

.bouncing-loader > div,
.bouncing-loader:before,
.bouncing-loader:after {
  content: '';
}

.bouncing-loader > div {
  margin: 0 5px;
}

.bouncing-loader > div {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.bouncing-loader:after {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes bouncing-loader {
  to {
    opacity: 0.1;
    -webkit-transform: translate3d(0, -16px, 0);
            transform: translate3d(0, -16px, 0);
  }
}

@keyframes bouncing-loader {
  to {
    opacity: 0.1;
    -webkit-transform: translate3d(0, -16px, 0);
            transform: translate3d(0, -16px, 0);
  }
}

/* Form base */
.form__input, .form__textarea {
  width: 100%;
  height: 70px;
  padding: 0.2rem 0;
  border: 0;
  border-bottom: 2px solid #efefef;
  background-color: transparent;
  color: #003b7e;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  border-radius: 0;
  outline: none !important;
  -webkit-appearance: none;
}

.form__input:-moz-placeholder-shown, .form__textarea:-moz-placeholder-shown {
  border-color: #d20000;
}

.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
  border-color: #d20000;
}

.form__input:placeholder-shown, .form__textarea:placeholder-shown {
  border-color: #d20000;
}

.form__input:focus, .form__textarea:focus {
  border-color: #d20000;
}

.form__input--border {
  padding-left: 25px;
  color: #978d86;
  font-size: 17px;
  font-size: 1.0625rem;
  border: 1px solid #cac6c3;
}

.form__textarea {
  height: 70px;
  padding: 1rem 1rem;
  line-height: 1.5rem;
  resize: none;
  border-radius: 0;
}

@media (min-width: 576px) {
  .form__textarea--limit {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
    min-height: 70px;
    max-height: 300px;
  }
}

@media (max-width: 575px) {
  .form__textarea--limit {
    height: 200px !important;
  }
}

.form__select {
  width: 100%;
  height: 60px;
  padding: 0.2rem 1.5rem;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  border: 2px solid #000000;
  outline: none;
  background-color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  -webkit-appearance: value;
  -moz-appearance: value;
  -ms-appearance: value;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

.form__icon {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 70px;
  color: #000000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}

.form__icon svg {
  font-size: 26px;
  font-size: 1.625rem;
  fill: #978d86;
}

.form__icon-block .form__input {
  padding-right: 60px;
}

.form__label {
  display: block;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  color: #003b7e;
  font-size: 20px;
  font-size: 1.25rem;
}

.form__label .required {
  display: inline-block;
  margin-left: 0.5rem;
  color: #d20000;
}

.form__field {
  position: relative;
}

.form__field--small {
  margin-bottom: 0.5rem;
}

.form__field--medium {
  margin-bottom: 2rem;
}

.form__field--big {
  margin-bottom: 2rem;
}

.form__placeholder {
  position: relative;
  z-index: 1;
}

.form__placeholder.is-active .form__label {
  width: calc(100% - 20px);
  color: #978d86;
  -webkit-transform: translateX(1px) translateY(-6px);
      -ms-transform: translateX(1px) translateY(-6px);
          transform: translateX(1px) translateY(-6px);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 10px 0 5px;
}

.form__placeholder.is-active .form__label .required {
  color: #978d86;
}

.form__placeholder .form__input,
.form__placeholder .form__textarea {
  padding: 25px 0 13px;
}

.form__placeholder .select2-container .select2-selection--single {
  padding: 7px 0 0 25px;
}

.form__placeholder .form__label {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  margin: 0;
  cursor: text;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(1px) translateY(8px);
      -ms-transform: translateX(1px) translateY(8px);
          transform: translateX(1px) translateY(8px);
  text-transform: none;
  pointer-events: none;
  padding: 15px 0 10px;
}

.form__placeholder--border.is-active .form__label {
  -webkit-transform: translateX(25px) translateY(-2px);
      -ms-transform: translateX(25px) translateY(-2px);
          transform: translateX(25px) translateY(-2px);
  padding: 10px 0 5px;
}

.form__placeholder--border .form__input,
.form__placeholder--border .form__textarea {
  padding: 25px 0 13px 25px;
}

.form__placeholder--border .select2-container .select2-selection--single {
  padding: 7px 0 0 25px;
}

.form__placeholder--border .form__label {
  left: 0;
  -webkit-transform: translateX(25px) translateY(10px);
      -ms-transform: translateX(25px) translateY(10px);
          transform: translateX(25px) translateY(10px);
  padding: 15px 0 10px;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #978d86;
}

.form__placeholder-textarea.is-active .form__label {
  -webkit-transform: translateX(1px) translateY(-16px);
      -ms-transform: translateX(1px) translateY(-16px);
          transform: translateX(1px) translateY(-16px);
}

.form__placeholder-textarea .form__label {
  top: 1px;
  left: 2px;
  background: white;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* Placeholder helpers */
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ffffff;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #ffffff;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ffffff;
}
input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #ffffff;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ffffff;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ffffff;
}

input::-moz-input-placeholder,
select::-moz-input-placeholder,
textarea::-moz-input-placeholder {
  color: #ffffff;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ffffff;
}

.form__field--white input::-webkit-input-placeholder, .form__field--white select::-webkit-input-placeholder, .form__field--white textarea::-webkit-input-placeholder {
  color: white;
}

.form__field--white input::-moz-placeholder, .form__field--white select::-moz-placeholder, .form__field--white textarea::-moz-placeholder {
  color: white;
}

.form__field--white input:-ms-input-placeholder, .form__field--white select:-ms-input-placeholder, .form__field--white textarea:-ms-input-placeholder {
  color: white;
}

.form__field--white input::-ms-input-placeholder, .form__field--white select::-ms-input-placeholder, .form__field--white textarea::-ms-input-placeholder {
  color: white;
}

.form__field--white input::placeholder,
.form__field--white select::placeholder,
.form__field--white textarea::placeholder {
  color: white;
}

.form__field--white input::-webkit-input-placeholder,
.form__field--white select::-webkit-input-placeholder,
.form__field--white textarea::-webkit-input-placeholder {
  color: white;
}

.form__field--white input::-moz-input-placeholder,
.form__field--white select::-moz-input-placeholder,
.form__field--white textarea::-moz-input-placeholder {
  color: white;
}

.form__field--white input:-ms-input-placeholder,
.form__field--white select:-ms-input-placeholder,
.form__field--white textarea:-ms-input-placeholder {
  color: white;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: transparent;
  opacity: 1;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: transparent;
  opacity: 1;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: transparent;
  opacity: 1;
}

input:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
  color: transparent;
  opacity: 1;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
  opacity: 1;
}

input:focus::-moz-input-placeholder,
textarea:focus::-moz-input-placeholder {
  color: transparent;
  opacity: 1;
}

input:focus:-moz-input-placeholder,
textarea:focus:-moz-input-placeholder {
  color: transparent;
  opacity: 1;
}

/* Form validation */
.has-field-error .form__field-message {
  display: block;
}

.has-field-error.select2-container .select2-selection--single,
.has-field-error.select-classic .select2-container .select2-selection--multiple, .has-field-error.form__textarea, .has-field-error.form__input {
  border-color: #d20000 !important;
}

.has-field-error + .select2-container .select2-selection--single,
.has-field-error + .select-classic .select2-container .select2-selection--multiple {
  border-color: #d20000 !important;
}

.has-field-success.select2-container .select2-selection--single,
.has-field-success.select-classic .select2-container .select2-selection--multiple, .has-field-success.form__textarea, .has-field-success.form__input {
  border-color: #72e19a !important;
}

.has-field-success + .select2-container .select2-selection--single,
.has-field-success + .select-classic .select2-container .select2-selection--multiple {
  border-color: #72e19a !important;
}

.parsley-error.select2-container .select2-selection--single,
.parsley-error.select-classic .select2-container .select2-selection--multiple, .parsley-error.form__textarea, .parsley-error.form__input,
.has-error.select2-container .select2-selection--single,
.has-error.select-classic .select2-container .select2-selection--multiple,
.has-error.form__textarea,
.has-error.form__input {
  border-color: #d20000 !important;
}

.parsley-error + .select2-container .select2-selection--single,
.parsley-error + .select-classic .select2-container .select2-selection--multiple,
.has-error + .select2-container .select2-selection--single,
.has-error + .select-classic .select2-container .select2-selection--multiple {
  border-color: #d20000 !important;
}

.has-field-success.select2-container .select2-selection--single,
.has-field-success.select-classic .select2-container .select2-selection--multiple, .has-field-success.form__textarea, .has-field-success.form__input,
.parsley-success.select2-container .select2-selection--single,
.parsley-success.select-classic .select2-container .select2-selection--multiple,
.parsley-success.form__textarea,
.parsley-success.form__input {
  border-color: #72e19a !important;
}

.has-field-success + .select2-container .select2-selection--single,
.has-field-success + .select-classic .select2-container .select2-selection--multiple,
.parsley-success + .select2-container .select2-selection--single,
.parsley-success + .select-classic .select2-container .select2-selection--multiple {
  border-color: #72e19a !important;
}

.form__field-message {
  display: none;
  margin-top: 5px;
  color: #870000;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}

.parsley-errors-list {
  color: #d20000;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}

.parsley-errors-list li {
  display: block;
  margin-top: 5px;
}

/* .checkbox.checkbox--radiobox
	input#checkbox_payment_1.checkbox__input-hidden(type='radio', name="payment" required='')
	label.checkbox__label(for='checkbox_payment_1')
		span.checkbox__box
		span.checkbox__text Platba kartou */
/* Checkbox helpers */
.checkbox {
  margin-bottom: 2rem;
}

.input-hidden,
.checkbox__input-hidden {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.checkbox__label {
  margin: 0;
  padding-left: 0;
  min-height: inherit;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  padding-top: 0;
  cursor: pointer;
  text-transform: none;
}

.checkbox__box {
  position: relative;
  max-width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 2px solid #d20000;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
}

.checkbox__text {
  max-width: calc(100% - 30px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 30px);
          flex: 0 0 calc(100% - 30px);
  width: calc(100% - 30px);
  display: block;
  position: relative;
  cursor: pointer;
  text-align: left;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  color: #000000;
  padding-left: 1rem;
  line-height: 1.4;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 576px) {
  .checkbox__text {
    font-size: 16px;
    font-size: 1rem;
  }
}

.checkbox__text a {
  text-decoration: underline;
}

.checkbox__text a:hover {
  color: #d20000;
}

.checkbox__slider {
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  border-radius: 50% !important;
  background-color: #000000;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.checkbox__input-hidden:checked + .checkbox__label .checkbox__box:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  margin-top: -9px;
  display: block;
  width: 18px;
  height: 18px;
  background-color: #d20000;
}

.checkbox--switcher {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 26px;
}

.checkbox--switcher .checkbox__label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #000000;
  border-radius: 35px;
  background-color: transparent;
}

.checkbox--switcher .checkbox__input-hidden:checked + .checkbox__label {
  border-color: #003b7e;
}

.checkbox--switcher .checkbox__input-hidden:checked + .checkbox__label:after {
  display: none;
}

.checkbox--switcher .checkbox__input-hidden:checked + .checkbox__label .checkbox__slider {
  background-color: #003b7e;
  left: calc(100% - 20px);
}

.checkbox--radiobox {
  margin-bottom: 2rem;
}

.checkbox--radiobox .checkbox__box {
  top: 0;
  max-width: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 2px solid #000000;
  border-radius: 100%;
}

.checkbox--radiobox .checkbox__input-hidden:checked + .checkbox__label .checkbox__box:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 100%;
  margin-top: -5px;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  background-color: #000000;
}

/* Buttons helper */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  position: relative;
  margin: 0;
  padding: 0.85em 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
  outline: none !important;
  background: #000000;
  font-family: "Blinker", Arial, sans-serif;
  text-align: center;
  -webkit-transition: background-color 250ms ease;
  -o-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
  border-radius: 0;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-appearance: none;
}

.btn, .btn:visited, .btn:active, .btn:focus {
  color: white;
}

.btn:hover {
  -webkit-transition: background-color 250ms ease;
  -o-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}

@media (min-width: 992px) {
  .btn:hover {
    cursor: pointer;
    text-decoration: none;
    color: white;
  }
}

.btn--responsive {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
}

.btn--font-size-xsmall {
  font-size: 12px;
  font-size: 0.75rem;
}

.btn--font-size-small {
  font-size: 14px;
  font-size: 0.875rem;
}

.btn--font-size-medium {
  font-size: 16px;
  font-size: 1rem;
}

.btn--font-size-big {
  font-size: 18px;
  font-size: 1.125rem;
}

.btn--font-size-large {
  font-size: 20px;
  font-size: 1.25rem;
}

.btn--size-small {
  padding: 0.6em 1.2rem;
}

.btn--size-medium {
  padding: 1.2em 1.5rem;
}

.btn--size-big {
  padding: 2.2em 2rem;
}

.btn--min-width-xsmall {
  min-width: 120px;
}

.btn--min-width-small {
  min-width: 160px;
}

.btn--min-width-medium {
  min-width: 200px;
}

.btn--min-width-big {
  min-width: 300px;
}

.btn--gray-fill {
  color: #ffffff;
  border: 2px solid transparent;
  background-color: #dadada;
}

.btn--gray-fill, .btn--gray-fill:visited, .btn--gray-fill:active, .btn--gray-fill:focus {
  color: #ffffff;
}

.btn--gray-fill:hover {
  color: #ffffff;
  background-color: #c1c1c1;
}

.btn--red-fill {
  color: #ffffff;
  border: 2px solid transparent;
  background-color: #d20000;
}

.btn--red-fill.btn--red-fill-icon {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 2rem;
  padding-right: 1rem;
}

.btn--red-fill.btn--red-fill-icon .btn__icon {
  height: 18px;
}

.btn--red-fill, .btn--red-fill:visited, .btn--red-fill:active, .btn--red-fill:focus {
  color: #ffffff;
}

.btn--red-fill:hover {
  color: #ffffff;
  background-color: #9f0000;
}

.btn--gray-outline {
  color: #d20000;
  border: 1px solid #cac6c3;
  background-color: transparent;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  text-transform: none;
  font-weight: 400;
  height: 55px;
}

.btn--gray-outline.btn--gray-outline-icon {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 2rem;
  padding-right: 1rem;
}

.btn--gray-outline, .btn--gray-outline:visited, .btn--gray-outline:active, .btn--gray-outline:focus {
  color: #d20000;
}

.btn--gray-outline:hover {
  color: #ffffff;
  border: 1px solid #d20000;
  background-color: #d20000;
}

/* Color helpers */
.bg-black {
  background-color: #000000;
}

.bg-orange {
  background-image: -o-linear-gradient(127deg, #f46b45 0%, #eea849 100%);
  background-image: linear-gradient(-37deg, #f46b45 0%, #eea849 100%);
}

@media (max-width: 575px) {
  .bg-orange-sm {
    background-image: -o-linear-gradient(127deg, #f46b45 0%, #eea849 100%);
    background-image: linear-gradient(-37deg, #f46b45 0%, #eea849 100%);
  }
}

@media (max-width: 575px) {
  .bg-orange-sm--ext {
    background-image: -o-linear-gradient(127deg, #eea849 0%, #f46b45 100%);
    background-image: linear-gradient(-37deg, #eea849 0%, #f46b45 100%);
  }
}

.bg-gray-light {
  background-color: #dadada;
}

.txt-white {
  color: #ffffff;
}

.txt-red {
  color: #d20000;
}

.h--white h1,
.h--white .alfa,
.h--white h2,
.h--white .beta,
.h--white h3,
.h--white .gamma,
.h--white h4,
.h--white .delta,
.h--white h5,
.h--white .epsilon,
.h--white h6,
.h--white .zeta {
  color: #ffffff;
}

.h--yellow h1,
.h--yellow .alfa,
.h--yellow h2,
.h--yellow .beta,
.h--yellow h3,
.h--yellow .gamma,
.h--yellow h4,
.h--yellow .delta,
.h--yellow h5,
.h--yellow .epsilon,
.h--yellow h6,
.h--yellow .zeta {
  color: #003b7e;
}

.p--white p {
  color: #ffffff;
}

.p--gray p {
  color: #858585;
}

.p--purple p {
  color: #003b7e;
}

ul.list-style.ul--white li,
.ul--white li {
  color: #ffffff;
}

ul.list-style.ul--white li:before,
.ul--white li:before {
  background-color: #ffffff;
}

ol.list-style.ol-white li,
.ol-white li {
  color: #ffffff;
}

ol.list-style.ol-white li:before,
.ol-white li:before {
  color: #ffffff;
}

/* Gutter helpers */
.no-gutter {
  margin: 0;
}

.no-gutter > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.gutter-4.row {
  margin-right: -2px;
  margin-left: -2px;
}

.gutter-4 > [class*="col-"],
.gutter-4 > [class*=" col-"] {
  padding-right: 2px;
  padding-left: 2px;
}

.gutter-6.row {
  margin-right: -3px;
  margin-left: -3px;
}

.gutter-6 > [class*="col-"],
.gutter-6 > [class*=" col-"] {
  padding-right: 3px;
  padding-left: 3px;
}

.gutter-10.row {
  margin-right: -5px;
  margin-left: -5px;
}

.gutter-10 > [class*="col-"],
.gutter-10 > [class*=" col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.gutter-20.row {
  margin-right: -10px;
  margin-left: -10px;
}

.gutter-20 > [class*="col-"],
.gutter-20 > [class*=" col-"] {
  padding-right: 10px;
  padding-left: 10px;
}

.gutter-30.row {
  margin-right: -15px;
  margin-left: -15px;
}

.gutter-30 > [class*="col-"],
.gutter-30 > [class*=" col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

.gutter-40.row {
  margin-right: -20px;
  margin-left: -20px;
}

.gutter-40 > [class*="col-"],
.gutter-40 > [class*=" col-"] {
  padding-right: 20px;
  padding-left: 20px;
}

.gutter-50.row {
  margin-right: -25px;
  margin-left: -25px;
}

.gutter-50 > [class*="col-"],
.gutter-50 > [class*=" col-"] {
  padding-right: 25px;
  padding-left: 25px;
}

.gutter-60.row {
  margin-right: -30px;
  margin-left: -30px;
}

.gutter-60 > [class*="col-"],
.gutter-60 > [class*=" col-"] {
  padding-right: 30px;
  padding-left: 30px;
}

.gutter-sm-80.row {
  margin-right: -40px;
  margin-left: -40px;
}

.gutter-sm-80 > [class*="col-"],
.gutter-sm-80 > [class*=" col-"] {
  padding-right: 40px;
  padding-left: 40px;
}

.gutter-sm-100.row {
  margin-right: -50px;
  margin-left: -50px;
}

.gutter-sm-100 > [class*="col-"],
.gutter-sm-100 > [class*=" col-"] {
  padding-right: 50px;
  padding-left: 50px;
}

@media (min-width: 576px) {
  .gutter-xs-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-xs-10 > [class*="col-"],
  .gutter-xs-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-xs-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-xs-20 > [class*="col-"],
  .gutter-xs-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-xs-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-xs-30 > [class*="col-"],
  .gutter-xs-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-xs-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-xs-40 > [class*="col-"],
  .gutter-xs-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-xs-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-xs-50 > [class*="col-"],
  .gutter-xs-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-xs-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-xs-60 > [class*="col-"],
  .gutter-xs-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-xs-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-xs-100 > [class*="col-"],
  .gutter-xs-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 771px) {
  .gutter-sm-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-sm-10 > [class*="col-"],
  .gutter-sm-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-sm-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-sm-20 > [class*="col-"],
  .gutter-sm-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-sm-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-sm-30 > [class*="col-"],
  .gutter-sm-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-sm-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-sm-40 > [class*="col-"],
  .gutter-sm-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-sm-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-sm-50 > [class*="col-"],
  .gutter-sm-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-sm-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-sm-60 > [class*="col-"],
  .gutter-sm-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-sm-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-sm-100 > [class*="col-"],
  .gutter-sm-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 992px) {
  .no-md-gutter {
    margin: 0;
  }
  .no-md-gutter > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
  .gutter-md-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-md-10 > [class*="col-"],
  .gutter-md-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-md-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-md-20 > [class*="col-"],
  .gutter-md-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-md-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-md-30 > [class*="col-"],
  .gutter-md-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-md-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-md-40 > [class*="col-"],
  .gutter-md-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-md-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-md-50 > [class*="col-"],
  .gutter-md-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-md-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-md-60 > [class*="col-"],
  .gutter-md-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-md-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-md-100 > [class*="col-"],
  .gutter-md-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 1200px) {
  .gutter-lg-10.row {
    margin-right: -5px;
    margin-left: -5px;
  }
  .gutter-lg-10 > [class*="col-"],
  .gutter-lg-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
  .gutter-lg-20.row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .gutter-lg-20 > [class*="col-"],
  .gutter-lg-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }
  .gutter-lg-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-lg-30 > [class*="col-"],
  .gutter-lg-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-lg-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-lg-40 > [class*="col-"],
  .gutter-lg-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-lg-50.row {
    margin-right: -25px;
    margin-left: -25px;
  }
  .gutter-lg-50 > [class*="col-"],
  .gutter-lg-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
  }
  .gutter-lg-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-lg-60 > [class*="col-"],
  .gutter-lg-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-lg-80.row {
    margin-right: -40px;
    margin-left: -40px;
  }
  .gutter-lg-80 > [class*="col-"],
  .gutter-lg-80 > [class*=" col-"] {
    padding-right: 40px;
    padding-left: 40px;
  }
  .gutter-lg-100.row {
    margin-right: -50px;
    margin-left: -50px;
  }
  .gutter-lg-100 > [class*="col-"],
  .gutter-lg-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 1440px) {
  .gutter-xl-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-xl-30 > [class*="col-"],
  .gutter-xl-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-xl-40.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gutter-xl-40 > [class*="col-"],
  .gutter-xl-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
  .gutter-xl-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-xl-60 > [class*="col-"],
  .gutter-xl-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-xl-80.row {
    margin-right: -40px;
    margin-left: -40px;
  }
  .gutter-xl-80 > [class*="col-"],
  .gutter-xl-80 > [class*=" col-"] {
    padding-right: 40px;
    padding-left: 40px;
  }
  .gutter-xl-120.row {
    margin-right: -60px;
    margin-left: -60px;
  }
  .gutter-xl-120 > [class*="col-"],
  .gutter-xl-120 > [class*=" col-"] {
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media (min-width: 1600px) {
  .gutter-xxl-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-xxl-30 > [class*="col-"],
  .gutter-xxl-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-xxl-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-xxl-60 > [class*="col-"],
  .gutter-xxl-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gutter-xxl-120.row {
    margin-right: -60px;
    margin-left: -60px;
  }
  .gutter-xxl-120 > [class*="col-"],
  .gutter-xxl-120 > [class*=" col-"] {
    padding-right: 60px;
    padding-left: 60px;
  }
  .gutter-xxl-180.row {
    margin-right: -90px;
    margin-left: -90px;
  }
  .gutter-xxl-180 > [class*="col-"],
  .gutter-xxl-180 > [class*=" col-"] {
    padding-right: 90px;
    padding-left: 90px;
  }
}

@media (min-width: 1800px) {
  .gutter-xxxl-30.row {
    margin-right: -15px;
    margin-left: -15px;
  }
  .gutter-xxxl-30 > [class*="col-"],
  .gutter-xxxl-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
  .gutter-xxxl-60.row {
    margin-right: -30px;
    margin-left: -30px;
  }
  .gutter-xxxl-60 > [class*="col-"],
  .gutter-xxxl-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
}

/* Hidden content */
.hidden-content {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

.hidden-content.is-active {
  height: auto;
  opacity: 1;
  overflow: visible;
  visibility: visible;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}

@media (max-width: 575px) {
  .hidden-xs-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-xs-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}

@media (max-width: 770px) {
  .hidden-sm-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-sm-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}

@media (max-width: 991px) {
  .hidden-md-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-md-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}

@media (max-width: 1199px) {
  .hidden-lg-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
  .hidden-lg-content.is-active {
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
  }
}

/* Hidden class */
.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.overflow-visible {
  overflow: visible;
}

/* HR helper */
.hr-line {
  margin: 30px 0;
  height: 1px;
  background-color: #dadada;
}

.hr-line-1 {
  margin: 1rem 0;
}

.hr-line-1-3 {
  margin: 1rem 3rem;
}

.hr-line-2 {
  margin: 2rem 0;
}

.hr-line-3 {
  margin: 3rem 0;
}

.hr-line--width-100 {
  width: 100px;
}

.hr-line--width-200 {
  width: 200px;
}

.hr-line--width-300 {
  width: 300px;
}

.hr-line--center {
  margin: 0 auto;
}

.hr-line--black {
  background-color: #000000;
}

.hr-line--gray {
  background-color: #dadada;
}

/* Icon helpers */
.icon-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  -webkit-transition: fill 0.15s;
  -o-transition: fill 0.15s;
  transition: fill 0.15s;
}

.icon--size-12 svg {
  font-size: 12px;
  font-size: 0.75rem;
}

.icon--size-14 svg {
  font-size: 14px;
  font-size: 0.875rem;
}

.icon--size-16 svg {
  font-size: 16px;
  font-size: 1rem;
}

.icon--size-18 svg {
  font-size: 18px;
  font-size: 1.125rem;
}

.icon--size-20 svg {
  font-size: 20px;
  font-size: 1.25rem;
}

.icon--size-22 svg {
  font-size: 22px;
  font-size: 1.375rem;
}

.icon--size-24 svg {
  font-size: 24px;
  font-size: 1.5rem;
}

.icon--size-26 svg {
  font-size: 26px;
  font-size: 1.625rem;
}

.icon--size-28 svg {
  font-size: 28px;
  font-size: 1.75rem;
}

.icon--size-30 svg {
  font-size: 30px;
  font-size: 1.875rem;
}

.icon--size-60 svg {
  font-size: 60px;
  font-size: 3.75rem;
}

.icon--white svg {
  fill: #ffffff;
}

.icon--black svg {
  fill: #000000;
}

.icon--red svg {
  fill: #d20000;
}

/* Image helpers */
.img {
  display: block;
}

.img--full {
  width: 100%;
}

.img--responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img--cover {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img--contain {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.bg-image-hover,
.img-hover {
  display: block;
  overflow: hidden;
}

.bg-image-hover:focus > img, .bg-image-hover:hover > img,
.img-hover:focus > img,
.img-hover:hover > img {
  -webkit-transform: scale(1.05, 1.05);
      -ms-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.bg-image-hover img,
.img-hover img {
  -webkit-transition: -webkit-transform 400ms ease-out;
  transition: -webkit-transform 400ms ease-out;
  -o-transition: transform 400ms ease-out;
  transition: transform 400ms ease-out;
  transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
  will-change: transform;
}

.img-flex-contain,
.img-flex-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.img-flex-contain img,
.img-flex-cover img {
  display: block;
  width: 100%;
  height: 100%;
}

.img-flex-cover img {
  -o-object-fit: cover;
     object-fit: cover;
}

.img-flex-contain img {
  -o-object-fit: contain;
     object-fit: contain;
}

.bg-image,
.bg-rectangle {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-image-hero {
  top: -158px;
  width: 1311px;
  height: 918px;
  right: -600px;
  left: auto;
}

@media (max-width: 770px) {
  .bg-image-hero {
    right: auto;
    left: 100%;
    top: -140px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .bg-image-hero {
    right: auto;
    left: 100%;
    top: -30px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 841px;
    height: 588px;
  }
}

@media (min-width: 771px) {
  .bg-image-hero {
    width: 821px;
    height: 574px;
    right: -400px;
  }
}

@media (min-width: 992px) {
  .bg-image-hero {
    top: -158px;
    width: 1311px;
    height: 918px;
    right: -920px;
  }
}

@media (min-width: 1200px) {
  .bg-image-hero {
    right: -770px;
  }
}

@media (min-width: 1440px) {
  .bg-image-hero {
    right: -550px;
  }
}

@media (min-width: 1600px) {
  .bg-image-hero {
    right: -450px;
  }
}

@media (min-width: 2000px) {
  .bg-image-hero {
    right: -250px;
  }
}

.bg-image-footer {
  top: auto;
  bottom: 0;
  width: 848px;
  height: 551px;
}

@media (min-width: 771px) {
  .bg-image-footer {
    left: -400px;
  }
}

@media (min-width: 992px) {
  .bg-image-footer {
    left: -300px;
  }
}

@media (min-width: 1200px) {
  .bg-image-footer {
    left: -350px;
  }
}

@media (min-width: 1440px) {
  .bg-image-footer {
    left: -250px;
  }
}

@media (min-width: 1600px) {
  .bg-image-footer {
    left: 0;
  }
}

@media (min-width: 2000px) {
  .bg-image-footer {
    left: 100px;
  }
}

.bg-image-sell {
  top: -280px;
  width: 790px;
  height: 1260px;
  right: -600px;
  left: auto;
}

@media (min-width: 576px) {
  .bg-image-sell {
    right: -500px;
  }
}

@media (min-width: 771px) {
  .bg-image-sell {
    right: -400px;
  }
}

@media (min-width: 992px) {
  .bg-image-sell {
    right: -300px;
  }
}

@media (min-width: 1200px) {
  .bg-image-sell {
    right: -350px;
  }
}

@media (min-width: 1440px) {
  .bg-image-sell {
    right: -250px;
  }
}

@media (min-width: 1600px) {
  .bg-image-sell {
    right: -150px;
  }
}

@media (min-width: 2000px) {
  .bg-image-sell {
    right: -150px;
  }
}

.bg-image-sell-dots {
  top: -240px;
  left: 50px;
  width: 153px;
  height: 423px;
  z-index: -1;
  pointer-events: none;
}

.bg-image-rent {
  top: -180px;
  width: 790px;
  height: 1128px;
  left: -600px;
}

@media (min-width: 576px) {
  .bg-image-rent {
    left: -500px;
  }
}

@media (min-width: 771px) {
  .bg-image-rent {
    top: -120px;
    left: -400px;
  }
}

@media (min-width: 992px) {
  .bg-image-rent {
    left: -300px;
  }
}

@media (min-width: 1200px) {
  .bg-image-rent {
    left: -350px;
  }
}

@media (min-width: 1440px) {
  .bg-image-rent {
    left: -250px;
  }
}

@media (min-width: 1600px) {
  .bg-image-rent {
    left: -230px;
  }
}

@media (min-width: 2000px) {
  .bg-image-rent {
    left: -230px;
  }
}

.bg-image-rent-dots {
  top: -240px;
  right: 50px;
  width: 153px;
  left: auto;
  height: 423px;
  z-index: -1;
  pointer-events: none;
}

.bg-image-hero-dots {
  top: 58%;
  margin-top: -171px;
  left: -150px;
  width: 203px;
  height: 343px;
  pointer-events: none;
}

@media (min-width: 992px) {
  .bg-image-hero-dots {
    left: -120px;
  }
}

@media (min-width: 1200px) {
  .bg-image-hero-dots {
    left: 30px;
  }
}

/* Aspect ratio */
[class*='aspect-ratio-'] {
  display: block;
  position: relative;
}

[class*='aspect-ratio-'] > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.aspect-ratio-16-9 {
  padding-top: 56.25%;
}

.aspect-ratio-3-2 {
  padding-top: 66.66%;
}

.aspect-ratio-4-3 {
  padding-top: 75%;
}

.aspect-ratio-8-5 {
  padding-top: 62.5%;
}

.aspect-ratio-1-1 {
  padding-top: 100%;
}

/* Margin helpers */
.margin-0 {
  margin: 0 !important;
}

@media (min-width: 576px) {
  .margin-xs-0 {
    margin: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-sm-0 {
    margin: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-md-0 {
    margin: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-lg-0 {
    margin: 0 !important;
  }
}

@media (min-width: 1440px) {
  .margin-xl-0 {
    margin: 0 !important;
  }
}

.margin-bottom-01 {
  margin-bottom: 0.1rem;
}

.margin-bottom-02 {
  margin-bottom: 0.2rem;
}

.margin-bottom-03 {
  margin-bottom: 0.3rem;
}

.margin-bottom-04 {
  margin-bottom: 0.4rem;
}

.margin-bottom-05 {
  margin-bottom: 0.5rem;
}

.margin-bottom-06 {
  margin-bottom: 0.6rem;
}

.margin-bottom-07 {
  margin-bottom: 0.7rem;
}

.margin-bottom-08 {
  margin-bottom: 0.8rem;
}

.margin-bottom-09 {
  margin-bottom: 0.9rem;
}

.margin-bottom-1 {
  margin-bottom: 1rem;
}

.margin-bottom-1-5 {
  margin-bottom: 1.5rem;
}

.margin-bottom-2 {
  margin-bottom: 2rem;
}

.margin-bottom-2-5 {
  margin-bottom: 2.5rem;
}

.margin-bottom-3 {
  margin-bottom: 3rem;
}

.margin-bottom-3-5 {
  margin-bottom: 3.5rem;
}

.margin-bottom-4 {
  margin-bottom: 4rem;
}

.margin-bottom-5 {
  margin-bottom: 5rem;
}

.margin-bottom-6 {
  margin-bottom: 6rem;
}

.margin-bottom-7 {
  margin-bottom: 7rem;
}

.margin-bottom-8 {
  margin-bottom: 8rem;
}

.margin-bottom-9 {
  margin-bottom: 9rem;
}

.margin-bottom-10 {
  margin-bottom: 10rem;
}

@media (min-width: 576px) {
  .margin-bottom-xs-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-xs-1-5 {
    margin-bottom: 1.5rem;
  }
  .margin-bottom-xs-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-xs-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-xs-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-xs-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-xs-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-bottom-sm-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-sm-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-sm-2-5 {
    margin-bottom: 2.5rem;
  }
  .margin-bottom-sm-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-sm-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-sm-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-sm-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-bottom-md-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-md-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-md-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-md-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-md-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-md-6 {
    margin-bottom: 6rem;
  }
  .margin-bottom-md-10 {
    margin-bottom: 10rem;
  }
  .margin-bottom-md-11 {
    margin-bottom: 11rem;
  }
}

@media (min-width: 1200px) {
  .margin-bottom-lg-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-lg-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-lg-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-lg-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-lg-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-lg-6 {
    margin-bottom: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-bottom-xl-1 {
    margin-bottom: 1rem;
  }
  .margin-bottom-xl-2 {
    margin-bottom: 2rem;
  }
  .margin-bottom-xl-3 {
    margin-bottom: 3rem;
  }
  .margin-bottom-xl-4 {
    margin-bottom: 4rem;
  }
  .margin-bottom-xl-5 {
    margin-bottom: 5rem;
  }
  .margin-bottom-xl-6 {
    margin-bottom: 6rem;
  }
}

.margin-top-01 {
  margin-top: 0.1rem;
}

.margin-top-02 {
  margin-top: 0.2rem;
}

.margin-top-03 {
  margin-top: 0.3rem;
}

.margin-top-04 {
  margin-top: 0.4rem;
}

.margin-top-05 {
  margin-top: 0.5rem;
}

.margin-top-06 {
  margin-top: 0.6rem;
}

.margin-top-07 {
  margin-top: 0.7rem;
}

.margin-top-08 {
  margin-top: 0.8rem;
}

.margin-top-09 {
  margin-top: 0.9rem;
}

.margin-top-1 {
  margin-top: 1rem;
}

.margin-top-1-5 {
  margin-top: 1.5rem;
}

.margin-top-2 {
  margin-top: 2rem;
}

.margin-top-2-5 {
  margin-top: 2.5rem;
}

.margin-top-3 {
  margin-top: 3rem;
}

.margin-top-3-5 {
  margin-top: 3.5rem;
}

.margin-top-4 {
  margin-top: 4rem;
}

.margin-top-5 {
  margin-top: 5rem;
}

.margin-top-6 {
  margin-top: 6rem;
}

.margin-top-7 {
  margin-top: 7rem;
}

.margin-top-8 {
  margin-top: 8rem;
}

.margin-top-9 {
  margin-top: 9rem;
}

.margin-top-10 {
  margin-top: 10rem;
}

@media (min-width: 576px) {
  .margin-top-xs-1 {
    margin-top: 1rem;
  }
  .margin-top-xs-2 {
    margin-top: 2rem;
  }
  .margin-top-xs-3 {
    margin-top: 3rem;
  }
  .margin-top-xs-4 {
    margin-top: 4rem;
  }
  .margin-top-xs-5 {
    margin-top: 5rem;
  }
  .margin-top-xs-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-top-sm-1 {
    margin-top: 1rem;
  }
  .margin-top-sm-2 {
    margin-top: 2rem;
  }
  .margin-top-sm-2-5 {
    margin-top: 2.5rem;
  }
  .margin-top-sm-3 {
    margin-top: 3rem;
  }
  .margin-top-sm-4 {
    margin-top: 4rem;
  }
  .margin-top-sm-5 {
    margin-top: 5rem;
  }
  .margin-top-sm-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-top-md-1 {
    margin-top: 1rem;
  }
  .margin-top-md-2 {
    margin-top: 2rem;
  }
  .margin-top-md-3 {
    margin-top: 3rem;
  }
  .margin-top-md-4 {
    margin-top: 4rem;
  }
  .margin-top-md-5 {
    margin-top: 5rem;
  }
  .margin-top-md-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-top-lg-1 {
    margin-top: 1rem;
  }
  .margin-top-lg-2 {
    margin-top: 2rem;
  }
  .margin-top-lg-3 {
    margin-top: 3rem;
  }
  .margin-top-lg-4 {
    margin-top: 4rem;
  }
  .margin-top-lg-5 {
    margin-top: 5rem;
  }
  .margin-top-lg-6 {
    margin-top: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-top-xl-1 {
    margin-top: 1rem;
  }
  .margin-top-xl-2 {
    margin-top: 2rem;
  }
  .margin-top-xl-3 {
    margin-top: 3rem;
  }
  .margin-top-xl-4 {
    margin-top: 4rem;
  }
  .margin-top-xl-5 {
    margin-top: 5rem;
  }
  .margin-top-xl-6 {
    margin-top: 6rem;
  }
}

.margin-left-01 {
  margin-left: 0.1rem;
}

.margin-left-02 {
  margin-left: 0.2rem;
}

.margin-left-03 {
  margin-left: 0.3rem;
}

.margin-left-04 {
  margin-left: 0.4rem;
}

.margin-left-05 {
  margin-left: 0.5rem;
}

.margin-left-08 {
  margin-left: 0.8rem;
}

.margin-left-1 {
  margin-left: 1rem;
}

.margin-left-1-5 {
  margin-left: 1.5rem;
}

.margin-left-2 {
  margin-left: 2rem;
}

.margin-left-3 {
  margin-left: 3rem;
}

.margin-left-4 {
  margin-left: 4rem;
}

.margin-left-5 {
  margin-left: 5rem;
}

.margin-left-6 {
  margin-left: 6rem;
}

.margin-left-7 {
  margin-left: 7rem;
}

.margin-left-8 {
  margin-left: 8rem;
}

.margin-left-9 {
  margin-left: 9rem;
}

.margin-left-10 {
  margin-left: 10rem;
}

@media (min-width: 576px) {
  .margin-left-xs-1 {
    margin-left: 1rem;
  }
  .margin-left-xs-2 {
    margin-left: 2rem;
  }
  .margin-left-xs-3 {
    margin-left: 3rem;
  }
  .margin-left-xs-4 {
    margin-left: 4rem;
  }
  .margin-left-xs-5 {
    margin-left: 5rem;
  }
  .margin-left-xs-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-left-sm-1 {
    margin-left: 1rem;
  }
  .margin-left-sm-2 {
    margin-left: 2rem;
  }
  .margin-left-sm-3 {
    margin-left: 3rem;
  }
  .margin-left-sm-4 {
    margin-left: 4rem;
  }
  .margin-left-sm-5 {
    margin-left: 5rem;
  }
  .margin-left-sm-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-left-md-1 {
    margin-left: 1rem;
  }
  .margin-left-md-2 {
    margin-left: 2rem;
  }
  .margin-left-md-3 {
    margin-left: 3rem;
  }
  .margin-left-md-4 {
    margin-left: 4rem;
  }
  .margin-left-md-5 {
    margin-left: 5rem;
  }
  .margin-left-md-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-left-lg-1 {
    margin-left: 1rem;
  }
  .margin-left-lg-2 {
    margin-left: 2rem;
  }
  .margin-left-lg-3 {
    margin-left: 3rem;
  }
  .margin-left-lg-4 {
    margin-left: 4rem;
  }
  .margin-left-lg-5 {
    margin-left: 5rem;
  }
  .margin-left-lg-6 {
    margin-left: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-left-xl-1 {
    margin-left: 1rem;
  }
  .margin-left-xl-2 {
    margin-left: 2rem;
  }
  .margin-left-xl-3 {
    margin-left: 3rem;
  }
  .margin-left-xl-4 {
    margin-left: 4rem;
  }
  .margin-left-xl-5 {
    margin-left: 5rem;
  }
  .margin-left-xl-6 {
    margin-left: 6rem;
  }
}

.margin-right-01 {
  margin-right: 0.1rem;
}

.margin-right-02 {
  margin-right: 0.2rem;
}

.margin-right-03 {
  margin-right: 0.3rem;
}

.margin-right-04 {
  margin-right: 0.4rem;
}

.margin-right-05 {
  margin-right: 0.5rem;
}

.margin-right-08 {
  margin-right: 0.8rem;
}

.margin-right-1 {
  margin-right: 1rem;
}

.margin-right-1-5 {
  margin-right: 1.5rem;
}

.margin-right-2 {
  margin-right: 2rem;
}

.margin-right-3 {
  margin-right: 3rem;
}

.margin-right-4 {
  margin-right: 4rem;
}

.margin-right-5 {
  margin-right: 5rem;
}

.margin-right-6 {
  margin-right: 6rem;
}

.margin-right-7 {
  margin-right: 7rem;
}

.margin-right-8 {
  margin-right: 8rem;
}

.margin-right-9 {
  margin-right: 9rem;
}

.margin-right-10 {
  margin-right: 10rem;
}

@media (min-width: 576px) {
  .margin-right-xs-1 {
    margin-right: 1rem;
  }
  .margin-right-xs-2 {
    margin-right: 2rem;
  }
  .margin-right-xs-3 {
    margin-right: 3rem;
  }
  .margin-right-xs-4 {
    margin-right: 4rem;
  }
  .margin-right-xs-5 {
    margin-right: 5rem;
  }
  .margin-right-xs-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 771px) {
  .margin-right-sm-1 {
    margin-right: 1rem;
  }
  .margin-right-sm-2 {
    margin-right: 2rem;
  }
  .margin-right-sm-3 {
    margin-right: 3rem;
  }
  .margin-right-sm-4 {
    margin-right: 4rem;
  }
  .margin-right-sm-5 {
    margin-right: 5rem;
  }
  .margin-right-sm-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 992px) {
  .margin-right-md-1 {
    margin-right: 1rem;
  }
  .margin-right-md-2 {
    margin-right: 2rem;
  }
  .margin-right-md-3 {
    margin-right: 3rem;
  }
  .margin-right-md-4 {
    margin-right: 4rem;
  }
  .margin-right-md-5 {
    margin-right: 5rem;
  }
  .margin-right-md-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 1200px) {
  .margin-right-lg-1 {
    margin-right: 1rem;
  }
  .margin-right-lg-2 {
    margin-right: 2rem;
  }
  .margin-right-lg-3 {
    margin-right: 3rem;
  }
  .margin-right-lg-4 {
    margin-right: 4rem;
  }
  .margin-right-lg-5 {
    margin-right: 5rem;
  }
  .margin-right-lg-6 {
    margin-right: 6rem;
  }
}

@media (min-width: 1440px) {
  .margin-right-xl-1 {
    margin-right: 1rem;
  }
  .margin-right-xl-2 {
    margin-right: 2rem;
  }
  .margin-right-xl-3 {
    margin-right: 3rem;
  }
  .margin-right-xl-4 {
    margin-right: 4rem;
  }
  .margin-right-xl-5 {
    margin-right: 5rem;
  }
  .margin-right-xl-6 {
    margin-right: 6rem;
  }
}

.margin-center {
  margin: 0 auto;
}

.margin-left-auto {
  margin-left: auto;
}

.margin-right-auto {
  margin-right: auto;
}

@media (min-width: 576px) {
  .margin-xs-center {
    margin: 0 auto;
  }
  .margin-xs-left-auto {
    margin-left: auto;
  }
  .margin-xs-right-auto {
    margin-right: auto;
  }
}

@media (min-width: 771px) {
  .margin-sm-center {
    margin: 0 auto;
  }
  .margin-sm-left-auto {
    margin-left: auto;
  }
  .margin-sm-right-auto {
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .margin-md-center {
    margin: 0 auto;
  }
  .margin-md-left-auto {
    margin-left: auto;
  }
  .margin-md-right-auto {
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .margin-lg-center {
    margin: 0 auto;
  }
  .margin-lg-left-auto {
    margin-left: auto;
  }
  .margin-lg-right-auto {
    margin-right: auto;
  }
}

.margin-top-0 {
  margin-top: 0 !important;
}

@media (min-width: 576px) {
  .margin-top-xs-0 {
    margin-top: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-top-sm-0 {
    margin-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-top-md-0 {
    margin-top: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-top-lg-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-top-lg-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-top-md-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-top-sm-0 {
    margin-top: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-top-xs-0 {
    margin-top: 0 !important;
  }
}

.margin-right-0 {
  margin-right: 0 !important;
}

@media (min-width: 576px) {
  .margin-right-xs-0 {
    margin-right: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-right-sm-0 {
    margin-right: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-right-md-0 {
    margin-right: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-right-lg-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-right-lg-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-right-md-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-right-sm-0 {
    margin-right: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-right-xs-0 {
    margin-right: 0 !important;
  }
}

.margin-bottom-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 576px) {
  .margin-bottom-xs-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-bottom-sm-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-bottom-md-0 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-bottom-lg-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-bottom-lg-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-bottom-md-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-bottom-sm-0 {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-bottom-xs-0 {
    margin-bottom: 0 !important;
  }
}

.margin-left-0 {
  margin-left: 0 !important;
}

@media (min-width: 576px) {
  .margin-left-xs-0 {
    margin-left: 0 !important;
  }
}

@media (min-width: 771px) {
  .margin-left-sm-0 {
    margin-left: 0 !important;
  }
}

@media (min-width: 992px) {
  .margin-left-md-0 {
    margin-left: 0 !important;
  }
}

@media (min-width: 1200px) {
  .margin-left-lg-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 1199px) {
  .margin-bp-left-lg-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 991px) {
  .margin-bp-left-md-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 770px) {
  .margin-bp-left-sm-0 {
    margin-left: 0 !important;
  }
}

@media (max-width: 575px) {
  .margin-bp-left-xs-0 {
    margin-left: 0 !important;
  }
}

/* Padding block */
.padding-0 {
  padding: 0 !important;
}

@media (min-width: 576px) {
  .padding-xs-0 {
    padding: 0 !important;
  }
}

@media (min-width: 771px) {
  .padding-sm-0 {
    padding: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-md-0 {
    padding: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-lg-0 {
    padding: 0 !important;
  }
}

@media (min-width: 1440px) {
  .padding-xl-0 {
    padding: 0 !important;
  }
}

.padding-top-0 {
  padding-top: 0 !important;
}

.padding-top-xs-0 {
  padding-top: 0 !important;
}

@media (min-width: 771px) {
  .padding-top-sm-0 {
    padding-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-top-md-0 {
    padding-top: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-top-lg-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-top-lg-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-top-md-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-top-sm-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-top-xs-0 {
    padding-top: 0 !important;
  }
}

.padding-right-0 {
  padding-right: 0 !important;
}

.padding-right-xs-0 {
  padding-right: 0 !important;
}

@media (min-width: 771px) {
  .padding-right-sm-0 {
    padding-right: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-right-md-0 {
    padding-right: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-right-lg-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-right-lg-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-right-md-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-right-sm-0 {
    padding-right: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-right-xs-0 {
    padding-right: 0 !important;
  }
}

.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.padding-bottom-xs-0 {
  padding-bottom: 0 !important;
}

@media (min-width: 771px) {
  .padding-bottom-sm-0 {
    padding-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-bottom-md-0 {
    padding-bottom: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-bottom-lg-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-bottom-lg-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-bottom-md-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-bottom-sm-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-bottom-xs-0 {
    padding-bottom: 0 !important;
  }
}

.padding-left-0 {
  padding-left: 0 !important;
}

.padding-left-xs-0 {
  padding-left: 0 !important;
}

@media (min-width: 771px) {
  .padding-left-sm-0 {
    padding-left: 0 !important;
  }
}

@media (min-width: 992px) {
  .padding-left-md-0 {
    padding-left: 0 !important;
  }
}

@media (min-width: 1200px) {
  .padding-left-lg-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 1199px) {
  .padding-bp-left-lg-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 991px) {
  .padding-bp-left-md-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 770px) {
  .padding-bp-left-sm-0 {
    padding-left: 0 !important;
  }
}

@media (max-width: 575px) {
  .padding-bp-left-xs-0 {
    padding-left: 0 !important;
  }
}

/* Position helpers */
.pos-r {
  position: relative;
}

.pos-f {
  position: fixed;
}

.pos-s {
  position: static;
}

.pos-sticky {
  position: -webkit-sticky;
  position: sticky;
}

.pos-a {
  position: absolute;
}

.pos-auto {
  position: inherit;
}

/* Size helpers */
.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.h-vh-100 {
  height: 100vh;
}

.h-100 {
  height: 100%;
}

.h-50 {
  height: 50%;
}

.h-25 {
  height: 25%;
}

/* Text helpers */
.txt-r {
  text-align: right;
}

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

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

@media (min-width: 576px) {
  .txt-xs-c {
    text-align: center;
  }
  .txt-xs-l {
    text-align: left;
  }
  .txt-xs-r {
    text-align: right;
  }
}

@media (min-width: 771px) {
  .txt-sm-l {
    text-align: left;
  }
  .txt-sm-r {
    text-align: right;
  }
  .txt-sm-c {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .txt-md-l {
    text-align: left;
  }
  .txt-md-r {
    text-align: right;
  }
  .txt-md-c {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .txt-lg-r {
    text-align: right;
  }
  .txt-lg-l {
    text-align: left;
  }
  .txt-lg-c {
    text-align: center;
  }
}

.txt-upper {
  text-transform: uppercase;
}

.txt-lower {
  text-transform: lowercase;
}

.txt-italic {
  font-style: italic;
}

.txt-300 {
  font-weight: 300;
}

.txt-400 {
  font-weight: 400;
}

.txt-700 {
  font-weight: 700;
}

.txt-line {
  text-decoration: line-through;
}

.txt-underline {
  text-decoration: underline;
}

/* Z-index helpers */
.z-index--1 {
  z-index: -1;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

.z-index-100 {
  z-index: 100;
}

.z-index-1000 {
  z-index: 1000;
}

.z-index-10000 {
  z-index: 10000;
}

.z-index-100000 {
  z-index: 100000;
}

/* Opacity helpers */
.opacity-0 {
  opacity: 0;
}

.opacity-01 {
  opacity: 0.1;
}

.opacity-02 {
  opacity: 0.2;
}

.opacity-03 {
  opacity: 0.3;
}

.opacity-04 {
  opacity: 0.4;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-06 {
  opacity: 0.6;
}

.opacity-07 {
  opacity: 0.7;
}

.opacity-08 {
  opacity: 0.8;
}

.opacity-09 {
  opacity: 0.9;
}

.opacity-1 {
  opacity: 1;
}

/* Dots helpers */
.clip-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.clip-text--2 {
  -webkit-line-clamp: 2;
}

.clip-text--3 {
  -webkit-line-clamp: 3;
}

.clip-text--4 {
  -webkit-line-clamp: 4;
}

.dots {
  overflow: hidden;
}

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

* {
  -webkit-transition: color 0.15s, background 0.15s, border 0.15s, opacity 0.15s;
  -o-transition: color 0.15s, background 0.15s, border 0.15s, opacity 0.15s;
  transition: color 0.15s, background 0.15s, border 0.15s, opacity 0.15s;
}

*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

::-moz-selection {
  color: #fff;
  background-color: #003b7e;
}

::selection {
  color: #fff;
  background-color: #003b7e;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 0;
  background: #dadada;
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #003b7e;
}

::-webkit-scrollbar-thumb:hover {
  background: #002f65;
}

@-ms-viewport {
  width: device-width;
}

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

html {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  font-size: 100%;
}

body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  min-width: 310px;
  margin: 0;
  color: #000;
  background-color: #ffffff;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

em,
i,
.italic {
  font-style: italic;
}

strong,
.strong {
  font-weight: 700;
}

small,
.small {
  font-size: 12px;
  font-size: 0.75rem;
}

h1,
.alfa,
h2,
.beta,
h3,
.gamma,
h4,
.delta,
h5,
.epsilon,
h6,
.zeta {
  margin: 0;
  margin-bottom: 1.5rem;
  color: #003b7e;
  font-family: "Blinker", Arial, sans-serif;
  font-weight: 200;
  line-height: 1.2;
}

h1 a,
.alfa a,
h2 a,
.beta a,
h3 a,
.gamma a,
h4 a,
.delta a,
h5 a,
.epsilon a,
h6 a,
.zeta a {
  color: inherit;
}

h1,
.alfa {
  font-size: 36px;
  font-size: 2.25rem;
}

@media (min-width: 576px) {
  h1,
  .alfa {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

@media (min-width: 771px) {
  h1,
  .alfa {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

@media (min-width: 992px) {
  h1,
  .alfa {
    font-size: 70px;
    font-size: 4.375rem;
  }
}

h2,
.beta {
  font-size: 38px;
  font-size: 2.375rem;
}

@media (min-width: 576px) {
  h2,
  .beta {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

@media (min-width: 771px) {
  h2,
  .beta {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

h3,
.gamma {
  font-size: 24px;
  font-size: 1.5rem;
}

@media (min-width: 576px) {
  h3,
  .gamma {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media (min-width: 771px) {
  h3,
  .gamma {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

h4,
.delta {
  font-size: 22px;
  font-size: 1.375rem;
}

@media (min-width: 576px) {
  h4,
  .delta {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media (min-width: 771px) {
  h4,
  .delta {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

h5,
.epsilon {
  font-size: 24px;
  font-size: 1.5rem;
}

@media (min-width: 576px) {
  h5,
  .epsilon {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media (min-width: 771px) {
  h5,
  .epsilon {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

h6,
.zeta {
  font-size: 22px;
  font-size: 1.375rem;
}

@media (min-width: 576px) {
  h6,
  .zeta {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media (min-width: 771px) {
  h6,
  .zeta {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.h--font-light h1,
.h--font-light .alfa,
.h--font-light h2,
.h--font-light .beta,
.h--font-light h3,
.h--font-light .gamma,
.h--font-light h4,
.h--font-light .delta,
.h--font-light h5,
.h--font-light .epsilon,
.h--font-light h6,
.h--font-light .zeta {
  font-weight: 300;
}

.h--font-regular h1,
.h--font-regular .alfa,
.h--font-regular h2,
.h--font-regular .beta,
.h--font-regular h3,
.h--font-regular .gamma,
.h--font-regular h4,
.h--font-regular .delta,
.h--font-regular h5,
.h--font-regular .epsilon,
.h--font-regular h6,
.h--font-regular .zeta {
  font-weight: 400;
}

.h--font-semibold h1,
.h--font-semibold .alfa,
.h--font-semibold h2,
.h--font-semibold .beta,
.h--font-semibold h3,
.h--font-semibold .gamma,
.h--font-semibold h4,
.h--font-semibold .delta,
.h--font-semibold h5,
.h--font-semibold .epsilon,
.h--font-semibold h6,
.h--font-semibold .zeta {
  font-weight: 600;
}

.h--font-semibold h1,
.h--font-semibold .alfa,
.h--font-semibold h2,
.h--font-semibold .beta,
.h--font-semibold h3,
.h--font-semibold .gamma,
.h--font-semibold h4,
.h--font-semibold .delta,
.h--font-semibold h5,
.h--font-semibold .epsilon,
.h--font-semibold h6,
.h--font-semibold .zeta {
  font-weight: 600;
}

.h--font-black h1,
.h--font-black .alfa,
.h--font-black h2,
.h--font-black .beta,
.h--font-black h3,
.h--font-black .gamma,
.h--font-black h4,
.h--font-black .delta,
.h--font-black h5,
.h--font-black .epsilon,
.h--font-black h6,
.h--font-black .zeta {
  font-weight: 900;
}

.h--font-primary h1,
.h--font-primary .alfa,
.h--font-primary h2,
.h--font-primary .beta,
.h--font-primary h3,
.h--font-primary .gamma,
.h--font-primary h4,
.h--font-primary .delta,
.h--font-primary h5,
.h--font-primary .epsilon,
.h--font-primary h6,
.h--font-primary .zeta {
  font-family: "Open Sans", Arial, sans-serif;
}

.h--font-third h1,
.h--font-third .alfa,
.h--font-third h2,
.h--font-third .beta,
.h--font-third h3,
.h--font-third .gamma,
.h--font-third h4,
.h--font-third .delta,
.h--font-third h5,
.h--font-third .epsilon,
.h--font-third h6,
.h--font-third .zeta {
  font-weight: 700;
  font-family: "Roboto", Arial, sans-serif;
}

.h--text-upper h1,
.h--text-upper .alfa,
.h--text-upper h2,
.h--text-upper .beta,
.h--text-upper h3,
.h--text-upper .gamma,
.h--text-upper h4,
.h--text-upper .delta,
.h--text-upper h5,
.h--text-upper .epsilon,
.h--text-upper h6,
.h--text-upper .zeta {
  text-transform: uppercase;
}

.h--line-08 h1,
.h--line-08 .alfa,
.h--line-08 h2,
.h--line-08 .beta,
.h--line-08 h3,
.h--line-08 .gamma,
.h--line-08 h4,
.h--line-08 .delta,
.h--line-08 h5,
.h--line-08 .epsilon,
.h--line-08 h6,
.h--line-08 .zeta {
  line-height: 0.8;
}

.h--line-1 h1,
.h--line-1 .alfa,
.h--line-1 h2,
.h--line-1 .beta,
.h--line-1 h3,
.h--line-1 .gamma,
.h--line-1 h4,
.h--line-1 .delta,
.h--line-1 h5,
.h--line-1 .epsilon,
.h--line-1 h6,
.h--line-1 .zeta {
  line-height: 1;
}

.h--line-1-2 h1,
.h--line-1-2 .alfa,
.h--line-1-2 h2,
.h--line-1-2 .beta,
.h--line-1-2 h3,
.h--line-1-2 .gamma,
.h--line-1-2 h4,
.h--line-1-2 .delta,
.h--line-1-2 h5,
.h--line-1-2 .epsilon,
.h--line-1-2 h6,
.h--line-1-2 .zeta {
  line-height: 1.2;
}

.h--line-1-4 h1,
.h--line-1-4 .alfa,
.h--line-1-4 h2,
.h--line-1-4 .beta,
.h--line-1-4 h3,
.h--line-1-4 .gamma,
.h--line-1-4 h4,
.h--line-1-4 .delta,
.h--line-1-4 h5,
.h--line-1-4 .epsilon,
.h--line-1-4 h6,
.h--line-1-4 .zeta {
  line-height: 1.4;
}

.h--line-1-5 h1,
.h--line-1-5 .alfa,
.h--line-1-5 h2,
.h--line-1-5 .beta,
.h--line-1-5 h3,
.h--line-1-5 .gamma,
.h--line-1-5 h4,
.h--line-1-5 .delta,
.h--line-1-5 h5,
.h--line-1-5 .epsilon,
.h--line-1-5 h6,
.h--line-1-5 .zeta {
  line-height: 1.5;
}

.h--line-1-6 h1,
.h--line-1-6 .alfa,
.h--line-1-6 h2,
.h--line-1-6 .beta,
.h--line-1-6 h3,
.h--line-1-6 .gamma,
.h--line-1-6 h4,
.h--line-1-6 .delta,
.h--line-1-6 h5,
.h--line-1-6 .epsilon,
.h--line-1-6 h6,
.h--line-1-6 .zeta {
  line-height: 1.6;
}

.h--line-1-8 h1,
.h--line-1-8 .alfa,
.h--line-1-8 h2,
.h--line-1-8 .beta,
.h--line-1-8 h3,
.h--line-1-8 .gamma,
.h--line-1-8 h4,
.h--line-1-8 .delta,
.h--line-1-8 h5,
.h--line-1-8 .epsilon,
.h--line-1-8 h6,
.h--line-1-8 .zeta {
  line-height: 1.8;
}

.h--line-2 h1,
.h--line-2 .alfa,
.h--line-2 h2,
.h--line-2 .beta,
.h--line-2 h3,
.h--line-2 .gamma,
.h--line-2 h4,
.h--line-2 .delta,
.h--line-2 h5,
.h--line-2 .epsilon,
.h--line-2 h6,
.h--line-2 .zeta {
  line-height: 2;
}

.h--line-2-2 h1,
.h--line-2-2 .alfa,
.h--line-2-2 h2,
.h--line-2-2 .beta,
.h--line-2-2 h3,
.h--line-2-2 .gamma,
.h--line-2-2 h4,
.h--line-2-2 .delta,
.h--line-2-2 h5,
.h--line-2-2 .epsilon,
.h--line-2-2 h6,
.h--line-2-2 .zeta {
  line-height: 2.2;
}

.h--line-2-5 h1,
.h--line-2-5 .alfa,
.h--line-2-5 h2,
.h--line-2-5 .beta,
.h--line-2-5 h3,
.h--line-2-5 .gamma,
.h--line-2-5 h4,
.h--line-2-5 .delta,
.h--line-2-5 h5,
.h--line-2-5 .epsilon,
.h--line-2-5 h6,
.h--line-2-5 .zeta {
  line-height: 2.5;
}

@media (min-width: 576px) {
  .h--line-xs-1 h1,
  .h--line-xs-1 .alfa,
  .h--line-xs-1 h2,
  .h--line-xs-1 .beta,
  .h--line-xs-1 h3,
  .h--line-xs-1 .gamma,
  .h--line-xs-1 h4,
  .h--line-xs-1 .delta,
  .h--line-xs-1 h5,
  .h--line-xs-1 .epsilon,
  .h--line-xs-1 h6,
  .h--line-xs-1 .zeta {
    line-height: 1;
  }
  .h--line-xs-1-2 h1,
  .h--line-xs-1-2 .alfa,
  .h--line-xs-1-2 h2,
  .h--line-xs-1-2 .beta,
  .h--line-xs-1-2 h3,
  .h--line-xs-1-2 .gamma,
  .h--line-xs-1-2 h4,
  .h--line-xs-1-2 .delta,
  .h--line-xs-1-2 h5,
  .h--line-xs-1-2 .epsilon,
  .h--line-xs-1-2 h6,
  .h--line-xs-1-2 .zeta {
    line-height: 1.2;
  }
  .h--line-xs-1-4 h1,
  .h--line-xs-1-4 .alfa,
  .h--line-xs-1-4 h2,
  .h--line-xs-1-4 .beta,
  .h--line-xs-1-4 h3,
  .h--line-xs-1-4 .gamma,
  .h--line-xs-1-4 h4,
  .h--line-xs-1-4 .delta,
  .h--line-xs-1-4 h5,
  .h--line-xs-1-4 .epsilon,
  .h--line-xs-1-4 h6,
  .h--line-xs-1-4 .zeta {
    line-height: 1.4;
  }
  .h--line-xs-1-6 h1,
  .h--line-xs-1-6 .alfa,
  .h--line-xs-1-6 h2,
  .h--line-xs-1-6 .beta,
  .h--line-xs-1-6 h3,
  .h--line-xs-1-6 .gamma,
  .h--line-xs-1-6 h4,
  .h--line-xs-1-6 .delta,
  .h--line-xs-1-6 h5,
  .h--line-xs-1-6 .epsilon,
  .h--line-xs-1-6 h6,
  .h--line-xs-1-6 .zeta {
    line-height: 1.6;
  }
}

@media (min-width: 771px) {
  .h--line-sm-1 h1,
  .h--line-sm-1 .alfa,
  .h--line-sm-1 h2,
  .h--line-sm-1 .beta,
  .h--line-sm-1 h3,
  .h--line-sm-1 .gamma,
  .h--line-sm-1 h4,
  .h--line-sm-1 .delta,
  .h--line-sm-1 h5,
  .h--line-sm-1 .epsilon,
  .h--line-sm-1 h6,
  .h--line-sm-1 .zeta {
    line-height: 1;
  }
  .h--line-sm-1-2 h1,
  .h--line-sm-1-2 .alfa,
  .h--line-sm-1-2 h2,
  .h--line-sm-1-2 .beta,
  .h--line-sm-1-2 h3,
  .h--line-sm-1-2 .gamma,
  .h--line-sm-1-2 h4,
  .h--line-sm-1-2 .delta,
  .h--line-sm-1-2 h5,
  .h--line-sm-1-2 .epsilon,
  .h--line-sm-1-2 h6,
  .h--line-sm-1-2 .zeta {
    line-height: 1.2;
  }
  .h--line-sm-1-4 h1,
  .h--line-sm-1-4 .alfa,
  .h--line-sm-1-4 h2,
  .h--line-sm-1-4 .beta,
  .h--line-sm-1-4 h3,
  .h--line-sm-1-4 .gamma,
  .h--line-sm-1-4 h4,
  .h--line-sm-1-4 .delta,
  .h--line-sm-1-4 h5,
  .h--line-sm-1-4 .epsilon,
  .h--line-sm-1-4 h6,
  .h--line-sm-1-4 .zeta {
    line-height: 1.4;
  }
  .h--line-sm-1-6 h1,
  .h--line-sm-1-6 .alfa,
  .h--line-sm-1-6 h2,
  .h--line-sm-1-6 .beta,
  .h--line-sm-1-6 h3,
  .h--line-sm-1-6 .gamma,
  .h--line-sm-1-6 h4,
  .h--line-sm-1-6 .delta,
  .h--line-sm-1-6 h5,
  .h--line-sm-1-6 .epsilon,
  .h--line-sm-1-6 h6,
  .h--line-sm-1-6 .zeta {
    line-height: 1.6;
  }
}

@media (min-width: 992px) {
  .h--line-md-1 h1,
  .h--line-md-1 .alfa,
  .h--line-md-1 h2,
  .h--line-md-1 .beta,
  .h--line-md-1 h3,
  .h--line-md-1 .gamma,
  .h--line-md-1 h4,
  .h--line-md-1 .delta,
  .h--line-md-1 h5,
  .h--line-md-1 .epsilon,
  .h--line-md-1 h6,
  .h--line-md-1 .zeta {
    line-height: 1;
  }
  .h--line-md-1-2 h1,
  .h--line-md-1-2 .alfa,
  .h--line-md-1-2 h2,
  .h--line-md-1-2 .beta,
  .h--line-md-1-2 h3,
  .h--line-md-1-2 .gamma,
  .h--line-md-1-2 h4,
  .h--line-md-1-2 .delta,
  .h--line-md-1-2 h5,
  .h--line-md-1-2 .epsilon,
  .h--line-md-1-2 h6,
  .h--line-md-1-2 .zeta {
    line-height: 1.2;
  }
  .h--line-md-1-4 h1,
  .h--line-md-1-4 .alfa,
  .h--line-md-1-4 h2,
  .h--line-md-1-4 .beta,
  .h--line-md-1-4 h3,
  .h--line-md-1-4 .gamma,
  .h--line-md-1-4 h4,
  .h--line-md-1-4 .delta,
  .h--line-md-1-4 h5,
  .h--line-md-1-4 .epsilon,
  .h--line-md-1-4 h6,
  .h--line-md-1-4 .zeta {
    line-height: 1.4;
  }
  .h--line-md-1-6 h1,
  .h--line-md-1-6 .alfa,
  .h--line-md-1-6 h2,
  .h--line-md-1-6 .beta,
  .h--line-md-1-6 h3,
  .h--line-md-1-6 .gamma,
  .h--line-md-1-6 h4,
  .h--line-md-1-6 .delta,
  .h--line-md-1-6 h5,
  .h--line-md-1-6 .epsilon,
  .h--line-md-1-6 h6,
  .h--line-md-1-6 .zeta {
    line-height: 1.6;
  }
}

.h--margin-0 .alfa,
.h--margin-0 .beta,
.h--margin-0 .gamma,
.h--margin-0 .delta,
.h--margin-0 .epsilon,
.h--margin-0 .zeta,
.h--margin-0 h1,
.h--margin-0 h2,
.h--margin-0 h3,
.h--margin-0 h4,
.h--margin-0 h5,
.h--margin-0 h6 {
  margin-bottom: 0;
}

.h--margin-01 .alfa,
.h--margin-01 .beta,
.h--margin-01 .gamma,
.h--margin-01 .delta,
.h--margin-01 .epsilon,
.h--margin-01 .zeta,
.h--margin-01 h1,
.h--margin-01 h2,
.h--margin-01 h3,
.h--margin-01 h4,
.h--margin-01 h5,
.h--margin-01 h6 {
  margin-bottom: 0.1rem;
}

.h--margin-02 .alfa,
.h--margin-02 .beta,
.h--margin-02 .gamma,
.h--margin-02 .delta,
.h--margin-02 .epsilon,
.h--margin-02 .zeta,
.h--margin-02 h1,
.h--margin-02 h2,
.h--margin-02 h3,
.h--margin-02 h4,
.h--margin-02 h5,
.h--margin-02 h6 {
  margin-bottom: 0.2rem;
}

.h--margin-03 .alfa,
.h--margin-03 .beta,
.h--margin-03 .gamma,
.h--margin-03 .delta,
.h--margin-03 .epsilon,
.h--margin-03 .zeta,
.h--margin-03 h1,
.h--margin-03 h2,
.h--margin-03 h3,
.h--margin-03 h4,
.h--margin-03 h5,
.h--margin-03 h6 {
  margin-bottom: 0.3rem;
}

.h--margin-04 .alfa,
.h--margin-04 .beta,
.h--margin-04 .gamma,
.h--margin-04 .delta,
.h--margin-04 .epsilon,
.h--margin-04 .zeta,
.h--margin-04 h1,
.h--margin-04 h2,
.h--margin-04 h3,
.h--margin-04 h4,
.h--margin-04 h5,
.h--margin-04 h6 {
  margin-bottom: 0.4rem;
}

.h--margin-05 .alfa,
.h--margin-05 .beta,
.h--margin-05 .gamma,
.h--margin-05 .delta,
.h--margin-05 .epsilon,
.h--margin-05 .zeta,
.h--margin-05 h1,
.h--margin-05 h2,
.h--margin-05 h3,
.h--margin-05 h4,
.h--margin-05 h5,
.h--margin-05 h6 {
  margin-bottom: 0.5rem;
}

.h--margin-06 .alfa,
.h--margin-06 .beta,
.h--margin-06 .gamma,
.h--margin-06 .delta,
.h--margin-06 .epsilon,
.h--margin-06 .zeta,
.h--margin-06 h1,
.h--margin-06 h2,
.h--margin-06 h3,
.h--margin-06 h4,
.h--margin-06 h5,
.h--margin-06 h6 {
  margin-bottom: 0.6rem;
}

.h--margin-07 .alfa,
.h--margin-07 .beta,
.h--margin-07 .gamma,
.h--margin-07 .delta,
.h--margin-07 .epsilon,
.h--margin-07 .zeta,
.h--margin-07 h1,
.h--margin-07 h2,
.h--margin-07 h3,
.h--margin-07 h4,
.h--margin-07 h5,
.h--margin-07 h6 {
  margin-bottom: 0.7rem;
}

.h--margin-08 .alfa,
.h--margin-08 .beta,
.h--margin-08 .gamma,
.h--margin-08 .delta,
.h--margin-08 .epsilon,
.h--margin-08 .zeta,
.h--margin-08 h1,
.h--margin-08 h2,
.h--margin-08 h3,
.h--margin-08 h4,
.h--margin-08 h5,
.h--margin-08 h6 {
  margin-bottom: 0.8rem;
}

.h--margin-09 .alfa,
.h--margin-09 .beta,
.h--margin-09 .gamma,
.h--margin-09 .delta,
.h--margin-09 .epsilon,
.h--margin-09 .zeta,
.h--margin-09 h1,
.h--margin-09 h2,
.h--margin-09 h3,
.h--margin-09 h4,
.h--margin-09 h5,
.h--margin-09 h6 {
  margin-bottom: 0.9rem;
}

.h--margin-1 .alfa,
.h--margin-1 .beta,
.h--margin-1 .gamma,
.h--margin-1 .delta,
.h--margin-1 .epsilon,
.h--margin-1 .zeta,
.h--margin-1 h1,
.h--margin-1 h2,
.h--margin-1 h3,
.h--margin-1 h4,
.h--margin-1 h5,
.h--margin-1 h6 {
  margin-bottom: 1rem;
}

.h--margin-1-2 .alfa,
.h--margin-1-2 .beta,
.h--margin-1-2 .gamma,
.h--margin-1-2 .delta,
.h--margin-1-2 .epsilon,
.h--margin-1-2 .zeta,
.h--margin-1-2 h1,
.h--margin-1-2 h2,
.h--margin-1-2 h3,
.h--margin-1-2 h4,
.h--margin-1-2 h5,
.h--margin-1-2 h6 {
  margin-bottom: 1.2rem;
}

.h--margin-1-5 .alfa,
.h--margin-1-5 .beta,
.h--margin-1-5 .gamma,
.h--margin-1-5 .delta,
.h--margin-1-5 .epsilon,
.h--margin-1-5 .zeta,
.h--margin-1-5 h1,
.h--margin-1-5 h2,
.h--margin-1-5 h3,
.h--margin-1-5 h4,
.h--margin-1-5 h5,
.h--margin-1-5 h6 {
  margin-bottom: 1.5rem;
}

.h--margin-2 .alfa,
.h--margin-2 .beta,
.h--margin-2 .gamma,
.h--margin-2 .delta,
.h--margin-2 .epsilon,
.h--margin-2 .zeta,
.h--margin-2 h1,
.h--margin-2 h2,
.h--margin-2 h3,
.h--margin-2 h4,
.h--margin-2 h5,
.h--margin-2 h6 {
  margin-bottom: 2rem;
}

.h--margin-2-5 .alfa,
.h--margin-2-5 .beta,
.h--margin-2-5 .gamma,
.h--margin-2-5 .delta,
.h--margin-2-5 .epsilon,
.h--margin-2-5 .zeta,
.h--margin-2-5 h1,
.h--margin-2-5 h2,
.h--margin-2-5 h3,
.h--margin-2-5 h4,
.h--margin-2-5 h5,
.h--margin-2-5 h6 {
  margin-bottom: 2.5rem;
}

.h--margin-3 .alfa,
.h--margin-3 .beta,
.h--margin-3 .gamma,
.h--margin-3 .delta,
.h--margin-3 .epsilon,
.h--margin-3 .zeta,
.h--margin-3 h1,
.h--margin-3 h2,
.h--margin-3 h3,
.h--margin-3 h4,
.h--margin-3 h5,
.h--margin-3 h6 {
  margin-bottom: 3rem;
}

.h--divider .alfa,
.h--divider .beta,
.h--divider .gamma,
.h--divider .delta,
.h--divider .epsilon,
.h--divider .zeta,
.h--divider h1,
.h--divider h2,
.h--divider h3,
.h--divider h4,
.h--divider h5,
.h--divider h6 {
  display: block;
  position: relative;
}

.h--divider .alfa:after,
.h--divider .beta:after,
.h--divider .gamma:after,
.h--divider .delta:after,
.h--divider .epsilon:after,
.h--divider .zeta:after,
.h--divider h1:after,
.h--divider h2:after,
.h--divider h3:after,
.h--divider h4:after,
.h--divider h5:after,
.h--divider h6:after {
  content: '';
  position: relative;
  display: block;
  margin-top: 1.25rem;
  width: 50px;
  height: 2px;
  background-color: #d20000;
}

.h--divider-center .alfa:after,
.h--divider-center .beta:after,
.h--divider-center .gamma:after,
.h--divider-center .delta:after,
.h--divider-center .epsilon:after,
.h--divider-center .zeta:after,
.h--divider-center h1:after,
.h--divider-center h2:after,
.h--divider-center h3:after,
.h--divider-center h4:after,
.h--divider-center h5:after,
.h--divider-center h6:after {
  margin: 0 auto;
  margin-top: 1.25rem;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  outline: none;
  font-family: "Open Sans", Arial, sans-serif;
}

a:focus,
a:active,
a:visited {
  outline: none;
}

.a-hover:hover, .a-hover:focus {
  text-decoration: underline;
}

.a-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 0.6rem 0;
}

.a-link__text {
  color: #003b7e;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.a-link__text--black {
  color: #003b7e;
}

.a-link__text--white {
  color: #ffffff;
}

.a-link__text--purple {
  color: #003b7e;
}

.a-link__text--size-12 {
  font-size: 12px;
  font-size: 0.75rem;
}

.a-link__text--size-14 {
  font-size: 14px;
  font-size: 0.875rem;
}

.a-link__text--size-16 {
  font-size: 16px;
  font-size: 1rem;
}

.a-link__text--size-18 {
  font-size: 18px;
  font-size: 1.125rem;
}

.a-link__icon {
  display: inline-block;
  vertical-align: middle;
}

.a-link--hover-underline {
  position: relative;
}

.a-link--hover-underline:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  -webkit-transition: width 250ms ease-out;
  -o-transition: width 250ms ease-out;
  transition: width 250ms ease-out;
  background-color: currentColor;
}

.a-link--hover-underline:hover:after {
  width: 100%;
}

.a-link--hover-block .a-link--hover-underline {
  position: relative;
}

.a-link--hover-block .a-link--hover-underline:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  -webkit-transition: width 250ms ease-out;
  -o-transition: width 250ms ease-out;
  transition: width 250ms ease-out;
  background-color: currentColor;
}

.a-link--hover-block:hover .a-link--hover-underline:after {
  width: 100%;
}

p {
  display: block;
  margin-top: 0;
  margin-bottom: 2rem;
  color: #000000;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
  -o-transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
  transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
  font-size: 16px;
  font-size: 1rem;
}

p a {
  color: currentColor;
}

.p--size-12 p {
  font-size: 12px;
  font-size: 0.75rem;
}

.p--size-14 p {
  font-size: 14px;
  font-size: 0.875rem;
}

.p--size-17 p {
  font-size: 17px;
  font-size: 1.0625rem;
}

.p--size-18 p {
  font-size: 18px;
  font-size: 1.125rem;
}

.p--size-20 p {
  font-size: 20px;
  font-size: 1.25rem;
}

.p--line-1 p {
  line-height: 1;
}

.p--line-1-2 p {
  line-height: 1.2;
}

.p--line-1-4 p {
  line-height: 1.4;
}

.p--line-1-5 p {
  line-height: 1.5;
}

.p--line-1-6 p {
  line-height: 1.6;
}

.p--line-1-8 p {
  line-height: 1.8;
}

.p--line-2 p {
  line-height: 2;
}

.p--margin-0 p {
  margin-bottom: 0;
}

.p--margin-01 p {
  margin-bottom: 0.1rem;
}

.p--margin-02 p {
  margin-bottom: 0.2rem;
}

.p--margin-03 p {
  margin-bottom: 0.3rem;
}

.p--margin-04 p {
  margin-bottom: 0.4rem;
}

.p--margin-05 p {
  margin-bottom: 0.5rem;
}

.p--margin-06 p {
  margin-bottom: 0.6rem;
}

.p--margin-07 p {
  margin-bottom: 0.7rem;
}

.p--margin-08 p {
  margin-bottom: 0.8rem;
}

.p--margin-09 p {
  margin-bottom: 0.9rem;
}

.p--margin-1 p {
  margin-bottom: 1rem;
}

.p--margin-1-2 p {
  margin-bottom: 1.2rem;
}

.p--margin-1-5 p {
  margin-bottom: 1.5rem;
}

.p--margin-2 p {
  margin-bottom: 2rem;
}

.p--margin-2-5 p {
  margin-bottom: 2.5rem;
}

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

ul.list-style,
ol.list-style {
  margin-bottom: 0;
}

ul.list-style li,
ol.list-style li {
  position: relative;
  display: block;
  margin-bottom: 18px;
  padding-left: 25px;
  color: #000000;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
}

ul.list-style a,
ol.list-style a {
  text-decoration: underline;
}

ul.list-style a:focus, ul.list-style a:hover,
ol.list-style a:focus,
ol.list-style a:hover {
  text-decoration: underline;
}

ul.list-style li:before {
  content: '';
  position: absolute;
  top: 9px;
  left: 3px;
  display: block;
  width: 6px;
  height: 6px;
  background-color: #d20000;
  border-radius: 100%;
}

ul.list-style--checked li {
  padding-left: 35px;
}

ul.list-style--checked li:before {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  display: block;
  width: 24px;
  height: 24px;
  background-color: #72e19a;
}

ul.list-style--checked li:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 3px;
  width: 8px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

ol.list-style {
  list-style-position: inside;
  counter-reset: item;
}

ol.list-style li:before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: #000000;
  line-height: 1.4;
  font-size: 16px;
  font-size: 1rem;
}

.swiper-arrow-group {
  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;
  width: 80px;
  position: absolute;
  left: 50%;
  bottom: -50px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.swiper-arrow {
  outline: none;
}

.swiper-arrow.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.swiper-arrow-next {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.swiper-arrow-prev {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.swiper-arrow-content {
  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;
  height: 40px;
  width: 40px;
  cursor: pointer;
}

.swiper-arrow-content:focus svg, .swiper-arrow-content:hover svg {
  fill: #003b7e;
}

.swiper-arrow-content svg {
  fill: #003b7e;
  font-size: 28px;
  font-size: 1.75rem;
}

.swiper-pagination {
  position: relative;
  width: 100%;
  margin-top: 3rem;
}

.swiper-pagination-bullet {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  border-radius: 0;
  opacity: 1;
  background: transparent;
}

.swiper-pagination-bullet:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
  border: 2px solid #ffffff;
  border-radius: 100%;
}

.swiper-pagination-bullet-active:after {
  background-color: #ffcf7b;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  color: #fff;
  border-color: #d20000;
  background: #d20000;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.flatpickr-month {
  overflow: visible;
}

.flatpickr-calendar.hasTime {
  width: 260px;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  border-top: 0;
}

.flatpickr-time {
  line-height: 50px;
  max-height: 50px;
}

.flatpickr-time .numInputWrapper {
  height: 50px;
}

.numInputWrapper span {
  width: 30px;
  padding: 0 5px 0 10px;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid #003057;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #003057;
}

.select2-container {
  z-index: 9;
}

.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow:after,
.select2-container.select2-container--open .select2-selection--multiple .select2-selection__arrow:after,
.select2-container .select2-container--focus .select2-selection--single .select2-selection__arrow:after,
.select2-container .select2-container--focus .select2-selection--multiple .select2-selection__arrow:after {
  background-image: url("../images/icons/chevron-up.svg");
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 0;
}

.select2-container .select2-search--inline {
  display: block;
  width: 100%;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  width: 100%;
  width: 100%;
  height: 70px;
  padding: 0 60px 1px 20px;
  padding-bottom: 1px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0px;
  color: #978d86;
  border: 1px solid #cac6c3;
  outline: none !important;
  background-color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__rendered,
.select2-container .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
  line-height: 70px;
  color: #978d86;
}

.select2-container .select2-selection--single .select2-selection__placeholder,
.select2-container .select2-selection--multiple .select2-selection__placeholder {
  color: #978d86;
}

.select2-container .select2-selection--single .select2-selection__arrow,
.select2-container .select2-selection--multiple .select2-selection__arrow {
  position: absolute;
  top: 0;
  right: 0px;
  width: 60px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.select2-container .select2-selection--single .select2-selection__arrow:after,
.select2-container .select2-selection--multiple .select2-selection__arrow:after {
  content: '' !important;
  width: 16px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/icons/chevron-down.svg");
}

.select2-container .select2-selection--single .select2-selection__arrow b,
.select2-container .select2-selection--multiple .select2-selection__arrow b {
  display: none;
}

.select2-container .select2-container--focus .select2-selection--single .select2-selection__arrow:after,
.select2-container.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  content: '\e91a';
}

.select2-dropdown {
  border: 1px solid #cac6c3;
  border-radius: 0;
  background-color: white;
}

.select2-dropdown .select2-results__options--nested .select2-results__option {
  padding: 0 25px;
}

.select2-dropdown .select2-results__options {
  max-height: 220px !important;
}

.select2-dropdown .select2-results__options .select2-results__option[aria-selected='true'] {
  color: #000000;
  background-color: #f5f5f5;
}

.select2-dropdown .select2-results__options .select2-results__option {
  padding: 12px 25px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
  color: #978d86;
  font-size: 17px;
  font-size: 1.0625rem;
}

.select2-dropdown .select2-results__options .select2-results__option--highlighted {
  color: #978d86;
  background-color: #f5f5f5;
}

.select-medium-dropdown.select2-dropdown .select2-results__options .select2-results__option {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  padding: 18px 15px;
  font-size: 14px;
  font-size: 0.875rem;
}

/* Content */
section {
  position: relative;
  padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
  section {
    padding: 3rem 0 3rem;
  }
}

.padding-style-1 {
  padding: 1rem 0 1rem;
}

@media (min-width: 771px) {
  .padding-style-1 {
    padding: 1rem 0 1rem;
  }
}

.padding-style-2 {
  padding: 2rem 0 2rem;
}

@media (min-width: 771px) {
  .padding-style-2 {
    padding: 2rem 0 2rem;
  }
}

.padding-style-3 {
  padding: 2rem 0 2rem;
}

@media (min-width: 771px) {
  .padding-style-3 {
    padding: 3rem 0 3rem;
  }
}

.padding-style-4 {
  padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
  .padding-style-4 {
    padding: 4rem 0 4rem;
  }
}

.padding-style-4-5 {
  padding: 3rem 0 5rem;
}

@media (min-width: 771px) {
  .padding-style-4-5 {
    padding: 4rem 0 5rem;
  }
}

.padding-style-5 {
  padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
  .padding-style-5 {
    padding: 5rem 0 5rem;
  }
}

.padding-style-5-6 {
  padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
  .padding-style-5-6 {
    padding: 5rem 0 6rem;
  }
}

.padding-style-6 {
  padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
  .padding-style-6 {
    padding: 6rem 0 6rem;
  }
}

.padding-style-6-4 {
  padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
  .padding-style-6-4 {
    padding: 6rem 0 4rem;
  }
}

.padding-style-6-9 {
  padding: 4rem 0 4rem;
}

@media (min-width: 771px) {
  .padding-style-6-9 {
    padding: 8rem 0 9rem;
  }
}

@media (min-width: 1200px) {
  .padding-style-6-9 {
    padding: 14rem 0 9rem;
  }
}

.padding-style-6-9-ext {
  padding: 3rem 0 3rem;
}

@media (min-width: 576px) {
  .padding-style-6-9-ext {
    padding: 0 0 4rem;
  }
}

@media (min-width: 992px) {
  .padding-style-6-9-ext {
    padding: 4rem 0 6rem;
  }
}

.padding-style-6-9-ext-1 {
  padding: 3rem 0 3rem;
}

@media (min-width: 576px) {
  .padding-style-6-9-ext-1 {
    padding: 4rem 0 4rem;
  }
}

@media (min-width: 992px) {
  .padding-style-6-9-ext-1 {
    padding: 6rem 0 4rem;
  }
}

.padding-style-6-3 {
  padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
  .padding-style-6-3 {
    padding: 6rem 0 3rem;
  }
}

.padding-content-1 {
  padding: 1rem 1rem;
}

.padding-content-2 {
  padding: 2rem 2rem;
}

.padding-content-3 {
  padding: 3rem 3rem;
}

.padding-content-4 {
  padding: 4rem 4rem;
}

.padding-content-5 {
  padding: 5rem 5rem;
}

@media (min-width: 771px) {
  .padding-content-2 {
    padding: 2rem 2rem;
  }
}

.content-width-200 {
  max-width: 200px;
}

.content-width-250 {
  max-width: 250px;
}

.content-width-300 {
  max-width: 300px;
}

.content-width-400 {
  max-width: 400px;
}

.content-width-500 {
  max-width: 500px;
}

.content-width-600 {
  max-width: 600px;
}

.content-width-900 {
  max-width: 900px;
}

@media (min-width: 771px) {
  .content-width-sm-350 {
    max-width: 350px;
  }
}

main {
  position: relative;
  display: block;
  padding-top: 60px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

@media (min-width: 992px) {
  main {
    padding-top: 0;
  }
}

.container-full {
  margin: 0 auto;
}

.container-small,
.container-normal,
.container-header,
.container-large {
  margin: 0 auto;
  padding: 0 15px;
}

.container-small {
  width: 100%;
}

@media (min-width: 771px) {
  .container-small {
    width: 730px;
  }
}

@media (min-width: 992px) {
  .container-small {
    width: 920px;
  }
}

@media (min-width: 1200px) {
  .container-small {
    width: 1000px;
  }
}

@media (min-width: 1440px) {
  .container-small {
    width: 1000px;
  }
}

.container-normal {
  width: 100%;
}

@media (min-width: 771px) {
  .container-normal {
    width: 730px;
  }
}

@media (min-width: 992px) {
  .container-normal {
    width: 950px;
  }
}

@media (min-width: 1200px) {
  .container-normal {
    width: 1130px;
  }
}

@media (min-width: 1440px) {
  .container-normal {
    width: 1170px;
  }
}

.container-large {
  width: 100%;
}

@media (min-width: 771px) {
  .container-large {
    width: 730px;
  }
}

@media (min-width: 992px) {
  .container-large {
    width: 950px;
  }
}

@media (min-width: 1200px) {
  .container-large {
    width: 1140px;
  }
}

@media (min-width: 1440px) {
  .container-large {
    width: 1360px;
  }
}

@media (min-width: 1600px) {
  .container-large {
    width: 1460px;
  }
}

.container-header {
  width: 100%;
}

@media (min-width: 771px) {
  .container-header {
    width: 730px;
  }
}

@media (min-width: 992px) {
  .container-header {
    width: 950px;
  }
}

@media (min-width: 1200px) {
  .container-header {
    width: 1140px;
  }
}

@media (min-width: 1440px) {
  .container-header {
    width: 1360px;
  }
}

@media (min-width: 1600px) {
  .container-header {
    width: 1520px;
  }
}

@media (min-width: 1800px) {
  .container-header {
    width: 1660px;
  }
}

/* Footer */
.footer {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer-top {
  padding-top: 3.125rem;
  padding-bottom: 1.875rem;
}

.footer-bottom {
  padding-top: 1.25rem;
  padding-bottom: 3.125rem;
}

.footer-bottom__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
}

@media screen and (max-width: 1199px) {
  .footer-bottom__right {
    flex-direction: column;
  }
}

@media screen and (min-width: 1200px) {
  .footer-bottom__right img {
    transform: translateX(-10%);
  }
}

.footer__author,
.footer__copy {
  display: block;
  color: #000000;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 771px) {
  .footer__author,
  .footer__copy {
    font-size: 16px;
    font-size: 1rem;
    color: #ffffff;
  }
}

.footer__author {
  color: #000000;
  flex: none;
}

.footer__author a {
  text-decoration: underline;
}

.footer__author a:hover {
  color: #d20000;
}

.footer-contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 770px) {
  .footer-contact-list {
    max-width: 250px;
    margin: 0 auto;
    position: relative;
    left: 25px;
  }
}

.footer-contact-list--header {
  display: block;
  max-width: 210px;
  text-align: left;
  left: auto;
  margin: 2rem auto 0;
}

.footer-contact-list--header .footer-contact-list__item {
  display: block;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.footer-contact-list--header .footer-contact-list__icon {
  width: 20px;
  max-width: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
}

.footer-contact-list--header .footer-contact-list__icon svg {
  font-size: 20px;
  font-size: 1.25rem;
}

.footer-contact-list--header .footer-contact-list__text {
  padding-left: 12px;
  font-size: 18px;
  font-size: 1.125rem;
}

.footer-contact-list--header .footer-contact-list__text small {
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 992px) {
  .footer-contact-list--footer {
    max-width: 500px;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .footer-contact-list--footer {
    max-width: 700px;
  }
}

.footer-contact-list__item {
  display: block;
  margin: 10px 15px 10px;
}

@media (max-width: 770px) {
  .footer-contact-list__item {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.footer-contact-list__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-contact-list__link:hover .footer-contact-list__text {
  color: #d20000;
}

.footer-contact-list__icon {
  position: relative;
  top: -5px;
  width: 30px;
  max-width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
}

@media (min-width: 992px) {
  .footer-contact-list__icon {
    top: -10px;
  }
}

.footer-contact-list__icon svg {
  fill: #d20000;
  font-size: 30px;
  font-size: 1.875rem;
}

.footer-contact-list__text {
  padding-left: 1.25rem;
  line-height: 1.4;
  color: #003b7e;
  font-family: "Blinker", Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
}

@media (min-width: 992px) {
  .footer-contact-list__text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .footer-contact-list__text {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.footer-contact-list__text small {
  display: block;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 992px) {
  .footer-contact-list__text small {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .footer-contact-list__text small {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (max-width: 770px) {
  .footer__image {
    margin: 0 auto 2rem;
  }
}

/* Header */
.header__navigation .header__hamburger {
  display: none;
}

@media (max-width: 991px) {
  .header__navigation .container-normal,
  .header__navigation .container-large {
    width: 100%;
  }
  .header__navigation .main-nav {
    position: fixed;
    z-index: 98;
    top: 60px;
    left: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    padding: 0 25px 80px;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    background-color: #ffffff;
    -webkit-transition: none 400ms "ease-out";
    -o-transition: none 400ms "ease-out";
    transition: none 400ms "ease-out";
  }
  .header__navigation .header__hamburger {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
    display: block;
    width: 70px;
    height: 70px;
  }
  .header__navigation .header__hamburger-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 30px;
    height: 3px;
    -webkit-transition-duration: 250ms;
         -o-transition-duration: 250ms;
            transition-duration: 250ms;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    -o-transition-property: background-color, transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #003b7e;
    font-weight: 300;
  }
  .header__navigation .header__hamburger-icon:before, .header__navigation .header__hamburger-icon:after {
    position: absolute;
    display: block;
    width: 30px;
    height: 3px;
    content: '';
    -webkit-transition-duration: 250ms;
         -o-transition-duration: 250ms;
            transition-duration: 250ms;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    -o-transition-property: margin, transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    background: #003b7e;
  }
  .header__navigation .header__hamburger-icon:before {
    margin-top: -10px;
  }
  .header__navigation .header__hamburger-icon:after {
    margin-top: 10px;
  }
  .header__navigation.is-collapse .main-nav {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: -webkit-transform 250ms ease;
    transition: -webkit-transform 250ms ease;
    -o-transition: transform 250ms ease;
    transition: transform 250ms ease;
    transition: transform 250ms ease, -webkit-transform 250ms ease;
  }
  .header__navigation.is-collapse .header__hamburger-icon {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    background: rgba(0, 0, 0, 0);
  }
  .header__navigation.is-collapse .header__hamburger-icon:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header__navigation.is-collapse .header__hamburger-icon:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.header__navigation {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 15px;
  background-color: #ffffff;
  -webkit-transition: -webkit-box-shadow 350ms ease;
  transition: -webkit-box-shadow 350ms ease;
  -o-transition: box-shadow 350ms ease;
  transition: box-shadow 350ms ease;
  transition: box-shadow 350ms ease, -webkit-box-shadow 350ms ease;
  -webkit-box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
          box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
}

@media (min-width: 992px) {
  .header__navigation {
    background-color: transparent;
    padding: 0 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.header__navigation.is-scrolling {
  -webkit-box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
          box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
}

@media (min-width: 992px) {
  .header__navigation.is-scrolling {
    background-color: #ffffff;
  }
  .header__navigation.is-scrolling .header__logo {
    padding: 5px 0 5px;
  }
  .header__navigation.is-scrolling .main-nav__link {
    color: #003b7e;
  }
  .header__navigation.is-scrolling .header__logo-image {
    width: 140px;
  }
}

@media (min-width: 992px) {
  .header__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 99;
  padding: 7px 0 7px;
  text-align: center;
  -webkit-transition: padding 350ms ease;
  -o-transition: padding 350ms ease;
  transition: padding 350ms ease;
}

@media (min-width: 992px) {
  .header__logo {
    float: left;
    padding: 30px 0 30px;
  }
}

@media (min-width: 1800px) {
  .header__logo {
    left: -30px;
  }
}

.header__logo-link {
  display: inline-block;
  vertical-align: middle;
}

.header__logo-image {
  margin: 0 auto;
  -webkit-transition: width 350ms ease;
  -o-transition: width 350ms ease;
  transition: width 350ms ease;
}

@media (max-width: 991px) {
  .header__logo-image {
    width: 96px;
  }
}

@media (min-width: 992px) {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 55px;
  }
}

.main-nav__list {
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .main-nav__list {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 992px) {
  .main-nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 15px;
    padding: 25px 0;
  }
}

@media (min-width: 1440px) {
  .main-nav__item {
    margin: 0 15px;
  }
}

@media (max-width: 991px) {
  .main-nav__item {
    display: block;
    margin: 12px 0;
  }
}

.main-nav__item:focus .main-nav__link, .main-nav__item:hover .main-nav__link, .main-nav__item.is-active .main-nav__link {
  color: #003b7e;
}

.main-nav__item:focus .main-nav__link:after, .main-nav__item:hover .main-nav__link:after, .main-nav__item.is-active .main-nav__link:after {
  width: 100%;
}

.main-nav__link {
  position: relative;
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #003b7e;
  font-family: "Blinker", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 20px;
  font-size: 1.25rem;
}

@media (min-width: 992px) {
  .main-nav__link {
    color: #003b7e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .main-nav__link {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.main-nav__link:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 2px;
  content: '';
  -webkit-transition: width 250ms ease-out;
  -o-transition: width 250ms ease-out;
  transition: width 250ms ease-out;
  background-color: #003b7e;
}

.header__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
  height: 35px;
  background-color: #003b7e;
  padding: 0.2rem 0.5rem;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #ffffff;
  border-radius: 5px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .header__btn {
    margin-left: 15px;
    margin-bottom: 0;
    margin-top: 0;
  }
}

.header__btn:hover {
  background-color: #00234b;
}

.box {
  position: relative;
  background-color: #ffffff;
  padding: 3.75rem 3.75rem;
}

.box--border {
  border: 1px solid #f2f2f2;
}

.box--shadow {
  -webkit-box-shadow: 0 40px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0 40px 40px rgba(0, 0, 0, 0.08);
}

.box--size-0-4-4 {
  padding: 0 1rem 1.75rem;
}

@media (min-width: 576px) {
  .box--size-0-4-4 {
    padding: 0 1.75rem 1.75rem;
  }
}

@media (min-width: 1200px) {
  .box--size-0-4-4 {
    padding: 0 3.75rem 3.75rem;
  }
}

.box--size-4-4 {
  padding: 1.75rem 1.75rem;
}

@media (min-width: 576px) {
  .box--size-4-4 {
    padding: 3.75rem 3.75rem;
  }
}

/* Card block */
.card__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

html {
  --card-padding: 2.5rem;
}

.card__body {
  display: flex;
  flex-direction: column;
  padding: var(--card-padding);
  flex: 1;
}

.card__body .card-list {
  margin-top: auto;
}

.card__foot {
  display: flex;
  gap: 0.5rem;
  padding: 0 var(--card-padding) var(--card-padding);
}

.card__foot > * {
  flex: 1;
}

.card__title:any-link:is(:hover, :active, :focus-visible) {
  color: #d20000;
}

@media screen and (max-width: 576px) {
  html {
    --card-padding: 1.5rem;
  }
}

@media (max-width: 575px) {
  .card__content .btn--gray-outline {
    margin-bottom: 1rem;
  }
}

.card__logo-block {
  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;
  height: 45px;
  margin-bottom: 2.5rem;
}

.card__image-block {
  position: relative;
  inset: -1px -1px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: calc(100% + 1px);
  aspect-ratio: 4 / 3;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.card__image-block:is(:hover, :active, :focus-visible) img {
  transform: scale(1.025);
}

.card__image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease-out;
  will-change: transform;
}

.card-list-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.75em;
  margin-bottom: 2.5rem;
}

.card-list-link__item {
  display: inline-block;
  font-weight: 700;
  border-bottom: 1px solid #003b7e;
  border-right: 1px solid #978d86;
}

.card-list-link__item:first-child .card-list-link__link {
  margin-left: 0;
  padding-left: 0;
}

.card-list-link__item:last-child {
  border-right: 0;
}

.card-list-link__item:last-child .card-list-link__link {
  margin-right: 0;
  padding-right: 0;
}

.card-list-link__link {
  padding: 0 5px;
  margin: 0 5px;
  display: block;
  line-height: 1;
  color: #003b7e;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 576px) {
  .card-list-link__link {
    font-size: 16px;
    font-size: 1rem;
  }
}

.card__perex {
  line-height: 32px;
}

@media (min-width: 771px) {
  .card__perex {
    min-height: 120px;
  }
}

.card-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0.5rem;
  border-bottom: 2px dashed #dfdddb;
}

.card-list__item:last-child {
  border-bottom: 0;
}

.card-list__left-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #978d86;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  min-width: 140px;
}

.card-list__icon {
  height: 22px;
  margin-right: 20px;
}

.card-list__icon svg {
  fill: #d20000;
  font-size: 22px;
  font-size: 1.375rem;
}

.card-list__right-panel {
  margin-left: 3.75rem;
  color: #000000;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  text-align: left;
}

/* Modal block */
.modal__overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background-color: rgba(0, 59, 126, 0.52);
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.modal__overlay.is-active {
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: visible;
  visibility: visible;
}

.modal {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  overflow: hidden;
  width: auto;
  height: 0;
  padding: 3rem 0 2rem;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
  background-color: rgba(0, 0, 0, 0.65);
}

@media (min-width: 771px) {
  .modal {
    padding: 6rem 0 4rem;
  }
}

.modal.is-active {
  visibility: visible;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.modal.is-active .modal__box {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal.modal__hidden .modal__close,
.modal.modal__hidden .modal__scroll {
  display: none;
}

.modal__scroll {
  margin: auto 1rem;
}

.modal__box {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

@media (min-width: 992px) {
  .modal__box {
    width: 930px;
  }
}

@media (min-width: 1200px) {
  .modal__box {
    width: 1140px;
  }
}

.modal__close {
  position: absolute;
  z-index: 99;
  top: 5px;
  right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70px;
  height: 70px;
  line-height: 70px;
  cursor: pointer;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal__close svg {
  fill: #000000;
  font-size: 22px;
  font-size: 1.375rem;
}

.modal__close:focus, .modal__close:hover {
  color: #000000;
}

.modal__body {
  padding: 5.3125rem 2rem 3.125rem;
  background-color: white;
}

.modal__img {
  margin-bottom: 1.2rem;
}

@media (min-width: 576px) {
  .modal__img {
    margin-bottom: 3rem;
  }
}

@media (min-width: 992px) {
  .modal__img {
    margin-bottom: 0;
    position: absolute;
    top: 30px;
    left: 0;
    max-width: 300px;
  }
}

@media (min-width: 1200px) {
  .modal__img {
    max-width: 350px;
  }
}

.hero-section {
  padding: 5rem 0.5rem 1.875rem;
  height: 580px;
}

@media (min-width: 576px) {
  .hero-section {
    height: 800px;
  }
}

@media (min-width: 771px) {
  .hero-section {
    height: auto;
    padding: 5rem 1rem 3.125rem;
  }
}

@media (min-width: 992px) {
  .hero-section {
    padding: 15.625rem 1rem 11.25rem;
  }
}

@media (min-width: 992px) {
  .hero__content {
    position: relative;
  }
}

@media (min-width: 1200px) {
  .hero__content {
    right: -240px;
  }
}

@media (min-width: 1440px) {
  .hero__content {
    right: -150px;
  }
}

@media (min-width: 1600px) {
  .hero__content {
    right: -70px;
  }
}

@media (min-width: 1800px) {
  .hero__content {
    position: relative;
    right: 0;
  }
}

@media (max-width: 770px) {
  .hero__content .alfa {
    color: white;
    text-shadow: 0 0 20px black;
  }
}

@media (max-width: 770px) {
  .hero__img {
    position: relative;
    width: 120%;
    max-width: none;
    right: 0px;
  }
}

@media (max-width: 575px) {
  .hero__img {
    position: relative;
    width: 120%;
    max-width: none;
    right: 0px;
    top: -15px;
  }
}

@media (max-width: 369px) {
  .hero__img {
    top: 0;
    width: 160%;
  }
}

@media (min-width: 771px) {
  .hero__img {
    position: absolute;
    max-width: none;
    bottom: -50px;
    right: -100px;
    width: 490px;
  }
}

@media (min-width: 992px) {
  .hero__img {
    bottom: -160px;
    right: -240px;
    width: 780px;
  }
}

@media (min-width: 1200px) {
  .hero__img {
    width: 780px;
    right: -200px;
  }
}

@media (min-width: 1440px) {
  .hero__img {
    width: 720px;
    right: -30px;
  }
}

@media (min-width: 1600px) {
  .hero__img {
    width: 840px;
    bottom: -160px;
    right: -150px;
  }
}

.price-table {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: -webkit-gradient(linear, right top, left top, from(#ffffff), color-stop(47%, #fbfbfb), to(#ffffff));
  background-image: -o-linear-gradient(right, #ffffff 0%, #fbfbfb 47%, #ffffff 100%);
  background-image: linear-gradient(270deg, #ffffff 0%, #fbfbfb 47%, #ffffff 100%);
}

@media (min-width: 576px) {
  .price-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.price-table__item {
  position: relative;
  display: block;
  border-top: 2px dashed #cac6c3;
  padding: 1rem 45px;
}

@media (max-width: 575px) {
  .price-table__item:first-child {
    border-top: 0;
  }
}

@media (min-width: 576px) {
  .price-table__item {
    border-bottom: 2px dashed #cac6c3;
    padding: 1rem 15px;
  }
}

@media (min-width: 771px) {
  .price-table__item {
    padding: 1rem 25px;
  }
}

@media (min-width: 992px) {
  .price-table__item {
    padding: 1rem 45px;
  }
}

@media (min-width: 576px) {
  .price-table__item:after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    display: block;
    width: 1px;
    height: calc(100% + 60px);
    border-right: 2px dashed #cac6c3;
  }
  .price-table__item:last-child:after {
    display: none;
  }
}

.filter-form {
  -webkit-box-shadow: -3px 2px 31px rgba(1, 1, 1, 0.1);
          box-shadow: -3px 2px 31px rgba(1, 1, 1, 0.1);
  background-color: #ffffff;
  padding: 1.5625rem 1.5625rem;
  margin-bottom: 4.0625rem;
}

.filter-btn {
  height: 100%;
}

.filter-btn .btn__icon {
  position: relative;
  top: 2px;
  margin-left: 1.5625rem;
}

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

.bg-image-service {
  top: -180px;
  left: -600px;
  height: 900px;
  width: auto;
  aspect-ratio: 790 / 1260;
}

@media (min-width: 771px) {
  .bg-image-service {
    top: 0;
    left: -160px;

  }
}

@media (min-width: 1600px) {
  .bg-image-service {
    top: -120px;
    left: -60px;
    height: 1260px;
  }
}