:root {
  --theme_color: #029df7;
  --subtheme_color: #20be40;
  --hover_color: #000;
  --title_color: #212121;
  --content_color: #3d3d3d;
  --bg_color: linear-gradient(to right, #0dd93c, #2fa944);
}

html {
  font-size: clamp(7.5px, 0.522vw, 10px);
}

ul {
  list-style: none;
}

a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}

i {
  font-style: normal;
}

.swiper_box {
  position: relative;
}

div.swiper_content {
  max-width: 124.4rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}

button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title_color);
}

input[type="submit"],
button {
  cursor: pointer;
}

textarea {
  resize: none;
}

input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title_color);
}

.center {
  text-align: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_center {
  justify-content: center;
}

.flex_end {
  justify-content: flex-end;
}

.flex_top {
  align-items: flex-start;
}

.flex_middle {
  align-items: center;
}

.flex_bottom {
  align-items: flex-end;
}

body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title_color);
}

html body {
  font-family: "Lato", sans-serif;
}

body.fixed {
  overflow: hidden;
  padding-right: 17px;
}

.only_mobile {
  display: none;
}

.content .content {
  padding: 0;
}

.gap {
  gap: 2rem;
}

li.swiper-slide {
  height: auto;
}

.grecaptcha-badge {
  visibility: hidden;
}

#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--theme_color);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }

  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }

  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }

  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }

  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}

@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }

  49.99% {
    transform: scaleY(1) rotate(135deg);
  }

  50% {
    transform: scaleY(-1) rotate(0deg);
  }

  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}

.img.img_cv {
  overflow: hidden;
}

.img.img_cv img {
  object-fit: cover;
}

.img.img_ct img {
  object-fit: contain;
}

.img.img_ab {
  position: relative;
}

.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}

.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}

.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  background-color: var(--theme_color);
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 100px;
  color: #fff;
  padding: 1.7rem 3.45rem;
  gap: 0.6rem;
}

.btn_i::after {
  width: 1.5rem;
  height: 1.5rem;
  content: '';
  display: inline-block;
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}

.btn_i::before {
  width: 100%;
  height: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: var(--bg_color);
  content: '';
  transition: all linear 0.3s;
  pointer-events: none;
}

.btn_i:hover::before {
  opacity: 0;
}

.btn_i:hover::after {
  transform: translateX(20%);
}

.btn {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--theme_color);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  cursor: pointer;
  border-radius: 100px;
  overflow: hidden;
  padding: 1.7rem 3.15rem;
}

body .btn {
  overflow: visible;
}

.btn::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: var(--bg_color);
  z-index: -1;
  transition: all linear 0.3s;
  pointer-events: none;
  border-radius: 100px;
}

.btn:hover::before {
  opacity: 0;
}

.btn_line {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1b1b1b;
  border: 1px solid rgba(27, 27, 27, 0.6);
  border-radius: 100px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
  padding: 1.35rem 3.5rem;
}

.btn_line::after {
  width: 1.3rem;
  height: 1.3rem;
  display: inline-block;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
}

.btn_line::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  content: '';
  background-image: var(--bg_color);
  z-index: -1;
  transition: all linear 0.3s;
  pointer-events: none;
  border-radius: 100px;
  opacity: 0;
}

.btn_line:hover {
  color: #fff;
  border-color: transparent;
}

.btn_line:hover::before {
  opacity: 1;
}

.btn_line:hover::after {
  filter: contrast(0) brightness(2);
  transform: translateX(20%);
}

.swiper_btns {
  gap: 2.8rem;
  display: flex;
}

.swiper_btns div {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  transition: all 0.3s;
  background: url("../img/arrow.svg") no-repeat center / contain;
  filter: contrast(0) brightness(0);
}

.swiper_btns div:hover {
  filter: unset;
}

.swiper_btns .btn_next {
  transform: rotate(180deg);
}

.swiper_btns .swiper-button-disabled {
  opacity: 0.68;
  pointer-events: none;
}

.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}

.swiper_btns.middle {
  width: 98%;
  max-width: 139.9rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}

.swiper_btns.middle div {
  pointer-events: all;
}

.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}

.swiper_btns.white div {
  width: 2.3rem;
  height: 2.3rem;
  filter: contrast(0) brightness(2);
  background-image: url("../img/arrow2.svg");
}

.swiper_btns.white div:hover {
  filter: unset;
}

.swiper_btns.white.middle {
  max-width: 178.5rem;
}

.head strong {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--theme_color);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.3rem;
}

.head h1 {
  font-size: 5.6rem;
  line-height: 6.6rem;
  font-weight: 900;
}

.head h2 {
  font-size: 4.8rem;
  line-height: 6.2rem;
  font-weight: 900;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
}

header.sticky {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  top: -4.1rem;
}

