:root {
  --theme_color: #16529b;
  --subtheme_color: #6c98cd;
  --hover_color: #000;
  --title_color: #161616;
  --content_color: #595959;
  --bg_color: #edf2f9;
  --box_color: #e9eff4;
}
html {
  font-size: clamp(7.5px, 0.522vw, 10px);
}
ul {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  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);
  font-family: "Jost", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.prompt {
  font-family: "Prompt", sans-serif;
}
.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;
}
.product_item .img.img_ab img{
  object-fit: cover;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.btn {
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s;
  background-color: var(--theme_color);
  border: 1px solid var(--theme_color);
  font-size: 2rem;
  font-weight: 500;
  padding: 2.05rem 4.95rem;
  position: relative;
}
.btn:hover {
  background-color: #fff;
  color: var(--theme_color);
}
.btn.sm {
  font-size: 1.8rem;
  padding: 1.6rem 4rem 1.8rem;
}
.btn_line {
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  cursor: pointer;
  color: #171717;
  transition: all 0.3s;
  background-color: transparent;
  border: 1px solid rgba(23, 23, 23, 0.5);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.9rem 3.7rem;
}
.btn_line:hover {
  background-color: var(--theme_color);
  color: #fff;
  border-color: var(--theme_color);
}
.btn_line.lar {
  font-size: 1.8rem;
  padding: 1.75rem 5.3rem;
}
.btn_circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  border: 1px solid #000000;
  cursor: pointer;
  transition: all 0.3s;
}
.btn_circle::after {
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  transform: rotate(-45deg);
}
.btn_circle:hover {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.btn_circle:hover::after {
  transform: rotate(0);
  filter: contrast(0) brightness(2);
}
.swiper_btns {
  gap: 6.6rem;
  display: flex;
}
.swiper_btns div {
  width: 3.1rem;
  height: 3.1rem;
  cursor: pointer;
  transition: all 0.3s;
  background: url(../img/arrow-line.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: 164.7rem;
  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 {
  gap: 4.1rem;
}
.swiper_btns.white div {
  filter: contrast(0) brightness(2);
}
.swiper_btns.white div:hover {
  filter: unset;
}
.swiper_btns_circle {
  gap: 2.8rem;
  display: flex;
}
.swiper_btns_circle div {
  width: 5.6rem;
  height: 5.6rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(23, 23, 23, 0.4);
}
.swiper_btns_circle div::after {
  content: '';
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
.swiper_btns_circle div:hover {
  background-color: var(--theme_color);
}
.swiper_btns_circle .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns_circle .swiper-button-disabled {
  opacity: 0.68;
  pointer-events: none;
}
.swiper_btns_circle .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns_circle.middle {
  width: 98%;
  max-width: 169.3rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns_circle.middle div {
  pointer-events: all;
}
.swiper_btns_circle.middle .swiper-button-disabled,
.swiper_btns_circle.middle .swiper-button-lock {
  pointer-events: none;
}
.head h1 {
  font-size: 7.2rem;
  line-height: 7.4rem;
  font-weight: 700;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 6.4rem;
  font-weight: 600;
}
.head.sm h2 {
  font-size: 4.6rem;
  line-height: 6.2rem;
  font-weight: 500;
}
header {
  position: sticky;
  top: -8rem;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(218, 218, 218, 0.45);
}
header .flex {
  gap: 0 2rem;
}
header .header_top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header_top .left {
  display: flex;
  align-items: center;
  padding-top: 0.3rem;
}
header .header_top .right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 3.4rem;
  min-height: 9.2rem;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  overflow: hidden;
  position: relative;
}
header .logo img {
  display: block;
  width: auto;
  height: 5.8rem;
}
header .logo p {
  font-size: 3.7rem;
  font-weight: 600;
}
header .info {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 1.5rem;
  padding-top: 0.6rem;
}
header .info::before {
  width: 2.9rem;
  height: 2.9rem;
  grid-row: span 2;
  display: block;
  content: '';
  background: url("../img/icon-phone1.svg") no-repeat center / contain;
  margin-bottom: 2px;
}
header .info span {
  font-size: 1.2rem;
  color: #636363;
}
header .info a {
  margin-top: -2px;
  font-size: 1.8rem;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
header .info a:hover {
  color: var(--theme_color);
  text-decoration-color: var(--theme_color);
}
header nav .menu {
  display: flex;
  gap: 6rem;
}
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: 0;
  content: '';
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.8rem;
  transition: all 0.3s;
  line-height: 4.3rem;
  padding-bottom: 1.1rem;
  font-weight: 400;
}
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.5rem);
}
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::after {
  width: 100%;
}
header nav .sub-menu > li > a:after {
  width: 0;
  height: 2px;
  background-color: var(--theme_color);
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  transition: all 0.3s;
}
header .btns {
  flex: 1;
  gap: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 5.4rem;
}
header .btn_search {
  display: none;
}
header .search {
  flex: 1;
  max-width: 22.6rem;
  padding-bottom: 0.4rem;
}
header .search form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.7rem;
  border-bottom: 1px solid #b2b2b2;
  gap: 1rem;
}
header .search form input[type=text] {
  width: 100%;
  font-size: 1.6rem;
  color: var(--title_color);
  font-weight: 500;
  letter-spacing: -0.3px;
  padding-bottom: 0.4rem;
}
header .search form input[type=text]::placeholder {
  color: var(--title_color);
}
header .search form input[type=submit] {
  width: 100%;
  height: 100%;
  text-indent: -999px;
  overflow: hidden;
  background: url("../img/icon-search.svg") no-repeat center top 1px / contain;
}
header .btn_menu {
  display: none;
}
header .btn {
  font-size: 1.8rem;
  padding: 1.5rem 4.65rem;
}
footer .footer_main {
  padding: 4.3rem 0 11.5rem;
}
footer .footer_main .flex {
  gap: 3.6rem 2rem;
}
footer .slide_intro {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .slide_intro .logo {
  flex: 1;
  display: block;
}
footer .slide_intro .logo p {
  font-size: 23.4rem;
  line-height: 1;
  font-weight: 600;
}
footer .slide_intro .btn_circle {
  width: 16rem;
  height: 16rem;
  border-color: var(--theme_color);
  background-color: var(--theme_color);
  border-width: 2px;
}
footer .slide_intro .btn_circle::after {
  width: 3rem;
  height: 3rem;
  filter: contrast(0) brightness(2);
  transform: rotate(0);
  background-image: url("../img/aroow-r-thin.svg");
}
footer .slide_intro .btn_circle:hover {
  transform: scale(1.05);
  background-color: #fff;
}
footer .slide_intro .btn_circle:hover::after {
  filter: unset;
}
footer .slide_social .social {
  gap: 2rem 3.96rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.3rem;
}
footer .slide_social .social a {
  opacity: 1;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .slide_social .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .slide_social .social a:hover {
  transform: scale(1.1);
}
footer .slide_social .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .slide_social .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .slide_social .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .slide_social .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .slide_social .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .slide_obj strong {
  opacity: 0.44;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
footer .slide_obj li {
  margin-bottom: 1.2rem;
}
footer .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .slide_obj li a {
  font-size: 1.7rem;
  opacity: 0.85;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  font-weight: 500;
}
footer .slide_obj li a:hover {
  opacity: 1;
  text-decoration-color: var(--theme_color);
  color: var(--theme_color);
}
footer .slide_connect {
  width: 21.6rem;
}
footer .slide_connect li {
  position: relative;
  padding-left: 2.9rem;
  margin-bottom: 2.3rem;
}
footer .slide_connect li::before {
  content: '';
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  background: no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 3px;
}
footer .slide_connect li a {
  opacity: 1;
  font-size: 1.8rem;
  font-weight: 500;
}
footer .slide_connect li .label {
  max-width: 18rem;
  opacity: 0.46;
  font-size: 1.5rem;
  margin-top: 0.6rem;
}
footer .slide_connect li.address .label {
  opacity: 1;
  font-weight: 500;
}
footer .slide_connect .phone::before {
  background-image: url(../img/icon-phone1.svg);
}
footer .slide_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .slide_connect .whatsapp::before {
  background-image: url(../img/icon-whatsapp.svg);
}
footer .slide_connect .address::before {
  background-image: url(../img/icon-address.svg);
}
footer .copyright {
  padding: 2rem 0;
}
footer .copyright p,
footer .copyright a {
  color: #939393;
  font-weight: 500;
  font-size: 1.4rem;
}
footer .copyright a {
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .copyright a:hover {
  opacity: 1;
  color: var(--theme_color);
  text-decoration-color: var(--theme_color);
}
footer .copyright ul {
  gap: 2rem 4.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product_item.active .info h3::after,
.product_item:hover .info h3::after {
  width: 100%;
}
.product_item.active .info .btn_circle,
.product_item:hover .info .btn_circle {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.product_item.active .info .btn_circle::after,
.product_item:hover .info .btn_circle::after {
  transform: rotate(0);
  filter: contrast(0) brightness(2);
}
.product_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--box_color);
  border-radius: 2rem;
  overflow: hidden;
}
.product_item a:hover img {
  transform: scale(1.06);
}
.product_item .img_ct {
  width: 100%;
  padding-bottom: 95%;
  margin-bottom: 0;
  overflow: hidden;
}
.product_item .img_cv {
  width: 100%;
  padding-bottom: 86.34%;
}
.product_item .info {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding: 3.2rem 7.8% 3.8rem 8.25%;
}
.product_item .info h3 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.product_item .info h3::after {
  width: 0;
  height: 1px;
  background-color: var(--theme_color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
  content: '';
}
.product_item .info p {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #494949;
  margin-top: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-weight: 500;
}
.product_item .info .btn_circle {
  margin-bottom: 0.6rem;
}
.luxury_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: 2rem;
  overflow: hidden;
}
.luxury_item a:hover img {
  transform: scale(1.02);
}
.luxury_item .img {
  width: 100%;
  padding-bottom: 86.34%;
}
.luxury_item .info {
  flex: 1;
  padding: 3.2rem 8.4% 3.8rem;
}
.luxury_item .info h3 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.luxury_item .info p {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #494949;
  margin-top: 1.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog_list a {
  display: block;
  height: 100%;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  width: 100%;
  border-radius: 10px;
  padding-bottom: 62.168%;
}
.blog_list .info {
  margin-top: 3.2rem;
}
.blog_list .metas {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
.blog_list .metas .cat {
  line-height: 3.1rem;
  color: #000000;
  background-color: rgba(108, 152, 205, 0.28);
  border-radius: 100px;
  padding: 0 2.1rem;
  font-weight: 500;
}
.blog_list .metas .date {
  font-size: 1.4rem;
  color: #3f3f3f;
  opacity: 0.85;
}
.blog_list h3 {
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 500;
  color: #000000;
  margin-top: 1.4rem;
}
.page_say div.swiper-pagination {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  position: static;
  width: 100%;
  margin-top: 5rem;
}
.page_say div.swiper-pagination .swiper-pagination-bullet {
  width: 2.1rem;
  height: 2.1rem;
  background: #fff;
  border: 1px solid #030303;
  opacity: 1;
  margin: 0;
  transition: all 0.4s, opacity 0.3s;
}
.page_say div.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--subtheme_color);
}



/*** 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('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: .5rem;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 1.2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 32px;
  top: 16px;
  cursor: pointer;
  background: url(../img/mobile-menu/close.svg);
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  height: 80vh;
  max-width: 90vw;
  max-height: max-content;
  aspect-ratio: 1920/1080;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video_pop .pop_content iframe, .video_pop .pop_content video {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.quote_modal {
  opacity: 0;
  pointer-events: none;
}
div.quote_modal .modal_content .close {
  width: 32px;
  height: 32px;
  background-size: 50%;
}
div.quote_modal span:has(.btn) {
  margin-top: 12px;
}
div.quote_modal form .wpcf7-spinner {
  left: 100% !important;
  right: unset;
}
/*** global css ***/








.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%;
  padding-right: 5px;
  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: auto 1fr auto;
  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 .icon {
  width: 2.6rem;
  height: 2.6rem;
  background: no-repeat center/contain;
}

.mega_menu .nav .icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mega_menu .nav .toggle {
  cursor: pointer;
  width: 2.6rem;
  height: 2.6rem;
  transition: all .3s;
  background: url(../img/icon-select.svg) no-repeat center/50%;
}

.mega_menu .nav .open .toggle {
  transform: rotate(180deg);
}

.mega_menu .nav .sub {
  display: none;
  padding-top: 1rem;
  padding-left: 2rem;
}

.mega_menu .nav .sub a {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.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(4, 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;
  border-radius: 5px;
}

.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;
}

.products_banner {
  position: relative;
  z-index: 2;
}
.products_banner::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(to right, #000, transparent);
  background-color: transparent !important;
}
section.products_banner {
  color: #fff;
}
section.products_banner p {
  color: rgba(255, 255, 255, 0.9);
}