* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #31a7da;
  --secondary: #b3ddf2;
  --title: #0c2a38;
  --text: #3c5663;
  --bg: rgba(208, 227, 239, 0.39);
  --bg_rd: 3rem;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.large_content {
  max-width: 171.6rem;
  margin: 0 auto;
  position: relative;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
  background-color: transparent;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.center p,
.center .desc,
.center h1,
.center h2 {
  margin-left: auto;
  margin-right: auto;
}
.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;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.row_reverse {
  flex-direction: row-reverse;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: "Geist", sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img,
.img.img_cv video,
.img.img_cv iframe,
.img.img_cv picture {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img,
.img.img_ab video,
.img.img_ab iframe,
.img.img_ab picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img,
.img.img_aba video,
.img.img_aba iframe,
.img.img_aba picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe,
.img picture {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img,
.img_bg > video,
.img_bg > iframe,
.img_bg > picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.img_bg > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon.icon_ab {
  position: relative;
  padding-bottom: 100%;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: var(--font-size, 14px);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup.up .popup-input {
  order: 3;
  margin-bottom: 0;
  margin-top: 8px;
}
.custom-popup.up .popup-options {
  order: 1;
}
.custom-popup.up .popup-empty {
  order: 2;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: inherit;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  flex: 0 1 auto;
  min-height: 0;
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  word-break: break-word;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: #f0f0f0;
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
.btn {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 5rem;
  padding: 0 2.6rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn.sec {
  background-color: var(--title);
  border-color: var(--title);
  color: #fff;
}
.btn.sec:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn.has_a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8125em;
}
.btn.has_a::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 0.9375em;
  height: 0.9375em;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url("../img/arrow-r.svg") no-repeat center / contain;
}
.btn.has_a:hover::after {
  filter: none;
  transform: translateX(20%);
}
.btn.time {
  cursor: default;
}
.btn_c {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.9rem;
  background-color: var(--primary);
  width: 4.8rem;
}
.btn_c::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url("../img/arrow-r-b.svg") no-repeat center / 37.5%;
}
.btn_c:hover::after {
  transform: rotate(90deg);
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 6rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow-l.svg) no-repeat center / 26.7%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--title);
  background-color: var(--title);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  cursor: default;
  pointer-events: none;
  background-color: var(--title);
}
.swiper_btns .swiper-button-disabled:hover {
  background-color: transparent;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 165.2rem;
  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;
}
.tcon.bn p,
.tcon.bn .desc {
  font-size: 1.6rem;
  line-height: 2.7rem;
}
.tcon em {
  font-style: normal;
  color: var(--primary);
}
.tcon h1 {
  font-size: 6rem;
  line-height: 1.18333333;
  font-weight: 500;
}
.tcon h2 {
  font-size: 4.8rem;
  line-height: 1.25;
  font-weight: 600;
}
.tcon p,
.tcon .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
header {
  position: sticky;
  left: 0;
  top: -92px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
}
header.opt {
  top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .content {
  width: calc(100% - 5rem);
  max-width: 186rem;
  padding: 0 3.4rem;
}
header .logo {
  display: block;
  position: relative;
  padding-bottom: 2px;
}
header .logo img {
  display: block;
  width: auto;
  height: 3.774rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header #navigation .close {
  display: none;
}
header #navigation .menu {
  gap: 3.6rem;
  display: flex;
}
header #navigation .menu > li {
  position: relative;
  z-index: 2;
}
header #navigation .menu > li > a {
  display: block;
  font-size: 16px;
  color: var(--text);
  line-height: 40px;
  transition: all 0.3s;
  padding-top: 5px;
  letter-spacing: 0.00625em;
}
header #navigation .menu > li > a:hover {
  color: var(--primary);
}
header #navigation .menu > li.current-menu-item > a,
header #navigation .menu > li.current-menu-parent > a,
header #navigation .menu > li:has(.current-menu-parent) > a {
  color: var(--primary);
}
header #navigation .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header #navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header #navigation .sub-menu > li {
  position: relative;
}
header #navigation .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
  border-radius: 5px;
}
header #navigation .sub-menu > li > a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
header #navigation .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header #navigation .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
header .btns {
  gap: 2rem;
  display: flex;
  align-items: center;
  min-height: 92px;
  padding-top: 2px;
}
header .btns .btn_menu {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / 52.3%;
}
footer .foot_follow {
  padding: 7.6rem 0 2.6rem;
}
footer .foot_follow .logo {
  display: block;
  position: relative;
  width: 30.95rem;
  padding-bottom: 0.8rem;
}
footer .foot_follow .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .foot_follow .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .foot_follow .social {
  gap: 2rem 0.9rem;
  display: flex;
  flex-wrap: wrap;
}
footer .foot_follow .social a {
  opacity: 1;
  display: block;
  width: 4.9rem;
  height: 4.9rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: rgba(225, 231, 234, 0.39);
}
footer .foot_follow .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 40.82%;
  transition: all 0.3s;
}
footer .foot_follow .social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
footer .foot_follow .social a:hover::after {
  filter: contrast(0) brightness(2);
}
footer .foot_follow .social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
footer .foot_follow .social .whatsapp a::after {
  background-image: url(../img/social-whatsapp.svg);
}
footer .foot_follow .social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
footer .foot_follow .social .instagram a::after {
  background-image: url(../img/social-instagram.svg);
}
footer .foot_follow .social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
}
footer .main {
  padding: 2.7rem 3.2% 13.3rem 0;
}
footer .main strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}
footer .main .foot_start {
  margin-top: -2px;
  margin-right: 2.8%;
}
footer .main .foot_start p {
  font-size: 2.4rem;
  line-height: 3.1rem;
  font-weight: 500;
  max-width: 32rem;
}
footer .main .foot_start .menu {
  margin-top: 3rem;
}
footer .main .foot_start .menu li + li {
  margin-top: 1rem;
}
footer .main .foot_start .menu a {
  display: inline-block;
  transition: all 0.3s;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 5rem;
  padding: 0 2.6rem;
}
footer .main .foot_start .menu a:hover {
  background-color: transparent;
  color: var(--primary);
}
footer .main .foot_nav strong {
  margin-bottom: 2.1rem;
}
footer .main .foot_nav li a {
  font-size: 1.7rem;
  color: var(--text);
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .foot_nav li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_nav li + li {
  margin-top: 1.2rem;
}
footer .bottom {
  font-size: 1.4rem;
  padding: 2.2rem 0;
  padding-right: 0.5rem;
}
footer .bottom a {
  opacity: 0.68;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .bottom a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .bottom ul {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  display: inline-block;
  width: 1px;
  height: 0.93em;
  background-color: #3c5663;
  opacity: 0.15;
  content: '';
  margin: 0 1.25em;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer #backtop {
  position: fixed;
  z-index: 99;
  right: 2.6rem;
  bottom: 1.1rem;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  width: 4.9rem;
  height: 4.9rem;
  border-radius: 50%;
  background: url("../img/arrow-t-w.svg") no-repeat center / 20.41% var(--title);
  opacity: 0;
  transform: translateY(100%);
}
footer #backtop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
footer #backtop:hover {
  transform: scale(1.1);
}
.page_banner .image {
  position: relative;
  width: calc(100% - 5rem);
  max-width: 186rem;
  margin: 0 auto;
  border-radius: 2.9rem;
  overflow: hidden;
}
.page_banner .image .img.img_cv {
  padding-bottom: 30.86021505%;
}
.page_banner .image .mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46.93548387%;
  height: auto;
  filter: contrast(0) brightness(2);
}
.page_banner .head {
  display: grid;
  grid-template-columns: 45.16317016% 1fr;
  align-items: start;
  padding: 1.4rem 0 11.7rem;
}
.page_banner h1 {
  max-width: 71rem;
}
.page_banner .rt {
  max-width: 68rem;
  margin-left: auto;
}
.page_banner p {
  max-width: 67.5rem;
  margin-top: 3.4rem;
}
.page_banner .btn {
  margin-top: 2.7rem;
}
.page_banner .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.7rem;
}
.page_banner .btns .btn {
  margin: 0;
}
.page_banner form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(109, 124, 137, 0.19);
  transition: border-color 0.2s;
  padding-right: 0.8rem;
  max-width: 54.2rem;
  margin-top: 2.6rem;
}
.page_banner form:focus-within {
  border-color: var(--primary);
}
.page_banner form input {
  display: block;
  width: 100%;
  font-size: 1em;
  color: #3c5663;
  padding: 0 1.25em;
}
.page_banner form input::placeholder {
  color: #3c5663;
  opacity: 0.5;
}
.page_banner form input[type=submit] {
  width: 5.4rem;
  height: 5.2rem;
  padding: 0;
  text-indent: -999px;
  overflow: hidden;
  border-radius: 0.8rem;
  background: url("../img/icon-search-w.svg") no-repeat center / 29.63% var(--primary);
  transition: all 0.3s;
  margin: 0.75rem 0;
}
.page_banner form input[type=submit]:hover {
  background-color: var(--title);
}
.page_banner.resources_banner .head {
  padding-bottom: 3.3rem;
}
.page_nav {
  padding: 7.1rem 0;
}
.page_nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8rem;
}
.page_nav .nav_list li {
  flex: 1;
}
.page_nav .nav_list li .nav_item {
  height: 100%;
}
.page_nav .nav_item {
  display: grid;
  grid-template-columns: 2.5em 1fr auto;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--secondary);
  border-radius: var(--bg_rd);
  font-size: 2.6rem;
  line-height: 1.23076923;
  font-weight: 500;
  gap: 0.85em;
  padding: 3.3rem 3rem 3.3rem 2.5rem;
}
.page_nav .nav_item .icon {
  border-radius: 50%;
  background-color: #fff;
}
.page_nav .nav_item .icon img {
  transform: scale(0.61538462);
}
.page_nav .nav_item span {
  margin-bottom: 0.6rem;
}
.page_nav .nav_item.active,
.page_nav .nav_item:hover {
  background-color: var(--primary);
  color: #fff;
}
.page_nav .nav_item.active .btn_c,
.page_nav .nav_item:hover .btn_c {
  background-color: #fff;
}
.page_nav .nav_item.active .btn_c::after,
.page_nav .nav_item:hover .btn_c::after {
  filter: none;
  transform: rotate(90deg);
}
.page_nav .large_content .nav_item span {
  max-width: 18rem;
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.6rem;
  border: 1px solid #e6e9ee;
  padding: 4.6511628% 7.5581395% 14.244186%;
}
.product_list a:hover img {
  transform: scale(1.05);
}
.product_list .img {
  width: 88%;
  --h: 100%;
  max-width: 25rem;
  margin: 0 auto;
}
.product_list .info {
  margin-top: 0.8rem;
}
.product_list .cat {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.057143em;
}
.product_list .title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  max-width: 23rem;
  margin-top: 0.6rem;
}
.product_list .desc {
  line-height: 2.2rem;
  color: var(--text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-top: 1.3rem;
}
.blog_list a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.blog_list a:hover img {
  transform: scale(1.03);
}
.blog_list a:hover .info .title {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.blog_list .img {
  width: 100%;
  padding-bottom: 63.23851204%;
  border-radius: 2.3rem;
}
.blog_list .info {
  flex: 1;
  width: 100%;
  border-bottom: 1px solid #bec7ce;
  padding: 6.1269147% 0 10.2844639%;
}
.blog_list .info .metas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  gap: 0.6em;
}
.blog_list .info .metas .cat {
  font-weight: 600;
  margin-right: 1px;
}
.blog_list .info .metas i {
  display: inline-block;
  width: 0.26667em;
  height: 0.26667em;
  border-radius: 50%;
  background-color: var(--title);
  opacity: 0.5;
}
.blog_list .info .metas .date {
  letter-spacing: 0.02667em;
}
.blog_list .info .title {
  font-size: 2.2rem;
  line-height: 1.63636364;
  font-weight: 600;
  text-decoration: underline transparent;
  text-decoration-thickness: 1px;
  transition: all 0.3s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  max-width: 33rem;
  margin-top: 1.2rem;
}
.blog_list .btn_i {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s;
  margin-top: 2.2rem;
  gap: 0.4375em;
}
.blog_list .btn_i::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 0.875em;
  height: 0.875em;
  transition: all 0.3s;
  background: url("../img/arrow-r.svg") no-repeat center / contain;
}
.blog_list .btn_i:hover {
  color: var(--primary);
}
.blog_list .btn_i:hover::after {
  transform: translateX(20%);
}
.active .download_item::after {
  opacity: 1;
}
.download_item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border-radius: var(--rd);
  --rd: 1.6rem;
}
.download_item::after {
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  right: -1px;
  content: '';
  border-radius: var(--rd);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.download_item .info {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  border-bottom: 1px solid rgba(230, 233, 238, 0.5);
  gap: 2.2rem;
  padding: 4.2674253% 5.6899004% 3.9829303%;
}
.download_item .fmt {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0.8rem;
}
.download_item .fmt::before {
  display: block;
  width: 1.857143em;
  height: 2.357143em;
  content: '';
  background: url("../img/icon-file2.svg") no-repeat center / contain;
  margin: 0 auto 2px;
}
.download_item .tcon .title {
  font-size: 2.4rem;
  line-height: 3.1rem;
  font-weight: 600;
  max-width: 52rem;
}
.download_item .tcon .desc {
  color: var(--title);
  margin-top: 0.5rem;
}
.download_item .tcon ul {
  font-size: 1.7rem;
  margin-top: 0.8rem;
}
.download_item .tcon ul li + li {
  margin-top: 2px;
}
.download_item .tcon ul strong {
  font-weight: 600;
}
.download_item .btn_dw {
  display: inline-grid;
  grid-template-columns: 1.83334em auto;
  justify-content: end;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #232323;
  transition: all 0.3s;
  gap: 0.778em;
  padding: 2.1337127% 4.4096728% 2.2759602%;
}
.download_item .btn_dw::before {
  display: block;
  padding-bottom: 100%;
  content: '';
  border-radius: 0.44em;
  background: url("../img/icon-download-w.svg") no-repeat center / 54.55% var(--primary);
}
.download_item .btn_dw:hover {
  color: var(--primary);
}

/*** global css ***/
.loading {
  position: relative;
}
.loading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  background-color: rgba(255, 255, 255, 0.3);
}
.loading:after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.8rem solid #EFEFEF;
  border-top-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transition: all 0.3s;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: loading 1s linear infinite;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(320deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  right: 0;
  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: 12px 0 0;
  padding: 0;
  border: none;
  width: 100%;
  text-align: center;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.quote_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  overflow: auto;
}
.quote_modal .head {
  margin-bottom: 4rem;
}
.quote_modal .head .title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3;
}
.quote_modal .head .title span {
  color: var(--primary);
}
.quote_modal .head .desc {
  color: var(--text);
  margin-top: 12px;
  line-height: 1.5;
}
.quote_modal::-webkit-scrollbar {
  display: none;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 76.8rem;
  padding: 5rem;
  margin: 5rem auto;
  border-radius: 2.4rem;
  background-color: #fff;
}
.quote_modal form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem 0;
}
.quote_modal form span {
  width: 100%;
}
.quote_modal form .col-2 {
  width: 48.98911353%;
}
.quote_modal form .label {
  display: block;
  color: #53737f;
  margin-bottom: 0.95rem;
}
.quote_modal form .label i {
  color: var(--primary);
}
.quote_modal form input,
.quote_modal form textarea,
.quote_modal form select {
  display: block;
  width: 100%;
  font-size: 1em;
  border: 1px solid #dadfe6;
  background-color: transparent;
  border-radius: 0.8rem;
  transition: border-color 0.2s;
  height: 4.9rem;
  padding: 0 2.1rem;
}
.quote_modal form input::placeholder,
.quote_modal form textarea::placeholder,
.quote_modal form select::placeholder {
  color: #53737f;
}
.quote_modal form input:focus,
.quote_modal form textarea:focus,
.quote_modal form select:focus {
  border-color: var(--primary);
}
.quote_modal form select {
  outline: none;
  background: url("../img/icon-select.svg") no-repeat center right 2.7rem/1.2rem;
  padding-right: 5rem;
}
.quote_modal form textarea {
  padding: 1.5rem 2.1rem;
  height: 11.1rem;
}
.quote_modal form span:has(input[type=submit]) {
  margin-top: 0.6rem;
}
.quote_modal form input[type=submit] {
  transition: all 0.3s;
  text-align: center;
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  height: 5.6rem;
}
.quote_modal form input[type=submit]:hover {
  background-color: transparent;
  color: var(--primary);
}
.quote_modal form .tip {
  font-size: 1.4rem;
  color: #7d8a98;
  display: block;
  text-align: center;
  margin-top: -2px;
}

