/*
------------------------------------
  IMPORT ARCHEKTURY SCSS
------------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap");
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 15px;
}

.button {
  display: flex;
  gap: 8px;
  padding: 16px 36px;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  border-radius: 24px 8px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #000000;
  position: relative;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 768px) {
  .button {
    width: 100%;
  }
}
.button > svg > path {
  transition: fill 0.3s ease-out;
}
.button--primary {
  background: #CFEE30;
  border: none;
}
.button--primary > svg > path {
  fill: #000000;
}
.button--primary::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #000000;
  left: 0;
  top: 0;
  transition: width 0.3s ease-out;
}
.button--primary:hover {
  color: #FFFFFF;
  background: none;
}
.button--primary:hover > svg > path {
  fill: #FFFFFF;
}
.button--primary:hover::before {
  width: 100%;
  z-index: -1;
  border-radius: 24px 8px;
}
.button--secondary {
  border: 1px solid #000000;
}
.button--secondary > svg > path {
  fill: #000000;
}
.button--secondary::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #000000;
  left: 0;
  top: 0;
  transition: width 0.3s ease-out;
}
.button--secondary:hover {
  color: #FFFFFF;
  background: none;
}
.button--secondary:hover > svg > path {
  fill: #FFFFFF;
}
.button--secondary:hover::before {
  width: 100%;
  z-index: -1;
  border-radius: 24px 8px;
}
.button--ghost {
  border-radius: 0;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease-out;
  background: none;
  width: -moz-max-content;
  width: max-content;
}
.button--ghost > svg > path {
  fill: #000000;
}
.button--ghost:hover {
  background: none;
  border-bottom-color: #000000;
}

.badge {
  padding: 2px 10px;
  border-radius: 4px;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-top: 40px;
}
.badge--latwa {
  border: 1px solid #3FD12C;
  color: #3FD12C;
  background: #DFF7DB;
}
.badge--srednia {
  border: 1px solid #FFC107;
  color: #FFC107;
  background: #FFEFBF;
}
.badge--trudna {
  border: 1px solid #D12C2C;
  color: #D12C2C;
  background: #F3C8C8;
}

[data-animate] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1.1s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
[data-animate].is-visible {
  opacity: 1;
  transform: none !important;
}

[data-animate=fade-up] {
  transform: translateY(48px);
}

[data-animate=fade-down] {
  transform: translateY(-32px);
}

[data-animate=fade-left] {
  transform: translateX(56px);
}

[data-animate=fade-right] {
  transform: translateX(-56px);
}

[data-animate=zoom-in] {
  transform: scale(0.88);
}

[data-animate=reveal] {
  transform: translateY(16px);
  transition-duration: 0.7s;
}

.cta__action[data-animate] {
  transition-delay: 0.15s;
}

img {
  width: 100%;
}

.bikes-filter__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
.bikes-filter__dropdown-header {
  display: flex;
  flex-direction: column;
}
.bikes-filter__title {
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
}
.bikes-filter__note {
  font-size: 0.75rem;
  color: #4D4D4D;
}
.bikes-filter__dropdown {
  position: relative;
  display: inline-block;
}
.bikes-filter__trigger {
  display: flex;
  align-items: stretch;
  gap: 48px;
  padding: 16px 24px;
  border: 1px solid #A2A2A2;
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.2s ease-out;
}
.bikes-filter__trigger:hover:not(:disabled) {
  border-color: #000000;
}
.bikes-filter__trigger:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.bikes-filter__col {
  position: relative;
  padding-top: 4px;
  text-align: left;
  min-width: 130px;
}
.bikes-filter__col--growth {
  min-width: 160px;
}
.bikes-filter__col-label {
  position: absolute;
  top: calc(-1 * 18px);
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
  z-index: 1;
}
.bikes-filter__col-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #EBEBEB;
  margin-left: 12px;
}
.bikes-filter__col-label-text {
  background: #FFFFFF;
  padding-right: 4px;
  font-family: "Unbounded", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4D4D4D;
}
.bikes-filter__col-value {
  font-family: "Unbounded", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
}
.bikes-filter__col-value-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bikes-filter__chevron {
  flex-shrink: 0;
  color: #000000;
  transition: transform 0.2s ease-out;
}
.bikes-filter__trigger[aria-expanded=true] .bikes-filter__chevron {
  transform: rotate(180deg);
}
.bikes-filter__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  max-width: 100%;
  width: 400px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #EBEBEB;
  border-radius: 8px;
  z-index: 10;
}
.bikes-filter__list[hidden] {
  display: none;
}
.bikes-filter__list-item:not(:last-child) {
  margin-bottom: 4px;
}
.bikes-filter__list-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  background: none;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease-out;
}
.bikes-filter__list-btn:hover, .bikes-filter__list-btn:focus-visible {
  background: #CFEE30;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: #A2A2A2;
}

.eb-bikes-grid__image-wrap {
  position: relative;
}

.eb-bikes-grid__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: #CFEE30;
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  gap: 8px;
  align-items: center;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Unbounded", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3,
h4, h5, h6 {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

h2 {
  position: relative;
  isolation: isolate;
  font-size: clamp(1.275rem, 1.232rem + 1.964vw, 2.75rem);
  line-height: clamp(1.275rem, 1.232rem + 1.964vw, 2.75rem);
}

h3 {
  position: relative;
  isolation: isolate;
  font-size: clamp(1.25rem, 1.071rem + 0.893vw, 1.875rem);
  line-height: clamp(1.6875rem, 1.455rem + 1.161vw, 2.5rem);
  letter-spacing: -0.05em;
}
h3 > a {
  letter-spacing: -0.05em;
}

p {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  line-height: clamp(1.375rem, 1.268rem + 0.536vw, 1.75rem);
}

a {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  text-decoration: none;
}

strong, b {
  font-weight: 500;
}

em, i {
  font-style: italic;
}

.form-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}
.form-field__label {
  width: 100%;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #000000;
}
.form-field__input, .form-field__textarea {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #A2A2A2;
  border-radius: 8px;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000000;
  transition: border-color 0.15s ease;
}
.form-field__input::-moz-placeholder, .form-field__textarea::-moz-placeholder {
  color: #A2A2A2;
}
.form-field__input::placeholder, .form-field__textarea::placeholder {
  color: #A2A2A2;
}
.form-field__input:focus, .form-field__textarea:focus {
  outline: none;
  border-color: #000000;
}
.form-field__textarea {
  align-items: flex-start;
  min-height: 111px;
  resize: vertical;
}
.form-field__error-message {
  display: none;
  width: 100%;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #EE3030;
}
.form-field--error .form-field__input,
.form-field--error .form-field__textarea {
  border-color: #EE3030;
}
.form-field--error .form-field__input::-moz-placeholder, .form-field--error .form-field__textarea::-moz-placeholder {
  color: #A2A2A2;
}
.form-field--error .form-field__input::placeholder,
.form-field--error .form-field__textarea::placeholder {
  color: #A2A2A2;
}
.form-field--error .form-field__error-message {
  display: block;
}

.form-field__select {
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  padding-right: 52px;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 24px 24px;
  border: 1px solid #A2A2A2;
  border-radius: 8px;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000000;
  cursor: pointer;
}
.form-field__select:focus {
  outline: none;
  border-color: #000000;
}

.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__trigger {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #A2A2A2;
  border-radius: 8px;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000000;
  cursor: pointer;
}
.custom-select__value {
  flex-grow: 1;
  text-align: left;
}
.custom-select__arrow {
  flex: none;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}
.custom-select__list {
  display: none;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  margin: 8px 0 0;
  padding: 24px 20px;
  background: #EBEBEB;
  border-radius: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
}
.custom-select__option {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000000;
  cursor: pointer;
}
.custom-select__option:hover {
  background: #FFFFFF;
}

.form-field--custom-select.is-open .custom-select__trigger {
  border-color: #000000;
}
.form-field--custom-select.is-open .custom-select__arrow {
  transform: rotate(180deg);
}
.form-field--custom-select.is-open .custom-select__list {
  display: flex;
}

input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 16px;
  height: 16px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid #000000;
  background: #FFFFFF;
  position: relative;
  cursor: pointer;
}
input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000000;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000000;
}

input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 4px;
  border: 1px solid #000000;
  background: #FFFFFF;
  position: relative;
  cursor: pointer;
}
input[type=checkbox]:checked {
  background: #EBEBEB;
  border-color: #000000;
}
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: calc(50% - 4px);
  top: calc(50% - 3px);
  width: 8px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4L4 7L9 1' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-family: "Unbounded", sans-serif;
  color: #000000;
}
.form-checkbox__note {
  display: flex;
  flex-direction: column;
}
.form-checkbox__name {
  font-size: 14px;
}
.form-checkbox__text {
  color: #4D4D4D;
  line-height: 17px;
}
.form-checkbox__text > a {
  color: #000000;
  text-transform: none;
  text-decoration: underline;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #A2A2A2;
  background: #FFFFFF;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .header__container {
    padding: 12px 40px;
  }
}
@media (max-width: 768px) {
  .header__container {
    padding: 12px 20px;
  }
}
.header__brand {
  position: relative;
  z-index: 102;
  width: 56px;
  height: auto;
  flex-shrink: 0;
}
.header__brand a {
  display: block;
}
.header__brand img {
  width: 100%;
  height: auto;
  display: block;
}
.header__toggle {
  display: none;
  position: relative;
  z-index: 102;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  line-height: 1;
}
.header__toggle i {
  font-size: 28px;
  display: block;
}
@media (max-width: 1200px) {
  .header__toggle {
    display: block;
  }
}
.header__toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.header__nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__nav-title {
  display: none;
  font-size: 36px;
  line-height: 20px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .header__nav-title {
    display: block;
    color: #FFFFFF;
  }
}
.header__close {
  display: none;
  background: none;
  border-radius: 4px;
  padding: 4px;
  cursor: pointer;
  line-height: 1;
}
.header__close i {
  font-size: 36px;
  display: block;
}
@media (max-width: 1200px) {
  .header__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #A2A2A2;
  }
  .header__close i {
    font-size: 24px;
    color: #FFFFFF;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1200px) {
  .header__nav {
    position: fixed;
    background-color: #000000;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 500px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    padding: 48px 24px;
    overflow-y: auto;
    z-index: 101;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__nav.is-active {
    right: 0;
    z-index: 999;
  }
}
@media (max-width: 768px) {
  .header__nav {
    padding: 48px 24px;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }
}
.header__menu li {
  list-style: none;
  margin: 0;
}
.header__menu li a {
  display: block;
  text-decoration: none;
  position: relative;
  font-size: 1rem;
  color: #000000;
  line-height: 20px;
  white-space: nowrap;
  padding: 20px;
}
@media (max-width: 1200px) {
  .header__menu li a {
    font-size: clamp(1.5rem, 1.286rem + 1.071vw, 2.25rem);
    padding: 10px 0;
    text-transform: uppercase;
    color: #FFFFFF;
  }
  .header__menu li a::after {
    display: none;
  }
}
.header__menu li.current-menu-item > a::after, .header__menu li.current_page_item > a::after, .header__menu li.current-menu-ancestor > a::after {
  width: 100%;
}
.header__menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 200px;
  padding: 8px 0;
  z-index: 200;
}
@media (max-width: 768px) {
  .header__menu .sub-menu {
    position: static;
    padding: 4px 0 4px 16px;
  }
}
.header__menu .sub-menu li {
  padding: 0;
}
.header__menu .sub-menu li a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
}
.header__menu .sub-menu li a::after {
  display: none;
}
@media (max-width: 1200px) {
  .header__menu .sub-menu li a {
    padding: 8px 0;
  }
}
.header__menu .menu-item-has-children {
  position: relative;
}
@media (min-width: 768px) {
  .header__menu .menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}
.header__contact-data {
  display: none;
}
@media (max-width: 1200px) {
  .header__contact-data {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.header__info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.header__info i {
  font-size: 18px;
  flex-shrink: 0;
}
.header__info a {
  font-size: 14px;
  text-decoration: none;
}
.header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .header__overlay.is-active {
    display: block;
    pointer-events: auto;
  }
}
.header__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header__social > a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .header__social {
    justify-content: flex-start;
    gap: 6px;
  }
  .header__social > a {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 1200px) {
  .header__button {
    border: 1px solid #FFFFFF !important;
    color: #FFFFFF !important;
    background: none;
  }
  .header__button > svg path {
    fill: #FFFFFF !important;
  }
}

.footer {
  margin-top: 64px;
  background: #EBEBEB;
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__col--brand {
  max-width: 378px;
  color: #4D4D4D;
  flex: 1 1 320px;
}
.footer__col--brand a {
  display: block;
  width: 56px;
  margin-bottom: 32px;
}
.footer__col--menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 1 180px;
  min-width: 160px;
}
.footer__menu-title {
  font-size: 1rem !important;
  font-weight: 600;
  color: #000000;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu li {
  font-size: 1rem;
  line-height: 1.5rem;
}
.footer__menu li a {
  color: #4D4D4D;
  text-decoration: none;
  text-transform: none;
  font-family: "Mona Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-weight: 600;
  overflow-wrap: break-word;
}
.footer__menu li a:hover {
  text-decoration: underline;
}
.footer__copyright {
  color: #4D4D4D;
}
.footer__designer-link {
  color: #000000;
  text-decoration: none;
  text-transform: none;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
}
.footer__designer-link:hover {
  text-decoration: underline;
}
.footer {
  /* ===========================
     TABLET
  =========================== */
}
@media (max-width: 960px) {
  .footer__row {
    gap: 40px 24px;
  }
  .footer__col--brand {
    flex-basis: 100%;
    max-width: none;
  }
  .footer__col--menu {
    flex: 1 1 200px;
  }
}
.footer {
  /* ===========================
     MOBILE
  =========================== */
}
@media (max-width: 768px) {
  .footer {
    margin-top: 48px;
  }
  .footer__row {
    flex-direction: column;
    gap: 40px;
  }
  .footer__col--brand, .footer__col--menu {
    width: 100%;
    max-width: none;
  }
}
.footer {
  /* ===========================
     SMALL MOBILE
  =========================== */
}
@media (max-width: 480px) {
  .footer {
    margin-top: 32px;
  }
  .footer__container {
    gap: 20px;
  }
  .footer__row {
    gap: 32px;
  }
  .footer__col--brand a {
    margin-bottom: 24px;
  }
}
.footer__stays {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 8px;
}
.footer__stays-title {
  font-family: "Mona Sans", sans-serif !important;
  font-size: 1rem;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  color: #000000;
}
.footer__stays-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
  width: 100%;
}
.footer__stay {
  display: flex;
  align-items: center;
  gap: 19px;
  text-decoration: none;
  min-width: 0;
}
.footer__stay-thumb {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__stay-name {
  font-family: "Mona Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4D4D4D;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.footer a.footer__stay:hover .footer__stay-name {
  text-decoration: underline;
}
.footer {
  /* ===========================
     TABLET
  =========================== */
}
@media (max-width: 960px) {
  .footer__stays-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer {
  /* ===========================
     MOBILE
  =========================== */
}
@media (max-width: 768px) {
  .footer__stays-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.screen-reader-text {
  display: none;
}

.blog-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: "Mona Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-hero__breadcrumbs a {
  color: #EBEBEB;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-hero__breadcrumbs a:hover {
  color: #FFFFFF;
}
.blog-hero__breadcrumbs-sep {
  color: #A2A2A2;
}
.blog-hero__breadcrumbs-current {
  color: #FFFFFF;
}
.blog-hero__title {
  max-width: 800px;
  margin-bottom: 16px;
}
.blog-hero__desc {
  max-width: 600px;
}

.blog-list {
  padding: 96px 0;
}
.blog-list__container {
  max-width: 966px !important;
  margin: 0 auto;
}
.blog-list__grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.blog-list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 64px;
}
.blog-list__item-thumb {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 9/5;
}
.blog-list__item-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-list__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  width: 100%;
}
.blog-list__item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Mona Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}
.blog-list__item-meta-sep {
  color: #A2A2A2;
}
.blog-list__item-title {
  margin: 0;
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(1.5rem, 1.286rem + 1.071vw, 2.25rem);
  line-height: clamp(1.6875rem, 1.455rem + 1.161vw, 2.5rem) !important;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
}
.blog-list__item-title a {
  color: inherit;
  letter-spacing: -0.03em !important;
  text-decoration: none;
}
.blog-list__item-excerpt {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1rem, 0.929rem + 0.357vw, 1.25rem);
  line-height: clamp(1.625rem, 1.518rem + 0.536vw, 2rem);
  font-weight: 400;
  color: #4D4D4D;
}
.blog-list__item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Mona Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
}
.blog-list__item-link-icon {
  flex: none;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.blog-list__item-link:hover .blog-list__item-link-icon {
  transform: translate(2px, -2px);
}
.blog-list__empty {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1rem, 0.929rem + 0.357vw, 1.25rem);
  color: #4D4D4D;
  text-align: center;
  padding: 64px 0;
}

