.container {
  max-width: 1336px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.medium-container {
  max-width: 1116px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.small-container {
  max-width: 894px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.button.blue a {
  background-color: #4FBFEE;
  color: #1D1D1B;
  border-color: #4FBFEE;
}
.button.blue a svg path, .button.blue a svg g {
  fill: #1D1D1B;
}
.button.black a {
  background-color: #1D1D1B;
  color: #FFF;
  border-color: #1D1D1B;
}
.button.black a svg path, .button.black a svg g {
  fill: #FFF;
}
.button a {
  display: flex;
  align-items: center;
  padding: 18px 24px 16px 24px;
  border-radius: 4px;
  border: 1px solid #FFF;
  color: #FFF;
}
.button a:hover svg, .button a:focus svg {
  transform: translateX(8px);
}
.button a svg {
  width: 10px;
  height: auto;
  vertical-align: middle;
  margin-left: 8px;
  transition: 0.8s;
  margin-top: -3px;
}
.button a svg path, .button a svg g {
  fill: #FFF;
}

.breadcrumbs {
  margin: 24px 0 0 0;
}
.breadcrumbs__inner {
  display: flex;
  align-items: center;
}
.breadcrumbs__inner span {
  line-height: 1;
}
.breadcrumbs__inner span a {
  color: #1D1D1B;
  position: relative;
  z-index: 10;
}
.breadcrumbs__inner span a:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1D1D1B;
}
.breadcrumbs__inner svg {
  width: 7px;
  height: auto;
  vertical-align: middle;
  margin: 0 8px;
}

.shopping-cart {
  width: 100%;
  padding: 72px 12px 24px 12px;
  position: relative;
  z-index: 10;
  height: 100%;
  overflow: scroll;
}
@media (min-width: 375px) {
  .shopping-cart {
    padding: 72px 24px 24px 24px;
  }
}
@media (min-width: 768px) {
  .shopping-cart {
    border-radius: 8px;
    overflow: hidden;
    height: auto;
    padding: 24px;
  }
}
.shopping-cart:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 11;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.shopping-cart.loading:before {
  opacity: 1;
  visibility: visible;
}
.shopping-cart .top-bar .title h3 {
  font-size: 1.5rem;
}
.shopping-cart .top-bar .close {
  position: absolute;
  top: 24px;
  right: 24px;
}
@media (min-width: 768px) {
  .shopping-cart .top-bar .close {
    display: none;
  }
}
.shopping-cart .top-bar .close svg {
  height: 16px;
  width: auto;
  vertical-align: middle;
}
.shopping-cart .items {
  margin-top: 32px;
}
.shopping-cart .items .item {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
.shopping-cart .items .item .image {
  width: 85px;
}
.shopping-cart .items .item .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 85/64;
  object-fit: cover;
}
.shopping-cart .items .item .content {
  padding-left: 24px;
  width: calc(100% - 85px);
}
.shopping-cart .items .item .content .title a {
  color: #0079B8;
  font-size: 1rem;
  font-weight: 400;
}
.shopping-cart .items .item .content .title span {
  display: block;
  color: #647382;
  font-weight: 400;
}
.shopping-cart .items .item .content .info {
  margin-top: 8px;
}
.shopping-cart .items .item .content .info .number-wrapper {
  width: 142px;
  border: 1px solid #E5E7EB;
  display: flex;
}
.shopping-cart .items .item .content .info .number-wrapper .quantity {
  border-left: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
}
.shopping-cart .items .item .content .info .number-wrapper .minus, .shopping-cart .items .item .content .info .number-wrapper .plus, .shopping-cart .items .item .content .info .number-wrapper .quantity {
  height: 48px;
  width: 48px;
}
.shopping-cart .items .item .content .info .number-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
.shopping-cart .items .item .content .info .number-wrapper .quantity input::-webkit-inner-spin-button, .shopping-cart .items .item .content .info .number-wrapper .quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shopping-cart .items .item .content .info .number-wrapper .minus, .shopping-cart .items .item .content .info .number-wrapper .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.shopping-cart .items .item .content .info .number-wrapper .minus svg, .shopping-cart .items .item .content .info .number-wrapper .plus svg {
  width: 14px;
  height: auto;
  vertical-align: middle;
}
.shopping-cart .items .item .remove {
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}
.shopping-cart .items .item .remove svg {
  height: 18px;
  width: auto;
  vertical-align: middle;
}
.shopping-cart .buttons {
  margin-top: 32px;
}
.shopping-cart .buttons .button {
  display: inline-block;
}
.shopping-cart .buttons .button a {
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 4px;
  background-color: #4FBFEE;
  border: 1px solid #4FBFEE;
  width: 100%;
  height: 56px;
  color: #1D1D1B;
}
.shopping-cart .buttons .button a svg {
  width: 12px;
  height: auto;
  vertical-align: middle;
}
.shopping-cart .buttons .button a svg path, .shopping-cart .buttons .button a svg g {
  fill: #1D1D1B;
}

.events {
  background: #BDE8FF;
  margin: 64px 0 0 0;
}
@media (min-width: 768px) {
  .events {
    margin: 128px 0 0 0;
  }
}
.events__inner {
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .events__inner {
    padding: 128px 24px;
  }
}
.events__inner .top {
  display: flex;
  justify-content: flex-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .events__inner .top {
    flex-wrap: nowrap;
  }
}
.events__inner .top__left {
  max-width: 500px;
}
@media (min-width: 1024px) {
  .events__inner .top__left {
    max-width: 685px;
  }
}
.events__inner .top__left h2 {
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
.events__inner .top__left p {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
  margin: 6px 0 0 0;
}
.events__inner .top__right {
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .events__inner .top__right {
    text-align: right;
    width: calc(100% - 500px);
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .events__inner .top__right {
    width: calc(100% - 685px);
  }
}
.events__inner .top__right .button {
  display: inline-block;
}
.events__inner .items {
  display: grid;
  row-gap: 32px;
  column-gap: 32px;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 40px;
}
@media (min-width: 768px) {
  .events__inner .items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.events__inner .items__item {
  width: 100%;
}
.events__inner .items__item--image {
  width: 100%;
  position: relative;
  z-index: 10;
}
.events__inner .items__item--image img {
  width: 100%;
  height: auto;
  aspect-ratio: 408/306;
  border-radius: 8px;
  object-fit: cover;
  vertical-align: bottom;
}
.events__inner .items__item--image .arrow-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: #4FBFEE;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events__inner .items__item--image .arrow-btn svg {
  width: 10px;
  height: auto;
  transition: 0.5s;
  vertical-align: middle;
}
.events__inner .items__item--info {
  margin-top: 6px;
}
.events__inner .items__item--info h3 {
  font-size: 1.5rem;
}
.events__inner .items__item--info p {
  margin: 6px 0 0 0;
}

.transport {
  background: #1D1D1B;
}
@media (min-width: 768px) {
  .transport {
    margin: 128px 0 0 0;
  }
}
.transport__inner {
  padding: 64px 24px 24px 24px;
}
@media (min-width: 768px) {
  .transport__inner {
    padding: 92px 24px;
  }
}
.transport__inner--content {
  max-width: 1202px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.transport__inner--content .left, .transport__inner--content .right {
  width: 100%;
}
@media (min-width: 768px) {
  .transport__inner--content .left, .transport__inner--content .right {
    width: 50%;
  }
}
.transport__inner--content .right {
  margin-top: 64px;
}
@media (min-width: 768px) {
  .transport__inner--content .right {
    margin-top: 0;
  }
}
.transport__inner--content .right img {
  width: 100%;
  height: auto;
  aspect-ratio: 601/448;
  object-fit: cover;
  border-radius: 24px 24px 4px 4px;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  .transport__inner--content .right img {
    border-radius: 8px 32px 32px 8px;
  }
}
.transport__inner--content .left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 64px;
}
.transport__inner--content .left .wrap {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.transport__inner--content .left .wrap h2, .transport__inner--content .left .wrap p, .transport__inner--content .left .wrap li {
  color: #FFF;
}
.transport__inner--content .left .wrap h2 {
  font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
  line-height: 1.2;
}
.transport__inner--content .left .wrap p {
  margin: 32px 0 0 0;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
.transport__inner--content .left .wrap .button {
  margin: 32px 0 0 0;
  display: inline-block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  transition: 0.5s;
  text-decoration: none;
}

ul {
  padding-left: 40px;
}
ul li {
  font-family: "tahoma", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

input, textarea {
  color: #1D1D1B;
}
input::placeholder, textarea::placeholder {
  font-size: 1rem;
  color: #1D1D1B;
  font-family: "tahoma", sans-serif;
  font-weight: 400;
}
input:focus, textarea:focus {
  outline: 0;
}

select {
  font-family: "tahoma", sans-serif;
}

body {
  font-weight: 400;
  line-height: 1.4;
  font-size: 16px;
  font-family: "tahoma", sans-serif;
  background-color: #fff;
  color: #1D1D1B;
  position: relative;
}
body.open:before {
  opacity: 1;
  visibility: visible;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.product .thumbnail-wrapper {
  position: relative;
  z-index: 10;
}
.product .thumbnail-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 298/224;
  object-fit: cover;
  border-radius: 8px;
  vertical-align: bottom;
}
.product .thumbnail-wrapper .arrow-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: #4FBFEE;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .thumbnail-wrapper .arrow-btn svg {
  width: 10px;
  height: auto;
  transition: 0.5s;
  vertical-align: middle;
}
.product .info-wrapper {
  margin: 16px 0 0 0;
}
.product .info-wrapper span {
  display: block;
  color: #0079B8;
  line-height: 1.4;
}
.product .info-wrapper h3 {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
  color: #1D1D1B;
}

body header {
  box-shadow: 0 2px 12px 0 rgba(36, 50, 66, 0.08);
  position: relative;
}
body header .topbar {
  border-bottom: 1px solid #E5E7EB;
}
body header .topbar__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px;
  flex-wrap: wrap;
}
body header .topbar__inner--hamburger {
  width: 25%;
  order: 1;
}
@media (min-width: 1200px) {
  body header .topbar__inner--hamburger {
    display: none;
  }
}
body header .topbar__inner--hamburger .mobile-menu-toggle {
  width: 52px;
  height: 52px;
  background-color: #4FBFEE;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
body header .topbar__inner--hamburger .mobile-menu-toggle svg {
  width: 15px;
  height: auto;
  vertical-align: middle;
}
body header .topbar__inner--logo {
  text-align: center;
  width: 50%;
  order: 2;
}
@media (min-width: 1200px) {
  body header .topbar__inner--logo {
    order: 1;
    text-align: left;
    width: 15%;
  }
}
body header .topbar__inner--logo svg {
  width: 118px;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  body header .topbar__inner--logo svg {
    width: 100%;
    max-width: 200px;
  }
}
body header .topbar__inner--search {
  width: 100%;
  order: 4;
  margin-top: 24px;
}
@media (min-width: 1200px) {
  body header .topbar__inner--search {
    margin-top: 0;
    order: 2;
    padding-left: 48px;
    width: 46%;
  }
}
body header .topbar__inner--search form {
  width: 100%;
  position: relative;
}
body header .topbar__inner--search form .wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}
body header .topbar__inner--search form .wrapper.active input[type=text] {
  border-radius: 35px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
body header .topbar__inner--search form .wrapper button {
  position: absolute;
  left: 18px;
  top: 23px;
  z-index: 10;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
body header .topbar__inner--search form .wrapper button .search-icon, body header .topbar__inner--search form .wrapper button .loading {
  display: none;
}
body header .topbar__inner--search form .wrapper button .search-icon.visible, body header .topbar__inner--search form .wrapper button .loading.visible {
  display: block;
}
body header .topbar__inner--search form .wrapper button .search-icon svg, body header .topbar__inner--search form .wrapper button .loading svg {
  height: 16px;
  width: auto;
  vertical-align: middle;
}
body header .topbar__inner--search form .wrapper input[type=text] {
  width: 100%;
  height: 64px;
  border: 1px solid #E5E7EB;
  backdrop-filter: blur(6px);
  border-radius: 9999px;
  padding: 0 24px 0 44px;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  body header .topbar__inner--search form .wrapper input[type=text] {
    font-size: 1rem;
  }
}
body header .topbar__inner--search form .wrapper input[type=text]::placeholder {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  body header .topbar__inner--search form .wrapper input[type=text]::placeholder {
    font-size: 1rem;
  }
}
body header .topbar__inner--search form .search__results {
  position: absolute;
  width: 100%;
  padding-top: 0;
  top: 100%;
  right: 0;
  z-index: 10000;
}
body header .topbar__inner--search form .search__results.active .results-container {
  opacity: 1;
  visibility: visible;
}
body header .topbar__inner--search form .search__results .results-container {
  background-color: #FFF;
  padding: 0 24px;
  width: 100%;
  border: 1px solid #ddd;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  border-top: none;
}
body header .topbar__inner--search form .search__results .results-container .no-results {
  padding: 24px 0;
}
body header .topbar__inner--search form .search__results .results-container .no-results h3 {
  color: #000;
  font-size: 1rem;
}
body header .topbar__inner--search form .search__results .results-container .top-heading {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body header .topbar__inner--search form .search__results .results-container .top-heading p {
  font-size: 0.875rem;
}
body header .topbar__inner--search form .search__results .results-container .items .item {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body header .topbar__inner--search form .search__results .results-container .items .item .item__inner {
  display: flex;
  flex-wrap: wrap;
}
body header .topbar__inner--search form .search__results .results-container .items .item .item__inner--left {
  width: 60px;
}
body header .topbar__inner--search form .search__results .results-container .items .item .item__inner--left img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1/1;
  object-fit: contain;
}
body header .topbar__inner--search form .search__results .results-container .items .item .item__inner--right {
  width: calc(100% - 60px);
  padding-left: 12px;
}
body header .topbar__inner--search form .search__results .results-container .items .item .item__inner--right p {
  font-size: 0.875rem;
  color: #888;
}
body header .topbar__inner--search form .search__results .results-container .more-items {
  padding: 12px 0;
}
body header .topbar__inner--search form .search__results .results-container .more-items a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 0.875rem;
}
body header .topbar__inner--search form .search__results .results-container .more-items a svg {
  width: 12px;
  height: auto;
  vertical-align: bottom;
  fill: #000;
  margin-left: 12px;
}
body header .topbar__inner--actions {
  display: flex;
  flex-wrap: wrap;
  order: 3;
  width: 25%;
  justify-content: flex-end;
}
@media (min-width: 1200px) {
  body header .topbar__inner--actions {
    width: 39%;
  }
}
body header .topbar__inner--actions .contact {
  padding-right: 24px;
  display: none;
}
@media (min-width: 1200px) {
  body header .topbar__inner--actions .contact {
    display: block;
  }
}
body header .topbar__inner--actions .contact .title {
  width: 100%;
}
body header .topbar__inner--actions .contact__buttons {
  display: flex;
  flex-wrap: wrap;
}
body header .topbar__inner--actions .contact__buttons--button {
  margin: 6px 8px 0 0;
}
body header .topbar__inner--actions .contact__buttons--button:last-child {
  margin-right: 0;
}
body header .topbar__inner--actions .contact__buttons--button a {
  display: flex;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #4FBFEE;
  color: #0079B8;
}
body header .topbar__inner--actions .contact__buttons--button a:hover, body header .topbar__inner--actions .contact__buttons--button a:focus {
  color: #1D1D1B;
  background-color: #4FBFEE;
}
body header .topbar__inner--actions .contact__buttons--button a:hover svg path, body header .topbar__inner--actions .contact__buttons--button a:hover svg g, body header .topbar__inner--actions .contact__buttons--button a:focus svg path, body header .topbar__inner--actions .contact__buttons--button a:focus svg g {
  fill: #1D1D1B;
}
body header .topbar__inner--actions .contact__buttons--button a svg {
  margin-right: 6px;
  height: 15px;
  width: auto;
  vertical-align: middle;
}
body header .topbar__inner--actions .contact__buttons--button a svg path, body header .topbar__inner--actions .contact__buttons--button a svg g {
  transition: 0.5s;
  fill: #0079B8;
}
body header .topbar__inner--actions .cart__button {
  cursor: pointer;
  border-radius: 4px;
  background-color: #4FBFEE;
  position: relative;
  z-index: 10;
  width: 52px;
  height: 52px;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  body header .topbar__inner--actions .cart__button {
    min-height: 64px;
    width: 156px;
    height: auto;
  }
}
body header .topbar__inner--actions .cart__button--count {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #4FBFEE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.675rem;
  background-color: #FFF;
}
body header .topbar__inner--actions .cart__button p {
  display: flex;
  align-items: center;
}
body header .topbar__inner--actions .cart__button p span {
  display: none;
}
@media (min-width: 768px) {
  body header .topbar__inner--actions .cart__button p span {
    display: inline-block;
  }
}
body header .topbar__inner--actions .cart__button p svg {
  height: 20px;
  width: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  body header .topbar__inner--actions .cart__button p svg {
    margin-left: 6px;
  }
}
body header .topbar__inner--actions .cart .cart-window {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 100000;
  width: 100%;
  padding: 16px 24px 0 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
}
@media (min-width: 768px) {
  body header .topbar__inner--actions .cart .cart-window {
    top: 102px;
    position: absolute;
    max-width: 448px;
    right: 0;
    height: auto;
    left: unset;
    padding: 16px 24px 0 24px;
    background-color: transparent;
  }
}
body header .topbar__inner--actions .cart .cart-window.open {
  opacity: 1;
  visibility: visible;
}
body header .topbar__inner--actions .cart .cart-window .shopping-cart {
  max-width: 400px;
  box-shadow: 0px 2px 12px rgba(36, 50, 66, 0.08);
  border-top-right-radius: 8px;
  background-color: #FFF;
}
@media (min-width: 768px) {
  body header .topbar__inner--actions .cart .cart-window .shopping-cart {
    border-radius: 8px;
  }
}
body header .navigation {
  display: none;
}
@media (min-width: 1200px) {
  body header .navigation {
    display: block;
  }
}
body header .navigation__inner {
  padding: 0 24px;
  position: relative;
  z-index: 100;
}
body header .navigation__inner ul {
  padding: 0;
  list-style: none;
  margin: 0;
  justify-content: space-between;
  display: none;
}
@media (min-width: 768px) {
  body header .navigation__inner ul {
    display: flex;
  }
}
body header .navigation__inner ul li > a {
  color: #1D1D1B;
  font-size: 1.125rem;
  padding: 18px 0;
  display: block;
}
body header .navigation__inner ul li > a svg {
  position: relative;
  top: -2px;
  transform: rotate(-180deg);
  transition: 0.5s;
}
body header .navigation__inner ul li:hover > a svg, body header .navigation__inner ul li:focus > a svg {
  transform: rotate(0deg);
}
body header .navigation__inner ul li:hover .sub-menu, body header .navigation__inner ul li:focus .sub-menu {
  display: block;
}
body header .navigation__inner ul li .sub-menu {
  position: absolute;
  border-top: 3px solid #4FBFEE;
  top: 100%;
  left: 0;
  background-color: #FFF;
  width: 100%;
  z-index: 100;
  display: none;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner {
  padding: 68px 24px;
  position: relative;
  z-index: 10;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 12px 0 0 0;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item:first-child {
  margin: 0;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item:hover .products, body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item:focus .products {
  display: grid;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item:hover .item-link, body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item:focus .item-link {
  padding-left: 8px;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item:hover .item-link:before, body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item:focus .item-link:before {
  opacity: 1;
  visibility: visible;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item:hover .item-link svg, body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item:focus .item-link svg {
  opacity: 1;
  visibility: visible;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item .item-link {
  width: 188px;
  position: relative;
  z-index: 10;
  transition: 0.5s;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item .item-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #4FBFEE;
  width: 3px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item .item-link a {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1D1D1B;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item .item-link svg {
  position: absolute;
  right: 24px;
  top: 5px;
  width: 12px;
  height: auto;
  vertical-align: middle;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item .products {
  width: calc(100% - 188px);
  padding-left: 24px;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 24px;
  column-gap: 24px;
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 68px;
  padding-bottom: 68px;
  display: none;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item .products .product {
  width: 100%;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item .products .product .image {
  width: 100%;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item .products .product .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  vertical-align: bottom;
}
body header .navigation__inner ul li .sub-menu .sub-menu-inner div.menu-item .products .product .name {
  margin: 12px 0 0 0;
  color: #0079B8;
}
body header .navigation__inner ul li.current_page_item a {
  border-bottom: 4px solid #4FBFEE;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10005;
  transform: translateX(-100%);
  transition: 0.5s;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu__inner {
  max-width: 400px;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: #FFF;
}
.mobile-menu__inner--top {
  border-bottom: 1px solid #1D1D1B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}
.mobile-menu__inner--top svg {
  max-width: 125px;
  width: 100%;
  vertical-align: bottom;
  height: auto;
}
.mobile-menu__inner--top .close-mobile-menu {
  cursor: pointer;
}
.mobile-menu__inner--top .close-mobile-menu svg {
  width: 24px;
  height: auto;
  vertical-align: middle;
}
.mobile-menu__inner--items {
  padding-top: 24px;
}
.mobile-menu__inner--items .sub-menu {
  display: none;
}
.mobile-menu__inner--items ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__inner--items ul li a {
  padding: 6px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1D1D1B;
}
.mobile-menu__inner--items ul li a.active svg {
  transform: rotate(-180deg);
}
.mobile-menu__inner--items ul li a svg {
  width: 12px;
  height: auto;
  vertical-align: middle;
  transition: 0.5s;
}
.mobile-menu__inner--items ul li .sub-menu {
  padding-left: 20px;
}

footer .banner {
  background-color: #0079B8;
  padding: 54px 0;
  overflow: hidden;
}
footer .banner .banner-swiper {
  overflow: hidden;
  width: 100%;
}
footer .banner .banner-swiper .swiper-wrapper {
  transition-timing-function: linear;
}
footer .banner .banner-swiper .swiper-wrapper .swiper-slide {
  height: auto;
  max-width: 440px;
}
footer .banner .banner-swiper .swiper-wrapper .swiper-slide .wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: transparent;
}
footer .banner .banner-swiper .swiper-wrapper .swiper-slide .wrapper .icon {
  width: 48px;
  height: 48px;
  background-color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  footer .banner .banner-swiper .swiper-wrapper .swiper-slide .wrapper .icon {
    width: 64px;
    height: 64px;
  }
}
footer .banner .banner-swiper .swiper-wrapper .swiper-slide .wrapper .icon svg {
  height: 18px;
  width: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  footer .banner .banner-swiper .swiper-wrapper .swiper-slide .wrapper .icon svg {
    height: 21px;
  }
}
footer .banner .banner-swiper .swiper-wrapper .swiper-slide .wrapper .text {
  padding-left: 12px;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  footer .banner .banner-swiper .swiper-wrapper .swiper-slide .wrapper .text {
    padding-left: 24px;
    width: calc(100% - 64px);
  }
}
footer .banner .banner-swiper .swiper-wrapper .swiper-slide .wrapper .text h4 {
  color: #FFF;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
footer .banner .banner-swiper .swiper-wrapper .swiper-slide .wrapper .text p {
  color: #FFF;
  margin: 3px 0 0 0;
}
footer .bottom {
  background-color: #1D1D1B;
}
footer .bottom__inner {
  padding: 64px 24px 32px 24px;
}
footer .bottom__inner--logo {
  width: 100%;
}
footer .bottom__inner--logo svg {
  max-width: 678px;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
footer .bottom__inner--columns {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 40px;
  row-gap: 40px;
}
@media (min-width: 768px) {
  footer .bottom__inner--columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  footer .bottom__inner--columns {
    grid-template-columns: repeat(4, 1fr);
  }
}
footer .bottom__inner--columns .column {
  width: 100%;
}
footer .bottom__inner--columns .column p {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 700;
}
footer .bottom__inner--columns .column ul {
  margin-top: 24px;
  list-style: none;
  padding: 0;
}
footer .bottom__inner--columns .column ul li {
  margin-top: 4px;
  color: #FFF;
  font-size: 1.125rem;
}
footer .bottom__inner--columns .column ul li:first-child {
  margin-top: 0;
}
footer .bottom__inner--columns .column ul li a {
  color: #FFF;
  text-decoration: underline;
  font-size: 1.125rem;
}
footer .bottom__inner--columns .column .actions ul {
  margin-top: 12px;
}
footer .bottom__inner--columns .column .actions ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}
footer .bottom__inner--columns .column .actions ul li .icon {
  width: 18px;
}
footer .bottom__inner--columns .column .actions ul li .icon svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
footer .bottom__inner--columns .column .actions ul li .text {
  margin-left: 12px;
}
footer .bottom__inner--columns .column .brands {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 88px;
}
footer .bottom__inner--columns .column .brands__brand {
  padding-right: 32px;
  margin-top: 12px;
}
footer .bottom__inner--columns .column .brands__brand:last-child {
  padding-right: 0;
}
footer .bottom__inner--columns .column .brands__brand svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
  max-width: 130px;
}
footer .bottom__inner--bar {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #FFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  footer .bottom__inner--bar {
    flex-wrap: nowrap;
  }
}
footer .bottom__inner--bar .left {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  footer .bottom__inner--bar .left {
    width: auto;
    flex-wrap: nowrap;
  }
}
footer .bottom__inner--bar .left .copyright {
  width: 100%;
  order: 2;
  margin-top: 12px;
}
@media (min-width: 768px) {
  footer .bottom__inner--bar .left .copyright {
    margin-top: 0;
    margin-right: 64px;
    order: 1;
    width: auto;
  }
}
footer .bottom__inner--bar .left .copyright p {
  color: #FFF;
}
footer .bottom__inner--bar .left .documents {
  width: 100%;
  order: 1;
}
@media (min-width: 768px) {
  footer .bottom__inner--bar .left .documents {
    width: auto;
    order: 2;
  }
}
footer .bottom__inner--bar .left ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
footer .bottom__inner--bar .left ul li {
  margin-right: 24px;
}
footer .bottom__inner--bar .left ul li:last-child {
  margin-right: 0;
}
footer .bottom__inner--bar .left ul li a {
  color: #FFF;
  font-size: 0.875rem;
  text-decoration: underline;
}
footer .bottom__inner--bar .right {
  width: 100%;
  margin-top: 12px;
}
@media (min-width: 768px) {
  footer .bottom__inner--bar .right {
    width: auto;
    margin-top: 0;
    text-align: right;
  }
}
footer .bottom__inner--bar .right p {
  color: #FFF;
  font-size: 0.875rem;
}
footer .bottom__inner--bar .right p a {
  color: #FFF;
  text-decoration: underline;
}

body.page-template-home .hero {
  width: 100%;
}
body.page-template-home .hero__image {
  width: 100%;
}
body.page-template-home .hero__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1440/604;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
@media (min-width: 768px) {
  body.page-template-home .hero__image img {
    border-radius: 48px 48px 8px 8px;
  }
}
body.page-template-home .hero__content {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-home .hero__content {
    margin-top: -148px;
  }
}
body.page-template-home .hero__content .container {
  padding: 0;
}
@media (min-width: 768px) {
  body.page-template-home .hero__content .container {
    padding: 0 24px;
  }
}
body.page-template-home .hero__content--inner {
  background: #1D1D1B;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-home .hero__content--inner {
    padding: 56px;
    border-radius: 48px 48px 8px 8px;
  }
}
body.page-template-home .hero__content--inner .left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .hero__content--inner .left {
    width: 65%;
  }
}
body.page-template-home .hero__content--inner .left h1 {
  color: #FFF;
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.page-template-home .hero__content--inner .left p {
  margin: 12px 0 0 0;
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
  color: #FFF;
}
body.page-template-home .hero__content--inner .left .buttons {
  margin-top: 24px;
  flex-wrap: wrap;
  display: flex;
}
body.page-template-home .hero__content--inner .left .buttons .button {
  margin-top: 12px;
  margin-right: 12px;
}
body.page-template-home .hero__content--inner .left .buttons .button:last-child {
  margin-right: 0;
}
body.page-template-home .hero__content--inner .right {
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-home .hero__content--inner .right {
    margin-top: 0;
    width: 35%;
    padding-left: 48px;
  }
}
body.page-template-home .hero__content--inner .right .item {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .hero__content--inner .right .item:first-child {
  margin-top: 0;
}
body.page-template-home .hero__content--inner .right .item p {
  color: #FFF;
}
body.page-template-home .hero__content--inner .right .item .icon {
  width: 22px;
}
body.page-template-home .hero__content--inner .right .item .text {
  width: calc(100% - 22px);
  padding-left: 8px;
}
@media (min-width: 768px) {
  body.page-template-home .why-us {
    margin: 128px 0 0 0;
  }
}
body.page-template-home .why-us__inner {
  padding: 0;
}
@media (min-width: 768px) {
  body.page-template-home .why-us__inner {
    padding: 0 24px;
  }
}
body.page-template-home .why-us__inner--content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
}
body.page-template-home .why-us__inner--content .left {
  width: 100%;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-home .why-us__inner--content .left {
    width: 50%;
  }
}
body.page-template-home .why-us__inner--content .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  body.page-template-home .why-us__inner--content .left img {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 8px 0 0 8px;
  }
}
body.page-template-home .why-us__inner--content .right {
  background: #BDE8FF;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  body.page-template-home .why-us__inner--content .right {
    width: 50%;
    border-radius: 0 8px 8px 0;
  }
}
body.page-template-home .why-us__inner--content .right .inner {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px;
}
body.page-template-home .why-us__inner--content .right .inner h2 {
  font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
  line-height: 1.2;
}
body.page-template-home .why-us__inner--content .right .inner p {
  margin: 12px 0 0 0;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
  line-height: 1.4;
}
body.page-template-home .why-us__inner--content .right .inner .items {
  margin-top: 48px;
}
body.page-template-home .why-us__inner--content .right .inner .items .item {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-home .why-us__inner--content .right .inner .items .item__text {
  width: calc(100% - 32px);
  padding-left: 16px;
  display: flex;
  align-items: center;
}
body.page-template-home .why-us__inner--content .right .inner .items .item__text p {
  margin: 0;
  font-size: 1rem;
}
body.page-template-home .why-us__inner--content .right .inner .items .item__text p strong {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.page-template-home .why-us__inner--content .right .inner .items .item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0079B8;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-home .why-us__inner--content .right .inner .items .item__icon svg {
  height: 11px;
  width: auto;
  vertical-align: middle;
}
body.page-template-home .why-us__inner--content .right .inner .items .item__icon svg path, body.page-template-home .why-us__inner--content .right .inner .items .item__icon svg g {
  fill: #FFF;
}
body.page-template-home .categories {
  margin: 128px 0 0 0;
  display: none;
}
@media (min-width: 768px) {
  body.page-template-home .categories {
    display: block;
  }
}
body.page-template-home .categories__inner .items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 64px;
  column-gap: 32px;
  width: 100%;
}
body.page-template-home .categories__inner .items .item {
  grid-column: span 4;
}
body.page-template-home .categories__inner .items .item:nth-child(n+4) {
  grid-column: span 3;
}
body.page-template-home .categories__inner .items .item:nth-child(n+4) .item__info h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  body.page-template-home .categories__inner .items .item:nth-child(n+4) .item__info h3 {
    font-size: 1.125rem;
  }
}
body.page-template-home .categories__inner .items .item:nth-child(n+4) .item__info p {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  body.page-template-home .categories__inner .items .item:nth-child(n+4) .item__info p {
    font-size: 1rem;
  }
}
body.page-template-home .categories__inner .items .item__image {
  position: relative;
  z-index: 10;
}
body.page-template-home .categories__inner .items .item__image:hover .arrow-btn svg, body.page-template-home .categories__inner .items .item__image:focus .arrow-btn svg {
  transform: translate(6px, -6px);
}
body.page-template-home .categories__inner .items .item__image img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
  border-radius: 4px;
}
body.page-template-home .categories__inner .items .item__image .arrow-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: #4FBFEE;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-home .categories__inner .items .item__image .arrow-btn svg {
  width: 10px;
  height: auto;
  transition: 0.5s;
  vertical-align: middle;
}
body.page-template-home .categories__inner .items .item__info {
  margin-top: 24px;
}
body.page-template-home .categories__inner .items .item__info h3, body.page-template-home .categories__inner .items .item__info p {
  color: #1D1D1B;
}
body.page-template-home .categories__inner .items .item__info h3 {
  font-size: 1.5rem;
}
body.page-template-home .categories__inner .items .item__info p {
  font-size: 1.125rem;
}
body.page-template-home .popular {
  margin: 64px 0 0 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  body.page-template-home .popular {
    margin: 128px 0 0 0;
  }
}
body.page-template-home .popular__inner .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-home .popular__inner .top {
    flex-wrap: nowrap;
  }
}
body.page-template-home .popular__inner .top__left h2 {
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.page-template-home .popular__inner .top__right {
  margin-top: 12px;
}
@media (min-width: 768px) {
  body.page-template-home .popular__inner .top__right {
    margin-top: 0;
  }
}
body.page-template-home .popular__inner .top__right .button {
  display: inline-block;
}
body.page-template-home .popular__inner .top__right .button a {
  background: transparent;
}
body.page-template-home .popular__inner .top__left, body.page-template-home .popular__inner .top__right {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .popular__inner .top__left, body.page-template-home .popular__inner .top__right {
    width: auto;
  }
}
body.page-template-home .popular__inner .products-swiper {
  width: 100%;
  margin-top: 48px;
  position: relative;
  z-index: 10;
  clip-path: inset(-100vw -100vw -100vw 0);
}
body.page-template-home .popular__inner .products-swiper .swiper-wrapper .swiper-slide {
  height: auto;
  width: 100%;
  max-width: 298px;
}
body.page-template-home .popular__inner .swiper-controls {
  margin-top: 32px;
  display: flex;
}
body.page-template-home .popular__inner .swiper-controls .swiper-next, body.page-template-home .popular__inner .swiper-controls .swiper-prev {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid #4FBFEE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}
body.page-template-home .popular__inner .swiper-controls .swiper-next:hover, body.page-template-home .popular__inner .swiper-controls .swiper-next:focus, body.page-template-home .popular__inner .swiper-controls .swiper-prev:hover, body.page-template-home .popular__inner .swiper-controls .swiper-prev:focus {
  background: #4FBFEE;
}
body.page-template-home .popular__inner .swiper-controls .swiper-next svg, body.page-template-home .popular__inner .swiper-controls .swiper-prev svg {
  width: 12px;
  height: auto;
}
body.page-template-home .popular__inner .swiper-controls .swiper-prev {
  margin-right: 12px;
}
body.page-template-home .popular__inner .swiper-controls .swiper-prev svg {
  transform: rotate(180deg);
}

body.woocommerce-shop .woocommerce-wrapper__inner, body.tax-product_cat .woocommerce-wrapper__inner {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 12px 96px 12px;
}
body.woocommerce-shop .woocommerce-wrapper__inner .top, body.tax-product_cat .woocommerce-wrapper__inner .top {
  width: 100%;
  padding: 0 12px 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .top, body.tax-product_cat .woocommerce-wrapper__inner .top {
    flex-wrap: nowrap;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .top__left, body.woocommerce-shop .woocommerce-wrapper__inner .top__right, body.tax-product_cat .woocommerce-wrapper__inner .top__left, body.tax-product_cat .woocommerce-wrapper__inner .top__right {
  width: 100%;
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .top__left, body.woocommerce-shop .woocommerce-wrapper__inner .top__right, body.tax-product_cat .woocommerce-wrapper__inner .top__left, body.tax-product_cat .woocommerce-wrapper__inner .top__right {
    width: auto;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .top h1, body.tax-product_cat .woocommerce-wrapper__inner .top h1 {
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.woocommerce-shop .woocommerce-wrapper__inner .top .facetwp-facet, body.tax-product_cat .woocommerce-wrapper__inner .top .facetwp-facet {
  margin: 0;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar, body.tax-product_cat .woocommerce-wrapper__inner .sidebar {
  display: none;
}
@media (min-width: 1024px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .sidebar, body.tax-product_cat .woocommerce-wrapper__inner .sidebar {
    display: block;
    width: 225px;
    padding-left: 12px;
  }
}
@media (min-width: 1200px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .sidebar, body.tax-product_cat .woocommerce-wrapper__inner .sidebar {
    width: 330px;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group {
  margin-top: 24px;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group h4, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group h4 {
  font-weight: 700;
  font-size: 1.125rem;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group .facetwp-facet, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group .facetwp-facet {
  margin-bottom: 0;
  margin-top: 24px;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox {
  background: none;
  padding-left: 30px;
  position: relative;
  z-index: 10;
  padding-top: 4px;
  margin-bottom: 15px;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox.checked:before, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox.checked:before {
  background-color: #0079B8;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox:before, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid #0079B8;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content, body.tax-product_cat .woocommerce-wrapper__inner .content {
  width: 100%;
}
@media (min-width: 1024px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content, body.tax-product_cat .woocommerce-wrapper__inner .content {
    padding-left: 32px;
    width: calc(100% - 225px);
  }
}
@media (min-width: 1200px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content, body.tax-product_cat .woocommerce-wrapper__inner .content {
    width: calc(100% - 330px);
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .product, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .product {
  border: 1px solid #4FBFEE;
  border-radius: 8px;
  margin: 24px 12px 0 12px;
  width: calc(100% - 24px);
}
@media (min-width: 420px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .product, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .product {
    width: calc(50% - 24px);
  }
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .product, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .product {
    width: calc(33.3333% - 24px);
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .product a, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .product a {
  display: block;
  height: 100%;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .product .thumbnail-wrapper, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .product .thumbnail-wrapper {
  position: unset;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .product .thumbnail-wrapper img, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .product .thumbnail-wrapper img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .product .info-wrapper, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .product .info-wrapper {
  margin: 0;
  padding: 16px 24px 64px 24px;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps {
  width: calc(100% - 24px);
  margin: 24px 12px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps:before, body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps:after, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps:before, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps:after {
  content: "";
  position: relative;
  width: 100%;
  height: 1px;
  background: #4FBFEE;
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps:before, body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps:after, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps:before, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps:after {
    width: calc(50% - 376px);
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider {
  max-width: 720px;
  width: 100%;
  overflow: hidden;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  padding: 12px 0;
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide {
    width: auto;
    padding: 0;
    justify-content: flex-start;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide:after, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide:after {
  content: "";
  position: relative;
  width: 8px;
  height: 1px;
  background: #4FBFEE;
  margin-left: 16px;
  display: none;
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide:after, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide:after {
    display: block;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide:last-child, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide:last-child {
  margin-right: 0 !important;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide:last-child:after, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide:last-child:after {
  display: none;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide svg, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide svg {
  margin-right: 8px;
  width: 22px;
  height: auto;
  vertical-align: middle;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide p, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .usps .usps-slider .swiper-wrapper .swiper-slide p {
  font-size: 0.875rem;
  line-height: 1;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .load-more, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .load-more {
  margin-top: 48px;
  text-align: center;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .load-more .facetwp-facet, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .load-more .facetwp-facet {
  margin: 0;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .load-more button, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .load-more button {
  font-size: 1.125rem;
  padding: 18px 24px 16px 24px;
  border-radius: 4px;
  color: #1D1D1B;
  background: #4FBFEE;
  cursor: pointer;
  border: none;
}

body.woocommerce-order-received .wrapper__inner--cart {
  display: none !important;
}
body.woocommerce-order-received .wrapper__inner--content {
  width: 100% !important;
}

body.woocommerce-checkout .breadcrumbs {
  margin-top: 0;
  padding-top: 24px;
}
body.woocommerce-checkout .wrapper, body.woocommerce-checkout .breadcrumbs {
  background: #F6F7F9;
}
body.woocommerce-checkout .wrapper__inner {
  padding: 16px 24px 64px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
body.woocommerce-checkout .wrapper__inner--content {
  background: #FFF;
  box-shadow: 0px 2px 12px rgba(36, 50, 66, 0.08);
  width: 100%;
  padding: 24px;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .wrapper__inner--content {
    width: calc(50% - 16px);
    border-radius: 8px;
    padding: 48px;
  }
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .wrapper__inner--content {
    width: calc(60% - 16px);
  }
}
@media (min-width: 1200px) {
  body.woocommerce-checkout .wrapper__inner--content {
    width: calc(67% - 16px);
  }
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .steps {
  display: flex;
  margin: 0 0 32px 0;
  max-width: 575px;
  width: 100%;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .steps::-webkit-scrollbar {
  display: none;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .steps__step {
  min-width: 79px;
  margin-right: 64px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .steps__step:after {
  content: "";
  position: absolute;
  width: 124px;
  right: -84px;
  height: 1px;
  background: #4FBFEE;
  z-index: -1;
  top: 22px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .steps__step:last-child {
  padding-right: 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .steps__step:last-child:after {
  display: none;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .steps__step.active .circle {
  background: #BDE8FF;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .steps__step .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #4FBFEE;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .steps__step p {
  font-weight: 700;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
  margin: 6px 0 0 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form h2 {
  font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 24px 0 0 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .forms {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .forms .woocommerce-input-wrapper {
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .forms .woocommerce-input-wrapper label.radio {
  width: calc(100% - 13px);
  padding-left: 8px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .second-page .forms .form-row {
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .third-page #payment {
  background: transparent;
  border-radius: 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .third-page #payment .wc_payment_methods {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  padding: 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .third-page #payment .place-order {
  width: 100%;
  padding: 0;
  margin: 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .third-page #payment .place-order .woocommerce-terms-and-conditions-wrapper {
  display: none;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .third-page #payment .place-order button {
  background: #4FBFEE;
  border-radius: 4px;
  color: #1D1D1B;
  font-weight: 400;
  height: 56px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .form-row {
  padding: 0;
  margin: 24px 0 0 0;
  width: 100%;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .wrapper__inner--content .woocommerce form .form-row {
    width: 47%;
  }
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .form-row .required {
  color: #1D1D1B;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form input[type=text], body.woocommerce-checkout .wrapper__inner--content .woocommerce form input[type=email], body.woocommerce-checkout .wrapper__inner--content .woocommerce form input[type=tel] {
  height: 48px;
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .col2-set .col-1 {
  width: 100%;
  float: none;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .col2-set .col-1 #billing_phone_field {
  float: left;
  clear: none;
  overflow: visible;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .col2-set .col-1 #billing_email_field {
  float: right;
  clear: none;
  overflow: visible;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .col2-set .col-1 .woocommerce-billing-fields h3 {
  display: none;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review {
  margin: 24px 0 0 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review .product-row {
  margin: 12px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review .product-row__name {
  width: 75%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review .product-row__name a {
  color: #0079B8;
  font-size: 1rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review .product-row__name span {
  font-size: 0.875rem;
  color: #647382;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review .product-row__quantity {
  width: 25%;
  text-align: right;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review .product-row__quantity strong {
  font-weight: 400;
  font-size: 0.875rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review .seperator {
  margin: 12px 0 0 0;
  width: 100%;
  height: 1px;
  background: #E7E7E7;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review .save {
  margin: 12px 0 0 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form #order_review .save p {
  font-size: 0.75rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .second-page .form-row {
  padding: 0;
  margin: 24px 0 0 0;
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .second-page .form-row .required {
  color: #1D1D1B;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .second-page .form-row#distance_address_field {
  margin: 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .second-page input {
  height: 48px;
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons__prev, body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons__next {
  display: inline-block;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons__prev span, body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons__next span {
  display: flex;
  align-items: center;
  height: 56px;
  cursor: pointer;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons__prev span.disabled, body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons__next span.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons__prev span {
  border-bottom: 2px solid #4FBFEE;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons__prev span svg {
  margin-right: 12px;
  width: 12px;
  height: auto;
  vertical-align: middle;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons__next span {
  padding: 24px;
  background: #4FBFEE;
  border-radius: 4px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce form .buttons__next span svg {
  margin-left: 12px;
  width: 12px;
  height: auto;
  vertical-align: middle;
}
body.woocommerce-checkout .wrapper__inner--cart {
  width: calc(50% - 16px);
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0px 2px 12px rgba(36, 50, 66, 0.08);
  margin-left: 32px;
  display: none;
  padding: 40px;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .wrapper__inner--cart {
    display: block;
  }
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .wrapper__inner--cart {
    width: calc(40% - 16px);
  }
}
@media (min-width: 1200px) {
  body.woocommerce-checkout .wrapper__inner--cart {
    width: calc(33% - 16px);
  }
}
body.woocommerce-checkout .wrapper__inner--cart .shopping-cart {
  padding: 0;
}
body.woocommerce-checkout .wrapper__inner--cart .shopping-cart .buttons {
  display: none;
}

body.page-template-transport .hero__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1440/331;
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
}
body.page-template-transport .content {
  margin: 32px 0 48px 0;
}
@media (min-width: 768px) {
  body.page-template-transport .content {
    margin: 32px 0 80px 0;
  }
}
body.page-template-transport .content__inner .breadcrumbs {
  margin: 0;
}
body.page-template-transport .content__inner .breadcrumbs a {
  color: #1D1D1B;
}
body.page-template-transport .content__inner h1 {
  margin: 24px 0 0 0;
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.page-template-transport .content__inner h2 {
  font-size: clamp(1.5rem, 0.9286rem + 1.1905vw, 2rem);
  margin: 32px 0 0 0;
}
body.page-template-transport .content__inner h3 {
  margin: 24px 0 0 0;
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
}
body.page-template-transport .content__inner p, body.page-template-transport .content__inner ul, body.page-template-transport .content__inner ol {
  margin: 12px 0 0 0;
}
body.page-template-transport .content__inner p a, body.page-template-transport .content__inner ul a, body.page-template-transport .content__inner ol a {
  color: #0079B8;
}
body.page-template-transport .row {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-transport .row {
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) {
  body.page-template-transport .row:nth-child(even) .row__left {
    order: 2;
  }
}
body.page-template-transport .row:nth-child(even) .row__left img {
  border-radius: 8px 32px 32px 8px;
}
@media (min-width: 768px) {
  body.page-template-transport .row:nth-child(even) .row__right {
    order: 1;
  }
}
body.page-template-transport .row__left, body.page-template-transport .row__right {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-transport .row__left, body.page-template-transport .row__right {
    width: 50%;
  }
}
body.page-template-transport .row__left img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  aspect-ratio: 518/462;
  object-fit: cover;
  border-radius: 32px 8px 8px 32px;
}
body.page-template-transport .row__right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0 0 0;
}
@media (min-width: 768px) {
  body.page-template-transport .row__right {
    padding: 32px;
  }
}
body.page-template-transport .row__right .inner {
  max-width: 438px;
  width: 100%;
}
body.page-template-transport .row__right .inner h1, body.page-template-transport .row__right .inner h2, body.page-template-transport .row__right .inner h3, body.page-template-transport .row__right .inner h4 {
  font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
}
body.page-template-transport .row__right .inner p {
  margin: 24px 0 0 0;
}
body.page-template-transport .events {
  margin-top: 0;
}
body.page-template-transport .transport {
  margin-top: 0;
}

body.page-template-about .hero {
  width: 100%;
}
body.page-template-about .hero__image {
  width: 100%;
}
body.page-template-about .hero__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1440/302;
  object-fit: cover;
  min-height: 200px;
  border-radius: 12px 12px 0 0;
}
@media (min-width: 768px) {
  body.page-template-about .hero__image img {
    border-radius: 48px 48px 8px 8px;
  }
}
body.page-template-about .hero__content {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-about .hero__content {
    margin-top: -148px;
  }
}
body.page-template-about .hero__content .container {
  padding: 0;
}
@media (min-width: 768px) {
  body.page-template-about .hero__content .container {
    padding: 0 24px;
  }
}
body.page-template-about .hero__content--inner {
  background: #1D1D1B;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-about .hero__content--inner {
    padding: 56px;
    border-radius: 48px 48px 8px 8px;
  }
}
body.page-template-about .hero__content--inner .left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-about .hero__content--inner .left {
    width: 65%;
  }
}
body.page-template-about .hero__content--inner .left h1 {
  color: #FFF;
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.page-template-about .hero__content--inner .left p {
  margin: 12px 0 0 0;
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
  color: #FFF;
}
body.page-template-about .hero__content--inner .left .buttons {
  margin-top: 24px;
  flex-wrap: wrap;
  display: flex;
}
body.page-template-about .hero__content--inner .left .buttons .button {
  margin-top: 12px;
  margin-right: 12px;
}
body.page-template-about .hero__content--inner .left .buttons .button:last-child {
  margin-right: 0;
}
body.page-template-about .hero__content--inner .right {
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-about .hero__content--inner .right {
    margin-top: 0;
    width: 35%;
    padding-left: 48px;
  }
}
body.page-template-about .hero__content--inner .right .item {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-about .hero__content--inner .right .item:first-child {
  margin-top: 0;
}
body.page-template-about .hero__content--inner .right .item p {
  color: #FFF;
}
body.page-template-about .hero__content--inner .right .item .icon {
  width: 22px;
}
body.page-template-about .hero__content--inner .right .item .text {
  width: calc(100% - 22px);
  padding-left: 8px;
}
body.page-template-about .why-us {
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.page-template-about .why-us {
    margin: 128px 0 0 0;
  }
}
body.page-template-about .why-us__inner {
  padding: 0;
}
@media (min-width: 768px) {
  body.page-template-about .why-us__inner {
    padding: 0 24px;
  }
}
body.page-template-about .why-us__inner--content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
}
body.page-template-about .why-us__inner--content .left {
  width: 100%;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-about .why-us__inner--content .left {
    width: 50%;
  }
}
body.page-template-about .why-us__inner--content .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
@media (min-width: 768px) {
  body.page-template-about .why-us__inner--content .left img {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 8px 0 0 8px;
  }
}
body.page-template-about .why-us__inner--content .right {
  background: #BDE8FF;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  body.page-template-about .why-us__inner--content .right {
    width: 50%;
    border-radius: 0 8px 8px 0;
  }
}
body.page-template-about .why-us__inner--content .right .inner {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 24px;
}
body.page-template-about .why-us__inner--content .right .inner h2 {
  font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
  line-height: 1.2;
}
body.page-template-about .why-us__inner--content .right .inner p {
  margin: 12px 0 0 0;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
  line-height: 1.4;
}
body.page-template-about .why-us__inner--content .right .inner .items {
  margin-top: 48px;
}
body.page-template-about .why-us__inner--content .right .inner .items .item {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-about .why-us__inner--content .right .inner .items .item__text {
  width: calc(100% - 32px);
  padding-left: 16px;
  display: flex;
  align-items: center;
}
body.page-template-about .why-us__inner--content .right .inner .items .item__text p {
  margin: 0;
  font-size: 1rem;
}
body.page-template-about .why-us__inner--content .right .inner .items .item__text p strong {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.page-template-about .why-us__inner--content .right .inner .items .item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0079B8;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-about .why-us__inner--content .right .inner .items .item__icon svg {
  height: 11px;
  width: auto;
  vertical-align: middle;
}
body.page-template-about .why-us__inner--content .right .inner .items .item__icon svg path, body.page-template-about .why-us__inner--content .right .inner .items .item__icon svg g {
  fill: #FFF;
}
@media (min-width: 768px) {
  body.page-template-about .content {
    margin: 128px 0 0 0;
  }
}
body.page-template-about .content__inner h1, body.page-template-about .content__inner h2, body.page-template-about .content__inner h3, body.page-template-about .content__inner h4, body.page-template-about .content__inner h5, body.page-template-about .content__inner p, body.page-template-about .content__inner ul, body.page-template-about .content__inner ol {
  margin: 24px 0 0 0;
}
@media (min-width: 768px) {
  body.page-template-about .content__inner p {
    font-size: 1.125rem;
  }
}
body.page-template-about .content__inner p a {
  color: #0079B8;
}
@media (min-width: 768px) {
  body.page-template-about .content__inner li {
    font-size: 1.125rem;
  }
}
body.page-template-about .events {
  margin-top: 0;
}

body.single-post .hero {
  width: 100%;
}
body.single-post .hero__image {
  width: 100%;
}
body.single-post .hero__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1440/302;
  object-fit: cover;
  min-height: 200px;
  border-radius: 12px 12px 0 0;
}
@media (min-width: 768px) {
  body.single-post .hero__image img {
    border-radius: 48px 48px 8px 8px;
  }
}
body.single-post .hero__content {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.single-post .hero__content {
    margin-top: -148px;
  }
}
body.single-post .hero__content .container {
  padding: 0;
}
@media (min-width: 768px) {
  body.single-post .hero__content .container {
    padding: 0 24px;
  }
}
body.single-post .hero__content--inner {
  background: #1D1D1B;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.single-post .hero__content--inner {
    padding: 56px;
    border-radius: 48px 48px 8px 8px;
  }
}
body.single-post .hero__content--inner .left {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-post .hero__content--inner .left {
    width: 65%;
  }
}
body.single-post .hero__content--inner .left span {
  color: #FFF;
}
body.single-post .hero__content--inner .left h1 {
  color: #FFF;
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.single-post .hero__content--inner .left p {
  margin: 12px 0 0 0;
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
  color: #FFF;
}
body.single-post .hero__content--inner .left .buttons {
  margin-top: 24px;
  flex-wrap: wrap;
  display: flex;
}
body.single-post .hero__content--inner .left .buttons .button {
  margin-top: 12px;
  margin-right: 12px;
}
body.single-post .hero__content--inner .left .buttons .button:last-child {
  margin-right: 0;
}
body.single-post .hero__content--inner .right {
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.single-post .hero__content--inner .right {
    margin-top: 0;
    width: 35%;
    padding-left: 48px;
  }
}
body.single-post .hero__content--inner .right .item {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.single-post .hero__content--inner .right .item:first-child {
  margin-top: 0;
}
body.single-post .hero__content--inner .right .item p {
  color: #FFF;
}
body.single-post .hero__content--inner .right .item .icon {
  width: 22px;
}
body.single-post .hero__content--inner .right .item .text {
  width: calc(100% - 22px);
  padding-left: 8px;
}
body.single-post .content {
  margin: 24px 0 0 0;
}
@media (min-width: 768px) {
  body.single-post .content {
    margin: 64px 0 0 0;
  }
}
body.single-post .content h1, body.single-post .content h2, body.single-post .content h3, body.single-post .content h4, body.single-post .content h5, body.single-post .content p, body.single-post .content ul, body.single-post .content ol, body.single-post .content img {
  margin: 24px 0 0 0;
}
body.single-post .content p, body.single-post .content li {
  line-height: 1.5;
}
@media (min-width: 768px) {
  body.single-post .content p, body.single-post .content li {
    font-size: 1.125rem;
  }
}
body.single-post .content img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  width: 100%;
}
body.single-post .content a {
  color: #0079B8;
}
body.single-post .popular {
  margin: 24px 0 0 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  body.single-post .popular {
    margin: 64px 0 0 0;
  }
}
body.single-post .popular__inner .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.single-post .popular__inner .top {
    flex-wrap: nowrap;
  }
}
body.single-post .popular__inner .top__left h2 {
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.single-post .popular__inner .top__right {
  margin-top: 12px;
}
@media (min-width: 768px) {
  body.single-post .popular__inner .top__right {
    margin-top: 0;
  }
}
body.single-post .popular__inner .top__right .button {
  display: inline-block;
}
body.single-post .popular__inner .top__right .button a {
  background: transparent;
}
body.single-post .popular__inner .top__left, body.single-post .popular__inner .top__right {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-post .popular__inner .top__left, body.single-post .popular__inner .top__right {
    width: auto;
  }
}
body.single-post .popular__inner .products-swiper {
  width: 100%;
  margin-top: 48px;
  position: relative;
  z-index: 10;
  clip-path: inset(-100vw -100vw -100vw 0);
}
body.single-post .popular__inner .products-swiper .swiper-wrapper .swiper-slide {
  height: auto;
  width: 100%;
  max-width: 298px;
}
body.single-post .popular__inner .swiper-controls {
  margin-top: 32px;
  display: flex;
}
body.single-post .popular__inner .swiper-controls .swiper-next, body.single-post .popular__inner .swiper-controls .swiper-prev {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid #4FBFEE;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}
body.single-post .popular__inner .swiper-controls .swiper-next:hover, body.single-post .popular__inner .swiper-controls .swiper-next:focus, body.single-post .popular__inner .swiper-controls .swiper-prev:hover, body.single-post .popular__inner .swiper-controls .swiper-prev:focus {
  background: #4FBFEE;
}
body.single-post .popular__inner .swiper-controls .swiper-next svg, body.single-post .popular__inner .swiper-controls .swiper-prev svg {
  width: 12px;
  height: auto;
}
body.single-post .popular__inner .swiper-controls .swiper-prev {
  margin-right: 12px;
}
body.single-post .popular__inner .swiper-controls .swiper-prev svg {
  transform: rotate(180deg);
}
body.single-post .banner {
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.single-post .banner {
    margin-top: 64px;
  }
}

body.page-template-events .hero {
  width: 100%;
}
body.page-template-events .hero__image {
  width: 100%;
}
body.page-template-events .hero__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1440/302;
  object-fit: cover;
  min-height: 200px;
  border-radius: 12px 12px 0 0;
}
@media (min-width: 768px) {
  body.page-template-events .hero__image img {
    border-radius: 48px 48px 8px 8px;
  }
}
body.page-template-events .hero__content {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-events .hero__content {
    margin-top: -148px;
  }
}
body.page-template-events .hero__content .container {
  padding: 0;
}
@media (min-width: 768px) {
  body.page-template-events .hero__content .container {
    padding: 0 24px;
  }
}
body.page-template-events .hero__content--inner {
  background: #1D1D1B;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-events .hero__content--inner {
    padding: 56px;
    border-radius: 48px 48px 8px 8px;
  }
}
body.page-template-events .hero__content--inner .left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-events .hero__content--inner .left {
    width: 65%;
  }
}
body.page-template-events .hero__content--inner .left span {
  color: #FFF;
}
body.page-template-events .hero__content--inner .left h1 {
  color: #FFF;
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.page-template-events .hero__content--inner .left p {
  margin: 12px 0 0 0;
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
  color: #FFF;
}
body.page-template-events .hero__content--inner .left .buttons {
  margin-top: 24px;
  flex-wrap: wrap;
  display: flex;
}
body.page-template-events .hero__content--inner .left .buttons .button {
  margin-top: 12px;
  margin-right: 12px;
}
body.page-template-events .hero__content--inner .left .buttons .button:last-child {
  margin-right: 0;
}
body.page-template-events .hero__content--inner .right {
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-events .hero__content--inner .right {
    margin-top: 0;
    width: 35%;
    padding-left: 48px;
  }
}
body.page-template-events .hero__content--inner .right .item {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-events .hero__content--inner .right .item:first-child {
  margin-top: 0;
}
body.page-template-events .hero__content--inner .right .item p {
  color: #FFF;
}
body.page-template-events .hero__content--inner .right .item .icon {
  width: 22px;
}
body.page-template-events .hero__content--inner .right .item .text {
  width: calc(100% - 22px);
  padding-left: 8px;
}
body.page-template-events .items {
  margin: 24px 0 0 0;
}
@media (min-width: 768px) {
  body.page-template-events .items {
    margin: 64px 0 0 0;
  }
}
body.page-template-events .items__inner {
  display: grid;
  row-gap: 24px;
  column-gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 410px) {
  body.page-template-events .items__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  body.page-template-events .items__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
body.page-template-events .items__inner--item {
  width: 100%;
}
body.page-template-events .items__inner--item .image {
  width: 100%;
  position: relative;
  z-index: 10;
}
body.page-template-events .items__inner--item .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 408/306;
  border-radius: 8px;
  object-fit: cover;
  vertical-align: bottom;
}
body.page-template-events .items__inner--item .image .arrow-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: #4FBFEE;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-events .items__inner--item .image .arrow-btn svg {
  width: 10px;
  height: auto;
  transition: 0.5s;
  vertical-align: middle;
}
body.page-template-events .items__inner--item .info {
  margin-top: 6px;
}
body.page-template-events .items__inner--item .info h3 {
  font-size: 1.5rem;
}
body.page-template-events .items__inner--item .info p {
  margin: 6px 0 0 0;
}
body.page-template-events .banner {
  margin: 24px 0 0 0;
}
@media (min-width: 768px) {
  body.page-template-events .banner {
    margin: 64px 0 0 0;
  }
}

body.woocommerce-order-received .wrapper__inner {
  padding: 0;
}
body.woocommerce-order-received .wrapper__inner--content {
  padding: 0;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .hero img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1440/331;
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order {
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right {
    width: 50%;
  }
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner {
  max-width: 608px;
  margin: 0 auto;
  padding: 80px 24px;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner h2, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner h2 {
  font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner h3, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner h3 {
  font-size: 1.5rem;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner span {
  color: #647382;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner p {
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
  margin: 24px 0 0 0;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .items {
  margin-top: 48px;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .items__content--item {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
  align-items: center;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .items__content--item p {
  margin: 0;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .items__content--item .right {
  width: 100%;
  text-align: right;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .items__content--item .left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 75%;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .items__content--item .left .image {
  width: 85px;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .items__content--item .left .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 85/64;
  object-fit: cover;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .items__content--item .left .content {
  padding-left: 24px;
  width: calc(100% - 85px);
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .items__content--item .left .content .title a {
  color: #0079B8;
  font-size: 1rem;
  font-weight: 400;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .items__content--item .left .content .title span {
  display: block;
  color: #647382;
  font-weight: 400;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot {
  margin-top: 64px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__left {
  width: 100%;
}
@media (min-width: 768px) {
  body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__left {
    width: calc(100% - 216px);
  }
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__left p {
  font-size: 0.775rem;
  margin: 0;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__right {
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__right {
    margin-top: 0;
  }
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__right .button-wrapper a {
  background: #4FBFEE;
  display: flex;
  align-items: center;
  width: 216px;
  padding: 22px 24px;
  border-radius: 4px;
  color: #1D1D1B;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__right .button-wrapper a:hover svg, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__right .button-wrapper a:focus svg {
  transform: translateX(8px);
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__right .button-wrapper a svg {
  width: 10px;
  height: auto;
  vertical-align: middle;
  margin-left: 8px;
  transition: 0.8s;
  margin-top: -3px;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__right .button-wrapper a svg path, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .forgot__right .button-wrapper a svg g {
  fill: #1D1D1B;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__left .inner .top {
  padding-bottom: 48px;
  border-bottom: 1px solid #0079B8;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right {
  background: #0079B8;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner h2, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner h3, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner p, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner a, body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner li {
  color: #FFF;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner a {
  text-decoration: underline;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner .contact {
  margin-top: 64px;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner .contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner .items {
  margin-top: 64px;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner .items__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner .items__item:first-child {
  margin-top: 0;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner .items__item .icon {
  width: 32px;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner .items__item .icon svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner .items__item .text {
  width: calc(100% - 32px);
  padding-left: 12px;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .woocommerce-order__right .inner .items__item .text p {
  line-height: 1.4;
}
body.woocommerce-order-received .wrapper__inner--content .woocommerce .transport, body.woocommerce-order-received .wrapper__inner--content .woocommerce .events {
  margin-top: 0;
}
body.woocommerce-order-received .wrapper__inner--cart {
  display: none !important;
}

body.page-template-contact .hero__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1440/331;
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
}
body.page-template-contact .content {
  background: #F6F7F9;
  padding: 24px 0 64px 0;
}
body.page-template-contact .content .breadcrumbs {
  margin-top: 0;
}
body.page-template-contact .content a {
  color: #0079B8;
  text-decoration: underline;
}
body.page-template-contact .content ul, body.page-template-contact .content ol {
  margin: 24px 0 0 0;
  padding: 0;
  list-style: none;
}
body.page-template-contact .content .text h1, body.page-template-contact .content .text h2 {
  font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
}
body.page-template-contact .content .text p, body.page-template-contact .content .text ul, body.page-template-contact .content .text ol {
  margin: 24px 0 0 0;
}
body.page-template-contact .content__inner--blocks {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-contact .content__inner--blocks .left {
  padding: 24px 0;
}
body.page-template-contact .content__inner--blocks .left, body.page-template-contact .content__inner--blocks .right {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-contact .content__inner--blocks .left, body.page-template-contact .content__inner--blocks .right {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.page-template-contact .content__inner--blocks .right {
    padding-left: 32px;
  }
}
body.page-template-contact .content__inner--blocks .right .inner {
  width: 100%;
  height: 100%;
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(36, 50, 66, 0.08);
  padding: 24px;
}
@media (min-width: 768px) {
  body.page-template-contact .content__inner--blocks .right .inner {
    padding: 48px;
  }
}
body.page-template-contact .content__inner--blocks .right .inner h2 {
  font-size: clamp(1.5rem, 0.3571rem + 2.381vw, 2.5rem);
}
body.page-template-contact .content__inner--blocks .right .inner h3 {
  font-size: 1.5rem;
  margin: 24px 0 0 0;
}
body.page-template-contact .content__inner--blocks .right .inner form {
  width: 100%;
}
body.page-template-contact .content__inner--blocks .right .inner form .submit {
  margin-top: 24px;
}
body.page-template-contact .content__inner--blocks .right .inner form .submit input {
  background: #4FBFEE;
  padding: 12px 24px;
  display: inline-block;
  text-align: center;
  color: #1D1D1B;
  border: none;
  cursor: pointer;
  transition: 0.5s;
  font-size: 1rem;
}
body.page-template-contact .content__inner--blocks .right .inner form .submit input:hover, body.page-template-contact .content__inner--blocks .right .inner form .submit input:focus {
  background: #BDE8FF;
}
body.page-template-contact .content__inner--blocks .right .inner form .form-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  margin-top: 24px;
}
body.page-template-contact .content__inner--blocks .right .inner form .form-group.half-width {
  grid-template-columns: 1fr 1fr;
}
body.page-template-contact .content__inner--blocks .right .inner form .form-group .item {
  width: 100%;
}
body.page-template-contact .content__inner--blocks .right .inner form .form-group .item input, body.page-template-contact .content__inner--blocks .right .inner form .form-group .item select, body.page-template-contact .content__inner--blocks .right .inner form .form-group .item textarea {
  width: 100%;
  height: 48px;
  margin-top: 6px;
  padding-left: 12px;
  font-size: 1rem;
}
body.page-template-contact .content__inner--blocks .right .inner form .form-group .item textarea {
  max-width: 100%;
  padding: 12px;
  width: 100%;
}
body.page-template-contact .content__inner--blocks .right .inner form p.terms {
  font-size: 0.675rem;
}
body.page-template-contact .transport {
  margin-top: 0;
}

body.page-template-default .hero {
  width: 100%;
}
body.page-template-default .hero__image {
  width: 100%;
}
body.page-template-default .hero__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1440/302;
  object-fit: cover;
  min-height: 200px;
  border-radius: 12px 12px 0 0;
}
@media (min-width: 768px) {
  body.page-template-default .hero__image img {
    border-radius: 48px 48px 8px 8px;
  }
}
body.page-template-default .hero__content {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-default .hero__content {
    margin-top: -148px;
  }
}
body.page-template-default .hero__content .container {
  padding: 0;
}
@media (min-width: 768px) {
  body.page-template-default .hero__content .container {
    padding: 0 24px;
  }
}
body.page-template-default .hero__content--inner {
  background: #1D1D1B;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-default .hero__content--inner {
    padding: 56px;
    border-radius: 48px 48px 8px 8px;
  }
}
body.page-template-default .hero__content--inner .left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-default .hero__content--inner .left {
    width: 65%;
  }
}
body.page-template-default .hero__content--inner .left span {
  color: #FFF;
}
body.page-template-default .hero__content--inner .left h1 {
  color: #FFF;
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.page-template-default .hero__content--inner .left p {
  margin: 12px 0 0 0;
  font-size: clamp(1.125rem, 0.9821rem + 0.2976vw, 1.25rem);
  color: #FFF;
}
body.page-template-default .hero__content--inner .left .buttons {
  margin-top: 24px;
  flex-wrap: wrap;
  display: flex;
}
body.page-template-default .hero__content--inner .left .buttons .button {
  margin-top: 12px;
  margin-right: 12px;
}
body.page-template-default .hero__content--inner .left .buttons .button:last-child {
  margin-right: 0;
}
body.page-template-default .hero__content--inner .right {
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-default .hero__content--inner .right {
    margin-top: 0;
    width: 35%;
    padding-left: 48px;
  }
}
body.page-template-default .hero__content--inner .right .item {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}
body.page-template-default .hero__content--inner .right .item:first-child {
  margin-top: 0;
}
body.page-template-default .hero__content--inner .right .item p {
  color: #FFF;
}
body.page-template-default .hero__content--inner .right .item .icon {
  width: 22px;
}
body.page-template-default .hero__content--inner .right .item .text {
  width: calc(100% - 22px);
  padding-left: 8px;
}
body.page-template-default .wrapper.default-page .wrapper__inner--content {
  padding: 40px 0 64px 0;
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}
body.page-template-default .wrapper.default-page .wrapper__inner--content h1, body.page-template-default .wrapper.default-page .wrapper__inner--content h2, body.page-template-default .wrapper.default-page .wrapper__inner--content h3, body.page-template-default .wrapper.default-page .wrapper__inner--content h4, body.page-template-default .wrapper.default-page .wrapper__inner--content ul, body.page-template-default .wrapper.default-page .wrapper__inner--content ol, body.page-template-default .wrapper.default-page .wrapper__inner--content img, body.page-template-default .wrapper.default-page .wrapper__inner--content p {
  margin: 24px 0 0 0;
}
body.page-template-default .faq-items {
  width: 100%;
}
body.page-template-default .faq-items__inner {
  width: 100%;
  padding: 40px 24px 64px 24px;
}
body.page-template-default .faq-items__inner--category {
  margin-top: 24px;
}
body.page-template-default .faq-items__inner--category h2 {
  margin-bottom: 24px;
}
body.page-template-default .faq-items__inner--category .items .item:nth-child(odd) .question {
  background-color: #0079B8;
}
body.page-template-default .faq-items__inner--category .items .item:nth-child(odd) .question .text {
  color: #FFF;
}
body.page-template-default .faq-items__inner--category .items .item:nth-child(odd) .question .icon svg {
  fill: #FFF;
}
body.page-template-default .faq-items__inner--category .items .item .question {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px;
  background-color: #0079B8;
  cursor: pointer;
}
body.page-template-default .faq-items__inner--category .items .item .question.open .icon .close {
  display: block;
}
body.page-template-default .faq-items__inner--category .items .item .question.open .icon .open {
  display: none;
}
body.page-template-default .faq-items__inner--category .items .item .question .text {
  width: calc(100% - 40px);
  padding-right: 12px;
  line-height: 1.2;
}
body.page-template-default .faq-items__inner--category .items .item .question .icon {
  width: 40px;
}
body.page-template-default .faq-items__inner--category .items .item .question .icon .open svg, body.page-template-default .faq-items__inner--category .items .item .question .icon .close svg {
  width: 24px;
  height: auto;
  vertical-align: bottom;
}
body.page-template-default .faq-items__inner--category .items .item .question .icon .close {
  display: none;
}
body.page-template-default .faq-items__inner--category .items .item .answer {
  display: none;
  padding: 0 24px 24px 24px;
}
body.page-template-default .faq-items__inner--category .items .item .answer p {
  margin: 24px 0 0 0;
}
body.page-template-default .faq-items__inner--category .items .item .answer p a {
  color: #0079B8;
  font-weight: 700;
}
body.page-template-default .faq-items__inner--category .items .item .answer ul, body.page-template-default .faq-items__inner--category .items .item .answer ol {
  padding: 24px 0 0 0;
  padding-left: 20px;
}
body.page-template-default .faq-items__inner--category .items .item .answer ul li, body.page-template-default .faq-items__inner--category .items .item .answer ol li {
  color: #0079B8;
  line-height: 1.5;
}
body.page-template-default .faq-items__inner--category .items .item .answer ul li a, body.page-template-default .faq-items__inner--category .items .item .answer ol li a {
  color: #0079B8;
  font-weight: 700;
}
body.page-template-default .faq-items__inner--category .items .item .answer table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
}
body.page-template-default .faq-items__inner--category .items .item .answer table thead tr {
  background-color: #009879;
  color: #ffffff;
  text-align: left;
}
body.page-template-default .faq-items__inner--category .items .item .answer table th, body.page-template-default .faq-items__inner--category .items .item .answer table td {
  padding: 12px 15px;
}
body.page-template-default .faq-items__inner--category .items .item .answer table tbody tr {
  border-bottom: 1px solid #dddddd;
}
body.page-template-default .faq-items__inner--category .items .item .answer table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}
body.page-template-default .faq-items__inner--category .items .item .answer table tbody tr.active-row {
  font-weight: 700;
  color: #009879;
}
body.page-template-default .faq-items__inner--category .items .item .answer table tbody tr td p {
  margin: 0;
}

body.single-product .woocommerce-wrapper__inner > .product .product-wrapper {
  margin-top: 32px;
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary {
  width: 100%;
  margin: 0;
  float: none;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery {
    padding-right: 16px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery img {
  border-radius: 4px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery img {
    border-radius: 8px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery .gallery-swiper {
  overflow: hidden;
  width: 100%;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery .gallery-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  vertical-align: bottom;
  object-fit: cover;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery .product-information {
  display: none;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .woocommerce-product-gallery .product-information {
    display: block;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary {
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary {
    margin-top: 0;
    padding-left: 16px;
  }
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .product-information {
    display: none;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary h1 {
  font-size: clamp(2.5rem, 0.7857rem + 3.5714vw, 4rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description {
  border-bottom: 1px solid #4FBFEE;
  padding-bottom: 32px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description p {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description p, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ul {
  margin: 32px 0 0 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description p:first-child, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ul:first-child {
  margin: 8px 0 0 0;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description p:first-child, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ul:first-child {
    margin: 0;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ul, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ol {
  list-style: none;
  padding: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ul li, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ol li {
  margin-top: 16px;
  color: #0079B8;
  position: relative;
  display: flex;
  align-items: flex-start;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ul li:first-child, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ol li:first-child {
  margin-top: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ul li:before, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ol li:before {
  content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z" fill="%230079B8"/><path fill-rule="evenodd" clip-rule="evenodd" d="M17.6598 8.76384L16.2986 7.40273C16.2041 7.31009 16.0529 7.31009 15.9584 7.40273L10.2223 13.1388C10.1277 13.2315 9.97649 13.2315 9.88198 13.1388L8.52087 11.7777C8.42636 11.6851 8.2751 11.6851 8.18059 11.7777L6.81948 13.1388C6.72684 13.2334 6.72684 13.3846 6.81948 13.4791L9.88198 16.5416C9.97649 16.6343 10.1277 16.6343 10.2223 16.5416L17.6598 9.10412C17.7524 9.00961 17.7524 8.85835 17.6598 8.76384Z" fill="white"/></svg>');
  width: 24px;
  padding-right: 8px;
  margin-top: -3px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ul li a, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary .woocommerce-product-details__short-description ol li a {
  color: #0079B8;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper {
  width: 142px;
  order: 2;
  border: 1px solid #E5E7EB;
  display: flex;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper {
    order: 1;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .quantity {
  border-left: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .minus, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .plus, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .quantity {
  height: 48px;
  width: 48px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .quantity input::-webkit-inner-spin-button, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .minus, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .minus svg, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .number-wrapper .plus svg {
  width: 14px;
  height: auto;
  vertical-align: middle;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .package-count {
  width: 100%;
  order: 1;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .package-count {
    width: calc(100% - 142px);
    padding-left: 24px;
    order: 3;
    margin-bottom: 0;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper {
  width: 100%;
  flex-wrap: wrap;
  margin-top: 16px;
  display: inline-block;
  order: 3;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper {
    display: flex;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper button {
  background-color: #4FBFEE;
  color: #1D1D1B;
  font-weight: 400;
  margin-right: 16px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .contact-button, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .quote-button {
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .contact-button, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .quote-button {
    width: auto;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper button, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .contact-button a {
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 4px;
  border: 1px solid #4FBFEE;
  width: 100%;
  height: 60px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper button, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .contact-button a {
    width: auto;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper button svg {
  width: 12px;
  vertical-align: middle;
  height: auto;
  margin-left: 8px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .contact-button, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper button {
  margin-top: 8px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .contact-button, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper button {
    margin-top: 16px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .contact-button a {
  color: #1D1D1B;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .contact-button a svg {
  width: 18px;
  height: auto;
  vertical-align: middle;
  margin-right: 8px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper button, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .summary form.cart .button-wrapper .contact-button a {
  font-size: 1rem;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information {
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information {
    margin-top: 64px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information .collapse-item {
  width: 100%;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information .collapse-item.open .top .icon svg {
  transform: rotate(180deg);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information .collapse-item .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #4D5965;
  padding: 18px 0;
  cursor: pointer;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information .collapse-item .top .text {
  width: calc(100% - 12px);
  padding-right: 6px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information .collapse-item .top .text h3 {
  font-size: 1.5rem;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information .collapse-item .top .icon {
  width: 12px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information .collapse-item .top .icon svg {
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: 0.5s;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information .collapse-item .bottom p {
  margin: 32px 0 0 0;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information .collapse-item .bottom p:first-child {
  margin: 16px 0 0 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .product-information .collapse-item .bottom ul {
  list-style: none;
  padding: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products {
  width: 100%;
  margin-top: 32px;
  border-radius: 8px;
  border: 1px solid #4FBFEE;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__top {
  padding: 24px;
  border-bottom: 1px solid #E5E7EB;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__top p {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
  margin: 6px 0 0 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__top p:first-child {
  margin: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items {
  padding: 8px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items {
    padding: 24px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
  position: relative;
  z-index: 10;
  margin-top: 8px;
  padding: 12px 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group:first-child {
  margin-top: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__image {
  width: 100px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__image {
    width: 140px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  vertical-align: bottom;
  aspect-ratio: 100/75;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__image img {
    aspect-ratio: 1/1;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info {
  width: calc(100% - 100px);
  padding-left: 8px;
  padding-right: 48px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info {
    padding-left: 16px;
    width: calc(100% - 140px);
    padding-right: 64px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .cat {
  width: 100%;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .cat a {
  color: #0079B8;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .title {
  width: 100%;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .title h3 {
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper {
  width: 142px;
  margin-top: 16px;
  border: 1px solid #E5E7EB;
  display: none;
}
@media (min-width: 1024px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper {
    display: flex;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .quantity {
  border-left: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .minus, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .plus, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .quantity {
  height: 48px;
  width: 48px;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
  font-size: clamp(1rem, 0.8571rem + 0.2976vw, 1.125rem);
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .quantity input::-webkit-inner-spin-button, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .quantity input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .minus, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .minus svg, body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__info--wrapper .number-wrapper .plus svg {
  width: 14px;
  height: auto;
  vertical-align: middle;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__add-to-cart {
  position: absolute;
  bottom: 0;
  right: 0;
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__add-to-cart button {
  background: #4FBFEE;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__add-to-cart button {
    width: 48px;
    height: 48px;
  }
}
body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__add-to-cart button svg {
  width: 9px;
  height: auto;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper__inner > .product .product-wrapper .upsell-products__items .form-group__add-to-cart button svg {
    width: 12px;
  }
}
body.single-product .other {
  background-color: #BDE8FF;
  padding: 64px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  body.single-product .other {
    padding: 96px 0;
  }
}
body.single-product .other__inner .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.single-product .other__inner .top {
    flex-wrap: nowrap;
  }
}
body.single-product .other__inner .top__left, body.single-product .other__inner .top__right {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-product .other__inner .top__left, body.single-product .other__inner .top__right {
    width: auto;
  }
}
body.single-product .other__inner .top__left h2 {
  font-size: clamp(2rem, 0.8571rem + 2.381vw, 3rem);
}
body.single-product .other__inner .top__right {
  margin-top: 12px;
}
@media (min-width: 768px) {
  body.single-product .other__inner .top__right {
    margin-top: 0;
  }
}
body.single-product .other__inner .top__right .button {
  display: inline-block;
}
body.single-product .other__inner .top__right .button a {
  background-color: transparent;
}
body.single-product .other__inner .products-swiper {
  width: 100%;
  margin-top: 48px;
  position: relative;
  z-index: 10;
  clip-path: inset(-100vw -100vw -100vw 0);
}
body.single-product .other__inner .products-swiper .swiper-wrapper .swiper-slide {
  height: auto;
  width: 100%;
  max-width: 298px;
}
body.single-product .transport {
  margin-top: 0;
}

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