.btn_mega_solutions .sub-menu,
.btn_mega_resources .sub-menu {
  display: none;
}
.mega_menu {
  --mega-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mega-duration: 0.55s;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 10;
  pointer-events: none;
}
.mega_menu.active {
  pointer-events: auto;
}
.mega_menu .mega_mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--mega-duration) var(--mega-ease);
}
.mega_menu.active .mega_mask {
  opacity: 1;
  pointer-events: auto;
}
.mega_menu .mega_inner {
  position: relative;
  z-index: 1;
  height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: height var(--mega-duration) var(--mega-ease);
}
header .mega_menu .content {
  width: auto;
  max-width: 144rem;
  padding: 0;
  margin: 0 auto;
}
.mega_menu .mega_panels {
  position: relative;
}
.mega_menu .mega_panel {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--mega-ease), transform 0.3s var(--mega-ease), visibility 0.3s var(--mega-ease);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}
.mega_menu .mega_panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.mega_menu .page_nav {
  padding: 3.6rem 0 4rem;
}
.mega_menu .mega_resources {
  padding: 3.6rem 0 4rem;
}
.mega_menu .mega_resources .nav_list {
  display: flex;
  gap: 2rem 1.85185%;
}
.mega_menu .mega_resources .nav_list li {
  flex: 1 1 0%;
}
.mega_menu .mega_resources .nav_list li .nav_item {
  height: 100%;
}
.mega_menu .mega_resources .nav_item {
  display: grid;
  grid-template-columns: 1fr 1.7143em;
  align-items: end;
  cursor: pointer;
  transition: 0.3s;
  background-color: var(--secondary);
  border-radius: var(--bg_rd);
  font-size: 2.8rem;
  line-height: 1.28571;
  font-weight: 500;
  gap: 8.7rem 0.85em;
  padding: 3.2rem 2.6rem 2.5rem 3.6rem;
}
.mega_menu .mega_resources .nav_item .icon {
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 50%;
  background-color: #fff;
  grid-column: -1 / 1;
  margin-bottom: auto;
}
.mega_menu .mega_resources .nav_item .icon img {
  transform: scale(0.615385);
}
.mega_menu .mega_resources .nav_item span {
  max-width: 18rem;
  padding-bottom: 1rem;
}
.mega_menu .mega_resources .nav_item .btn_c {
  width: 100%;
}
.mega_menu .mega_resources .nav_item.active,
.mega_menu .mega_resources .nav_item:hover {
  background-color: var(--primary);
  color: #fff;
}
.mega_menu .mega_resources .nav_item.active .btn_c,
.mega_menu .mega_resources .nav_item:hover .btn_c {
  background-color: #fff;
}
.mega_menu .mega_resources .nav_item.active .btn_c::after,
.mega_menu .mega_resources .nav_item:hover .btn_c::after {
  filter: none;
  transform: rotate(90deg);
}
header #navigation .menu > li.btn_mega_solutions.mega_open > a,
header #navigation .menu > li.btn_mega_resources.mega_open > a {
  color: var(--primary);
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1440px) {
  .large_content {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  .large_content {
    max-width: 1220px;
  }
  .page_nav .nav_item {
    font-size: 2.2rem;
  }
  .solution_spec .top {
    background-color: #b3ddf2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content,
  .large_content {
    max-width: 896px;
  }
  .tcon h1 {
    font-size: 5rem;
  }
  .tcon h2 {
    font-size: 4rem;
  }
  .page_nav .nav_item {
    padding: 2.5rem;
    font-size: 2rem;
  }
  .page_nav .large_content .nav_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .mega_menu {
    display: none !important;
  }
  header .content {
    width: 100%;
    padding: 0 3rem;
  }
  header #navigation {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
  }
  header #navigation.active {
    pointer-events: auto;
  }
  header #navigation.active .close {
    opacity: 1;
  }
  header #navigation.active .con {
    transform: translate(0);
  }
  header #navigation > .close {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
  }
  header #navigation .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header #navigation .close_box {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header #navigation .close_box .close {
    display: block;
    width: 44px;
    height: 44px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../img/close.svg') no-repeat center / 12px;
  }
  header #navigation .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header #navigation .menu {
    display: block;
  }
  header #navigation .menu > li {
    cursor: pointer;
  }
  header #navigation .menu > li + li {
    margin-top: 8px;
  }
  header #navigation .menu > li > a {
    color: var(--title);
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header #navigation .menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .menu > li.current-menu-item > a,
  header #navigation .menu > li.current-menu-parent > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .menu .menu-item-has-children {
    position: relative;
  }
  header #navigation .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header #navigation .menu .menu-item-has-children::before,
  header #navigation .menu .menu-item-has-children::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header #navigation .menu .menu-item-has-children::after {
    background: url(../img/select.svg) no-repeat center / 12px;
  }
  header #navigation .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header #navigation .sub-menu {
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  header #navigation .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
  }
  header #navigation .sub-menu > li + li {
    margin-top: 6px;
  }
  header #navigation .sub-menu > li > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    padding: 10px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header #navigation .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header #navigation .sub-menu .menu-item-has-children::before,
  header #navigation .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header #navigation .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header #navigation .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header #navigation .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .logo,
  header .btns {
    padding: 0;
  }
  header .btns .btn_menu {
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content,
  .large_content {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --bg_rd: 10px;
  }
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content,
  .large_content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
  }
  .btn_c {
    width: 44px;
    height: 44px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 44px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translate(0);
    pointer-events: all;
    margin-top: 30px;
    padding: 0 20px;
  }
  .tcon.bn p,
  .tcon.bn .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  .tcon h1 {
    font-size: 38px;
    line-height: 1.3;
  }
  .tcon h2 {
    font-size: 30px;
    line-height: 1.3;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  div.head.flex .tcon {
    padding: 0;
  }
  div.head.flex .btn {
    margin: 0;
  }
  div.head .desc,
  div.head p {
    margin-top: 10px;
  }
  div.head p + p {
    margin-top: 10px;
  }
  div.head .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    margin-top: 20px;
  }
  div.head .btns {
    gap: 14px;
    margin-top: 20px;
  }
  div.head .btns .btn {
    margin: 0;
  }
  header {
    top: 0;
  }
  header .content {
    padding: 0 20px;
  }
  header .logo img {
    height: 30px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btns .btn_search,
  header .btns .btn_lang {
    width: 22px;
    height: 22px;
  }
  footer .foot_follow {
    padding: 50px 0 20px;
  }
  footer .foot_follow .logo {
    width: 200px;
    padding: 0;
    margin-right: auto;
  }
  footer .foot_follow .social {
    gap: 16px;
  }
  footer .foot_follow .social a {
    width: 44px;
    height: 44px;
  }
  footer .main {
    padding: 20px 0 50px;
    display: block;
  }
  footer .main strong {
    font-size: 18px;
  }
  footer .main .foot_start {
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
  }
  footer .main .foot_start p {
    flex: 1;
    font-size: 22px;
    line-height: 1.5;
  }
  footer .main .foot_start .menu {
    margin: 0;
  }
  footer .main .foot_start .menu a {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
  }
  footer .main .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/icon-select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .main .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .main .foot_nav > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .main .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .bottom {
    font-size: 13px;
    padding: 20px 0;
    align-items: flex-start;
  }
  footer .bottom a {
    font-size: 14px;
  }
  footer #backtop {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
  .page_banner .image {
    width: calc(100% - 20px);
    border-radius: 10px;
  }
  .page_banner .head {
    display: block;
    padding: 20px 0 50px;
  }
  .page_banner .rt {
    margin: 0;
  }
  .page_banner form {
    padding-right: 5px;
    margin-top: 20px;
    max-width: 444px;
  }
  .page_banner form input[type=submit] {
    width: 44px;
    height: 44px;
    margin: 5px 0;
  }
  .page_banner.resources_banner .head {
    padding-bottom: 30px;
  }
  .page_nav {
    padding: 30px 0;
  }
  .page_nav .nav .nav_list {
    margin: 0 -20px;
    padding: 0 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 16px;
  }
  .page_nav .nav .nav_list::-webkit-scrollbar {
    display: none;
  }
  .page_nav .nav .nav_list li {
    flex: 1 0 280px;
  }
  .page_nav .nav .nav_list .nav_item {
    font-size: 16px;
    grid-template-columns: 50px 1fr 44px;
    gap: 14px;
    padding: 16px 20px;
  }
  .page_nav .nav .nav_list .nav_item span {
    margin: 0;
  }
  .page_nav .large_content .nav .nav_list li {
    flex: 1 0 260px;
  }
  .blog_list .img {
    border-radius: 10px;
  }
  .blog_list .info {
    padding: 20px 0 30px;
  }
  .blog_list .info .metas {
    font-size: 14px;
  }
  .blog_list .info .title {
    font-size: 20px;
    margin-top: 10px;
  }
  .blog_list .btn_i {
    margin-top: 20px;
  }
  .download_item {
    --rd: 10px;
  }
  .download_item .info {
    padding: 20px;
    gap: 16px;
  }
  .download_item .fmt {
    font-size: 12px;
    margin: 0;
  }
  .download_item .tcon .title {
    font-size: 20px;
    line-height: 1.5;
  }
  .download_item .tcon .desc {
    margin-top: 5px;
  }
  .download_item .tcon ul {
    font-size: 14px;
    margin-top: 5px;
  }
  .download_item .btn_dw {
    font-size: 14px;
    padding: 16px 20px;
  }
  .product_list a {
    padding: 0 20px 20px;
  }
  .product_list .img {
    width: 100%;
  }
  .product_list .info {
    margin-top: 10px;
  }
  .product_list .info .cat {
    font-size: 13px;
  }
  .product_list .info .title {
    font-size: 18px;
    margin-top: 5px;
  }
  .product_list .info .desc {
    line-height: 1.5;
    margin-top: 10px;
  }
  
  .quote_modal .modal_content {
    padding: 30px 20px;
    border-radius: 10px;
  }
  .quote_modal .head {
    margin-bottom: 30px;
  }
  .quote_modal .head .title {
    font-size: 28px;
  }
  .quote_modal form {
    gap: 16px 0;
  }
  .quote_modal form .label {
    margin-bottom: 5px;
  }
  .quote_modal form input,
  .quote_modal form textarea,
  .quote_modal form select {
    height: 46px;
    padding: 0 20px;
  }
  .quote_modal form select {
    padding-right: 40px;
    background-size: 10px;
    background-position-x: right 20px;
  }
  .quote_modal form textarea {
    height: 90px;
    padding: 14px 20px;
  }
  .quote_modal form span:has(input[type=submit]) {
    margin-top: 4px;
  }
  .quote_modal form input[type=submit] {
    height: 46px;
  }
  .quote_modal form .tip {
    margin-top: 0;
    font-size: 13px;
  }
}
@media screen and (max-width: 576px) {
  header .btns .btn {
    display: none;
  }
  footer .foot_follow {
    flex-direction: column;
    align-items: center;
  }
  footer .foot_follow .social {
    width: 100%;
    justify-content: space-around;
  }
  footer .main .foot_start {
    display: block;
  }
  footer .main .foot_start .menu {
    margin-top: 20px;
  }
  footer .bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
  section.oem_main .items > div {
    grid-template-columns: 1fr;
  }
}
