:root {
  --theme_color: #0a3b95;
  --subtheme_color: #f4671d;
  --hover_color: #000;
  --title_color: #161616;
  --content_color: #4c4c4c;
  --bg_color: #0c3372;
}

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

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

.header_content {
  max-width: 172.9rem;
  margin: 0 auto;
  position: relative;
}

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: "DM Sans", 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 {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
  border-radius: 6px;
  background-color: var(--theme_color);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  padding: 1.8rem 3.9rem;
}

.btn:hover {
  background-color: var(--subtheme_color);
}

.btn_line {
  display: inline-block;
  text-align: center;
  background-color: transparent;
  font-size: 2rem;
  color: var(--title_color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
  border-radius: 6px;
  border: 1px solid rgba(18, 18, 18, 0.5);
  padding: 1.65rem 4.2rem;
}

.btn_line:hover {
  border-color: var(--subtheme_color);
  background-color: var(--subtheme_color);
  color: #fff;
}

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

.swiper_btns div {
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfcfcf;
  background-color: transparent;
}

.swiper_btns div::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / contain;
}

.swiper_btns div:hover {
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}

.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}

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

.swiper_btns .swiper-button-disabled {
  opacity: 0.68;
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(23, 23, 23, 0.45);
}

.swiper_btns .swiper-button-disabled::after {
  filter: none;
}

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

.swiper_btns.middle {
  width: 98%;
  max-width: 166.3rem;
  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;
}

.head h1 {
  font-size: 6.2rem;
  line-height: 7.4rem;
  font-weight: 700;
  letter-spacing: 3px;
}

.head h2 {
  font-size: 4.8rem;
  line-height: 6.2rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.head h2 span {
  color: var(--theme_color);
}

.head strong {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #303030;
  display: block;
  margin-bottom: 1.8rem;
  letter-spacing: 4.5px;
}

header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 992;
  transition: all 0.3s;
  background-color: #fff;
  border-bottom: 1px solid #c9d7de;
}

header.sticky {
  top: -4.8rem;
}

header .header_top {
  background-color: var(--bg_color);
  color: #fff;
  box-shadow: 0 0 5px rgba(128, 128, 128, 0.35);
  padding: 0.8rem 0;
}

header .header_top .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

header .header_main .flex {
  gap: 2rem 6rem;
}

header .header_notice_swiper {
  width: 100%;
  height: 2rem;
  overflow: hidden;
  position: relative;
  padding-left: 2.85rem;
}

header .header_notice_swiper::before {
  width: 2.2rem;
  height: 1.7rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  background: url("../img/icon-msg.svg") no-repeat center / contain;
}

header .header_notice_swiper .swiper-slide {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  font-size: 1.4rem;
  padding-bottom: 2px;
  overflow: hidden;
}

header .header_notice_swiper .swiper-slide a {
  color: var(--subtheme_color);
  transition: all 0.3s;
  font-weight: 500;
  text-decoration: underline;
  margin: 0 0.4rem;
}

header .header_notice_swiper .swiper-slide a:hover {
  text-decoration-color: transparent;
}

header .func {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

header .social {
  display: flex;
  align-items: center;
  gap: 1rem 2.9rem;
  margin-right: 2.5rem;
}

header .social a {
  display: block;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  background: no-repeat center / contain;
  filter: contrast(0) brightness(2);
}

header .social a:hover {
  transform: scale(1.2);
}

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

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

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

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

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

header .header_search {
  width: 22.5rem;
}

header .header_search form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.09);
  outline: 1px solid transparent;
  overflow: hidden;
}

header .header_search form input[type=text] {
  width: 100%;
  padding: 0 1.2rem;
  background-color: transparent;
  color: #fff;
  font-size: 1.4rem;
}

header .header_search form input[type=text]::placeholder {
  color: #fff;
}

header .header_search form input[type=submit] {
  width: 4.2rem;
  height: 3.2rem;
  background: url("../img/icon-search.svg") no-repeat center / 40.4762%;
  text-indent: -999px;
  overflow: hidden;
  transition: all 0.3s;
}

header .header_search form input[type=submit]:hover {
  background-color: var(--subtheme_color);
}

