@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

:root {
  /* Color definitions */
  --default: #262626;
  --blue: #00a4e2;
  --green: #a7c63a;
  --red: #f14450;
  --grey-dark: #595959;
  --grey-light: #f7f7f7;
  --footer-text: #808080;
  --background: #ffffff;

  /* layout definitions */
  --layout: 1440px;
  --font-base: 16px;
  --line-height: 1.5;
  --radius: 4px;
  --transition: 0.5s;
  --buffer: 50px;
  --gap: 1rem;

  /* font definitions */
  --font-heading: "Oswald", serif;
  --font-default: "Oswald", serif;
  --tablet: 1024px;
}

* {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: subpixel-antialiased;
  outline: none;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-variant-ligatures: none;
  font-weight: 300;
  hyphens: auto;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-default), sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.6;
  color: var(--default);
  margin: 0;
  letter-spacing: 1px;
}

.container_page {
  max-width: 2560px;
  margin: 0 auto;
  overflow: hidden;
}

section {
  padding: var(--buffer) 0;
  &.light {
    background-color: var(--grey-light);
  }
}

.wrap {
  width: 100%;
  max-width: var(--layout);
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  &.short {
    width: 50%;
  }
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  hyphens: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 3.6rem, 5rem);
  color: var(--blue);
}

h2.title {
  font-size: clamp(2rem, 3.6rem, 5rem);
}

strong {
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: var(--transition) ease;
  color: var(--dark-green);

  &:hover,
  &:hover * {
    transition: var(--transition) ease;
    color: var(--blue);
  }
}

p.blue {
  color: var(--blue);
}
/* BUTTONS */

.btn {
  padding: 10px 40px 10px 20px;
  background-color: var(--green);
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  display: inline-block;
  margin-right: 50px;
  font-size: 1rem;
  line-height: 1.5;
}
.btn:hover {
  background-color: var(--blue);
  color: #fff;
  &:after {
    border-color: var(--blue) transparent transparent transparent;
  }
}
.btn:after {
  content: "";
  right: -38px;
  width: 0;
  top: 0;
  height: 0;
  border-style: solid;
  border-width: 44px 38px 0 0;
  border-color: var(--green) transparent transparent transparent;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn.inverse {
  color: #262626;
  background-color: transparent;
  border: 2px solid var(--green);
  padding: 10px 20px 10px 20px;
  margin: 3px;
  border-radius: var(--radius);
  &:after {
    display: none;
  }
  &:hover {
    border-color: var(--blue);
  }
}
.btn.arrow {
  background-image: url(../images/icons/arrow-right-bl.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: right 16px center;
  padding-right: 50px;
  &:hover {
    background-position: right 14px center;
  }
}

p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

p {
  margin-top: 0;
}

.social {
  padding: 2rem 0;
  display: block;
}

aside.sidebar  {
  background: #fafafa;
}

.about-us {
  background: url(../images/content/38.jpeg) no-repeat center center / cover;
  color: #fff;
  position: relative;
  &:after {
    content: "";
    position: absolute;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.35);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(2px);
  }
  h2 {
    font-size: 2.4em;
    text-transform: uppercase;
  }
  .inner {
    max-width: 50%;
  }
  .wrap {
    display: flex;
    min-height: 50dvh;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
  }
}

.fixed {
  background-attachment: fixed;
}

.bonuses {
  display: flex;
  /* flex: 1 1 100%; */
  div {
    width: 100%;
    padding: 2rem 0;
  }
}

.bonuses h3 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 17px;
  padding-left: 80px;
}

.bonuses h3.hours {
  background: url(../images/icons/24-g.svg) no-repeat left center / 50px;
}
.bonuses h3.personal {
  background: url(../images/icons/handshake-g.svg) no-repeat left center / 50px;
}
.bonuses h3.box {
  background: url(../images/icons/box-g.svg) no-repeat left center / 50px;
}

/* NEWS */

.news_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex: 1 1 100%;
  margin-bottom: 1rem;
  justify-content: flex-start;
  gap: var(--gap);
}

