:root {
  --theme_color: #00a2ea;
  --subtheme_color: #093258;
  --hover_color: #000;
  --title_color: #093258;
  --content_color: #3d3d3d;
  --bg_color: linear-gradient(to right, #000, #000);
}
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: 1470px;
  margin: 0 auto;
  position: relative;
  padding: 15px;
  overflow: hidden;
}
.header_content {
  max-width: 1724px;
  margin: 0 auto;
  position: relative;
}
.banner_content {
  max-width: 1554px;
  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 {
  color: var(--content_color);
  font-family: 'Poppins', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.content .content {
  padding: 0;
}
.gap {
  gap: 1.25rem;
}
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;
  aspect-ratio: 1;
  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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s;
}
.img.img_ct img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.5s;
}
.btn {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 22px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
  gap: 12px;
  cursor: pointer;
  color: #fff;
  padding: 18px 26px;
  min-width: 192px;
  background-color: var(--theme_color);
  border: 1px solid var(--theme_color);
}
.btn:hover {
  background-color: #ffffff;
  color: var(--title_color);
}
.btn_more {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 17px;
  line-height: 2;
  background-color: #ebeef0;
  color: var(--title_color);
  cursor: pointer;
  padding: 9.5px 26px;
}
.btn_more:hover {
  color: #fff;
  background-color: var(--theme_color);
}
.btn_circle {
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 52px;
  aspect-ratio: 1;
  content: '';
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid var(--theme_color);
  background-color: var(--theme_color);
}
.btn_circle::after {
  width: 13px;
  height: 11px;
  content: '';
  display: block;
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.btn_circle:hover {
  background-color: var(--subtheme_color);
  border-color: var(--subtheme_color);
}
.swiper_btns {
  display: flex;
  gap: 30px;
}
.swiper_btns div {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--theme_color);
  border: 1px solid var(--theme_color);
  transition: all 0.3s;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 7px;
  height: 13px;
  transition: all 0.3s;
  background: url(../img/arrow-b.svg) no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--subtheme_color);
  background-color: var(--subtheme_color);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  border-color: rgba(23, 23, 23, 0.5);
  background-color: transparent;
  pointer-events: none;
}
.swiper_btns .swiper-button-disabled::after {
  filter: unset;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 1540px;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns div.swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.scrollbar_box {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  gap: 18px;
}
.scrollbar_box.white {
  color: #fff;
}
.scrollbar_box.white .swiper-scrollbar {
  background-color: rgba(255, 255, 255, 0.3);
}
.scrollbar_box.white .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #fff;
}
.scrollbar_box .swiper-scrollbar {
  width: 156px;
  height: 2px;
  background-color: rgba(61, 61, 61, 0.3);
}
.scrollbar_box .swiper-scrollbar .swiper-scrollbar-drag {
  cursor: grab;
  background-color: #161616;
}
.head .subtitle {
  font-size: 16px;
  line-height: 62px;
  color: #303030;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 300;
}
.head .desc {
  font-size: 18px;
  line-height: 30px;
  color: var(--content_color);
  hyphens: auto;
}
.head h2 {
  font-size: 50px;
  line-height: 62px;
  color: var(--title_color);
  hyphens: auto;
}
.head h2 span {
  color: var(--theme_color);
}
.head_banner .title {
  width: 100%;
  display: inline-block;
  font-size: 117px;
  line-height: 1.15;
  font-weight: 800;
  background: linear-gradient(to right, #06477c, #338fcf, #7bdeff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}
.head_banner .title::after {
  width: 100%;
  height: 1px;
  content: '';
  background-image: linear-gradient(to right, #10a2ed, #07a9e8, #7bdeff);
  position: absolute;
  left: 0;
  bottom: 0;
}
.head_banner .desc_big {
  font-size: 32px;
  line-height: 65px;
  color: var(--title_color);
  font-weight: 600;
  letter-spacing: 1px;
}
.head_banner .desc {
  font-size: 17px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.75);
  hyphens: auto;
  font-weight: 300;
}
@keyframes hzf_spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes hzf_spin_middle {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 996;
  transition: all 0.3s;
}
header::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), transparent);
  opacity: 1;
  transition: all 0.3s;
}
header.header_font_white .logo {
  filter: contrast(0) brightness(2);
}
header.header_font_white nav .menu > li > a {
  color: #ffffff;
}
header.header_font_white nav .menu > li.current-menu-item > a,
header.header_font_white nav .menu > li.current-menu-parent > a {
  color: #ffffff;
}
header.header_font_white nav .menu > li.current-menu-item > a::before,
header.header_font_white nav .menu > li.current-menu-parent > a::before {
  opacity: 1;
}
header.header_font_white .btns .btn_search {
  filter: contrast(0) brightness(2);
}
header.header_white {
  position: sticky;
  top: -96px;
}
header.sticky {
  top: 0;
}
header.header_white,
header.sticky {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.header_white::before,
header.sticky::before {
  opacity: 0;
}
header.header_white::after,
header.sticky::after {
  opacity: 0;
}
header.header_white .logo,
header.sticky .logo {
  filter: none;
}
header.header_white nav .menu > li > a,
header.sticky nav .menu > li > a {
  color: #142745;
}
header.header_white nav .menu > li.current-menu-item > a,
header.sticky nav .menu > li.current-menu-item > a,
header.header_white nav .menu > li.current-menu-parent > a,
header.sticky nav .menu > li.current-menu-parent > a {
  color: var(--theme_color);
}
header.header_white nav .menu > li.current-menu-item > a::before,
header.sticky nav .menu > li.current-menu-item > a::before,
header.header_white nav .menu > li.current-menu-parent > a::before,
header.sticky nav .menu > li.current-menu-parent > a::before {
  opacity: 1;
}
header.header_white nav .sub-menu,
header.sticky nav .sub-menu {
  background-color: #ffffff;
  border-radius: 0 0 10px 10px;
}
header.header_white .btns .btn_search,
header.sticky .btns .btn_search,
header.header_white .btns .btn_lang,
header.sticky .btns .btn_lang,
header.header_white .btns .btn_menu,
header.sticky .btns .btn_menu {
  filter: none;
}
header .left {
  min-width: 263px;
  display: flex;
}
header .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  transition: all 0.3s;
}
header .logo img {
  display: block;
  width: 181px;
  height: auto;
}
header .logo p {
  position: absolute;
  inset: 0;
}
header nav .menu {
  display: flex;
  gap: 6px;
}
header nav .menu > li {
  position: relative;
}
header nav .menu > li > a {
  display: block;
  color: #142745;
  font-size: 20px;
  font-weight: 600;
  line-height: 102px;
  transition: all 0.3s;
  position: relative;
  padding: 0 30px;
}
header nav .menu > li > a:hover {
  color: var(--theme_color);
}
header nav .menu > li > a:hover::before {
  opacity: 1;
}
header nav .menu > li > a::before {
  width: 100%;
  height: 41px;
  background-image: linear-gradient(to right, rgba(23, 127, 237, 0.32), rgba(80, 179, 255, 0.32));
  border-radius: 10px;
  border: 1px solid #4eb2ff;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a {
  color: var(--theme_color);
}
header nav .menu > li.current-menu-item > a::before,
header nav .menu > li.current-menu-parent > a::before {
  opacity: 1;
}
header nav .menu > li:hover ul {
  pointer-events: all;
  opacity: 1;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .sub-menu {
  left: -1.5rem;
  position: absolute;
  min-width: 12rem;
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 5px 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: 5px;
  transition: all 0.4s;
  transform: translateY(-1rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 8px 0;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}
header nav .sub-menu > li > a:hover {
  color: var(--theme_color);
}
header .btns {
  display: flex;
  align-items: center;
  min-height: 102px;
  gap: 50px;
  margin-left: 2px;
}
header .btns .btn_menu {
  display: none;
}
header .btns .btn_search {
  width: 25px;
  height: 23px;
  cursor: pointer;
  transition: all 0.3s;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btns a {
  display: block;
  color: #fff;
  line-height: 2;
  font-weight: 500;
  border-radius: 8px;
  padding: 11px 32px;
  text-align: center;
  min-width: 187px;
  font-size: 20px;
  border: 1px solid var(--theme_color);
  background-color: var(--theme_color);
  transition: all 0.4s;
}
header .btns a:hover {
  background-color: #ffffff;
  color: var(--title_color);
}
.footer_start {
  padding: 83px 0 100px;
  position: relative;
}
.footer_start::before {
  width: 98.12494792%;
  height: 100%;
  background: url("../img/footer-bg.jpg") no-repeat center / cover;
  border-radius: 32px;
  overflow: hidden;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.footer_start .gap {
  gap: 3rem 10.2%;
}
.footer_start .head {
  flex: 1;
}
.footer_start .head .desc {
  padding-right: 7%;
  margin: 26px 0 15px;
  font-weight: 300;
}
.footer_start .head .info ul {
  padding-right: 7%;
}
.footer_start .head .info ul li {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  line-height: 27px;
  color: var(--content_color);
  border-bottom: 1px solid rgba(6, 16, 20, 0.16);
  text-transform: uppercase;
  padding: 19px 0 16px;
}
.footer_start .head .info ul li:last-child {
  border-bottom-color: transparent;
}
.footer_start .head .info ul li:nth-child(2) {
  padding-bottom: 20px;
}
.footer_start .head .info ul li span {
  width: 35px;
  aspect-ratio: 1;
  content: '';
  background: no-repeat center / cover;
  display: inline-block;
}
.footer_start .head .info ul li .img {
  width: 6rem;
  border-radius: 8px;
  border: 6px solid #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.footer_start .head .info ul li a {
  font-size: 18px;
  line-height: 32px;
  color: var(--title_color);
  font-weight: 600;
  margin-top: 3px;
  display: inline-block;
  transition: all 0.3s;
}
.footer_start .head .info ul li a:hover {
  color: var(--theme_color);
  text-decoration: underline;
}
.footer_start .head .address {
  font-size: 15px;
  line-height: 27px;
  color: var(--content_color);
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin: 35px 0 28px;
}
.footer_start .head .address i {
  margin-top: 11px;
  display: block;
  width: 26px;
  height: 32px;
  content: '';
  background: url("../img/icon-locate.svg") no-repeat center / contain;
}
.footer_start .head .address .main {
  font-size: 18px;
  line-height: 32px;
  color: var(--title_color);
  font-weight: 600;
}
.footer_start .head .social {
  padding: 26px 0;
  border-top: 1px solid rgba(6, 16, 20, 0.16);
}
.footer_start .head .social ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 10px;
}
.footer_start .head .social ul li {
  margin: 0;
  width: 60px;
  aspect-ratio: 1;
  background-color: #ffffff;
  border-radius: 100%;
  overflow: hidden;
}
.footer_start .head .social ul li a,
.footer_start .head .social ul li span {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  cursor: pointer;
  background: no-repeat center / contain;
}
.footer_start .head .social ul li a:hover,
.footer_start .head .social ul li span:hover {
  transform: scale(1.2);
}
.footer_start .head .social ul .facebook a,
.footer_start .head .social ul .facebook span {
  background-image: url(../img/facebook2.svg);
}
.footer_start .head .social ul .twitter a,
.footer_start .head .social ul .twitter span {
  background-image: url(../img/twitter2.svg);
}
.footer_start .head .social ul .youtube a,
.footer_start .head .social ul .youtube span {
  background-image: url(../img/youtube2.svg);
}
.footer_start .head .social ul .instagram a,
.footer_start .head .social ul .instagram span {
  background-image: url(../img/instagram2.svg);
}
.footer_start .head .social ul .linkedin a,
.footer_start .head .social ul .linkedin span {
  background-image: url(../img/linkedin2.svg);
}
.footer_start .head .social ul .skype a,
.footer_start .head .social ul .skype span {
  background-image: url(../img/skype.svg);
}
.footer_start .right {
  width: 52.58321%;
}
.footer_start .right form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 23px 19px;
  padding-top: 10.5%;
}
.footer_start .right form span {
  width: 100%;
}
.footer_start .right form .col-2 {
  width: 48.726173%;
}
.footer_start .right form span:has(input[type=checkbox]) {
  margin-top: -9px;
}
.footer_start .right form input,
.footer_start .right form textarea {
  width: 100%;
  border-radius: 8px;
  color: #5e5e5e;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 36px;
  padding: 12px 20px;
}
.footer_start .right form textarea {
  height: 167px;
}
.footer_start .right form input[type=checkbox] {
  width: 26px;
  height: 26px;
  border-radius: 3px;
  padding: 0;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer_start .right form input[type=checkbox]::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  background: url(../img/gou.svg) no-repeat center / contain;
  transition: all 0.3s;
  opacity: 0;
}
.footer_start .right form input[type=checkbox]:checked::after {
  opacity: 1;
}
.footer_start .right form input[type=checkbox] ~ span {
  color: var(--content_color);
  font-size: 16px;
  line-height: 28px;
  vertical-align: top;
  cursor: pointer;
  font-weight: 300;
  padding-left: 12px;
  display: inline-block;
  width: calc(100% - 2rem);
}
.footer_start .right form input[type=checkbox] ~ span a {
  color: var(--theme_color);
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s;
}
.footer_start .right form input[type=checkbox] ~ span a:hover {
  text-decoration: none;
}
.footer_start .right form .btn {
  margin-top: 5px;
  position: relative;
}
.footer_start .right form .btn input[type=submit] {
  display: none;
}
footer .footer_main {
  padding: 124px 0 118px;
}
footer .footer_main .gap:has(.left) {
  gap: 2rem 10%;
}
footer .footer_main .gap:has(.left) .gap {
  gap: 1rem 1rem;
}
footer .footer_main .left {
  max-width: 314px;
  margin-top: -39px;
}
footer .footer_main .left .logo {
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  text-indent: -999px;
  margin-bottom: 22px;
}
footer .footer_main .left .logo img {
  display: block;
  width: 237px;
  height: auto;
}
footer .footer_main .left .logo p {
  position: absolute;
  inset: 0;
}
footer .footer_main .left ul > li {
  margin-bottom: 22px;
}
footer .footer_main .left ul > li:last-child {
  margin-bottom: 0;
}
footer .footer_main .left p {
  font-size: 17px;
  line-height: 28px;
  color: rgba(22, 22, 22, 0.85);
  margin-bottom: 22px;
}
footer .footer_main .left ul > li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--title_color);
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  padding: 11px 24px;
  border: 1px solid rgba(22, 22, 22, 0.2);
  background-color: transparent;
}
footer .footer_main .left ul > li a::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  transition: all 0.3s;
  background: url(../img/arrow-t.svg) no-repeat center / contain;
}
footer .footer_main .left ul > li a:hover {
  background-color: var(--subtheme_color);
  border-color: var(--subtheme_color);
  color: #ffffff;
}
footer .footer_main .left ul > li a:hover::after {
  filter: contrast(0) brightness(2);
  transform: rotate(45deg);
}
footer .footer_main .slide_obj strong {
  display: block;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--title_color);
}
footer .footer_main .slide_obj li {
  margin-bottom: 10px;
}
footer .footer_main .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .footer_main .slide_obj li a {
  font-size: 17px;
  font-weight: 300;
  transition: all 0.3s;
  vertical-align: top;
  color: #161616;
}
footer .footer_main .slide_obj li a:hover {
  color: var(--theme_color);
}
footer .footer_main .slide_subscribe {
  width: 372px;
}
footer .footer_main .slide_subscribe p {
  font-size: 17px;
  margin-bottom: 23px;
}
footer .footer_main .slide_subscribe form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background-color: #f2f4f6;
  border-radius: 8px;
  margin-bottom: 36px;
}
footer .footer_main .slide_subscribe form input[type=email] {
  width: 100%;
  background-color: transparent;
  color: #3f3f3f;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  padding: 18px 22px;
}
footer .footer_main .slide_subscribe form input[type=email]::placeholder {
  color: #3f3f3f;
}
footer .footer_main .slide_subscribe form input[type=submit] {
  width: 44px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  background: url('../img/icon-mail-line.svg') no-repeat center / contain;
  background-color: var(--theme_color);
  margin-right: 8px;
}
footer .footer_main .slide_subscribe form input[type=submit]:hover {
  background-color: var(--subtheme_color);
}
footer .footer_main .social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 40px;
}
footer .footer_main .social li {
  margin: 0;
}
footer .footer_main .social li a,
footer .footer_main .social li span {
  width: 22px;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  cursor: pointer;
  background: no-repeat center / contain;
}
footer .footer_main .social li a:hover,
footer .footer_main .social li span:hover {
  transform: scale(1.2);
}
footer .footer_main .social .facebook a,
footer .footer_main .social .facebook span {
  background-image: url(../img/facebook.svg);
}
footer .footer_main .social .twitter a,
footer .footer_main .social .twitter span {
  background-image: url(../img/twitter.svg);
}
footer .footer_main .social .youtube a,
footer .footer_main .social .youtube span {
  background-image: url(../img/youtube.svg);
}
footer .footer_main .social .instagram a,
footer .footer_main .social .instagram span {
  background-image: url(../img/instagram.svg);
}
footer .footer_main .social .linkedin a,
footer .footer_main .social .linkedin span {
  background-image: url(../img/linkedin.svg);
}
footer .copyright {
  background-color: #f2f4f6;
  font-size: 14px;
  line-height: 25px;
  color: #161616;
  padding: 16.5px 0;
}
footer .copyright ul {
  display: flex;
  align-items: center;
  gap: 1rem 32px;
}
footer .copyright ul a {
  transition: all 0.3s;
}
footer .copyright ul a:hover {
  color: var(--theme_color);
  text-decoration: underline;
}
.page_banner {
  padding: 120px 0 126px;
  position: relative;
}
.page_banner::before {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent, #ffffff, transparent);
  opacity: 0;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.page_banner .flex {
  min-height: 580px;
  padding: 4rem 0;
}
.page_banner .head_banner {
  max-width: 694px;
}
.page_banner .head_banner .desc_big {
  margin: 3px 0 11px;
}
.page_banner .head_banner form {
  border-radius: 37px;
  border: 2px solid var(--theme_color);
  background-color: rgba(255, 255, 255, 0.45);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 31px;
}
.page_banner .head_banner form input[type=text] {
  font-size: 19px;
  line-height: 27px;
  color: #7f7f7f;
  background-color: transparent;
  padding: 22.5px 39px;
}
.page_banner .head_banner form input[type=submit] {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 100%;
  text-indent: -999px;
  background: url("../img/icon-search-w.svg") no-repeat center / 21px 20px;
  background-color: var(--theme_color);
  margin-right: 10px;
}
.page_banner.news_banner::after {
  width: 100%;
  aspect-ratio: 1920/50;
  background-image: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  border-radius: 25px 25px 0 0;
}
.products_category .nav {
  position: relative;
  z-index: 2;
}
.products_category .nav ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.products_category .nav .nav_slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  line-height: 24px;
  color: var(--title_color);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  padding: 50px 0 44px;
  gap: 1rem;
  cursor: pointer;
}
.products_category .nav .nav_slide .icon {
  width: 115px;
  aspect-ratio: 1;
  border-radius: 100%;
  transition: all 0.3s;
  position: relative;
  padding: 7px;
}
.products_category .nav .nav_slide .icon .circle {
  width: 100%;
  height: 100%;
  background-color: transparent;
  content: '';
  border-radius: 100%;
  transition: all 0.5s;
}
.products_category .nav .nav_slide .icon .circle i {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
  content: '';
  border-radius: 100%;
  transition: all 0.3s;
}
.products_category .nav .nav_slide .icon::before {
  content: '';
  width: 100%;
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/category-bg.svg) no-repeat center / contain;
  opacity: 0;
}
.products_category .nav .nav_slide .title {
  margin-top: auto;
}
.products_category .nav .nav_slide::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--theme_color);
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.products_category .nav .active .nav_slide .icon .circle,
.products_category .nav .nav_slide:hover .icon .circle {
  background-color: var(--theme_color);
}
.products_category .nav .active .nav_slide .icon i,
.products_category .nav .nav_slide:hover .icon i {
  opacity: 1;
  filter: contrast(0) brightness(2);
}
.products_category .nav .active .nav_slide .icon::before,
.products_category .nav .nav_slide:hover .icon::before {
  animation: hzf_spin 30s linear infinite;
  opacity: 1;
}
.products_category .nav .active .nav_slide::after,
.products_category .nav .nav_slide:hover::after {
  opacity: 1;
}
.products_category .nav .active .nav_slide {
  font-weight: 600;
}
.products_category .products_nav_swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.products_category .products_nav_swiper .nav_slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  line-height: 24px;
  color: var(--title_color);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  padding: 44px 0 43px;
  gap: 10px;
  cursor: pointer;
}
.products_category .products_nav_swiper .nav_slide .icon {
  width: 115px;
  aspect-ratio: 1;
  border-radius: 100%;
  transition: all 0.3s;
  position: relative;
  padding: 7px;
}
.products_category .products_nav_swiper .nav_slide .icon .circle {
  width: 100%;
  height: 100%;
  background-color: transparent;
  content: '';
  border-radius: 100%;
  transition: all 0.5s;
}
.products_category .products_nav_swiper .nav_slide .icon .circle i {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
  content: '';
  border-radius: 100%;
  transition: all 0.3s;
}
.products_category .products_nav_swiper .nav_slide .icon::before {
  content: '';
  width: 100%;
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/category-bg.svg) no-repeat center / contain;
  opacity: 0;
}
.products_category .products_nav_swiper .nav_slide .title {
  margin-top: auto;
}
.products_category .products_nav_swiper .nav_slide::after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--theme_color);
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.products_category .products_nav_swiper .active .nav_slide .icon .circle,
.products_category .products_nav_swiper .swiper-slide:hover .nav_slide .icon .circle {
  background-color: var(--theme_color);
}
.products_category .products_nav_swiper .active .nav_slide .icon i,
.products_category .products_nav_swiper .swiper-slide:hover .nav_slide .icon i {
  opacity: 1;
  filter: contrast(0) brightness(2);
}
.products_category .products_nav_swiper .active .nav_slide .icon::before,
.products_category .products_nav_swiper .swiper-slide:hover .nav_slide .icon::before {
  animation: hzf_spin 30s linear infinite;
  opacity: 1;
}
.products_category .products_nav_swiper .active .nav_slide::after,
.products_category .products_nav_swiper .swiper-slide:hover .nav_slide::after {
  opacity: 1;
}
.products_category .products_nav_swiper .active {
  font-weight: 600;
}
.products_category .products_nav_swiper .swiper_btns {
  opacity: 0;
  width: 100%;
}
.products_category .products_nav_swiper .swiper_btns > div {
  z-index: 99;
  background-color: transparent;
  border-color: transparent;
}
.products_category .products_nav_swiper .swiper_btns > div::after {
  filter: unset;
  width: 1rem;
  height: 1rem;
}
.product_item {
  position: relative;
  width: 100%;
  height: 100%;
}
.product_item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.78);
  transition: all 0.3s;
  padding: 0 8.6% 2.5rem;
}
.product_item a:hover {
  background-color: #ffffff;
  box-shadow: 10px 15px 10px rgba(198, 200, 204, 0.35);
}
.product_item a:hover img {
  transform: scale(1.05);
}
.product_item a:hover .metas::after {
  width: 75.8%;
}
.product_item a:hover .btn_more {
  background-color: var(--theme_color);
  color: #ffffff;
}
.product_item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 376/305;
  margin-top: -36px;
}
.product_item .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.5s;
}
.product_item .info {
  flex: 1;
  margin-top: 17px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.product_item .info h3 {
  font-size: 24px;
  line-height: 1.5;
  color: var(--title_color);
}
.product_item .info .metas {
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  border-bottom: 1px solid #e3e3e3;
  padding: 2px 0 14px;
  margin-bottom: 7px;
  position: relative;
}
.product_item .info .metas::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--theme_color);
  content: '';
  transition: all 0.3s;
}
.product_item .info ul {
  margin-bottom: 16px;
}
.product_item .info ul > li {
  font-size: 17px;
  line-height: 1.5;
  color: var(--title_color);
  border-bottom: 1px solid #e3e3e3;
  padding: 9px 0;
}
.product_item .info ul > li:last-child {
  border-bottom-color: transparent;
}
.product_item .info .btn_more {
  width: 100%;
  margin-top: auto;
}
.product_item .colors {
  margin-top: 5px;
  position: absolute;
  right: 8.6%;
  top: 3.4rem;
  transition: all 0.3s;
}
.product_item .colors ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product_item .colors ul > li {
  display: block;
  width: 29px;
  aspect-ratio: 1;
  padding: 3px;
  border-radius: 100%;
  border: 1px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  order: 2;
}
.product_item .colors ul > li i {
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
  content: '';
  display: block;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
}
.product_item .colors ul > li.active,
.product_item .colors ul > li:hover {
  border-color: #171717;
}
.product_item .colors ul > li.active {
  order: 1;
}
.navwrap ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 22px;
}
.navwrap ul li .nav_btn {
  display: inline-block;
  font-size: 18px;
  padding: 9px 30px;
  background-color: #f5f9fc;
  border-radius: 8px;
  border: 1px solid #f5f9fc;
  color: #161616;
  transition: all 0.3s;
  cursor: pointer;
}
.navwrap ul li.active .nav_btn,
.navwrap ul li:hover .nav_btn {
  background-color: #ffffff;
  border-color: var(--theme_color);
  color: var(--title_color);
}
.navwrap ul li.active .nav_btn {
  font-weight: 600;
}
.news_box > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 47px;
}
.news_box .right {
  flex: 1;
}
.news_box .right > div {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news_box .right .item {
  flex: 1;
  width: 100%;
  padding: 32px 0;
  position: relative;
}
.news_box .right .item::after {
  width: 100%;
  height: 1px;
  content: '';
  background-color: #ededed;
  position: absolute;
  left: 0;
  bottom: 0;
}
.news_box .right .item:first-child {
  padding-top: 0;
}
.news_box .right .item:last-child {
  padding-bottom: 0;
}
.news_box .right .item:last-child::after {
  display: none;
}
.news_box .right .item a {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 38px;
  color: #171717;
  padding: 0;
}
.news_box .right .item a::before {
  display: none;
}
.news_box .right .item .img {
  width: 45.2247142%;
  position: static;
  aspect-ratio: 260/268;
}
.news_box .right .item:first-child .img {
  aspect-ratio: 260/286;
}
.news_box .right .item .img .tag {
  top: 12px;
  left: 17px;
}
.news_box .right .item .info {
  padding: 0;
  flex: 1;
}
.news_box .right .item .metas {
  margin-bottom: 19px;
}
.news_box .right .item .metas::before {
  filter: contrast(0) brightness(0.2);
}
.news_box .right .item h3 {
  font-size: 22px;
  line-height: 26px;
  border-bottom: none;
  font-weight: 700;
  margin-bottom: 14px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_box .right .item p {
  opacity: 0.85;
  font-size: 1rem;
  font-weight: 300;
  line-height: 20px;
  hyphens: auto;
  margin-bottom: 36px;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_box .right .item .link {
  font-size: 15px;
}
.news_box .item {
  flex: 1.4216;
}
.news_box .item a {
  display: block;
  border-radius: 20px;
  position: relative;
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
  overflow: hidden;
  padding-bottom: 2.45rem;
}
.news_box .item a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 60%;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  z-index: 1;
}
.news_box .item:hover .img img {
  transform: scale(105%);
}
.news_box .item:hover .link {
  text-decoration: none;
}
.news_box .item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.news_box .item .img .tag {
  position: absolute;
  top: 1rem;
  left: 24px;
  font-size: 14px;
  line-height: 35px;
  padding: 0 12px;
  border-radius: 8px;
  color: #ffffff;
  background-color: var(--theme_color);
}
.news_box .item .info {
  position: relative;
  z-index: 2;
  font-weight: 300;
  padding: 48.9% 7% 0 6%;
}
.news_box .item .metas {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.news_box .item .metas::before {
  display: inline-block;
  width: 14px;
  aspect-ratio: 1;
  content: '';
  background: url("../img/icon-category.svg") no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
.news_box .item h3 {
  font-size: 32px;
  line-height: 1.45;
  font-weight: 600;
  border-bottom: 1px solid #bbbfbe;
  margin-bottom: 17px;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_box .item p {
  opacity: 0.9;
  line-height: 24px;
  font-weight: 100;
  margin-bottom: 13px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_box .item .link {
  font-size: 16px;
  line-height: 25px;
  color: var(--theme_color);
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s;
}
.supportlist .item_support a:hover {
  background-color: #ffffff;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
}
.supportlist .item_support a:hover::before {
  opacity: 1;
}
.supportlist .item_support a:hover .link {
  transform: translateX(0);
}
.supportlist .item_support a:hover .link i {
  transform: rotate(0deg);
  filter: unset;
}
.supportlist .item_support a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #f5f9fc;
  border-radius: 32px;
  transition: all 0.3s;
  padding: 12% 11% 3rem;
  position: relative;
}
.supportlist .item_support a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--theme_color);
  content: '';
  border-radius: 32px;
  transition: all 0.3s;
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
}
.supportlist .item_support .icon {
  width: 113px;
  aspect-ratio: 1;
  border-radius: 100%;
  overflow: hidden;
  display: block;
  background: url("../img/bg-circle.svg") no-repeat center / cover;
}
.supportlist .item_support .icon i {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  background: no-repeat center / cover;
}
.supportlist .item_support .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 26px;
  overflow: hidden;
}
.supportlist .item_support h3 {
  font-size: 30px;
  line-height: 42px;
  color: var(--title_color);
  margin-bottom: 18px;
}
.supportlist .item_support p {
  font-size: 17px;
  line-height: 26px;
  color: var(--content_color);
  font-weight: 300;
  margin-bottom: 16%;
}
.supportlist .item_support .link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  gap: 10px;
  min-height: 26px;
  transform: translateX(calc(-100% + 18px));
  transition: all 0.3s;
}
.supportlist .item_support .link p {
  font-size: 18px;
  color: var(--theme_color);
  font-weight: 600;
  transition: all 0.5s;
  margin-bottom: 0;
}
.supportlist .item_support .link i {
  display: block;
  content: '';
  width: 18px;
  height: 13px;
  background: url("../img/arrow-line-r.svg") no-repeat center / contain;
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
  transform: rotate(-45deg);
}
.item_news a:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.item_news a:hover .link {
  text-decoration: none;
}
.item_news a {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s;
}
.item_news .img {
  width: 100%;
  aspect-ratio: 451/316;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.item_news .img:hover img {
  transform: scale(105%);
}
.item_news .tag {
  position: absolute;
  top: 1.3rem;
  left: 20px;
  font-size: 14px;
  line-height: 35px;
  padding: 0 12px;
  border-radius: 8px;
  color: #ffffff;
  background-color: var(--theme_color);
}
.item_news .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8.2% 6.6% 6.8%;
}
.item_news .metas {
  font-size: 17px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: rgba(23, 23, 23, 0.8);
  gap: 10px;
  margin-bottom: 19px;
}
.item_news .metas::before {
  display: inline-block;
  width: 16px;
  aspect-ratio: 1;
  content: '';
  background: url("../img/icon-category.svg") no-repeat center / contain;
  filter: contrast(0) brightness(0);
}
.item_news h3 {
  font-size: 22px;
  line-height: 30px;
  color: #222222;
  margin-bottom: 16.8%;
}
.item_news p {
  display: none;
}
.item_news .link {
  margin-top: auto;
  font-size: 16px;
  line-height: 25px;
  color: var(--theme_color);
  font-weight: 600;
  text-decoration: underline;
}
.breadcrumbs {
  min-height: 59px;
}
.breadcrumbs span span {
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  color: var(--title_color);
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}
.breadcrumbs span span::after {
  display: inline-block;
  width: 11px;
  height: 12px;
  background: url("../img/arrow-r-menu.svg") no-repeat center / contain;
  content: '';
  margin: 0 8px;
}
.breadcrumbs span span:last-child::after {
  display: none;
}
.breadcrumbs span span:last-child {
  opacity: 1;
  font-weight: 700;
}
.breadcrumbs span span:first-child::before {
  width: 13px;
  height: 12px;
  display: inline-block;
  content: '';
  background: url("../img/icon-home.svg") no-repeat center / contain;
  margin-right: 11px;
}
.breadcrumbs span span:hover {
  opacity: 1;
}
.item_effect {
  position: relative;
  width: 100%;
  aspect-ratio: 462/588;
  border-radius: 26px;
  overflow: hidden;
}
.item_effect .pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.item_effect .pic .desc {
  position: absolute;
  bottom: 5.1%;
  right: 61px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
  color: #ffffff;
  z-index: 3;
  text-align: right;
}
.item_effect .pic .desc strong {
  font-size: 30px;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}
.item_effect .left {
  z-index: 2;
  width: 50%;
  border-right: 4px solid #ffffff;
}
.item_effect .left .desc {
  text-align: left;
  min-width: 215px;
  right: unset;
  left: 59px;
}
.item_effect .left span {
  width: 38px;
  aspect-ratio: 38/66;
  content: '';
  background: url("../img/scrollblock.svg") no-repeat center / cover;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 50%;
  right: -2px;
  transform: translate(50%, -50%);
  z-index: 3;
}
.item_testimonial {
  display: flex;
  flex-direction: column;
}
.item_testimonial .star {
  width: 146px;
  aspect-ratio: 146/21;
  margin-bottom: 34px;
}
.item_testimonial .star::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--value);
  background: url(../img/icon-star.svg) no-repeat left center / 146px 100%;
}
.item_testimonial p {
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  color: var(--title_color);
  margin-bottom: 75px;
}
.item_testimonial .name {
  margin-top: auto;
  font-size: 18px;
  line-height: 38px;
  color: #4d4d4d;
  font-weight: 400;
}
.item_testimonial .name strong {
  font-size: 20px;
  font-weight: 500;
  color: var(--title_color);
}
.item_testimonial .name strong::after {
  content: ' | ';
  font-weight: 400;
  color: #4d4d4d;
}


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

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