header.sticky .left {
  margin-top: -0.8rem;
}

header .header_top {
  padding: 1.4rem 0 1rem;
}

header .header_top .flex {
  padding-left: 10rem;
}

header .info {
  font-size: 1.445rem;
  color: #1c1c1c;
  opacity: 0.85;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  font-weight: 500;
}

header .info ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

header .info ul a {
  display: inline-block;
  align-items: center;
}

header .info ul a:hover {
  font-weight: 700;
}

header .info ul li {
  display: inline-flex;
  align-items: center;
}

header .info ul li:last-child::after {
  display: none;
}

header .info ul li::after {
  width: 1px;
  height: 1.6rem;
  background-color: rgba(36, 36, 36, 0.85);
  content: '';
  display: inline-block;
  margin-right: 0.9rem;
  margin-left: 1.1rem;
}

header .left {
  display: flex;
  align-items: center;
  margin-top: -4rem;
  transition: all 0.3s;
}

header .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
}

header .logo img {
  display: block;
  width: auto;
  height: 8.5rem;
}

header .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}

header nav {
  flex: 1;
  margin-right: 5%;
}

header nav .menu {
  display: flex;
  justify-content: flex-end;
  gap: 3.5rem;
}

header nav .menu>li {
  position: relative;
  z-index: 2;
}

header nav .menu>li::after {
  width: 0;
  height: 2px;
  background-color: var(--theme_color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  content: '';
}

header nav .menu>li>a {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all 0.3s;
  line-height: 7.8rem;
  padding-bottom: 2px;
}

header nav .menu>li.current-menu-item::after,
header nav .menu>li.current-menu-parent::after,
header nav .menu>li:hover::after {
  width: calc(100% - 0.6rem);
}

header nav .menu>li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem;
}

header nav .menu>li:hover ul li {
  transform: translate(0);
}

header nav .menu>li.btn_mega_menu .sub-menu {
  display: none;
}

header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}

header nav .sub-menu>li {
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}

header nav .sub-menu>li>a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
  font-size: 1.5rem;
  position: relative;
}

header nav .sub-menu>li>a:hover {
  color: var(--theme_color);
}

header .btns {
  gap: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 8rem;
}

header .btn_search {
  width: 1.9rem;
  height: 1.9rem;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}

header .btn_lang {
  width: 2.1rem;
  height: 2.1rem;
  cursor: pointer;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
}

header .btn_menu {
  display: none;
}

header .btn {
  font-size: 1.6rem;
  padding: 1.35rem 3.15rem;
  margin-left: 0.6rem;
}

header .btn::before {
  opacity: 0;
}

header .btn:hover::before {
  opacity: 1;
}

footer {
  background: url("../img/footer-bg.jpg") no-repeat center / cover;
}

footer .footer_main {
  padding: 8.6rem 0 7.8rem;
}

footer .footer_main .flex {
  gap: 3.9rem 2rem;
}

footer .slide_solution {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgba(22, 22, 22, 0.17);
  padding-bottom: 7.3rem;
}

footer .slide_solution h2 {
  max-width: 50rem;
}

footer .slide_solution .btn_i {
  padding: 1.7rem 4.5rem;
  margin-top: 1.4rem;
}

footer .slide_solution .btn_i::before {
  opacity: 0;
}

footer .slide_solution .btn_i:hover::before {
  opacity: 1;
}

footer .slide_obj {
  color: #161616;
}

footer .slide_obj strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 2.7rem;
}

footer .slide_obj li {
  margin-bottom: 2rem;
}

footer .slide_obj li:last-child {
  margin-bottom: 0;
}

footer .slide_obj li a {
  font-size: 1.8rem;
  font-weight: 400;
  opacity: 0.8;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}

footer .slide_obj li a:hover {
  opacity: 1;
  text-decoration-color: var(--theme_color);
  color: var(--theme_color);
}

footer .slide_connect {
  width: 30.5rem;
}

footer .slide_connect li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.8rem;
}

footer .slide_connect li::before {
  content: '';
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background: no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 2px;
}

footer .slide_connect li a {
  opacity: 1;
  font-weight: 700;
}

footer .slide_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
}

footer .slide_connect .email::before {
  background-image: url(../img/icon-email.svg);
}

footer .slide_connect .whatsapp::before {
  background-image: url(../img/whatsapp.svg);
}

footer .slide_connect .wechat::before {
  background-image: url(../img/wechat.svg);
}

footer .slide_logo {
  margin-top: 8.9rem;
  width: 100%;
}

footer .slide_logo .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  max-width: 8.5rem;
}

footer .slide_logo .logo img {
  display: block;
  width: 100%;
  height: auto;
}

footer .slide_logo .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}