article {
  box-sizing: border-box;
  width: 100%;
  padding: 1rem;
  background-color: #fff;
  max-width: calc(33.3333% - 1rem);
  transition: var(--transition);
  border-radius: var(--radius);
}

article:hover {
  box-shadow: 0px 0 32px -6px rgba(0, 0, 0, 0.15);
}

article img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  aspect-ratio: 3/2;
}

article p {
  font-size: 0.9rem;
}
article a {
  color: var(--green);
}

article .news_text {
  padding: 0 1rem 1rem;
}

.intro {
  padding: 0;
  position: relative;
  z-index: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
  div {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: relative;
    color: #fff;
  }
}

#intro,
.single-post #intro.small {
  height: 45vh;
  min-height: 750px;
}
#intro.small {
  height: 30vh;
  min-height: 500px;
  background: url(/wp-content/uploads/2025/03/2361.jpg) no-repeat center center /
    cover;
}

.slick-slide .inner {
  position: relative;
  z-index: 2;
}

.slick-slide .wrap {
  height: 80vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.slick-dots {
  position: absolute;
  bottom: 40px;
  z-index: 10;
  right: 0;
  transform: translateX(-50%);
  list-style: none;
  margin: 0;
  padding: 0;
  li {
    display: inline-block;
    &.slick-active button {
      background-color: var(--blue);
    }
  }
  button {
    font-size: 0;
    width: 20px;
    height: 4px;
    background-color: #fff;
    margin: 3px;
    display: block;
    border: none;
    cursor: pointer;
  }
}

.slider_hmp {
  position: relative;
}

.slick-slide {
  position: relative;
  z-index: 1;
  &:after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.slick-arrow {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 140px;
  display: inline-block;
  color: transparent;
  border: none;
  margin-top: -70px;
  z-index: 3;
  cursor: pointer;
  transition: var(--transition);
}

.slick-next {
  right: -1px;
  background: url(../images/core/chevron-right-b.svg) no-repeat;
  &:hover {
    background: url(../images/core/chevron-right-g.svg) no-repeat;
  }
}
.slick-prev {
  left: -1px;
  background: url(../images/core/chevron-left-b.svg) no-repeat;
  &:hover {
    background: url(../images/core/chevron-left-g.svg) no-repeat;
  }
}

.intro h2 {
  font-size: 7vh;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #fff;
}

.woocommerce .woocommerce-ordering select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: top;
  border-radius: calc(2 * var(--radius));
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 1.2rem 1rem 2rem; /* zvětšený padding-left pro šipku */
  background-image: url("../images/icons/arrow-down-b.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.8rem;
}
.woocommerce-result-count {
  padding: 0.5rem 1rem 0.5rem 0;
  margin: 0;
  color: var(--grey-dark);
}

.woocommerce div.product form.cart .reset_variations {
  display: none !important;
}

.row.center {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* PAGINATION */
.wp-pagenavi {
  text-align: center;
  margin: 2rem 0;
  .pages {
    display: none;
  }
  .page,
  .nextpostslink,
  .previouspostslink {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background-color: var(--green);
    color: #fff;
    border-radius: var(--radius);
    transition: var(--transition);
    &:hover {
      background-color: var(--blue);
      color: #fff;
    }
  }
  .current {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background-color: var(--blue);
    color: #fff;
    border-radius: var(--radius);
    transition: var(--transition);
  }
}

/* SEARCH */

.box-search {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(167, 198, 58, 0.98);
  color: #fff;
  visibility: hidden;
  opacity: 0;
  z-index: 15;
  transition: var(--transition);
  &.open {
    visibility: visible;
    opacity: 1;
  }
  .close-search {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: var(--blue);
  }
  .wrap {
    position: relative;
    height: 100vh;
    width: 100%;
  }
  h2 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    form {
      input {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 20px;
        background-color: transparent;
        border: 2px solid #fff;
        color: #fff;
        font-size: 20px;
        font-weight: 300;
        font-family: var(--font-default);

        &::-webkit-input-placeholder {
          /* Chrome/Opera/Safari */
          font-family: var(--font-default);
          color: rgba(255, 255, 255, 0.5);
        }
        &::-moz-placeholder {
          /* Firefox 19+ */
          font-family: var(--font-default);
          color: rgba(255, 255, 255, 0.5);
        }
        &:-ms-input-placeholder {
          /* IE 10+ */
          font-family: var(--font-default);
          color: rgba(255, 255, 255, 0.5);
        }
        &:-moz-placeholder {
          /* Firefox 18- */
          font-family: var(--font-default);
          color: rgba(255, 255, 255, 0.5);
        }

        &[type="submit"] {
          background-color: #fff;
          color: var(--green);
          text-transform: uppercase;
          transition: var(--transition);
          &:hover {
            background-color: var(--blue);
            color: #fff;
            border-color: var(--blue);
          }
        }
      }
    }
  }
}

span.kt-blocks-accordion-title {
  font-weight: 500;
}

/* WOO */

.woocommerce ul.products li.product .button {
  display: none !important;
}
.woocommerce ul.products li.product {
  text-align: center;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  ul.products
  li.product
  .price {
  color: var(--green) !important;
}

.woocommerce ul.products li.product {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  background-color: #fff;
  width: calc(25% - 0.75rem) !important;
  border-radius: calc(2 * var(--radius));
  padding: 2rem !important;
  overflow: hidden;
  transition: var(--transition);
  mark {
    display: none;
  }
  img {
    transition: var(--transition);
  }
  &:hover {
    box-shadow: 0px 0 32px -6px rgba(0, 0, 0, 0.15);
    img {
      scale: 1.025;
    }
  }
}

.woocommerce .woocommerce-result-count {
  margin: 0 0 1em;
  font-size: 0;
}

ul.products.columns-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: left;
  margin: 0 !important;
  padding: 0;
  position: relative;
}

.summary .woocommerce-Price-amount bdi {
  color: var(--green) !important;
  font-size: 1.8rem !important;
}

.woocommerce-page section {
  padding-bottom: 0;
}

.woocommerce .flex-control-thumbs li {
  padding: 1rem;
  border-radius: calc(2 * var(--radius));
  transition: var(--transition);
  margin-right: 6px !important;
  overflow: hidden;
  img {
    transition: var(--transition);
  }
  &:hover {
    box-shadow: 0px 0 32px -6px rgba(0, 0, 0, 0.15);
    img {
      scale: 1.05;
    }
  }
}

.woocommerce button.single_add_to_cart_button {
  background-color: var(--green) !important;
  font-family: var(--font-default) !important;
  font-size: 1.3rem !important;
}

.thwvsf-wrapper-ul .thwvsf-wrapper-item-li.attr_swatch_design_default {
  border-radius: 100px !important;
}

.woocommerce div.product div.images .flex-control-thumbs {
  overflow: hidden;
  padding: 2rem 1rem !important;
}

.product_meta {
  display: flex;
  flex-direction: column;
  color: #ddd;
}

.woocommerce div.product form.cart {
  margin-bottom: 2em;
  margin-top: 2rem;
}
.woocommerce div.product form.cart .variations th {
  border: 0;
  line-height: 2em;
  vertical-align: middle !important;
  text-align: left;
}
.thwvsf-wrapper-ul
  .thwvsf-wrapper-item-li.thwvsf-label-li.attr_swatch_design_default {
  width: auto;
  height: 45px;
  color: #000;
  background-color: #fff;
  border-radius: 0 !important;
  padding: 0.5rem 1rem;
}

.woocommerce .variations tr {
  padding-bottom: 0.5rem !important;
}

.woocommerce div.product form.cart .variations {
  margin-bottom: 2rem !important;
}

.summary {
  width: 46% !important;
}

.single-product {
  .product {
    display: flex;
    flex-wrap: wrap;
    gap: 6%;
    section {
      width: 100%;
      background-color: var(--grey-light);
      position: relative;
      padding-bottom: 3rem;
      h2 {
        text-align: center;
        font-weight: 300;
      }
      &:before,
      &:after {
        content: "";
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100vw;
        background-color: var(--grey-light);
        z-index: -1;
      }
      &:before {
        right: 100%;
      }
      &:after {
        left: 100%;
      }
    }
  }
}
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  background: #fff;
}

.woocommerce .quantity .qty {
  width: 3.631em;
  text-align: center;
  height: 3rem;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 1rem;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: calc(25% - 7px) !important;
}

.thwvsf-wrapper-ul {
  padding: 0.5rem 0 !important;
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
  display: none !important;
}

.woocommerce div.product .product_title {
  margin-bottom: 0.5em;
}

body:not(.woocommerce-block-theme-has-button-styles)
  .wc-block-components-button:not(.is-link) {
  background-color: var(--green) !important;
  color: #fff !important;
  font-family: var(--font-default) !important;
  font-size: 1rem !important;
  border: none;
  border-radius: var(--radius);
  &:hover span {
    color: #000 !important;
  }
}

p#breadcrumbs {
  padding: 1rem 0;
  color: #aaa;
}
.breads {
  background-color: var(--grey-light);
}