.blog-list__pagination {
  margin-top: 64px;
  display: flex;
  justify-content: flex-start;
}
.blog-list__pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.blog-list__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  border: 1px solid #000000;
  border-radius: 8px;
  background: #FFFFFF;
  font-family: "Mona Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.blog-list__pagination .page-numbers:hover {
  background: #000000;
  color: #FFFFFF;
}
.blog-list__pagination .page-numbers.current {
  background: #000000;
  border-color: #000000;
  color: #CFEE30;
}
.blog-list__pagination .page-numbers.prev, .blog-list__pagination .page-numbers.next {
  border: none;
  background: transparent;
}

@media (max-width: 960px) {
  .blog-list__item-title {
    font-size: clamp(1.5rem, 1.286rem + 1.071vw, 2.25rem);
    line-height: clamp(2rem, 1.714rem + 1.429vw, 3rem);
  }
}
@media (max-width: 768px) {
  .blog-hero__title, .blog-hero__desc {
    max-width: 100%;
  }
  .blog-list {
    padding: 48px 0;
  }
  .blog-list__grid {
    gap: 48px;
  }
  .blog-list__item {
    gap: 32px;
  }
  .blog-list__item-content {
    gap: 24px;
  }
  .blog-list__item-excerpt {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .blog-list__item-meta {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .blog-list__item-title {
    font-size: clamp(1.25rem, 1.071rem + 0.893vw, 1.875rem);
    line-height: clamp(1.6875rem, 1.455rem + 1.161vw, 2.5rem);
  }
  .blog-list__pagination .nav-links {
    gap: 8px;
  }
  .blog-list__pagination .page-numbers {
    width: 36px;
    height: 36px;
  }
}
.blog-single__container {
  padding: 64px 16px 48px;
  border-bottom: 1px solid #A2A2A2;
  justify-content: flex-end;
}
.blog-single__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: "Mona Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-single__breadcrumbs a {
  color: #4D4D4D;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-single__breadcrumbs a:hover {
  color: #000000;
}
.blog-single__breadcrumbs-sep {
  color: #A2A2A2;
}
.blog-single__breadcrumbs-current {
  color: #000000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
.blog-single__title {
  margin: 0 0 24px;
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
  line-height: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
  text-transform: uppercase;
  color: #000000;
}
.blog-single__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Mona Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}
.blog-single__meta-sep {
  color: #A2A2A2;
}
.blog-single__thumb {
  margin-top: 64px;
  padding-bottom: 0 !important;
  max-width: 966px;
}
.blog-single__thumb-image {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.blog-single__content {
  max-width: 966px;
  margin-top: 64px;
  padding-top: 0 !important;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  line-height: 160%;
  font-weight: 400;
  color: #000000;
}
.blog-single__content > * + * {
  margin-top: 24px;
}
.blog-single__content > p:first-of-type {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1rem, 0.929rem + 0.357vw, 1.25rem);
  line-height: clamp(1.625rem, 1.518rem + 0.536vw, 2rem);
  font-weight: 400;
  color: #4D4D4D;
}
.blog-single__content > p {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  line-height: clamp(1.375rem, 1.268rem + 0.536vw, 1.75rem);
  font-weight: 400;
  color: #4D4D4D;
}
.blog-single__content a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-single__content a:hover {
  color: #4D4D4D;
}
.blog-single__content strong,
.blog-single__content b {
  font-weight: 700;
}
.blog-single__content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.blog-single__content blockquote {
  margin: 0;
  padding: 24px 32px;
  border-left: 2px solid #000000;
  font-family: "Unbounded", sans-serif;
  font-style: normal;
  color: #4D4D4D;
}
.blog-single__content ul,
.blog-single__content ol {
  padding-left: 0;
  list-style: none;
}
.blog-single__content li {
  position: relative;
  padding-left: 28px;
}
.blog-single__content li + li {
  margin-top: 8px;
}
.blog-single__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000000;
}