header .lang {
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.14);
  display: grid;
  align-items: center;
  grid-template-columns: 1.7rem 1fr 1rem;
  min-width: 12rem;
  cursor: pointer;
  gap: 0.8rem;
  padding: 0.4rem 1.2rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.4rem;
  transition: all 0.3s;
}

header .lang::before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  transform: translateY(-1px);
}

header .lang::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 60%;
  background: url(../img/select-icon.svg) no-repeat center / contain;
  filter: contrast(0) brightness(2);
}

header .left {
  display: flex;
  align-items: center;
  margin-right: 3.4%;
}

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

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

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

header nav .menu {
  display: flex;
  gap: 5.6rem;
}

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

header nav .menu>li>a {
  display: block;
  font-size: 2.1rem;
  color: #000;
  font-weight: 600;
  transition: all 0.3s;
  line-height: 10rem;
  padding-top: 2px;
}

header nav .menu>li.current-menu-item>a,
header nav .menu>li.current-menu-parent>a,
header nav .menu>li:hover>a {
  color: var(--theme_color);
}

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

.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: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 10.2rem;
}

header .btn_menu,
header .btn_search,
header .btn_lang {
  display: none;
}

header .btn {
  font-size: 2rem;
  padding: 1.7rem 3.75rem;
}

footer {
  background-color: var(--bg_color);
  color: #fff;
}

footer .footer_main {
  background-color: var(--theme_color);
  position: relative;
  z-index: 2;
  padding: 16.6rem 0 15.4rem;
}

footer .footer_main::before {
  width: 35.15625%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/footer-bg2.png") no-repeat center / 100% 100%;
  content: '';
  z-index: -1;
  pointer-events: none;
}

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

footer .slide_intro {
  width: 30.3rem;
  margin-top: -6rem;
  margin-right: 4.1%;
}

footer .slide_intro .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  max-width: 17rem;
  filter: contrast(0) brightness(2);
}

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

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

footer .slide_intro p {
  font-size: 1.7rem;
  line-height: 2.8rem;
  opacity: 0.85;
  margin-top: 2.7rem;
}

footer .slide_intro .menu {
  gap: 1rem;
  display: grid;
  margin-top: 3.3rem;
}

footer .slide_intro .menu ul {
  display: grid;
  gap: 16px;
}

footer .slide_intro .menu a {
  font-size: 1.8rem;
  font-weight: 500;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  border-radius: 6px;
  gap: 1rem;
  background-color: var(--theme_color);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.4s;
  padding: 1rem 2.4rem 1rem 2.7rem;
  min-height: 5.8rem;
}

footer .slide_intro .menu a::after {
  content: '';
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  transition: all 0.4s;
  background: url(../img/arrow-tr.svg) no-repeat center / contain;
}

footer .slide_intro .menu a:hover {
  background-color: var(--subtheme_color);
}

footer .slide_intro .menu a:hover::after {
  transform: rotate(45deg);
}

footer .slide_obj strong {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 3.1rem;
}

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

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

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

footer .slide_subscribe {
  width: 37.4rem;
}

footer .slide_subscribe p {
  font-size: 1.7rem;
  opacity: 0.85;
}

footer .slide_subscribe form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  margin-top: 2.6rem;
}

footer .slide_subscribe form input[type=email] {
  width: 100%;
  font-size: 1.7rem;
  font-weight: 500;
  border-radius: 6px;
  background-color: var(--bg_color);
  color: #fff;
  padding: 1rem 2.35rem 1.4rem;
}

footer .slide_subscribe form input[type=email]::placeholder {
  color: #fff;
}

footer .slide_subscribe form input[type=submit] {
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 8px;
  overflow: hidden;
  text-indent: -999px;
  background: url("../img/icon-email.svg") no-repeat center / 41.4% var(--subtheme_color);
  transition: all 0.4s;
}

footer .slide_subscribe form input[type=submit]:hover {
  background-color: var(--bg_color);
}

footer .slide_subscribe .social {
  gap: 2rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}

footer .slide_subscribe .social li {
  margin-bottom: 0;
}