div form#sytech-newsletter-subscription {
  display: grid;
}
div form#sytech-newsletter-subscription p {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
div form#sytech-newsletter-subscription p.success.active {
  top: -3rem;
}
div form#sytech-newsletter-subscription p.success,
div form#sytech-newsletter-subscription p.failed {
  background-color: var(--theme_color);
}
div form#sytech-newsletter-subscription p.success::before,
div form#sytech-newsletter-subscription p.failed::before {
  top: 0.9rem;
  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(--theme_color);
}
.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: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  height: 80vh;
  aspect-ratio: 1920/1080;
}
.video_pop .pop_content iframe, .video_pop .pop_content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
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;
}
.quote_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
div.quote_modal form input[type="checkbox"] {
  margin-top: 0;
}
div.quote_modal form input[type="checkbox"] ~ span {
  font-size: 14px;
  margin-top: 0;
}
.quote_modal form .btn input[type="submit"] {
  display: none;
}
.quote_modal .btn {
  position: relative;
}
.quote_modal .wpcf7 form.wpcf7-form span.wpcf7-spinner {
  left: unset;
  right: 0;
}
/*** global css ***/

.home_about .home_about_swiper .swiper-scrollbar .swiper-scrollbar-drag {
  height: 3px;
  margin-top: -1px;
}
div.head .subtitle {
  font-size: 17px;
}