.blog-related {
  padding: 96px 0;
}
.blog-related__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.blog-related__title {
  margin: 0;
  color: #000000;
}
.blog-related__nav-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}
.blog-related__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  padding: 3px;
  background: transparent;
  border: 1px solid #A2A2A2;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.blog-related__nav-btn svg {
  display: block;
  width: 18px;
  height: 16px;
}
.blog-related__nav-btn path {
  fill: #000000;
  transition: fill 0.2s ease;
}
.blog-related__nav-btn:hover {
  border-color: #000000;
  background: #000000;
}
.blog-related__nav-btn:hover path {
  fill: #FFFFFF;
}
.blog-related__nav {
  display: none;
}
.blog-related__track {
  display: flex;
  align-items: flex-start;
  gap: 21px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-related__track::-webkit-scrollbar {
  display: none;
}
.blog-related__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 0 0 calc((100% - 42px) / 3);
  min-width: 0;
  scroll-snap-align: start;
}
.blog-related__item-thumb {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.blog-related__item-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-related__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.blog-related__item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Mona Sans", sans-serif;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
}
.blog-related__item-meta-sep {
  color: #A2A2A2;
}
.blog-related__item-title {
  margin: 0;
  width: 100%;
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  line-height: clamp(1.375rem, 1.268rem + 0.536vw, 1.75rem);
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
}
.blog-related__item-title a {
  color: inherit;
  text-decoration: none;
}
.blog-related__item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Mona Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
}
.blog-related__item-link svg {
  flex: none;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.blog-related__item-link:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 960px) {
  .blog-single__title {
    font-size: clamp(1.275rem, 1.232rem + 1.964vw, 2.75rem);
    line-height: clamp(1.275rem, 1.232rem + 1.964vw, 2.75rem);
  }
  .blog-related__item {
    flex: 0 0 calc((100% - 21px) / 2);
  }
}
@media (max-width: 768px) {
  .blog-single__header {
    padding: 48px 0 32px;
  }
  .blog-single__title {
    font-size: clamp(1.5rem, 1.286rem + 1.071vw, 2.25rem);
    line-height: clamp(2rem, 1.714rem + 1.429vw, 3rem);
  }
  .blog-single__thumb, .blog-single__content {
    margin-top: 32px;
  }
  .blog-single__content h2 {
    font-size: clamp(1.125rem, 1.018rem + 0.536vw, 1.5rem);
    line-height: clamp(1.6875rem, 1.527rem + 0.804vw, 2.25rem);
  }
  .blog-single__content h3 {
    font-size: clamp(1rem, 0.929rem + 0.357vw, 1.25rem);
    line-height: clamp(1.625rem, 1.518rem + 0.536vw, 2rem);
  }
  .blog-related {
    padding: 48px 0;
  }
  .blog-related__container {
    gap: 24px;
  }
  .blog-related__header {
    align-items: flex-start;
  }
  .blog-related__item {
    flex: 0 0 85%;
  }
}
@media (max-width: 480px) {
  .blog-single__header {
    padding: 32px 0 24px;
  }
  .blog-single__thumb, .blog-single__content {
    margin-top: 32px !important;
  }
  .blog-single__breadcrumbs {
    margin-bottom: 16px;
  }
  .blog-single__content blockquote {
    padding: 16px 20px;
  }
  .blog-single__thumb {
    margin-top: 64px;
    padding-bottom: 0 !important;
  }
  .blog-single__thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
  .blog-related {
    padding: 32px 0;
  }
  .blog-related__item {
    flex: 0 0 90%;
  }
}
.contact__container {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 96px 16px;
}
@media (max-width: 960px) {
  .contact__container {
    flex-direction: column;
    align-items: stretch;
    padding: 64px 16px;
  }
}
.contact__detailis {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 0;
  max-width: 616px;
}
.contact__title {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.286rem + 1.071vw, 2.25rem);
  line-height: clamp(2rem, 1.714rem + 1.429vw, 3rem);
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}
.contact__desc p {
  color: #4D4D4D !important;
  font-size: 1rem;
  line-height: 1.5rem;
}
.contact__phone, .contact__email, .contact__address, .contact__hours {
  display: flex;
  flex-direction: column;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  line-height: clamp(1.625rem, 1.518rem + 0.536vw, 2rem);
  color: #4D4D4D;
}
.contact__phone span, .contact__email span, .contact__address span, .contact__hours span {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  line-height: clamp(1.625rem, 1.518rem + 0.536vw, 2rem);
  color: #000000;
  text-transform: uppercase;
}
.contact .button--secondary {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border: 1px solid #000000;
  border-radius: 8px 24px;
  background: #FFFFFF;
  color: #000000;
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s ease;
}
.contact .button--secondary span,
.contact .button--secondary svg {
  position: relative;
  z-index: 1;
}
.contact .button--secondary svg path {
  fill: currentColor;
  transition: fill 0.3s ease;
}
.contact .button--secondary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #000000;
  border-radius: 8px 24px;
  transition: width 0.3s ease;
  z-index: -999 !important;
}
.contact .button--secondary:hover {
  color: #FFFFFF;
}
.contact .button--secondary:hover::before {
  width: 100%;
}
.contact__form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  padding: 24px;
  background: #EBEBEB;
  border-radius: 0px;
  flex: 1 1 0;
  max-width: 515px;
  width: 100%;
}
@media (max-width: 960px) {
  .contact__form {
    max-width: none;
  }
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.wpcf7-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #000000;
  width: 100%;
}
.wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 14px 20px;
  background: #FFFFFF;
  border: 1px solid #A2A2A2;
  border-radius: 8px;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000000;
}
.wpcf7-form input[type=text]::-moz-placeholder, .wpcf7-form input[type=email]::-moz-placeholder, .wpcf7-form input[type=tel]::-moz-placeholder, .wpcf7-form textarea::-moz-placeholder {
  color: #A2A2A2;
}
.wpcf7-form input[type=text]::placeholder,
.wpcf7-form input[type=email]::placeholder,
.wpcf7-form input[type=tel]::placeholder,
.wpcf7-form textarea::placeholder {
  color: #A2A2A2;
}
.wpcf7-form input[type=text]:focus,
.wpcf7-form input[type=email]:focus,
.wpcf7-form input[type=tel]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #000000;
}
.wpcf7-form textarea {
  height: 111px;
  min-height: 111px;
  resize: vertical;
}
.wpcf7-form .wpcf7-not-valid {
  border-color: #EE3030 !important;
}
.wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-family: "Unbounded", sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #EE3030;
}
.wpcf7-form .wpcf7-form-control.wpcf7-acceptance {
  border: none;
  padding: 0;
  width: auto;
  background: transparent;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form .wpcf7-acceptance label {
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}
.wpcf7-form .wpcf7-acceptance input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  margin-top: 2px;
  border: 1px solid #000000;
  border-radius: 4px;
  background: #FFFFFF;
  position: relative;
}
.wpcf7-form .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 6px;
  background-color: #000000;
  mask-image: url("data:image/svg+xml,%3Csvg width='7' height='6' viewBox='0 0 7 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.11742 0.178422C6.29494 -0.0329199 6.61007 -0.0604319 6.82152 0.116899C7.03291 0.294466 7.0605 0.609558 6.88304 0.821L2.68284 5.821C2.58978 5.93159 2.45335 5.99723 2.30882 5.99971C2.16448 6.00205 2.02564 5.94186 1.92894 5.83467L0.128157 3.83467C-0.0563643 3.62955 -0.0395804 3.31239 0.165267 3.12764C0.370473 2.94296 0.68755 2.95963 0.872298 3.16475L2.28734 4.73702L6.11742 0.178422Z' fill='black'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='7' height='6' viewBox='0 0 7 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.11742 0.178422C6.29494 -0.0329199 6.61007 -0.0604319 6.82152 0.116899C7.03291 0.294466 7.0605 0.609558 6.88304 0.821L2.68284 5.821C2.58978 5.93159 2.45335 5.99723 2.30882 5.99971C2.16448 6.00205 2.02564 5.94186 1.92894 5.83467L0.128157 3.83467C-0.0563643 3.62955 -0.0395804 3.31239 0.165267 3.12764C0.370473 2.94296 0.68755 2.95963 0.872298 3.16475L2.28734 4.73702L6.11742 0.178422Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #4D4D4D;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label a {
  color: #000000;
  text-decoration: underline;
  text-transform: none;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
}
.wpcf7-form .wpcf7-submit {
  box-sizing: border-box;
  align-self: flex-end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #CFEE30;
  border: none;
  border-radius: 8px 24px;
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
  transition: background 0.3s ease;
}
.wpcf7-form .wpcf7-submit::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #000000;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 0H1C0.4 0 0 0.4 0 1C0 1.6 0.4 2 1 2H8.6L0.3 10.3C-0.0999998 10.7 -0.0999998 11.3 0.3 11.7C0.7 12.1 1.3 12.1 1.7 11.7L10 3.4V11C10 11.6 10.4 12 11 12C11.6 12 12 11.6 12 11V1C12 0.4 11.6 0 11 0Z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 0H1C0.4 0 0 0.4 0 1C0 1.6 0.4 2 1 2H8.6L0.3 10.3C-0.0999998 10.7 -0.0999998 11.3 0.3 11.7C0.7 12.1 1.3 12.1 1.7 11.7L10 3.4V11C10 11.6 10.4 12 11 12C11.6 12 12 11.6 12 11V1C12 0.4 11.6 0 11 0Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: background-color 0.3s ease;
}
.wpcf7-form .wpcf7-submit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #000000;
  border-radius: 8px 24px;
  transition: width 0.3s ease;
  z-index: -1;
}
.wpcf7-form .wpcf7-submit:hover::before {
  width: 100%;
}
.wpcf7-form .wpcf7-submit:hover::after {
  background-color: #FFFFFF;
}
.wpcf7-form .wpcf7-submit:hover {
  color: #FFFFFF;
}
.wpcf7-form .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.wpcf7-form .wpcf7-spinner {
  margin-left: 8px;
}

