.menu > ul {
  display: flex;
  align-items: center;
}

.menu > ul > li > a {
  font-size: 1.125rem;
  font-weight: 400;
  margin: 0 24px;
  position: relative;
  padding-bottom: 3px;
  display: block;
  white-space: nowrap;
}

.menu > ul > li > a:hover {
  font-weight: 600;
  transition: all 0.3s ease;
}

.menu > ul > li > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transition: transform 0.3s ease;
  transform-origin: center;
  transform: scaleX(0);
}

.menu > ul > li > a:hover::after {
  transform: scaleX(1);
}
.menu > ul > li > a.active::after {
  transform: scaleX(1);
}
.menu > ul > li > a.active {
  font-weight: 600;
}
.menu ul li {
  position: relative;
}

.menu ul ul {
  position: absolute;
  top: 100%;
  transform: translateY(1rem);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1.25rem;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.menu li:hover ul {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transform: translateX(-50%);
}

.menu ul ul li > a {
  padding: 0.25rem 0.75rem;
  font-weight: 400;
  font-size: 1rem;
  text-align: end;
  display: block;
}

.menu ul ul li > a:hover {
  font-weight: 600;
  transition: all 0.3s ease;
}

header.fixed-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.menu_mobile li ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.menu_mobile li.open > ul {
  max-height: 500px;
}

.menu_mobile li > ul > li > a {
  padding: 0.5rem 1rem;
  background-color: #f9f9f9;
}

.menu_mobile li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: black;
  font-weight: 500;
  font-size: 1.25rem;
}

.menu_mobile li ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.menu_mobile li:has(ul) > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-size: 1.25rem;
  color: black;
  transition: transform 0.3s ease;
}

.menu_mobile li.open:has(ul) > a::after {
  transform: rotate(180deg);
}

.tab-content.active {
  display: block;
}

.module-tabs.blog_home .tab-link.active::after {
  width: 100%;
}

.module-tabs.shop .tab-link.active,
.module-tabs.blog_home .tab-link.active,
.module-cart .tab-link.active {
  font-weight: 600;
}

.module-tabs.shop .tab-link,
.module-tabs.blog_home .tab-link,
.module-cart a {
  position: relative;
}

.module-tabs.shop ul li::before,
.module-tabs.blog_home ul li::before,
.module-cart a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000000;
  bottom: 0;
  left: 0;
  width: 100%;
}

.module-tabs.shop .tab-link::after,
.module-tabs.blog_home .tab-link::after,
.module-cart .tab-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #000000;
  transition: transform 0.3s ease;
  transform-origin: center;
  transform: scaleX(0);
}

.module-tabs.shop .tab-link:not(.active):hover,
.module-tabs.blog_home .tab-link:not(.active):hover,
.module-cart .tab-link:not(.active):hover {
  font-weight: 600;
  transition: all 0.3s ease;
}

.module-tabs.shop .tab-link.active::after,
.module-tabs.blog_home .tab-link.active::after,
.module-cart .tab-link.active::after,
.module-tabs.shop .tab-link:hover::after,
.module-tabs.blog_home .tab-link:hover::after,
.module-cart .tab-link:hover::after {
  transform: scaleX(1);
}

.scrollbar-hide {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.menu_footer_mobile ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu_footer_mobile ul li a {
  font-family: 20px;
  font-weight: 400;
  color: var(--cl-s2);
}

.menu_footer_mobile ul li a:hover {
  color: #000000;
  font-weight: 600;
  transition: all 0.3s ease;
}

.icon_teach::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/icon_teach.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

.button_plus_minus svg {
  transition: transform 0.3s ease;
}

.button_plus_minus.active svg {
  transform: rotate(180deg);
}

.module-modal {
  visibility: hidden;

  opacity: 0;

  transition: all 0.3s;
}

.module-modal.active {
  visibility: visible;

  opacity: 1;
}

.module-modal .modal-content {
  transform: translateY(-5rem);

  transition: all 0.3s;
}

.module-modal.active .modal-content {
  transform: translateY(0);
}

.module-modal-pro {
  visibility: hidden;

  opacity: 0;

  transition: all 0.3s;
}

.module-modal-pro.active {
  visibility: visible;

  opacity: 1;
}

.module-modal-pro .modal-content {
  transform: translateY(-5rem);

  transition: all 0.3s;
}

.module-modal-pro.active .modal-content {
  transform: translateY(0);
}
.language .item-language {
  display: flex;
  align-items: center;
}
.language .item-language:first-of-type::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.25rem;
  margin-left: 5px;
  margin-right: 5px;
  background-color: #000000;
  vertical-align: middle;
}

.language .smooth:hover {
  transition: all 0.3s ease;
  color: #000000;
  font-weight: 600;
}
.language .active {
  font-weight: 600;
  color: #000000;
}

header.fixed-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