footer .copyright {
  padding: 1.6rem 0;
  background-color: var(--title_color);
}

footer .copyright p {
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  opacity: 0.85;
}

footer .copyright .social {
  gap: 2rem 2.9rem;
  display: flex;
  flex-wrap: wrap;
}

footer .copyright .social a {
  opacity: 1;
  display: block;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}

footer .copyright .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}

footer .copyright .social a:hover {
  transform: scale(1.1);
}

footer .copyright .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}

footer .copyright .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}

footer .copyright .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}

footer .copyright .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}

footer .copyright .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}

.product_item.active a,
.product_item:hover a {
  box-shadow: 0 0 10px rgba(156, 159, 161, 0.25);
}

.product_item.active .info .btn,
.product_item:hover .info .btn {
  transform: translateY(0);
  opacity: 1;
}

.product_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.3s;
}

.product_item a:hover img {
  transform: scale(1.02);
}

.product_item .img {
  width: 100%;
  padding-bottom: 91.8%;
}

.product_item .info {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 3rem 7.44% 3.1rem;
}

.product_item .info strong {
  font-size: 1.8rem;
  color: #868686;
  display: block;
  margin-bottom: 1.1rem;
}

.product_item .info h3 {
  font-size: 2.2rem;
  line-height: 3.2rem;
  font-weight: 900;
  margin-bottom: 2.7rem;
}

.product_item .info .btn {
  margin-top: auto;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s, opacity 0.3s;
}

.blog_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog_item a:hover img {
  transform: scale(1.02);
}

.blog_item .img {
  width: 100%;
  border-radius: 9px;
  padding-bottom: 67.43%;
}

.blog_item .info {
  flex: 1;
  margin-top: 2.1rem;
}

.blog_item .metas {
  font-size: 1.5rem;
  color: #595959;
  display: flex;
  gap: 0.7rem;
}

.blog_item .metas .cat {
  font-weight: 700;
  color: var(--theme_color);
}

.blog_item h3 {
  font-size: 2.4rem;
  line-height: 3rem;
  color: #19191e;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1.4rem;
}

.page_banner {
  position: relative;
  z-index: 2;
}

.page_banner::after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, #000, transparent);
  content: '';
  z-index: -1;
  opacity: 0.36;
}

.page_banner .flex {
  min-height: 60.7rem;
  padding: 4rem;
}

.page_banner .head {
  color: #fff;
  max-width: 53.4rem;
}

.page_banner .head p {
  line-height: 1.7;
  margin-top: 2rem;
}

.page_banner .btn_i {
  margin-top: 4rem;
}

nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

nav.navigation .page-numbers {
  border: 1px solid #cecece;
  transition: all 0.3s;
  font-size: 2.1rem;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  border-radius: 4px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 0 1rem;
}

nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  border-color: var(--theme_color);
  color: var(--theme_color);
}

nav.navigation .page-numbers.current::after,
nav.navigation .page-numbers:hover::after {
  filter: unset;
}

nav.navigation .prev,
nav.navigation .next {
  text-indent: -999px;
  overflow: hidden;
  padding: 0;
}

nav.navigation .prev::after,
nav.navigation .next::after {
  width: 100%;
  height: 100%;
  background: url("../img/arrow.svg") no-repeat center / 20%;
  content: '';
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
}

nav.navigation .next::after {
  transform: rotate(180deg);
}


.home_products {
  padding: 8.45rem 0 6.35rem;
}

.home_products .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 6.9rem;
  margin-top: 1.5rem;
}

.home_products .nav_list .nav_item {
  font-size: 2rem;
  font-weight: 700;
  color: #757575;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  padding: 1.7rem 0;
}

.home_products .nav_list .nav_item:after {
  width: 0;
  height: 0.4rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  transition: all 0.3s;
  background-color: #16cc3e;
}

.home_products .nav_list .nav_item.active,
.home_products .nav_list .nav_item:hover {
  color: #161616;
}

.home_products .nav_list .nav_item.active::after,
.home_products .nav_list .nav_item:hover::after {
  width: calc(100% + 3.5rem);
}

.home_products .home_products_swiper {
  margin-top: 2.25rem;
}

.home_products .swiper_btns {
  top: 54.5%;
}

.home_products p.center:has(.btn_line) {
  margin-top: 3.5rem;
}

.home_products .item {
  display: none;
}

.home_products .item.active {
  display: block;
}