.hero-home__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 32px;
}
.hero-home__title {
  font-size: clamp(2.175rem, 1.768rem + 3.036vw, 4.5rem);
  text-transform: uppercase;
  font-weight: 600;
}
.hero-home__desc {
  font-size: clamp(1rem, 0.929rem + 0.357vw, 1.25rem);
  color: #4D4D4D;
}
.hero-home__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.hero-home__images {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
.hero-home__images:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 475px;
  background: #EBEBEB;
  z-index: -1;
  border-radius: 16px;
}
.hero-home__image {
  display: block;
  max-width: 810px;
  height: auto;
}
.hero-home__accesories {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  padding: 16px;
}
.hero-home__accesory {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
  background-color: #FFFFFF;
  max-width: 180px;
  flex: 1;
  aspect-ratio: 1/1;
  border-radius: 8px;
}
.hero-home__accesory img {
  width: 80%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 960px) {
  .hero-home__images:before {
    height: 400px;
  }
  .hero-home__image {
    max-width: 100%;
  }
  .hero-home__accesory {
    max-width: none;
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .hero-home__content {
    gap: 24px;
  }
  .hero-home__cta {
    flex-direction: column;
    gap: 16px;
  }
  .hero-home__images:before {
    height: 320px;
  }
  .hero-home__accesories {
    flex-wrap: wrap;
    gap: 16px;
    padding: 8px;
  }
  .hero-home__accesory {
    flex: 1 1 calc(50% - 16px / 2);
    aspect-ratio: auto;
  }
}
@media (max-width: 480px) {
  .hero-home__images:before {
    height: 260px;
    border-radius: 8px;
  }
}
.hero-home__info {
  padding: 16px;
  color: #4D4D4D;
  text-align: center;
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  background-color: #FFFFFF;
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  font-weight: 400;
}
.hero-home__info > span strong {
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero-home__info {
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
}

.numbers__container {
  display: flex;
  align-items: stretch;
  padding: 56px 36px;
  border-radius: 8px;
  color: #FFFFFF;
  background: #000000;
}
.numbers__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid #CFEE30;
}
.numbers__item:last-child {
  border-right: none;
}
.numbers__title {
  font-size: clamp(1.275rem, 1.232rem + 1.964vw, 2.75rem);
}
.numbers__note {
  color: #A2A2A2;
  font-weight: 400;
}
@media (max-width: 768px) {
  .numbers {
    padding: 0 14px;
  }
  .numbers__container {
    padding: 36px 16px;
  }
}
@media (max-width: 960px) {
  .numbers {
    padding: 0 14px;
  }
  .numbers__container {
    flex-direction: column;
    gap: 24px;
  }
  .numbers__item {
    border-right: none;
    padding-bottom: 24px;
    border-bottom: 1px solid #CFEE30;
  }
  .numbers__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.steps__container {
  display: flex;
  align-items: center;
  gap: 56px;
}
.steps__image {
  position: relative;
  padding: 12px;
}
.steps__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 6/5;
  -o-object-fit: contain;
     object-fit: contain;
}
.steps__image:before {
  content: "";
  top: 0;
  left: -350%;
  width: 400%;
  height: 100%;
  position: absolute;
  background: #EBEBEB;
  z-index: -1;
}
.steps__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #A2A2A2;
}
.steps__item:last-child {
  border-bottom: none;
}
.steps__item svg {
  width: 32px !important;
  height: 32px !important;
  flex-shrink: 0;
  margin-top: 8px;
}
.steps__item-content {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.steps__item-desc {
  color: #4D4D4D;
}
@media (max-width: 768px) {
  .steps__container {
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }
  .steps__image {
    padding: 0;
  }
  .steps__image:before {
    display: none;
  }
}
@media (max-width: 480px) {
  .steps__item {
    gap: 16px;
    padding: 16px 0;
  }
}

.hero-subpages {
  height: 600px;
  min-height: 300px;
}
.hero-subpages .container {
  padding-bottom: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
  gap: 10px;
}
.hero-subpages .container .title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
}
.hero-subpages .container .desc {
  font-weight: 400;
  font-size: clamp(1rem, 0.929rem + 0.357vw, 1.25rem);
  color: #EBEBEB;
}
.hero-subpages .container .button {
  position: relative;
  overflow: hidden;
  z-index: 0;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 24px 8px;
  transition: color 0.3s ease-out;
}
.hero-subpages .container .button svg path {
  fill: #FFFFFF !important;
  transition: fill 0.3s ease-out;
}
.hero-subpages .container .button::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #FFFFFF;
  left: 0;
  top: 0;
  z-index: -1;
  transition: width 0.3s ease-out;
}
.hero-subpages .container .button:hover {
  color: #000000;
  background: none;
}
.hero-subpages .container .button:hover svg path {
  fill: #000000 !important;
}
.hero-subpages .container .button:hover::before {
  width: 100%;
}
@media (max-width: 768px) {
  .hero-subpages {
    height: 420px;
  }
  .hero-subpages .container {
    padding-bottom: 24px;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .hero-subpages {
    height: 360px;
    min-height: 260px;
  }
}

.bikes-pricing__title {
  margin-bottom: 24px;
}
.bikes-pricing__desc {
  margin-bottom: 48px;
  color: #4D4D4D;
}
.bikes-pricing__table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 48px;
  -webkit-overflow-scrolling: touch;
}
.bikes-pricing table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}
.bikes-pricing thead tr {
  border-bottom: 1px solid #A2A2A2;
}
.bikes-pricing tbody tr {
  border-bottom: 1px solid #A2A2A2;
}
.bikes-pricing tbody tr:last-child {
  border-bottom: none;
}
.bikes-pricing th, .bikes-pricing td {
  padding-top: 20px;
  padding-bottom: 20px;
}
.bikes-pricing thead tr th {
  text-align: left;
  font-size: clamp(1rem, 0.929rem + 0.357vw, 1.25rem);
  font-family: "Mona Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600 !important;
}
.bikes-pricing tbody td {
  text-align: left;
  font-size: 1rem;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  color: #4D4D4D;
}
@media (max-width: 480px) {
  .bikes-pricing__desc {
    margin-bottom: 32px;
  }
  .bikes-pricing__table-wrap {
    margin-bottom: 32px;
  }
  .bikes-pricing th, .bikes-pricing td {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 16px;
  }
  .bikes-pricing th:first-child, .bikes-pricing td:first-child {
    max-width: 150px;
    padding-right: 64px;
    white-space: normal;
  }
}

