/* Web fonts */
@font-face {
  font-family: "Microsoft Phags Pa";
  src: url("../fonts/webfonts/microsoft/MicrosoftPhagsPa.woff2") format("woff2"), url("../fonts/webfonts/microsoft/MicrosoftPhagsPa.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tarrget Condensed";
  src: url("../fonts/webfonts/font.woff2") format("woff2"), url("../fonts/webfonts/font.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Microsoft Phags Pa Bold";
  src: url("../fonts/webfonts/microsoft/MicrosoftPhagsPa-Bold.woff2") format("woff2"), url("../fonts/webfonts/microsoft/MicrosoftPhagsPa-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 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: "Microsoft Phags Pa", 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 #ded483;
  border-right-color: transparent;
  border-radius: 50%;
}

.donut-spinner {
  display: inline-block;
  border: 10px solid #e6edff;
  border-left-color: #ded483;
  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: #ded483;
  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);
  }
}

/* Typography */
.typography p,
.typography li,
.typography td,
.typography th {
  line-height: 1.5em;
}

.typography p,
.typography ul,
.typography ol,
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6,
.typography table,
.typography fieldset,
.typography blockquote,
.typography iframe {
  margin-bottom: 1rem;
}

.typography h1 {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Tarrget Condensed", Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 26px;
  font-size: 1.625rem;
}

@media (min-width: 771px) {
  .typography h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.typography h2 {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Tarrget Condensed", Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 24px;
  font-size: 1.5rem;
}

@media (min-width: 771px) {
  .typography h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.typography h3 {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Tarrget Condensed", Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 22px;
  font-size: 1.375rem;
}

@media (min-width: 771px) {
  .typography h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.typography h4 {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Tarrget Condensed", Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
}

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

.typography h5 {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Tarrget Condensed", Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 771px) {
  .typography h5 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.typography h6 {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "Tarrget Condensed", Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 771px) {
  .typography h6 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.typography a {
  text-decoration: underline;
  color: #000000;
}

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

.typography p {
  display: block;
  margin-top: 0;
  margin-bottom: 2.5rem;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  font-size: 16px;
  font-size: 1rem;
}

.typography strong {
  font-weight: 700;
  color: #000000;
}

.typography img {
  max-width: 100%;
  margin-bottom: 2rem;
}

.typography ul,
.typography ol {
  margin-bottom: 2.5rem;
  padding-left: 0;
  list-style: none;
}

.typography ul li,
.typography ol li {
  position: relative;
  margin-bottom: 0.3rem;
  padding-left: 3rem;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  font-size: 16px;
  font-size: 1rem;
}

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

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

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

.typography figure {
  margin: 0;
  margin-bottom: 2rem;
}

.typography figure img {
  margin: 0;
}

.typography figcaption {
  margin-top: 0.6rem;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 12px;
  font-size: 0.75rem;
}

/* Form base */
.form__input, .form__textarea {
  width: 100%;
  height: 60px;
  padding: 0.2rem 1.5rem;
  border: 2px solid #d1d7db;
  background-color: #ffffff;
  color: #000000;
  font-family: "Tarrget Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 0;
  outline: none !important;
  -webkit-appearance: none;
}

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

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

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

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

.form__input-ext {
  border: 0;
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.form__textarea {
  height: 150px;
  padding: 1rem 1.5rem;
  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: 100px;
    max-height: 250px;
  }
}

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

.form__select {
  width: 100%;
  height: 60px;
  padding: 0.2rem 1.5rem;
  font-family: "Tarrget Condensed", 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: 60px;
  font-size: 22px;
  font-size: 1.375rem;
  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-block .form__input {
  padding-right: 60px;
}

.form__label {
  display: block;
  margin: 0 0 10px;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
  font-size: 1rem;
}

.form__field {
  position: relative;
}

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

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

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

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

.form__placeholder.is-active .form__label {
  width: calc(100% - 20px);
  -webkit-transform: translateX(1px) translateY(1px);
      -ms-transform: translateX(1px) translateY(1px);
          transform: translateX(1px) translateY(1px);
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 25px 5px;
}

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

.form__placeholder .select2-container .select2-selection--single {
  padding: 7px 40px 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 25px 10px;
}

.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: #817f7f;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #817f7f;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #817f7f;
}
input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #817f7f;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #817f7f;
}

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

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

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

.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: #ea4335 !important;
}

.has-field-error + .select2-container .select2-selection--single,
.has-field-error + .select-classic .select2-container .select2-selection--multiple {
  border-color: #ea4335 !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: #55a954 !important;
}

.has-field-success + .select2-container .select2-selection--single,
.has-field-success + .select-classic .select2-container .select2-selection--multiple {
  border-color: #55a954 !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: #ea4335 !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: #ea4335 !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: #55a954 !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: #55a954 !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: #ea4335;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}

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

/* 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: 1.2em 1rem;
  font-weight: 700;
  font-family: "Microsoft Phags Pa Bold", Arial, sans-serif;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  border: 0;
  min-height: 44px;
  outline: none !important;
  background: #000000;
  text-align: center;
  letter-spacing: 0.96px;
  -webkit-transition: background-color 250ms ease, color 0.3s;
  -o-transition: background-color 250ms ease, color 0.3s;
  transition: background-color 250ms ease, color 0.3s;
  border-radius: 0;
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-appearance: none;
}

@media (min-width: 576px) {
  .btn {
    padding: 1.2em 1.2rem;
  }
}

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

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

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

@media (min-width: 2200px) {
  .btn {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

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

span.btn {
  cursor: default !important;
}

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

.btn--big {
  padding: 1.2em 1.2rem;
  line-height: 1.8;
}

.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: 19px;
  font-size: 1.1875rem;
}

.btn--size-small {
  padding: 0.7em 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: 170px;
}

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

.btn--min-width-medium-ext {
  min-width: 260px;
}

.btn--min-width-big {
  min-width: auto;
}

@media (min-width: 576px) {
  .btn--min-width-big {
    min-width: 325px;
  }
}

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

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

.btn-black-fill:hover {
  color: #000000;
  background-color: #ffffff;
}

.btn-black-fill:hover .btn__icon {
  color: #000000;
}

.btn-black-fill .btn__icon {
  color: #ffffff;
}

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

.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: #cc0000;
}

.btn--red-outline {
  color: #dd2225;
  border: 3px solid #e80000;
  background-color: white;
}

.btn--red-outline, .btn--red-outline:visited, .btn--red-outline:active, .btn--red-outline:focus {
  color: #dd2225;
}

.btn--red-outline:hover {
  color: #dd2225;
}

.btn--spacing-1 {
  letter-spacing: 1px;
}

.btn--spacing-3 {
  letter-spacing: 3px;
}

.btn--border-gradient .btn--border-gradient:after {
  content: '';
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  top: -2px;
  left: -2px;
  padding: 2px;
  z-index: -1;
  background: #fff;
  transition: opacity 0.6s cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 0.5s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.5s cubic-bezier(0.5, 0.7, 0.4, 1), opacity 0.6s cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 0.5s cubic-bezier(0.5, 0.7, 0.4, 1);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
}

.btn.btn--border-gradient {
  z-index: 2;
}

.btn.btn--border-gradient.btn--red-outline .btn--border-gradient:after {
  background-color: #eb1313;
}

.btn.btn--border-gradient.is-active .btn--border-gradient:after, .btn.btn--border-gradient:hover .btn--border-gradient:after {
  -webkit-transform: scaleX(0.975) scaleY(0.8);
      -ms-transform: scaleX(0.975) scaleY(0.8);
          transform: scaleX(0.975) scaleY(0.8);
  opacity: 1;
}

.btn--border-gradient {
  border: 0;
  background-color: transparent;
}

.btn--border-gradient > div {
  pointer-events: none;
}

.btn--border-gradient:not(.btn--border-classic):before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(100% - 6px);
  height: 0;
  background-color: #dd2225;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  pointer-events: none;
}

.btn--border-gradient:not(.btn--border-classic).is-active:after, .btn--border-gradient:not(.btn--border-classic):hover:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.btn--border-gradient:not(.btn--border-classic).is-active:before, .btn--border-gradient:not(.btn--border-classic):hover:before {
  opacity: 1;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background-color: #dd2225;
}

.btn--border-gradient.is-active, .btn--border-gradient:hover {
  color: white;
}

.btn--border-gradient-white:not(.btn--border-classic).is-active:before, .btn--border-gradient-white:not(.btn--border-classic):hover:before {
  background-color: #ffffff;
}

.btn--border-gradient-white.is-active, .btn--border-gradient-white:hover {
  color: #dd2225;
}

.btn--border-gradient-white .btn--border-gradient__left:before {
  background-color: white;
}

.btn--border-gradient-white .btn--border-gradient__middle:after, .btn--border-gradient-white .btn--border-gradient__middle:before {
  background-color: white;
}

.btn--border-gradient-white .btn--border-gradient__right {
  background-image: url("../images/btn-gradient-right-white.svg");
}

.btn--border-gradient-red:not(.btn--border-classic).is-active:before, .btn--border-gradient-red:not(.btn--border-classic):hover:before {
  background-color: #dd2225;
}

.btn--border-gradient-red.is-active, .btn--border-gradient-red:hover {
  color: #ffffff;
}

.btn--border-gradient-red.is-active .btn--border-gradient__middle:after, .btn--border-gradient-red.is-active .btn--border-gradient__middle:before, .btn--border-gradient-red:hover .btn--border-gradient__middle:after, .btn--border-gradient-red:hover .btn--border-gradient__middle:before {
  background-color: #dd2225;
}

.btn--border-gradient-red.is-active .btn--border-gradient__left:before, .btn--border-gradient-red:hover .btn--border-gradient__left:before {
  background-color: #dd2225;
}

.btn--border-gradient-red.is-active .btn--border-gradient__right, .btn--border-gradient-red:hover .btn--border-gradient__right {
  background-image: url("../images/btn-gradient-right.svg");
}

.btn--border-gradient-red.btn.btn--border-gradient.is-active .btn--border-gradient:after,
.btn--border-gradient-red.btn.btn--border-gradient:hover .btn--border-gradient:after {
  background-color: #dd2225;
  -webkit-transform: scaleX(1) scaleY(1);
      -ms-transform: scaleX(1) scaleY(1);
          transform: scaleX(1) scaleY(1);
}

.btn--border-gradient-bottom .btn--border-gradient__middle:after {
  top: 0;
  bottom: auto;
}

.btn--border-gradient-bottom .btn--border-gradient__middle:before {
  top: auto;
  bottom: 0;
}

.btn--border-gradient-bottom .btn--border-gradient__right {
  background-image: url(../images/btn-gradient-right-top.svg);
  background-position: top right;
}

.btn--border-gradient-left-top .btn--border-gradient__middle:after {
  top: 0;
  bottom: auto;
}

.btn--border-gradient-left-top .btn--border-gradient__middle:before {
  top: auto;
  bottom: 0;
}

.btn--border-gradient-left-top .btn--border-gradient__right {
  right: auto;
  left: 0;
  bottom: 0;
  top: auto;
  background-image: url(../images/btn-gradient-right-left-left.svg);
  background-position: bottom left;
}

.btn--border-gradient-left-top .btn--border-gradient__left:before {
  left: auto;
  right: 0;
}

.btn--border-gradient-left-top .btn--border-gradient__middle:after {
  top: 0;
  bottom: auto;
  width: calc(95% - 43px);
  left: auto;
  right: 0;
}

.btn--border-gradient-left-top .btn--border-gradient__middle:before {
  top: auto;
  bottom: 0;
  width: 100%;
  left: auto;
  right: 0;
}

.btn--border-gradient-left-top .btn--border-gradient__right {
  right: auto;
  left: 0;
  background-image: url(../images/btn-gradient-right-left-bottom.svg);
  background-position: bottom left;
}

.btn--border-gradient__left:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3px;
  height: 100%;
  background-color: #eb1313;
}

.btn--border-gradient__middle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 3px;
  display: block;
  width: calc(100% - 43px);
  height: 3px;
  background-color: #eb1313;
}

.btn--border-gradient__middle:before {
  content: '';
  position: absolute;
  top: 0;
  left: 3px;
  display: block;
  width: calc(100% - 43px);
  height: 3px;
  background-color: #eb1313;
}

.btn--border-gradient__right {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 43px;
  height: 44px;
  background-image: url("../images/btn-gradient-right.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -15px;
}

.btn__item {
  padding: 0 15px;
  margin-bottom: 1rem;
}

.btn--classic:hover {
  background-color: #dd2225;
  color: #ffffff;
}

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

.bg-yellow {
  background-color: #ded483;
}

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

.txt-white {
  color: #ffffff;
}

.txt-yellow {
  color: #c6bc6a;
}

.txt-red {
  color: #dd2225;
}

.txt-black {
  color: #000000;
}

.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: #ded483;
}

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

.p--yellow p {
  color: #c6bc6a;
}

.p--black p {
  color: #000000;
}

.p--purple p {
  color: #ded483;
}

ul.list-style.ul--white li,
.ul--white li {
  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: #f7f7f7;
}

.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: #f7f7f7;
}

/* 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---purple svg {
  fill: #ded483;
}

/* 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-rectangle--modern-engineer {
  top: auto;
  bottom: 0;
  height: 50px;
}

.bg-rectangle--ecology {
  height: 7px;
}

.bg-image-letter-e {
  top: 50px;
  right: -30px;
  left: auto;
  width: 240px;
  height: auto;
  opacity: 0.4;
}

@media (min-width: 771px) {
  .bg-image-letter-e {
    opacity: 1;
    top: 100px;
    width: 300px;
    height: auto;
  }
}

@media (min-width: 992px) {
  .bg-image-letter-e {
    top: 200px;
    width: 360px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .bg-image-letter-e {
    top: 50px;
    width: 450px;
    height: auto;
  }
}

.bg-image-letter-p {
  top: auto;
  bottom: -100px;
  right: -80px;
  left: auto;
  width: 240px;
  height: auto;
  opacity: 0.4;
}

@media (min-width: 771px) {
  .bg-image-letter-p {
    opacity: 1;
    bottom: -150px;
    width: 400px;
    height: auto;
  }
}

@media (min-width: 992px) {
  .bg-image-letter-p {
    bottom: -150px;
    width: 450px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .bg-image-letter-p {
    bottom: -150px;
    width: 589px;
    height: auto;
  }
}

.bg-image-letter-p-ext {
  top: 50px;
  right: -80px;
  left: auto;
  width: 240px;
  height: auto;
  opacity: 0.4;
}

@media (min-width: 771px) {
  .bg-image-letter-p-ext {
    opacity: 1;
    top: 100px;
    width: 400px;
    height: auto;
  }
}

@media (min-width: 992px) {
  .bg-image-letter-p-ext {
    top: 200px;
    width: 450px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .bg-image-letter-p-ext {
    top: 50px;
    width: 539px;
    height: auto;
  }
}

.bg-image-letter-p-ext-1 {
  top: 0;
  right: -80px;
  left: auto;
  width: 240px;
  height: auto;
  opacity: 0.4;
}

@media (min-width: 771px) {
  .bg-image-letter-p-ext-1 {
    opacity: 1;
    top: 0;
    right: -100px;
    width: 320px;
    height: auto;
  }
}

@media (min-width: 992px) {
  .bg-image-letter-p-ext-1 {
    right: -160px;
    top: 0;
    width: 360px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .bg-image-letter-p-ext-1 {
    top: 0;
    width: 428px;
    height: auto;
  }
}

.bg-image-letter-s {
  top: 50px;
  right: -30px;
  left: auto;
  width: 240px;
  height: auto;
  opacity: 0.4;
}

@media (min-width: 771px) {
  .bg-image-letter-s {
    opacity: 1;
    top: 100px;
    width: 400px;
    height: auto;
  }
}

@media (min-width: 992px) {
  .bg-image-letter-s {
    top: 200px;
    width: 500px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .bg-image-letter-s {
    top: 50px;
    width: 700px;
    height: auto;
  }
}

.bg-image-robot-result {
  width: calc(100% - 100px);
  height: 400px;
  position: relative;
  pointer-events: none;
}

@media (min-width: 992px) {
  .bg-image-robot-result {
    position: absolute;
    width: 30%;
    height: 100%;
    top: auto;
    bottom: 0;
    left: -150px;
    background-position: bottom left;
    max-width: none;
    width: auto;
    height: calc(100% + 100px);
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
    width: calc(100% + 250px);
  }
}

@media (min-width: 1200px) {
  .bg-image-robot-result {
    width: calc(100% + 400px);
  }
}

@media (min-width: 1440px) {
  .bg-image-robot-result {
    width: auto;
  }
}

.bg-rectangle--ecology-bg {
  width: calc(100% - 100px);
  height: 400px;
  position: relative;
}

@media (min-width: 771px) {
  .bg-rectangle--ecology-bg {
    position: absolute;
    width: 30%;
    height: 100%;
  }
}

@media (min-width: 992px) {
  .bg-rectangle--ecology-bg {
    width: 40%;
  }
}

.bg-rectangle--jobs-bg {
  width: calc(100% - 100px);
  height: 220px;
  position: relative;
}

@media (min-width: 370px) {
  .bg-rectangle--jobs-bg {
    height: 320px;
  }
}

@media (min-width: 576px) {
  .bg-rectangle--jobs-bg {
    height: 400px;
  }
}

@media (min-width: 771px) {
  .bg-rectangle--jobs-bg {
    position: absolute;
    width: 30%;
    height: 469px;
    top: auto;
    bottom: 0;
  }
}

@media (min-width: 992px) {
  .bg-rectangle--jobs-bg {
    width: 40%;
  }
}

.bg-image-heart-line {
  top: 80px;
  width: 100%;
  height: 224px;
  background-size: auto;
  background-repeat: repeat;
  -webkit-animation-name: move-heart-line;
          animation-name: move-heart-line;
  -webkit-animation-duration: 1200s;
          animation-duration: 1200s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media (max-width: 770px) {
  .bg-image-heart-line {
    top: 0;
    height: 160px;
    background-position: bottom;
  }
}

@media (min-width: 772px) and (max-width: 992px) {
  .bg-image-heart-line {
    top: 0;
    height: 204px;
    background-position: bottom;
  }
}

@-webkit-keyframes move-heart-line {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: 40000px bottom;
  }
}

@keyframes move-heart-line {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: 40000px bottom;
  }
}

.bg-image-ecology-hand {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% + 100px);
  height: auto;
}

@media (min-width: 771px) {
  .bg-image-ecology-hand {
    width: 45%;
  }
}

@media (min-width: 992px) {
  .bg-image-ecology-hand {
    width: 55%;
  }
}

@media (min-width: 1200px) {
  .bg-image-ecology-hand {
    width: 60%;
    max-width: 1200px;
  }
}

.bg-image-jobs-hand {
  top: auto;
  bottom: 0;
  width: calc(100% + 100px);
  height: auto;
  background-position: bottom left;
}

@media (min-width: 771px) {
  .bg-image-jobs-hand {
    width: 45%;
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .bg-image-jobs-hand {
    width: 55%;
    max-width: 750px;
  }
}

@media (min-width: 1200px) {
  .bg-image-jobs-hand {
    width: 60%;
    max-width: 750px;
  }
}

.bg-image-partner-left-panel {
  width: 40%;
  max-width: 500px;
  z-index: 3;
  pointer-events: none;
}

.bg-image-partner-right-panel {
  left: auto;
  z-index: 3;
  right: 0;
  pointer-events: none;
  width: 40%;
  max-width: 500px;
}

.bg-image-about {
  background-color: #181818;
  background-position: bottom right;
}

.bg-image-machine-bg {
  left: auto;
  right: 0;
  background-position: top right;
}

@media (min-width: 992px) {
  .bg-image-machine {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
  }
}

@media (max-width: 991px) {
  .bg-image-machine {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    max-width: none;
  }
}

@media (min-width: 992px) {
  .bg-image-machine-hand {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (max-width: 991px) {
  .bg-image-machine-hand {
    position: absolute;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 300px;
    max-width: none;
    right: 0;
    margin-left: auto;
    top: 50%;
  }
}

@media (max-width: 770px) {
  .bg-image-machine-hand {
    width: 230px;
  }
}

.tools__hand {
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(100px, -50%, 0);
          transform: translate3d(100px, -50%, 0);
  width: 100%;
  height: 100%;
  z-index: 6;
}

.tools__hand[data-aos^='fade'][data-aos^='fade'].aos-animate {
  -webkit-transform: translateY(-50%) translateZ(0);
          transform: translateY(-50%) translateZ(0);
}

@media (min-width: 992px) {
  .bg-image-machine-bulb {
    position: absolute;
    top: 50%;
    right: 360px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .bg-image-machine-bulb {
    right: 280px;
  }
}

@media (max-width: 991px) {
  .bg-image-machine-bulb {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 220px;
  }
}

@media (max-width: 770px) {
  .bg-image-machine-bulb {
    width: 180px;
  }
}

@media (max-width: 575px) {
  .bg-image-machine-bulb {
    width: 150px;
    left: 40px;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    top: -15px;
  }
}

@media (min-width: 992px) {
  .bg-image-machine-women {
    position: absolute;
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .bg-image-machine-women {
    top: 0;
  }
}

@media (max-width: 991px) {
  .bg-image-machine-women {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (min-width: 992px) {
  .bg-image-machine-design {
    position: absolute;
    top: -30px;
    right: 0;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .bg-image-machine-design {
    top: 0;
  }
}

@media (max-width: 991px) {
  .bg-image-machine-design {
    position: relative;
    right: -80px;
    margin-left: auto;
    top: 0;
  }
}

@media (max-width: 575px) {
  .bg-image-machine-design {
    right: -40px;
  }
}

@media (max-width: 1199px) {
  .bg-image-tools {
    height: auto;
    max-width: 100%;
    display: block;
  }
}

@media (max-width: 991px) {
  .bg-image-tools {
    margin: 0 auto;
    width: 100%;
  }
}

.tool-left-panel {
  margin-top: -50px;
  margin-bottom: -60px;
  z-index: 3;
}

@media (min-width: 992px) {
  .tool-left-panel {
    margin-bottom: -130px;
  }
}

@media (min-width: 1200px) {
  .image-block-section {
    height: 530px;
  }
}

.bg-image-robot-sign-up {
  pointer-events: none;
  display: none;
}

@media (min-width: 771px) {
  .bg-image-robot-sign-up {
    display: block;
    top: auto;
    bottom: -213px;
    height: auto;
    width: 680px;
    left: -400px;
  }
}

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

@media (min-width: 1200px) {
  .bg-image-robot-sign-up {
    left: -200px;
  }
}

@media (min-width: 1440px) {
  .bg-image-robot-sign-up {
    left: -150px;
  }
}

.bg-image-strojarina-circle {
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  background-position: top;
}

.bg-image-strojarina-robots {
  -o-object-position: top;
     object-position: top;
  height: auto;
  top: auto;
  bottom: 0;
  height: 760px;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

@media (max-width: 770px) {
  .bg-image-strojarina-robots {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100vw;
    max-width: none;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
        -ms-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
}

@media (min-width: 771px) {
  .bg-image-strojarina-robots {
    min-height: 960px;
  }
}

@media (min-width: 992px) {
  .bg-image-strojarina-robots {
    min-height: 960px;
  }
}

@media (min-width: 1440px) {
  .bg-image-strojarina-robots {
    min-height: 960px;
  }
}

@media (min-width: 1600px) {
  .bg-image-strojarina-robots {
    min-height: 960px;
  }
}

@media (min-width: 2000px) {
  .bg-image-strojarina-robots {
    min-height: 1100px;
  }
}

.why-us .simpleParallax {
  position: absolute;
  top: calc(50% + 120px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 364px;
  height: 546px;
  overflow: visible !important;
}

.why-us .simpleParallax .bg-image-letter-s {
  left: auto;
  right: auto;
}

.bg-image-letter-s {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 364px;
  height: 546px;
}

.bg-image-letter-s-ext {
  left: -80px;
  width: 360px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 576px) {
  .bg-image-letter-s-ext {
    width: 370px;
  }
}

@media (min-width: 771px) {
  .bg-image-letter-s-ext {
    width: 612px;
  }
}

.bg-image-program-bg {
  background-position: top left;
}

.bg-image-hero-bg {
  background-position: center;
}

.bg-image-hero-bg--gray {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.bg-image-program-robot {
  position: relative;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  right: -40px;
  margin-bottom: -160px;
  margin-top: -40px;
}

@media (min-width: 576px) {
  .bg-image-program-robot {
    position: absolute;
    margin-bottom: 0;
    margin-top: 0;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
    right: -160px;
    bottom: -100px;
  }
}

@media (min-width: 771px) {
  .bg-image-program-robot {
    bottom: 0;
    right: -220px;
    max-height: 880px;
  }
}

@media (min-width: 992px) {
  .bg-image-program-robot {
    right: 0;
  }
}

.bg-image-hero-pattern {
  left: auto;
  top: -40px;
  right: -40px;
  width: 158px;
  height: 150px;
}

@media (min-width: 771px) {
  .bg-image-hero-pattern {
    display: block;
    width: 298px;
    height: 290px;
    top: -120px;
    right: -120px;
  }
}

@media (min-width: 992px) {
  .bg-image-hero-pattern {
    width: 398px;
    height: 390px;
  }
}

@media (min-width: 576px) {
  body.is-active .bg-image-hero-robot {
    opacity: 1;
  }
}

.bg-image-hero-robot {
  position: relative;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: -80px;
  margin-top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% + 250px);
  max-width: none;
}

@media (max-width: 575px) {
  .bg-image-hero-robot .simpleParallax {
    overflow: visible !important;
  }
}

@media (min-width: 576px) {
  .bg-image-hero-robot {
    position: absolute;
    margin-bottom: 0;
    margin-top: 0;
    top: auto;
    left: auto;
    -o-object-fit: contain;
       object-fit: contain;
    width: 923px;
    height: 681px;
    left: 50%;
    opacity: 0;
    -webkit-transition: opacity 1000ms ease-out;
    -o-transition: opacity 1000ms ease-out;
    transition: opacity 1000ms ease-out;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

/* 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-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;
  }
}

@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-s.container-large {
  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;
}

/* IE fallback */
.no-object-fit .img-flex-cover img {
  height: auto;
  width: auto;
  vertical-align: middle;
  margin: 0 auto;
}

.no-object-fit .img-flex-contain {
  display: block;
  height: auto;
}

.no-object-fit .img-flex-contain img {
  height: 100%;
  width: auto;
  vertical-align: middle;
  margin: 0 auto;
}

/* 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;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #d9cd6f;
}

@-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: "Microsoft Phags Pa", Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

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

strong,
.strong {
  font-weight: 700;
  font-family: "Microsoft Phags Pa Bold", Arial, sans-serif;
}

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: #000000;
  font-family: "Tarrget Condensed", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

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: 28px;
  font-size: 1.75rem;
}

@media (min-width: 370px) {
  h1,
  .alfa {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

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

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

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

@media (min-width: 2200px) {
  h1,
  .alfa {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

@media (min-width: 2500px) {
  h1,
  .alfa {
    font-size: 56px;
    font-size: 3.5rem;
  }
}

.alfa-big {
  font-size: 28px;
  font-size: 1.75rem;
}

@media (min-width: 370px) {
  .alfa-big {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

@media (min-width: 576px) {
  .alfa-big {
    font-size: 38px;
    font-size: 2.375rem;
  }
}

@media (min-width: 771px) {
  .alfa-big {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

@media (min-width: 992px) {
  .alfa-big {
    font-size: 46px;
    font-size: 2.875rem;
  }
}

@media (min-width: 2200px) {
  .alfa-big {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

@media (min-width: 2500px) {
  .alfa-big {
    font-size: 56px;
    font-size: 3.5rem;
  }
}

.alfa-large {
  font-size: 30px;
  font-size: 1.875rem;
}

@media (min-width: 370px) {
  .alfa-large {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

@media (min-width: 576px) {
  .alfa-large {
    font-size: 46px;
    font-size: 2.875rem;
  }
}

@media (min-width: 771px) {
  .alfa-large {
    font-size: 56px;
    font-size: 3.5rem;
  }
}

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

@media (min-width: 2200px) {
  .alfa-large {
    font-size: 80px;
    font-size: 5rem;
  }
}

@media (min-width: 2500px) {
  .alfa-large {
    font-size: 86px;
    font-size: 5.375rem;
  }
}

h2,
.beta {
  font-size: 18px;
  font-size: 1.125rem;
}

@media (min-width: 370px) {
  h2,
  .beta {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

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

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

@media (min-width: 992px) {
  h2,
  .beta {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (min-width: 1200px) {
  h2,
  .beta {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

@media (min-width: 1440px) {
  h2,
  .beta {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (min-width: 2200px) {
  h2,
  .beta {
    font-size: 46px;
    font-size: 2.875rem;
  }
}

@media (min-width: 2500px) {
  h2,
  .beta {
    font-size: 52px;
    font-size: 3.25rem;
  }
}

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

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

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

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

@media (min-width: 370px) {
  .gamma-small {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media (min-width: 576px) {
  .gamma-small {
    font-size: 37px;
    font-size: 2.3125rem;
  }
}

@media (min-width: 771px) {
  .gamma-small {
    font-size: 37px;
    font-size: 2.3125rem;
  }
}

h4,
.delta {
  font-size: 24px;
  font-size: 1.5rem;
}

@media (min-width: 370px) {
  h4,
  .delta {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

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

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

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;
  }
}

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

.h--spacing-3 h1,
.h--spacing-3 .alfa,
.h--spacing-3 h2,
.h--spacing-3 .beta,
.h--spacing-3 h3,
.h--spacing-3 .gamma,
.h--spacing-3 h4,
.h--spacing-3 .delta,
.h--spacing-3 h5,
.h--spacing-3 .epsilon,
.h--spacing-3 h6,
.h--spacing-3 .zeta {
  letter-spacing: 3px;
}

.h--spacing-13 h1,
.h--spacing-13 .alfa,
.h--spacing-13 h2,
.h--spacing-13 .beta,
.h--spacing-13 h3,
.h--spacing-13 .gamma,
.h--spacing-13 h4,
.h--spacing-13 .delta,
.h--spacing-13 h5,
.h--spacing-13 .epsilon,
.h--spacing-13 h6,
.h--spacing-13 .zeta {
  letter-spacing: 13px;
}

.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-bold h1,
.h--font-bold .alfa,
.h--font-bold h2,
.h--font-bold .beta,
.h--font-bold h3,
.h--font-bold .gamma,
.h--font-bold h4,
.h--font-bold .delta,
.h--font-bold h5,
.h--font-bold .epsilon,
.h--font-bold h6,
.h--font-bold .zeta {
  font-weight: 700;
}

.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: "Microsoft Phags Pa", Arial, sans-serif;
}

.h--font-secondary h1,
.h--font-secondary .alfa,
.h--font-secondary h2,
.h--font-secondary .beta,
.h--font-secondary h3,
.h--font-secondary .gamma,
.h--font-secondary h4,
.h--font-secondary .delta,
.h--font-secondary h5,
.h--font-secondary .epsilon,
.h--font-secondary h6,
.h--font-secondary .zeta {
  font-family: "Tarrget Condensed", 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-headline--line .alfa,
.h-headline--line .beta,
.h-headline--line .gamma,
.h-headline--line .delta,
.h-headline--line .epsilon,
.h-headline--line .zeta,
.h-headline--line h1,
.h-headline--line h2,
.h-headline--line h3,
.h-headline--line h4,
.h-headline--line h5,
.h-headline--line h6 {
  position: relative;
  vertical-align: bottom;
  display: inline;
}

.h-headline--line .alfa:after,
.h-headline--line .beta:after,
.h-headline--line .gamma:after,
.h-headline--line .delta:after,
.h-headline--line .epsilon:after,
.h-headline--line .zeta:after,
.h-headline--line h1:after,
.h-headline--line h2:after,
.h-headline--line h3:after,
.h-headline--line h4:after,
.h-headline--line h5:after,
.h-headline--line h6:after {
  content: '';
  display: inline-block;
  vertical-align: bottom;
  width: 22px;
  height: 4px;
  bottom: 6px;
  position: absolute;
  background-color: #c6bc6a;
  right: -25px;
}

@media (min-width: 576px) {
  .h-headline--line .alfa:after,
  .h-headline--line .beta:after,
  .h-headline--line .gamma:after,
  .h-headline--line .delta:after,
  .h-headline--line .epsilon:after,
  .h-headline--line .zeta:after,
  .h-headline--line h1:after,
  .h-headline--line h2:after,
  .h-headline--line h3:after,
  .h-headline--line h4:after,
  .h-headline--line h5:after,
  .h-headline--line h6:after {
    bottom: 8px;
    width: 30px;
    height: 6px;
    right: -35px;
  }
}

@media (min-width: 771px) {
  .h-headline--line-large .alfa:after,
  .h-headline--line-large .beta:after,
  .h-headline--line-large .gamma:after,
  .h-headline--line-large .delta:after,
  .h-headline--line-large .epsilon:after,
  .h-headline--line-large .zeta:after,
  .h-headline--line-large h1:after,
  .h-headline--line-large h2:after,
  .h-headline--line-large h3:after,
  .h-headline--line-large h4:after,
  .h-headline--line-large h5:after,
  .h-headline--line-large h6:after {
    width: 50px;
    height: 8px;
    bottom: 10px;
    right: -55px;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  outline: none;
  font-family: "Microsoft Phags Pa", 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: #ded483;
  font-family: "Tarrget Condensed", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.a-link__text--black {
  color: #ded483;
}

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

.a-link__text--purple {
  color: #ded483;
}

.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: "Microsoft Phags Pa", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
  -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);
}

p a {
  color: currentColor;
}

@media (min-width: 2200px) {
  p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 2500px) {
  p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

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

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

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

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

@media (min-width: 771px) {
  .p--size-18 p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

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

@media (max-width: 575px) {
  .p--xs-size-12 p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 575px) {
  .p--xs-size-14 p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p--spacing-1-7 p {
  letter-spacing: 1.2px;
}

@media (min-width: 576px) {
  .p--spacing-1-7 p {
    letter-spacing: 1.7px;
  }
}

.p--spacing-3 p {
  letter-spacing: 3px;
}

.p--spacing-15 p {
  letter-spacing: 3px;
}

@media (min-width: 576px) {
  .p--spacing-15 p {
    letter-spacing: 6px;
  }
}

@media (min-width: 771px) {
  .p--spacing-15 p {
    letter-spacing: 9px;
  }
}

.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: 2rem;
}

ul.list-style li,
ol.list-style li {
  position: relative;
  display: block;
  margin-bottom: 12px;
  padding-left: 25px;
  color: #000000;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  font-size: 0.9375rem;
}

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: 8px;
  left: 3px;
  display: block;
  width: 8px;
  height: 8px;
  background-color: #ded483;
}

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;
}

@media (min-width: 2200px) {
  ul.list-style li,
  ol.list-style li {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  ul.list-style li:before,
  ol.list-style li:before {
    top: 12px;
  }
}

@media (min-width: 2500px) {
  ul.list-style li,
  ol.list-style li {
    font-size: 19px;
    font-size: 1.1875rem;
  }
  ul.list-style li:before,
  ol.list-style li:before {
    top: 12px;
  }
}

.swiper-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  outline: none;
  z-index: 6;
}

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

.swiper-arrow-next {
  right: 0;
}

.swiper-arrow-next.swiper-button-disabled {
  display: none;
}

.swiper-arrow-prev {
  left: 0;
  right: auto;
}

.swiper-arrow-prev.swiper-button-disabled {
  display: none;
}

.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;
  cursor: pointer;
  height: 60px;
  width: 60px;
}

@media (min-width: 771px) {
  .swiper-arrow-content {
    height: 110px;
    width: 110px;
  }
}

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

.swiper-arrow-content svg {
  fill: #dd2225;
  font-size: 60px;
  font-size: 3.75rem;
}

@media (min-width: 771px) {
  .swiper-arrow-content svg {
    font-size: 110px;
    font-size: 6.875rem;
  }
}

.swiper-pagination {
  position: relative;
  width: 100%;
}

.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: 12px;
  height: 12px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #000000;
  border-radius: 100%;
}

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

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

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.lg-autoplay-button.lg-icon {
  display: none;
}

.link-animation--block .link-animation--text,
.link-animation {
  position: relative;
  overflow: hidden;
}

.link-animation--block .link-animation--text:after,
.link-animation:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translateX(-101%);
      -ms-transform: translateX(-101%);
          transform: translateX(-101%);
  background-color: currentColor;
}

.link-animation--block .link-animation--text.animate-out:after,
.link-animation.animate-out:after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.link-animation.animate-out:after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.link-animation:hover:after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.link-animation--block.animate-out .link-animation--text:after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.link-animation--block:hover .link-animation--text:after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

/* 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-5 {
  padding: 3rem 0 3rem;
}

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

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

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

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

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

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

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

.padding-style-7 {
  padding: 4rem 0.5rem 4rem;
}

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

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

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

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

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

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

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

.padding-style-15-10 {
  padding: 7rem 0 7rem;
}

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

.padding-style-33-10 {
  padding: 4rem 0.5rem 4rem;
}

@media (min-width: 576px) {
  .padding-style-33-10 {
    margin-top: -8rem;
    padding: 20rem 0.5rem 6rem;
  }
}

@media (min-width: 771px) {
  .padding-style-33-10 {
    padding: 35rem 0 15rem;
  }
}

.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-300 {
  max-width: 300px;
}

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

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

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

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

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

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

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

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

.container-full {
  margin: 0 auto;
}

.container-small,
.container-normal,
.container-large {
  position: relative;
  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: 800px;
  }
}

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

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

.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: 1000px;
  }
}

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

.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;
  }
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  padding: 2rem 0.5rem 2rem;
  background-color: #000000;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 770px) {
  .footer__logo img {
    margin: 0 auto;
  }
}

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

@media (max-width: 770px) {
  .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%;
    min-height: 100vh;
    padding: 15px 25px 70px;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    background-color: #000000;
    -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: 60px;
    height: 60px;
  }
  .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: #ffffff;
    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: #ffffff;
  }
  .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: #000000;
}

@media (min-width: 771px) {
  .header__navigation {
    position: absolute;
    background-color: transparent;
    padding: 0 30px;
  }
}

.header__navigation.is-preparing {
  position: fixed;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: #000000;
}

@media (min-width: 771px) {
  .header__navigation.is-preparing .header__logo {
    padding: 10px 0 10px;
  }
  .header__navigation.is-preparing .header__logo-image {
    width: 252px;
  }
  .header__navigation.is-preparing .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__navigation.is-scrolling {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 450ms ease;
  transition: -webkit-transform 450ms ease;
  -o-transition: transform 450ms ease;
  transition: transform 450ms ease;
  transition: transform 450ms ease, -webkit-transform 450ms ease;
}

.header__flex {
  padding: 0;
}

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

.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: 8px 0 8px;
  text-align: center;
  -webkit-transition: padding 350ms ease;
  -o-transition: padding 350ms ease;
  transition: padding 350ms ease;
}

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

.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: 770px) {
  .header__logo-image {
    width: 222px;
  }
}

@media (min-width: 771px) {
  .main-nav {
    display: none;
  }
}

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

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

.main-nav__list--fixed {
  display: none;
}

@media (min-width: 771px) {
  .main-nav__list--fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: -320px;
    left: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 200px;
    z-index: 4;
  }
  .main-nav__list--fixed .main-nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 12px;
  }
  .main-nav__list--fixed .main-nav__item:focus .main-nav__link, .main-nav__list--fixed .main-nav__item:hover .main-nav__link {
    color: #ded483;
  }
  .main-nav__list--fixed .main-nav__item.is-active .main-nav__link {
    -webkit-transform: translateX(15px);
        -ms-transform: translateX(15px);
            transform: translateX(15px);
  }
  .main-nav__list--fixed .main-nav__item.is-active .main-nav__link:after {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
    -o-transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 0.6s cubic-bezier(0.5, 0.7, 0.4, 1);
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .main-nav__list--fixed .main-nav__item .main-nav__link {
    padding: 10px 0;
    -webkit-transition: color 400ms cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 250ms ease;
    transition: color 400ms cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 250ms ease;
    -o-transition: transform 250ms ease, color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: transform 250ms ease, color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: transform 250ms ease, color 400ms cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 250ms ease;
  }
}

@media (min-width: 992px) {
  .main-nav__list--fixed {
    left: 55px;
  }
}

@media (min-width: 771px) {
  .main-nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 20px;
  }
}

@media (max-width: 770px) {
  .main-nav__item {
    display: block;
  }
}

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

.main-nav__link {
  position: relative;
  display: inline-block;
  padding: 16px 0;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.96px;
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-transition: color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  -o-transition: color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
  transition: color 400ms cubic-bezier(0.5, 0.7, 0.4, 1);
}

.main-nav__link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  -webkit-transform: translateX(-101%);
  -ms-transform: translateX(-101%);
  transform: translateX(-101%);
  background-color: currentColor;
}

@media (min-width: 771px) {
  .main-nav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* Social list */
.social-list__item {
  display: inline-block;
  margin: 0 5px 10px;
  vertical-align: middle;
}

.social-list__link {
  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;
  text-align: center;
  width: 50px;
  height: 50px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  font-size: 22px;
  font-size: 1.375rem;
}

.social-list__link svg {
  font-size: 26px;
  font-size: 1.625rem;
  fill: #c6bc6a;
}

.social-list__link:focus svg, .social-list__link:hover svg {
  fill: #ffffff;
}

/* Table block */
@media (max-width: 770px) {
  .table-responsives {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    min-height: 0.01%;
    border: 0 !important;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

table {
  width: 760px;
  border-collapse: collapse;
}

@media (min-width: 771px) {
  table {
    width: 100%;
  }
}

table th {
  font-family: "Tarrget Condensed", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #242423;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2.97px;
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 771px) {
  table th {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

table tbody tr:nth-child(odd) td .table-text {
  background-color: #f3f3f3;
}

table tbody tr:nth-child(odd) td:first-child .table-text {
  background-color: #e80000;
  color: white;
}

table tbody tr td:first-child {
  padding: 0;
  width: 60px;
  text-align: center;
}

table th {
  padding: 0 15px 0 15px;
}

table th:first-child {
  padding: 0;
  width: 60px;
}

table th .table-text {
  padding: 8px 0 8px 0;
}

table td {
  padding: 0 15px 0 15px;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  font-size: 13px;
  font-size: 0.8125rem;
}

table td .table-text {
  padding: 10px 12px 10px 12px;
}

.table {
  margin-bottom: 50px;
  border: 1px solid #f2f2f2;
}

.table__header {
  background-color: #f7f7f7;
}

.table__row {
  position: relative;
  display: table;
  width: 100%;
}

.table__row--header {
  height: 50px;
}

.table__row--body {
  height: 100px;
}

.table__row--body:nth-child(even) {
  background-color: #f7f7f7;
}

.table__cell {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

.table__cell--header {
  padding: 10px 5px;
}

@media (min-width: 370px) {
  .table__cell--header {
    padding: 10px 10px;
  }
}

@media (min-width: 771px) {
  .table__cell--header {
    padding: 10px 20px;
  }
}

.table__cell--body {
  padding: 10px 5px;
}

@media (min-width: 370px) {
  .table__cell--body {
    padding: 10px 10px;
  }
}

@media (min-width: 771px) {
  .table__cell--body {
    padding: 10px 20px;
  }
}

.table__text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #000000;
}

.table__text--header {
  font-size: 10px;
  font-size: 0.625rem;
  text-transform: uppercase;
}

.table__text--body {
  margin-bottom: 0;
  padding: 10px 0;
  font-size: 16px;
  font-size: 1rem;
  color: #000000;
}

.hero-section {
  padding: 4rem 0.5rem 4rem;
}

@media (min-width: 576px) {
  .hero-section {
    padding: 28rem 0.5rem 6rem;
  }
}

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

.hero-section-small {
  padding: 6rem 0.5rem 4rem;
}

@media (min-width: 576px) {
  .hero-section-small {
    padding: 6rem 0.5rem 0;
  }
}

@media (min-width: 771px) {
  .hero-section-small {
    padding: 14rem 0 0;
  }
  .hero-section-small .main-nav__list--fixed {
    top: -50px;
  }
}

@media (min-width: 772px) and (max-width: 992px) {
  .hero-small-content {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .hero-small-content {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .hero-small-content {
    max-width: 750px;
    margin: 0 auto;
  }
}

.hero-headline {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 0.625rem 0.9375rem;
  color: #ded483;
  font-weight: 700;
  text-transform: uppercase;
  border: 3px solid #ded483;
  letter-spacing: 3px;
  line-height: 1.6;
  text-align: right;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  z-index: 5;
  font-size: 14px;
  font-size: 0.875rem;
}

@media (min-width: 576px) {
  .hero-headline {
    text-align: left;
    letter-spacing: 4px;
    line-height: 1.2;
    right: auto;
    z-index: 4;
    bottom: auto;
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
    -webkit-transform: translateX(-50%) rotateZ(90deg);
        -ms-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotateZ(90deg);
    top: 160px;
    left: calc(50% + 260px);
    min-width: 280px;
    padding: 0.9375rem 1.25rem;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 771px) {
  .hero-headline {
    top: 70px;
    left: calc(50% + 420px);
    padding: 1.25rem 1.875rem;
    font-size: 32px;
    font-size: 2rem;
    min-width: 520px;
  }
}

.hero-block {
  max-width: 880px;
  margin: 0 auto;
  margin-top: 6rem;
  background-color: white;
  padding: 1.875rem 1.25rem;
  margin-bottom: -60px;
}

@media (max-width: 770px) {
  .hero-block {
    margin-top: 4rem;
  }
  .hero-block .p--spacing-15 p {
    letter-spacing: 12px;
  }
}

@media (max-width: 575px) {
  .hero-block .p--spacing-15 p {
    letter-spacing: 5px;
  }
}

@media (min-width: 771px) {
  .hero-block {
    padding: 3.125rem 3.125rem 3.125rem;
    margin-top: 10rem;
    margin-bottom: -60px;
  }
}

.hero-block--small {
  margin-top: 4rem;
}

@media (min-width: 771px) {
  .hero-block--small {
    margin-top: 4rem;
  }
}

@media (min-width: 771px) {
  .hero-content {
    margin: 0 auto;
    max-width: 600px;
  }
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-overlay + .simpleParallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modern-info-box {
  position: relative;
}

@media (min-width: 771px) {
  .modern-info-box {
    width: 400px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (min-width: 992px) {
  .modern-info-box {
    width: 970px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 770px) {
  .modern-info-box-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -10px;
  }
}

.modern-info-box__item {
  color: #1c1c1c;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.96px;
  max-width: 250px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  width: 50%;
  padding: 0 10px;
}

@media (min-width: 576px) {
  .modern-info-box__item {
    width: 33.33%;
  }
}

@media (min-width: 771px) {
  .modern-info-box__item {
    padding: 0;
    width: auto;
    font-size: 16px;
    font-size: 1rem;
    position: absolute;
    margin-bottom: 0;
  }
}

.modern-info-box__item strong {
  display: block;
  font-weight: 700;
  color: #eb1313;
}

@media (min-width: 2200px) {
  .modern-info-box__item {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 2500px) {
  .modern-info-box__item {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 771px) {
  .modern-info-box__item--1 {
    top: 10px;
    left: -70px;
  }
}

@media (min-width: 992px) {
  .modern-info-box__item--1 {
    top: 10px;
    left: 230px;
  }
}

@media (min-width: 771px) {
  .modern-info-box__item--2 {
    top: 10px;
    right: -70px;
  }
}

@media (min-width: 992px) {
  .modern-info-box__item--2 {
    top: 10px;
    right: 230px;
  }
}

@media (min-width: 771px) {
  .modern-info-box__item--3 {
    top: 170px;
    left: -170px;
  }
}

@media (min-width: 992px) {
  .modern-info-box__item--3 {
    top: 170px;
    left: 50px;
  }
}

@media (min-width: 771px) {
  .modern-info-box__item--4 {
    top: 170px;
    right: -170px;
  }
}

@media (min-width: 992px) {
  .modern-info-box__item--4 {
    top: 170px;
    right: 50px;
  }
}

@media (min-width: 771px) {
  .modern-info-box__item--5 {
    top: 320px;
    left: -140px;
  }
}

@media (min-width: 992px) {
  .modern-info-box__item--5 {
    top: 430px;
    left: 50px;
  }
}

@media (min-width: 771px) {
  .modern-info-box__item--6 {
    top: 310px;
    right: -120px;
  }
}

@media (min-width: 992px) {
  .modern-info-box__item--6 {
    top: 420px;
    right: 80px;
  }
}

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

@media (max-width: 770px) {
  .ecology-content {
    margin: 0 auto;
  }
}

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

@media (min-width: 992px) {
  .ecology-content {
    padding: 12rem 0 12rem;
  }
}

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

@media (max-width: 770px) {
  .jobs-content {
    margin: 0 auto;
  }
}

@media (min-width: 576px) {
  .jobs-content {
    padding: 4rem 0 9rem;
  }
}

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

@media (min-width: 992px) {
  .jobs-content {
    padding: 12rem 0 12rem;
  }
}

@media (max-width: 770px) {
  .ecology-bg-group {
    position: relative;
  }
}

@media (max-width: 770px) {
  .jobs-bg-group {
    position: relative;
  }
}

.section-partners {
  background: #020202;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#020202), to(#232323));
  background: -o-linear-gradient(top, #020202 0%, #232323 100%);
  background: linear-gradient(to bottom, #020202 0%, #232323 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#020202', endColorstr='#232323',GradientType=0 );
  /* IE6-9 */
}

.partners {
  margin-bottom: 40px;
}

.partners:last-child {
  margin-bottom: 0;
}

.partners .swiper-container,
.partners .swiper-wrapper {
  width: 100%;
}

.partner__item {
  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: 80px;
  cursor: pointer;
}

.partner__item a {
  height: 100%;
  padding: 5px 10px;
}

.partner__item:hover img {
  opacity: 1;
}

.partner__item img {
  opacity: 0.8;
  margin: 0 auto;
}

.partner-white {
  background-color: white;
}

.partners--small {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .partners--small {
    max-width: 80%;
  }
}

@media (min-width: 1200px) {
  .partners--small {
    max-width: 70%;
  }
}

.studium__item--btn .studium__content {
  text-align: center;
  background-color: #dd2225;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
}

.studium__item--btn .studium__content:hover .btn--border-gradient-white {
  color: #dd2225;
}

.studium__item--btn .studium__content:hover .btn--border-gradient-white .btn--border-gradient:after {
  -webkit-transform: scaleX(0.97) scaleY(0.8);
      -ms-transform: scaleX(0.97) scaleY(0.8);
          transform: scaleX(0.97) scaleY(0.8);
  opacity: 1;
}

.studium__item--btn .studium__content p {
  font-family: "Microsoft Phags Pa Bold", Arial, sans-serif;
  font-weight: 700;
}

.studium__content {
  display: block;
  position: relative;
  height: 300px;
}

@media (min-width: 771px) {
  .studium__content {
    height: 390px;
  }
}

.studium__content .simpleParallax {
  height: 100%;
  width: 100%;
}

.studium__content:hover .studium__info-block .btn {
  background-color: #dd2225;
  color: white;
  padding-left: 60px;
}

.studium__content:hover .studium__info-block .btn:before, .studium__content:hover .studium__info-block .btn:after {
  opacity: 1;
}

.studium__info-block {
  position: absolute;
  left: 50%;
  max-width: 90%;
  width: 90%;
  top: calc(50% + 80px);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
}

.studium__info-block .btn {
  position: relative;
  width: 100%;
  text-transform: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 14px;
  font-size: 0.875rem;
  height: 60px;
  text-align: left;
}

.studium__info-block .btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  width: 22px;
  height: 22px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/link.png");
}

.studium__info-block .btn:after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 103%;
  height: 110%;
  border: 3px solid white;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}

.studium__info-block .btn--border-gradient {
  height: 60px;
}

.studium__info-block .btn--border-gradient__middle:before {
  width: calc(95% - 43px);
}

.studium__info-block .btn--border-gradient-left-top .btn--border-gradient__middle:before {
  width: 100%;
}

@media (min-width: 771px) {
  .section-projects .container-large {
    padding: 0;
    margin-right: 0;
    width: calc((100vw - 730px) / 2 + 730px);
  }
}

@media (min-width: 992px) {
  .section-projects .container-large {
    width: calc((100vw - 950px) / 2 + 950px);
  }
}

@media (min-width: 1200px) {
  .section-projects .container-large {
    width: calc((100vw - 1140px) / 2 + 1140px);
  }
}

@media (min-width: 1440px) {
  .section-projects .container-large {
    width: calc((100vw - 1360px) / 2 + 1360px);
  }
}

.swiper-arrow-next.swiper-button-disabled + .swiper-arrow + .swiper-container .swiper-slide:last-child {
  -webkit-filter: blur(0) !important;
          filter: blur(0) !important;
}

@media (min-width: 771px) {
  .swiper-arrow-next.swiper-button-disabled + .swiper-arrow + .swiper-container .swiper-slide:last-child {
    -webkit-filter: blur(0) !important;
            filter: blur(0) !important;
  }
  .swiper-arrow-next.swiper-button-disabled + .swiper-arrow + .swiper-container .swiper-slide.swiper-slide-active {
    -webkit-filter: blur(3px) !important;
            filter: blur(3px) !important;
  }
}

@media (max-width: 770px) {
  .project-slider {
    margin: 0 -15px;
  }
}

.project-group .swiper-slide {
  padding: 25px 25px;
}

@media (min-width: 771px) {
  .project-group .swiper-slide {
    padding: 25px 0;
    width: calc((95% / 2) - 80px);
  }
}

@media (min-width: 992px) {
  .project-group .swiper-slide {
    width: calc((95% / 3) - 80px);
  }
}

@media (min-width: 1200px) {
  .project-group .swiper-slide {
    width: calc((95% / 3) - 80px);
  }
}

@media (min-width: 1440px) {
  .project-group .swiper-slide {
    width: calc((95% / 4) - 80px);
  }
}

@media (min-width: 1800px) {
  .project-group .swiper-slide {
    width: calc((95% / 5) - 80px);
  }
}

@media (min-width: 772px) and (max-width: 992px) {
  .project-group .swiper-slide.swiper-slide-next + .swiper-slide {
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .project-group .swiper-slide.swiper-slide-next + .swiper-slide + .swiper-slide {
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  .project-group .swiper-slide.swiper-slide-next + .swiper-slide + .swiper-slide {
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
}

@media (min-width: 1441px) and (max-width: 1600px) {
  .project-group .swiper-slide.swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide {
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
}

@media (min-width: 1601px) and (max-width: 1800px) {
  .project-group .swiper-slide.swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide {
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
}

@media (min-width: 1800px) {
  .project-group .swiper-slide.swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide + .swiper-slide {
    -webkit-filter: blur(3px);
            filter: blur(3px);
  }
}

.project__item {
  overflow: hidden;
  border-radius: 25px;
  z-index: 2;
  position: relative;
  height: 460px;
  display: block;
  -webkit-box-shadow: 10px -5px 10px 9px rgba(0, 0, 0, 0.19);
          box-shadow: 10px -5px 10px 9px rgba(0, 0, 0, 0.19);
}

@media (min-width: 771px) {
  .project__item {
    -webkit-box-shadow: 10px -5px 10px 9px rgba(0, 0, 0, 0.19);
            box-shadow: 10px -5px 10px 9px rgba(0, 0, 0, 0.19);
    height: 530px;
  }
}

.project__item:hover {
  background-color: #f43f3f;
}

.project__item:hover svg {
  display: inline-block;
}

.project__item:hover .project__info-block {
  height: 100%;
  text-align: center;
  background-color: transparent;
}

.project__item:hover .project__info-inner > .project__text,
.project__item:hover .project__info-inner > svg {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
}

.project__item:hover .project__info-top {
  visibility: visible;
  opacity: 1;
  width: auto;
  height: auto;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 250ms 150ms ease-out, -webkit-transform 250ms 150ms ease-out;
  transition: opacity 250ms 150ms ease-out, -webkit-transform 250ms 150ms ease-out;
  -o-transition: opacity 250ms 150ms ease-out, transform 250ms 150ms ease-out;
  transition: opacity 250ms 150ms ease-out, transform 250ms 150ms ease-out;
  transition: opacity 250ms 150ms ease-out, transform 250ms 150ms ease-out, -webkit-transform 250ms 150ms ease-out;
}

.project__item img {
  overflow: hidden;
  border-radius: 25px;
  z-index: 2;
  position: relative;
  mix-blend-mode: multiply;
}

.project__info-block {
  position: absolute;
  background-color: #dd2225;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.5rem;
  height: 80px;
  z-index: 2;
  -webkit-transition: height 250ms ease-out;
  -o-transition: height 250ms ease-out;
  transition: height 250ms ease-out;
}

.project__info-block svg {
  display: none;
  fill: white;
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 15px;
}

.project__info-top {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
  text-align: center;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.project__info-inner {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
}

.project__text {
  width: 100%;
  color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 2.98px;
}

.about-section .simpleParallax {
  height: 100%;
}

@media (min-width: 772px) and (max-width: 992px) {
  .about-section .beta {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media (min-width: 577px) and (max-width: 771px) {
  .about-section .beta {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.about-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: 100%;
  padding: 4rem 1.2rem 4rem;
}

@media (min-width: 771px) {
  .about-content {
    padding: 7rem 2.5rem 6rem;
  }
}

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

@media (min-width: 992px) {
  .result-content {
    margin-bottom: -120px;
    padding: 5rem 2.5rem 0;
  }
}

.box-program--red-border {
  padding: 2.5rem 1.2rem 2.5rem;
  border: 2px solid #eb1313;
  margin-bottom: 3rem;
}

@media (min-width: 771px) {
  .box-program--red-border {
    border: 2px solid #eb1313;
    margin: 0 -30px 4rem;
    padding: 2.1875rem 1.875rem 2.1875rem;
  }
}

@media (min-width: 1200px) {
  .box-program--red-border {
    margin: 0 -65px 4rem;
    padding: 3.4375rem 4.0625rem 3.4375rem;
  }
}

.box-program--gray {
  background-color: #1a1a1a;
  padding: 2.5rem 1.2rem 2rem;
}

@media (min-width: 771px) {
  .box-program--gray {
    padding: 2.1875rem 1.875rem 1.25rem;
  }
}

@media (min-width: 1200px) {
  .box-program--gray {
    padding: 3.4375rem 4.0625rem 1.5625rem;
  }
}

.program-headline {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}

@media (min-width: 370px) {
  .program-headline {
    bottom: 50px;
  }
}

@media (min-width: 576px) {
  .program-headline {
    z-index: 3;
    bottom: auto;
    top: 100px;
    right: 30px;
  }
}

@media (min-width: 771px) {
  .program-headline {
    top: 200px;
    right: 60px;
  }
}

@media (min-width: 992px) {
  .program-headline {
    right: 120px;
  }
}

.program-headline__text {
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 20px;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 1.5625rem;
  text-align: right;
}

@media (min-width: 576px) {
  .program-headline__text {
    margin-bottom: 2.5rem;
    letter-spacing: 35px;
  }
}

@media (min-width: 771px) {
  .program-headline__text {
    letter-spacing: 45px;
  }
}

@media (min-width: 992px) {
  .program-headline__text {
    letter-spacing: 55px;
  }
}

.quote {
  position: relative;
  color: #acacac;
  text-transform: uppercase;
  letter-spacing: 4.5px;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Microsoft Phags Pa Bold", Arial, sans-serif;
}

@media (min-width: 771px) {
  .quote {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.quote:before, .quote:after {
  content: ',,';
  position: absolute;
  letter-spacing: -30px;
  opacity: 0.12;
  color: #080101;
  line-height: 0;
  font-family: 'Microsoft Sans Serif';
  z-index: 4;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 400;
  font-size: 250px;
  font-size: 15.625rem;
}

@media (min-width: 771px) {
  .quote:before, .quote:after {
    letter-spacing: -50px;
    height: 200px;
    opacity: 0.12;
    font-size: 470px;
    font-size: 29.375rem;
  }
}

.quote:before {
  line-height: 0;
  top: -140px;
  left: -20px;
}

@media (min-width: 771px) {
  .quote:before {
    top: -250px;
    left: -100px;
  }
}

@media (min-width: 1200px) {
  .quote:before {
    left: -190px;
  }
}

.quote:after {
  line-height: 0;
  bottom: -150px;
  right: -20px;
  -webkit-transform: rotateZ(180deg);
      -ms-transform: rotate(180deg);
          transform: rotateZ(180deg);
}

@media (min-width: 771px) {
  .quote:after {
    bottom: -200px;
    right: -120px;
  }
}

@media (min-width: 1200px) {
  .quote:after {
    right: -210px;
  }
}

.hexagon {
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg);
  cursor: pointer;
}

.hexagon--130 {
  width: 130px;
  margin: 0 auto;
}

.hexagon--black {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#3c3c3c));
  background-image: -o-linear-gradient(top, #000000 0%, #3c3c3c 100%);
  background-image: linear-gradient(to bottom, #000000 0%, #3c3c3c 100%);
}

.hexagon__inner {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-60deg);
      -ms-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.hexagon__inner--inner {
  width: 100%;
  height: 100%;
  visibility: visible;
  -webkit-transform: rotate(-60deg);
      -ms-transform: rotate(-60deg);
          transform: rotate(-60deg);
}

.benefit__item {
  margin-bottom: 3rem;
}

.benefit__content {
  text-align: center;
}

.benefit__text {
  color: white;
  line-height: 1.8;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-top: 15px;
  z-index: 2;
  position: relative;
  font-weight: 700;
  font-family: "Microsoft Phags Pa Bold", Arial, sans-serif;
}

.benefit__hexagon {
  position: relative;
  margin: 0 auto;
}

.benefit__hexagon img {
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 0 45px red);
          filter: drop-shadow(0 0 45px red);
}

.benefit__hexagon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 70px;
  font-size: 4.375rem;
  fill: #dd2225;
}

.sign-up-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;
  min-height: 70px;
  background-color: #ded483;
  padding: 10px 0;
}

.sign-up-list {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sign-up-list__item {
  display: inline-block;
  position: relative;
  margin: 8px 8px 8px;
  padding: 0 15px;
  color: #222222;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
}

.sign-up-list__item:hover {
  color: #dd2225;
}

.sign-up-list__item:after {
  content: '';
  width: 6px;
  height: 12px;
  display: block;
  position: absolute;
  top: calc(50% + 1px);
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images/icons/chevron-right-red.svg");
}

.sign-up-text {
  display: inline-block;
  position: relative;
  padding: 0 15px;
  color: #222222;
  font-family: "Microsoft Phags Pa", Arial, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
}

.sign-up-text:before, .sign-up-text:after {
  content: '';
  width: 6px;
  height: 12px;
  display: block;
  position: absolute;
  top: calc(50% + 2px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sign-up-text:before {
  left: 0;
  background-image: url("../images/icons/chevron-right-red.svg");
}

.sign-up-text:after {
  right: 0;
  background-image: url("../images/icons/chevron-left-red.svg");
}

.why-us {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  margin-top: 3.75rem;
}

@media (max-width: 770px) {
  .why-us {
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (min-width: 771px) {
  .why-us {
    height: 350px;
    margin-bottom: 6.25rem;
    margin-top: 6.25rem;
    max-width: 75%;
  }
}

@media (min-width: 992px) {
  .why-us {
    max-width: 70%;
  }
}

@media (min-width: 1200px) {
  .why-us {
    max-width: 75%;
  }
}

@media (min-width: 1440px) {
  .why-us {
    max-width: 80%;
  }
}

@media (min-width: 1600px) {
  .why-us {
    max-width: 92%;
  }
}

@media (min-width: 2000px) {
  .why-us {
    max-width: 100%;
  }
}

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

@media (max-width: 770px) {
  .why-us__item {
    width: 50%;
    margin: 1.5rem 0;
    padding: 0 15px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .why-us__item {
    margin: 1.2rem 0;
    width: 100%;
  }
}

@media (min-width: 771px) {
  .why-us__item {
    position: absolute;
  }
}

@media (min-width: 771px) {
  .why-us__item:hover .why-us__text {
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.47);
  }
}

@media (min-width: 992px) {
  .why-us__item:hover .why-us__text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media (min-width: 771px) {
  .why-us__item:hover .why-us__text strong,
  .why-us__item:hover .why-us__text span {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ded483;
  }
}

@media (min-width: 771px) {
  .why-us__item:hover .why-us__text strong {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 992px) {
  .why-us__item:hover .why-us__text strong {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media (min-width: 771px) {
  .why-us__item--1 {
    top: 0;
    left: 0;
  }
}

@media (min-width: 771px) {
  .why-us__item--2 {
    top: 80px;
    left: 25%;
  }
}

@media (min-width: 771px) {
  .why-us__item--3 {
    top: 30px;
    right: 40%;
  }
}

@media (min-width: 771px) {
  .why-us__item--4 {
    top: 0;
    right: 0;
  }
}

@media (min-width: 771px) {
  .why-us__item--5 {
    bottom: 0;
    left: 25px;
  }
}

@media (min-width: 771px) {
  .why-us__item--6 {
    bottom: 130px;
    left: 40%;
  }
}

@media (min-width: 771px) {
  .why-us__item--7 {
    bottom: 120px;
    right: 30px;
  }
}

@media (min-width: 771px) {
  .why-us__item--8 {
    bottom: 0;
    right: 20%;
  }
}

.why-us__text {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.71px;
  -webkit-transition: font-size 250ms ease-out;
  -o-transition: font-size 250ms ease-out;
  transition: font-size 250ms ease-out;
}

@media (min-width: 771px) {
  .why-us__text {
    font-size: 12px;
    font-size: 0.75rem;
    white-space: pre;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.why-us__text strong {
  display: block;
  margin-bottom: 0.2rem;
  letter-spacing: 0.96px;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-transition: font-size 250ms ease-out;
  -o-transition: font-size 250ms ease-out;
  transition: font-size 250ms ease-out;
}

@media (min-width: 771px) {
  .why-us__text strong {
    font-size: 16px;
    font-size: 1rem;
  }
}

.why-us__text span {
  display: block;
}

@media (min-width: 2200px) {
  .why-us__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .why-us__text strong {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 2500px) {
  .why-us__text {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .why-us__text strong {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.robots-block {
  position: relative;
  padding: 23.125rem 0.5rem 3.75rem;
}

@media (min-width: 576px) {
  .robots-block {
    padding: 23.125rem 0.5rem 3.75rem;
  }
}

@media (min-width: 771px) {
  .robots-block {
    position: static;
    padding: 23.4375rem 0 6.875rem;
  }
}

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