@media (min-width: 1025px) {
  .scale-on-hover {
    transition: transform 0.3s ease;
  }
  .scale-on-hover:hover {
    transform: scale(1.2);
  }
}
@media (max-width: 1024px) {
  .w_header__menu_btn svg path {
    transition: transform 0.3s ease;
  }
  .w_header__menu_btn svg path:nth-child(2) {
    transform-origin: 13px 15px;
  }
  .w_header__menu_btn svg path:nth-child(3) {
    transform-origin: 12px 20px;
  }
  body.w_menu__is-open .w_header__menu_btn svg path:nth-child(2) {
    transform: rotate(45deg);
  }
  body.w_menu__is-open .w_header__menu_btn svg path:nth-child(3) {
    transform: rotate(-45deg);
  }
  .w_header__menu {
    position: absolute;
    width: calc(100% - var(--container-padding) * 2);
    left: var(--container-padding);
    top: calc(100% + 20px);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 4px rgba(0, 54, 64, 0.15);
    padding: 10px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  body.w_menu__is-open .w_header__menu {
    opacity: 1;
    visibility: visible;
  }
  .w_header__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .w_header__menu li:not(:last-child) {
    margin-bottom: 10px;
  }
  .w_header__menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F3F3F3;
    border-radius: 5px;
    padding: 8px 10px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
  }
  .w_header__menu li.menu-item-has-children > a:after {
    content: "";
    align-self: center;
    width: 17px;
    height: 9px;
    background: url(/wp-content/themes/woder/assets/svg/chevron-down.svg) no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
  }
  .w_header__menu .sub-menu-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s ease;
  }
  .w_header__menu .sub-menu-wrapper ul {
    overflow: hidden;
  }
  .w_header__menu .sub-menu-wrapper ul > li {
    overflow: hidden;
  }
  .w_header__menu .sub-menu-wrapper ul > li:first-child > a {
    margin-top: 10px;
  }
  .w_header__menu .sub-menu-wrapper ul > li:not(.menu-item-has-children) > a {
    min-height: 60px;
  }
  .w_header__menu .sub-menu-wrapper ul > li:not(.menu-item-has-children) > a svg {
    align-self: end;
    width: 21px;
    height: 21px;
  }
  .w_header__menu li.menu-item-has-children.is-expanded > .sub-menu-wrapper {
    grid-template-rows: 1fr;
  }
  .w_header__menu li.menu-item-has-children.is-expanded > a:after {
    transform: rotate(180deg);
  }
}
@media (min-width: 1025px) {
  .w_header__container {
    transition: background-color 0.3s ease;
  }
  .w_header__container:hover {
    background-color: #fff;
  }
  #w_header__menu_toggle {
    display: none;
  }
  .w_header__menu .sub-menu-wrapper {
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .w_header__menu .sub-menu-wrapper .sub-menu {
    background: rgb(255, 255, 255);
    box-shadow: 0 4px 4px rgba(0, 54, 64, 0.15);
    border-radius: 10px;
    margin: 0;
    padding: 20px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .w_header__menu .sub-menu-wrapper .sub-menu > li:not(.menu-item-has-children) {
    flex: 1 1 calc(29% - 10px);
    text-align: center;
    transition: flex 0.3s ease;
  }
  .w_header__menu .sub-menu-wrapper .sub-menu > li:not(.menu-item-has-children) > a {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    background-color: #F3F3F3;
    border-radius: 10px;
    padding: 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    min-height: 121px;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .w_header__menu .sub-menu-wrapper .sub-menu > li:not(.menu-item-has-children) > a svg {
    width: 30px;
    height: 30px;
    position: relative;
    right: -10px;
    bottom: -10px;
  }
  .w_header__menu .sub-menu-wrapper .sub-menu > li:not(.menu-item-has-children):hover {
    flex: 1 1 calc(36% - 10px);
  }
  .w_header__menu .sub-menu-wrapper .sub-menu > li:not(.menu-item-has-children):hover > a {
    background-color: var(--primary-color);
    color: white;
  }
  .w_header__menu .sub-menu-wrapper .sub-menu > li:not(.menu-item-has-children):hover > a svg rect {
    fill: white;
  }
  .w_header__menu .sub-menu-wrapper .sub-menu > li:not(.menu-item-has-children):hover > a svg path {
    fill: var(--primary-color);
  }
  .w_header__menu li.menu-item-has-children:hover > .sub-menu-wrapper {
    opacity: 1;
    visibility: visible;
  }
  .w_header__buttons svg * {
    transition: all 0.3s ease;
  }
  .w_header__buttons > *:hover svg circle {
    stroke: var(--primary-color);
    fill: var(--primary-color);
    fill-opacity: 1;
  }
  .w_header__buttons > *:hover svg path {
    stroke: white;
  }
}
.w_video {
  container-name: w-video-container;
  container-type: inline-size;
}
.w_video .w_video__thumbnail {
  background-color: var(--light-gray-color);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  display: block;
  width: 100%;
  aspect-ratio: 335/210;
}
.w_video .w_video__thumbnail:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  background: url(/wp-content/themes/woder/assets/svg/play.svg) no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .w_video .w_video__thumbnail:after {
    width: 90px;
    height: 90px;
  }
}
.w_video .w_video__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.w_video .w_video__thumbnail:hover img {
  transform: scale(1.1);
}
.w_video .w_video__content h2 {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 700;
  line-height: 110%;
  font-variant: all-small-caps;
  margin-bottom: 20px;
}
.w_video .w_video__content p {
  color: var(--secondary-color);
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .w_video .w_video__content {
    max-width: 560px;
    padding-bottom: 24px;
  }
  .w_video .w_video__content h2 {
    font-size: 50px;
  }
  .w_video .w_video__content p {
    font-size: 25px;
  }
}
@container w-video-container (max-width: 1550px) {
  .w_video .w_section__inner {
    --content-width: 100%;
    --container-padding: 0;
  }
}
@media (min-width: 768px) {
  .w_video .w_section__inner {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .w_video .w_video__thumbnail {
    width: 53%;
    max-width: 675px;
    min-height: 360px;
    flex-shrink: 0;
    margin-bottom: 0;
    aspect-ratio: 675/365;
  }
}

.w_featured_product {
  background-color: #e6e5ea;
}
.w_featured_product .w_featured_product__inner {
  position: static !important;
}
.w_featured_product .w_featured_product__primary_content {
  padding-top: 25px;
}
.w_featured_product .w_featured_product__primary_content .title_1 {
  color: var(--secondary-color);
  font-variant: all-small-caps;
  margin-bottom: -0.2em;
}
.w_featured_product .w_featured_product__primary_content .title_2 {
  color: var(--primary-color);
  font-variant: all-small-caps;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.w_featured_product .w_featured_product__primary_content .title_2 .sub {
  font-size: 20px;
}
.w_featured_product .w_featured_product__primary_content .content {
  margin-top: 22px;
}
.w_featured_product .w_featured_product__primary_content .content .description {
  line-height: 140%;
  margin-bottom: 20px;
}
.w_featured_product .w_featured_product__primary_content .title,
.w_featured_product .w_featured_product__specs .title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  font-variant: all-small-caps;
  margin-bottom: 17px;
}
.w_featured_product .w_featured_product__specs {
  margin-top: 40px;
}
.w_featured_product .w_featured_product__specs .spec_set:not(:last-child) {
  margin-bottom: 30px;
}
.w_featured_product .w_featured_product__specs .spec_set .spec_set__title {
  margin-bottom: 4px;
}
.w_featured_product .w_featured_product__specs .spec_set .spec_set__title strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  color: var(--primary-color);
}
.w_featured_product .w_featured_product__specs .spec_set .spec_set__list {
  display: flex;
  flex-wrap: wrap;
}
.w_featured_product .w_featured_product__specs .spec_set .spec_set__item {
  flex: 1 1 100%;
  padding: 10px 5px 10px 0;
  border-bottom: 1px solid var(--third-color);
  font-weight: 500;
  line-height: 130%;
  font-variant: all-small-caps;
}
.w_featured_product .w_featured_product__specs .spec_set .spec_set__item:last-child {
  border-bottom: 0;
}
@media (max-width: 1024px) {
  .w_featured_product .w_featured_product__specs .spec_set .spec_set__list:has(.spec_set__item:nth-child(6)) .spec_set__item {
    flex-basis: 50%;
  }
  .w_featured_product .w_featured_product__specs .spec_set .spec_set__list:has(.spec_set__item:nth-child(6)) .spec_set__item:nth-last-child(2) {
    border-bottom: 0;
  }
  .w_featured_product .w_featured_product__specs .spec_set .spec_set__list:has(.spec_set__item:nth-child(6)) .spec_set__item:nth-child(even) {
    padding-left: 20px;
  }
}
.w_featured_product .w_featured_product__images {
  margin-top: 16px;
  height: 350px;
  padding-right: 22px;
  position: relative;
}
.w_featured_product .w_featured_product__images img.background_image {
  position: absolute;
  left: calc(var(--container-padding) * -1);
  width: calc(100% + var(--container-padding) * 2);
  max-width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.w_featured_product .w_featured_product__images img.primary_image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  padding-bottom: 40px;
}
.w_featured_product .w_featured_product__images img.badge_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 83px;
  height: 83px;
  z-index: 1;
}
@media (min-width: 1025px) {
  .w_featured_product .w_section__inner {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    padding-top: 40px !important;
    padding-bottom: 100px !important;
  }
  .w_featured_product .w_featured_product__primary_content {
    width: 38%;
    max-width: 439px;
    flex-shrink: 0;
  }
  .w_featured_product .w_featured_product__primary_content .title_1 {
    font-size: 20px;
  }
  .w_featured_product .w_featured_product__primary_content .title_2 {
    font-size: 70px;
    margin-top: -0.1em;
  }
  .w_featured_product .w_featured_product__primary_content .title_2 .sub {
    display: block;
    font-size: 40px;
  }
  .w_featured_product .w_featured_product__primary_content .content {
    max-width: 439px;
  }
  .w_featured_product .w_featured_product__primary_content .title,
  .w_featured_product .w_featured_product__specs .title {
    font-size: 30px;
  }
  .w_featured_product .w_featured_product__primary_content .content,
  .w_featured_product .w_featured_product__specs {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.4);
    padding: 30px 30px 40px;
  }
  .w_featured_product .w_featured_product__specs {
    margin-top: 0;
    order: 99;
  }
  .w_featured_product .w_featured_product__specs .spec_set {
    display: flex;
    gap: 35px;
  }
  .w_featured_product .w_featured_product__specs .spec_set .spec_set__title {
    font-size: 15px;
    width: 85px;
  }
  .w_featured_product .w_featured_product__specs .spec_set .spec_set__title strong {
    font-size: 30px;
  }
  .w_featured_product .w_featured_product__specs .spec_set .spec_set__item {
    font-size: 17px;
    border-color: white;
    padding: 3px 5px 6px 0;
  }
  .w_featured_product .w_featured_product__primary_content,
  .w_featured_product .w_featured_product__specs {
    position: relative;
    z-index: 2;
  }
  .w_featured_product .w_featured_product__images {
    flex-shrink: 0;
    position: static;
    height: 573px;
  }
  .w_featured_product .w_featured_product__images img.background_image {
    inset: 0;
  }
  .w_featured_product .w_featured_product__images img.primary_image {
    padding: 0;
  }
  .w_featured_product .w_featured_product__images img.badge_image {
    width: 130px;
    height: 130px;
    top: auto;
    bottom: 55px;
    left: calc(50% + 66px);
    z-index: 3;
  }
}