.bike-quote__quote {
  font-size: clamp(1.25rem, 1.071rem + 0.893vw, 1.875rem);
  line-height: clamp(1.6875rem, 1.455rem + 1.161vw, 2.5rem);
  text-align: center;
}
@media (max-width: 768px) {
  .bike-quote__quote {
    padding: 0 16px;
  }
}

.bikes-faq__title {
  margin-bottom: 48px;
}
.bikes-faq__list {
  margin-top: 48px;
}
.bikes-faq__item {
  border-bottom: 1px solid #A2A2A2;
  max-width: 760px;
  margin: auto;
}
.bikes-faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.bikes-faq__question {
  font-size: 1rem;
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.bikes-faq__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .bikes-faq__title {
    margin-bottom: 32px;
  }
  .bikes-faq__list {
    margin-top: 32px;
  }
  .bikes-faq__toggle {
    gap: 16px;
    padding: 16px 0;
  }
}

.bikes-faq__toggle[aria-expanded=true] .bikes-faq__icon {
  transform: rotate(180deg);
}

.bikes-faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.bikes-faq__toggle[aria-expanded=true] + .bikes-faq__answer-wrap {
  grid-template-rows: 1fr;
}

.bikes-faq__answer-inner {
  overflow: hidden;
}

.bikes-faq__answer {
  padding-bottom: 20px;
  font-size: 1rem;
  font-family: "Unbounded", sans-serif;
  color: #4D4D4D;
}

