:root {
  --theme_color: #a23424;
  --title_color: #1d1d1d;
  --content_color: #808080;
}
html {
  font-size: 10px;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.content_big {
  margin: 0 auto;
  position: relative;
  max-width: 138.2rem;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 125rem;
  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: 'Roboto', 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-image: linear-gradient(to top, #faf5f4, #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;
}
.head strong {
  display: block;
  font-weight: normal;
  color: var(--theme_color);
  text-transform: uppercase;
  line-height: 1.5;
}
.head h2 {
  font-size: 4.4rem;
  line-height: 6.1rem;
  font-weight: 700;
  color: var(--title_color);
}
.btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  transition: all 0.3s;
  border-radius: 4px;
  border: 1px solid var(--theme_color);
  background-color: var(--theme_color);
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 1.5rem 4.1rem;
}
.btn:hover {
  color: var(--theme_color);
  background-color: transparent;
}
.btn_w {
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  transition: all 0.3s;
  border-radius: 6px;
  border: 1px solid #fff;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 600;
  color: var(--title_color);
  padding: 2.3rem 5.2rem;
}
.btn_w:hover {
  color: #fff;
  background-color: transparent;
}
.btn_more {
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  transition: all 0.3s;
  border-radius: 4px;
  border: 1px solid #c4c4c4;
  background-color: transparent;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--title_color);
  text-transform: uppercase;
  padding: 1.5rem 5.8rem;
}
.btn_more:hover {
  color: #fff;
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.swiper_btns {
  display: flex;
}
.swiper_btns div {
  width: 1.6rem;
  height: 3rem;
  cursor: pointer;
  transition: all 0.3s;
  background: url(../img/arrow-b.svg) no-repeat center / contain;
}
.swiper_btns .btn_next {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 140.4rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  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;
}
.nav_list ul {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 5.409836%;
}
.nav_list .nav_item {
  cursor: pointer;
  display: block;
  font-size: 2rem;
  color: #777d80;
  position: relative;
  transition: all 0.3s;
  padding: 2.2rem 0;
}
.nav_list .nav_item::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  transition: all 0.3s;
  background-color: var(--theme_color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.nav_list .nav_item:hover,
.nav_list .nav_item.active {
  color: var(--title_color);
}
.nav_list .nav_item:hover::after,
.nav_list .nav_item.active::after {
  width: 100%;
}
.nav_list .nav_item.active {
  font-weight: 500;
}
header {
  position: sticky;
  top: -9.2rem;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.sticky {
  top: 0;
}
header .header_top {
  padding: 2.5rem 0 1.8rem;
  border-bottom: 1px solid rgba(181, 181, 181, 0.25);
}
header .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  transform: translateY(-0.4rem);
}
header .logo img {
  display: block;
  width: 17.3rem;
  height: auto;
}
header .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
header .header_contact {
  gap: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header_contact .label {
  color: #636363;
  font-size: 1.2rem;
  font-weight: 300;
}
header .header_contact .phone {
  position: relative;
  padding-left: 4.2rem;
}
header .header_contact .phone::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 3rem;
  height: 3rem;
  background: url(../img/icon-phone1.svg) no-repeat center / contain;
  transform: translateY(-50%);
}
header .header_contact .email {
  position: relative;
  padding-left: 4.2rem;
}
header .header_contact .email::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 3rem;
  height: 3rem;
  background: url(../img/icon-email1.svg) no-repeat center / contain;
  transform: translateY(-50%);
}
header .header_contact a[target="_blank"] {
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s;
  display: block;
  margin-top: 0.7rem;
}
header .header_contact a[target="_blank"]:hover {
  color: var(--theme_color);
}
header .header_contact .btn {
  margin-left: 0.4rem;
  font-size: 1.6rem;
  padding: 1.3rem 3rem 1.4rem;
}
header .btn_search,
header .btn_menu {
  display: none;
}
header nav .menu {
  display: flex;
  gap: 6rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--theme_color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  transition: all 0.3s;
  padding: 1.9rem 0 2rem;
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  width: 100%;
}
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 .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::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--theme_color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover::after {
  width: 100%;
}
header .header_search form {
  width: 17.5rem;
  display: grid;
  transition: all .3s;
  grid-template-columns: 1fr auto;
}
header .header_search form:focus-within {
  width: 20rem;
}
header .header_search input[type="text"] {
  width: 100%;
  display: block;
  color: var(--title_color);
  font-size: 1.4rem;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(181, 181, 181, 0.25);
}
header .header_search input[type="text"]::placeholder {
  color: #231815;
}
header .header_search input[type="text"]:hover,
header .header_search input[type="text"]:focus {
  border-color: var(--theme_color);
}
header .header_search input[type="submit"] {
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / 1.9rem;
}
footer {
  color: #fff;
  background-color: #141414;
  font-family: "Montserrat", sans-serif;
}
footer .go_to_top {
  position: fixed;
  left: 0;
  bottom: 32px;
  width: 100%;
  z-index: 997;
  pointer-events: none;
}
footer .go_to_top a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  pointer-events: all;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(-45deg, #c8ccce, #dedfe0, #f5f6f7, #c8ccce);
}
footer .go_to_top a:hover {
  transform: scale(1.2);
}
footer .go_to_top a::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/arrow-top.svg) no-repeat center / contain;
}
footer .footer_main {
  padding: 9rem 0 19rem;
}
footer .footer_main .flex {
  gap: 5rem 2rem;
}
footer .footer_main strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 3.2rem;
}
footer .footer_main .slide_obj li + li {
  margin-top: 1.6rem;
}
footer .footer_main .slide_obj a {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  vertical-align: top;
  transition: all 0.3s;
}
footer .footer_main .slide_obj a:hover {
  color: #fff;
}
footer .footer_main .slide_follow {
  width: 29rem;
  margin-right: 3%;
}
footer .footer_main .slide_follow .social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 14.482759%;
}
footer .footer_main .slide_follow .social a {
  opacity: 1;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .footer_main .slide_follow .social a::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: no-repeat center / contain;
}
footer .footer_main .slide_follow .social a:hover {
  transform: scale(1.1);
}
footer .footer_main .slide_follow .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .footer_main .slide_follow .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .footer_main .slide_follow .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .footer_main .slide_follow .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .footer_main .slide_follow .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .footer_main .slide_contact {
  width: 30rem;
}
footer .footer_main .slide_contact li {
  position: relative;
  padding-left: 6.8rem;
  padding-top: 0.4rem;
}
footer .footer_main .slide_contact li::before {
  content: '';
  display: block;
  width: 5rem;
  height: 5rem;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: no-repeat center / 1.8rem 1.6rem rgba(255, 255, 255, 0.06);
}
footer .footer_main .slide_contact li + li {
  margin-top: 4rem;
}
footer .footer_main .slide_contact .phone::before {
  background-image: url(../img/icon-phone2.svg);
}
footer .footer_main .slide_contact .email::before {
  background-image: url(../img/icon-email2.svg);
}
footer .footer_main .slide_contact a {
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s;
}
footer .footer_main .slide_contact a:hover {
  color: var(--theme_color);
}
footer .footer_main .slide_contact .label {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.65);
}
footer .footer_bottom {
  padding: 3.2rem 0;
}
footer .footer_bottom .flex::after {
  content: '';
  display: block;
  width: 17.3rem;
}
footer .footer_bottom .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
}
footer .footer_bottom .logo img {
  display: block;
  width: 17.3rem;
  height: auto;
}
footer .footer_bottom .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
footer .footer_bottom .copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}
.footer_contact {
  color: #fff;
  background: url(../img/cta.jpg) no-repeat center right / cover;
}
.footer_contact .flex {
  padding: 6rem 0;
  min-height: 38rem;
}
.footer_contact .head {
  max-width: 82.2rem;
}
.footer_contact .head h2 {
  color: #fff;
}
.footer_contact .btn_w {
  margin-top: 4rem;
}
.product_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(197, 197, 197, 0.35);
  padding: 2.2rem 7.692308% 3rem;
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list a:hover .btn_more {
  color: #fff;
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.product_list .img {
  padding-bottom: 100%;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 0.6rem;
}
.product_list .info .cat {
  color: var(--theme_color);
}
.product_list .info .title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.8rem;
  margin-top: 1.4rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .info .desc {
  color: var(--content_color);
  line-height: 2.6rem;
  margin-bottom: auto;
  margin-top: 1.5rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .info .btn_more {
  margin-top: 2.6rem;
}
.blog_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(135, 146, 54, 0.2);
}
.blog_list a:hover img {
  transform: scale(1.03);
}
.blog_list a:hover .more {
  text-decoration: underline;
}
.blog_list a:hover .more::after {
  transform: translateX(100%);
}
.blog_list .img {
  border-radius: 8px;
  padding-bottom: 70.408163%;
}
.blog_list .info {
  flex: 1;
  position: relative;
  padding: 6.2rem 6.377551% 2.5rem;
}
.blog_list .info .date {
  width: 11.2rem;
  height: 11.2rem;
  border-radius: 50%;
  position: absolute;
  left: 6.377551%;
  top: 0;
  transform: translateY(-60%);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-size: 2rem;
  color: #333333;
  text-align: center;
  text-transform: uppercase;
  background-color: #f7f7f7;
  border: 1rem solid #fff;
  box-shadow: 0 0 10px rgba(135, 146, 154, 0.2);
}
.blog_list .info .date .day {
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--theme_color);
  margin-bottom: -2px;
}
.blog_list .info .title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3.2rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_list .info .desc {
  color: var(--content_color);
  font-size: 1.7rem;
  line-height: 2.6rem;
  margin-bottom: auto;
  margin-top: 1.8rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_list .info .more {
  gap: 1rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  color: var(--theme_color);
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  overflow: hidden;
  border-top: 1px solid #ededed;
  padding-top: 2rem;
  margin-top: 4.6rem;
}
.blog_list .info .more::after {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1rem;
  transition: all 0.3s;
  background: url(../img/arrow-line.svg) no-repeat center / contain;
}
.section_banner {
  background: no-repeat center / cover;
}
.section_banner .flex {
  min-height: 63.8rem;
  padding: 8rem 0;
}
.section_banner .head {
  color: #c6c6c6;
  line-height: 2.6rem;
  max-width: 62rem;
  padding-bottom: 2.4rem;
}
.section_banner .head strong {
  font-size: 2rem;
  margin-bottom: 2.2rem;
}
.section_banner .head h1 {
  color: #fff;
  font-size: 5.4rem;
  line-height: 7rem;
  font-weight: 700;
}
.section_banner .head p {
  margin-top: 3.2rem;
  max-width: 55.3rem;
}
.section_banner .head .btn {
  font-size: 1.6rem;
  padding: 1.2rem 4.6rem;
  margin-top: 3.8rem;
}
.section_product {
  padding: 10rem 0 13.8rem;
}
.section_product .head {
  color: var(--content_color);
  font-size: 1.7rem;
  line-height: 2.6rem;
  max-width: 109.6rem;
  margin: 0 auto;
}
.section_product .head strong {
  margin-bottom: 1.5rem;
}
.section_product .head p {
  margin: 2.6rem auto 0;
  max-width: 71.6rem;
}
.section_product .swiper_box {
  margin-top: 2.4rem;
}
.section_product p.center {
  margin-top: 5.2rem;
}
.section_blog {
  padding: 10.8rem 0 9.4rem;
}
.section_blog .head {
  color: var(--content_color);
  font-size: 1.7rem;
  line-height: 2.6rem;
  max-width: 109.6rem;
  margin: 0 auto;
}
.section_blog .head strong {
  margin-bottom: 1.7rem;
}
.section_blog .head p {
  margin: 2.6rem auto 0;
  max-width: 71.6rem;
}
.section_blog .nav_list {
  margin-top: 1.8rem;
}
.section_blog .swiper_box {
  display: none;
  margin-top: 3.5rem;
}
.section_blog .swiper_box.active {
  display: block;
}
.section_blog p.center {
  margin-top: 7.2rem;
}



.social_sidebar {
  position: fixed;
  right: max(20px, 5vw);
  top: 50%;
  z-index: 997;
  transform: translateY(-50%);
}
.social_sidebar ul {
  display: grid;
  gap: 12px;
}
.social_sidebar a {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-indent: -999px;
  transition: all .3s;
  position: relative;
}
.social_sidebar a:hover {
  transform: scale(1.1);
  background-color: var(--theme_color);
}
.social_sidebar a:hover::after {
  filter: contrast(0) brightness(2);
}
.social_sidebar a::after {
  content: '';
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all .3s;
  transform: translate(-50%, -50%);
  background: no-repeat center/contain;
}
.social_sidebar .phone a::after {
  background-image: url(../img/icon-phone1.svg);
}
.social_sidebar .email a::after {
  background-image: url(../img/icon-email1.svg);
}
.social_sidebar .whatsapp a::after {
  width: 60%;
  height: 60%;
  background-size: contain;
  background-image: url(../img/whatsapp.svg);
}
.social_sidebar .top a::after {
  background-image: url(../img/btn-top.svg);
}



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




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-b.svg") no-repeat center / 20%;
  content: '';
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
}
nav.navigation .next::after {
  transform: rotate(180deg);
}



/*** 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: 20px;
  top: 20px;
  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 ***/



section.about_certificate {
  background: none;
}
.section_exhibition .swiper_btns div {
  background: none;
}
.about_certificate .swiper_btns div {
  background: none;
}

section.section_banner .head {
  max-width: 86rem;
}