/* Footer */
.w_footer {
  background: linear-gradient(0deg, #1869E4 1.59%, rgba(255, 255, 255, 0) 81.59%);
  margin-top: 120px;
}
.w_footer .w_footer__inner {
  width: var(--content-width);
  max-width: 100%;
  margin: auto;
  padding: 0 var(--container-padding) 50px;
}
.w_footer .w_footer__logo img {
  display: block;
  margin-bottom: 20px;
}
.w_footer .w_footer__menu {
  text-transform: capitalize;
  margin-bottom: 30px;
}
.w_footer .w_footer__menu .title {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 160%; /* 24px */
  font-variant: all-small-caps;
  margin-bottom: 10px;
}
.w_footer .w_footer__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
}
.w_footer .w_footer__menu li {
  margin-bottom: 6px;
}
.w_footer .w_footer__menu a {
  color: inherit;
  text-decoration: none;
}
.w_footer .w_footer__subscribe h4 {
  color: var(--primary-color);
  font-weight: 700;
  line-height: 160%; /* 24px */
  font-variant: all-small-caps;
  margin-bottom: 0;
}
.w_footer .w_footer__subscribe .fields {
  display: flex;
  gap: 6px;
}
.w_footer .w_footer__subscribe .fields input[type=email] {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: white;
  padding: 8px 0;
  font-weight: 400;
  line-height: 160%; /* 24px */
  font-variant: all-small-caps;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  outline: 0;
}
.w_footer .w_footer__subscribe .fields input[type=email]::placeholder {
  color: white;
}
.w_footer .w_footer__subscribe .fields input[type=email]:focus {
  border-color: var(--primary-color);
}
.w_footer .w_footer__subscribe .fields input[type=submit] {
  display: inline-block;
  border-radius: 10px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--primary-color);
  text-align: center;
  font-size: 15px;
  line-height: 1;
  font-variant: all-small-caps;
  padding: 2px 15px 4px;
  position: relative;
}
.w_footer .w_footer__subscribe .fields .wpcf7-spinner {
  position: absolute;
}
@media (max-width: 1024px) {
  .w_footer .w_footer__secondary_row {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: 1fr 1fr;
  }
  .w_footer .w_footer__secondary_row .w_footer__social_icons,
  .w_footer .w_footer__secondary_row .w_footer__bottom_links {
    grid-column: 1/-1;
  }
}
.w_footer .w_footer__secondary_row .w_footer__social_icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 38px;
}
.w_footer .w_footer__secondary_row .w_footer__social_icons img {
  display: block;
  width: 33px;
  height: 33px;
}
@media (max-width: 1024px) {
  .w_footer .w_footer__secondary_row .w_footer__social_icons {
    padding: 40px 0;
  }
}
.w_footer .w_footer__secondary_row .w_footer__bottom_links a,
.w_footer .w_footer__secondary_row .w_footer__made_in .text,
.w_footer .w_footer__secondary_row .w_footer__secure_payments .text {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  font-variant: all-small-caps;
  text-decoration: none;
}
.w_footer .w_footer__secondary_row .w_footer__bottom_links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
@media (max-width: 1024px) {
  .w_footer .w_footer__secondary_row .w_footer__bottom_links ul {
    margin: 0 0 30px;
    justify-content: space-between;
  }
}
.w_footer .w_footer__secondary_row .w_footer__made_in img,
.w_footer .w_footer__secondary_row .w_footer__secure_payments img {
  display: block;
  margin: 4px 0 0;
}
.w_footer .w_footer__secondary_row .w_footer__made_in img {
  margin-top: 16px;
}
.w_footer .w_footer__secondary_row .w_footer__secure_payments_inner {
  display: block;
  margin-left: auto;
  width: max-content;
}
@media (min-width: 1025px) {
  .w_footer .w_footer__inner {
    padding-bottom: 70px;
  }
  .w_footer a:hover {
    text-decoration: underline !important;
    text-underline-offset: 0.3em;
  }
  .w_footer .w_footer__primary_row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-size: 17px;
  }
  .w_footer .w_footer__primary_row .w_footer__logo {
    padding-right: 50px;
  }
  .w_footer .w_footer__primary_row .w_footer__logo img {
    width: 156px;
    height: auto;
  }
  .w_footer .w_footer__primary_row .w_footer__menus {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    max-width: min(38%, 460px);
    flex: 1 1 auto;
  }
  .w_footer .w_footer__primary_row .w_footer__menus .w_footer__menu {
    flex: 1 1 auto;
    margin: 0;
  }
  .w_footer .w_footer__primary_row .w_footer__menus .w_footer__menu .title {
    font-size: 18px;
  }
  .w_footer .w_footer__primary_row .w_footer__menus .w_footer__menu li {
    font-size: 17px;
    line-height: 1.2;
  }
  .w_footer .w_footer__primary_row .w_footer__menus .w_footer__menu li:not(:last-child) {
    margin-bottom: 1rem;
  }
  .w_footer .w_footer__primary_row .w_footer__subscribe {
    padding-left: 50px;
  }
  .w_footer .w_footer__primary_row .w_footer__subscribe h4 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .w_footer .w_footer__primary_row .w_footer__subscribe input[type=email] {
    font-size: 18px;
    border-color: rgba(170, 170, 170, 0.8);
    color: rgba(170, 170, 170, 0.8);
  }
  .w_footer .w_footer__primary_row .w_footer__subscribe input[type=email]::placeholder {
    color: rgba(170, 170, 170, 0.8);
  }
  .w_footer .w_footer__primary_row .w_footer__subscribe input[type=submit] {
    background-color: var(--primary-color);
    color: #fff;
    height: 45px;
  }
  .w_footer .w_footer__secondary_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 120px;
  }
  .w_footer .w_footer__secondary_row .w_footer__bottom_links a,
  .w_footer .w_footer__secondary_row .w_footer__made_in .text,
  .w_footer .w_footer__secondary_row .w_footer__secure_payments .text {
    font-size: 16px;
    font-weight: normal;
  }
  .w_footer .w_footer__secondary_row .w_footer__secure_payments {
    order: -1;
  }
  .w_footer .w_footer__secondary_row .w_footer__secure_payments img {
    width: 131px;
    height: auto;
    margin-top: 6px;
  }
  .w_footer .w_footer__secondary_row .w_footer__made_in {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .w_footer .w_footer__secondary_row .w_footer__made_in img {
    margin: 0;
    width: 33px;
    height: auto;
    position: relative;
    top: 0.12em;
    order: -1;
  }
}