p.stock {
  padding: 0.5rem 1rem;
  background: #efefef;
  display: inline-block;
  margin-bottom: 0.5rem;
  &.available-on-backorder {
    color: var(--grey-dark) !important;
  }
}

/* FOOTER */

footer,
.woocommerce footer {
  background: var(--default);
  color: var(--footer-text);
  line-height: 1.8;
  border-top: 2px solid var(--green);
  padding: var(--buffer) 0;

  img {
    width: 80%;
    max-width: 160px;
    margin-top: 2rem;
  }

  h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 400;
  }
  a:hover {
    color: #fff;
  }

  .btn {
    line-height: 1.5;
    font-size: 1rem;
  }

  ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    li {
      a {
        color: var(--footer-text);
        &:hover {
          color: var(--green);
        }
      }
    }
  }
  .social {
    display: block;
  }
  .container_footer {
    display: flex;
    margin-bottom: 2rem;
    div {
      width: 100%;
    }
  }
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: background-color 0.5s;
  &.fixed {
    background-color: rgba(0, 0, 0, 0.75);
  }
}
header .logo {
  position: absolute;
  top: 13px;
  width: 110px;
  height: 105px;
  display: block;
  background: url(../images/core/logo-green.svg) no-repeat;
}

header .nav_trigger {
  width: 40px;
  height: 40px;
  background: url(../images/icons/menu.svg) no-repeat center center / contain;
  display: block;
  position: relative;
  float: right;
  margin: 30px 10px 30px 0;
}

