* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #0066b3;
  --secondary: #5cc2c4;
  --tertiary: #1c5d9e;
  --title: #1a2b47;
  --text: #4a5568;
  --bg: #f5fafd;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 134rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 137rem;
  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;
}
.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: "Plus Jakarta Sans", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
  --h: 100%;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.icon.icon_ab {
  position: relative;
}
.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;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: 14px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.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: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  border-radius: calc(var(--radius) - 2px);
  word-break: break-word;
}
.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;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 5.4rem;
  padding: 0 3rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn.wt {
  background-color: #fff;
  border-color: #fff;
  color: var(--title);
}
.btn.wt:hover {
  background-color: transparent;
  color: #fff;
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 5.5rem;
  padding: 0 3rem;
}
.btn_line:hover {
  background-color: var(--primary);
  color: #fff;
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 600;
  color: #1a1a1a;
  gap: 0.8rem;
}
.btn_i::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  transition: all 0.3s;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../images/arrow.svg") no-repeat no-repeat center / contain;
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.swiper_btns {
  gap: 2.7rem;
  display: flex;
}
.swiper_btns div {
  width: 6.3rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--tertiary);
  background-color: var(--tertiary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../images/arrow-line.svg) no-repeat center / 31%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(26, 26, 26, 0.35);
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 162.1rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.head.bn p,
.head.bn .desc {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.head.center h1,
.head.center h2,
.head.center p,
.head.center .desc {
  margin-left: auto;
  margin-right: auto;
}
.head .subtitle {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.121429em;
  margin-bottom: 1.5rem;
}
.head h1 {
  font-size: 6rem;
  line-height: 1.15;
  font-weight: 700;
}
.head h1 span {
  color: var(--primary);
}
.head h2 {
  font-size: 4.6rem;
  line-height: 1.2;
  font-weight: 700;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
header {
  position: sticky;
  left: 0;
  top: -80px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
  color: var(--text);
}
header.opt {
  top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .logo {
  display: block;
  position: relative;
  margin-right: 5.4%;
}
header .logo img {
  display: block;
  width: auto;
  height: 4.13257rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 4.15rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 48px;
  transition: all 0.3s;
}
header nav .menu > li > a:hover {
  color: var(--primary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .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 nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
  border-radius: 5px;
}
header nav .sub-menu > li > a:hover {
  color: var(--primary);
  background-color: var(--bg);
}
header .btns {
  gap: 2.1rem;
  display: flex;
  align-items: center;
  min-height: 80px;
}
header .btn_search {
  display: block;
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  cursor: pointer;
  background: url(../images/icon-search.svg) no-repeat center / contain;
  margin-top: 2px;
}
header .btn_lang {
  position: relative;
  display: block;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text);
  padding-left: 25px;
  margin-bottom: 2px;
}
header .btn_lang::before {
  position: absolute;
  width: 18px;
  height: 18px;
  content: '';
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  background: url("../images/icon-lang.svg") no-repeat center / contain;
}
header .btn {
  font-weight: 600;
  line-height: 4.8rem;
  padding: 0 2.55rem;
  margin-left: 4px;
}
header .btn_menu {
  display: none;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../images/nav-btn.svg) no-repeat center / contain;
}
footer {
  background-color: var(--title);
  color: #fff;
}
footer .main {
  padding: 17rem 0 0.6rem;
}
footer .main strong {
  display: block;
  text-transform: uppercase;
  opacity: 0.65;
  font-weight: 300;
  letter-spacing: 0.003125em;
}
footer .main .flex {
  gap: 8.3rem 2rem;
}
footer .main .foot_intro {
  width: 35rem;
  margin-top: -4.7rem;
  margin-right: 4.5%;
}
footer .main .foot_intro .logo {
  display: block;
  position: relative;
  max-width: 26.6rem;
}
footer .main .foot_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(0) brightness(2);
}
footer .main .foot_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .foot_intro p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-top: 2.8rem;
  max-width: 32rem;
}
footer .main .foot_intro .social {
  gap: 1rem 0.7rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.4rem;
}
footer .main .foot_intro .social a {
  opacity: 1;
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.13);
}
footer .main .foot_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 45.5%;
}
footer .main .foot_intro .social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
footer .main .foot_intro .social .facebook a::after {
  background-image: url(../images/social-facebook.svg);
}
footer .main .foot_intro .social .twitter a::after {
  background-image: url(../images/social-twitter.svg);
}
footer .main .foot_intro .social .youtube a::after {
  background-image: url(../images/social-youtube.svg);
}
footer .main .foot_intro .social .instagram a::after {
  background-image: url(../images/social-instagram.svg);
}
footer .main .foot_intro .social .linkedin a::after {
  background-image: url(../images/social-linkedin.svg);
}
footer .main .foot_nav strong {
  margin-bottom: 2.2rem;
}
footer .main .foot_nav li a {
  font-size: 1.8rem;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .foot_nav li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_nav li + li {
  margin-top: 1.5rem;
}
footer .main .foot_connect {
  width: 26.3rem;
}
footer .main .foot_connect li {
  position: relative;
  padding-left: 4.5rem;
}
footer .main .foot_connect li::before {
  content: '';
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 1px;
}
footer .main .foot_connect li a {
  font-weight: 500;
}
footer .main .foot_connect li + li {
  margin-top: 2.2rem;
}
footer .main .foot_connect .phone::before {
  background-image: url(../images/icon-phone.svg);
  top: 0;
}
footer .main .foot_connect .email::before {
  background-image: url(../images/icon-email.svg);
}
footer .main .foot_touch {
  width: 100%;
  overflow: hidden;
  border-radius: 2.1rem;
  background-image: linear-gradient(to right, #217ecc, #0066b3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.5rem 4.7rem 2rem 6.6rem;
  min-height: 13.5rem;
}
footer .main .foot_touch.img_bg > img {
  opacity: 0.57;
}
footer .main .foot_touch .title {
  font-size: 2.4rem;
  line-height: 3.5rem;
  max-width: 44.8rem;
  font-weight: 500;
  letter-spacing: 0.0020833em;
}
footer .main .foot_touch .btn {
  margin-top: 0.6rem;
  min-width: 18.5rem;
}
footer .bottom {
  padding: 2.7rem 0;
}
footer .bottom p,
footer .bottom a {
  font-size: 1.4rem;
  opacity: 0.6;
  font-weight: 300;
  letter-spacing: 0.001429em;
}
footer .bottom a {
  opacity: 0.5;
  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 {
  width: 1px;
  height: 1.1rem;
  background-color: #fff;
  opacity: 0.3;
  display: inline-block;
  content: '';
  margin: 0 1.6rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
.conn_side {
  position: fixed;
  z-index: 99;
  right: 2.4rem;
  top: 38.2vh;
}
.conn_side.style a,
.conn_side.style span {
  box-shadow: 0 0 1.2rem rgba(255, 255, 255, 0.1);
}
.conn_side ul {
  display: grid;
  gap: 1rem;
}
.conn_side a,
.conn_side span {
  display: block;
  cursor: pointer;
  width: 4.8rem;
  height: 4.8rem;
  transition: all 0.3s;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 1.2rem;
  background: no-repeat center / 41.67% var(--title);
}
.conn_side a:hover,
.conn_side span:hover {
  background-color: var(--primary);
}
.conn_side .email a,
.conn_side .email span {
  background-image: url("../images/conn-email.svg");
}
.conn_side .whatsapp a,
.conn_side .whatsapp span {
  background-image: url("../images/conn-whatsapp.svg");
  background-size: 45.8%;
}
.conn_side .msg a,
.conn_side .msg span {
  background-image: url("../images/conn-msg.svg");
  background-size: 37.5%;
}
.conn_side .backtop a,
.conn_side .backtop span {
  background-image: url("../images/nav-t-w.svg");
  background-size: 22.92%;
}
.page_products {
  background-color: var(--bg);
  padding: 10.9rem 0 8.3rem;
}
.page_products p {
  max-width: 71.1rem;
  margin-top: 2.3rem;
}
.page_products .list {
  margin-top: 4.8rem;
}
.page_products .list ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(32rem, 100%), 1fr));
  gap: 2.8rem 1.86567164%;
}
.page_products p.center:has(.btn) {
  max-width: unset;
  margin-top: 4.9rem;
  min-height: 5.6rem;
}
.page_blog {
  background-color: var(--bg);
  padding: 13.8rem 0 11.5rem;
}
.page_blog .page_blog_swiper {
  overflow: hidden;
  margin-top: 4.7rem;
  border-radius: 2.3rem 2.3rem 0 0;
}
.page_blog .page_blog_swiper .swiper-slide {
  max-width: 425px;
}
.page_blog .swiper_control {
  margin-top: 5.2rem;
}
.page_blog .swiper_btns.middle {
  top: 44.9%;
}
.page_nav {
  border-bottom: 1px solid #e5e9f0;
  padding: 2.9rem 0 3.1rem;
}
.page_nav .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}
.page_nav .nav .nav_item {
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  font-size: 1.429rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid var(--primary);
  line-height: 4.9rem;
  min-width: 15.2rem;
  padding: 0 2.8rem;
  letter-spacing: 0.00069979em;
}
.page_nav .nav .nav_item.active,
.page_nav .nav .nav_item:hover {
  background-color: var(--primary);
  color: #fff;
}
.breadcrumbs {
  line-height: 2rem;
  min-height: 2.5rem;
}
.breadcrumbs span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}
.breadcrumbs span span::before {
  content: ' / ';
  color: var(--title);
  margin: 0 0.14286em 0 0.39286em;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span a {
  color: var(--title);
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.product_list .active a::after {
  opacity: 1;
}
.product_list .active a:hover img {
  transform: scale(1.03);
}
.product_list .active .image .img_cv {
  transform: scale(1);
  opacity: 1;
}
.product_list .active .image .img_ct {
  transform: scale(1.1);
  opacity: 0;
}
.product_list .active .btn {
  transform: translateY(0);
  opacity: 1;
}
.product_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  --radius: 3rem;
  border-radius: var(--radius);
  background-color: #fff;
  padding: 2rem 1.9rem;
}
.product_list a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 1rem 1rem rgba(189, 204, 214, 0.35);
}
.product_list .image {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 75.95907928%;
  overflow: hidden;
  border-radius: calc(var(--radius) * 0.766667);
  background-image: linear-gradient(to bottom, #edf0f2 2.514%, #fff 53.0726%, #edf0f2);
}
.product_list .image .img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.3s linear;
}
.product_list .image .img_cv {
  transform: scale(1.1);
  opacity: 0;
}
.product_list .btn {
  position: absolute;
  z-index: 2;
  bottom: 8.75421%;
  font-weight: 600;
  line-height: 4.4rem;
  padding: 0 3.1rem;
  transform: translateY(100%);
  opacity: 0;
}
.product_list .btn:hover {
  background-color: #fff;
}
.product_list .info {
  flex: 1;
  padding: 3.1rem 1.3rem 1.6rem;
}
.product_list .info .cat {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}
.product_list .info .title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 0.9rem;
}
.product_list .info .desc {
  line-height: 2.6rem;
  color: #505151;
  hyphens: auto;
  max-width: 35rem;
  margin-top: 1.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog_list a:hover img {
  transform: scale(1.03);
}
.blog_list .img {
  border-radius: 2.3rem;
  padding-bottom: 63.29411765%;
}
.blog_list .info {
  flex: 1;
  border-bottom: 1px solid #bec7ce;
  padding: 6.3529412% 0 11.0588235%;
}
.blog_list .metas {
  font-size: 1.5rem;
  font-weight: 500;
  color: #586d8c;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-transform: uppercase;
}
.blog_list .metas .cat {
  font-weight: 600;
}
.blog_list .metas .date {
  letter-spacing: 0.0266667em;
}
.blog_list .metas i {
  display: inline-block;
  width: 0.26667em;
  height: 0.26667em;
  border-radius: 50%;
  background-color: var(--secondary);
  content: '';
  margin: 0 0.6em 0 0.6667em;
}
.blog_list .title {
  font-size: 2.2rem;
  line-height: 1.63636364;
  font-weight: 600;
  color: #1a1a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1.3rem;
}
.blog_list .btn_i {
  margin-top: 2.1rem;
}

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

div.jst-language-switcher {
  display: none;
}

.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%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

div form#sytech-newsletter-subscription p.failed, form#sytech-newsletter-subscription p.success {
  border: 1px solid #fff;
}
div form#sytech-newsletter-subscription p.failed:after, div form#sytech-newsletter-subscription p.success:after {
  width: 10px;
  height: 10px;
  bottom: -6px;
  transform: rotate(45deg);
  border: 1px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  background-color: var(--primary);
}
div form#sytech-newsletter-subscription p.failed.active, div form#sytech-newsletter-subscription p.success.active {
  bottom: calc(100% + 10px);
}