/* cf7 form styles */
.w_section .wpcf7-form .fields label {
  font-size: 15px;
  font-weight: 500;
  font-variant: all-small-caps;
}
.w_section .wpcf7-form .fields > label {
  display: block;
}
.w_section .wpcf7-form .fields > label:not(:last-child) {
  margin-bottom: 16px;
}
.w_section .wpcf7-form .fields .label_text {
  display: block;
  margin-bottom: 4px;
}
.w_section .wpcf7-form .fields .wpcf7-text,
.w_section .wpcf7-form .fields .wpcf7-textarea {
  margin: 0;
  padding: 12px 10px 14px;
  font-size: 1rem;
  font-variant: all-small-caps;
  border-radius: 7px;
  border: 1px solid var(--third-color);
  background: #FFF;
  width: 100%;
}
.w_section .wpcf7-form .fields .wpcf7-text::placeholder,
.w_section .wpcf7-form .fields .wpcf7-textarea::placeholder {
  color: var(--third-color);
}
.w_section .wpcf7-form .fields .wpcf7-text {
  height: 45px;
}
.w_section .wpcf7-form .fields .wpcf7-textarea {
  height: 150px;
}
.w_section .wpcf7-form .submit_wrapper {
  position: relative;
  text-align: center;
  padding: 20px 0 10px;
}
.w_section .wpcf7-form .submit_wrapper .wpcf7-spinner {
  position: absolute;
}