.btn_mega_menu .sub-menu {
  display: none;
}
.mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 5rem 0;
  display: none;
  background-color: #fff;
}
.mega_menu .flex {
  gap: 4%;
}
.mega_menu .nav {
  width: 25%;
  overflow: auto;
  max-height: calc(100vh - 26rem);
}
.mega_menu .nav::-webkit-scrollbar {
  width: 5px;
}
.mega_menu .nav::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .nav ul {
  gap: 1.5rem;
  display: grid;
}
.mega_menu .nav a {
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 15% 1fr;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s;
  padding: 1.2rem 2rem;
}
.mega_menu .nav a.active {
  background-color: #edeef2;
}
.mega_menu .nav .sub {
  gap: 8px;
  display: grid;
  padding-top: 1rem;
  padding-left: 2rem;
}
.mega_menu .nav .sub a {
  font-size: 1.5rem;
}
.mega_menu .list {
  flex: 1;
  display: none;
  overflow: auto;
  max-height: calc(100vh - 26rem);
}
.mega_menu .list::-webkit-scrollbar {
  width: 5px;
}
.mega_menu .list::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .list.active {
  display: block;
}
.mega_menu .list ul {
  gap: 2rem 4%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.mega_menu .list li a {
  text-align: center;
}
.mega_menu .list li a:hover img {
  transform: scale(1.03);
}
.mega_menu .list li .img {
  padding-bottom: 80%;
  overflow: hidden;
}
.mega_menu .list li .title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1rem;
}
.mega_menu .list .btn {
  margin-top: 5rem;
}
.mega_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.mega_overlay.active {
  opacity: 1;
  pointer-events: all;
}



/*** global css ***/
.empty_img {
  max-width: 388px;
  margin: 0 auto;
  display: block;
}

.loading {
  position: relative;
}

.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../global/img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}

div.search-block {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}

div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}

div.search-block div.content {
  position: relative;
  display: block;
}

.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../../global/img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}

.wd-action-btn:hover {
  transform: rotate(180deg);
}

div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}

div.search-block.active .searchform {
  opacity: 1;
}

div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}

header div.main-menu div.main div.right {
  display: none;
}

div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}

/*** global css ***/



.social_sidebar {
  position: fixed;
  right: 15px;
  top: 50%;
  z-index: 999;
  transform: translateY(-50%);
}
.social_sidebar ul {
  display: grid;
  gap: .5rem;
}
.social_sidebar a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: #444444;
  overflow: hidden;
  text-indent: -999px;
  transition: all .3s;
  position: relative;
}
.social_sidebar a:hover {
  transform: scale(1.2);
  background-color: #565656;
}
.social_sidebar a::after {
  content: '';
  display: block;
  width: 55%;
  height: 55%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: contrast(0) brightness(2);
  background: no-repeat center/contain;
}
.social_sidebar .phone a::after {
  background-image: url(../img/icon-phone.svg);
}
.social_sidebar .email a::after {
  background-image: url(../img/icon-email.svg);
}
.social_sidebar .whatsapp a::after {
  background-image: url(../img/whatsapp.svg);
}


.lang_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  opacity: 0;
}
.lang_modal.active {
  opacity: 1;
  pointer-events: all;
}
.lang_modal.active .modal_content {
  transform: translate(0);
}
.lang_modal > .close {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.75);
}
.lang_modal .modal_content {
  width: calc(100% - 3.8rem);
  max-width: 70rem;
  transition: all cubic-bezier(0.5, 0, 0.5, 1.5) 0.35s;
  background-color: #fff;
  overflow: auto;
  padding: 20px 4rem 4.8rem 4.8rem;
  border-radius: 12px;
  transform: scale(0.9);
}
.lang_modal .modal_content .close {
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all .3s;
  margin: 0 -1rem 2rem auto;
  filter: contrast(0) brightness(0);
  background: url(../img/mobile-menu/close.svg) no-repeat center/1rem;
}
.lang_modal .modal_content .close:hover {
  background-color: rgba(0, 0, 0, 0.08);
}
.lang_modal .modal_content .gtranslate_wrapper {
  display: grid;
  gap: 1.6rem;
  max-height: 60vh;
  overflow: auto;
  padding-right: 8px;
  grid-template-columns: repeat(2, 1fr);
  &::-webkit-scrollbar {
    width: 5px;
  }
  &::-webkit-scrollbar-thumb {
    background: rgb(136, 136, 136);
    border-radius: 100px;
  }
}
.lang_modal .modal_content .gtranslate_wrapper a {
  display: grid;
  gap: 12px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  padding: 1.6rem 2rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all .3s;
}
.lang_modal .modal_content .gtranslate_wrapper a img {
  border-radius: 50%;
  border: 1px solid #fff;
  width: 3.25rem;
  height: 3.25rem;
  overflow: hidden;
  display: block;
  object-fit: cover;
  opacity: 1;
}
.lang_modal .modal_content .gtranslate_wrapper a span {
  font-size: 1.6rem;
  font-weight: 500;
  transition: all .3s;
}
.lang_modal .modal_content .gtranslate_wrapper a:hover {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
  span {
    color: #fff;
  }
}