.bike-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.bike-carousel__nav {
  display: flex;
  gap: 12px;
}
.bike-carousel__prev, .bike-carousel__next {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #A2A2A2;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.bike-carousel__prev:hover:not(:disabled), .bike-carousel__next:hover:not(:disabled) {
  background-color: rgba(0, 0, 0, 0.03);
}
.bike-carousel__prev:disabled, .bike-carousel__next:disabled {
  opacity: 0.3;
  cursor: default;
}
.bike-carousel__cta {
  margin-top: 48px;
  text-align: center;
}
@media (max-width: 768px) {
  .bike-carousel__header {
    margin-bottom: 32px;
  }
  .bike-carousel__cta {
    margin-top: 32px;
  }
}
@media (max-width: 480px) {
  .bike-carousel__prev, .bike-carousel__next {
    width: 40px;
    height: 40px;
  }
}

.bike-carousel .eb-bikes-grid {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.bike-carousel .eb-bikes-grid::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .bike-carousel .eb-bikes-grid {
    gap: 16px;
  }
}

.bike-carousel .eb-bikes-grid__item {
  flex: 0 0 calc((100% - 64px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
@media (max-width: 960px) {
  .bike-carousel .eb-bikes-grid__item {
    flex: 0 0 calc((100% - 32px) / 2);
  }
}
@media (max-width: 768px) {
  .bike-carousel .eb-bikes-grid__item {
    flex: 0 0 85%;
  }
}

.bike-carousel .eb-bikes-grid__image {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 24px;
}

.bike-carousel .eb-bikes-grid__title {
  font-size: clamp(1rem, 0.929rem + 0.357vw, 1.25rem);
  font-family: "Mona Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.bike-carousel .eb-bikes-grid__desc {
  color: #4D4D4D;
  font-size: 1rem;
  margin-bottom: 24px;
}
.bike-carousel .eb-bikes-grid__desc:empty {
  display: none;
}

.bike-carousel .eb-book-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.bike-carousel__cta {
  display: flex;
  justify-content: center;
}

.list-image {
  overflow: hidden;
  padding: 96px 0;
}
.list-image__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.list-image__content-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}
.list-image__title {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  text-transform: uppercase;
  color: #000000;
}
.list-image__desc {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #4D4D4D;
}
.list-image__media {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/7;
}
.list-image__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-image__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.list-image__item {
  background: #EBEBEB;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.list-image__item-title {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #000000;
}
.list-image__item-desc {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4D4D4D;
}
@media (max-width: 960px) {
  .list-image {
    padding: 56px 0;
  }
  .list-image__content-inner {
    gap: 24px;
  }
  .list-image__title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .list-image {
    padding: 56px 0;
  }
  .list-image__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .list-image__title {
    font-size: 28px;
    line-height: 32px;
  }
  .list-image__desc {
    font-size: 16px;
    line-height: 24px;
  }
}

.cta__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  color: #FFFFFF;
  background: #000000;
  border-radius: 16px;
}
.cta__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
  line-height: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
  margin-bottom: 32px;
}
.cta__desc {
  color: #A2A2A2;
}
@media (max-width: 768px) {
  .cta {
    padding: 0 14px;
  }
  .cta__container {
    gap: 24px;
  }
  .cta__title {
    margin-bottom: 16px;
  }
}