/* Contact us */
.w_hero--contact_us .w_hero__contact_form {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 4px 0 rgba(0, 61, 85, 0.1);
  padding: 20px 10px;
  position: relative;
  z-index: 2;
}
.w_hero--contact_us .w_hero__contact_form .title {
  font-size: 25px;
  font-weight: 700;
  line-height: 110%; /* 27.5px */
  font-variant: all-small-caps;
  text-align: center;
}
@media (max-width: 1024px) {
  .w_hero--contact_us .w_hero__contact_form .title {
    padding: 10px 0 20px;
  }
  .w_hero--contact_us .w_hero__contact_form .label_text {
    padding: 0 10px;
  }
}
.w_hero--contact_us .w_hero__image:before {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 3.11%, rgba(255, 255, 255, 0.9) 99.19%) !important;
  background-size: initial !important;
}
@media (max-width: 1024px) {
  .w_hero--contact_us {
    padding-top: 140px;
  }
  .w_hero--contact_us .w_section__inner {
    padding-bottom: 30px !important;
  }
  .w_hero--contact_us .w_hero__image {
    max-height: 480px;
    border-radius: 10px;
    overflow: hidden;
  }
}
@media (min-width: 1025px) {
  .w_hero--contact_us .w_hero__contact_form {
    padding: 20px 34px;
  }
  .w_hero--contact_us .w_hero__contact_form .title {
    margin-bottom: 30px;
  }
  .w_hero--contact_us .w_hero__contact_form form {
    width: 370px;
    max-width: 100%;
  }
  .w_hero--contact_us .w_hero__contact_form .fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
  .w_hero--contact_us .w_hero__contact_form .fields > label:first-child,
  .w_hero--contact_us .w_hero__contact_form .fields > label:last-child {
    grid-column: span 2;
  }
  .w_hero--contact_us .w_hero__contact_form .submit_wrapper {
    text-align: initial;
  }
  .w_hero--contact_us .w_hero__contact_form .submit_wrapper input.w_btn {
    min-width: min(162px, 100%);
  }
  .w_hero--contact_us .w_section__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px !important;
  }
  .w_hero--contact_us .w_section__inner .w_hero__content h1 {
    margin: 40px 0 10px;
  }
}