.search_drawer {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  transition: all .3s;
  pointer-events: none;
}
.search_drawer.active {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.75);
}
.search_drawer.active .drawer_content {
  transform: translateY(0);
}
.search_drawer .drawer_content {
  width: 100%;
  height: 80%;
  padding: 2rem 0;
  transition: all .3s;
  transform: translateY(100%);
  background-color: #fff;
}
.search_drawer .close {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  left: 100%;
  transition: all .3s;
  transform: translateY(50%);
  filter: contrast(0) brightness(0);
  background: url(../images/close.svg) no-repeat center/contain;
}
.search_drawer .close:hover {
  transform: translateY(50%) rotate(180deg);
}
.search_drawer form {
  transition: all .3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.search_drawer form:focus-within {
  border-bottom-color: var(--primary);
}
.search_drawer input[type="text"] {
  width: 100%;
  height: 10rem;
  display: block;
  text-align: center;
  font-size: 3.5rem;
}
.search_drawer input[type="submit"] {
  display: none;
}

.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::-webkit-scrollbar {
  display: none;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 76.8rem;
  margin: 5rem auto;
  padding: 0;
  background: none;
}
.quote_modal .contact_main .quote_form {
  width: 100%;
}

.btn_mega_menu .sub-menu {
  display: none;
}
.mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 5rem 0 4rem;
  display: none;
  background-color: #fff;
  color: var(--title);
}
.mega_menu .flex {
  gap: 4%;
}
.mega_menu .nav {
  width: 20%;
  padding-right: 5px;
  overflow: auto;
  max-height: calc(100vh - 26rem);
}
.mega_menu .nav::-webkit-scrollbar {
  width: 5px;
}
.mega_menu .nav::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .nav ul {
  gap: 1.5rem;
  display: grid;
}
.mega_menu .nav a {
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s;
  padding: 1.2rem 2rem;
  border-radius: 6px;
}
.mega_menu .nav a.active {
  background-color: #edeef2;
}
.mega_menu .nav .icon {
  width: 2.6rem;
  height: 2.6rem;
  background: no-repeat center/contain;
}
.mega_menu .nav .toggle {
  cursor: pointer;
  width: 2.6rem;
  height: 2.6rem;
  transition: all .3s;
  background: url(../img/icon-select.svg) no-repeat center/50%;
}
.mega_menu .nav .open .toggle {
  transform: rotate(180deg);
}
.mega_menu .nav .sub {
  display: none;
  padding-top: 1rem;
  padding-left: 2rem;
}
.mega_menu .nav .sub a {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.mega_menu .list {
  flex: 1;
  display: none;
  overflow: auto;
  max-height: calc(100vh - 26rem);
  padding-bottom: 1.5rem;
}
.mega_menu .list::-webkit-scrollbar {
  width: 5px;
}
.mega_menu .list::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .list.active {
  display: block;
}
.mega_menu .list ul {
  gap: 3rem 4%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mega_menu .list li a {
  display: block;
  text-align: center;
}
.mega_menu .list li a:hover img {
  transform: scale(1.03);
}
.mega_menu .list li .img {
  padding-bottom: 77.75%;
  overflow: hidden;
}
.mega_menu .list li .title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1rem;
}
.mega_menu .list .btn {
  margin-top: 5rem;
}
.mega_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.mega_overlay.active {
  opacity: 1;
  pointer-events: all;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header .logo {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}
@media screen and (max-width: 1024px) {
  .mega_menu, .mega_overlay {
    display: none !important;
  }
  header .logo,
  header .btns {
    margin: 0;
    padding: 0;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    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);
    display: block;
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header nav .close_box {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../images/close.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
  }
  header nav .menu > li {
    cursor: pointer;
  }
  header nav .menu > li + li {
    margin-top: 8px;
  }
  header nav .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 nav .menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children {
    position: relative;
  }
  header nav .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header nav .menu .menu-item-has-children::before,
  header nav .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 nav .menu .menu-item-has-children::after {
    background: url(../images/select.svg) no-repeat center / 12px;
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  header nav .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
  }
  header nav .sub-menu > li + li {
    margin-top: 6px;
  }
  header nav .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 nav .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::before,
  header nav .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header nav .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .btn_menu {
    display: block;
    filter: contrast(0) brightness(0.7);
  }
  header .btn_search,
  header .btn_lang,
  header .btn {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 5rem;
  }
  .head h2 {
    font-size: 4rem;
  }
}
@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) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  .btn_i {
    font-size: 14px;
    gap: 8px;
  }
  .btn_i::after {
    width: 12px;
    height: 12px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .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;
  }
  div.head.bn p,
  div.head.bn .desc {
    line-height: 1.5;
    font-size: 14px;
  }
  div.head .subtitle {
    font-size: 14px;
    margin-bottom: 8px;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  div.head p + p {
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    margin-top: 20px;
  }
  div.head .btn_i {
    margin-top: 20px;
  }
  header {
    padding: 0;
    top: 0;
  }
  header .logo img {
    height: 35px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btn_lang {
    font-size: 14px;
    padding-left: 28px;
  }
  header .btn_lang::before {
    width: 22px;
    height: 22px;
    top: 50%;
  }
  header .btn_search {
    width: 22px;
    height: 22px;
  }
  header .btn {
    line-height: 40px;
    padding: 0 20px;
  }
  footer .main {
    padding: 50px 0 10px;
  }
  footer .main .flex {
    display: block;
  }
  footer .main .foot_intro {
    width: 100%;
    margin: 0 0 30px;
  }
  footer .main .foot_intro .logo {
    max-width: 200px;
    margin: 0 auto;
  }
  footer .main .foot_intro p {
    font-size: 14px;
    line-height: 1.5;
    max-width: unset;
    margin-top: 20px;
    text-align: center;
  }
  footer .main .foot_intro .social {
    margin-top: 20px;
    gap: 16px;
    justify-content: space-around;
  }
  footer .main .foot_intro .social a {
    width: 40px;
    height: 40px;
  }
  footer .main .foot_nav:not(.foot_connect) {
    width: 100%;
  }
  footer .main .foot_nav:not(.foot_connect) strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
    opacity: 1;
  }
  footer .main .foot_nav:not(.foot_connect) strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    filter: contrast(0) brightness(2);
  }
  footer .main .foot_nav:not(.foot_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav:not(.foot_connect) > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .foot_nav:not(.foot_connect) > div li + li {
    margin-top: 14px;
  }
  footer .main .foot_nav:not(.foot_connect) > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .main .foot_nav:not(.foot_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .foot_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .main .foot_connect strong {
    margin-bottom: 20px;
  }
  footer .main .foot_connect li {
    padding-left: 30px;
  }
  footer .main .foot_connect li::before {
    width: 16px;
    height: 16px;
    top: 2px;
  }
  footer .main .foot_connect li a {
    font-size: 14px;
  }
  footer .main .foot_connect li + li {
    margin-top: 16px;
  }
  footer .main .foot_connect .phone::before {
    top: 2px;
  }
  footer .main .foot_touch {
    margin-top: 40px;
    padding: 20px;
    min-height: unset;
    border-radius: 10px;
  }
  footer .main .foot_touch .title {
    font-size: 18px;
    line-height: 1.5;
  }
  footer .main .foot_touch .btn {
    min-width: unset;
    margin: 0;
  }
  footer .bottom {
    padding: 20px 0;
  }
  footer .bottom ul {
    gap: 1rem 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer .bottom p {
    font-size: 13px;
  }
  footer .bottom a {
    font-size: 14px;
  }
  .conn_side {
    right: 20px;
    top: unset;
    bottom: 20px;
  }
  .conn_side a,
  .conn_side span {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .page_products {
    padding: 50px 0;
  }
  .page_products .list {
    margin-top: 30px;
  }
  .page_products .list ul {
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: 30px 16px;
  }
  .page_products p.center:has(.btn) {
    margin-top: 40px;
    min-height: 42px;
  }
  .page_blog {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_blog .page_blog_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_blog .page_blog_swiper .swiper-slide {
    max-width: 282px;
  }
  .page_blog .swiper_control {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
  }
  .page_blog .swiper_control .swiper_btns.middle {
    padding: 0;
    margin: 0;
    width: auto;
  }
  .page_nav {
    padding: 20px 0;
  }
  .page_nav .nav .nav_list {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    justify-content: unset;
  }
  .page_nav .nav .nav_list li:first-child {
    margin-left: auto;
  }
  .page_nav .nav .nav_list li:last-child {
    margin-right: auto;
  }
  .page_nav .nav .nav_list::-webkit-scrollbar {
    display: none;
  }
  .page_nav .nav .nav_item {
    font-size: 14px;
    line-height: 36px;
    min-width: unset;
    padding: 0 20px;
    white-space: nowrap;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 25px;
  }
  .breadcrumbs span {
    font-size: 14px;
    letter-spacing: unset;
  }
  .product_list a {
    --radius: 10px;
    padding: 16px;
  }
  .product_list .btn {
    line-height: 40px;
    padding: 0 20px;
    transform: translateY(0);
    opacity: 1;
  }
  .product_list .info {
    padding: 16px 10px;
  }
  .product_list .info .cat {
    font-size: 14px;
  }
  .product_list .info .title {
    font-size: 18px;
    margin-top: 5px;
  }
  .product_list .info .desc {
    line-height: 1.5;
    margin-top: 10px;
  }
  .blog_list .img {
    border-radius: 10px;
  }
  .blog_list .info {
    padding: 14px 0 20px;
  }
  .blog_list .metas {
    font-size: 14px;
  }
  .blog_list .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .blog_list .btn_i {
    margin-top: 20px;
  }

  /*** global css ***/
  .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
  }
  .wpcf7 form.wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }

  .search_drawer .content {
    height: 100%;
  }
  .search_drawer .close {
    width: 20px;
    height: 20px;
    bottom: 30px;
    left: unset;
    right: 30px;
    transform: translate(0);
  }
  .search_drawer .close:hover {
    transform: translate(0);
  }
  .search_drawer form {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .search_drawer input[type="text"] {
    height: 46px;
    font-size: 16px;
  }
  .search_drawer input[type="submit"] {
    width: 46px;
    height: 46px;
    display: block;
    overflow: hidden;
    text-indent: -999px;
    background: url(../images/icon-search.svg) no-repeat center/20px;
  }

  .quote_modal .modal_content {
    border-radius: 10px;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  header .btn {
    display: none;
  }
  footer .bottom .flex {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }
}