.google-review__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.lista-tras__grid {
  display: flex;
  flex-direction: column;
}

.trasa-card {
  padding: 48px 0;
  border-bottom: 1px solid #A2A2A2;
}
.trasa-card:last-child {
  border-bottom: none;
}
.trasa-card {
  display: flex;
  align-items: center;
  gap: 48px;
}
.trasa-card__preview {
  width: 40%;
  aspect-ratio: 1;
  overflow: hidden;
}
.trasa-card__preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trasa-card__title a {
  color: #000000;
}
.trasa-card__excerpt {
  color: #4D4D4D;
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  line-height: clamp(1.375rem, 1.268rem + 0.536vw, 1.75rem);
}
.trasa-card__content {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trasa-card__content ul {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 24px 0;
  border-top: 1px solid #A2A2A2;
  border-bottom: 1px solid #A2A2A2;
}
.trasa-card__content li {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .trasa-card {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 32px 0;
  }
  .trasa-card__preview {
    width: 100%;
  }
  .trasa-card__content {
    width: 100%;
  }
  .trasa-card__content ul {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

.road-text__quote {
  font-size: clamp(1.25rem, 1.071rem + 0.893vw, 1.875rem);
  line-height: clamp(1.6875rem, 1.455rem + 1.161vw, 2.5rem);
  text-align: center;
}

.text-image {
  overflow: hidden;
  display: flex;
  gap: 56px;
}
.text-image__content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.text-image__content-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.text-image p,
.text-image li {
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  line-height: clamp(1.375rem, 1.268rem + 0.536vw, 1.75rem);
  color: #4D4D4D;
}
.text-image__media {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/7;
  margin-bottom: 48px;
}
.text-image__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .text-image {
    gap: 36px;
    padding: 56px 0;
  }
}
@media (max-width: 768px) {
  .text-image {
    flex-direction: column;
    padding: 0 0 56px;
  }
  .text-image__content {
    flex: 1 1 auto;
    order: 2;
    padding-left: 16px;
    padding-right: 16px;
  }
  .text-image__content-inner {
    gap: 24px;
    padding-top: 36px;
  }
  .text-image__media {
    order: 1;
    width: 100%;
    aspect-ratio: 4/3;
  }
}

.trasa-hero__container {
  color: #000000 !important;
}
.trasa-hero ul {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 24px 0;
  border-top: 1px solid #A2A2A2;
  border-bottom: 1px solid #A2A2A2;
}
.trasa-hero li {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .trasa-hero ul {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

.trasa__desc {
  color: #4D4D4D !important;
}

.trasa__atrakcje {
  border-bottom: 1px solid #A2A2A2;
}

.trasa__atrakcje-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.trasa__atrakcje-toggle span {
  font-size: 1rem;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.trasa__atrakcje-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.trasa__atrakcje-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.trasa__atrakcje-list {
  padding-bottom: 20px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trasa__atrakcje-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 480px) {
  .trasa__atrakcje-item {
    align-items: flex-start;
  }
}

.trasa__atrakcje-image {
  flex-shrink: 0;
  width: 400px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .trasa__atrakcje-image {
    width: 120px;
  }
}
@media (max-width: 480px) {
  .trasa__atrakcje-image {
    width: 88px;
  }
}

.trasa__atrakcje-item-content {
  min-width: 0;
}

.trasa__atrakcje-item-title {
  font-size: clamp(1.25rem, 1.071rem + 0.893vw, 1.875rem);
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.trasa__atrakcje-item-desc {
  font-size: 1rem;
  font-family: "Unbounded", sans-serif;
  color: #4D4D4D;
}

.text-editor__container {
  margin: 0 auto;
}
.text-editor h2,
.text-editor h3 {
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 24px;
}
.text-editor h2:last-child,
.text-editor h3:last-child {
  margin-bottom: 0;
}
.text-editor p {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  line-height: clamp(1.375rem, 1.268rem + 0.536vw, 1.75rem);
  color: #4D4D4D;
  margin: 0 0 16px;
}
.text-editor p:last-child {
  margin-bottom: 0;
}
.text-editor a {
  font-family: "Unbounded", sans-serif;
  text-transform: none !important;
  color: #000000;
  font-weight: 400;
  text-decoration: underline;
}
.text-editor ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-editor ul:last-child {
  margin-bottom: 0;
}
.text-editor ul li {
  position: relative;
  padding-left: 32px;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, 0.804rem + 0.357vw, 1.125rem);
  line-height: clamp(1.375rem, 1.268rem + 0.536vw, 1.75rem);
  color: rgba(0, 0, 0, 0.6);
}
.text-editor ul li strong,
.text-editor ul li b {
  font-weight: 400;
  color: #000000;
}
.text-editor ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 0H1C0.4 0 0 0.4 0 1C0 1.6 0.4 2 1 2H8.6L0.3 10.3C-0.0999998 10.7 -0.0999998 11.3 0.3 11.7C0.7 12.1 1.3 12.1 1.7 11.7L10 3.4V11C10 11.6 10.4 12 11 12C11.6 12 12 11.6 12 11V1C12 0.4 11.6 0 11 0Z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.text-editor ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.text-editor ol:last-child {
  margin-bottom: 0;
}
.text-editor ol li {
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  padding-left: 8px;
  margin-bottom: 16px;
}
.text-editor ol li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .text-editor {
    padding: 48px 16px;
  }
  .text-editor h2,
  .text-editor h3 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
  }
}/*# sourceMappingURL=style.css.map */