header {
  li.cart-mini {
    margin-left: 10px;
    padding: 0;
    position: relative;
    img {
      width: 32px;
    }
    span {
      position: absolute;
      right: -4px;
      bottom: -4px;
      font-size: 0.6em;
      background-color: var(--green);
      padding: 3px 7px;
      border-radius: 20px;
      font-weight: 500;
      border: none;
      pointer-events: none;
    }
    a:after {
      display: none;
    }
  }
  li.cart-mini a {
    padding: 0;
    &:after {
      display: none;
    }
  }
}

.apartman {
  background: url(/wp-content/uploads/2025/06/162080691136f6f72ae57b8174b7cff0e53c6f6e82.jpg)
    no-repeat center center / cover;
  padding: 8rem 0;
  .inner {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    margin-left: 50%;
    width: 50%;
    padding: 2rem;
    border-radius: 20px;
    h2 {
      font-size: 2em;
    }
  }
}

@media (max-width: 670px) {
  .apartman {
    padding: 8rem 0 2rem;
    .inner {
      margin: 5%;
      width: 90%;
    }
  }

  header.scrolled {
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    .logo {
      width: 80px;
      height: 90px;
    }
  }
  .menu-main-menu-container {
    backdrop-filter: blur(10px);
    background-color: #00000090;
    top: 90px;
    position: absolute;
    right: 2vw;
    width: 60vw;
    margin: 0;
    padding: 2rem;
    border-radius: 20px;
    transform: translateX(100vw);
    transition: transform 0.5s ease-in-out;
    ul {
      margin: 0;
      padding: 0;
      list-style-type: none;
      li {
        text-align: right;
      }
      a {
        font-size: 1.4rem;
        font-weight: 500;
        color: #fff;
      }
    }
  }
  body.open .menu-main-menu-container {
    transform: translateX(0);
  }
  .cart-mini {
    position: absolute;
    top: 1.7rem;
    right: 6rem;
    span {
      background-color: var(--green);
      color: var(--default);
      font-size: 0.6rem;
      padding: 3px 7px;
      border-radius: 20px;
      position: absolute;
      position: absolute;
      bottom: -4px;
      right: 0;
      pointer-events: none;
    }
    img {
      width: 2.4rem;
    }
  }

  .wrap {
    padding: 0 1.4rem;
  }

  footer,
  .woocommerce footer {
    .container_footer {
      flex-direction: column;
      div {
        width: 100%;
        margin-bottom: 1rem;
      }
    }
    .social {
      text-align: center;
      margin-top: 1rem;
    }
  }
  .bonuses {
    flex-wrap: wrap;
    padding: 0 3rem;
  }
  .bonuses div {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
  }

  .intro h2 {
    font-size: 2rem;
  }
  h1 {
    font-size: clamp(2rem, 2.4rem, 5rem);
  }

  .slick-slide .inner {
    padding: 0 2rem;
  }

  .about-us {
    .inner {
      max-width: 100%;
      .btn {
        margin-bottom: 1rem;
      }
    }
  }
  .news_container {
    flex-wrap: wrap;
    article {
      width: 100%;
      max-width: 100%;
      margin-bottom: 1rem;
    }
  }

  .woocommerce ul.products li.product {
    width: calc(50% - 0.75rem) !important;
  }

  .summary {
    width: 100% !important;
  }
  #intro,
  .single-post #intro.small {
    height: 35vh;
    min-height: 450px;
  }
  #intro.small {
    height: 20vh;
    min-height: 250px;
  }
  .slick-slide .wrap {
    height: 60vh;
    min-height: 600px;
  }
  .slick-arrow {
    width: 40px;
    height: 80px;
  }
}

