@charset "UTF-8";
/***** COLOURS *****/
/***** FONTS *****/
/***** DIMENSIONS *****/
/* resolutions */
@keyframes Rotate {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/***** BARS *****/
.tabs-bar {
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  list-style-type: none;
}

/***** BUTTONS *****/
.button {
  clear: both;
  display: inline-block;
  margin: 0 0 0 -3px;
  border: 0;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  font-family: Tahoma, Arial, sans-serif;
  border: 0;
  color: #fff;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  white-space: nowrap;
}
.button__wrapper {
  padding: 8px 32px;
  position: relative;
}
.button__wrapper:before, .button__wrapper:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.button__wrapper:before {
  top: 0;
  background: #fa6900;
}
.button__wrapper:after {
  top: -100%;
  background: #23aaba;
}
.button__inner {
  position: relative;
  z-index: 10;
}
.button:hover .button__wrapper:after {
  top: 0;
}

.button--large {
  font-size: 16px;
}
.button--large .button__wrapper {
  padding: 10px 40px;
}

.button--small {
  font-size: 12px;
}
.button--small .button__wrapper {
  padding: 8px 24px;
}

.button--dark .button__wrapper:before {
  background: #000;
}

.button--light {
  color: #fa6900;
}
.button--light .button__wrapper:before {
  background: #fff;
}
.button--light .button__wrapper:after {
  background: #fa6900;
}

.button--stroke {
  color: #fa6900;
}
.button--stroke .button__wrapper:before {
  border: 1px solid #fa6900;
  background: transparent;
}
.button--stroke .button__wrapper:after {
  background: #fa6900;
}
.button--stroke:hover, .button--stroke:focus {
  color: #fff;
}
.button--dark.button--stroke {
  color: #000;
}
.button--dark.button--stroke .button__wrapper:before {
  border-color: #000;
}
.button--dark.button--stroke .button__wrapper:after {
  background: #000;
}
.button--dark.button--stroke:hover, .button--dark.button--stroke:focus {
  color: #fff;
}

.button--light.button--stroke {
  color: #fff;
}
.button--light.button--stroke .button__wrapper:before {
  border-color: #fff;
}
.button--light.button--stroke .button__wrapper:after {
  background: #fff;
}
.button--light.button--stroke:hover, .button--light.button--stroke:focus {
  color: #fa6900;
}

.button--static:hover .button__wrapper:after, .button--static:focus .button__wrapper:after {
  top: -100%;
}

.simple-tab-button {
  padding: 8px 32px;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  color: #777;
}
.simple-tab-button:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fa6900;
  height: 3px;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin: -1px 0 0 0;
}

.simple-tab-button.active {
  color: #000;
}
.simple-tab-button.active:before {
  opacity: 1;
}

/***** CONTAINERS *****/
.button-container {
  padding: 20px 0 0 0;
}