footer .slide_subscribe .social a {
  opacity: 1;
  display: block;
  width: 5.1rem;
  height: 5.1rem;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
  background-color: var(--bg_color);
  position: relative;
  transition: all 0.3s;
}

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

footer .slide_subscribe .social a:hover {
  transform: scale(1.1);
  background-color: var(--subtheme_color);
}

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

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

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

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

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

footer .copyright {
  padding: 1.9rem 0 2.1rem;
}

footer .copyright p,
footer .copyright a {
  font-size: 1.4rem;
  opacity: 0.88;
}

footer .copyright a {
  opacity: 1;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}

footer .copyright a:hover {
  text-decoration-color: var(--subtheme_color);
  color: var(--subtheme_color);
}

footer .copyright ul {
  gap: 2rem 5.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

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

.footer_contact::before {
  width: 93.90625%;
  height: 100%;
  background: url("../img/footer-bg1.png") no-repeat center / 100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  z-index: -1;
  pointer-events: none;
}

.footer_contact .flex {
  min-height: 41rem;
}

.footer_contact .img {
  width: 48.0714%;
  margin-top: -6.4%;
}

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

.footer_contact .head {
  flex: 1;
  max-width: 53.9rem;
  padding: 2.6rem 0 2rem;
}

.footer_contact h2 {
  font-size: 4.4rem;
  line-height: 5.7rem;
  max-width: 48.3rem;
}

.footer_contact p {
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: var(--content_color);
  margin-top: 1.4rem;
}

.footer_contact .btn {
  margin-top: 2.3rem;
}

.product_item.active a {
  box-shadow: 0 10px 10px rgba(181, 183, 190, 0.45);
  background-position: 100%;
}

.product_item.active .info {
  transform: translateY(0);
}

.product_item.active .btn {
  opacity: 1;
}

.product_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  background-image: linear-gradient(52.8deg, #e1e7ec, #fff, #fff);
  background-size: 300%;
  background-position: 0%;
  transition: all 0.3s;
  border: 1px solid #e7eaec;
  overflow: hidden;
}

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

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

.product_item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 8.75% 2.3rem;
  transition: all 0.4s;
  transform: translateY(5.7rem);
}

.product_item h3 {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 1.3rem;
  margin-bottom: 1.6rem;
}

.product_item ul {
  margin-bottom: 1.5rem;
}

.product_item ul li {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.product_item ul li:last-child {
  margin-bottom: 0;
}

.product_item ul strong {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.68;
  display: block;
  margin-bottom: 0.4rem;
}

.product_item .btn {
  margin-top: auto;
  width: 100%;
  opacity: 0;
  padding: 1.5rem 2rem;
}

.home_products {
  padding: 5.4rem 0 6rem;
}

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

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

.home_products .nav_list .nav_item.active,
.home_products .nav_list .nav_item:hover {
  color: #242424;
  font-weight: 600;
}

.home_products .nav_list .nav_item.active::after,
.home_products .nav_list .nav_item:hover::after {
  width: 100%;
}

.home_products .nav_list .nav_item::after {
  width: 0;
  height: 2.5px;
  background-color: var(--theme_color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  content: '';
}

.home_products .home_products_swiper {
  margin-top: 1.2rem;
  padding: 0.5rem 0;
}

.home_products .swiper_btns {
  top: 50.7%;
}

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

.blogs_section {
  padding: 8.7rem 0 8.3rem;
}

.blogs_section .head {
  padding-bottom: 0.5rem;
}

.blogs_section .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4.15rem;
}

.blogs_section .nav_list .nav_item {
  font-size: 2rem;
  color: #515151;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  padding: 1.6rem 0;
}

.blogs_section .nav_list .nav_item.active,
.blogs_section .nav_list .nav_item:hover {
  color: #242424;
  font-weight: 600;
}

.blogs_section .nav_list .nav_item.active::after,
.blogs_section .nav_list .nav_item:hover::after {
  width: 100%;
}

.blogs_section .nav_list .nav_item::after {
  width: 0;
  height: 2.5px;
  background-color: var(--theme_color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  content: '';
}

.blogs_section .blogs_swiper {
  margin-top: 3.5rem;
  padding: 0.5rem 0;
}

.blogs_section .swiper_btns {
  top: 48.8%;
}

.blogs_section p.center:has(.btn_line) {
  margin-top: 4.3rem;
}

.blog_item.active a {
  box-shadow: 15px 10px 15px rgba(154, 154, 154, 0.35);
}

.blog_item.active .desc {
  transform: translateY(0);
}

.blog_item.active .more {
  opacity: 0;
  transform: translateY(-1rem);
}

.blog_item.active p {
  opacity: 1;
}

.blog_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
}

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

.blog_item .img {
  width: 100%;
  padding-bottom: 69%;
}

.blog_item .info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2.8rem 6.5% 4rem;
}