@media (min-width: 670px) {
  header {
    .nav_trigger {
      display: none;
    }
    &.scrolled {
      background-color: rgba(0, 0, 0, 0.85);
      .logo {
        width: 80px;
        height: 90px;
      }
    }

    .cart-mini {
      position: relative;
      a {
        padding: 0;
        position: relative;
        top: 8px;
        margin-left: 1rem;
        &:before,
        &:after {
          display: none;
        }
      }
      img {
        height: 24px;
      }
      .count {
        background-color: var(--green);
        color: var(--default);
        flex: 1 1 100%;
        border-radius: 100px;
        aspect-ratio: 1;
        padding: 5px 8px;
        font-size: 0.5rem;
        position: absolute;
        bottom: 0.25rem;
        right: -0.5rem;
        line-height: 1;
      }
    }

    .nav {
      margin: 30px 0;
      display: block;
      text-align: right;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;

      ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        li {
          display: inline-block;
          padding: 0;
          &:last-child {
            margin-left: 10px;
          }
          &.current-menu-item a {
            color: var(--green);
          }
          a {
            display: block;
            padding: 10px 15px;
            color: #fff;
            text-transform: uppercase;
            font-weight: 400;
            position: relative;
            transition: var(--transition);
            &.active {
              color: var(--green);
            }
            &.search {
              img {
                width: 24px;
                height: 24px;
              }
              &:before,
              &:after {
                display: none;
              }
            }
            &:hover {
              color: var(--green);
            }
            &:before {
              content: "";
              display: block;
              position: absolute;
              left: 0;
              bottom: 0;
              height: 2px;
              width: 0;
              transition: width 0s ease, background 1s ease;
            }
            &:after {
              content: "";
              display: block;
              position: absolute;
              right: 0;
              bottom: 0;
              height: 2px;
              width: 0;
              background: var(--green);
              transition: width 0.5s ease;
            }
            &:hover:before {
              width: 100%;
              background: var(--green);
              transition: width 0.3s ease;
            }

            &:hover:after {
              width: 100%;
              background: transparent;
              transition: all 0s ease;
            }
          }
          &.current-menu-item a:before {
            width: 100%;
            background: var(--green);
            transition: width 0.3s ease;
          }
          &.current-menu-item a:after {
            width: 100%;
            background: var(--green);
            transition: all 0s ease;
          }
        }
      }
    }
  }
}