@media (min-width: 768px) {
  .flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.flex-container--immediately {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-container--horizontally-center {
  align-items: center;
}

.flex-container--stretch {
  align-items: stretch;
}

.flex-container--horizontally-south {
  align-items: flex-end;
}

@media (min-width: 768px) {
  .flex-container--reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(1) {
    padding-left: 18px;
    padding-right: 0;
  }
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(2) {
    padding-right: 18px;
    padding-left: 0;
    padding-top: 0;
  }
}
@media (min-width: 1100px) {
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(1) {
    padding-left: 30px;
  }
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(2) {
    padding-right: 30px;
  }
}
@media (min-width: 1500px) {
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(1) {
    padding-left: 48px;
  }
  .flex-container--reverse .flex-column--6.flex-column--space:nth-child(2) {
    padding-right: 48px;
  }
}

.flex-container--from-tablet-xl {
  display: block;
}
@media (min-width: 992px) {
  .flex-container--from-tablet-xl {
    display: flex;
  }
}

.flex-column {
  min-height: 1px;
  padding: 20px 0 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .flex-column {
    padding: 0;
  }
}
.flex-column:first-child {
  padding-top: 0;
}

.flex-column--space {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .flex-column--space {
    padding: 0 12px;
  }
}
.flex-column--space:first-child {
  padding-left: 0;
}
.flex-column--space:last-child {
  padding-right: 0;
}

.flex-column--small-space {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .flex-column--small-space {
    padding: 0 8px;
  }
}
.flex-column--small-space:first-child {
  padding-left: 0;
}
.flex-column--small-space:last-child {
  padding-right: 0;
}

.flex-column--big-space {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .flex-column--big-space {
    padding: 0 20px;
  }
}
@media (min-width: 1300px) {
  .flex-column--big-space {
    padding: 0 40px;
  }
}
.flex-column--big-space:first-child {
  padding-left: 0;
}
.flex-column--big-space:last-child {
  padding-right: 0;
}

.flex-column--no-top-space {
  padding-top: 0;
}

@media (min-width: 768px) {
  .flex-column--8 {
    min-width: 66.66%;
    max-width: 66.66%;
  }
}

@media (min-width: 768px) {
  .flex-column--8.flex-column--space:nth-child(1) {
    padding-right: 12px;
  }
  .flex-column--8.flex-column--space:nth-child(2) {
    padding-left: 12px;
  }
}
@media (min-width: 1300px) {
  .flex-column--8.flex-column--space:nth-child(1) {
    padding-right: 20px;
  }
  .flex-column--8.flex-column--space:nth-child(2) {
    padding-left: 20px;
  }
}

@media (min-width: 768px) {
  .flex-column--7 {
    min-width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

.flex-column--7-from-tablet-xl {
  min-width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .flex-column--7-from-tablet-xl {
    min-width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .flex-column--6 {
    min-width: 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .flex-column--6.flex-column--small-space:nth-child(1) {
    padding-right: 10px;
  }
  .flex-column--6.flex-column--small-space:nth-child(2) {
    padding-left: 10px;
  }
}
@media (min-width: 1100px) {
  .flex-column--6.flex-column--small-space:nth-child(1) {
    padding-right: 16px;
  }
  .flex-column--6.flex-column--small-space:nth-child(2) {
    padding-left: 16px;
  }
}
@media (min-width: 1500px) {
  .flex-column--6.flex-column--small-space:nth-child(1) {
    padding-right: 24px;
  }
  .flex-column--6.flex-column--small-space:nth-child(2) {
    padding-left: 24px;
  }
}

@media (min-width: 768px) {
  .flex-column--6.flex-column--space:nth-child(1) {
    padding-right: 18px;
  }
  .flex-column--6.flex-column--space:nth-child(2) {
    padding-left: 18px;
  }
}
@media (min-width: 1100px) {
  .flex-column--6.flex-column--space:nth-child(1) {
    padding-right: 30px;
  }
  .flex-column--6.flex-column--space:nth-child(2) {
    padding-left: 30px;
  }
}
@media (min-width: 1500px) {
  .flex-column--6.flex-column--space:nth-child(1) {
    padding-right: 48px;
  }
  .flex-column--6.flex-column--space:nth-child(2) {
    padding-left: 48px;
  }
}

@media (min-width: 768px) {
  .flex-column--6.flex-column--big-space:nth-child(1) {
    padding-right: 40px;
  }
  .flex-column--6.flex-column--big-space:nth-child(2) {
    padding-left: 40px;
  }
}
@media (min-width: 1500px) {
  .flex-column--6.flex-column--big-space:nth-child(1) {
    padding-right: 60px;
  }
  .flex-column--6.flex-column--big-space:nth-child(2) {
    padding-left: 60px;
  }
}
@media (min-width: 1700px) {
  .flex-column--6.flex-column--big-space:nth-child(1) {
    padding-right: 80px;
  }
  .flex-column--6.flex-column--big-space:nth-child(2) {
    padding-left: 80px;
  }
}

@media (min-width: 768px) {
  .flex-column--6.flex-column--huge-space:nth-child(1) {
    padding-right: 32px;
  }
  .flex-column--6.flex-column--huge-space:nth-child(2) {
    padding-left: 32px;
  }
}
@media (min-width: 1300px) {
  .flex-column--6.flex-column--huge-space:nth-child(1) {
    padding-right: 48px;
  }
  .flex-column--6.flex-column--huge-space:nth-child(2) {
    padding-left: 48px;
  }
}
@media (min-width: 1500px) {
  .flex-column--6.flex-column--huge-space:nth-child(1) {
    padding-right: 80px;
  }
  .flex-column--6.flex-column--huge-space:nth-child(2) {
    padding-left: 80px;
  }
}
@media (min-width: 1700px) {
  .flex-column--6.flex-column--huge-space:nth-child(1) {
    padding-right: 100px;
  }
  .flex-column--6.flex-column--huge-space:nth-child(2) {
    padding-left: 100px;
  }
}

@media (min-width: 768px) {
  .flex-column--5 {
    min-width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

.flex-column--5--from-tablet-xl {
  min-width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .flex-column--5--from-tablet-xl {
    min-width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

@media (min-width: 768px) {
  .flex-column--4 {
    min-width: 33.33%;
    max-width: 33.33%;
  }
}

@media (min-width: 768px) {
  .flex-column--4.flex-column--space:nth-child(1) {
    padding-right: 24px;
  }
  .flex-column--4.flex-column--space:nth-child(2) {
    padding-left: 12px;
    padding-right: 12px;
  }
  .flex-column--4.flex-column--space:nth-child(3) {
    padding-left: 24px;
  }
}
@media (min-width: 1300px) {
  .flex-column--4.flex-column--space:nth-child(1) {
    padding-right: 40px;
  }
  .flex-column--4.flex-column--space:nth-child(2) {
    padding-left: 20px;
    padding-right: 20px;
  }
  .flex-column--4.flex-column--space:nth-child(3) {
    padding-left: 40px;
  }
}

@media (min-width: 768px) {
  .flex-column--3 {
    min-width: 25%;
    max-width: 25%;
  }
}

.common-ajax-items-manager {
  position: relative;
}
.common-ajax-items-manager__content-wrapper {
  position: relative;
}
.common-ajax-items-manager__loading-layer {
  background: rgba(255, 255, 255, 0.7);
  z-index: 8;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.common-ajax-items-manager__pager {
  padding: 32px 0 0 0;
}
@media (min-width: 1300px) {
  .common-ajax-items-manager__pager {
    padding-top: 48px;
  }
}

/***** FORMS *****/
.form__field-container {
  padding: 12px 0;
}
.form__field-container:first-child {
  padding-top: 0;
}
.form__field-container:last-child {
  padding-bottom: 0;
}
.form__field-container--separated-top {
  border-top: 1px solid #e1e1e1;
  margin-top: 12px;
}
.form__field-container--separated-bottom {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 12px;
}
.form__info-container {
  padding: 20px 0 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.form--bounded {
  max-width: 400px;
}

.horizontal-form__row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.horizontal-form__item {
  padding: 0 16px;
}
.horizontal-form__item:first-child {
  padding-left: 0;
}
.horizontal-form__item:last-child {
  padding-right: 0;
}

@media (min-width: 768px) {
  .fields-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 20px;
  }
}
@media (min-width: 768px) {
  .fields-row__item {
    padding: 0;
    flex-grow: 1;
    flex-basis: 50%;
  }
}

/***** FORM FIELDS *****/
.form-field {
  display: block;
  width: 100%;
  position: relative;
}
.form-field__wrapper {
  position: relative;
  display: block;
}
.form-field__inner {
  position: relative;
}
.form-field__decoration {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.form-field__core, .std-dropdown__header {
  display: block;
  padding: 8px 8px;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: none;
  color: #000;
  position: relative;
  font-size: 14px;
  text-align: left;
  z-index: 5;
  font-family: Tahoma, Arial, sans-serif;
  font-weight: 400;
  outline: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@media (min-width: 1700px) {
  .form-field__core, .std-dropdown__header {
    font-size: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.form-field__core:focus, .std-dropdown__header:focus {
  border-color: #000;
}
.form-field__core--code {
  font-family: "Courier New", monospace;
}
.form-field__core::-webkit-input-placeholder, .std-dropdown__header::-webkit-input-placeholder, .form-field__core:-moz-placeholder, .std-dropdown__header:-moz-placeholder, .form-field__core::-moz-placeholder, .std-dropdown__header::-moz-placeholder, .form-field__core:-ms-input-placeholder, .std-dropdown__header:-ms-input-placeholder {
  color: #e1e1e1;
  opacity: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .form-field__core::-webkit-input-placeholder, .std-dropdown__header::-webkit-input-placeholder, .form-field__core:-moz-placeholder, .std-dropdown__header:-moz-placeholder, .form-field__core::-moz-placeholder, .std-dropdown__header::-moz-placeholder, .form-field__core:-ms-input-placeholder, .std-dropdown__header:-ms-input-placeholder {
    text-align: left;
  }
}
.form-field__field-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-field__suffix {
  padding: 0 0 0 12px;
}
.form-field.error .form-field__title {
  color: #db2b39;
}
.form-field.error .form-field__core, .form-field.error .std-dropdown__header {
  border-color: #db2b39;
}

.form-field--underline .form-field__header {
  padding: 0 0 2px 0;
}
@media (min-width: 420px) {
  .form-field--underline .form-field__header {
    padding: 0 0 5px 0;
  }
}
.form-field--underline .form-field__core, .form-field--underline .std-dropdown__header {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.form-field--horizontal .form-field__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-field--horizontal .form-field__header {
  padding: 0 12px 0 0;
}
.form-field--horizontal .form-field__field-container {
  width: 100%;
}

.form-field--file {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-field--file .form-field__side-container {
  padding: 0 0 0 16px;
}
.form-field--file input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -999;
}

.choice-field {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
  cursor: pointer;
}
.choice-field__core {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  opacity: 0;
}
.choice-field__field {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: 4px;
}
.choice-field__field:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.choice-field__core:focus ~ .choice-field__field:before {
  background: transparent;
}
.choice-field__core:checked ~ .choice-field__field {
  border-color: #000;
}
.choice-field__core:checked ~ .choice-field__field:before {
  background: #001689;
}
.choice-field.choice-field--radio .choice-field__field {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.choice-field.choice-field--radio .choice-field__field:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.choice-field--light .choice-field__field {
  border: 1px solid #fff;
}
.choice-field--light .choice-field__core:focus ~ .choice-field__field:before {
  background: #fff;
}
.choice-field--light .choice-field__core:focus ~ .choice-field__field:before {
  background: #69d2e7;
}
.choice-field--light .choice-field__core:checked ~ .choice-field__field {
  border-color: #fff;
}

.choice-field.error .choice-field__field {
  border-color: #db2b39;
}

/***** HEADERS *****/
.section-header {
  padding: 0 0 32px 0;
}

.section-subheader {
  padding: 0 0 20px 0;
}

.subsection-header {
  padding: 0 0 32px 0;
}

.subsection-subheader {
  padding: 0 0 20px 0;
}

.simple-header {
  padding: 0 0 16px 0;
}

.plain-header {
  padding: 0 0 8px 0;
}
@media (min-width: 1700px) {
  .plain-header {
    padding-bottom: 12px;
  }
}

/***** ICONS *****/
.extended-icon, .icon-close, .icon-search--circle, .icon-search--secondary, .icon-search--light, .icon-search, .icon-location, .icon-simple-arrow, .icon-simple-arrow--top-right, .icon-simple-arrow--right-light, .icon-simple-arrow--left-light, .icon-simple-arrow--right, .icon-simple-arrow--left, .icon-instagram, .icon-facebook, .icon-email {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -10000px;
  text-align: left;
}
.extended-icon:before, .icon-close:before, .icon-search--circle:before, .icon-search--secondary:before, .icon-search--light:before, .icon-search:before, .icon-location:before, .icon-simple-arrow:before, .icon-simple-arrow--top-right:before, .icon-simple-arrow--right-light:before, .icon-simple-arrow--left-light:before, .icon-simple-arrow--right:before, .icon-simple-arrow--left:before, .icon-instagram:before, .icon-facebook:before, .icon-email:before, .extended-icon:after, .icon-close:after, .icon-search--circle:after, .icon-search--secondary:after, .icon-search--light:after, .icon-search:after, .icon-location:after, .icon-simple-arrow:after, .icon-simple-arrow--top-right:after, .icon-simple-arrow--right-light:after, .icon-simple-arrow--left-light:after, .icon-simple-arrow--right:after, .icon-simple-arrow--left:after, .icon-instagram:after, .icon-facebook:after, .icon-email:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.extended-icon:after, .icon-close:after, .icon-search--circle:after, .icon-search--secondary:after, .icon-search--light:after, .icon-search:after, .icon-location:after, .icon-simple-arrow:after, .icon-simple-arrow--top-right:after, .icon-simple-arrow--right-light:after, .icon-simple-arrow--left-light:after, .icon-simple-arrow--right:after, .icon-simple-arrow--left:after, .icon-instagram:after, .icon-facebook:after, .icon-email:after {
  opacity: 0;
}

.extended-icon--interactive, .icon-close, .icon-search--circle, .icon-search--secondary, .icon-search--light, .icon-search, .icon-simple-arrow, .icon-simple-arrow--top-right, .icon-simple-arrow--right-light, .icon-simple-arrow--left-light, .icon-simple-arrow--right, .icon-simple-arrow--left, .icon-instagram, .icon-facebook, .icon-email {
  cursor: pointer;
}
.extended-icon--interactive:hover:after, .icon-close:hover:after, .icon-search--circle:hover:after, .icon-search--secondary:hover:after, .icon-search--light:hover:after, .icon-search:hover:after, .icon-simple-arrow:hover:after, .icon-simple-arrow--top-right:hover:after, .icon-simple-arrow--right-light:hover:after, .icon-simple-arrow--left-light:hover:after, .icon-simple-arrow--right:hover:after, .icon-simple-arrow--left:hover:after, .icon-instagram:hover:after, .icon-facebook:hover:after, .icon-email:hover:after, .extended-icon--interactive:focus:after, .icon-close:focus:after, .icon-search--circle:focus:after, .icon-search--secondary:focus:after, .icon-search--light:focus:after, .icon-search:focus:after, .icon-simple-arrow:focus:after, .icon-simple-arrow--top-right:focus:after, .icon-simple-arrow--right-light:focus:after, .icon-simple-arrow--left-light:focus:after, .icon-simple-arrow--right:focus:after, .icon-simple-arrow--left:focus:after, .icon-instagram:focus:after, .icon-facebook:focus:after, .icon-email:focus:after {
  opacity: 1;
}

.plain-extended-icon {
  display: flex;
  position: relative;
}
.plain-extended-icon__base-layer {
  position: relative;
  display: flex;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.plain-extended-icon__above-layer {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.plain-extended-icon--interactive {
  cursor: pointer;
}
.plain-extended-icon--interactive:hover .plain-extended-icon__above-layer, .plain-extended-icon--interactive:focus .plain-extended-icon__above-layer {
  opacity: 1;
}

.icon-arrow {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  width: 12px;
  height: 12px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
}

.icon-arrow--small {
  width: 8px;
  height: 8px;
}

.icon-arrow--large {
  width: 16px;
  height: 16px;
}

.icon-arrow--huge {
  width: 20px;
  height: 20px;
}

.icon-arrow--thin {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.icon-arrow--west {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
}

.icon-arrow--north {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 1px;
}

.icon-arrow--east {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-arrow--south {
  -webkit-transform: rotate(-225deg);
  -moz-transform: rotate(-225deg);
  transform: rotate(-225deg);
  top: -4px;
}

.icon-arrow--south.icon-arrow--small {
  top: -2px;
}

.icon-arrow--primary {
  border-color: #fa6900;
}

.icon-hamburger {
  display: block;
  width: 28px;
  position: relative;
}
@media (min-width: 992px) {
  .icon-hamburger {
    width: 24px;
  }
}
.icon-hamburger__inner {
  height: 17px;
  position: relative;
  overflow: hidden;
}
.icon-hamburger__inner > div {
  position: absolute;
  left: 0;
  height: 2px;
  background: #000;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.icon-hamburger__inner > div:nth-child(1),
.icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger__inner > div:nth-child(2),
.icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
}
.icon-hamburger__inner > div:nth-child(3),
.icon-hamburger__inner > div:nth-child(6) {
  top: 14px;
}
.icon-hamburger__inner > div:nth-child(4) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-hamburger__inner > div:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-hamburger__inner > div:nth-child(6) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-bar {
  background: #fa6900;
  left: -100%;
}
.icon-hamburger__inner > .icon-hamburger__hover-bar:nth-child(4) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-bar:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-bar:nth-child(6) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-hamburger:hover .icon-hamburger__inner > .icon-hamburger__hover-bar, .icon-hamburger:focus .icon-hamburger__inner > .icon-hamburger__hover-bar {
  left: 0;
}

.icon-hamburger--incomplete-both-sides {
  width: 40px;
}
.icon-hamburger--incomplete-both-sides .icon-hamburger__inner > div {
  height: 1px;
}
.icon-hamburger--incomplete-both-sides .icon-hamburger__inner > div:nth-child(1) {
  width: 50%;
}
.icon-hamburger--incomplete-both-sides .icon-hamburger__inner > div:nth-child(3) {
  width: 50%;
  left: 50%;
}

.icon-hamburger--incomplete-both-sides.open .icon-hamburger__inner {
  overflow: visible;
}
.icon-hamburger--incomplete-both-sides.open .icon-hamburger__inner > div {
  background: #fff;
}
.icon-hamburger--incomplete-both-sides.open .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger--incomplete-both-sides.open .icon-hamburger__inner > div:nth-child(4) {
  top: 7px;
  left: auto;
  right: 0;
  width: 32px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-hamburger--incomplete-both-sides.open .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger--incomplete-both-sides.open .icon-hamburger__inner > div:nth-child(6) {
  opacity: 0;
  left: -100%;
}
.icon-hamburger--incomplete-both-sides.open .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger--incomplete-both-sides.open .icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 32px;
}

.icon-hamburger.open .icon-hamburger__inner {
  overflow: visible;
}
.icon-hamburger.open .icon-hamburger__inner > div {
  background: #fff;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(4) {
  top: 7px;
  left: auto;
  right: 0;
  width: 24px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(6) {
  opacity: 0;
  left: -100%;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 24px;
}

.icon-hamburger--primary .icon-hamburger__inner > div {
  background: #fa6900;
}

.icon-hamburger--light .icon-hamburger__inner > div {
  background: #fff;
}

.icon-hamburger--large {
  width: 32px;
}
.icon-hamburger--large .icon-hamburger__inner {
  height: 20px;
}
.icon-hamburger--large .icon-hamburger__inner > div {
  height: 4px;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(5) {
  top: 8px;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(6) {
  top: 16px;
}

.icon-hamburger--small {
  width: 20px;
  height: 12px;
}
.icon-hamburger--small .icon-hamburger__inner > div {
  height: 2px;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(5) {
  top: 5px;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(6) {
  top: 10px;
}

.icon-plus {
  width: 16px;
  height: 16px;
  position: relative;
}
.icon-plus:before, .icon-plus:after {
  content: "";
  display: block;
  position: absolute;
  background: #000;
}
.icon-plus:before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  margin: -1px 0 0 0;
}
.icon-plus:after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  margin: 0 0 0 -1px;
}

.icon-plus--rotated {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.icon-plus--light:before, .icon-plus--light:after {
  background: #fff;
}

.icon-loader {
  width: 32px;
  height: 32px;
  display: block;
  background: url("/img/icons/icon-loader.svg") no-repeat center;
  background-size: contain;
  -webkit-animation: Rotate 2s infinite linear;
  -moz-animation: Rotate 2s infinite linear;
  animation: Rotate 2s infinite linear;
}

.icon-loader--small {
  width: 20px;
  height: 20px;
}

.icon-loader--light {
  background-image: url("/img/icons/icon-loader-light.svg");
}

.icon-email {
  width: 48px;
  height: 48px;
}
.icon-email:before {
  background-image: url("/img/icons/medium/icon-email.svg");
}
.icon-email:after {
  background-image: url("/img/icons/medium/icon-email-primary.svg");
}

/***** IMAGES *****/
.logo, .logo-gf, .logo-jwg, .logo-fit-and-easy {
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  display: block;
  text-indent: -100000px;
  text-align: left;
  background-color: transparent;
  border: 0;
}

/***** LISTS *****/
.plain-list {
  list-style-type: none;
}
.plain-list > li {
  display: block;
  padding: 2px 0;
}

.simple-list {
  list-style-type: none;
}
.simple-list > li {
  padding: 4px 0;
}
.simple-list > li:first-child {
  padding-top: 0;
}
.simple-list > li:last-child {
  padding-bottom: 0;
}

.simple-list--more-space > li {
  padding: 12px 0;
}
.simple-list--more-space > li:first-child {
  padding-top: 0;
}
.simple-list--more-space > li:last-child {
  padding-bottom: 0;
}

.horizontal-items {
  list-style-type: none;
}
.horizontal-items > li {
  padding: 8px 0;
}
@media (min-width: 420px) {
  .horizontal-items > li {
    padding: 0 20px;
    display: inline-block;
    vertical-align: middle;
  }
}
@media (min-width: 1700px) {
  .horizontal-items > li {
    padding: 0 32px;
  }
}
.horizontal-items > li:first-child {
  padding-top: 0;
}
@media (min-width: 420px) {
  .horizontal-items > li:first-child {
    padding-left: 0;
  }
}
.horizontal-items > li:last-child {
  padding-bottom: 0;
}
@media (min-width: 420px) {
  .horizontal-items > li:last-child {
    padding-right: 0;
  }
}
.horizontal-items__distinguished {
  font-weight: 500;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumbs > li {
  position: relative;
  display: block;
}
.breadcrumbs > li:before {
  content: "››";
  padding: 0 12px 0 0;
}
.breadcrumbs > li:first-child:before {
  display: none;
}

/***** MENU *****/
.menu-toggler {
  cursor: pointer;
}

.menu-toggler-container {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 9999;
}

/***** OBJECTS *****/
.choice-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.choice-item__field {
  padding: 2px 0 0 0;
}
.choice-item__description {
  padding: 0 0 0 12px;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1700px) {
  .choice-item__description {
    font-size: 16px;
    line-height: 22px;
    padding-left: 16px;
  }
}

.lead__header {
  padding: 0 0 32px 0;
}
@media (min-width: 768px) {
  .lead__header {
    padding-bottom: 48px;
  }
}
@media (min-width: 992px) {
  .lead__header {
    padding-bottom: 60px;
  }
}
@media (min-width: 1500px) {
  .lead__header {
    padding-bottom: 72px;
  }
}
@media (min-width: 1700px) {
  .lead__header {
    padding-bottom: 96px;
  }
}
.lead__content {
  max-width: 420px;
}
@media (min-width: 1700px) {
  .lead__content {
    max-width: 460px;
  }
}
.lead__footer {
  padding: 32px 0 0 0;
}
@media (min-width: 768px) {
  .lead__footer {
    padding-top: 48px;
  }
}
@media (min-width: 992px) {
  .lead__footer {
    padding-top: 60px;
  }
}
@media (min-width: 1500px) {
  .lead__footer {
    padding-top: 72px;
  }
}
@media (min-width: 1700px) {
  .lead__footer {
    padding-top: 96px;
  }
}

.breadcrumb-item {
  color: #000;
  font-size: 14px;
  text-decoration: none;
}

.breadcrumb-item--interactive {
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.breadcrumb-item--interactive:hover, .breadcrumb-item--interactive:focus {
  color: #fa6900;
}

.tile {
  max-width: 460px;
  cursor: pointer;
}
.tile__wrapper {
  position: relative;
}
.tile__base-layer {
  background-size: cover;
  background-position: center;
  padding: 0 0 65% 0;
}
.tile__above-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tile__content-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #fff;
  -moz-background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.2) 100%);
  -webkit-background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.2) 100%);
  -o-background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.2) 100%);
  -ms-background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.2) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.2) 100%);
}
.tile__inner {
  padding: 32px 20px;
}
.tile__header {
  padding: 0 0 8px 0;
}
.tile__content-container {
  padding: 20px 0 0 0;
}
@media (min-width: 1700px) {
  .tile__content-container {
    padding-top: 32px;
  }
}
.tile:hover .tile__above-layer, .tile:focus .tile__above-layer {
  opacity: 0.3;
}

.tile--square {
  max-width: 300px;
}
.tile--square .tile__base-layer {
  padding-bottom: 100%;
}

.tile--content-revealing .tile__content-layer {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.tile--content-revealing:hover .tile__content-layer, .tile--content-revealing:focus .tile__content-layer {
  opacity: 1;
}

.icon-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.icon-label__icon-container {
  padding: 0 12px 0 0;
}
.icon-label__icon {
  display: block;
  width: 26px;
}
@media (min-width: 1700px) {
  .icon-label__icon {
    width: 32px;
  }
}
.icon-label__icon--small {
  width: 20px;
}
@media (min-width: 1700px) {
  .icon-label__icon--small {
    width: 24px;
  }
}

.icon-label--small-space .icon-label__icon-container {
  padding-right: 8px;
}

.icon-label--more-space .icon-label__icon-container {
  padding-right: 20px;
}

.icon-label--reverse .icon-label__icon-container {
  padding: 0 0 0 12px;
}

.icon-label--reverse.icon-label--more-space .icon-label__icon-container {
  padding-left: 20px;
}

.icon-label--decorated .icon-label__icon-container {
  position: relative;
  padding-right: 32px;
}
.icon-label--decorated .icon-label__icon-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 10%;
  right: 16px;
  width: 1px;
  height: 80%;
  background: rgba(0, 0, 0, 0.2);
}

.icon-item {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 1700px) {
  .icon-item {
    max-width: 400px;
  }
}
.icon-item__icon {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 1700px) {
  .icon-item__icon {
    width: 120px;
    height: 120px;
  }
}
.icon-item__icon-container {
  padding: 0 0 20px 0;
}
.icon-item__header {
  padding: 0 0 20px 0;
}

.pager-item {
  font-weight: 300;
  font-size: 20px;
}
.pager-item:before {
  background: #000;
}

.pager-item.active {
  font-weight: 700;
}

.titled-label__header {
  font-size: 14px;
  padding: 0 0 8px 0;
}
@media (min-width: 1700px) {
  .titled-label__header {
    font-size: 15px;
  }
}
.titled-label__content {
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 1300px) {
  .titled-label__content {
    font-size: 24px;
  }
}
@media (min-width: 1700px) {
  .titled-label__content {
    font-size: 26px;
  }
}

/***** TEXT *****/
.text, .text-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 1700px) {
  .text, .text-title {
    font-size: 16px;
    line-height: 26px;
  }
}
.text p, .text-title p {
  padding: 5px 0;
}
.text p:first-child, .text-title p:first-child {
  padding-top: 0;
}
.text p:last-child, .text-title p:last-child {
  padding-bottom: 0;
}
.text em, .text-title em {
  font-style: italic;
}
.text ol, .text-title ol {
  list-style-type: none;
  padding: 0 0 0 8px;
  counter-reset: textOrderedList;
}
.text ol > li, .text-title ol > li {
  position: relative;
  padding: 2px 0 2px 32px;
}
.text ol > li:before, .text-title ol > li:before {
  content: counters(textOrderedList, ".") ".";
  counter-increment: textOrderedList;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  padding: 0;
  text-align: right;
}
.text ul, .text-title ul {
  list-style-type: none;
  padding: 0 0 0 24px;
}
.text ul > li, .text-title ul > li {
  position: relative;
  padding: 2px 0 2px 16px;
}
.text ul > li:before, .text-title ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  padding: 0;
  background: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.text strong, .text-title strong {
  font-weight: 700;
}

.text--light a {
  color: #fff;
}

.text--thin {
  font-weight: 300;
}

.text--second-font {
  font-family: Tahoma, Arial, sans-serif;
}

.text--large {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 1700px) {
  .text--large {
    font-size: 20px;
    line-height: 28px;
  }
}
.text--large p {
  padding: 8px 0;
}
.text--large ul {
  padding: 0 0 0 24px;
}
.text--large ul > li {
  padding: 2px 0 2px 16px;
}
.text--large ul > li:before {
  top: 12px;
  width: 6px;
  height: 6px;
}

.text--very-large {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 650px) {
  .text--very-large {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1300px) {
  .text--very-large {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 1700px) {
  .text--very-large {
    font-size: 24px;
    line-height: 32px;
  }
}
.text--very-large p {
  padding: 8px 0;
}
.text--very-large ul {
  padding: 0 0 0 24px;
}
.text--very-large ul > li {
  padding: 2px 0 2px 16px;
}
.text--very-large ul > li:before {
  top: 12px;
  width: 6px;
  height: 6px;
}

.text--small {
  font-size: 12px;
  line-height: 20px;
}
@media (min-width: 1700px) {
  .text--small {
    font-size: 14px;
    line-height: 22px;
  }
}
.text--small ol {
  padding: 0 0 0 6px;
}
.text--small ol > li {
  padding: 1px 0 1px 30px;
}
.text--small ol > li:before {
  top: 1px;
}
.text--small ul {
  padding: 0 0 0 24px;
}
.text--small ul > li {
  padding: 1px 0 1px 12px;
}
.text--small ul > li:before {
  top: 10px;
  width: 4px;
  height: 4px;
}

.text--justify,
.text--document {
  text-align: justify;
}

.text--distinguished {
  font-weight: 700;
}

.text-container--2-columns {
  column-count: 2;
  column-gap: 48px;
}

.line {
  display: block;
}

/***** TITLES *****/
.section-title {
  font-size: 26px;
  font-weight: 700;
}
@media (min-width: 420px) {
  .section-title {
    font-size: 28px;
  }
}
@media (min-width: 480px) {
  .section-title {
    font-size: 30px;
  }
}
@media (min-width: 1300px) {
  .section-title {
    font-size: 34px;
  }
}
@media (min-width: 1700px) {
  .section-title {
    font-size: 40px;
  }
}

.section-title--large {
  font-size: 30px;
}
@media (min-width: 420px) {
  .section-title--large {
    font-size: 34px;
  }
}
@media (min-width: 480px) {
  .section-title--large {
    font-size: 36px;
  }
}
@media (min-width: 1300px) {
  .section-title--large {
    font-size: 40px;
  }
}
@media (min-width: 1700px) {
  .section-title--large {
    font-size: 50px;
  }
}

.section-title--small {
  font-size: 22px;
}
@media (min-width: 420px) {
  .section-title--small {
    font-size: 24px;
  }
}
@media (min-width: 480px) {
  .section-title--small {
    font-size: 26px;
  }
}
@media (min-width: 1300px) {
  .section-title--small {
    font-size: 28px;
  }
}
@media (min-width: 1700px) {
  .section-title--small {
    font-size: 30px;
  }
}

.section-subtitle {
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 420px) {
  .section-subtitle {
    font-size: 22px;
  }
}
@media (min-width: 480px) {
  .section-subtitle {
    font-size: 24px;
  }
}
@media (min-width: 1300px) {
  .section-subtitle {
    font-size: 26px;
  }
}
@media (min-width: 1700px) {
  .section-subtitle {
    font-size: 28px;
  }
}

.section-subtitle--large {
  font-size: 24px;
}
@media (min-width: 420px) {
  .section-subtitle--large {
    font-size: 26px;
  }
}
@media (min-width: 480px) {
  .section-subtitle--large {
    font-size: 28px;
  }
}
@media (min-width: 1300px) {
  .section-subtitle--large {
    font-size: 30px;
  }
}
@media (min-width: 1700px) {
  .section-subtitle--large {
    font-size: 34px;
  }
}

.section-subtitle--small {
  font-size: 16px;
}
@media (min-width: 420px) {
  .section-subtitle--small {
    font-size: 18px;
  }
}
@media (min-width: 480px) {
  .section-subtitle--small {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .section-subtitle--small {
    font-size: 22px;
  }
}
@media (min-width: 1700px) {
  .section-subtitle--small {
    font-size: 24px;
  }
}

.subsection-title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
@media (min-width: 420px) {
  .subsection-title {
    font-size: 15px;
  }
}
@media (min-width: 480px) {
  .subsection-title {
    font-size: 16px;
  }
}
@media (min-width: 1300px) {
  .subsection-title {
    font-size: 18px;
  }
}
@media (min-width: 1700px) {
  .subsection-title {
    font-size: 20px;
  }
}

.subsection-title--large {
  font-size: 16px;
}
@media (min-width: 420px) {
  .subsection-title--large {
    font-size: 18px;
  }
}
@media (min-width: 480px) {
  .subsection-title--large {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .subsection-title--large {
    font-size: 22px;
  }
}
@media (min-width: 1700px) {
  .subsection-title--large {
    font-size: 26px;
  }
}

.subsection-title--small {
  font-size: 12px;
}
@media (min-width: 420px) {
  .subsection-title--small {
    font-size: 13px;
  }
}
@media (min-width: 480px) {
  .subsection-title--small {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .subsection-title--small {
    font-size: 15px;
  }
}
@media (min-width: 1700px) {
  .subsection-title--small {
    font-size: 16px;
  }
}

.subsection-subtitle {
  font-size: 16px;
  font-style: italic;
}

.simple-title {
  font-size: 20px;
}
@media (min-width: 1700px) {
  .simple-title {
    font-size: 22px;
  }
}

.simple-title--small {
  font-size: 16px;
}
@media (min-width: 1700px) {
  .simple-title--small {
    font-size: 18px;
  }
}

.small-title {
  font-size: 12px;
  font-weight: 700;
}
@media (min-width: 1700px) {
  .small-title {
    font-size: 14px;
  }
}

.text-title {
  font-weight: 700;
}

.section-pretitle {
  font-size: 14px;
  color: #3d3d3d;
  font-style: italic;
  font-weight: 400;
}
@media (min-width: 1300px) {
  .section-pretitle {
    font-size: 16px;
  }
}

/***** WRAPPERS *****/
.button-wrapper {
  display: inline-block;
  position: relative;
}
.button-wrapper__inner {
  position: relative;
}
.button-wrapper__loader {
  right: 100%;
  padding: 0 10px 0 0;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  z-index: 2;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: absolute;
  top: 50%;
}
@media (min-width: 650px) {
  .button-wrapper__loader {
    right: auto;
    left: 100%;
    padding: 0 0 0 10px;
  }
}

.form-field-wrapper {
  display: block;
  width: 100%;
  position: relative;
}
.form-field-wrapper__header {
  padding: 0 0 5px 0;
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 420px) {
  .form-field-wrapper__header {
    padding: 0 0 8px 0;
  }
}
@media (min-width: 768px) {
  .form-field-wrapper__header {
    text-align: left;
  }
}
.form-field-wrapper__title {
  position: relative;
  font-weight: 500;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 14px;
}
@media (min-width: 1700px) {
  .form-field-wrapper__title {
    font-size: 16px;
  }
}

.form-field-wrapper.error .form-field-wrapper__title {
  color: #db2b39;
}

/***** MODULES *****/
.hawk-dropdown {
  position: relative;
  display: block;
}
.hawk-dropdown__sensor, .hawk-dropdown__start-escape-sensor {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -10000;
}
.hawk-dropdown__end-sensor, .hawk-dropdown__escape-sensor {
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: -10000;
}
.hawk-dropdown__header {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}
.hawk-dropdown__header-inner {
  position: relative;
}
.hawk-dropdown__searching-field {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: none;
  outline: none;
  z-index: 4;
}
.hawk-dropdown__searching-field:focus ~ * {
  opacity: 0.2;
}
.hawk-dropdown__searching-field[disabled] {
  display: none;
  width: 0;
  height: 0;
}
.hawk-dropdown__list-container {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  min-width: 100%;
  z-index: 10;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: 200px;
  overflow: hidden;
}
.hawk-dropdown__list > li {
  display: block;
}
.hawk-dropdown__list a {
  display: block;
}
.hawk-dropdown.hawk-dropdown--open {
  z-index: 8000;
}

.hawk-dropdown--expanding .hawk-dropdown__list-container {
  position: relative;
  top: 0;
}

.hawk-dropdown--upwards .hawk-dropdown__list-container {
  top: auto;
  bottom: 100%;
}

.std-dropdown__header:hover, .std-dropdown__header:focus {
  border-color: #000;
}
.std-dropdown__title {
  font-size: 14px;
  font-weight: 500;
}
.std-dropdown__list {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  border-top: 0;
  padding: 8px 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.std-dropdown.hawk-dropdown--open .std-dropdown__header {
  border-color: #fa6900;
  border-bottom-color: transparent;
}
.std-dropdown.hawk-dropdown--open .std-dropdown__list {
  border-color: #fa6900;
}

.dropdown-item {
  cursor: pointer;
  position: relative;
}
.dropdown-item__description {
  padding: 4px 12px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.dropdown-item__description:hover, .dropdown-item__field:focus ~ .dropdown-item__description {
  background: #f38630;
  color: #fff;
}
.dropdown-item__field:checked ~ .dropdown-item__description {
  background: #69d2e7;
}
.dropdown-item__field {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.pager-item {
  cursor: pointer;
  position: relative;
}
.pager-item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #fa6900;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.pager-item.active:before {
  opacity: 1;
}

.std-pager {
  display: flex;
  align-items: center;
  justify-content: center;
}
.std-pager__pages {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
.std-pager__item {
  padding: 0 4px;
}
.std-pager__separator {
  padding: 0 10px;
}
.std-pager__previous, .std-pager__next {
  cursor: pointer;
}
.std-pager__previous {
  padding: 0 12px 0 0;
}
.std-pager__next {
  padding: 0 0 0 12px;
}

.form__info-container {
  text-align: right;
}
.form__info-wrapper {
  display: none;
}
.form__info {
  opacity: 0;
}

.hawk-layered-section {
  position: relative;
}
.hawk-layered-section__above-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.hawk-layered-section__above-layer-inner, .hawk-layered-section__base-layer-inner {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.hawk-more-content {
  display: none;
}

.hawk-sliding-layer-section {
  position: relative;
  overflow: hidden;
}
.hawk-sliding-layer-section__layer {
  position: absolute;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100%;
  margin: 0 40px 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 1000;
}
@media (min-width: 1700px) {
  .hawk-sliding-layer-section__layer {
    width: 40%;
    right: -40%;
  }
}

.hawk-sliding-layer-section--active .hawk-sliding-layer-section__layer {
  right: 0;
  margin: 0;
}

.hawk-sliding-menu {
  position: fixed;
  z-index: 9020;
  display: block;
  width: 100%;
  height: 100%;
}
.hawk-sliding-menu__wrapper {
  min-height: 100%;
  position: relative;
  height: 100%;
}
/** fade **/
.hawk-sliding-menu--fade {
  display: none;
}

.hawk-sliding-menu--fade.hawk-sliding-menu--top {
  top: -2px;
  left: 0;
  right: auto;
  bottom: auto;
}

.hawk-sliding-menu--fade.hawk-sliding-menu--right {
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
}

.hawk-sliding-menu--fade.hawk-sliding-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
}

.hawk-sliding-menu--fade.hawk-sliding-menu--left {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}

/** slide **/
.hawk-sliding-menu--slide {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.hawk-sliding-menu--slide.hawk-sliding-menu--top {
  top: -110%;
  left: auto;
  right: 0;
  bottom: auto;
}

.hawk-sliding-menu--slide.hawk-sliding-menu--top.hawk-sliding-menu--open {
  top: -2px;
}

.hawk-sliding-menu--slide.hawk-sliding-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto;
}

.hawk-sliding-menu--slide.hawk-sliding-menu--right.hawk-sliding-menu--open {
  right: 0;
}

.hawk-sliding-menu--slide.hawk-sliding-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%;
}

.hawk-sliding-menu--slide.hawk-sliding-menu--bottom.hawk-sliding-menu--open {
  bottom: 0;
}

.hawk-sliding-menu--slide.hawk-sliding-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto;
}

.hawk-sliding-menu--slide.hawk-sliding-menu--left.hawk-sliding-menu--open {
  left: 0;
}

/** slide-fade **/
.hawk-sliding-menu--slide-fade {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -moz-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -o-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
}
.hawk-sliding-menu--slide-fade .hawk-sliding-menu__inner {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.hawk-sliding-menu--slide-fade.hawk-sliding-menu--open {
  -webkit-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -moz-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -o-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
}
.hawk-sliding-menu--slide-fade.hawk-sliding-menu--open .hawk-sliding-menu__inner {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in 0.4s;
  -moz-transition: opacity 0.3s ease-in 0.4s;
  -o-transition: opacity 0.3s ease-in 0.4s;
  transition: opacity 0.3s ease-in 0.4s;
}

.hawk-sliding-menu--slide-fade.hawk-sliding-menu--top {
  -webkit-transform: translate3d(0, -200%, 0);
  -moz-transform: translate3d(0, -200%, 0);
  transform: translate3d(0, -200%, 0);
  left: auto;
  right: 0;
  bottom: auto;
}

.hawk-sliding-menu--slide-fade.hawk-sliding-menu--top.hawk-sliding-menu--open {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  top: -2px;
}

.hawk-sliding-menu--slide-fade.hawk-sliding-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto;
}

.hawk-sliding-menu--slide-fade.hawk-sliding-menu--right.hawk-sliding-menu--open {
  right: 0;
}

.hawk-sliding-menu--slide-fade.hawk-sliding-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%;
}

.hawk-sliding-menu--slide-fade.hawk-sliding-menu--bottom.hawk-sliding-menu--open {
  bottom: 0;
}

.hawk-sliding-menu--slide-fade.hawk-sliding-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto;
}

.hawk-sliding-menu--slide-fade.hawk-sliding-menu--left.hawk-sliding-menu--open {
  left: 0;
}

.overlayer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 9000;
}
.overlayer__content-container {
  display: none;
}

.std-overlayer {
  background: rgba(0, 0, 0, 0.7);
}
.std-overlayer__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.std-overlayer__inner {
  background: #fff;
  padding: 32px 20px;
  margin: 40px 0;
}
@media (min-width: 650px) {
  .std-overlayer__inner {
    margin: 60px 32px;
    padding: 40px;
  }
}
@media (min-width: 1300px) {
  .std-overlayer__inner {
    margin: 80px auto;
    max-width: 900px;
  }
}
.std-overlayer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.std-overlayer__loading-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
}

.ajax-overlayer-button {
  cursor: pointer;
}

/** END_MODULES **/
/***** COLOURS *****/
/***** FONTS *****/
/***** DIMENSIONS *****/
/* resolutions */
/***** GLOBAL *****/
* {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
}

body {
  font-size: 16px;
  color: #001689;
  -webkit-font-smoothing: antialiased;
}

body,
input,
textarea {
  font-family: "transsanspremium", sans-serif;
  font-style: normal;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #001689;
}

button {
  border: none;
  background-color: transparent;
  text-align: left;
}

address {
  font-style: normal;
}

button,
a,
.leader,
.form-choice,
.choice-item,
.hamburger {
  -webkit-tap-highlight-color: transparent;
}

main {
  overflow-x: hidden;
}

input,
textarea {
  border-radius: 0 !important;
}

@media (min-width: 768px) {
  .only-mobile {
    display: none !important;
  }
}

.only-tablet {
  display: none !important;
}
@media (min-width: 768px) {
  .only-tablet {
    display: flex !important;
  }
}

@media (min-width: 1100px) {
  .only-mobile-and-tablet {
    display: none !important;
  }
}

.only-desktop-s {
  display: none !important;
}
@media (min-width: 1100px) {
  .only-desktop-s {
    display: block !important;
  }
}

.only-desktop {
  display: none !important;
}
@media (min-width: 768px) {
  .only-desktop {
    display: block !important;
  }
}

.only-desktop-flex {
  display: none !important;
}
@media (min-width: 768px) {
  .only-desktop-flex {
    display: flex !important;
  }
}

@media (min-width: 650px) {
  .only-mobile-to-650 {
    display: none !important;
  }
}

.only-tablet-from-650 {
  display: none !important;
}
@media (min-width: 650px) {
  .only-tablet-from-650 {
    display: flex !important;
  }
}

/***** HAWK OVERRIDES *****/
.section-title {
  font-size: 26px;
  font-weight: 700;
  font-family: "ppacma", sans-serif;
}
@media (min-width: 420px) {
  .section-title {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (min-width: 480px) {
  .section-title {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (min-width: 1300px) {
  .section-title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (min-width: 1700px) {
  .section-title {
    font-size: 40px;
    line-height: 48px;
  }
}

.section-title--very-large {
  font-size: 36px;
  line-height: 44px;
}
@media (min-width: 420px) {
  .section-title--very-large {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (min-width: 480px) {
  .section-title--very-large {
    font-size: 46px;
    line-height: 54px;
  }
}
@media (min-width: 550px) {
  .section-title--very-large {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 768px) {
  .section-title--very-large {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 1500px) {
  .section-title--very-large {
    font-size: 72px;
    line-height: 80px;
  }
}

.section-title--huge {
  font-size: 64px;
  line-height: 72px;
}
@media (min-width: 420px) {
  .section-title--huge {
    font-size: 72px;
    line-height: 80px;
  }
}
@media (min-width: 480px) {
  .section-title--huge {
    font-size: 88px;
    line-height: 88px;
  }
}
@media (min-width: 1300px) {
  .section-title--huge {
    font-size: 108px;
    line-height: 116px;
  }
}
@media (min-width: 1700px) {
  .section-title--huge {
    font-size: 120px;
    line-height: 128px;
  }
}

.section-title--huge-smaller-mobile {
  font-size: 36px;
  line-height: 44px;
}
@media (min-width: 550px) {
  .section-title--huge-smaller-mobile {
    font-size: 80px;
    line-height: 88px;
  }
}
@media (min-width: 1300px) {
  .section-title--huge-smaller-mobile {
    font-size: 108px;
    line-height: 116px;
  }
}
@media (min-width: 1700px) {
  .section-title--huge-smaller-mobile {
    font-size: 120px;
    line-height: 128px;
  }
}

.section-title--extra-huge {
  font-size: 52px;
  line-height: 60px;
}
@media (min-width: 480px) {
  .section-title--extra-huge {
    font-size: 90px;
    line-height: 98px;
  }
}
@media (min-width: 768px) {
  .section-title--extra-huge {
    font-size: 110px;
    line-height: 118px;
  }
}
@media (min-width: 1300px) {
  .section-title--extra-huge {
    font-size: 128px;
    line-height: 136px;
  }
}
@media (min-width: 1700px) {
  .section-title--extra-huge {
    font-size: 136px;
    line-height: 144px;
  }
}

.section-title--larger-huge {
  font-size: 58px;
  line-height: 64px;
}
@media (min-width: 420px) {
  .section-title--larger-huge {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 480px) {
  .section-title--larger-huge {
    font-size: 72px;
    line-height: 80px;
  }
}
@media (min-width: 768px) {
  .section-title--larger-huge {
    font-size: 124px;
    line-height: 132px;
  }
}
@media (min-width: 1300px) {
  .section-title--larger-huge {
    font-size: 144px;
    line-height: 152px;
  }
}
@media (min-width: 1700px) {
  .section-title--larger-huge {
    font-size: 150px;
    line-height: 158px;
  }
}

.section-title--larger-huge-bigger-tablet {
  font-size: 64px;
  line-height: 72px;
}
@media (min-width: 480px) {
  .section-title--larger-huge-bigger-tablet {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (min-width: 550px) {
  .section-title--larger-huge-bigger-tablet {
    font-size: 100px;
    line-height: 112px;
  }
}
@media (min-width: 650px) {
  .section-title--larger-huge-bigger-tablet {
    font-size: 124px;
    line-height: 124px;
  }
}
@media (min-width: 1100px) and (max-height: 670px) {
  .section-title--larger-huge-bigger-tablet {
    font-size: 116px;
    line-height: 116px;
  }
}
@media (min-width: 1300px) {
  .section-title--larger-huge-bigger-tablet {
    font-size: 144px;
    line-height: 144px;
  }
}
@media (min-width: 1300px) and (max-height: 670px) {
  .section-title--larger-huge-bigger-tablet {
    font-size: 124px;
    line-height: 124px;
  }
}
@media (min-width: 1700px) {
  .section-title--larger-huge-bigger-tablet {
    font-size: 150px;
    line-height: 150px;
  }
}

.section-title--super-extra-huge {
  font-size: 70px;
  line-height: 78px;
}
@media (min-width: 480px) {
  .section-title--super-extra-huge {
    font-size: 120px;
    line-height: 188px;
  }
}
@media (min-width: 768px) {
  .section-title--super-extra-huge {
    font-size: 156px;
    line-height: 164px;
  }
}
@media (min-width: 1300px) {
  .section-title--super-extra-huge {
    font-size: 176px;
    line-height: 184px;
  }
}
@media (min-width: 1700px) {
  .section-title--super-extra-huge {
    font-size: 190px;
    line-height: 198px;
  }
}

.section-title--super-extra-huge-smaller-mobile {
  font-size: 50px;
  line-height: 58px;
}
@media (min-width: 480px) {
  .section-title--super-extra-huge-smaller-mobile {
    font-size: 70px;
    line-height: 78px;
  }
}
@media (min-width: 768px) {
  .section-title--super-extra-huge-smaller-mobile {
    font-size: 126px;
    line-height: 134px;
  }
}
@media (min-width: 1300px) {
  .section-title--super-extra-huge-smaller-mobile {
    font-size: 144px;
    line-height: 152px;
  }
}

.section-title--large {
  font-size: 34px;
  line-height: 42px;
}
@media (min-width: 480px) {
  .section-title--large {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 768px) {
  .section-title--large {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (min-width: 1100px) {
  .section-title--large {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 1300px) {
  .section-title--large {
    font-size: 56px;
    line-height: 64px;
  }
}
@media (min-width: 1700px) {
  .section-title--large {
    font-size: 62px;
    line-height: 70px;
  }
}

@media (min-width: 768px) and (max-height: 850px) {
  .section-title--large-rwd-height {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (min-width: 1100px) and (max-height: 850px) {
  .section-title--large-rwd-height {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (min-width: 1300px) and (max-height: 850px) {
  .section-title--large-rwd-height {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (min-width: 1500px) and (max-height: 850px) {
  .section-title--large-rwd-height {
    font-size: 36px;
    line-height: 44px;
  }
}

.section-title--larger {
  font-size: 42px;
  line-height: 50px;
}
@media (min-width: 480px) {
  .section-title--larger {
    font-size: 46px;
    line-height: 54px;
  }
}
@media (min-width: 768px) {
  .section-title--larger {
    font-size: 54px;
    line-height: 62px;
  }
}
@media (min-width: 1100px) {
  .section-title--larger {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 1300px) {
  .section-title--larger {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 1700px) {
  .section-title--larger {
    font-size: 68px;
    line-height: 76px;
  }
}

.section-title--medium {
  font-size: 30px;
  line-height: 38px;
}
@media (min-width: 480px) {
  .section-title--medium {
    font-size: 38px;
    line-height: 46px;
  }
}
@media (min-width: 768px) {
  .section-title--medium {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (min-width: 1300px) {
  .section-title--medium {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 1700px) {
  .section-title--medium {
    font-size: 54px;
    line-height: 62px;
  }
}

.section-title--base-larger {
  font-size: 36px;
  line-height: 44px;
}
@media (min-width: 768px) {
  .section-title--base-larger {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 1300px) {
  .section-title--base-larger {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 1500px) {
  .section-title--base-larger {
    font-size: 70px;
    line-height: 78px;
  }
}

.section-title--small {
  font-size: 22px;
  line-height: 30px;
}
@media (min-width: 420px) {
  .section-title--small {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 480px) {
  .section-title--small {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (min-width: 1300px) {
  .section-title--small {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (min-width: 1700px) {
  .section-title--small {
    font-size: 30px;
    line-height: 38px;
  }
}

.section-title--tertiary {
  color: #6bff37;
}

.section-title--primary {
  color: #ff22b8;
}

.section-title--light {
  color: #fff;
}

.section-title--font-third {
  font-family: "mangrovesans", sans-serif;
}

.section-title--font-quaternary {
  font-family: "mangrovescript", sans-serif;
}

.section-title--font-mixed {
  font-family: "mangrovesans", sans-serif;
  font-weight: 400;
}
.section-title--font-mixed strong {
  font-family: "mangrovescript", sans-serif;
  font-weight: 400;
}

.section-title--flex-box {
  display: flex;
}

.section-title--three-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 0 auto;
  width: auto;
  align-items: flex-start;
}
@media (min-width: 650px) {
  .section-title--three-row {
    gap: 20px;
  }
}

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

.section-title--three-row-center {
  margin-left: 0;
}
@media (min-width: 650px) {
  .section-title--three-row-center {
    margin-left: 50px;
  }
}
@media (min-width: 1300px) {
  .section-title--three-row-center {
    margin-left: 100px;
  }
}

.section-title--three-row-bottom {
  margin-left: 0;
}
@media (min-width: 650px) {
  .section-title--three-row-bottom {
    margin-left: 20px;
  }
}
@media (min-width: 1300px) {
  .section-title--three-row-bottom {
    margin-left: 50px;
  }
}

.spectacular-title {
  font-family: "mangrovesans", sans-serif;
  font-size: 70px;
  line-height: 78px;
}
.spectacular-title strong {
  font-family: "mangrovescript", sans-serif;
}
@media (min-width: 480px) {
  .spectacular-title {
    font-size: 120px;
    line-height: 188px;
  }
}
@media (min-width: 768px) {
  .spectacular-title {
    font-size: 156px;
    line-height: 164px;
  }
}
@media (min-width: 1300px) {
  .spectacular-title {
    font-size: 176px;
    line-height: 184px;
  }
}
@media (min-width: 1700px) {
  .spectacular-title {
    font-size: 190px;
    line-height: 198px;
  }
}

.spectacular-title--sm {
  font-size: 40px;
  line-height: 48px;
}
@media (min-width: 480px) {
  .spectacular-title--sm {
    font-size: 62px;
    line-height: 70px;
  }
}
@media (min-width: 768px) {
  .spectacular-title--sm {
    font-size: 86px;
    line-height: 94px;
  }
}
@media (min-width: 1300px) {
  .spectacular-title--sm {
    font-size: 126px;
    line-height: 134px;
  }
}
@media (min-width: 1700px) {
  .spectacular-title--sm {
    font-size: 156px;
    line-height: 164px;
  }
}

.plain-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .plain-title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (min-width: 1300px) {
  .plain-title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1500px) {
  .plain-title {
    font-size: 36px;
    line-height: 44px;
  }
}

.text, .text-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 1100px) {
  .text, .text-title {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 1700px) {
  .text, .text-title {
    font-size: 18px;
    line-height: 30px;
  }
}
.text p, .text-title p {
  padding: 5px 0;
}
.text p:first-child, .text-title p:first-child {
  padding-top: 0;
}
.text p:last-child, .text-title p:last-child {
  padding-bottom: 0;
}
.text em, .text-title em {
  font-style: italic;
}
.text ol, .text-title ol {
  list-style-type: none;
  padding: 0 0 0 8px;
  counter-reset: textOrderedList;
}
.text ol > li, .text-title ol > li {
  position: relative;
  padding: 2px 0 2px 32px;
}
.text ol > li:before, .text-title ol > li:before {
  content: counters(textOrderedList, ".") ".";
  counter-increment: textOrderedList;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  padding: 0;
  text-align: right;
}
.text ul, .text-title ul {
  list-style-type: none;
  padding: 0;
}
.text ul > li, .text-title ul > li {
  position: relative;
  padding: 2px 0 2px 16px;
  margin-bottom: 16px;
}
.text ul > li:before, .text-title ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  padding: 0;
  background: #001689;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.text strong, .text-title strong {
  font-weight: 700;
}
.text h2, .text-title h2 {
  font-family: "ppacma", sans-serif;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 30px;
}
.text h2:not(:first-child), .text-title h2:not(:first-child) {
  margin-top: 64px;
}
@media (min-width: 480px) {
  .text h2, .text-title h2 {
    font-size: 38px;
    line-height: 46px;
  }
}
@media (min-width: 768px) {
  .text h2, .text-title h2 {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (min-width: 1300px) {
  .text h2, .text-title h2 {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 1700px) {
  .text h2, .text-title h2 {
    font-size: 54px;
    line-height: 62px;
  }
}
.text h3, .text-title h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
}
.text h3:not(:first-of-type), .text-title h3:not(:first-of-type) {
  margin-top: 45px;
}
@media (min-width: 768px) {
  .text h3, .text-title h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (min-width: 992px) {
  .text h3, .text-title h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .text h3:not(:first-of-type), .text-title h3:not(:first-of-type) {
    margin-top: 44px;
  }
}
@media (min-width: 1300px) {
  .text h3, .text-title h3 {
    margin-bottom: 34px;
  }
  .text h3:not(:first-of-type), .text-title h3:not(:first-of-type) {
    margin-top: 64px;
  }
}
@media (min-width: 1700px) {
  .text h3, .text-title h3 {
    font-size: 26px;
    line-height: 34px;
  }
}
.text h3 p, .text-title h3 p {
  padding: 30px 0;
}
.text h4, .text-title h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 25px;
}
.text h4:not(:first-of-type), .text-title h4:not(:first-of-type) {
  margin-top: 64px;
}
@media (min-width: 768px) {
  .text h4, .text-title h4 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .text h4, .text-title h4 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1700px) {
  .text h4, .text-title h4 {
    font-size: 22px;
    line-height: 30px;
  }
}
.text h4 p, .text-title h4 p {
  padding: 30px 0;
}

.text--standard {
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 1100px) {
  .text--standard {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1500px) {
  .text--standard {
    font-size: 18px;
    line-height: 26px;
  }
}

.text--standard-less-line-height {
  line-height: 18px;
}
@media (min-width: 1100px) {
  .text--standard-less-line-height {
    line-height: 20px;
  }
}
@media (min-width: 1500px) {
  .text--standard-less-line-height {
    line-height: 22px;
  }
}

.text--large {
  font-size: 20px;
  line-height: 28px;
}
@media (min-width: 1100px) {
  .text--large {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 1500px) {
  .text--large {
    font-size: 26px;
    line-height: 34px;
  }
}

.text--very-large-small-mobile {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  font-family: "ppacma", sans-serif;
}
@media (min-width: 550px) {
  .text--very-large-small-mobile {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 900px) {
  .text--very-large-small-mobile {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (min-width: 1300px) {
  .text--very-large-small-mobile {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (min-width: 1700px) {
  .text--very-large-small-mobile {
    font-size: 40px;
    line-height: 48px;
  }
}

.text--bounded {
  width: 170px;
  text-align: center;
}
@media (min-width: 768px) {
  .text--bounded {
    text-align: left;
    width: 200px;
  }
}

.text--color-change {
  color: #fff;
}

.text--color-change-light {
  transition: color 0.8s ease;
  color: #fff;
}

.text--color-change-secondary {
  transition: color 0.8s ease;
  color: #001689;
}

.text--very-small {
  font-size: 12px;
  line-height: 20px;
}
@media (min-width: 1700px) {
  .text--very-small {
    font-size: 13px;
    line-height: 21px;
  }
}
@media (min-width: 2000px) {
  .text--very-small {
    font-size: 14px;
    line-height: 22px;
  }
}

.text--small {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 1700px) {
  .text--small {
    font-size: 17px;
    line-height: 25px;
  }
}
@media (min-width: 2000px) {
  .text--small {
    font-size: 18px;
    line-height: 26px;
  }
}

.text--xl {
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .text--xl {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1300px) {
  .text--xl {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (min-width: 1500px) {
  .text--xl {
    font-size: 40px;
    line-height: 48px;
  }
}
.text--xl p {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .text--xl p {
    padding: 30px 0;
  }
}

.text--l {
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .text--l {
    font-size: 28px;
    line-height: 36px;
  }
}
@media (min-width: 1300px) {
  .text--l {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1500px) {
  .text--l {
    font-size: 36px;
    line-height: 44px;
  }
}

.text--xxl {
  font-size: 36px;
  line-height: 44px;
}
@media (min-width: 420px) {
  .text--xxl {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (min-width: 480px) {
  .text--xxl {
    font-size: 46px;
    line-height: 54px;
  }
}
@media (min-width: 550px) {
  .text--xxl {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 768px) {
  .text--xxl {
    font-size: 64px;
    line-height: 72px;
  }
}

.text--md {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .text--md {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1100px) {
  .text--md {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1700px) {
  .text--md {
    font-size: 22px;
    line-height: 30px;
  }
}
.text--md p {
  padding: 30px 0;
}
.text--md ul > li:before {
  top: 16px;
}

.text--font-family-second {
  font-family: "ppacma", sans-serif;
}

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

.text--font-family-trans {
  font-family: "transsanspremium", sans-serif;
}

.text-light {
  color: #fff;
}

.text-dark {
  color: #000;
}

.text-primary {
  color: #ff22b8;
}

.text-secondary {
  color: #001689;
}

.text-tertiary {
  color: #6bff37;
}

.text-quaternary {
  color: #004f2c;
}

.text--color-secondary {
  color: #001689;
}

.text-changer-light {
  transition: color 0.8s ease;
}

.text--bold {
  font-weight: 600;
}

.text--more-space-bottom {
  padding-bottom: 24px;
}

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

.text--common-padding p {
  padding: 5px 0;
}

.text--list-space-top ul {
  margin-top: 16px;
}

.text-double-color-green-white {
  color: #fff;
}
.text-double-color-green-white span[style*="text-decoration: underline"] {
  color: #6bff37;
  text-decoration: none !important;
}

.text--mobile {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .text--mobile {
    display: none;
  }
}

.text--tablet {
  display: none;
}
@media (min-width: 768px) {
  .text--tablet {
    display: block;
  }
}

.hero-text--primary {
  color: #ff22b8;
}

.hero-text--secondary {
  color: #001689;
}

.hero-text--tertiary {
  color: #6bff37;
}

.hero-text--light {
  color: #fff;
}

.hero-text--light-change {
  color: #fff;
}

.text-primary {
  color: #ff22b8;
}

.text-secondary {
  color: #001689;
}

.text-tertiary {
  color: #6bff37;
}

.text-quaternary {
  color: #004f2c;
}

.text-light {
  color: #fff;
}

.text-light--mobile {
  color: #fff;
}
@media (min-width: 768px) {
  .text-light--mobile {
    color: #001689;
  }
}

.text-changer-light {
  transition: color 0.8s ease;
}

.text--color-change {
  color: #fff;
}

.text--color-change-light {
  transition: color 0.8s ease;
  color: #fff;
}

.text--color-change-secondary {
  transition: color 0.8s ease;
  color: #001689;
}

.button-wrapper--from-tablet {
  display: none;
}
@media (min-width: 650px) {
  .button-wrapper--from-tablet {
    display: block;
  }
}

.lead__header--without-space-bottom {
  padding-bottom: 0;
}

.lead--center {
  z-index: 1;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .lead__content--wide-desktop {
    max-width: 100%;
  }
}

.lead__header--smaller-bottom-space {
  padding-bottom: 20px;
}
@media (min-width: 1100px) {
  .lead__header--smaller-bottom-space {
    padding-bottom: 40px;
  }
}

.lead__bar--bottom-space {
  margin-bottom: 18px;
}
@media (min-width: 992px) {
  .lead__bar--bottom-space {
    margin-bottom: 20px;
  }
}
@media (min-width: 1100px) {
  .lead__bar--bottom-space {
    margin-bottom: 24px;
  }
}

.lead__bar--more-bottom-space {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .lead__bar--more-bottom-space {
    margin-bottom: 24px;
  }
}
@media (min-width: 1100px) {
  .lead__bar--more-bottom-space {
    margin-bottom: 30px;
  }
}

.lead__bar--center-mobile {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .lead__bar--center-mobile {
    justify-content: flex-start;
    text-align: left;
  }
}

.lead__subtitle--center-mobile {
  text-align: center;
}
@media (min-width: 768px) {
  .lead__subtitle--center-mobile {
    text-align: left;
  }
}

.std-pager__pages {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
@media (min-width: 420px) {
  .std-pager__pages {
    gap: 10px;
  }
}
.std-pager__item {
  padding: 0;
}
.std-pager .icon-btn-arrow:hover {
  background-color: none;
}
.std-pager__previous {
  padding: 0;
  margin-right: 12px;
}
.std-pager__next {
  padding: 0;
  margin-left: 12px;
}

.std-pager__pages li.std-pager__item:only-child {
  display: none;
}

.pager-item {
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  font-weight: 400;
}
.pager-item.active {
  font-weight: 700;
  background-color: #001689;
  border-radius: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.pager-item::before {
  display: none;
}

.icon-circle {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle__icon {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.icon-circle--primary {
  background-color: #ff22b8;
}

.icon-circle--secondary {
  background-color: #001689;
}

.icon-circle--tertiary {
  background-color: #6bff37;
}

.icon-circle--quaternary {
  background-color: #004f2c;
}

.icon-btn-arrow {
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
  border-radius: 100px;
  box-shadow: none;
  transition: all 0.2s linear;
}
@media (min-width: 768px) {
  .icon-btn-arrow {
    width: 64px;
    height: 64px;
  }
}
.icon-btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .icon-btn-arrow::after {
    width: 54px;
    height: 54px;
  }
}
.icon-btn-arrow:hover {
  box-shadow: 0 5px 5px 4px rgba(0, 0, 0, 0.05);
}

.icon-btn-arrow--left-blue::after {
  background-image: url("/img/icons/arrow-left-blue.svg");
}

.icon-btn-arrow--right-blue::after {
  background-image: url("/img/icons/arrow-right-blue.svg");
}

.icon-hamburger {
  width: 58px;
  height: 58px;
  border-radius: 58px;
}
.icon-hamburger__inner {
  height: 100%;
  width: 100%;
}
.icon-hamburger__inner > div {
  width: 48px;
  right: 0;
  left: auto;
  background: #001689;
}
.icon-hamburger__inner > div:nth-child(1),
.icon-hamburger__inner > div:nth-child(4) {
  top: 26px;
}
.icon-hamburger__inner > div:nth-child(2),
.icon-hamburger__inner > div:nth-child(5) {
  top: 32px;
  width: 26px;
}

.icon-hamburger.open {
  border-radius: 58px;
  background-color: #6bff37;
  width: 32px;
  height: 32px;
  top: 14px;
}
@media (min-width: 768px) {
  .icon-hamburger.open {
    width: 58px;
    height: 58px;
    top: 0;
  }
}
.icon-hamburger.open .icon-hamburger__inner {
  overflow: visible;
}
.icon-hamburger.open .icon-hamburger__inner > div {
  background: #001689;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(4) {
  top: 15px;
  right: 5px;
  width: 22px;
}
@media (min-width: 768px) {
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(1),
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(4) {
    top: 28px;
    right: 10px;
    width: 38px;
  }
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
  top: 15px;
  right: 5px;
  width: 22px;
}
@media (min-width: 768px) {
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
  .icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
    top: 28px;
    right: 10px;
    width: 38px;
  }
}

.icon-facebook {
  width: 20px;
  height: 20px;
}
.icon-facebook::after {
  background-image: url("/img/icons/social/fb.svg");
}
.icon-facebook::before {
  background-image: url("/img/icons/social/fb.svg");
}

.icon-instagram {
  width: 20px;
  height: 20px;
}
.icon-instagram::after {
  background-image: url("/img/icons/social/inst.svg");
}
.icon-instagram::before {
  background-image: url("/img/icons/social/inst.svg");
}

.icon-plus--bigger {
  width: 40px;
  height: 40px;
}

.icon-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-label__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icon-label__container {
  display: flex;
  align-items: center;
}
.icon-label__side-container {
  font-weight: 600;
  border-radius: 20px;
  margin-top: 7px;
  width: fit-content;
  overflow: hidden;
  font-size: 11px;
  text-align: center;
  margin-left: 42px;
}

.icon-label--no-icon .icon-label__icon-container {
  display: none;
}
.icon-label--no-icon .icon-label__side-container {
  margin-left: 0;
}

.icon-label__icon-container--big {
  width: 32px;
}

.icon-label__content--big {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 1700px) {
  .icon-label__content--big {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 2000px) {
  .icon-label__content--big {
    font-size: 22px;
    line-height: 30px;
  }
}

.icon-label__wrapper--column {
  display: flex;
  flex-direction: column;
}

.search-field {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  transition: width 0.3s ease;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  background-color: transparent;
}
.search-field:focus-within {
  width: 250px;
  border: 1px solid #001689;
}
.search-field:focus-within .search-field__icon {
  background-color: #ff22b8;
}
.search-field__icon {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 24px;
  pointer-events: none;
  background-color: transparent;
  cursor: pointer;
  border-radius: 50px;
}
.search-field__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-image: url("/img/icons/loop-blue.svg");
}
.search-field__icon::placeholder {
  color: #001689;
  font-size: 14px;
}
.search-field__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 40px 10px 40px;
  font-size: 14px;
  background-color: transparent;
  color: #001689;
}

.search-field--light:focus-within {
  border: 1px solid #fff;
}
.search-field--light:focus-within .search-field__icon {
  background-color: #ff22b8;
}
.search-field--light .search-field__icon::after {
  background-image: url("/img/icons/loop.svg");
}
.search-field--light .search-field__icon::placeholder {
  color: #fff;
}
.search-field--light .search-field__input {
  color: #fff;
}

.form-field {
  position: relative;
  /* fix for IOS Safari  */
  position: relative;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  /* end fix for IOS Safari  */
}
.form-field__core, .std-dropdown__header {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 999px !important;
  padding: 14px 60px;
  z-index: 1;
  /* fix for IOS Safari  */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  /* end fix for IOS Safari  */
}
@media (min-width: 1400px) {
  .form-field__core, .std-dropdown__header {
    padding-right: 90px;
  }
}
.form-field__core::placeholder, .std-dropdown__header::placeholder {
  color: #001689;
  font-size: 12px;
  transition: opacity 0.2s;
}
@media (min-width: 420px) {
  .form-field__core::placeholder, .std-dropdown__header::placeholder {
    font-size: 14px;
  }
}
@media (min-width: 480px) {
  .form-field__core::placeholder, .std-dropdown__header::placeholder {
    font-size: 15px;
  }
}
@media (min-width: 900px) {
  .form-field__core::placeholder, .std-dropdown__header::placeholder {
    font-size: 16px;
  }
}
.form-field__core:focus, .std-dropdown__header:focus {
  border-color: #fff;
}
.form-field__core:focus::placeholder, .std-dropdown__header:focus::placeholder {
  opacity: 0.6;
}
.form-field__icon-container {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #ff22b8;
  z-index: 2;
}
.form-field__icon {
  width: 100%;
  height: 100%;
  z-index: 2;
}
.form-field__button-container {
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 2;
}
@media (min-width: 768px) {
  .form-field__button-container {
    top: 11px;
  }
}
.form-field__button {
  color: #001689;
  font-weight: 600;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
}
@media (min-width: 420px) {
  .form-field__button {
    font-size: 14px;
  }
}
@media (min-width: 480px) {
  .form-field__button {
    font-size: 15px;
  }
}
@media (min-width: 900px) {
  .form-field__button {
    font-size: 16px;
  }
}

.form-field--floating-nav {
  border: 1px solid #001689;
  border-radius: 26px;
}

.form-field__core--floating-nav-desktop::placeholder {
  color: #001689;
  font-size: 12px;
  transition: opacity 0.2s;
}
@media (min-width: 1100px) {
  .form-field__core--floating-nav-desktop::placeholder {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .form-field__core--floating-nav-desktop::placeholder {
    font-size: 16px;
  }
}

/* ================ MOBILE ================ */
@media (min-width: 550px) {
  .form-field__button--floating-nav-desktop {
    font-size: 14px;
  }
}
@media (min-width: 1100px) {
  .form-field__button--floating-nav-desktop {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .form-field__button--floating-nav-desktop {
    font-size: 16px;
  }
}

.form-field--mobile {
  width: fit-content;
}
@media (min-width: 420px) {
  .form-field--mobile {
    width: 270px;
  }
}
.form-field--mobile .form-field__core, .form-field--mobile .std-dropdown__header {
  z-index: 1;
  padding: 14px 50px 14px 30px;
}
.form-field--mobile .form-field__core::placeholder, .form-field--mobile .std-dropdown__header::placeholder {
  color: #001689;
  font-size: 12px;
  transition: opacity 0.2s;
}
@media (min-width: 420px) {
  .form-field--mobile .form-field__core::placeholder, .form-field--mobile .std-dropdown__header::placeholder {
    font-size: 14px;
  }
}
@media (min-width: 480px) {
  .form-field--mobile .form-field__core::placeholder, .form-field--mobile .std-dropdown__header::placeholder {
    font-size: 15px;
  }
}
@media (min-width: 900px) {
  .form-field--mobile .form-field__core::placeholder, .form-field--mobile .std-dropdown__header::placeholder {
    font-size: 14px;
  }
}
.form-field--mobile .form-field__icon-container {
  left: auto;
  right: 20px;
  background-color: #fff;
}
@media (min-width: 420px) {
  .form-field--mobile .form-field__icon-container {
    right: 20px;
  }
}
.form-field--mobile .active {
  display: block;
}

.simple-list--center-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .simple-list--center-mobile {
    align-items: flex-start;
  }
}

@media (min-width: 1100px) {
  .plain-list--horizontal-desktop {
    display: flex;
    gap: 40px;
  }
}

.plain-list--small {
  font-size: 14px;
}
@media (min-width: 1100px) {
  .plain-list--small {
    font-size: 16px;
  }
}

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

#recipes-dropdown-mobile {
  z-index: 2;
}

.std-dropdown__header {
  border: 1px solid #001689;
  border-color: #001689 !important;
  padding: 8px 16px 8px 10px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
}
.std-dropdown__header:hover {
  border: 1px solid #001689;
  border-color: #001689 !important;
}
.std-dropdown__header-inner {
  margin-left: 8px;
}
.std-dropdown__list-container {
  background-color: #fff;
  max-height: 240px;
  width: 200px;
  border-radius: 25px;
  padding: 16px 10px;
  margin-left: 20px;
  -webkit-box-shadow: 0px 10px 30px -13px rgb(66, 68, 90);
  -moz-box-shadow: 0px 10px 30px -13px rgb(66, 68, 90);
  box-shadow: 0px 10px 30px -13px rgb(66, 68, 90);
}
.std-dropdown__title {
  font-weight: 700;
  text-transform: uppercase;
  color: #001689;
  font-family: "transsanspremium", sans-serif;
}

.menu-toggler-container {
  top: 16px;
  right: 20px;
  z-index: 9030;
}
@media (min-width: 768px) {
  .menu-toggler-container {
    top: 20px;
    right: 40px;
  }
}

.std-overlayer {
  box-sizing: border-box;
}
.std-overlayer__inner {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  max-width: 100%;
  background: transparent;
  max-width: 1200px;
}
.std-overlayer__wrapper {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.std-overlayer__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .flex-container--align-center {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .flex-container--space-only-tablet {
    gap: 0 30px;
  }
}
@media (min-width: 900px) {
  .flex-container--space-only-tablet {
    gap: 0px 0px;
  }
}

.container--column {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 1100px) {
  .container--column {
    justify-content: space-around;
  }
}

.flex-column--center-mobile {
  display: flex;
  justify-content: center;
}

/****** LISTS ******/
.tiles-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 50px 10px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .tiles-list {
    gap: 50px 0px;
  }
}
@media (min-width: 1100px) {
  .tiles-list {
    gap: 50px 10px;
  }
}
.tiles-list > li {
  list-style: none;
  width: 100%;
}
@media (min-width: 480px) {
  .tiles-list > li {
    flex: 0 0 calc(50% - 7px);
    max-width: calc(50% - 7px);
  }
}
@media (min-width: 900px) {
  .tiles-list > li {
    flex: 0 0 calc(50% - 14px);
  }
}
@media (min-width: 992px) {
  .tiles-list > li {
    flex: 0 0 calc(33.33% - 14px);
  }
}
@media (min-width: 1100px) {
  .tiles-list > li {
    flex: 0 0 calc(33.33% - 14px);
  }
}
@media (min-width: 1500px) {
  .tiles-list > li {
    flex: 0 0 calc(33.33% - 14px);
  }
}

.tiles-list--more-space {
  gap: 80px 80px;
}
@media (min-width: 480px) {
  .tiles-list--more-space {
    gap: 30px 20px;
  }
}
@media (min-width: 550px) {
  .tiles-list--more-space {
    gap: 40px 40px;
  }
}
@media (min-width: 900px) {
  .tiles-list--more-space {
    gap: 30px 20px;
  }
}
@media (min-width: 1100px) {
  .tiles-list--more-space {
    gap: 40px 40px;
  }
}
@media (min-width: 1300px) {
  .tiles-list--more-space {
    gap: 80px 80px;
  }
}
.tiles-list--more-space > li {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 480px) {
  .tiles-list--more-space > li {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (min-width: 550px) {
  .tiles-list--more-space > li {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media (min-width: 900px) {
  .tiles-list--more-space > li {
    flex: 0 0 calc(33.33% - 13.4px);
    max-width: calc(33.33% - 13.4px);
  }
}
@media (min-width: 1100px) {
  .tiles-list--more-space > li {
    flex: 0 0 calc(33.33% - 26.7px);
    max-width: calc(33.33% - 26.7px);
  }
}
@media (min-width: 1300px) {
  .tiles-list--more-space > li {
    flex: 0 0 calc(33.33% - 53.3px);
    max-width: calc(33.33% - 53.3px);
  }
}

.separated-list {
  width: 100%;
  list-style: none;
}
.separated-list > li {
  padding: 8px 0;
  border-bottom: 1px solid #001689;
}
@media (min-width: 768px) {
  .separated-list > li {
    padding: 14px 0;
  }
}
@media (min-width: 1300px) {
  .separated-list > li {
    padding: 18px 0;
  }
}
.separated-list > li:first-child {
  padding-top: 0;
}
.separated-list > li:last-child {
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .separated-list > li:last-child {
    padding-bottom: 14px;
  }
}
@media (min-width: 1300px) {
  .separated-list > li:last-child {
    padding-bottom: 18px;
  }
}

@media (min-width: 650px) {
  .separated-list--more-space > li {
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {
  .separated-list--more-space > li {
    height: 100%;
  }
}

.separated-list--more-space-mobile > li {
  padding: 16px 0;
  border-bottom: 1px solid #001689;
}
@media (min-width: 768px) {
  .separated-list--more-space-mobile > li {
    padding: 16px 0;
  }
}
@media (min-width: 1300px) {
  .separated-list--more-space-mobile > li {
    padding: 18px 0;
  }
}
.separated-list--more-space-mobile > li:last-child {
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .separated-list--more-space-mobile > li:last-child {
    padding-bottom: 16px 0;
  }
}
@media (min-width: 1300px) {
  .separated-list--more-space-mobile > li:last-child {
    padding-bottom: 18px 0;
  }
}

.menu-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1100px) {
  .menu-list {
    align-items: center;
    flex-direction: row;
  }
}
.menu-list > li {
  padding: 20px 0;
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .menu-list > li {
    padding: 30px 0;
  }
}
@media (min-width: 1100px) {
  .menu-list > li {
    flex: 0 0 50%;
  }
}

.menu-list--smaller-space > li {
  padding: 10px 0;
  width: 100%;
}

.horizontal-items {
  z-index: 10;
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  border: none;
  margin-right: 0;
}
@media (min-width: 650px) {
  .horizontal-items {
    width: auto;
    overflow-x: visible;
    margin-right: 20px;
    padding-bottom: 2px;
  }
}
@media (min-width: 768px) {
  .horizontal-items {
    margin-right: 70px;
  }
}
@media (min-width: 900px) {
  .horizontal-items {
    padding-bottom: 0px;
  }
}
.horizontal-items li {
  padding: 0;
  padding-left: 15px;
  flex-shrink: 0;
}
@media (min-width: 650px) {
  .horizontal-items li {
    flex-shrink: 1;
  }
}
.horizontal-items li a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.horizontal-items li,
.horizontal-items a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.horizontal-items--horizontal-space-only-mobile li:first-child {
  padding-left: 30px;
}
@media (min-width: 900px) {
  .horizontal-items--horizontal-space-only-mobile li:first-child {
    padding-left: 0;
  }
}
.horizontal-items--horizontal-space-only-mobile li:last-child {
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 650px) {
  .horizontal-items--horizontal-space-only-mobile li:last-child {
    padding-right: 0;
  }
}

.horizontal-items--wrap-only-mobile {
  flex-wrap: wrap;
  width: 100%;
  gap: 15px 10px;
}
@media (min-width: 420px) {
  .horizontal-items--wrap-only-mobile {
    gap: 15px 20px;
  }
}
@media (min-width: 650px) {
  .horizontal-items--wrap-only-mobile {
    gap: 15px 30px;
  }
}
@media (min-width: 900px) {
  .horizontal-items--wrap-only-mobile {
    width: auto;
  }
}
.horizontal-items--wrap-only-mobile li {
  width: fit-content;
  padding-left: 0;
  margin: 0;
  white-space: nowrap;
}
@media (min-width: 900px) {
  .horizontal-items--wrap-only-mobile li {
    width: auto;
  }
}

.horizontal-items--center {
  padding: 5px;
}
@media (min-width: 650px) {
  .horizontal-items--center {
    margin-right: 0px;
  }
}
@media (min-width: 768px) {
  .horizontal-items--center {
    margin-right: 0px;
  }
}
.horizontal-items--center li:first-child {
  padding-left: 20px;
}
@media (min-width: 900px) {
  .horizontal-items--center li:first-child {
    padding-left: 0;
  }
}
.horizontal-items--center li:last-child {
  padding-right: 20px;
}
@media (min-width: 900px) {
  .horizontal-items--center li:last-child {
    padding-right: 0;
  }
}

.horizontal-items--content-center {
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 10px;
}
@media (min-width: 650px) {
  .horizontal-items--content-center {
    margin-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .horizontal-items--content-center {
    margin-bottom: 0px;
  }
}

@media (min-width: 768px) {
  .horizontal-items--end {
    margin-right: 20px;
  }
}

.horizontal-items--expanded {
  flex-direction: column;
  gap: 10px 20px;
  padding: 20px;
}
@media (min-width: 1100px) {
  .horizontal-items--expanded {
    flex-direction: row;
    gap: 0px;
    padding: 0px;
  }
}

@media (min-width: 650px) {
  .horizontal-items--space-right-from-tablet {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .horizontal-items--space-right-from-tablet {
    margin-right: 20px;
  }
}

@media (min-width: 650px) {
  .horizontal-items--wrap-later {
    flex-wrap: wrap;
    width: 100%;
    border: none;
    margin-right: 0;
    gap: 15px 0;
  }
}

@media (min-width: 992px) {
  .horizontal-items--wrap-tablet {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}

@media (min-width: 380px) {
  .horizontal-items--cat-on-mobile {
    padding-left: 15px;
  }
}
@media (min-width: 390px) {
  .horizontal-items--cat-on-mobile {
    padding-left: 20px;
  }
}
@media (min-width: 400px) {
  .horizontal-items--cat-on-mobile {
    padding-left: 30px;
  }
}
@media (min-width: 410px) {
  .horizontal-items--cat-on-mobile {
    padding-left: 0px;
  }
}

.horizontal-items--wrap-mobile {
  flex-wrap: wrap;
  width: 100%;
  gap: 16px 0;
  padding: 0;
}
@media (min-width: 992px) {
  .horizontal-items--wrap-mobile {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .horizontal-items--wrap-mobile {
    justify-content: center;
  }
}
.horizontal-items--wrap-mobile > li {
  padding: 0 8px;
}
.horizontal-items--wrap-mobile > li:first-child {
  padding-left: 8px;
}
.horizontal-items--wrap-mobile > li:last-child {
  padding-right: 8px;
}

.plain-horizontal-list {
  list-style: none;
}
@media (min-width: 1100px) {
  .plain-horizontal-list {
    display: flex;
    gap: 20px;
  }
}
.plain-horizontal-list > li {
  padding: 8px 0;
  text-align: center;
}
.plain-horizontal-list > li:first-child {
  padding-top: 0;
}
.plain-horizontal-list > li:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .plain-horizontal-list > li {
    text-align: left;
  }
}
@media (min-width: 1100px) {
  .plain-horizontal-list > li {
    padding: 0;
  }
}

.std-horizontal-list {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .std-horizontal-list {
    gap: 12px;
  }
}

/***** COMPONENTS *****/
.extended-info-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #001689;
  border-radius: 20px;
  padding: 24px;
  max-width: 560px;
}
@media (min-width: 1700px) {
  .extended-info-label {
    max-width: 600px;
    min-width: 600px;
  }
}
@media (min-width: 768px) {
  .extended-info-label {
    padding: 30px 32px;
  }
}
@media (min-width: 900px) {
  .extended-info-label {
    padding: 40px 32px;
  }
}
.extended-info-label__header {
  margin-bottom: 10px;
}
.extended-info-label__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: inherit;
}
@media (min-width: 768px) {
  .extended-info-label__title {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1300px) {
  .extended-info-label__title {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1700px) {
  .extended-info-label__title {
    font-size: 22px;
    line-height: 30px;
  }
}
.extended-info-label__content {
  white-space: nowrap;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  font-family: "ppacma", sans-serif;
}
@media (min-width: 550px) {
  .extended-info-label__content {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 900px) {
  .extended-info-label__content {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (min-width: 1300px) {
  .extended-info-label__content {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (min-width: 1700px) {
  .extended-info-label__content {
    font-size: 36px;
    line-height: 44px;
  }
}
.extended-info-label__icon {
  transition: all 0.2s linear;
}

@media (min-width: 420px) {
  .extended-info-label--hover-effect {
    gap: 30px;
  }
}
.extended-info-label--hover-effect .extended-info-label__icon {
  transition: all 0.2s linear;
}
@media (min-width: 1100px) {
  .extended-info-label--hover-effect .extended-info-label__icon {
    pointer-events: none;
  }
}
.extended-info-label--hover-effect:hover .extended-info-label__icon::before {
  transform: rotate(0deg);
}

/***** OBJECTS *****/
.chosen-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #f5f5f5;
  padding: 4px 8px;
  font-family: "ppacma", sans-serif;
  height: 100%;
}
.chosen-item__close {
  cursor: pointer;
}

.common-dropdown {
  width: 100%;
}
@media (min-width: 768px) {
  .common-dropdown {
    min-width: 64px;
    width: 100%;
    max-width: 100%;
  }
}
.common-dropdown__list-container {
  padding: 10px 0;
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #fafafa;
  text-align: left;
  max-height: 200px;
}
@media (min-height: 600px) {
  .common-dropdown__list-container {
    max-height: 300px;
  }
}
@media (min-height: 800px) {
  .common-dropdown__list-container {
    max-height: 400px;
  }
}
.common-dropdown__header {
  border: 1px solid #e5e5e5;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-align: left;
  position: relative;
  z-index: 5;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
@media (min-width: 768px) {
  .common-dropdown__header {
    text-align: left;
  }
}
.common-dropdown__header:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  padding: 1px;
  background: #ff22b8;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.common-dropdown__header:hover {
  border-color: #001689;
}
.common-dropdown__header-inner {
  padding: 8px 48px 8px 20px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 1100px) {
  .common-dropdown__header-inner {
    padding: 12px 48px 12px 20px;
  }
}
.common-dropdown__title {
  font-size: 12px;
  font-weight: 700;
  font-family: "ppacma", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .common-dropdown__title {
    font-size: 14px;
  }
}
.common-dropdown__icon-container {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 15px;
}
.common-dropdown__icon {
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  top: 2px;
}

.common-dropdown.dropdown--open .common-dropdown__header {
  border-color: #ff22b8;
  background-color: rgba(255, 255, 255, 0.8);
}
.common-dropdown.dropdown--open .common-dropdown__icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.common-dropdown.dropdown--open .simple-extended-icon .simple-extended-icon__base-layer {
  opacity: 0;
}
.common-dropdown.dropdown--open .simple-extended-icon .simple-extended-icon__above-layer {
  opacity: 1;
}

.common-dropdown.dropdown--filled .common-dropdown__header {
  border-color: transparent;
}
.common-dropdown.dropdown--filled .common-dropdown__header:before {
  opacity: 1;
}
.common-dropdown.dropdown--filled .common-dropdown__header-inner {
  background: #fff;
}

.common-dropdown.error .common-dropdown__header {
  border-color: #db2b39;
}

.custom-cursor {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #001689;
  color: #6bff37;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-width: 700;
  z-index: 2;
  position: fixed;
  transform: translate(-50%, -50%);
  display: none;
  transition: background-color 0.3s linear;
  cursor: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media (min-width: 1100px) {
  .custom-cursor {
    display: flex;
  }
}
.custom-cursor__text {
  position: absolute;
}
.custom-cursor__arrow {
  font-size: 14px;
  position: relative;
  top: 2px;
  width: 18px;
  height: 32px;
}
.custom-cursor__arrow::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  transition: background-image 0.3s linear;
}

.custom-cursor__arrow--left {
  left: -60px;
}
.custom-cursor__arrow--left::after {
  background-image: url("/img/icons/angle-left.svg");
}

.custom-cursor__arrow--right {
  right: -60px;
}
.custom-cursor__arrow--right::after {
  background-image: url("/img/icons/angle-right.svg");
}

.custom-cursor--primary {
  background-color: #ff22b8;
  color: #6bff37;
}
.custom-cursor--primary .custom-cursor__arrow--left::after {
  background-image: url("/img/icons/angle-left-primary.svg");
}
.custom-cursor--primary .custom-cursor__arrow--right {
  right: -60px;
}
.custom-cursor--primary .custom-cursor__arrow--right::after {
  background-image: url("/img/icons/angle-right-primary.svg");
}

.custom-cursor--light {
  background-color: #fff;
  color: #001689;
}
.custom-cursor--light .custom-cursor__arrow--left::after {
  background-image: url("/img/icons/angle-left-light.svg");
}
.custom-cursor--light .custom-cursor__arrow--right {
  right: -60px;
}
.custom-cursor--light .custom-cursor__arrow--right::after {
  background-image: url("/img/icons/angle-right-light.svg");
}

.custom-cursor--area {
  position: fixed;
  pointer-events: none;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0; /* Domyślnie niewidoczny */
}

.custom-cursor--area.custom-cursor--active {
  opacity: 1;
  transform: scale(1.2) translate(-50%, -50%);
}

.custom-cursor-area {
  position: relative;
  cursor: none; /* Ukrycie domyślnego kursora */
}

@media (min-width: 1100px) {
  .custom-cursor-hide-arrow {
    cursor: none !important;
  }
}

.layered-bookmarks__item {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: -30px;
  height: 0;
  padding: 30px 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
}
.layered-bookmarks__header {
  text-align: center;
  padding-bottom: 20px;
}
.layered-bookmarks__header .section-title {
  font-family: "mangrovescript", sans-serif;
}

.layered-bookmarks__item--quaternary {
  background-color: #004f2c;
  color: #6bff37;
}

.layered-bookmarks__item--tertiary {
  background-color: #6bff37;
  color: #001689;
}

.layered-bookmarks__item--primary {
  background-color: #ff22b8;
  color: #fff;
}

.layered-bookmarks__item--secondary {
  background-color: #001689;
  color: #6bff37;
}

.layered-bookmarks__item--primary-light {
  background-color: #fed3f2;
  color: #ff22b8;
}

.layered-bookmarks__item--no-animation {
  height: auto;
  transform: translateY(-30px);
}

.label {
  font-size: 12px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .label {
    font-size: 14px;
  }
}
@media (min-width: 1500px) {
  .label {
    font-size: 16px;
  }
}

.label--uppercase {
  text-transform: uppercase;
}

.tab-header {
  padding: 16px 26px;
  border-radius: 32px;
}
@media (min-width: 768px) {
  .tab-header {
    padding: 14px 18px;
  }
}
@media (min-width: 1100px) {
  .tab-header {
    padding: 20px 32px;
  }
}
.tab-header__text {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .tab-header__text {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1500px) {
  .tab-header__text {
    font-size: 18px;
    line-height: 26px;
  }
}

.tab-header--secondary {
  background-color: #001689;
  color: #fff;
}

.badge {
  padding: 4px 18px 4px 12px;
  border: 1px solid #000;
  position: relative;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (min-width: 1500px) {
  .badge {
    font-size: 13px;
  }
}
.badge__text {
  padding-bottom: 2px;
  white-space: nowrap;
}
.badge__icon {
  height: 24px;
}

.badge--large {
  text-transform: uppercase;
}
@media (min-width: 1700px) {
  .badge--large {
    font-size: 14px;
    gap: 12px;
  }
}
@media (min-width: 480px) {
  .badge--large .badge__icon {
    height: 28px;
  }
}
@media (min-width: 1700px) {
  .badge--large .badge__icon {
    height: 32px;
  }
}

.badge--light {
  border: 1px solid #fff;
  color: #fff;
}

.badge--tertiary {
  border: 1px solid #6bff37;
  color: #6bff37;
}

.badge--secondary {
  border: 1px solid #001689;
  color: #001689;
}

.badge--secondary-filled {
  border: 1px solid #001689;
  background-color: #001689;
  color: #6bff37;
}

.badge--light {
  border: 1px solid #fff;
  color: #fff;
}

.badge--interactive {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .badge--interactive:hover {
    color: #6bff37;
    background-color: #001689;
    border: 1px solid #001689;
  }
  .badge--interactive:hover .plain-extended-icon__above-layer {
    opacity: 1;
  }
}
.badge--interactive.active {
  color: #6bff37;
  background-color: #001689;
  border: 1px solid #001689;
}

.badge--active {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #6bff37;
  background-color: #001689;
}
.badge--active .plain-extended-icon__above-layer {
  opacity: 1;
}

.badge--lower-padding-mobile {
  padding: 4px 14px 4px 8px;
}
@media (min-width: 550px) {
  .badge--lower-padding-mobile {
    padding: 4px 18px 4px 12px;
  }
}

.badge--lower-padding {
  padding: 0px 8px 0px 2px;
  font-size: 9px;
}
@media (min-width: 992px) {
  .badge--lower-padding {
    font-size: 12px;
  }
}
@media (min-width: 1500px) {
  .badge--lower-padding {
    font-size: 13px;
    padding: 2px 14px 2px 6px;
  }
}

.badge--fit-content {
  width: fit-content;
}

.badge--simple {
  padding: 10px 24px;
}

@media (min-width: 1500px) {
  .badge--bigger-desktop {
    padding: 8px 26px 8px 20px;
  }
}

.badge--lower-case {
  text-transform: none;
}

.badge--small-icon {
  padding: 3px 14px 3px 8px;
}
.badge--small-icon .badge__icon {
  height: 20px;
}

.badge--lower-padding-mobile {
  padding: 2px 16px 2px 10px;
}

.arrow-circle {
  width: 48px;
  height: 48px;
  position: relative;
  transition: all 0.2s linear;
  border-radius: 50px;
  box-shadow: 0px 5px 5px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
@media (min-width: 768px) {
  .arrow-circle {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1100px) {
  .arrow-circle {
    width: 64px;
    height: 64px;
  }
}
.arrow-circle::after {
  content: "";
  background-size: contain;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
}
@media (min-width: 768px) {
  .arrow-circle::after {
    width: 38px;
    height: 38px;
  }
}
@media (min-width: 1100px) {
  .arrow-circle::after {
    width: 64px;
    height: 64px;
  }
}

.arrow-circle--white {
  background-color: #fff;
}
.arrow-circle--white:hover {
  background-color: #001689;
}

.arrow-circle--white-without-hover {
  background-color: #fff;
}

.arrow-circle--blue {
  background-color: #001689;
}
.arrow-circle--blue:hover {
  background-color: #ff22b8;
}

.arrow-circle--left::after {
  background-image: url("/img/icons/arrow-left-white.svg");
}
.arrow-circle--left:hover::after {
  background-image: url("/img/icons/arrow-left-blue.svg");
}

.arrow-circle--right::after {
  background-image: url("/img/icons/arrow-right-white.svg");
}
.arrow-circle--right:hover::after {
  background-image: url("/img/icons/arrow-right-blue.svg");
}

.arrow-circle--left-blue::after {
  background-image: url("/img/icons/arrow-left-blue.svg");
}
.arrow-circle--left-blue:hover::after {
  background-image: url("/img/icons/arrow-left-white.svg");
}

.arrow-circle--right-blue::after {
  background-image: url("/img/icons/arrow-right-blue.svg");
}
.arrow-circle--right-blue:hover::after {
  background-image: url("/img/icons/arrow-right-white.svg");
}

.arrow-circle--arrow-blue-without-hover::after {
  background-image: url("/img/icons/arrow-right-blue.svg");
}
.arrow-circle--arrow-blue-without-hover:hover::after {
  background-image: url("/img/icons/arrow-right-blue.svg");
}

.arrow-circle--top::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.arrow-circle--top:hover::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.arrow-circle--big:after {
  width: 64px;
  height: 64px;
}

.plain-tile {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.plain-tile__content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.plain-tile__picture-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.plain-tile__picture {
  height: 290px;
}
@media (min-width: 480px) {
  .plain-tile__picture {
    height: 250px;
  }
}
@media (min-width: 768px) {
  .plain-tile__picture {
    height: 290px;
  }
}
@media (min-width: 992px) {
  .plain-tile__picture {
    height: 270px;
  }
}
@media (min-width: 1100px) {
  .plain-tile__picture {
    height: 280px;
  }
}
@media (min-width: 1300px) {
  .plain-tile__picture {
    height: 290px;
  }
}
@media (min-width: 1500px) {
  .plain-tile__picture {
    height: 320px;
  }
}

.plain-tile--light {
  color: #fff;
}

.lead-title {
  text-align: left;
}
.lead-title__header {
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  .lead-title__content {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .lead-title__content {
    max-width: 600px;
    margin: 0;
  }
}

.lead-title--columns, .lead-title--columns-only-tablet {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 768px) {
  .lead-title--columns, .lead-title--columns-only-tablet {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .lead-title--columns .lead-title__header, .lead-title--columns-only-tablet .lead-title__header {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .lead-title--columns .lead-title__content, .lead-title--columns-only-tablet .lead-title__content {
    flex: 1;
  }
}

.lead-title__header--bounded {
  max-width: 180px;
}
@media (min-width: 480px) {
  .lead-title__header--bounded {
    max-width: 200px;
  }
}
@media (min-width: 768px) {
  .lead-title__header--bounded {
    max-width: 230px;
  }
}
@media (min-width: 1100px) {
  .lead-title__header--bounded {
    max-width: 280px;
  }
}

.lead-title--columns-only-tablet {
  gap: 0;
}
@media (min-width: 768px) {
  .lead-title--columns-only-tablet {
    gap: 80px;
  }
}
@media (min-width: 1100px) {
  .lead-title--columns-only-tablet {
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 1100px) {
  .lead-title--columns-only-tablet .lead-title__header {
    flex: 1;
  }
}
@media (min-width: 1100px) {
  .lead-title--columns-only-tablet .lead-title__content {
    flex: 1;
  }
}

.lead-title__header--no-space-bottom {
  margin-bottom: 0;
}

.lead-title__content--left {
  margin: 0;
}

.address {
  font-weight: bold;
}

.logo-green-factory {
  width: 156px;
  height: 56px;
}
.logo-green-factory__img {
  width: 100%;
}

.advice {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 36px 18px;
}
@media (min-width: 768px) {
  .advice {
    padding: 56px 32px;
  }
}
.advice__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.advice__icon {
  width: 66px;
  height: 66px;
}
@media (min-width: 768px) {
  .advice__icon {
    width: 96px;
    height: 96px;
  }
}
.advice__content {
  font-size: 20px;
  line-height: 30px;
  font-family: "mangrovesans", sans-serif;
  max-width: 300px;
}
@media (min-width: 768px) {
  .advice__content {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (min-width: 1300px) {
  .advice__content {
    font-size: 28px;
    line-height: 38px;
  }
}

.advice--bg-primary {
  background: #ff22b8;
}

.advice--bg-secondary {
  background: #001689;
  color: #fff;
}

.advice--bg-tertiary {
  background: #6bff37;
}

.advice--bg-quaternary {
  background: #004f2c;
}

.symmetric-bar {
  display: flex;
  flex-direction: column;
}
@media (min-width: 650px) {
  .symmetric-bar {
    flex-direction: row;
  }
}
@media (min-width: 650px) {
  .symmetric-bar {
    justify-content: space-between;
  }
}
.symmetric-bar__middle {
  display: flex;
  align-self: center;
  margin-top: 40px;
}
@media (min-width: 650px) {
  .symmetric-bar__middle {
    margin-top: 0;
  }
}
.symmetric-bar__right {
  min-width: 1px;
  display: none;
}
@media (min-width: 992px) {
  .symmetric-bar__right {
    display: block;
  }
}

@media (min-width: 1100px) {
  .symmetric-bar--bigger-space {
    transform: translateY(24px);
  }
}
@media (min-width: 1300px) {
  .symmetric-bar--bigger-space {
    transform: translateY(24px);
  }
}

.slider-simple-one-slide {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .slider-simple-one-slide {
    margin-top: 0;
  }
}
.slider-simple-one-slide .swiper-wrapper {
  display: flex;
}
.slider-simple-one-slide .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  height: auto;
}
@media (min-width: 480px) {
  .slider-simple-one-slide .swiper-slide {
    width: 50%;
  }
}
.slider-simple-one-slide .plain-image-tile {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 24px;
}
.slider-simple-one-slide .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 0px;
}
.slider-simple-one-slide .swiper-navigation--bottom {
  position: relative;
  bottom: 0;
  top: -100px;
  left: -5px;
  z-index: 2;
}
@media (min-width: 768px) {
  .slider-simple-one-slide .swiper-navigation--bottom {
    top: -90px;
  }
}
@media (min-width: 1100px) {
  .slider-simple-one-slide .swiper-navigation--bottom {
    top: -112px;
  }
}
.slider-simple-one-slide .swiper-navigation .swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.std-dropdown-item__description {
  background: #fff;
}
.std-dropdown-item__description:hover {
  background: #fff;
  color: #001689;
  font-weight: 600;
}
.std-dropdown-item__field:checked + .std-dropdown-item__description {
  font-weight: 600;
  color: #001689;
  background-color: #fff;
  font-family: "transsanspremium", sans-serif;
}

.std-dropdown-item__field:checked {
  font-weight: 600;
}

.std-dropdown-item__field:checked ~ .std-dropdown-item__description {
  background: #fff;
  color: #001689;
}

.images-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 650px) {
  .images-row {
    gap: 30px;
    flex-direction: row;
    justify-content: space-around;
  }
}
@media (min-width: 1100px) {
  .images-row {
    gap: 48px;
  }
}
.images-row__item {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 650px) {
  .images-row__item {
    flex: 0 0 calc(50% - 15px);
    max-width: 465px;
  }
}
@media (min-width: 1100px) {
  .images-row__item {
    flex: 0 0 calc(50% - 24px);
    max-width: 456px;
  }
}

@media (min-width: 650px) {
  .bio-note {
    display: flex;
    align-items: center;
  }
}
.bio-note__picture-container {
  padding: 0 0px 10px 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 550px) {
  .bio-note__picture-container {
    padding: 0 0px 10px 0;
    justify-content: flex-start;
  }
}
@media (min-width: 650px) {
  .bio-note__picture-container {
    padding: 0 20px 0 0;
  }
}
@media (min-width: 1100px) {
  .bio-note__picture-container {
    padding: 0 25px 0 0;
  }
}
.bio-note__content-container {
  text-align: center;
  padding-bottom: 14px;
}
@media (min-width: 550px) {
  .bio-note__content-container {
    text-align: left;
    padding-bottom: 0;
  }
}
.bio-note__picture {
  width: 64px;
  height: 64px;
  border-radius: 128px;
  object-fit: cover;
}
@media (min-width: 1700px) {
  .bio-note__picture {
    width: 80px;
    height: 80px;
  }
}
.bio-note__name {
  margin-bottom: 6px;
}
.bio-note__description {
  max-width: 100%;
}
@media (min-width: 768px) {
  .bio-note__description {
    max-width: 100%;
  }
}
@media (min-width: 900px) {
  .bio-note__description {
    max-width: 100%;
  }
}

.bio-note--row-from-mobile {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bio-note__picture--small {
  width: 34px;
  height: 34px;
}
@media (min-width: 768px) {
  .bio-note__picture--small {
    width: 44px;
    height: 44px;
  }
}
@media (min-width: 1700px) {
  .bio-note__picture--small {
    width: 56px;
    height: 56px;
  }
}

.bio-note__name--regular {
  font-weight: 400;
}

.bio-note__name--small {
  font-size: 14px;
}

.bio-note__picture-container--without-bottom-space {
  padding: 0;
}

.bio-note__content-container--without-bottom-space {
  padding: 0;
}

.figure {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.figure__image-wrapper {
  width: 100%;
  height: 100%;
}
.figure__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.filled-label {
  color: #001689;
  background-color: #fed3f2;
  padding: 5px 15px;
}

/***** PICTURES *****/
.logo-fit-and-easy {
  width: 96px;
  height: 26px;
  background-size: contain;
  background-image: url("/img/logo/logo-fit-and-easy.svg");
}
@media (min-width: 768px) {
  .logo-fit-and-easy {
    width: 118px;
    height: 32px;
  }
}

.logo-fit-and-easy--big {
  width: 177px;
  height: 48px;
}

.logo-fit-and-easy--light {
  background-image: url("/img/logo/logo-fit-and-easy-light.svg");
}

.logo-jwg {
  width: 140px;
  height: 34px;
  object-fit: contain;
  background-image: url("/img/logo/john-weston.svg");
}
@media (min-width: 768px) {
  .logo-jwg {
    width: 170px;
    height: 43px;
  }
}

.logo-gf {
  width: 154px;
  height: 56px;
  object-fit: contain;
  background-image: url("/img/logo/logo-green-factory.svg");
}
@media (min-width: 1500px) {
  .logo-gf {
    width: 172px;
    height: 62px;
  }
}

.logo-gf--small {
  width: 88px;
  height: 32px;
}

.logo-gf--secondary {
  background-image: url("/img/logo/logo-green-factory-blue.svg");
}

.image-ratio {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.image-ratio::before {
  display: block;
  content: "";
  padding-top: 70%;
}
.image-ratio__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.image-ratio--border-radius-16 {
  border-radius: 16px;
}

.image-ratio--border-radius-30 {
  border-radius: 30px;
}

.image-ratio--border-radius-100 {
  border-radius: 100px;
}

.image-ratio--145::before {
  padding-top: 145%;
}

.image-ratio--60::before {
  padding-top: 60%;
}

.image-ratio--80::before {
  padding-top: 80%;
}

.image-ratio--120::before {
  padding-top: 120%;
}

.image-ratio--68::before {
  padding-top: 68%;
}

.image-ratio--77::before {
  padding-top: 77%;
}

.image-ratio--square::before {
  padding-top: 100%;
}

.image-ratio--radius-16 {
  border-radius: 16px;
}

.image-ratio--bounded-480 {
  max-width: 480px;
  max-height: 480px;
}

.custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-image--small-radius {
  border-radius: 16px;
}

.custom-image--left-top-radius {
  border-top-left-radius: 16px;
}

.custom-image--contain {
  object-fit: contain;
}

.custom-image--position-absolute-top-right {
  position: absolute;
  top: 0;
  right: 0;
}

.slide-images {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .slide-images {
    flex-direction: row;
    justify-content: end;
    align-items: flex-start;
  }
}
.slide-images__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .slide-images__wrapper {
    margin-left: 25px;
  }
}
@media (min-width: 1300px) {
  .slide-images__wrapper {
    margin-left: 70px;
  }
}
.slide-images__big {
  width: 100%;
  max-width: 312px;
  max-height: 312px;
  border-radius: 20px;
  margin-top: 25px;
  margin-bottom: 25px;
  object-fit: cover;
  object-position: top;
}
@media (min-width: 550px) {
  .slide-images__big {
    object-position: center;
  }
}
@media (min-width: 480px) {
  .slide-images__big {
    max-width: 370px;
    max-height: 370px;
  }
}
@media (min-width: 768px) {
  .slide-images__big {
    width: 290px;
    height: 430.5px;
    margin-top: 0;
    margin-bottom: 0;
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 1300px) {
  .slide-images__big {
    width: 361px;
    height: 535px;
  }
}
@media (min-width: 1500px) {
  .slide-images__big {
    width: 415px;
    height: 615px;
  }
}
.slide-images__small {
  width: 155px;
  height: 121px;
  border-radius: 18px;
  margin-bottom: 25px;
  object-fit: cover;
  display: none;
}
@media (min-width: 768px) {
  .slide-images__small {
    display: block;
  }
}
@media (min-width: 1100px) {
  .slide-images__small {
    width: 208px;
    height: 160px;
  }
}
@media (min-width: 1500px) {
  .slide-images__small {
    width: 239px;
    height: 184px;
  }
}

.slide-section--variant-03 .slide-images {
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .slide-section--variant-03 .slide-images {
    justify-content: center;
    align-items: flex-start;
    margin-top: 12px;
  }
}
@media (min-width: 1100px) {
  .slide-section--variant-03 .slide-images {
    margin-top: 30px;
  }
}
.slide-section--variant-03 .slide-images .slide-images__big {
  margin-top: 0;
  width: 219px;
  height: 326px;
  min-width: auto;
  min-height: auto;
  border-radius: 20px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .slide-section--variant-03 .slide-images .slide-images__big {
    width: 290px;
    height: 430.5px;
    max-width: none;
    max-height: none;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-03 .slide-images .slide-images__big {
    width: 361px;
    height: 535px;
  }
}
@media (min-width: 1500px) {
  .slide-section--variant-03 .slide-images .slide-images__big {
    width: 415px;
    height: 615px;
  }
}
.slide-section--variant-03 .slide-images .slide-images__small {
  display: block;
  margin-left: 150px;
}
@media (min-width: 768px) {
  .slide-section--variant-03 .slide-images .slide-images__small {
    margin-top: 100px;
    margin-left: 0;
    margin-right: 30px;
  }
}
@media (min-width: 900px) {
  .slide-section--variant-03 .slide-images .slide-images__small {
    margin-left: 0px;
    margin-right: 100px;
  }
}
@media (min-width: 1100px) {
  .slide-section--variant-03 .slide-images .slide-images__small {
    width: 208px;
    height: 160px;
    margin-right: 0px;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-03 .slide-images .slide-images__small {
    margin-right: 100px;
  }
}
@media (min-width: 1700px) {
  .slide-section--variant-03 .slide-images .slide-images__small {
    margin-bottom: 300px;
  }
}

.slide-section__side-picture {
  z-index: 3;
  align-self: flex-start;
  object-fit: cover;
  margin-top: -65px;
  width: 153px;
  height: 130px;
}
@media (min-width: 420px) {
  .slide-section__side-picture {
    height: 140px;
    margin-left: 30px;
    margin-top: -80px;
  }
}
@media (min-width: 480px) {
  .slide-section__side-picture {
    margin-left: 60px;
    margin-top: -90px;
    width: 192.6px;
    height: 180px;
  }
}
@media (min-width: 650px) {
  .slide-section__side-picture {
    width: 214px;
    height: 200px;
  }
}
@media (min-width: 768px) {
  .slide-section__side-picture {
    align-self: flex-end;
    margin-right: 30px;
    max-width: 160px;
    height: 180px;
  }
}
@media (min-width: 900px) {
  .slide-section__side-picture {
    margin-right: 40px;
    height: 200px;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .slide-section__side-picture {
    height: 230px;
  }
}
@media (min-width: 1100px) {
  .slide-section__side-picture {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1300px) {
  .slide-section__side-picture {
    width: 297px;
    height: 250px;
    margin-right: 50px;
  }
}
@media (min-width: 1500px) {
  .slide-section__side-picture {
    margin-right: 20px;
    margin-bottom: 35px;
  }
}
@media (min-width: 1700px) {
  .slide-section__side-picture {
    margin-right: 40px;
    margin-bottom: 50px;
  }
}

/***** VIDEOS *****/
.video-ratio {
  width: 100%;
  height: 100%;
  position: relative;
}
.video-ratio__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-ratio__video--radius-16 {
  border-radius: 16px;
}

.image-ratio:hover .video-controls {
  opacity: 1;
}

.video-controls {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.2s linear;
  gap: 10px;
}
.video-controls__control-btn {
  background-color: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
  border-radius: 50%;
}
.video-controls__control-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.video-player__central-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}
.video-player__full-screen-button {
  width: 20px;
  height: 20px;
  background-image: url("/img/icons/icon-fullscreen.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.video-player__video {
  object-fit: contain;
}

.video-player__progress {
  background-color: #001689;
  height: 100%;
}

.video-player__progress-bar {
  width: 100%;
  background: #ff22b8;
  height: 100%;
}

.seek-bar {
  flex-grow: 1;
  margin: 0 10px;
  cursor: pointer;
  -webkit-appearance: none; /* Wyłącza domyślny styl */
  appearance: none;
  width: 100%;
  height: 5px;
  background: #ddd; /* Kolor tła */
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.seek-bar:hover {
  opacity: 1;
}

/* Styl dla Chrome, Safari, i Edge */
.seek-bar::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #f38630; /* Kolor suwaka */
}

.seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none; /* Wyłącza domyślny styl */
  appearance: none;
  width: 15px;
  height: 15px;
  background: #ff22b8; /* Kolor kciuka */
  cursor: pointer;
  border-radius: 50%;
  margin-top: -5px; /* Środek kciuka w środku suwaka */
}

/* Styl dla Firefox */
.seek-bar::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: #ff22b8; /* Kolor suwaka */
}

.seek-bar::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: #f38630; /* Kolor kciuka */
  cursor: pointer;
  border-radius: 50%;
}

/* Styl dla IE */
.seek-bar::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.seek-bar::-ms-fill-lower {
  background: #ff22b8; /* Kolor suwaka */
}

.seek-bar::-ms-fill-upper {
  background: #ddd; /* Kolor tła */
}

.seek-bar::-ms-thumb {
  width: 15px;
  height: 15px;
  background: #f38630; /* Kolor kciuka */
  cursor: pointer;
  border-radius: 50%;
}

.video-tile__timeline {
  width: 86% !important;
  background: #ff22b8;
  position: relative !important;
  height: 6px;
  margin-bottom: 3px;
}

/***** ICONS *****/
.icon-simple-arrow, .icon-simple-arrow--top-right, .icon-simple-arrow--right-light, .icon-simple-arrow--left-light, .icon-simple-arrow--right, .icon-simple-arrow--left {
  width: 84px;
  height: 84px;
}

.icon-simple-arrow--left:before {
  background-image: url("/img/icons/arrow-left-blue.svg");
}
.icon-simple-arrow--left:after {
  background-image: url("/img/icons/arrow-left-dark.svg");
}

.icon-simple-arrow--right:before {
  background-image: url("/img/icons/arrow-right-blue.svg");
}
.icon-simple-arrow--right:after {
  background-image: url("/img/icons/arrow-right-dark.svg");
}

/* LIGHT */
.icon-simple-arrow--left-light:before {
  background-image: url("/img/icons/arrow-left-white.svg");
}
.icon-simple-arrow--left-light:after {
  background-image: url("/img/icons/arrow-left-white.svg");
}

.icon-simple-arrow--right-light:before {
  background-image: url("/img/icons/arrow-right-white.svg");
}
.icon-simple-arrow--right-light:after {
  background-image: url("/img/icons/arrow-right-white.svg");
}

.icon-simple-arrow--top-right:before {
  transform: rotate(-45deg);
  background-image: url("/img/icons/arrow-right-blue.svg");
}
.icon-simple-arrow--top-right:after {
  transform: rotate(-45deg);
  background-image: url("/img/icons/arrow-right-blue.svg");
}

.icon-simple-arrow--small {
  height: 30px;
  width: 30px;
}
@media (min-width: 380px) {
  .icon-simple-arrow--small {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 420px) {
  .icon-simple-arrow--small {
    height: 60px;
    width: 60px;
  }
}
@media (min-width: 768px) {
  .icon-simple-arrow--small {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 900px) {
  .icon-simple-arrow--small {
    height: 80px;
    width: 80px;
  }
}

.icon-circle-title__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.icon-circle-title__container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.icon-circle-title__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}
@media (min-width: 1100px) {
  .icon-circle-title__icon {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
  }
}
.icon-circle-title__title {
  text-align: left;
  font-family: "mangrovesans", sans-serif;
  font-size: 28px;
  line-height: 36px;
}
@media (min-width: 480px) {
  .icon-circle-title__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 768px) {
  .icon-circle-title__title {
    font-size: 46px;
    line-height: 54px;
  }
}
@media (min-width: 1100px) {
  .icon-circle-title__title {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 1300px) {
  .icon-circle-title__title {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 1700px) {
  .icon-circle-title__title {
    font-size: 68px;
    line-height: 76px;
  }
}

.icon-circle-title--full-height {
  width: 100%;
  height: 100%;
}

.icon-location {
  width: 32px;
  height: 32px;
  margin-left: 20px;
}
.icon-location:before {
  background-image: url("/img/icons/icon-location.svg");
}

.icon-search {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon-search::after {
  background: url("/img/icons/icon-search.svg");
}
.icon-search::before {
  background: url("/img/icons/icon-search.svg");
}

.icon-search--light {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon-search--light::after {
  background: url("/img/icons/icon-search-light.svg");
}
.icon-search--light::before {
  background: url("/img/icons/icon-search-light.svg");
}

.icon-search--secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon-search--secondary::after {
  background: url("/img/icons/icon-search-secondary.svg");
}
.icon-search--secondary::before {
  background: url("/img/icons/icon-search-secondary.svg");
}

.icon-search--circle {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon-search--circle::after {
  background: url("/img/icons/icon-search-circle.svg");
}
.icon-search--circle::before {
  background: url("/img/icons/icon-search-circle.svg");
}

.icon-close {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon-close::after {
  background: url("/img/icons/icon-close.svg");
}
.icon-close::before {
  background: url("/img/icons/icon-close.svg");
}

.icon-dropdown {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.icon-dropdown::after, .icon-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.3s ease;
}
.icon-dropdown::after {
  opacity: 1;
  background-image: url("/img/icons/icon-dropdown-arrow-down.svg");
}
.icon-dropdown::before {
  opacity: 0;
  background-image: url("/img/icons/icon-dropdown-arrow-top.svg");
}
.hawk-dropdown--open .icon-dropdown::after {
  opacity: 0;
}
.hawk-dropdown--open .icon-dropdown::before {
  opacity: 1;
}

/***** SECTIONS *****/
.site-section {
  position: relative;
}
.site-section__layer {
  padding: 0 26px;
  box-sizing: border-box;
}
@media (min-width: 650px) {
  .site-section__layer {
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer {
    padding: 0 80px;
  }
}
@media (min-width: 1500px) {
  .site-section__layer {
    padding: 0 140px;
  }
}
.site-section__layer--center {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .site-section__layer--narrow {
    padding: 0 200px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer--narrow {
    padding: 0 280px;
  }
}
@media (min-width: 1500px) {
  .site-section__layer--narrow {
    padding: 0 360px;
  }
}
.site-section__layer--narrow.site-section__layer--narrow-only-left {
  padding-right: 0 !important;
}
.site-section__layer--no-space-mobile {
  padding: 0 26px;
  box-sizing: border-box;
  padding-right: 0;
}
@media (min-width: 650px) {
  .site-section__layer--no-space-mobile {
    padding: 0 40px;
    padding-right: 0;
  }
}
@media (min-width: 1300px) {
  .site-section__layer--no-space-mobile {
    padding: 0 80px;
  }
}
@media (min-width: 1500px) {
  .site-section__layer--no-space-mobile {
    padding: 0 140px;
  }
}
.site-section__layer--small {
  padding: 0 26px;
  box-sizing: border-box;
}
@media (min-width: 650px) {
  .site-section__layer--small {
    padding: 0 40px;
  }
}
@media (min-width: 992px) {
  .site-section__layer--small {
    padding: 0 60px 0 20px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer--small {
    padding: 0 60px 0 20px;
  }
}
@media (min-width: 1500px) {
  .site-section__layer--small {
    padding: 0 80px 0 20px;
  }
}
@media (min-width: 1700px) {
  .site-section__layer--small {
    padding: 0 200px 0 140px;
  }
}
.site-section__layer--only-mobile {
  padding: 0 26px;
  box-sizing: border-box;
}
@media (min-width: 650px) {
  .site-section__layer--only-mobile {
    padding: 0 40px;
  }
}
@media (min-width: 1100px) {
  .site-section__layer--only-mobile {
    padding: 0 0;
  }
}
@media (min-width: 1300px) {
  .site-section__layer--only-mobile {
    padding: 0 0;
  }
}
@media (min-width: 1500px) {
  .site-section__layer--only-mobile {
    padding: 0 0;
  }
}
.site-section__layer--only-left {
  padding-right: 0;
}
@media (min-width: 1100px) {
  .site-section__layer--from-desktop {
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer--from-desktop {
    padding: 0 80px;
  }
}
@media (min-width: 1500px) {
  .site-section__layer--from-desktop {
    padding: 0 140px;
  }
}
.site-section__wrapper {
  padding: 46px 0;
  box-sizing: border-box;
}
@media (min-width: 650px) {
  .site-section__wrapper {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper {
    padding: 70px 0;
  }
}
@media (min-width: 992px) {
  .site-section__wrapper {
    padding: 70px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper--only-bottom-from-tablet {
    padding-top: 0 !important;
  }
}
.site-section__wrapper--less-space {
  padding: 30px 0;
}
@media (min-width: 650px) {
  .site-section__wrapper--less-space {
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper--less-space {
    padding: 50px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--less-space {
    padding: 60px 0;
  }
}
.site-section__wrapper--full-height {
  height: 100%;
}
.site-section__wrapper--more-space {
  padding: 100px 0 80px 0;
}
@media (min-width: 650px) {
  .site-section__wrapper--more-space {
    padding: 130px 0;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper--more-space {
    padding: 180px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--more-space {
    padding: 160px 0 80px 0;
  }
}
.site-section__wrapper--more-only-bottom {
  padding: 50px 0;
  padding-top: 0 !important;
}
@media (min-width: 650px) {
  .site-section__wrapper--more-only-bottom {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper--more-only-bottom {
    padding: 90px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--more-only-bottom {
    padding: 96px 0;
  }
}
.site-section__wrapper--big-vertical-space {
  padding: 50px 0;
}
@media (min-width: 650px) {
  .site-section__wrapper--big-vertical-space {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper--big-vertical-space {
    padding: 90px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--big-vertical-space {
    padding: 112px 0;
  }
}
.site-section__wrapper--huge-vertical-space {
  padding: 100px 0;
}
@media (min-width: 650px) {
  .site-section__wrapper--huge-vertical-space {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper--huge-vertical-space {
    padding: 100px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--huge-vertical-space {
    padding: 150px 0;
  }
}
.site-section__wrapper--only-top {
  padding-bottom: 0 !important;
}
.site-section__wrapper--only-bottom {
  padding-top: 0 !important;
}
.site-section__wrapper--small-top-space {
  padding-top: 30px;
}
@media (min-width: 992px) {
  .site-section__wrapper--small-top-space {
    padding-top: 40px;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--small-top-space {
    padding-top: 50px;
  }
}
@media (min-width: 1100px) {
  .site-section__wrapper--more-bottom-space-desktop {
    padding-bottom: 140px;
  }
}
@media (min-width: 1100px) {
  .site-section__inner {
    padding: 0 20px;
  }
}
@media (min-width: 1300px) {
  .site-section__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1500px) {
  .site-section__inner {
    padding: 0 80px;
  }
}
@media (min-width: 1700px) {
  .site-section__inner {
    padding: 0 8vw;
  }
}
.site-section__row {
  margin-top: 10px;
}

@media (min-width: 1100px) {
  .site-section__inner--less-space-desktop {
    padding: 0 0px;
  }
}
@media (min-width: 1300px) {
  .site-section__inner--less-space-desktop {
    padding: 0 0px;
  }
}
@media (min-width: 1500px) {
  .site-section__inner--less-space-desktop {
    padding: 0 40px;
  }
}

.site-section__inner--max-width {
  margin: 0 auto;
  max-width: 1008px;
}

.site-section__inner--max-width-bigger {
  margin: 0 auto;
  max-width: 1216px;
}

@media (min-width: 1100px) {
  .site-section__layer--less-space-desktop {
    padding: 0 20px;
  }
}
@media (min-width: 1500px) {
  .site-section__layer--less-space-desktop {
    padding: 0 80px;
  }
}

@media (min-width: 650px) {
  .site-section__layer--bigger-space-tablet {
    padding: 0 54px;
  }
}
@media (min-width: 1300px) {
  .site-section__layer--bigger-space-tablet {
    padding: 0 80px;
  }
}
@media (min-width: 1500px) {
  .site-section__layer--bigger-space-tablet {
    padding: 0 140px;
  }
}

.site-section__inner--decorated-bottom-line {
  border-bottom: 1px solid #001689;
}

.site-section__decoration {
  position: absolute;
  width: 100vw;
}

.site-section__decoration--bottom {
  bottom: 0;
  left: 0;
}

.site-section__decoration--secondary {
  background-color: #001689;
}

.site-section__decoration--tertiary {
  background-color: #6bff37;
}

.site-section__decoration--primary {
  background-color: #ff22b8;
}

.site-section__decoration--wave-primary {
  bottom: 0;
  height: 50%;
}
@media (min-width: 650px) {
  .site-section__decoration--wave-primary {
    bottom: -20%;
    height: 0;
  }
}
.site-section__decoration--wave-primary::after {
  content: "";
  position: absolute;
  top: -48px;
  left: -1%;
  width: 102vw;
  height: 50px;
  background-image: url("/img/section-decoration/wave-primary.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.site-section__bg-decoration-picture {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.site-section__bg-decoration-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-section__decoration--rounded-top, .site-section__decoration--rounded-top-tertiary-quaternary, .site-section__decoration--rounded-top-white-primary, .site-section__decoration--rounded-top-white-tertiary, .site-section__decoration--rounded-top-white-secondary {
  position: absolute;
  width: 100%;
  height: 20px;
}
.site-section__decoration--rounded-top::after, .site-section__decoration--rounded-top-tertiary-quaternary::after, .site-section__decoration--rounded-top-white-primary::after, .site-section__decoration--rounded-top-white-tertiary::after, .site-section__decoration--rounded-top-white-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-section__decoration--rounded-top::before, .site-section__decoration--rounded-top-tertiary-quaternary::before, .site-section__decoration--rounded-top-white-primary::before, .site-section__decoration--rounded-top-white-tertiary::before, .site-section__decoration--rounded-top-white-secondary::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.site-section__decoration--rounded-bottom, .site-section__decoration--rounded-bottom-white-tertiary {
  position: absolute;
  width: 100%;
  height: 20px;
  bottom: 0;
  left: 0;
}
.site-section__decoration--rounded-bottom::after, .site-section__decoration--rounded-bottom-white-tertiary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-section__decoration--rounded-bottom::before, .site-section__decoration--rounded-bottom-white-tertiary::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.site-section__decoration--rounded-top-white-secondary::after {
  background-color: #001689;
}
.site-section__decoration--rounded-top-white-secondary::before {
  background-color: #fff;
}

.site-section__decoration--rounded-top-white-tertiary::after {
  background-color: #6bff37;
}
.site-section__decoration--rounded-top-white-tertiary::before {
  background-color: #fff;
}

.site-section__decoration--rounded-top-white-primary::after {
  background-color: #ff22b8;
}
.site-section__decoration--rounded-top-white-primary::before {
  background-color: #fff;
}

.site-section__decoration--rounded-top-tertiary-quaternary::after {
  background-color: #6bff37;
}
.site-section__decoration--rounded-top-tertiary-quaternary::before {
  background-color: #004f2c;
}

.site-section__decoration--rounded-bottom-white-tertiary::after {
  background-color: #6bff37;
}
.site-section__decoration--rounded-bottom-white-tertiary::before {
  background-color: #fff;
}

.site-section__wrapper--decorated-bottom-line {
  border-bottom: 1px solid rgba(0, 22, 137, 0.5);
}

@media (min-width: 650px) {
  .site-section__wrapper--less-space-tablet {
    padding: 40px 0;
  }
}
@media (min-width: 768px) {
  .site-section__wrapper--less-space-tablet {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .site-section__wrapper--less-space-tablet {
    padding: 70px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--less-space-tablet {
    padding: 80px 0;
  }
}

.site-section--bg-white {
  background-color: #fff;
}

.site-section--bg-light {
  background-color: #fff;
}

.site-section--bg-light-grey {
  background-color: #fff;
}

.site-section--bg-tertiary {
  background-color: #6bff37;
}

.site-section--bg-quaternary {
  background-color: #004f2c;
}

.site-section--bg-light-grey {
  background-color: #e1e1e1;
}

.site-section--bg-primary {
  background-color: #ff22b8;
}

.site-section--bg-primary-light {
  background-color: #fed3f2;
}

.site-section--bg-secondary {
  background-color: #001689;
}

.site-section--more-bottom-color {
  position: relative;
}
.site-section--more-bottom-color::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  height: 40px;
  width: 100%;
}

.site-section--more-bottom-color-quaternary::before {
  background-color: #004f2c;
}

.site-section--color-dark {
  color: #000;
}

.site-section--above {
  z-index: 2;
}

.site-section--top-decorate-line {
  position: relative;
}
.site-section--top-decorate-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  height: 1px;
  width: calc(100% - 52px);
  background-color: rgba(0, 22, 137, 0.5);
}
@media (min-width: 650px) {
  .site-section--top-decorate-line::after {
    left: 40px;
    width: calc(100% - 80px);
  }
}
@media (min-width: 1300px) {
  .site-section--top-decorate-line::after {
    left: 80px;
    width: calc(100% - 160px);
  }
}
@media (min-width: 1500px) {
  .site-section--top-decorate-line::after {
    left: 140px;
    width: calc(100% - 280px);
  }
}

.site-section--extra-bottom {
  padding-bottom: 30px;
}
@media (min-width: 1100px) {
  .site-section--extra-bottom {
    padding-bottom: 100px;
  }
}

.site-section--full-height {
  height: 100vh;
}
.site-section--full-height .site-section__wrapper {
  height: 100%;
}
.site-section--full-height .site-section__layer {
  height: 100%;
}
.site-section--full-height .layout {
  height: 100%;
}

.site-section--full-height-from-tablet {
  height: 100%;
}
@media (min-width: 650px) {
  .site-section--full-height-from-tablet {
    height: 100vh;
  }
}
.site-section--full-height-from-tablet .site-section__wrapper {
  height: 100%;
}
.site-section--full-height-from-tablet .site-section__layer {
  height: 100%;
}
.site-section--full-height-from-tablet .layout {
  height: 100%;
}

.site-section--full-height-desktop {
  height: auto;
}
@media (min-width: 650px) {
  .site-section--full-height-desktop {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .site-section--full-height-desktop {
    height: 100vh;
  }
}

.site-section--full-height-desktop-only .site-section__wrapper {
  height: 100%;
  box-sizing: border-box;
}
.site-section--full-height-desktop-only .site-section__layer {
  height: 100%;
}
@media (min-width: 650px) {
  .site-section--full-height-desktop-only {
    height: 100%;
  }
}
@media (min-width: 1100px) {
  .site-section--full-height-desktop-only {
    height: 100vh;
  }
}

.site-section--full-height-tablet .site-section__wrapper {
  height: 100%;
  box-sizing: border-box;
}
.site-section--full-height-tablet .site-section__layer {
  height: 100%;
}
@media (min-width: 650px) {
  .site-section--full-height-tablet {
    height: 100%;
  }
}
@media (min-width: 768px) {
  .site-section--full-height-tablet {
    height: 100vh;
  }
}

@media (min-width: 1100px) {
  .site-section__layer--smaller-left-space {
    padding-left: 30px !important;
  }
}

@media (min-width: 1100px) {
  .site-section__layer--smaller {
    padding: 0 45px;
  }
}

.site-section--horizontal-scroll {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding-bottom: 40px;
  background-color: #001689;
}
@media (min-width: 992px) {
  .site-section--horizontal-scroll {
    height: 100vh;
    padding-bottom: 0;
  }
}

.site-section--rounded-top {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.site-section--rounded-bottom {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: -20px;
}

.site-section--overlaping-top {
  margin-top: -20px;
}

.site-section_color-tertiary {
  color: #6bff37;
}

.site-section_color-white {
  color: #fff;
}

.site-section--first-section {
  padding-top: 60px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .site-section--first-section {
    padding-top: 20px;
  }
}
@media (min-width: 1100px) {
  .site-section--first-section {
    height: calc(100vh - 20px);
  }
  .site-section--first-section .site-section__wrapper {
    height: 100%;
  }
  .site-section--first-section .site-section__layer {
    height: 100%;
    display: flex;
  }
}
@media (min-width: 1700px) {
  .site-section--first-section {
    padding-top: 80px;
    height: calc(100vh - 80px);
  }
}

.site-section--small-offset-top {
  margin-top: -2px;
}

.site-section--height-100 {
  height: 100%;
}

.site-section--wave-top {
  position: relative;
  margin-top: 40px;
}
@media (min-width: 1300px) {
  .site-section--wave-top {
    margin-top: 50px;
  }
}
.site-section--wave-top::after {
  content: "";
  position: absolute;
  top: -38px;
  left: -2%;
  width: 104vw;
  height: 40px;
  background-size: cover;
  background-repeat: repeat;
}
@media (min-width: 1300px) {
  .site-section--wave-top::after {
    top: -50px;
    height: 54px;
  }
}

.site-section--wave-primary::after {
  background-image: url("/img/section-decoration/wave-primary.svg");
}

.site-section--wave-tertiary::after {
  background-image: url("/img/section-decoration/wave-tertiary.svg");
}

.slide-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: hidden;
  padding: 60px 0 0 0;
  /* Fixed the white space issue at the bottom */
}
@media (min-width: 768px) {
  .slide-section {
    flex-direction: row;
    padding: 0;
  }
}
@media (min-width: 1100px) {
  .slide-section {
    cursor: none !important;
  }
}
.slide-section__slide-description {
  display: none;
  max-width: 300px;
}
@media (min-width: 480px) {
  .slide-section__description {
    max-width: 300px;
  }
}
.slide-section__number {
  z-index: 3;
  font-size: 180px;
  opacity: 0.1;
  font-family: "ppacma", sans-serif;
  position: absolute;
  top: 0;
  right: 15px;
}
@media (min-width: 480px) {
  .slide-section__number {
    font-size: 206px;
  }
}
@media (min-width: 768px) {
  .slide-section__number {
    position: absolute;
    margin-top: 0;
    top: 23%;
    left: 0%;
    font-size: 226px;
    transform: none;
  }
}
@media (min-width: 992px) {
  .slide-section__number {
    top: -15%;
    left: -12%;
    margin-left: 0;
    left: 0;
  }
}
@media (min-width: 1100px) {
  .slide-section__number {
    top: 3%;
    left: 0%;
  }
}
@media (min-width: 1300px) {
  .slide-section__number {
    top: 6%;
    left: 0%;
  }
}
@media (min-width: 1500px) {
  .slide-section__number {
    font-size: 256px;
  }
}
.slide-section__container {
  text-align: left;
  width: 100%;
  z-index: 4;
}
@media (min-width: 768px) {
  .slide-section__container {
    width: 400px;
    z-index: 2;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 992px) {
  .slide-section__container {
    top: 50%;
    width: 661px;
  }
}
@media (min-width: 1300px) {
  .slide-section__container {
    top: 50%;
    left: 52%;
    width: 750px;
  }
}
@media (min-width: 1500px) {
  .slide-section__container {
    width: 840px;
    left: 49%;
  }
}
.slide-section__title {
  margin-bottom: 30px;
}
.slide-section__side-picture {
  display: none;
}
@media (min-width: 380px) {
  .slide-section {
    min-height: auto;
  }
}
@media (min-width: 420px) {
  .slide-section {
    min-height: auto;
  }
}
@media (min-width: 480px) {
  .slide-section {
    min-height: auto;
  }
}
@media (min-width: 550px) {
  .slide-section {
    min-height: auto;
  }
}
@media (min-width: 650px) {
  .slide-section {
    min-height: auto;
  }
}
@media (min-width: 992px) {
  .slide-section {
    min-height: auto;
  }
}
@media (min-width: 1100px) {
  .slide-section {
    min-height: 600px;
  }
}
@media (min-width: 1300px) {
  .slide-section {
    min-height: 700px;
  }
}
@media (min-width: 1500px) {
  .slide-section {
    min-height: 750px;
  }
}

.slide-section--variant-02 {
  max-width: 1300px;
}
@media (min-width: 768px) {
  .slide-section--variant-02 .slide-section__number {
    top: 16%;
  }
}
@media (min-width: 992px) {
  .slide-section--variant-02 .slide-section__number {
    transform: none;
    left: 0;
    position: static;
    display: flex;
    margin-bottom: 200px;
    margin-left: 0;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-02 .slide-section__number {
    margin-bottom: 220px;
  }
}
.slide-section--variant-02 .slide-section__description {
  display: block;
}
@media (min-width: 992px) {
  .slide-section--variant-02 .slide-section__description {
    display: none;
  }
}
@media (min-width: 992px) {
  .slide-section--variant-02 .slide-section__slide-description {
    display: block;
  }
}
@media (min-width: 768px) {
  .slide-section--variant-02 .slide-section__container {
    transform: none;
    left: 0%;
    top: 48%;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-02 .slide-section__container {
    max-width: 700px;
  }
}
@media (min-width: 1500px) {
  .slide-section--variant-02 .slide-section__container {
    max-width: 780px;
  }
}
@media (min-width: 768px) {
  .slide-section--variant-02 .slide-images {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .slide-section--variant-02 .slide-images__small {
    margin-bottom: 100px;
  }
}

.slide-section--variant-03 {
  max-width: 1200px;
}
.slide-section--variant-03 .slide-section__number {
  display: none;
}
.slide-section--variant-03 .slide-section__description {
  display: none;
}
.slide-section--variant-03 .slide-section__container {
  z-index: 2;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100%;
  top: 55%;
  left: 50%;
  text-align: center;
}
@media (min-width: 480px) {
  .slide-section--variant-03 .slide-section__container {
    top: 51%;
  }
}
@media (min-width: 550px) {
  .slide-section--variant-03 .slide-section__container {
    width: 500px;
  }
}
@media (min-width: 1100px) {
  .slide-section--variant-03 .slide-section__container {
    left: 53%;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-03 .slide-section__container {
    left: 47%;
  }
}
@media (min-width: 1500px) {
  .slide-section--variant-03 .slide-section__container {
    left: 47%;
  }
}
@media (min-width: 1700px) {
  .slide-section--variant-03 .slide-section__container {
    left: 45%;
  }
}
.slide-section--variant-03 .slide-section__side-picture {
  display: block;
}

.slide-section--variant-04 {
  min-height: auto;
  height: 100%;
  box-sizing: border-box;
  padding-top: 80px;
}
@media (min-width: 768px) {
  .slide-section--variant-04 {
    min-height: 100%;
    padding-top: 0;
    height: calc(100% - 20px);
  }
}
.slide-section--variant-04 .slide-section__container {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  z-index: 2;
}
@media (min-width: 768px) {
  .slide-section--variant-04 .slide-section__container {
    top: 20%;
  }
}
@media (min-width: 1100px) {
  .slide-section--variant-04 .slide-section__container {
    transform: translateX(-50%) translateY(50%);
    z-index: 4;
  }
}
@media (min-width: 1700px) {
  .slide-section--variant-04 .slide-section__container {
    max-width: 1200px;
  }
}
.slide-section--variant-04 .slide-section__slide-description {
  opacity: 0;
}
.slide-section--variant-04 .slide-images__small {
  opacity: 0;
}
.slide-section--variant-04 .slide-section__side-picture {
  display: none;
}
@media (min-width: 768px) {
  .slide-section--variant-04 .slide-section__side-picture {
    display: block;
    max-width: 208px;
    height: 160px;
    border-radius: 16px;
    width: 208px;
    margin-left: 0;
    object-fit: cover;
    object-position: top;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-04 .slide-section__side-picture {
    bottom: 20px;
  }
}
.slide-section--variant-04 .slide-images {
  height: auto;
  margin-top: -48px;
  align-items: center;
}
@media (min-width: 550px) {
  .slide-section--variant-04 .slide-images {
    margin-top: -160px;
  }
}
@media (min-width: 768px) {
  .slide-section--variant-04 .slide-images {
    margin-top: 0;
    height: 100%;
    justify-content: center;
    width: 70%;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-04 .slide-images {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .slide-section--variant-04 .slide-images__big {
    width: auto;
  }
}
.slide-section--variant-04 .slide-section__number {
  display: none;
}
.slide-section--variant-04 .slide-images__wrapper {
  display: none;
}

.slide-section--variant-05 {
  padding: 30px 0;
  min-height: auto;
  height: 100%;
  max-width: 100%;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .slide-section--variant-05 {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: flex-start;
    padding-bottom: 130px;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  .slide-section--variant-05 {
    flex-direction: row-reverse;
    align-items: center;
    overflow: visible;
    justify-content: space-between;
    gap: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-05 {
    justify-content: start;
    padding-left: 18%;
    position: relative;
  }
}
@media (min-width: 1700px) {
  .slide-section--variant-05 {
    margin-right: 12%;
  }
}
.slide-section--variant-05 .slide-section__number {
  opacity: 1;
  bottom: auto;
  color: #fff;
  position: absolute;
  top: 10px;
  margin-left: 186px;
  font-size: 75px;
  right: 0;
}
@media (min-width: 480px) {
  .slide-section--variant-05 .slide-section__number {
    top: 0;
  }
}
@media (min-width: 768px) {
  .slide-section--variant-05 .slide-section__number {
    font-size: 123px;
    top: auto;
    right: auto;
    left: -185px;
    bottom: 110px;
  }
}
@media (min-width: 992px) {
  .slide-section--variant-05 .slide-section__number {
    bottom: -50px;
  }
}
@media (min-width: 1100px) {
  .slide-section--variant-05 .slide-section__number {
    bottom: -24px;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-05 .slide-section__number {
    top: auto;
    font-size: 144px;
    bottom: 0;
  }
}
@media (min-width: 1700px) {
  .slide-section--variant-05 .slide-section__number {
    left: -85px;
  }
}
.slide-section--variant-05 .slide-section__container {
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  width: 80%;
}
@media (min-width: 992px) {
  .slide-section--variant-05 .slide-section__container {
    width: 60%;
    padding-top: 18%;
    box-sizing: border-box;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-05 .slide-section__container {
    width: 40vw;
    padding-top: 0;
    margin-top: 0px;
  }
}
.slide-section--variant-05 .slide-images {
  height: auto;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .slide-section--variant-05 .slide-images {
    height: auto;
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .slide-section--variant-05 .slide-images {
    position: absolute;
    top: 30px;
    left: 0;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-05 .slide-images {
    justify-content: flex-end;
    top: 50%;
    left: auto;
    width: 58%;
    height: 84%;
    right: 0;
    transform: translateY(-50%);
  }
}
@media (min-width: 1500px) {
  .slide-section--variant-05 .slide-images {
    width: 50%;
  }
}
@media (min-width: 1700px) {
  .slide-section--variant-05 .slide-images {
    width: 48%;
  }
}
.slide-section--variant-05 .slide-images__big {
  max-width: 212px;
  max-height: 212px;
}
@media (min-width: 650px) {
  .slide-section--variant-05 .slide-images__big {
    max-width: 312px;
    max-height: 312px;
  }
}
@media (min-width: 768px) {
  .slide-section--variant-05 .slide-images__big {
    width: 274px;
    height: 378px;
    max-width: 100%;
    max-height: 100%;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-05 .slide-images__big {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 900px;
  }
}
@media (min-width: 768px) {
  .slide-section--variant-05 .slide-images__small {
    width: 240px;
    height: 184px;
  }
}
@media (min-width: 1300px) {
  .slide-section--variant-05 .slide-images__small {
    width: 208px;
    height: 160px;
  }
}
@media (min-width: 768px) {
  .slide-section--variant-05 .slide-section__description {
    max-width: 400px;
  }
}

@media (min-width: 768px) {
  .slide-images__big---mobile {
    display: none;
  }
}

.slide-images__big---desktop {
  display: none;
}
@media (min-width: 768px) {
  .slide-images__big---desktop {
    display: block;
  }
}

.irregular-content-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .irregular-content-section {
    flex-direction: row;
    justify-content: space-evenly;
  }
}
@media (min-width: 1500px) {
  .irregular-content-section {
    justify-content: center;
  }
}
.irregular-content-section__first-text {
  display: flex;
  margin-top: 150px;
  z-index: 4;
  position: relative;
}
@media (min-width: 900px) {
  .irregular-content-section__first-text {
    margin-top: 150px;
    margin-bottom: 100px;
  }
}
.irregular-content-section__first-text-inner {
  margin-top: 0;
  margin-left: 20px;
}
@media (min-width: 900px) {
  .irregular-content-section__first-text-inner {
    margin-top: 110px;
    margin-left: -60px;
  }
}
@media (min-width: 1300px) {
  .irregular-content-section__first-text-inner {
    margin-top: 130px;
    margin-left: -60px;
  }
}
.irregular-content-section__second-text {
  display: flex;
  z-index: 4;
}
@media (min-width: 650px) {
  .irregular-content-section__second-text {
    margin-bottom: 150px;
  }
}
@media (min-width: 900px) {
  .irregular-content-section__second-text {
    margin-top: 30px;
    margin-bottom: 100px;
  }
}
@media (min-width: 1100px) {
  .irregular-content-section__second-text {
    margin-left: 100px;
  }
}
@media (min-width: 1500px) {
  .irregular-content-section__second-text {
    margin-left: 100px;
  }
}
.irregular-content-section__image-container {
  position: absolute;
  width: 100%;
}
.irregular-content-section__img {
  position: absolute;
  width: 210px;
  z-index: 3;
  display: none;
}
@media (min-width: 650px) {
  .irregular-content-section__img {
    display: block;
  }
}
@media (min-width: 992px) {
  .irregular-content-section__img {
    width: 250px;
  }
}
@media (min-width: 1300px) {
  .irregular-content-section__img {
    width: 270px;
  }
}
@media (min-width: 1500px) {
  .irregular-content-section__img {
    width: 300px;
  }
}
.irregular-content-section__img--mobile {
  position: relative;
  width: 250px;
  height: 250px;
  z-index: 3;
  display: block;
  margin-top: 10px;
  margin-bottom: 50px;
}
@media (min-width: 650px) {
  .irregular-content-section__img--mobile {
    display: none;
  }
}
.irregular-content-section__img--mobile img {
  display: none;
  width: 100%;
  margin: 0 auto;
}
.irregular-content-section__img--mobile img.active {
  display: block;
}
.irregular-content-section__img--mobile img:nth-child(2) {
  width: 220px;
}
.irregular-content-section__first-picture {
  left: -5%;
  top: 65%;
  width: 200px;
}
@media (min-width: 992px) {
  .irregular-content-section__first-picture {
    left: -8%;
    top: 55%;
  }
}
@media (min-width: 1100px) {
  .irregular-content-section__first-picture {
    top: 65%;
  }
}
@media (min-width: 1500px) {
  .irregular-content-section__first-picture {
    top: 67%;
  }
}
@media (min-width: 992px) {
  .irregular-content-section__first-picture img {
    width: 260px;
  }
}
@media (min-width: 1300px) {
  .irregular-content-section__first-picture img {
    width: 280px;
  }
}
@media (min-width: 1500px) {
  .irregular-content-section__first-picture img {
    width: 310px;
  }
}
.irregular-content-section__second-picture {
  top: -80%;
  left: 35%;
  z-index: -1;
}
@media (min-width: 900px) {
  .irregular-content-section__second-picture {
    top: -10%;
    left: 75%;
  }
}
@media (min-width: 992px) {
  .irregular-content-section__second-picture {
    top: -18%;
  }
}
@media (min-width: 1100px) {
  .irregular-content-section__second-picture {
    left: 80%;
    top: -14%;
  }
}
@media (min-width: 1300px) {
  .irregular-content-section__second-picture {
    top: -4%;
    left: 82%;
  }
}
@media (min-width: 1500px) {
  .irregular-content-section__second-picture {
    top: -8%;
    left: 84%;
  }
}
@media (min-width: 1700px) {
  .irregular-content-section__second-picture {
    top: -11%;
    left: 82%;
  }
}
@media (min-width: 900px) {
  .irregular-content-section__second-picture img {
    width: 220px;
  }
}
@media (min-width: 992px) {
  .irregular-content-section__second-picture img {
    width: 270px;
  }
}
@media (min-width: 1300px) {
  .irregular-content-section__second-picture img {
    width: 290px;
  }
}
@media (min-width: 1500px) {
  .irregular-content-section__second-picture img {
    width: 300px;
  }
}
@media (min-width: 1700px) {
  .irregular-content-section__second-picture img {
    width: 320px;
  }
}
.irregular-content-section__third-picture {
  width: 200px;
  top: 65%;
  right: 5%;
}
@media (min-width: 900px) {
  .irregular-content-section__third-picture {
    top: 65%;
  }
}
@media (min-width: 992px) {
  .irregular-content-section__third-picture {
    top: 55%;
  }
}
@media (min-width: 1300px) {
  .irregular-content-section__third-picture {
    top: 63%;
  }
}
@media (min-width: 1700px) {
  .irregular-content-section__third-picture {
    top: 64%;
  }
}

.wave-section {
  height: 30vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
.wave-section__wave {
  background-color: #6bff37;
  height: 100%;
  width: 100%;
  position: absolute;
  height: 200px;
}
@media (min-width: 768px) {
  .wave-section__wave {
    height: 250px;
  }
}
@media (min-width: 900px) {
  .wave-section__wave {
    height: 100%;
  }
}
.wave-section__wave::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 64px;
  background: url("../../../../img/section-decoration/wave-tertiary.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.wave-section .badge__text {
  font-size: 8px;
}
@media (min-width: 480px) {
  .wave-section .badge__text {
    font-size: 10px;
  }
}
@media (min-width: 550px) {
  .wave-section .badge__text {
    font-size: 12px;
  }
}

.cards-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.cards-section .site-section__wrapper {
  width: 100%;
  height: 100%;
}
.cards-section .site-section__layer {
  width: 100%;
  height: 100%;
  align-items: center;
  position: relative;
}

.spectacular-center-content-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  height: calc(90vh + 30px);
}
@media (min-width: 650px) {
  .spectacular-center-content-section {
    min-height: 768px;
  }
}
@media (min-width: 1300px) {
  .spectacular-center-content-section {
    height: calc(100vh + 30px);
  }
}
.spectacular-center-content-section__first-picture {
  position: absolute;
  top: 0;
  left: -100px;
  border-radius: 20px;
  width: 204px;
  height: 289px;
  z-index: -1;
}
@media (min-width: 380px) {
  .spectacular-center-content-section__first-picture {
    left: -145px;
  }
}
@media (min-width: 420px) {
  .spectacular-center-content-section__first-picture {
    left: -190px;
  }
}
@media (min-width: 550px) {
  .spectacular-center-content-section__first-picture {
    height: 382px;
    width: 300px;
  }
}
@media (min-width: 650px) {
  .spectacular-center-content-section__first-picture {
    width: 388px;
    height: 449px;
  }
}
@media (min-width: 900px) {
  .spectacular-center-content-section__first-picture {
    width: 388px;
    height: 449px;
    left: -220px;
  }
}
@media (min-width: 1100px) {
  .spectacular-center-content-section__first-picture {
    width: 456px;
    height: 528px;
    left: -320px;
  }
}
@media (min-width: 1100px) and (max-height: 670px) {
  .spectacular-center-content-section__first-picture {
    height: 490px;
  }
}
@media (min-width: 1300px) {
  .spectacular-center-content-section__first-picture {
    left: -350px;
  }
}
@media (min-width: 1500px) {
  .spectacular-center-content-section__first-picture {
    left: -350px;
  }
}
@media (min-width: 1700px) {
  .spectacular-center-content-section__first-picture {
    width: 511px;
    height: 591px;
    left: -400px;
  }
}
.spectacular-center-content-section__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.spectacular-center-content-section__second-picture {
  position: absolute;
  right: -100px;
  top: 27%;
  border-radius: 20px;
  width: 245px;
  height: 340px;
  display: none;
}
@media (min-width: 900px) {
  .spectacular-center-content-section__second-picture {
    display: block;
  }
}
@media (min-width: 1100px) {
  .spectacular-center-content-section__second-picture {
    width: 260px;
    height: 400px;
    right: -55px;
  }
}
@media (min-width: 1300px) {
  .spectacular-center-content-section__second-picture {
    right: -100px;
  }
}
@media (min-width: 1500px) {
  .spectacular-center-content-section__second-picture {
    right: -150px;
  }
}
@media (min-width: 1700px) {
  .spectacular-center-content-section__second-picture {
    width: 280px;
    height: 440px;
  }
}
.spectacular-center-content-section__content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  transform: translateX(100px);
  width: 100%;
  height: 289px;
  z-index: 1;
}
@media (min-width: 380px) {
  .spectacular-center-content-section__content-container {
    transform: translateX(135px);
  }
}
@media (min-width: 420px) {
  .spectacular-center-content-section__content-container {
    transform: translateX(180px);
  }
}
@media (min-width: 480px) {
  .spectacular-center-content-section__content-container {
    transform: translateX(210px);
  }
}
@media (min-width: 550px) {
  .spectacular-center-content-section__content-container {
    height: 382px;
  }
}
@media (min-width: 650px) {
  .spectacular-center-content-section__content-container {
    width: 400px;
    height: 449px;
    transform: translateX(130px);
  }
}
@media (min-width: 900px) {
  .spectacular-center-content-section__content-container {
    justify-content: flex-end;
    transform: translateX(0px);
    height: 449px;
  }
}
@media (min-width: 1100px) {
  .spectacular-center-content-section__content-container {
    transform: translateX(0px);
    height: 528px;
  }
}
@media (min-width: 1100px) and (max-height: 670px) {
  .spectacular-center-content-section__content-container {
    height: 486px;
  }
}
@media (min-width: 1300px) {
  .spectacular-center-content-section__content-container {
    transform: translateX(-50px);
    height: 528px;
  }
}
@media (min-width: 1300px) and (max-height: 670px) {
  .spectacular-center-content-section__content-container {
    height: 486px;
  }
}
@media (min-width: 1700px) {
  .spectacular-center-content-section__content-container {
    height: 591px;
  }
}
.spectacular-center-content-section__first-line {
  transform: translateX(40px);
}
@media (min-width: 650px) {
  .spectacular-center-content-section__first-line {
    transform: translateX(80px);
  }
}
@media (min-width: 900px) {
  .spectacular-center-content-section__first-line {
    transform: translateX(135px);
  }
}
.spectacular-center-content-section__third-line {
  transform: translateX(50px);
}
@media (min-width: 650px) {
  .spectacular-center-content-section__third-line {
    transform: translateX(100px);
  }
}
.spectacular-center-content-section__botton-container {
  margin-top: 0px;
  display: none;
  transform: translateY(100px);
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .spectacular-center-content-section__botton-container {
    margin-top: 40px;
    display: block;
  }
}
@media (min-width: 900px) {
  .spectacular-center-content-section__third-line, .spectacular-center-content-section__botton-container {
    transform: translateX(180px);
  }
}
.spectacular-center-content-section__botton-mobile {
  margin-top: 50px;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .spectacular-center-content-section__botton-mobile {
    display: none;
  }
}

.simple-horizontal-section {
  align-items: center;
}
.simple-horizontal-section__main-container {
  max-width: 600px;
}
.simple-horizontal-section .text, .simple-horizontal-section .text-title {
  max-width: 440px;
}
@media (min-width: 768px) {
  .simple-horizontal-section .text, .simple-horizontal-section .text-title {
    max-width: 430px;
  }
}
@media (min-width: 992px) {
  .simple-horizontal-section .text, .simple-horizontal-section .text-title {
    max-width: 600px;
  }
}
.simple-horizontal-section__side-container {
  margin-top: 40px;
  text-transform: uppercase;
}

.google-map {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.google-map__map {
  width: 100%;
  height: 110%;
  position: relative;
  z-index: 1;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.google-map__content-container {
  position: absolute;
  z-index: 2;
  left: 9%;
  top: 7%;
}
@media (min-width: 900px) {
  .google-map__content-container {
    left: 40px;
  }
}
@media (min-width: 992px) {
  .google-map__content-container {
    left: 40px;
    top: 35%;
  }
}
@media (min-width: 1100px) {
  .google-map__content-container {
    left: 50px;
    top: 35%;
  }
}
@media (min-width: 1300px) {
  .google-map__content-container {
    left: 120px;
    top: 40%;
  }
}
@media (min-width: 1500px) {
  .google-map__content-container {
    left: 220px;
  }
}
@media (min-width: 1700px) {
  .google-map__content-container {
    left: 280px;
  }
}
@media (min-width: 2000px) {
  .google-map__content-container {
    left: 18%;
  }
}
.google-map .zoom-panel {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 550px) {
  .google-map .zoom-panel {
    right: 50px;
    bottom: 70px;
  }
}
.google-map .zoom-panel__zoom-in:before {
  background: url("/img/icons/plus.svg");
}
.google-map .zoom-panel__zoom-out:before {
  background: url("/img/icons/minus.svg");
}
.google-map .zoom-panel__zoom-in, .google-map .zoom-panel__zoom-out {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #001689;
  cursor: pointer;
  position: relative;
}
@media (min-width: 550px) {
  .google-map .zoom-panel__zoom-in, .google-map .zoom-panel__zoom-out {
    width: 40px;
    height: 40px;
  }
}
.google-map .zoom-panel__zoom-in:before, .google-map .zoom-panel__zoom-out:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background-size: contain;
}
@media (min-width: 550px) {
  .google-map .zoom-panel__zoom-in:before, .google-map .zoom-panel__zoom-out:before {
    width: 36px;
    height: 36px;
  }
}
.google-map .zoom-panel__zoom-in:active, .google-map .zoom-panel__zoom-out:active {
  transform: scale(0.95);
}
.google-map .zoom-panel__icon {
  font-size: 20px;
}

.bounded-section {
  width: 100%;
  max-width: 512px;
}

.bounded-section--center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.common-loading-items-manager__bar {
  margin: 50px 0 40px 0;
}
.common-loading-items-manager__bottom-bar {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.article__row {
  padding-top: 40px;
}

.article__row--more-space {
  padding-top: 50px;
}

.article__introduction {
  padding-top: 20px;
}

.section-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  margin-top: 60px;
  gap: 30px;
}
@media (min-width: 550px) {
  .section-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 550px) {
  .section-footer__main-container {
    flex: 1;
  }
}

.section-footer--decorated-line-top {
  border-top: 1px solid rgba(0, 22, 137, 0.5);
}

/***** HEADINGS *****/
.section-header__container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 380px) {
  .section-header__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 650px) {
  .section-header__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
}
.section-header__main-container {
  margin-bottom: 20px;
}
@media (min-width: 380px) {
  .section-header__main-container {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (min-width: 650px) {
  .section-header__main-container {
    width: 55%;
    margin-bottom: 0;
  }
}
@media (min-width: 380px) {
  .section-header__side-container {
    width: 100%;
  }
}
@media (min-width: 480px) {
  .section-header__side-container {
    max-width: 400px;
  }
}
@media (min-width: 650px) {
  .section-header__side-container {
    width: 45%;
  }
}
@media (min-width: 1100px) {
  .section-header__side-container {
    max-width: 450px;
  }
}
.section-header__row {
  margin-top: 32px;
}

.section-header--wide {
  width: 100%;
}

@media (min-width: 768px) {
  .section-header--more-space-bottom {
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .section-header--less-bottom-space {
    padding-bottom: 20px;
  }
}

.section-header--big-space-bottom {
  padding-bottom: 70px;
}

.section-header--more-space-top-tablet {
  margin-top: 35px;
}
@media (min-width: 650px) and (max-width: 768px) {
  .section-header--more-space-top-tablet {
    margin-top: 47px;
  }
}
@media (min-width: 768px) {
  .section-header--more-space-top-tablet {
    margin-top: 0;
  }
}

@media (min-width: 1100px) {
  .section-header--bigger-space {
    padding-bottom: 45px;
  }
}
@media (min-width: 1700px) {
  .section-header--bigger-space {
    padding-bottom: 60px;
  }
}

.simple-title {
  font-family: "mangrovescript", sans-serif;
  font-size: 52px;
  line-height: 60px;
}
@media (min-width: 380px) {
  .simple-title {
    font-size: 60px;
    line-height: 68px;
  }
}
@media (min-width: 420px) {
  .simple-title {
    font-size: 72px;
    line-height: 80px;
  }
}
@media (min-width: 480px) {
  .simple-title {
    font-size: 76px;
    line-height: 80px;
  }
}
@media (min-width: 550px) {
  .simple-title {
    font-size: 88px;
    line-height: 88px;
  }
}
@media (min-width: 1300px) {
  .simple-title {
    font-size: 108px;
    line-height: 116px;
  }
}
@media (min-width: 1700px) {
  .simple-title {
    font-size: 120px;
    line-height: 128px;
  }
}

/***** SITE *****/
.site-bar {
  background: transparent;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 10;
}
.site-bar__wrapper {
  padding: 30px 20px 0 20px;
}
@media (min-width: 650px) {
  .site-bar__wrapper {
    padding: 30px 40px 0 30px;
  }
}
@media (min-width: 1300px) {
  .site-bar__wrapper {
    padding: 30px 80px 0 30px;
  }
}
@media (min-width: 1500px) {
  .site-bar__wrapper {
    padding: 30px 140px 0 30px;
  }
}
.site-bar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 80px;
}
@media (min-width: 1300px) {
  .site-bar__container {
    padding-right: 40px;
  }
}
.site-bar__content {
  display: flex;
  align-items: center;
  gap: 50px;
}
.site-bar__search {
  display: none !important;
}

.site-content {
  padding: 0;
  overflow: hidden;
}

.site-footer {
  background: #000;
  color: #fff;
}
.site-footer__layer {
  padding: 0 40px;
}
@media (min-width: 1300px) {
  .site-footer__layer {
    padding: 0 80px;
  }
}
.site-footer__wrapper {
  padding: 40px 0;
}
@media (min-width: 1500px) {
  .site-footer__inner {
    padding: 0 60px;
  }
}

.site-footer--bg-tertiary {
  background-color: #6bff37;
  color: #001689;
}

.site-header {
  background: #f5f5f5;
}
.site-header__layer {
  padding: 0 26px;
  box-sizing: border-box;
}
@media (min-width: 650px) {
  .site-header__layer {
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .site-header__layer {
    padding: 0 80px;
  }
}
@media (min-width: 1500px) {
  .site-header__layer {
    padding: 0 140px;
  }
}
.site-header__wrapper {
  padding: 100px 0 46px;
  box-sizing: border-box;
}
@media (min-width: 1100px) {
  .site-header__wrapper {
    min-height: 100vh;
  }
}
@media (min-width: 768px) {
  .site-header__wrapper {
    padding: 110px 0 70px;
  }
}
@media (min-width: 1100px) {
  .site-header__wrapper {
    padding: 100px 0 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (min-width: 1700px) {
  .site-header__wrapper {
    padding: 150px 0 110px;
  }
}
@media (min-width: 1100px) {
  .site-header__inner {
    padding: 0 20px;
    margin: auto 0;
  }
}
@media (min-width: 1300px) {
  .site-header__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1500px) {
  .site-header__inner {
    padding: 0 80px;
  }
}
@media (min-width: 1700px) {
  .site-header__inner {
    padding: 0 8vw;
  }
}
.site-header__content {
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 650px) {
  .site-header__content {
    max-width: 590px;
    margin: 0 auto;
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .site-header__content {
    max-width: 620px;
  }
}
@media (min-width: 1100px) {
  .site-header__content {
    max-width: 740px;
  }
}
@media (min-width: 1300px) {
  .site-header__content {
    max-width: 850px;
  }
}
@media (min-width: 1700px) {
  .site-header__content {
    max-width: 950px;
  }
}
.site-header__horizontal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px 0;
}
@media (min-width: 992px) {
  .site-header__horizontal-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.site-header__picture-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 1300px) {
  .site-header__picture-container {
    margin-top: 30px;
  }
}
.site-header__picture {
  width: 100%;
  height: 100%;
  min-height: 216px;
  max-height: 216px;
  max-width: 1008px;
  object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 550px) {
  .site-header__picture {
    min-height: 300px;
    max-height: 300px;
  }
}
@media (min-width: 768px) {
  .site-header__picture {
    min-height: 400px;
    max-height: 400px;
  }
}
@media (min-width: 1100px) {
  .site-header__picture {
    min-height: 448px;
    max-height: 448px;
    border-radius: 32px;
  }
}
@media (min-width: 1100px) and (max-height: 810px) {
  .site-header__picture {
    min-height: 360px;
    max-height: 360px;
  }
}
@media (min-width: 1300px) and (max-height: 810px) {
  .site-header__picture {
    min-height: 400px;
    max-height: 400px;
  }
}
.site-header__row {
  margin-top: 45px;
}

@media (min-width: 1300px) {
  .site-header__layer--smaller-from-1500 {
    padding: 0 80px;
  }
}
@media (min-width: 1500px) {
  .site-header__layer--smaller-from-1500 {
    padding: 0 60px;
  }
}
@media (min-width: 1700px) {
  .site-header__layer--smaller-from-1500 {
    padding: 0 140px;
  }
}

.site-header__row--less-space {
  margin-top: 30px;
}

.site-header__row--more-space-mobile {
  padding-top: 80px;
}
@media (min-width: 650px) {
  .site-header__row--more-space-mobile {
    padding-top: 15px;
  }
}
.site-header__row--more-space-mobile li:last-child {
  padding-left: 15px;
}

.--more-space-tablet {
  padding: 110px 0 100px;
}
@media (min-width: 768px) {
  .--more-space-tablet {
    padding: 110px 0 120px;
  }
}
@media (min-width: 1100px) {
  .--more-space-tablet {
    padding: 100px 0 70px;
  }
}

.site-header__wrapper--more-space-mobile {
  padding: 110px 0 20px;
}
@media (min-width: 550px) {
  .site-header__wrapper--more-space-mobile {
    padding: 110px 0 80px;
  }
}
@media (min-width: 768px) {
  .site-header__wrapper--more-space-mobile {
    padding: 110px 0 120px;
  }
}
@media (min-width: 1100px) {
  .site-header__wrapper--more-space-mobile {
    padding: 100px 0 70px;
  }
}

.site-header__wrapper--more-vertical-space {
  padding: 100px 0 110px;
}
@media (min-width: 768px) {
  .site-header__wrapper--more-vertical-space {
    padding: 110px 0 70px;
  }
}
@media (min-width: 1100px) {
  .site-header__wrapper--more-vertical-space {
    padding: 100px 0 100px;
  }
}
@media (min-width: 1700px) {
  .site-header__wrapper--more-vertical-space {
    padding: 150px 0 110px;
  }
}

.site-header__wrapper--average-vertical-space {
  padding: 100px 0 55px;
}
@media (min-width: 650px) {
  .site-header__wrapper--average-vertical-space {
    padding: 110px 0 70px;
  }
}
@media (min-width: 1100px) {
  .site-header__wrapper--average-vertical-space {
    padding: 90px 0 90px;
  }
}
@media (min-width: 1700px) {
  .site-header__wrapper--average-vertical-space {
    padding: 100px 0 90px;
  }
}

@media (min-width: 1100px) {
  .site-header__wrapper--no-viewport-height {
    min-height: 100%;
  }
}

.site-header__content--more-space-mobile {
  margin-top: 60px;
}

.site-header__content--less-space {
  margin-top: 20px;
}

.site-header__content--left-text {
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .site-header__content--left-text {
    text-align: left;
  }
}

.site-header__content--no-space {
  margin-top: 0;
}
@media (min-width: 1100px) {
  .site-header__content--no-space {
    margin-top: 0;
  }
}

.site-header__row--center-content {
  display: flex;
  justify-content: center;
}

.site-header__row--more-space {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .site-header__row--more-space {
    margin-top: 100px;
  }
}

.site-header--bg-secondary {
  background-color: #001689;
  color: #fff;
}

.site-header--bg-tertiary {
  background-color: #6bff37;
  color: #001689;
}

.site-header--bg-primary {
  background-color: #ff22b8;
  color: #fff;
}

.site-header__content--no-space-desktop {
  margin-top: 30px;
}
@media (min-width: 650px) {
  .site-header__content--no-space-desktop {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .site-header__content--no-space-desktop {
    margin-top: 0;
  }
}

@media (min-width: 650px) {
  .site-header__layer--bigger-space-tablet {
    padding: 0 54px;
  }
}
@media (min-width: 1300px) {
  .site-header__layer--bigger-space-tablet {
    padding: 0 80px;
  }
}
@media (min-width: 1500px) {
  .site-header__layer--bigger-space-tablet {
    padding: 0 140px;
  }
}

@media (min-width: 900px) {
  .site-header__inner--lower-space {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.site-wrapper {
  overflow: hidden;
  position: relative;
}

.hero {
  height: 100%;
  position: relative;
}
.hero__picture {
  position: absolute;
}
.hero__content {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  position: relative;
  margin-top: -160px;
}
@media (min-width: 768px) {
  .hero__content {
    align-items: center;
    margin-top: 0;
  }
}
.hero__top {
  display: flex;
}
.hero__bottom {
  text-align: center;
  display: block;
}
.hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1100px) {
  .hero__header {
    position: relative;
  }
}
.hero__picture {
  width: 250px;
  height: auto;
}
@media (min-width: 768px) {
  .hero__picture {
    width: 354px;
  }
}
@media (min-width: 992px) {
  .hero__picture {
    width: 280px;
  }
}
@media (min-width: 1300px) {
  .hero__picture {
    width: 354px;
  }
}
.hero__image {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__picture--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  border-radius: 16px;
  overflow: hidden;
}

.hero__picture--left {
  bottom: 0;
}

.hero__picture--right {
  bottom: 0;
  right: 0;
}

.hero__picture--shadow::after {
  content: "";
  position: absolute;
  top: 0; /* Pokrycie całego obrazu */
  left: 0;
  width: 100%;
  height: 100%; /* Cała wysokość obrazu */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.0018) 0%, rgba(0, 22, 137, 0.5) 100%);
  pointer-events: none; /* Umożliwia interakcję z obrazem pod spodem */
  z-index: 2; /* Upewnia się, że gradient będzie nad obrazem */
}

@media (min-width: 992px) {
  .hero--space-top-from-tablet {
    margin-top: 50px;
  }
}

/***** BUTTONS *****/
.button {
  display: inline-block;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-transform: uppercase;
}
.button:hover {
  animation: pulse 1.5s infinite;
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 34, 184, 0.3);
  border-radius: 50px;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: -1;
}
.button:hover::before {
  transform: translate(-50%, -50%) scale(1.8);
  opacity: 0.6;
}

.button--primary {
  background-color: #ff22b8;
  color: white;
}

.button--secondary {
  background-color: #001689;
  color: #6bff37;
}

.button--tertiary {
  background-color: #6bff37;
  color: #004f2c;
}

.button--quaternary {
  background-color: #004f2c;
  color: white;
}

.button--tertiary-color-secondary {
  background-color: #6bff37;
  color: #001689;
}

.button--light {
  background-color: #fff;
  color: #001689;
}
.button--light:hover {
  color: #001689;
}

.button--class-change-to-primary {
  transition: color 0.8s ease;
}

.button--banner-class-change-to-tertiary {
  transition: color 0.8s ease;
}

.button--outline-secondary {
  background-color: transparent;
  color: #001689;
  border: 1px solid #001689;
}
.button--outline-secondary:hover {
  animation: pulse-secondary 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 34, 184, 0.3);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 34, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 34, 184, 0);
  }
}
.button--secondary:hover {
  animation: pulse-secondary 1.5s infinite;
}

@keyframes pulse-secondary {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 22, 137, 0.3);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 22, 137, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 22, 137, 0);
  }
}
.button--tertiary:hover {
  animation: pulse-tertiary 1.5s infinite;
}

@keyframes pulse-tertiary {
  0% {
    box-shadow: 0 0 0 0 rgba(107, 255, 55, 0.3);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(107, 255, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(107, 255, 55, 0);
  }
}
.button--quaternary:hover {
  animation: pulse-quaternary 1.5s infinite;
}

@keyframes pulse-quaternary {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 79, 44, 0.3);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 79, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 79, 44, 0);
  }
}
.button--light:hover {
  animation: pulse-light 1.5s infinite;
}

@keyframes pulse-light {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.button--lowercase {
  text-transform: lowercase;
}

.link {
  transition: all 0.3s linear;
}
.link__text {
  padding: 8px 0;
}

.link--special {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (min-width: 768px) {
  .link--special {
    font-size: 14px;
  }
}

.link--small {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
}
@media (min-width: 1500px) {
  .link--small {
    font-size: 14px;
  }
}

.link--tertiary-color {
  color: #6bff37;
}
.link--tertiary-color:hover {
  color: #ff22b8;
}

.link--secondary-color {
  color: #001689;
}
.link--secondary-color:hover {
  color: #001689;
}

.link--primary-color {
  color: #ff22b8;
}
.link--primary-color:hover {
  color: #001689;
}

.link--light-color {
  color: #fff;
}
.link--light-color:hover {
  color: #001689;
}

.link--light-primary-color {
  color: #fff;
}
.link--light-primary-color:hover {
  color: #ff22b8;
}

.link--icon, .link--icon-small {
  position: relative;
  padding-right: 36px;
}
.link--icon::before, .link--icon-small::before, .link--icon::after, .link--icon-small::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-size: contain;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .link--icon::before, .link--icon-small::before, .link--icon::after, .link--icon-small::after {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 768px) {
  .link--icon, .link--icon-small {
    padding-right: 60px;
  }
}

.link--icon-left {
  padding-right: 0;
  padding-left: 60px;
}
.link--icon-left::before, .link--icon-left::after {
  right: auto;
  left: 0;
  transform: translateY(-50%);
  background-size: contain;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
}

.link--icon-right {
  padding-right: 60px;
  padding-left: 0;
}
.link--icon-right::before, .link--icon-right::after {
  right: 0;
  left: auto;
  transform: translateY(-50%);
  background-size: contain;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
}

.link--icon-arrow-right-pink::before, .link--icon-arrow-right-pink::after {
  transition: opacity 0.3s linear;
}
.link--icon-arrow-right-pink::before {
  background-image: url("/img/icons/arrow-circle-pink-right.svg");
  opacity: 1;
}
.link--icon-arrow-right-pink::after {
  background-image: url("/img/icons/arrow-circle-green-right.svg");
  opacity: 0;
}
.link--icon-arrow-right-pink:hover::before {
  opacity: 0;
}
.link--icon-arrow-right-pink:hover::after {
  opacity: 1;
}

.link--icon-arrow-down-green::before, .link--icon-arrow-down-green::after {
  transition: opacity 0.3s linear;
}
.link--icon-arrow-down-green::before {
  background-image: url("/img/icons/arrow-circle-green.svg");
  opacity: 1;
}
.link--icon-arrow-down-green::after {
  background-image: url("/img/icons/arrow-circle-pink.svg");
  opacity: 0;
}
.link--icon-arrow-down-green:hover::before {
  opacity: 0;
}
.link--icon-arrow-down-green:hover::after {
  opacity: 1;
}

.link--icon-arrow-left-green::before, .link--icon-arrow-left-green::after {
  transition: opacity 0.3s linear;
}
.link--icon-arrow-left-green::before {
  background-image: url("/img/icons/arrow-circle-green-left.svg");
  opacity: 1;
}
.link--icon-arrow-left-green::after {
  background-image: url("/img/icons/arrow-circle-pink-left.svg");
  opacity: 0;
}
.link--icon-arrow-left-green:hover::before {
  opacity: 0;
}
.link--icon-arrow-left-green:hover::after {
  opacity: 1;
}

.link--icon-arrow-left-pink {
  color: #001689;
}
.link--icon-arrow-left-pink:hover {
  color: #001689;
}
.link--icon-arrow-left-pink::before, .link--icon-arrow-left-pink::after {
  transition: opacity 0.3s linear;
}
.link--icon-arrow-left-pink::before {
  background-image: url("/img/icons/arrow-circle-pink-white-left.svg");
  opacity: 1;
}
.link--icon-arrow-left-pink::after {
  background-image: url("/img/icons/arrow-circle-navy-left.svg");
  opacity: 0;
}
.link--icon-arrow-left-pink:hover::before {
  opacity: 0;
}
.link--icon-arrow-left-pink:hover::after {
  opacity: 1;
}

.link--icon-arrow-left-white::before, .link--icon-arrow-left-white::after {
  transition: opacity 0.3s linear;
}
.link--icon-arrow-left-white::before {
  background-image: url("/img/icons/arrow-circle-light-left.svg");
  opacity: 1;
}
.link--icon-arrow-left-white::after {
  background-image: url("/img/icons/arrow-circle-navy-left.svg");
  opacity: 0;
}
.link--icon-arrow-left-white:hover::before {
  opacity: 0;
}
.link--icon-arrow-left-white:hover::after {
  opacity: 1;
}

.link--icon-arrow-down-primary::before, .link--icon-arrow-down-primary::after {
  transition: opacity 0.3s linear;
}
.link--icon-arrow-down-primary::before {
  background-image: url("/img/icons/arrow-circle-pink-white.svg");
  opacity: 1;
}
.link--icon-arrow-down-primary::after {
  background-image: url("/img/icons/arrow-circle-blue.svg");
  opacity: 0;
}
.link--icon-arrow-down-primary:hover::before {
  opacity: 0;
}
.link--icon-arrow-down-primary:hover::after {
  opacity: 1;
}

.link--icon-arrow-down-light::before, .link--icon-arrow-down-light::after {
  transition: opacity 0.3s linear;
}
.link--icon-arrow-down-light::before {
  background-image: url("/img/icons/arrow-circle-white-blue.svg");
  opacity: 1;
}
.link--icon-arrow-down-light::after {
  background-image: url("/img/icons/arrow-circle-blue.svg");
  opacity: 0;
}
.link--icon-arrow-down-light:hover::before {
  opacity: 0;
}
.link--icon-arrow-down-light:hover::after {
  opacity: 1;
}

.link--icon-change-color-light {
  transition: color 0.8s ease;
}

.link--icon-small {
  padding-left: 40px;
}
@media (min-width: 768px) {
  .link--icon-small {
    padding-left: 40px;
  }
}
.link--icon-small::before, .link--icon-small::after {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .link--icon-small::before, .link--icon-small::after {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 1500px) {
  .link--icon-small::before, .link--icon-small::after {
    width: 26px;
    height: 26px;
  }
}

.wave-link {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 3px;
}
.wave-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  opacity: 0;
  transition: all 0.3s linear;
}
.wave-link:hover::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .7s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23001689' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 16px;
  border-bottom: 0;
  padding-bottom: 0.3em;
  text-decoration: none;
  transform-origin: left;
  opacity: 1;
  width: 100%;
}

.link-line {
  position: relative;
}
.link-line::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #001689;
  transition: all 0.2s linear;
}
.link-line:hover::before {
  width: 100%;
}

.link-line--light::before {
  background-color: #fff;
}

.link-with-icon {
  transition: all 0.2s linear;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 1300px) {
  .link-with-icon {
    font-size: 16px;
    line-height: 24px;
  }
}
.link-with-icon::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 0;
  transition: all 0.2s linear;
  background-color: #001689;
}
.link-with-icon__icon-container {
  display: flex;
  align-items: center;
}
.link-with-icon__icon {
  width: 24px;
  height: 24px;
}
.link-with-icon:hover::after {
  width: 100%;
}

.link-with-icon--bigger {
  font-size: 16px;
  line-height: 24px;
  gap: 8px;
}
@media (min-width: 768px) {
  .link-with-icon--bigger {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1300px) {
  .link-with-icon--bigger {
    font-size: 20px;
    line-height: 28px;
    gap: 10px;
  }
}
.link-with-icon--bigger .link-with-icon__icon {
  width: 26px;
  height: 26px;
}
@media (min-width: 1300px) {
  .link-with-icon--bigger .link-with-icon__icon {
    width: 32px;
    height: 32px;
  }
}

.link-with-icon--secondary {
  color: #001689;
}

.link-with-icon--light {
  color: #fff;
}
.link-with-icon--light::after {
  background-color: #fff;
}

.link-with-icon--larger-link-area {
  padding: 8px 0;
}
.link-with-icon--larger-link-area:first-child {
  padding-top: 0;
}
@media (min-width: 1300px) {
  .link-with-icon--larger-link-area {
    padding: 16px 0;
  }
  .link-with-icon--larger-link-area:first-child {
    padding-top: 0;
  }
}

.link-with-icon--larger-link-area.link-with-icon::after {
  bottom: 6px;
}
@media (min-width: 768px) {
  .link-with-icon--larger-link-area.link-with-icon::after {
    bottom: 8px;
  }
}
@media (min-width: 1300px) {
  .link-with-icon--larger-link-area.link-with-icon::after {
    bottom: 10px;
  }
}

.link-social {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 100px;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-social--secondary {
  background-color: #001689;
}
.link-social--secondary:hover {
  background-color: #ff22b8;
}

.link-social--transparent-to-primary {
  background-color: transparent;
}
.link-social--transparent-to-primary:hover {
  background-color: #ff22b8;
}

.languages-dropdown {
  position: relative;
}
.languages-dropdown__current, .languages-dropdown__list > li {
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: 0.24px;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border-radius: 20px;
  padding: 9px 16px 2px 16px;
  position: relative;
  color: #001689;
  border: 1px solid #001689;
}
.languages-dropdown__current {
  position: relative;
  z-index: 1;
  font-family: "transsanspremium", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #001689;
  padding-bottom: 8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.languages-dropdown__current:before {
  content: "";
  display: inline-block;
  height: 18px;
  width: 25px;
  background-image: url("/img/icons/globe-blue-small.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.languages-dropdown__list {
  list-style: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease-out;
  bottom: -6px;
  left: 0;
  background-color: #fff;
  transform: translateY(100%);
  padding: 0 14px 14px 14px;
  border-radius: 20px;
  width: auto;
  z-index: 0;
}
.languages-dropdown__list > li {
  font-family: "transsanspremium", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  user-select: none;
  justify-content: center;
  border: none;
  padding: 14px 0px 0px 0px;
}
.languages-dropdown__list > li:last-child {
  padding-bottom: 0;
}
.languages-dropdown__list > li .languages-dropdown__item {
  transition: all 0.2s linear;
  white-space: nowrap;
}
.languages-dropdown__list > li .languages-dropdown__item:hover {
  color: #ff22b8;
}
.languages-dropdown.active .languages-dropdown__list {
  opacity: 1;
  visibility: visible;
}
.languages-dropdown__link {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.languages-dropdown--light .languages-dropdown__current,
.languages-dropdown--light .languages-dropdown__list > li {
  color: #fff;
  border: 1px solid #fff;
}
.languages-dropdown--light .languages-dropdown__current {
  color: #fff;
}
.languages-dropdown--light .languages-dropdown__current:before {
  background-image: url("/img/icons/globe-white.svg");
}

.languages-dropdown--top .languages-dropdown__list {
  transform: translateY(-106%);
}

.button-video {
  width: 64px;
  height: 64px;
  background-color: #6bff37;
  border-radius: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .button-video {
    width: 128px;
    height: 128px;
  }
}
.button-video__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .button-video__icon {
    width: 64px;
    height: 64px;
  }
}

.button-scroll-to-top {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 99999;
  width: 64px;
  height: 64px;
}
@media (min-width: 1100px) {
  .button-scroll-to-top {
    position: fixed;
  }
}

.std-button {
  padding: 8px 24px 10px 24px;
  border-radius: 60px;
  border: 1px solid #001689;
  position: relative;
  transition: all 0.2s linear;
  font-size: 12px;
}
.std-button::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.2s linear;
}
.std-button__text {
  text-transform: uppercase;
  padding-left: 24px;
  transition: all 0.2s linear;
}
.std-button:hover {
  background-color: #001689;
  color: #fff;
}
.std-button:hover::before {
  background-image: url("/img/icons/social/fb-small.svg");
}

.std-button--fb::before {
  background-image: url("/img/icons/social/icon-fb-blue.svg");
}

/***** LAYOUT *****/
.layout {
  height: 100%;
  display: flex;
  position: relative;
  text-align: center;
}
@media (min-width: 1100px) {
  .layout {
    text-align: left;
  }
}

.layout--column {
  flex-direction: column;
}

.layout--column-end {
  justify-content: flex-end;
}

.layout__button--top-space {
  margin-top: 30px;
}

.layout--bounded {
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .layout--bounded {
    margin: 0;
  }
}

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

.layout--height-auto {
  height: auto;
}

@media (min-width: 1100px) {
  .layout--row-desktop {
    flex-direction: row;
    gap: 140px;
    align-items: flex-end;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 768px) {
  .row {
    flex-direction: row;
  }
}

.row--big-gap {
  gap: 40px;
}
@media (min-width: 768px) {
  .row--big-gap .col--3 {
    flex: 0 0 calc(25% - 40px);
    max-width: calc(25% - 40px);
  }
}

.row--space-between {
  justify-content: space-between;
}

.row--align-center {
  align-content: center;
}

@media (min-width: 768px) {
  .row--align-end-desktop {
    align-content: flex-end;
  }
}

.row--gap-mobile {
  gap: 40px;
}
@media (min-width: 768px) {
  .row--gap-mobile {
    gap: 0;
  }
}

.row--reverse-column-mobile {
  flex-wrap: nowrap;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .row--reverse-column-mobile {
    flex-direction: row;
  }
}
.row--reverse-column-mobile .col {
  flex: 0 0 auto;
  height: auto;
}

.col {
  flex: 0 0 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .col--3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (min-width: 768px) {
  .col--6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col--4 {
    flex: 0 0 calc(33.33% - 22px);
    max-width: calc(33.33% - 22px);
  }
}
@media (min-width: 1100px) {
  .col--4 {
    flex: 0 0 calc(33.33% - 44px);
    max-width: calc(33.33% - 44px);
  }
}
@media (min-width: 1500px) {
  .col--4 {
    flex: 0 0 calc(33.33% - 66px);
    max-width: calc(33.33% - 66px);
  }
}

@media (min-width: 768px) {
  .col--8 {
    flex: 0 0 calc(66.66% - 22px);
    max-width: calc(66.66% - 22px);
  }
}
@media (min-width: 1100px) {
  .col--8 {
    flex: 0 0 calc(66.66% - 44px);
    max-width: calc(66.66% - 44px);
  }
}
@media (min-width: 1500px) {
  .col--8 {
    flex: 0 0 calc(66.66% - 66px);
    max-width: calc(66.66% - 66px);
  }
}

@media (min-width: 768px) {
  .col--justify-end-desktop {
    display: flex;
    justify-content: flex-end;
  }
}

.col--space-bottom {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .col--space-bottom {
    margin-bottom: 84px;
  }
}
@media (min-width: 1300px) {
  .col--space-bottom {
    margin-bottom: 96px;
  }
}

.col--small-space-bottom {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .col--small-space-bottom {
    margin-bottom: 50px;
  }
}
@media (min-width: 1300px) {
  .col--small-space-bottom {
    margin-bottom: 60px;
  }
}

.col--space-bottom-only-mobile {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .col--space-bottom-only-mobile {
    margin-bottom: 0;
  }
}
@media (min-width: 1300px) {
  .col--space-bottom-only-mobile {
    margin-bottom: 0;
  }
}

.container {
  padding: 20px 0;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container {
    padding: 24px 0;
  }
}
@media (min-width: 1300px) {
  .container {
    padding: 30px 0;
  }
}

.container__header--special-position span {
  text-align: right;
}

.container--line-decorated {
  border-top: 1px solid #777777;
}

.container__header--bottom-space {
  margin-bottom: 300px;
}
@media (min-width: 650px) {
  .container__header--bottom-space {
    margin-bottom: 200px;
  }
}
@media (min-width: 992px) {
  .container__header--bottom-space {
    margin-bottom: 0;
  }
}

@media (min-width: 1100px) {
  .container__header--bounded {
    max-width: 70%;
  }
}
@media (min-width: 1700px) {
  .container__header--bounded {
    padding: 0 8vh;
  }
}

.layout-title-picture {
  position: relative;
}
@media (min-width: 992px) {
  .layout-title-picture {
    display: flex;
    justify-content: space-around;
    height: 100%;
  }
}
@media (min-width: 1300px) {
  .layout-title-picture {
    justify-content: space-between;
  }
}
.layout-title-picture__container-images {
  position: absolute;
  top: 0;
  width: 70%;
  right: 0;
  height: 100%;
}
@media (min-width: 768px) {
  .layout-title-picture__container-images {
    width: 56%;
  }
}
@media (min-width: 992px) {
  .layout-title-picture__container-images {
    position: relative;
    height: 50vw;
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1100px) {
  .layout-title-picture__container-images {
    height: 74vh;
    align-self: center;
  }
}
@media (min-width: 1300px) {
  .layout-title-picture__container-images {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1700px) {
  .layout-title-picture__container-images {
    height: 70vh;
    flex: 0 0 45%;
    max-width: 45%;
  }
}
.layout-title-picture__header {
  position: relative;
  z-index: 1;
  padding: 80px 0 80px;
}
@media (min-width: 650px) {
  .layout-title-picture__header {
    padding: 100px 0 100px;
  }
}
@media (min-width: 992px) {
  .layout-title-picture__header {
    padding: 50px 0 50px;
  }
}
@media (min-width: 1100px) {
  .layout-title-picture__header {
    padding: 50px 0 100px;
  }
}
@media (min-width: 1300px) {
  .layout-title-picture__header {
    padding: 50px 0 50px;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.layout-title-picture__side-image {
  display: none;
  z-index: 2;
}
@media (min-width: 992px) {
  .layout-title-picture__side-image {
    width: 280px;
    height: auto;
    display: block;
    position: absolute;
    bottom: -100px;
    right: -100px;
  }
}
@media (min-width: 1100px) {
  .layout-title-picture__side-image {
    right: auto;
    left: -100px;
  }
}

.layout-content-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 650px) {
  .layout-content-image {
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .layout-content-image {
    flex-direction: row;
  }
}
@media (min-width: 1100px) {
  .layout-content-image {
    flex-direction: column;
  }
}
.layout-content-image__text {
  max-width: 70%;
  align-self: center;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .layout-content-image__text {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1100px) {
  .layout-content-image__text {
    font-size: 20px;
    line-height: 28px;
    max-width: 100%;
    align-self: flex-start;
    text-align: left;
  }
}
@media (min-width: 1300px) {
  .layout-content-image__text {
    max-width: 80%;
  }
}
@media (min-width: 1500px) {
  .layout-content-image__text {
    font-size: 22px;
    line-height: 30px;
    max-width: 100%;
  }
}
.layout-content-image__picture {
  width: 70%;
  display: none;
}
@media (min-width: 650px) {
  .layout-content-image__picture {
    width: 50%;
    display: block;
  }
}
@media (min-width: 992px) {
  .layout-content-image__picture {
    width: 100%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1100px) {
  .layout-content-image__picture {
    width: 100%;
    flex: 0 0 80%;
    max-width: 80%;
    margin-left: auto;
  }
}

.std-items-manager__loading-layer {
  display: block;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
  background-color: #fff;
  z-index: 3;
}

.custom-layout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.custom-layout__heading-wrapper {
  margin-bottom: 20px;
  width: 80%;
}
@media (min-width: 1500px) {
  .custom-layout__heading-wrapper {
    width: 90%;
  }
}
.custom-layout__content-wrapper {
  margin-bottom: 30px;
}
.custom-layout__heading {
  font-family: "mangrovesans", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .custom-layout__heading {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .custom-layout__heading {
    font-size: 24px;
  }
}
.custom-layout__content {
  font-size: 16px;
}
@media (min-width: 768px) {
  .custom-layout__content {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .custom-layout__content {
    font-size: 20px;
  }
}
@media (min-width: 1700px) {
  .custom-layout__content {
    font-size: 22px;
  }
}

/***** CONTAINERS *****/
.project-box__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-box__color-container {
  width: 60%;
  height: 40px;
}

.project-box__color-container--primary {
  background-color: #ff22b8;
}

.project-box__color-container--secondary {
  background-color: #001689;
}

.project-box__color-container--tertiary {
  background-color: #6bff37;
}

.project-box__color-container--quaternary {
  background-color: #004f2c;
}

.bg-parallax {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
}

.bg-parallax--tertiary {
  background-color: #6bff37;
  height: 100vh;
}
@media (min-width: 992px) {
  .bg-parallax--tertiary {
    height: 120vh;
  }
}

.bg-parallax--primary {
  background-color: #ff22b8;
}

.box-bg {
  width: calc(100% - 64px);
  height: 100%;
  width: 100%;
}

.box-bg--primary {
  background-color: #ff22b8;
}

.box-bg--secondary {
  background-color: #001689;
}

.box-bg--tertiary {
  background-color: #6bff37;
}

.box-bg--wave {
  position: relative;
}
.box-bg--wave::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 32px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (min-width: 768px) {
  .box-bg--wave::before {
    left: -62px;
    width: 64px;
  }
}

.box-bg--wave-primary::before {
  background-image: url("/img/section-decoration/wave-horizontal-primary.svg");
}

.box-bg--wave-secondary::before {
  background-image: url("/img/section-decoration/wave-horizontal-secondary.svg");
}
.box-bg--wave-secondary::after {
  background-color: #ff22b8;
}

.box-bg--wave-tertiary::before {
  background-image: url("/img/section-decoration/wave-horizontal-tertiary.svg");
}
.box-bg--wave-tertiary::after {
  background-color: #001689;
}

.box--align-center {
  display: flex;
  align-items: center;
  height: 100%;
}

@media (min-width: 1100px) {
  .swiper--three-images {
    cursor: none !important;
  }
}
.swiper--three-images .swiper-slide {
  height: auto;
}

.swiper-pagination--three-images {
  bottom: 50px !important;
}
@media (min-width: 1100px) {
  .swiper-pagination--three-images {
    bottom: 100px !important;
  }
}
.swiper-pagination--three-images .swiper-pagination-bullet {
  width: 48px;
  height: 48px;
  font-size: 28px;
  background: transparent;
  border: 2px solid #fff;
  transition: all 0.3s linear;
  font-family: "mangrovescript", sans-serif;
  opacity: 1;
  margin: 0 8px !important;
  color: #fff;
  line-height: 2;
}
.swiper-pagination--three-images .swiper-pagination-bullet-active {
  background-color: #fff;
  color: #ff22b8;
}
.swiper-pagination--three-images .swiper-slide {
  height: auto !important;
}

.swiper-product {
  z-index: 2 !important;
  height: 100%;
}
.swiper-product .swiper-slide-active .item-picture__image {
  transition: all 0.2s linear;
  transform: scale(1.2);
}
.swiper-product .swiper-slide-prev .box-product__picture,
.swiper-product .swiper-slide-next .box-product__picture {
  display: flex;
  align-items: center;
}

.swiper-product__navigation {
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 200px;
  justify-content: center;
}
@media (min-width: 480px) {
  .swiper-product__navigation {
    gap: 300px;
    bottom: -12px;
  }
}

.swiper-product-button {
  position: relative;
  width: 64px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  cursor: pointer;
}

.swiper-product-button--next {
  background-image: url("/img/icons/arrow-right-white.svg");
}

.swiper-product-button--prev {
  background-image: url("/img/icons/arrow-left-white.svg");
}

@media (min-width: 992px) {
  .swiper-product-button--dark.swiper-product-button--next {
    background-image: url("/img/icons/arrow-right-dark.svg");
  }
}
@media (min-width: 992px) {
  .swiper-product-button--dark.swiper-product-button--prev {
    background-image: url("/img/icons/arrow-left-dark.svg");
  }
}

.swiper-background {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  display: none;
}
@media (min-width: 992px) {
  .swiper-background {
    display: flex;
  }
}
.swiper-background .swiper-slide {
  background: #000;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.5s ease, width 0.5s ease;
  width: 80vw;
  pointer-events: none;
}
.swiper-background .swiper-slide-prev .box-bg--wave,
.swiper-background .swiper-slide-next .box-bg--wave {
  width: 100% !important;
}
.swiper-background .swiper-slide-prev .box-product__picture,
.swiper-background .swiper-slide-next .box-product__picture {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: flex-end;
}
.slider-container {
  height: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  box-sizing: border-box;
}
@media (min-width: 650px) {
  .slider-container {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .slider-container {
    height: 100%;
  }
}

.slider-horizontal {
  position: relative;
  height: 100%;
}
@media (min-width: 1100px) {
  .slider-horizontal {
    height: 100vh;
  }
}
.slider-horizontal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 50px;
}
.slider-horizontal__top {
  padding: 0 40px 0 20px;
}

.swiper-level-mobile {
  padding-right: 40px;
  padding-left: 40px;
}
.swiper-level-mobile .swiper-slide {
  height: auto;
}

/* ========================== */
/* === Products slider======= */
/* ========================== */
.slides-sections.swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slides-sections.swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.slides-sections.swiper .swiper-button-prev,
.slides-sections.swiper .swiper-button-next {
  color: #fff;
}
.slides-sections.swiper .swiper-button-prev:after,
.slides-sections.swiper .swiper-button-next:after {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .slides-sections.swiper .swiper-button-prev,
  .slides-sections.swiper .swiper-button-next {
    display: none;
  }
}
.slides-sections.swiper .swiper-pagination {
  bottom: 20px;
}
.slides-sections.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
}
.slides-sections.swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ========================== */
/* === End Products slider======= */
/* ========================== */
.swiper-level {
  height: 100%;
  padding-right: 40px;
  background-color: #001689;
}
@media (min-width: 1100px) {
  .swiper-level {
    padding-right: 80px;
    cursor: none !important;
  }
}
.swiper-level .swiper-slide {
  display: flex;
  align-items: center;
  padding: 30px 0;
  box-sizing: border-box;
  height: auto;
}
@media (min-width: 992px) {
  .swiper-level .swiper-slide {
    padding: 60px 0;
  }
}
@media (min-width: 1100px) {
  .swiper-level .swiper-slide {
    padding-right: 60px;
  }
}
@media (min-width: 1300px) {
  .swiper-level .swiper-slide {
    padding: 80px 60px 80px 0;
  }
}
@media (min-width: 1100px) {
  .swiper-level .swiper-slide .panel {
    height: 100%;
    margin-left: 10px;
  }
}
@media (min-height: 900px) {
  .swiper-level .swiper-slide .panel {
    max-height: 600px;
  }
}
.swiper-level .swiper-slide .site-section__layer {
  height: auto;
}
@media (min-width: 1300px) {
  .swiper-level .swiper-slide .site-section__layer--narrow {
    padding: 0 180px;
  }
}
.swiper-level .swiper-slide--center {
  display: flex;
  justify-content: center;
}

.horizontal-scroll-wrapper {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  will-change: transform;
  flex-direction: column;
}
@media (min-width: 992px) {
  .horizontal-scroll-wrapper {
    flex-direction: row;
  }
}

.horizontal-scroll-item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #001689;
  box-sizing: border-box;
  padding: 40px 40px;
}
@media (min-width: 992px) {
  .horizontal-scroll-item {
    flex: 0 0 100vw;
    padding: 100px 60px;
    height: 100%;
    justify-content: flex-start;
  }
}

.horizontal-scroll-item--no-space {
  padding: 0;
}

.swiper-one-item__navigation {
  display: flex;
  padding: 20px 3px;
  justify-content: flex-end;
  gap: 16px;
}
@media (min-width: 768px) {
  .swiper-one-item__navigation {
    position: absolute;
    bottom: 0;
    right: 4px;
    z-index: 2;
  }
}

.swiper-tiles {
  padding-right: 20px;
}
@media (min-width: 1100px) {
  .swiper-tiles {
    padding-right: 0;
  }
}
.swiper-tiles .swiper-slide {
  height: auto;
}
.swiper-tiles.swiper-button-disabled {
  opacity: 0.3;
}

.swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 6px;
  gap: 20px;
}
@media (min-width: 768px) {
  .swiper-navigation {
    justify-content: flex-end;
  }
}

.swiper-navigation--right {
  justify-content: end;
}

.swiper-tiles .swiper-button-disabled.icon-btn-arrow {
  opacity: 0.3;
  cursor: default;
}
.swiper-tiles .swiper-button-disabled.icon-btn-arrow:hover {
  box-shadow: none;
}

/* ========================= */
/* ========= Marek ======== */
/* ========================= */
.swiper-marek {
  overflow: visible;
}
.swiper-marek .swiper-slide {
  height: auto;
}
.swiper-marek .site-section--overlaping-top {
  height: calc(100% + 20px);
}

.synchronize-swiper {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.synchronize-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
}
.synchronize-swiper .swiper-wrapper {
  height: 100%;
}
.synchronize-swiper .swiper-horizontal1 {
  height: 100vh;
  position: relative;
  z-index: 2;
}
.synchronize-swiper .swiper-horizontal1 .site-section {
  width: 100%;
  height: 100%;
}
.synchronize-swiper .swiper-horizontal1 .site-section__wrapper {
  width: 100%;
  height: 100%;
}
.synchronize-swiper .swiper-horizontal1 .site-section__layer {
  width: 100%;
  height: 100%;
}
.synchronize-swiper .swiper-horizontal1 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.synchronize-swiper .swiper-horizontal1 .swiper-slide {
  opacity: 0.4;
}
.synchronize-swiper .swiper-vertical1 {
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.synchronize-swiper .swiper-vertical1 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.synchronize-swiper .swiper-vertical1 .swiper-slide {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.swiper-cards {
  width: 300px;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 140px;
  margin-left: 0;
}
@media (min-width: 768px) {
  .swiper-cards {
    width: 350px;
    height: 460px;
    margin-left: auto;
  }
}
@media (min-width: 1100px) {
  .swiper-cards {
    width: 416px;
    height: 512px;
  }
}
.swiper-cards .swiper-slide {
  transition: transform 0.3s ease;
}
.swiper-cards .swiper-slide .card {
  transform: scale(0.74);
}
.swiper-cards .swiper-slide.swiper-slide-prev .card, .swiper-cards .swiper-slide.swiper-slide-next .card {
  transform: scale(0.9);
}
.swiper-cards .swiper-slide.swiper-slide-active .card__back {
  opacity: 0;
}
.swiper-cards .swiper-slide.swiper-slide-active .card__front {
  opacity: 1;
  z-index: 3;
}
.swiper-cards .swiper-slide.swiper-slide-active .card {
  transform: scale(1);
}

.swiper-cards--smaller-bottom-space {
  margin-bottom: 80px;
}

.swiper-cards--bigger {
  width: 300px;
  height: 440px;
}
@media (min-width: 768px) {
  .swiper-cards--bigger {
    width: 350px;
    height: 520px;
  }
}
@media (min-width: 1100px) {
  .swiper-cards--bigger {
    width: 416px;
    height: 612px;
  }
}
@media (min-width: 1500px) {
  .swiper-cards--bigger {
    width: 372px;
    height: 550px;
  }
}
@media (min-width: 1700px) {
  .swiper-cards--bigger {
    width: 400px;
    height: 580px;
  }
}

.swiper-tiles-grid {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 0 26px;
  position: relative;
}
@media (min-width: 650px) {
  .swiper-tiles-grid {
    padding: 0 40px;
  }
}
@media (min-width: 1100px) {
  .swiper-tiles-grid {
    padding: 0 60px;
  }
}
@media (min-width: 1300px) {
  .swiper-tiles-grid {
    padding: 0 160px;
  }
}
@media (min-width: 1500px) {
  .swiper-tiles-grid {
    padding: 0 calc(140px + 8vw);
  }
}
.swiper-tiles-grid .swiper-wrapper {
  row-gap: 30px;
}
.swiper-tiles-grid .swiper-slide {
  height: auto !important;
}
.swiper-tiles-grid:before {
  left: 0;
}
.swiper-tiles-grid:after {
  right: -3px;
}
.swiper-tiles-grid:before, .swiper-tiles-grid:after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  background-color: #fff;
  display: none;
  z-index: 4;
}
@media (min-width: 1100px) {
  .swiper-tiles-grid:before, .swiper-tiles-grid:after {
    display: block;
  }
}
@media (min-width: 1300px) {
  .swiper-tiles-grid:before, .swiper-tiles-grid:after {
    width: 160px;
  }
}
@media (min-width: 1500px) {
  .swiper-tiles-grid:before, .swiper-tiles-grid:after {
    width: calc(140px + 8vw);
  }
}

.swiper-tiles-button.swiper-button-disabled {
  opacity: 0.3;
}

/* ========================================= */
/* === MOBILE Swiper-pagination-bullet  === */
/* ========================================= */
.swiper-pagination--three-images {
  padding: 10px;
  z-index: 10;
  transform: translateY(-20px);
}
@media (min-width: 1100px) {
  .swiper-pagination--three-images {
    display: none;
  }
}
.swiper-pagination--three-images .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: white;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.swiper-pagination--three-images .swiper-pagination-bullet-active {
  opacity: 1;
  background: white;
  transform: scale(1.5);
}

.item-picture {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
}
.item-picture__picture {
  transition: all 0.3s ease;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.item-picture__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.3s linear;
}
.item-picture__content {
  display: none;
  color: #fff;
  opacity: 0;
  width: 66%;
  text-align: center;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.3s ease;
}
@media (min-width: 650px) {
  .item-picture__content {
    width: 70%;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.item-picture__button {
  padding: 20px;
  padding-bottom: 0;
}
.item-picture__header {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .item-picture__header {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .item-picture__header {
    font-size: 24px;
  }
}
@media (min-width: 1700px) {
  .item-picture__header {
    font-size: 26px;
  }
}

.item-picture__content--color-quaternary {
  color: #fff;
}
@media (min-width: 992px) {
  .item-picture__content--color-quaternary {
    color: #004f2c;
  }
}

.description-container {
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 1100px) {
  .description-container {
    max-width: 800px;
    padding: 40px 0;
  }
}
@media (min-width: 1700px) {
  .description-container {
    padding-top: 80px;
  }
}
.description-container__button {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .description-container__button {
    margin-top: 50px;
  }
}
@media (min-width: 1300px) {
  .description-container__button {
    margin-top: 70px;
  }
}
.description-container__slider {
  padding-top: 100px;
}

.description-container--space-bottom {
  margin-bottom: 50px;
}

.description-container--more-space-bottom {
  margin-bottom: 90px;
}

.description-container__button--center {
  display: flex;
  justify-content: center;
}

.panel {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
  transform-origin: left center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media (min-width: 650px) {
  .panel {
    width: auto;
    margin: 0 auto;
    gap: 20px;
  }
}
@media (min-width: 1100px) {
  .panel {
    width: 100%;
    margin: 0;
    padding: 20px 40px;
    gap: 100px;
    flex-direction: row-reverse;
    align-items: stretch;
  }
}
.panel__picture {
  width: 100%;
  max-width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  height: auto;
}
.panel__picture::before {
  display: block;
  content: "";
  padding-top: 100%;
}
@media (min-width: 1100px) {
  .panel__picture {
    max-height: 100%;
    height: 100%;
    flex: 0 0 calc(50% - 50px);
    max-width: calc(50% - 50px);
  }
}
@media (min-width: 1700px) {
  .panel__picture {
    flex: 0 0 calc(40% - 50px);
    max-width: calc(40% - 50px);
  }
}
.panel__lead {
  flex: 0 0 auto;
  max-width: 100%;
  height: auto;
  padding: 10px 10px 10px 0;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 650px) {
  .panel__lead {
    padding: 20px 20px 20px 0;
  }
}
@media (min-width: 1100px) {
  .panel__lead {
    flex: 0 0 calc(50% - 50px);
    max-width: calc(50% - 50px);
    padding: 30px 50px 30px 0;
    height: auto;
  }
}
@media (min-width: 1700px) {
  .panel__lead {
    flex: 0 0 calc(60% - 50px);
    max-width: calc(60% - 50px);
    padding: 30px 50px 30px 0;
    height: auto;
  }
}
@media (min-width: 1500px) {
  .panel__lead {
    padding: 80px 50px 80px 0;
  }
}
.panel__number {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: auto;
  font-size: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  font-family: "ppacma", sans-serif;
  color: #6bff37;
}
@media (min-width: 1100px) {
  .panel__number {
    font-size: 144px;
    height: 144px;
  }
}
.panel__header {
  margin-bottom: 10px;
}
@media (min-width: 650px) {
  .panel__header {
    margin-bottom: 20px;
  }
}
.panel__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 16px;
}
.panel__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
@media (min-width: 650px) {
  .panel__icon {
    margin-bottom: 20px;
  }
}
@media (min-width: 1100px) {
  .panel__icon {
    width: 96px;
    height: 96px;
    margin-bottom: 0;
  }
}
.panel__content {
  max-width: 400px;
}

.panel--tertiary {
  background-color: #6bff37;
  color: #004f2c;
}

.panel--primary {
  background-color: #ff22b8;
  color: #fff;
}
.panel--primary .panel__number {
  color: #ff22b8;
}

.panel--quaternary {
  background-color: #004f2c;
  color: #fff;
}
.panel--quaternary .panel__number {
  color: #6bff37;
}
.panel--quaternary .panel__header .section-title {
  color: #6bff37;
}

.panel--primary-light {
  background-color: #fed3f2;
  color: #004f2c;
}
.panel--primary-light .panel__number {
  color: #ff22b8;
}
.panel--primary-light .panel__header .section-title {
  color: #ff22b8;
}

.container-social {
  display: flex;
  align-items: center;
  gap: 30px;
}

.container-social--space-left {
  margin-left: auto;
}

.grid-container {
  display: grid;
  grid-template: auto/1fr;
  row-gap: 30px;
  align-items: center;
}
@media (min-width: 992px) {
  .grid-container {
    grid-template: auto/1fr 1fr;
    row-gap: 40px;
    column-gap: 30px;
  }
}
.grid-container__center {
  grid-row: 2/3;
  grid-column: 1/2;
}
@media (min-width: 992px) {
  .grid-container__center {
    grid-row: 1/3;
    grid-column: 2/3;
  }
}
.grid-container__bottom {
  align-self: flex-start;
}

@media (min-width: 1100px) {
  .inner-container {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.inner-container--decorated-bottom-line {
  border-bottom: 1px solid #001689;
}

.value-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
}
@media (min-width: 650px) {
  .value-row {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 1500px) {
  .value-row {
    font-size: 18px;
    line-height: 22px;
  }
}
.value-row__value {
  text-align: right;
  min-width: 24px;
}

.value-row--distinguished {
  font-weight: 600;
}

.picture-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 24px;
  transition: all 0.2s linear;
  position: relative;
}
.picture-tile__image-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  transition: all 0.2s linear;
  display: block;
  position: relative;
}
.picture-tile__image-container::before {
  display: block;
  content: "";
  padding-top: 90%;
}
.picture-tile__image-container:hover .picture-tile__image {
  transform: scale(1.1);
}
.picture-tile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
}
.picture-tile__title h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
.picture-tile__content {
  display: flex;
  flex-direction: column;
  flex: auto;
  justify-content: space-between;
  gap: 16px;
}
.picture-tile__bar {
  display: flex;
  justify-content: flex-start;
}
.picture-tile__button-container {
  margin-top: auto;
  padding-top: 10px;
  padding-bottom: 20px;
}
.picture-tile__bar--top-left {
  position: absolute;
  top: 10px;
  left: 10px;
}

.picture-tile--cat-text .text p:last-child, .picture-tile--cat-text .text-title p:last-child {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* liczba linii */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.full-screen-slider {
  position: relative;
  display: flex;
}
@media (min-width: 768px) {
  .full-screen-slider {
    padding-bottom: 0px;
  }
}
.full-screen-slider__controls {
  position: absolute;
  display: flex;
  justify-content: space-around;
  width: 100%;
  bottom: 90px;
  z-index: 10;
  height: 0;
  background-color: red;
}
@media (min-width: 420px) {
  .full-screen-slider__controls {
    bottom: 125px;
  }
}
@media (min-width: 768px) {
  .full-screen-slider__controls {
    bottom: 140px;
  }
}
@media (min-width: 992px) {
  .full-screen-slider__controls {
    justify-content: flex-end;
    right: 70px;
  }
}
@media (min-width: 1300px) {
  .full-screen-slider__controls {
    bottom: 250px;
  }
}
.full-screen-slider .swiper-button-disabled {
  opacity: 0.4;
}

.full-screen-slider--v {
  height: 100%;
  min-height: 100vh;
}
@media (min-width: 1100px) {
  .full-screen-slider--v {
    min-height: 100vh;
  }
}
.full-screen-slider--v .site-section {
  height: 100%;
  width: 100%;
}
.full-screen-slider--v .site-section__wrapper {
  height: 100%;
  width: 100%;
}
.full-screen-slider--v .site-section__layer {
  height: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .full-screen-slider__controls--v {
    bottom: 13%;
    right: 0;
    width: 40%;
  }
}
@media (min-width: 1300px) {
  .full-screen-slider__controls--v {
    bottom: 15%;
    right: 30px;
  }
}
.full-screen-slider__controls--v .swiper-button-disabled {
  opacity: 0.4;
}

.self-filling-container {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 700px;
  height: calc(100vh + 30px);
}
@media (min-width: 550px) {
  .self-filling-container {
    min-height: 800px;
  }
}
@media (min-width: 650px) {
  .self-filling-container {
    min-height: 700px;
  }
}

@media (min-width: 768px) {
  .side-picture-section {
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1100px) {
  .side-picture-section {
    column-gap: 80px;
  }
}
.side-picture-section__picture-container {
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .side-picture-section__picture-container {
    max-width: 100%;
    margin: 0;
    flex: 0 0 calc(50% - 10px);
  }
}
@media (min-width: 1100px) {
  .side-picture-section__picture-container {
    flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .side-picture-section__content-container {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (min-width: 1100px) {
  .side-picture-section__content-container {
    flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
  }
}
@media (min-width: 1100px) {
  .side-picture-section__picture {
    max-width: 600px;
  }
}

.menu-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  position: relative;
}
.menu-container__information {
  padding-bottom: 70px;
}
@media (min-width: 650px) {
  .menu-container__information {
    padding-bottom: 30px;
  }
}
@media (min-width: 1100px) {
  .menu-container__information {
    padding-bottom: 30px;
  }
}
.menu-container__icons-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.menu-container__list {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .menu-container__list {
    padding-bottom: 0;
  }
}

@media (min-width: 1300px) {
  .menu-container__list--space-top {
    padding-top: 100px;
  }
}

@media (min-width: 992px) {
  .container-area {
    display: flex;
    flex-direction: column;
    gap: 70px;
  }
}
@media (min-width: 1100px) {
  .container-area {
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
}
@media (min-width: 1300px) {
  .container-area {
    gap: 60px;
  }
}
@media (min-width: 1700px) {
  .container-area {
    gap: 100px;
  }
}
.container-area__main {
  position: relative;
}
@media (min-width: 992px) {
  .container-area__main {
    height: 100%;
  }
}
@media (min-width: 1100px) {
  .container-area__main {
    flex: 0 0 calc(70% - 20px);
    max-width: calc(70% - 20px);
  }
}
@media (min-width: 1300px) {
  .container-area__main {
    flex: 0 0 calc(75% - 30px);
    max-width: calc(75% - 30px);
  }
}
.container-area__side {
  padding-top: 30px;
}
@media (min-width: 1100px) {
  .container-area__side {
    padding-top: 0;
    flex: 0 0 calc(30% - 20px);
    max-width: calc(30% - 20px);
  }
}
@media (min-width: 1300px) {
  .container-area__side {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
  }
}
@media (min-width: 992px) {
  .container-area__header {
    height: 100%;
  }
}

.wave-moving-top {
  width: 100%;
  height: 50px;
  position: relative;
  overflow: hidden;
  margin-top: -2px;
}
.wave-moving-top::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 500%;
  height: 100%;
  background-size: auto 100%;
  background-repeat: repeat-x;
  animation: waveMove 20s linear infinite;
}

.wave-moving-top--tertiary-secondary {
  background-color: #001689;
}
.wave-moving-top--tertiary-secondary::after {
  background-image: url("/img/section-decoration/wave-tertiary.svg");
}

.wave-moving-top--light {
  z-index: 1;
  margin-top: -48px;
}
.wave-moving-top--light::after {
  background-image: url("/img/section-decoration/wave-light.svg");
}

@keyframes waveMove {
  from {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  to {
    transform: translateX(-50%);
  }
}
.container-columns-two-irregular {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-content: center;
  position: relative;
  height: 100%;
}
@media (min-width: 1100px) {
  .container-columns-two-irregular {
    flex-direction: row;
  }
}
@media (min-width: 1100px) {
  .container-columns-two-irregular__side {
    width: 32%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.container-columns-two-irregular__main {
  position: relative;
}
@media (min-width: 1100px) {
  .container-columns-two-irregular__main {
    width: 100%;
    height: auto;
    margin: auto 0 auto auto;
  }
}
.container-columns-two-irregular__main:hover .container-columns-two-irregular__button {
  opacity: 1;
}
.container-columns-two-irregular__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s linear;
  opacity: 0;
}

.slides-sections {
  margin-top: -20px;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.slides-sections-v {
  height: 100%;
}
@media (min-width: 768px) {
  .slides-sections-v {
    min-height: 100vh;
    height: 100vh;
  }
}
@media (min-width: 1300px) {
  .slides-sections-v {
    min-height: 100%;
    height: 100%;
  }
}

.slides-sections--v {
  min-height: 100% !important;
  height: 100%;
}
@media (min-width: 650px) {
  .slides-sections--v {
    max-height: 100%;
  }
}

.vertically-stretch-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .vertically-stretch-container {
    height: 100%;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.vertically-stretch-container .logo-green-factory {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .vertically-stretch-container .logo-green-factory {
    margin-bottom: 40px;
  }
}
@media (min-width: 900px) {
  .vertically-stretch-container .logo-green-factory {
    margin-bottom: 70px;
  }
}
@media (min-width: 1300px) {
  .vertically-stretch-container .logo-green-factory {
    margin-bottom: 60px;
  }
}
@media (min-width: 1700px) {
  .vertically-stretch-container .logo-green-factory {
    margin-bottom: 70px;
  }
}
.vertically-stretch-container .address {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .vertically-stretch-container .address {
    margin-bottom: 40px;
  }
}
@media (min-width: 900px) {
  .vertically-stretch-container .address {
    margin-bottom: 70px;
  }
}
@media (min-width: 1300px) {
  .vertically-stretch-container .address {
    margin-bottom: 60px;
  }
}
@media (min-width: 1700px) {
  .vertically-stretch-container .address {
    margin-bottom: 70px;
  }
}

.box-banner {
  display: grid;
  grid-template: 1fr 1fr/50% 50%;
  height: 100%;
  color: #fff;
}
@media (min-width: 992px) {
  .box-banner {
    grid-template: auto/1fr 1fr 1fr;
  }
}
.box-banner__first {
  grid-column: 1/3;
  grid-row: 2/3;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .box-banner__first {
    grid-column: 1/2;
    grid-row: 1/2;
    border-bottom-right-radius: 0;
    border-top-left-radius: 16px;
  }
}
.box-banner__second {
  grid-column: 1/2;
  border-top-left-radius: 16px;
  overflow: hidden;
  background-color: #fed3f2;
}
@media (min-width: 992px) {
  .box-banner__second {
    grid-column: 2/3;
    border-top-left-radius: 0;
  }
}
.box-banner__third {
  grid-column: 2/3;
  border-top-right-radius: 16px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .box-banner__third {
    grid-column: 3/4;
    border-bottom-right-radius: 16px;
  }
}
.box-banner__header {
  font-family: "ppacma", sans-serif;
}
.box-banner__content {
  background-color: #001689;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-around;
}
@media (min-width: 1300px) {
  .box-banner__content {
    padding: 30px;
    justify-content: space-between;
  }
}
.box-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-banner__picture {
  width: 100%;
  height: 100%;
}
.box-banner__text p {
  padding: 0;
}

.box-banner__image--contain {
  object-fit: contain;
}

.card {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  border-radius: 16px;
  transition: transform 0.6s ease, z-index 0.6s ease;
  overflow: hidden;
}
.card__front {
  opacity: 0;
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card__back {
  opacity: 1;
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card.active {
  z-index: 10;
}
.card.active .card__front {
  opacity: 1;
}
.card.active .card__back {
  opacity: 0;
}

.cards-slider {
  height: 60vh;
  width: 90vw;
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .cards-slider {
    height: 64vh;
    width: 80vw;
  }
}
@media (min-width: 992px) {
  .cards-slider {
    left: 10%;
  }
}
@media (min-width: 1300px) {
  .cards-slider {
    left: 16%;
  }
}
@media (min-width: 1700px) {
  .cards-slider {
    left: 30%;
  }
}

.card-info {
  width: 100%;
  height: 100%;
}
.card-info__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.picture-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.picture-box__image {
  width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}
@media (min-width: 650px) {
  .picture-box__image {
    width: 384px;
    height: 480px;
  }
}

.infoBox {
  border-radius: 20px;
  -webkit-box-shadow: 0px 13px 41px -28px rgb(66, 68, 90);
  -moz-box-shadow: 0px 13px 41px -28px rgb(66, 68, 90);
  box-shadow: 0px 13px 41px -28px rgb(66, 68, 90);
  overflow: hidden;
}

.exposed-label__container {
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.exposed-label__content-container {
  font-family: "transsanspremium", sans-serif;
}
.exposed-label__title {
  font-size: 20px;
}
.exposed-label__content {
  font-size: 12px;
}
@media (min-width: 1500px) {
  .exposed-label__content {
    font-size: 14px;
  }
}

.container-video {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  position: relative;
}

.three-items-content-section {
  margin: auto 0;
}
@media (min-width: 992px) {
  .three-items-content-section {
    height: 100%;
  }
}

.bar-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .bar-info {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}

.bar-item {
  position: absolute;
}

.bar-item--bottom {
  bottom: 0;
}

.bar-item--little-bottom {
  bottom: 44px;
}

.bar-item--right {
  right: 0;
}

.bar-item--over {
  z-index: 3;
}

.box-product {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
}
.box-product__picture {
  transition: all 0.3s ease;
  width: 80%;
  height: auto;
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-product__image {
  width: auto;
  height: auto;
  object-fit: contain;
}
.box-product__content {
  display: none;
  opacity: 0;
  width: 70%;
  text-align: center;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.3s ease;
}
.box-product__button {
  padding: 20px;
}
.box-product__header {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .box-product__header {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .box-product__header {
    font-size: 24px;
  }
}
@media (min-width: 1700px) {
  .box-product__header {
    font-size: 26px;
  }
}

.std-row {
  display: flex;
}

.std-row--center {
  justify-content: center;
}

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

.info-note__wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .info-note__wrapper {
    justify-content: flex-start;
  }
}
@media (min-width: 1300px) {
  .info-note__wrapper {
    padding-left: 2vw;
  }
}
@media (min-width: 1500px) {
  .info-note__wrapper {
    padding-left: 1vw;
  }
}

.container-two-rows {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.container-two-rows__top {
  flex: 1;
}
.container-two-rows__bottom {
  flex: 1;
}

.container-columns-two-regular {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .container-columns-two-regular {
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .container-columns-two-regular__column {
    flex: 1;
  }
}

@media (min-width: 1100px) {
  .container-columns-two-regular__column--flex-end-desktop {
    display: flex;
    justify-content: flex-end;
  }
}

.plain-content-with-button {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1100px) {
  .plain-content-with-button {
    flex-direction: row;
    gap: 40px;
  }
}
.plain-content-with-button__button {
  display: flex;
  align-items: center;
}
.plain-content-with-button__content {
  text-align: center;
}
@media (min-width: 992px) {
  .plain-content-with-button__content {
    text-align: left;
  }
}
@media (min-width: 1700px) {
  .plain-content-with-button__content {
    font-size: 22px;
  }
}

.plain-content-with-button--bounded {
  max-width: 500px;
}

/***** FORMS *****/
.form-search {
  width: 100%;
}

.form-search--mobile {
  width: fit-content;
  display: none;
}

.active {
  display: block;
}

.hidden {
  display: none;
}

/***** GSAP *****/
.anmt-hero-section,
.hero__content,
.anmt-hero-picture,
.anmt-hero-text-1,
.anmt-hero-text-2 {
  visibility: hidden;
  opacity: 0;
}

.anmt-hero-section {
  z-index: 1;
}

.anmt-hero-text-1 {
  transition: color 0.8s ease;
}

.anmt-hero-text-2 {
  transition: color 0.8s ease;
}

.anmt-hero-text-3 {
  transition: color 0.8s ease;
}

.anmt-hero-text-4 {
  transition: color 0.8s ease;
  position: absolute;
  bottom: -46px;
}
@media (min-width: 768px) {
  .anmt-hero-text-4 {
    bottom: 184px;
  }
}
@media (min-width: 992px) {
  .anmt-hero-text-4 {
    bottom: 126px;
    right: 0;
  }
}
@media (min-width: 1100px) {
  .anmt-hero-text-4 {
    bottom: 20px;
    right: -200px;
  }
}

.anmt-decreases-picture-1 {
  position: absolute;
  width: 45%;
  height: auto;
  right: 2%;
  bottom: 5%;
}
@media (min-width: 768px) {
  .anmt-decreases-picture-1 {
    width: 25%;
    right: auto;
    left: 2%;
    bottom: auto;
    top: 0;
  }
}

.anmt-decreases-picture-2 {
  position: absolute;
  width: 45%;
  height: auto;
  left: 2%;
  bottom: 0;
}
@media (min-width: 768px) {
  .anmt-decreases-picture-2 {
    width: 25%;
    left: auto;
    right: 2%;
    top: 40%;
    bottom: auto;
  }
}

.anmt-banner {
  position: relative;
  overflow: hidden;
}

.anmt-banner-image {
  width: auto;
  height: 30vh;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  opacity: 1;
  z-index: 5;
}
@media (min-width: 480px) {
  .anmt-banner-image {
    height: 40vh;
    transform: translate(-50%, -60%);
  }
}
@media (min-width: 768px) {
  .anmt-banner-image {
    height: 34vh;
    transform: translate(-50%, -35%);
  }
}
@media (min-width: 992px) {
  .anmt-banner-image {
    height: 40vh;
    transform: translate(-50%, -42%);
  }
}
@media (min-width: 1100px) {
  .anmt-banner-image {
    height: 60vh;
    top: 0;
    left: 0;
    width: 100%;
    transform: translate(80%, 60%);
  }
}
@media (min-width: 1700px) {
  .anmt-banner-image {
    height: 50vh;
  }
}

.anmt-banner-canvas-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ustaw z-index, aby canvas było pod tekstem lub innymi elementami */
}

.anmt-banner {
  position: relative;
  overflow: hidden;
}

.anmt-banner-row {
  z-index: 10;
}

.anmt-banner-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; /* Jeśli chcesz, aby canvas był pod innymi elementami, zmniejsz wartość z-index */
}

.anmt-top-myl-image-big,
.anmt-top-myl-title,
.anmt-top-myl-side,
.anmt-top-myl-image-small {
  visibility: hidden;
  opacity: 0;
}

.anmt--slider-container {
  overflow: hidden;
}

.parallax-scene {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (min-width: 1100px) {
  .parallax-scene {
    height: 70%;
    width: 50%;
    top: 15%;
    right: 0;
  }
}

.anmt-subpage-hero__header {
  opacity: 0;
}
.anmt-subpage-hero__sticky {
  opacity: 0;
}

/***** MENU *****/
.sliding-menu {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.sliding-menu__inner {
  padding: 30px 20px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-sizing: border-box;
}
@media (min-width: 650px) {
  .sliding-menu__inner {
    padding: 30px 60px;
  }
}
@media (min-width: 1500px) {
  .sliding-menu__inner {
    padding: 30px 100px;
  }
}
@media (min-width: 1700px) {
  .sliding-menu__inner {
    padding: 30px 120px;
  }
}
.sliding-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 60px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .sliding-menu__top {
    padding-right: 140px;
  }
}
.sliding-menu__info-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.sliding-menu__container {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  gap: 30px;
}
@media (min-width: 1100px) {
  .sliding-menu__container {
    gap: 70px;
  }
}
.sliding-menu__main {
  width: 100%;
  height: 100%;
}
.sliding-menu__side {
  display: none;
  position: relative;
}
@media (min-width: 768px) {
  .sliding-menu__side {
    display: block;
    flex: 0 0 40%;
    height: 60%;
    width: auto;
  }
}
@media (min-width: 992px) {
  .sliding-menu__side {
    height: 100%;
  }
}
@media (min-width: 1100px) {
  .sliding-menu__side {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
.sliding-menu__search {
  display: none;
}

@media (min-width: 768px) {
  .sliding-menu__inner--only-left {
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .sliding-menu__inner--only-top {
    padding-bottom: 0;
  }
}

.sliding-menu--secondary {
  background-color: #001689;
}

.menu-item {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #001689;
}

.menu-item--light {
  color: #fff;
}

.menu-item-special {
  text-align: left;
}
.menu-item-special__heading {
  font-family: "ppacma", sans-serif;
  font-size: 32px;
  line-height: 40px;
  color: #6bff37;
}
@media (min-width: 768px) {
  .menu-item-special__heading {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (min-width: 1300px) {
  .menu-item-special__heading {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (min-width: 1700px) {
  .menu-item-special__heading {
    font-size: 44px;
    line-height: 52px;
  }
}
.menu-item-special__content {
  color: #fff;
  font-size: 14px;
  position: relative;
  width: max-content;
}
@media (min-width: 768px) {
  .menu-item-special__content {
    font-size: 16px;
  }
}
@media (min-width: 1300px) {
  .menu-item-special__content {
    font-size: 20px;
  }
}
@media (min-width: 1700px) {
  .menu-item-special__content {
    font-size: 22px;
  }
}
.menu-item-special__content::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  opacity: 0;
  transition: all 0.5s linear;
}
.menu-item-special:hover .menu-item-special__content::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .7s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 16px;
  border-bottom: 0;
  padding-bottom: 0.3em;
  text-decoration: none;
  transform-origin: left;
  opacity: 1;
  width: 100%;
}

.horizontal-menu__core {
  display: flex;
  list-style: none;
  gap: 50px;
}

.menu-only-desktop {
  display: none;
}
@media (min-width: 1100px) {
  .menu-only-desktop {
    display: block;
  }
}

.menu-from-tablet {
  display: none;
}
@media (min-width: 768px) {
  .menu-from-tablet {
    display: block;
  }
}

.menu-only-mobile {
  display: block;
}
@media (min-width: 1100px) {
  .menu-only-mobile {
    display: none;
  }
}

.simple-nav {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
  z-index: 10;
  transform: translateY(-50%);
}
.simple-nav::-webkit-scrollbar {
  display: none;
}
@media (min-width: 650px) {
  .simple-nav {
    width: auto;
    overflow-x: visible;
    margin-top: 30px;
  }
}
@media (min-width: 1300px) {
  .simple-nav {
    margin-top: 40px;
  }
}

@media (min-width: 650px) {
  .simple-nav--all-device {
    width: auto;
    overflow-x: visible;
    margin-top: 30px;
  }
}

@media (min-width: 650px) {
  .simple-nav--flex-start-tablet-l {
    width: 100%;
    overflow-x: scroll;
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
  }
}
@media (min-width: 900px) {
  .simple-nav--flex-start-tablet-l {
    width: auto;
    overflow-x: visible;
    margin-top: 30px;
  }
}

.simple-nav--no-transform {
  transform: none;
  margin-top: 0;
}

@media (min-width: 992px) {
  .simple-nav--center-desktop {
    transform: none;
    display: flex;
    align-items: center;
    margin-top: 0;
  }
}

.floating-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  height: 0px;
  opacity: 0;
  background-color: #fff;
  border-bottom: 1px solid #d6d6d6;
  transition: all 0.3s ease-in-out;
}
.floating-bar li,
.floating-bar a {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.floating-bar__wrapper {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
  z-index: 10;
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.floating-bar__wrapper::-webkit-scrollbar {
  display: none;
}
@media (min-width: 650px) {
  .floating-bar__wrapper {
    width: auto;
    overflow-x: visible;
    justify-content: flex-end;
  }
}
.floating-bar__logo {
  display: none;
}
@media (min-width: 1100px) {
  .floating-bar__logo {
    display: block;
    position: absolute;
    left: 40px;
  }
}
@media (min-width: 1300px) {
  .floating-bar__logo {
    left: 75px;
  }
}
@media (min-width: 1500px) {
  .floating-bar__logo {
    left: 135px;
  }
}

.floating-bar--active {
  opacity: 1;
  height: 70px;
}

.floating-bar--hidden {
  transform: translateY(-100%);
}

@media (min-width: 650px) {
  .floating-bar--flex-start-tablet-l .floating-bar__wrapper {
    width: 100%;
    overflow-x: scroll;
    justify-content: flex-start;
  }
}
@media (min-width: 900px) {
  .floating-bar--flex-start-tablet-l .floating-bar__wrapper {
    width: auto;
    overflow-x: visible;
    justify-content: flex-end;
  }
}

.floating-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: 0px;
  opacity: 0;
  display: none;
  visibility: hidden;
  background-color: #fff;
  border-bottom: 1px solid #d6d6d6;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1400px) {
  .floating-nav {
    z-index: 10000;
  }
}
.floating-nav__wrapper {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
  z-index: 10;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 10px;
}
.floating-nav__wrapper::-webkit-scrollbar {
  display: none;
}
@media (min-width: 650px) {
  .floating-nav__wrapper {
    width: auto;
    overflow-x: visible;
    justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .floating-nav.active {
    opacity: 1;
    display: block;
    visibility: visible;
    height: 70px;
  }
}

.floating-nav--hidden {
  transform: translateY(-100%);
}

.floating-nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  border-bottom: 1px solid #d6d6d6;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  height: 0px;
  opacity: 0;
  display: none;
  visibility: hidden;
}
.floating-nav-mobile__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.floating-nav-mobile.active {
  height: 70px;
  opacity: 1;
  display: block;
  visibility: visible;
}
@media (min-width: 1400px) {
  .floating-nav-mobile.active {
    opacity: 0;
    display: none;
    height: 0px;
    visibility: hidden;
  }
}

.floating-nav-mobile--hidden {
  transform: translateY(-100%);
}

.floating-nav-mobile .std-dropdown__title {
  font-size: 12px;
  padding-top: 2px;
}
@media (min-width: 550px) {
  .floating-nav-mobile .std-dropdown__title {
    font-size: 14px;
    padding-top: 0;
  }
}

.floating-nav-mobile .std-dropdown__header {
  padding: 5px 12px 5px 6px;
}

.search-loupe {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #fff;
  z-index: 2;
  margin-right: 30px;
  display: none;
}

.active {
  display: block;
}

/***** FOOTER *****/
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.footer__title {
  font-size: 32px;
  font-family: "ppacma", sans-serif;
  line-height: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__title {
    font-size: 38px;
    text-align: left;
    line-height: 46px;
  }
}
@media (min-width: 1300px) {
  .footer__title {
    font-size: 40px;
    line-height: 48px;
  }
}
.footer__subtitle {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__subtitle {
    font-size: 16px;
    text-align: left;
  }
}
.footer__bottom {
  width: 100%;
}
.footer__top {
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template: auto/1fr;
  row-gap: 30px;
}
@media (min-width: 650px) {
  .footer-grid {
    grid-template: auto/1fr 1fr;
  }
}
.footer-grid__logo {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-grid__logo {
    justify-content: flex-start;
  }
}
.footer-grid__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .footer-grid__header {
    align-items: flex-start;
  }
}
@media (min-width: 1300px) {
  .footer-grid__header {
    gap: 12px;
  }
}
.footer-grid__data {
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid__data {
    text-align: left;
  }
}
.footer-grid__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-grid__info {
    align-items: flex-start;
    grid-row: 2/5;
  }
}
@media (min-width: 1100px) {
  .footer-grid__info {
    flex-direction: row;
  }
}
@media (min-width: 1300px) {
  .footer-grid__info {
    gap: 70px;
  }
}
.footer-grid__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
@media (min-width: 650px) {
  .footer-grid__social {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .footer-grid__social {
    align-items: flex-start;
    grid-row: 3/4;
  }
}
.footer-grid__language {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-grid__language {
    align-items: flex-start;
  }
}
@media (min-width: 650px) {
  .footer-grid__menu {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

.footer-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 650px) {
  .footer-bar {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }
}
.footer-bar__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1100px) {
  .footer-bar__left {
    flex-direction: row;
    flex: 1;
  }
}
.footer-bar__center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1100px) {
  .footer-bar__center {
    flex: 1;
  }
}
@media (min-width: 1100px) {
  .footer-bar__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 1100px) {
  .footer-bar__logo {
    width: 100%;
    height: auto;
    flex: 0 0 88px;
  }
}

/***** WRAPPERS *****/
.slider-wrapper__button {
  display: flex;
  justify-content: center;
}

.slider-wrapper--more-bottom-space {
  padding-bottom: 100px;
}

.slider-wrapper--top-space {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .slider-wrapper--top-space {
    padding: 50px 0;
  }
}
@media (min-width: 1300px) {
  .slider-wrapper--top-space {
    padding: 60px 0;
  }
}

.slider-wrapper--only-top-space {
  padding: 30px 0 0 0;
}
@media (min-width: 768px) {
  .slider-wrapper--only-top-space {
    padding: 50px 0 0 0;
  }
}
@media (min-width: 1300px) {
  .slider-wrapper--only-top-space {
    padding: 60px 0 0 0;
  }
}

.slider-wrapper--right-space {
  padding-right: 20px;
}

@media (min-width: 1100px) {
  .slider-wrapper--to-desktop {
    display: none;
  }
}

.badge-wrapper {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .badge-wrapper {
    justify-content: flex-start;
  }
}

.badge-wrapper--bottom-space {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .badge-wrapper--bottom-space {
    margin-bottom: 30px;
  }
}
@media (min-width: 1100px) {
  .badge-wrapper--bottom-space {
    margin-bottom: 40px;
  }
}

.badge-wrapper--left {
  justify-content: flex-start;
}

.label-wrapper {
  text-align: center;
}
@media (min-width: 768px) {
  .label-wrapper {
    text-align: left;
  }
}

.header-wrapper {
  text-align: center;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .header-wrapper {
    text-align: left;
  }
}
@media (min-width: 1100px) {
  .header-wrapper {
    margin-bottom: 40px;
  }
}

.header-wrapper--smaller-space {
  margin: 24px 0;
}

.link-back-wrapper--bottom-space {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .link-back-wrapper--bottom-space {
    margin-bottom: 32px;
  }
}
@media (min-width: 1500px) {
  .link-back-wrapper--bottom-space {
    margin-bottom: 40px;
  }
}
@media (min-width: 1700px) {
  .link-back-wrapper--bottom-space {
    margin-bottom: 48px;
  }
}

.text-wrapper--center-mobile {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .text-wrapper--center-mobile {
    text-align: left;
    margin: 0;
  }
}

.custom-image-wrapper {
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 1100px) {
  .custom-image-wrapper {
    max-width: 480px;
  }
}

.list-wrapper {
  max-width: 400px;
  width: 100%;
}
.list-wrapper__inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}

.column-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .column-wrapper {
    gap: 56px;
  }
}
@media (min-width: 1100px) {
  .column-wrapper {
    gap: 96px;
  }
}

.column-wrapper--les-space {
  gap: 12px;
}
@media (min-width: 768px) {
  .column-wrapper--les-space {
    gap: 36px;
  }
}
@media (min-width: 1100px) {
  .column-wrapper--les-space {
    gap: 56px;
  }
}

@media (min-width: 650px) {
  .column-wrapper--row-tablet {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .column-wrapper--row-tablet {
    flex-direction: column;
  }
}

.simple-wrapper {
  padding: 20px;
  box-sizing: border-box;
  height: 100%;
}
@media (min-width: 768px) {
  .simple-wrapper {
    padding: 26px;
  }
}

@media (min-width: 650px) {
  .wrapper-bounded-content {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 1100px) {
  .wrapper-bounded-content {
    max-width: 60%;
    margin: 0;
  }
}
@media (min-width: 1700px) {
  .wrapper-bounded-content {
    max-width: 50%;
  }
}