/* Content blocks section */
.w_blocks_content {
  --container-padding: 0;
}
.w_blocks_content .w_blocks_content__item {
  padding: 30px 0 40px;
}
@media (max-width: 1024px) {
  .w_blocks_content .w_blocks_content__item:last-child {
    padding-bottom: 0;
  }
}
.w_blocks_content .w_blocks_content__item:not(:last-child) {
  border-bottom: 1px solid var(--third-color);
}
.w_blocks_content .w_blocks_content__item .heading {
  color: var(--primary-color);
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  font-variant: all-small-caps;
  margin-bottom: 20px;
}
.w_blocks_content .w_blocks_content__item .content {
  line-height: 140%;
}
.w_blocks_content .w_blocks_content__item .content p a {
  color: var(--secondary-color);
}
.w_blocks_content .w_blocks_content__item .content > a:last-child {
  display: block;
  color: #003D55;
  font-weight: 600;
  line-height: 150%; /* 24px */
  text-decoration-line: underline;
  text-underline-position: from-font;
}
.w_blocks_content .w_blocks_content__item .content .w_btn {
  margin: 10px 0 20px;
}
@media (min-width: 1025px) {
  .w_blocks_content .w_blocks_content__item {
    display: flex;
    gap: 112px;
    padding: 70px 0 63px;
  }
  .w_blocks_content .w_blocks_content__item .heading {
    font-size: 40px;
    margin: 0;
    width: min(360px, 40%);
    flex-shrink: 0;
  }
  .w_blocks_content .w_blocks_content__item .heading .word {
    display: block;
  }
  .w_blocks_content .w_blocks_content__item .content {
    max-width: 556px;
    font-size: 17px;
    line-height: 150%;
  }
  .w_blocks_content .w_blocks_content__item .content > a:last-child {
    margin-top: 20px;
  }
}