header .content {
  max-width: 1724px;
}
header .header_top {
  color: rgba(255, 255, 255, 0.9);
  padding: 11px 0 15px;
  pointer-events: all;
  background-color: #21242b;
}
header .header_top .flex {
  gap: 1.50462963%;
}
header .header_top .line {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.14);
}
header .social {
  display: flex;
  gap: 26px;
}
header .social a,
header .social span {
  display: block;
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  overflow: hidden;
  text-indent: -999px;
  background: no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
header .social a:hover,
header .social span:hover {
  transform: scale(1.1);
}
header .contact {
  display: flex;
  gap: 40px;
}
header .contact a {
  font-size: 14px;
  display: grid;
  gap: 10px;
  align-items: center;
  grid-template-columns: auto 1fr;
  transition: all 0.3s;
}
header .contact a::before {
  content: '';
  display: block;
  width: 17px;
  height: 15px;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: no-repeat center / contain;
}
header .contact a:hover::before {
  /* filter: none; */
}
header .contact .email a::before {
  background-image: url(../img/icon-email.svg);
}
header .contact .tel a::before {
  background-image: url(../img/icon-phone.svg);
}


.social {
  gap: 1rem 40px;
  display: flex;
  flex-wrap: wrap;
}
.social a {
  display: block;
  width: 22px;
  aspect-ratio: 1;
  transition: all 0.3s;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
}
.social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  transition: all 0.3s;
  background: no-repeat center / contain;
}
.social a:hover {
  transform: scale(1.2);
}
.social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
.social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
.social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
.social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
.social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
.social .tiktok a::after {
  background-image: url(../img/tiktok.svg);
}

.menu-item-149 a::before {
  display: none;
}
header.sticky nav .menu > li.current-menu-item.menu-item-149 > a {
  color: #142745;
}
section.home_certificates .home_certificates_img_swiper .swiper-slide {
  aspect-ratio: 424/600;
}
.home_testimonials .swiper_content .edit_swiper {
  left: 10%;
}