.blog_item .metas {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.7rem;
  color: rgba(63, 63, 63, 0.85);
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}

.blog_item .metas .cat {
  font-weight: 600;
  color: var(--theme_color);
  text-transform: uppercase;
}

.blog_item h3 {
  font-size: 2.2rem;
  line-height: 3rem;
  color: #25292d;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 1.7rem;
}

.blog_item .desc {
  position: relative;
  border-top: 1px solid #e3e3e3;
  padding-top: 1.7rem;
  transition: all 0.3s 0.08s;
  overflow: hidden;
  transform: translateY(4.9rem);
  margin-top: auto;
}

.blog_item p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--content_color);
  opacity: 0;
  transition: all 0.4s, opacity 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.blog_item .more {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  top: 2.2rem;
  transition: all 0.4s, opacity 0.3s;
}

.blog_item .more i {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-block;
  content: '';
  border-radius: 6px;
  background-color: var(--theme_color);
}

.blog_item .more i::after {
  width: 100%;
  height: 100%;
  display: block;
  filter: contrast(0) brightness(2);
  background: url("../img/arrow-line.svg") no-repeat center / 44.444%;
  content: '';
}

.page_banner {
  position: relative;
  z-index: 2;
  padding: 10rem 0;
}

.page_banner::before {
  width: 62.1875%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #040f16 40%, transparent);
  opacity: 0.24;
  content: '';
  z-index: -1;
  pointer-events: none;
}

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

.page_banner .head {
  max-width: 69.5rem;
  color: #fff;
  padding-top: 2px;
}

.page_banner p {
  font-size: 1.7rem;
  line-height: 3.2rem;
  opacity: 0.85;
  margin-top: 2.2rem;
}

.page_banner .btn {
  background-color: var(--subtheme_color);
  margin-top: 3.1rem;
}

.page_banner .btn:hover {
  background-color: var(--theme_color);
}

nav.navigation {
  margin-top: 6rem;
}

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



/*** 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 form#sytech-newsletter-subscription {
  display: grid;
}

div form#sytech-newsletter-subscription p.success.active,
div form#sytech-newsletter-subscription p.failed.active {
  top: -6rem;
}

div form#sytech-newsletter-subscription p.success,
div form#sytech-newsletter-subscription p.failed {
  opacity: 1;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
  background-color: var(--subtheme_color);
  max-width: 22rem;
  padding: 1rem 1rem 1rem 3rem;
}

div form#sytech-newsletter-subscription p.success::before,
div form#sytech-newsletter-subscription p.failed::before {
  left: 1rem;
  top: 1rem;
  width: 1.2rem;
  height: 1.2rem;
  filter: contrast(0) brightness(2);
}

div form#sytech-newsletter-subscription p.success::after,
div form#sytech-newsletter-subscription p.failed::after {
  bottom: unset;
  top: 100%;
  border-top-color: var(--subtheme_color);
}

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


.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 ***/

section.contact_touch {
  background-color: transparent;
}

.footer_bottombar {
  width: 100%;
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.footer_bottombar ul {
  display: flex;
}
.footer_bottombar li {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer_bottombar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-area: 8px;
  padding: 8px;
  font-size: 14px;
}

.footer_bottombar a::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  filter: contrast(0) brightness(0);
  background: no-repeat center/contain;
}

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

.footer_bottombar .email a::before {
  background-image: url(../img/icon-email2.svg);
}

@media screen and (min-width: 769px) {
  body .quote_modal .inner {
    padding: 20px 4rem 4.5rem 4.5rem;
  }
}