.w_location {
  padding-top: 30px;
  padding-bottom: 30px;
}
.w_location .w_location__inner {
  display: flex;
  justify-content: center;
}
.w_location .w_location__inner .w_location__text {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 18px 26px 18px 38px;
}
.w_location .w_location__inner .w_location__text strong {
  font-weight: 800;
}
@media (min-width: 1025px) {
  .w_location .w_location__inner {
    min-height: 380px;
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 40px !important;
  }
  .w_location .w_location__inner .w_location__text {
    min-width: min(436px, 100%);
  }
}

/* Wholesale */
.w_content_section {
  margin-top: -10px;
}
@media (min-width: 1025px) {
  .w_content_section.w_content_section--wholesale {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}
.w_content_section .w_content_section__inner h2 {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 700;
  line-height: 110%; /* 27.5px */
  font-variant: all-small-caps;
}
.w_content_section .w_content_section__inner .content {
  font-size: 17px;
  line-height: 150%;
}
@media (min-width: 1025px) {
  .w_content_section .w_content_section__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  .w_content_section .w_content_section__inner h2 {
    font-size: 40px;
    max-width: 400px;
    flex-shrink: 0;
  }
}

.w_gallery_slider {
  --slick-slide-padding: 10px;
  --content-width: calc(1205px + (var(--slick-slide-padding) * 2));
}
@media (min-width: 1025px) {
  .w_gallery_slider {
    --slick-slide-padding: 30px;
  }
}
.w_gallery_slider .w_gallery_slider__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 var(--slick-slide-padding);
}
.w_gallery_slider .w_gallery_slider__item img {
  width: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 1024px) {
  .w_gallery_slider .slick-slide {
    width: calc((100vw - var(--section-margin) * 2) / 3);
  }
}
@media (min-width: 1025px) {
  .w_gallery_slider.w_gallery_slider--wholesale {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.w_banner_section .w_banner_section__inner {
  background-color: #f3f3f3;
  border-radius: 15px;
  overflow: hidden;
  --content-width: 100%;
}
.w_banner_section .w_banner_section__content {
  padding: 24px 0 30px;
}
.w_banner_section .w_banner_section__content h2 {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 700;
  line-height: 110%; /* 27.5px */
  font-variant: all-small-caps;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .w_banner_section .w_banner_section__content h2 br {
    display: none;
  }
}
.w_banner_section .w_banner_section__content p {
  font-size: 17px;
  line-height: 140%; /* 23.8px */
  /*@media (max-width: $bp-sm) {
  	br {
  		display: none;
  	}
  }*/
}
.w_banner_section .w_banner_section__content p:last-child {
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .w_banner_section .w_banner_section__content h2 {
    font-size: 40px;
  }
  .w_banner_section .w_banner_section__content p {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .w_banner_section.w_banner_section--wholesale .w_banner_section__inner {
    background: #f3f3f3 url(/wp-content/themes/woder/assets/images/wholesale-book-bg-mobile.jpg) no-repeat bottom;
    background-size: 100% auto;
    padding-bottom: 51%;
  }
}
@media (min-width: 1025px) {
  .w_banner_section.w_banner_section--wholesale .w_banner_section__inner {
    background: #f3f3f3 url(/wp-content/themes/woder/assets/images/wholesale-book-bg.jpg) no-repeat right center;
  }
}
@media (min-width: 1025px) and (max-width: 1350px) {
  .w_banner_section.w_banner_section--wholesale .w_banner_section__inner:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(299deg, rgba(255, 255, 255, 0) 9.59%, rgba(255, 255, 255, 0.9) 76.41%);
  }
}
@media (min-width: 1025px) {
  .w_banner_section.w_banner_section--wholesale .w_banner_section__content {
    padding: 140px 0 160px 90px;
    max-width: 400px;
  }
  .w_banner_section.w_banner_section--wholesale .w_btn {
    min-width: min(162px, 100%);
  }
}

/* product archive */
.woocommerce-products-header .woocommerce-products-header__title {
  margin-bottom: 20px;
}
.woocommerce-products-header .term-description {
  font-size: 1rem;
  line-height: 130%;
}
@media (min-width: 1025px) {
  .woocommerce-products-header {
    max-width: 700px;
  }
  .woocommerce-products-header .term-description {
    font-size: 20px;
  }
}

.w_archive_loop_header .woocommerce-result-count {
  margin: 0;
}
@media (min-width: 1025px) {
  .w_archive_loop_header .woocommerce-result-count {
    font-size: 17px;
  }
}

.w_archive_back_button_bottom {
  margin-top: 40px;
  text-align: center;
}

/* w_contact_banner */
.w_contact_banner {
  --content-width: 100%;
}
.w_contact_banner .w_contact_banner__inner {
  background: #bfd0e5 url(/wp-content/themes/woder/assets/images/contact-banner-bg.jpg) no-repeat center;
  background-size: cover;
  border-radius: 15px;
  overflow: hidden;
  padding-top: 60px !important;
  padding-bottom: 110px !important;
}
@media (max-width: 767px) {
  .w_contact_banner .w_contact_banner__inner {
    background-position: calc(100% + 85px) center;
  }
}
@media (min-width: 1025px) {
  .w_contact_banner .w_contact_banner__inner {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
}
.w_contact_banner .w_contact_banner__content h2 {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 700;
  line-height: 110%; /* 27.5px */
  font-variant: all-small-caps;
  margin-bottom: 15px;
}
.w_contact_banner .w_contact_banner__content p {
  font-size: 17px;
  line-height: 140%; /* 23.8px */
  margin-bottom: 20px;
  max-width: 220px;
}
.w_contact_banner .w_contact_banner__content .w_btn {
  min-width: min(162px, 100%);
}
@media (min-width: 1025px) {
  .w_contact_banner .w_contact_banner__content {
    margin-left: 90px;
  }
  .w_contact_banner .w_contact_banner__content h2 {
    font-size: 40px;
  }
}

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