/* === public.css (shared) === */
/* --- base: public.css --- */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #02378a;
  --secondary: #05b6f2;
  --title: #0a2350;
  --text: #5c6b80;
  --dark: #071933;
  --line: #dce5ee;
  --light: #f5f8fb;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0px auto;
  position: relative;
}
.content .content {
  padding: 0px;
}
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,
select {
  border: none;
  outline: none;
  font-family: inherit;
  color: var(--title);
}
button {
  cursor: pointer;
  background-color: transparent;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: 'Inter', sans-serif;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 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: 0px;
  top: 0px;
  z-index: -2;
}
section:has(> .snow) {
  overflow-x: clip;
}
.img_bg > img.snow {
  height: auto;
  object-fit: fill;
  z-index: 1;
}
.snow {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag::before {
  content: '';
  flex-shrink: 0;
  width: 1.8rem;
  height: 0.92rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 9.2'%3E%3Cpath fill='%2305b6f2' d='M18.02 2.91c-1.76 1.09-4.08 1.34-5.73 2.63-1.1.86-1.92 2.41-2.57 3.62C7.57 5.57 3.6 6.15 0 6.45c1.66-1.05 4.02-1.34 5.6-2.53C6.68 3.1 8.05 1.28 8.57.01c.69.21.72 1 1.32 1.58 2.09 2.04 5.47 1.34 8.13 1.32Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.tag.light {
  color: var(--secondary);
}
.tcon h1,
.tcon h2 {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1.2;
}
.tcon .tag + h1,
.tcon .tag + h2 {
  margin-top: 1.2rem;
}
.tcon h1 em,
.tcon h2 em {
  color: var(--secondary);
}
.tcon p {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.tcon h1 + p,
.tcon h2 + p {
  margin-top: 1.2rem;
}
.btn,
.btn_line,
.btn_border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 5.6rem;
  padding: 0px 2.7rem;
  border-radius: 10rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  transition: 0.3s;
}
.btn_line::after,
.btn_border::after,
.btn.arrow::after {
  content: '';
  flex-shrink: 0;
  width: 1.33rem;
  height: 0.82rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9' fill='none' stroke='%23000' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M.7 4.5h12.4M9.4.7l3.7 3.8-3.7 3.8'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9' fill='none' stroke='%23000' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M.7 4.5h12.4M9.4.7l3.7 3.8-3.7 3.8'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.3s;
}
.btn_line:hover::after,
.btn_border:hover::after,
.btn.arrow:hover::after {
  transform: translateX(0.4rem);
}
.btn {
  color: var(--title);
  background-color: var(--secondary);
}
.btn:hover {
  color: #fff;
  background-color: var(--primary);
  box-shadow: 0px 1rem 2.4rem rgba(2, 55, 138, 0.25);
}
.btn.navy {
  color: #fff;
  background-color: var(--primary);
}
.btn.navy:hover {
  color: var(--title);
  background-color: var(--secondary);
  box-shadow: 0px 1rem 2.4rem rgba(5, 182, 242, 0.3);
}
.btn_line {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn_line:hover {
  color: var(--title);
  border-color: #fff;
  background-color: #fff;
}
.btn_border {
  color: var(--title);
  border: 1px solid var(--line);
  background-color: #fff;
}
.btn_border:hover {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  color: var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  white-space: nowrap;
  transition: 0.3s;
}
.more::after {
  content: '';
  flex-shrink: 0;
  width: 3.47rem;
  height: 3.47rem;
  border-radius: 50%;
  transition: 0.3s;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23fff' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 5h10M7 1l4 4-4 4'/%3E%3C/svg%3E") no-repeat center / 1rem auto;
}
.more.light::after,
.more:hover::after {
  background-color: var(--secondary);
}
.more:hover::after {
  transform: translateX(0.4rem);
}
.swiper_btns {
  display: flex;
  gap: 2.3rem;
}
.swiper_btns div {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  transition: 0.3s;
  color: var(--title);
  border: 1px solid rgba(11, 20, 46, 0.3);
}
.swiper_btns div::after {
  content: '';
  width: 1.2rem;
  height: 1rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23000' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5H1M5 1 1 5l4 4'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23000' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5H1M5 1 1 5l4 4'/%3E%3C/svg%3E") no-repeat center / contain;
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns div:hover,
.swiper_btns .btn_next {
  color: #fff;
  border-color: #0b3d87;
  background-color: #0b3d87;
}
.swiper_btns .btn_next:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.swiper_btns:has(.swiper-button-lock) {
  display: none;
}

/* #region common */
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.between {
  justify-content: space-between;
}
.flex_middle {
  align-items: center;
}
.flex_top {
  align-items: flex-start;
}
.center {
  text-align: center;
}
body.fixed {
  overflow: hidden;
}
body.preview-page {
  padding-top: 7.7rem;
  overflow-x: hidden;
}
.only_mobile {
  display: none;
}
/* #endregion */

/* #region header */
header {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 996;
  width: 100%;
  transition: transform 0.4s, box-shadow 0.4s;
  background-color: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
header.hide {
  transform: translateY(-100%);
}
header.sticky {
  transform: translateY(0px);
  box-shadow: 0px 0.4rem 2rem rgba(10, 35, 80, 0.08);
}
header .content > .flex {
  height: 7.7rem;
}
header .logo {
  display: block;
  position: relative;
  flex-shrink: 0;
}
header .logo img {
  display: block;
  width: 19.5rem;
  height: auto;
}
header .logo p,
footer .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav#navigation {
  margin-left: 19.1rem;
}
header nav#navigation .menu {
  display: flex;
  gap: 3.8rem;
}
header nav#navigation .menu > li {
  position: relative;
}
header nav#navigation .menu > li > a {
  display: block;
  position: relative;
  color: #191919;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 7.7rem;
  transition: color 0.3s;
}
header nav#navigation .menu > li > a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 0px;
  height: 2px;
  border-radius: 2px;
  transition: 0.3s;
  transform: translateX(-50%);
  background-color: var(--secondary);
}
header nav#navigation .menu > li:hover > a,
header nav#navigation .menu > li.current-menu-item > a {
  color: var(--primary);
}
header nav#navigation .menu > li:hover > a::after,
header nav#navigation .menu > li.current-menu-item > a::after {
  width: 2rem;
}
header nav#navigation .sub-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 1.2rem);
  min-width: 22rem;
  padding: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  transform: translate(-50%, 1rem);
  border-radius: 1.4rem;
  background-color: #fff;
  box-shadow: 0px 1rem 3rem rgba(10, 35, 80, 0.12);
}
header nav#navigation .menu > li:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0px);
}
header nav#navigation .sub-menu a {
  display: block;
  white-space: nowrap;
  padding: 1.1rem 1.6rem;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  transition: 0.2s;
}
header nav#navigation .sub-menu a:hover {
  color: var(--primary);
  background-color: #e6f3fa;
}
header .btns {
  display: flex;
  align-items: center;
  margin-left: auto;
}
header .btn_search,
header .btn_lang {
  display: block;
  width: 2rem;
  height: 2rem;
  transition: opacity 0.3s;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cg%20transform%3D%22translate(-1399%20-32)%22%3E%3Cpath%20d%3D%22M1407.53%2C46.94c3.71%2C0%2C6.72-3.01%2C6.72-6.72s-3.01-6.72-6.72-6.72-6.72%2C3.01-6.72%2C6.72%2C3.01%2C6.72%2C6.72%2C6.72Z%22%20fill%3D%22none%22%20stroke%3D%22%23191919%22%20stroke-width%3D%221.45px%22%20stroke-miterlimit%3D%222%22%2F%3E%3Cpath%20d%3D%22M1411.87%2C45.36l4.83%2C4.86%22%20fill%3D%22none%22%20stroke%3D%22%23191919%22%20stroke-width%3D%221.45px%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}
header .btn_lang {
  width: 2.1rem;
  height: 2.1rem;
  margin-left: 2.2rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221%22%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cg%20transform%3D%22translate(-1440%20-31)%22%3E%3Cpath%20d%3D%22M1451.24%2C51.15c5.13%2C0%2C9.29-4.16%2C9.29-9.29s-4.16-9.29-9.29-9.29-9.29%2C4.16-9.29%2C9.29%2C4.16%2C9.29%2C9.29%2C9.29Z%22%20fill%3D%22none%22%20stroke%3D%22%23191919%22%20stroke-width%3D%221.45px%22%20stroke-miterlimit%3D%222%22%2F%3E%3Cpath%20d%3D%22M1441.95%2C41.86h18.58%22%20fill%3D%22none%22%20stroke%3D%22%23191919%22%20stroke-width%3D%221.45px%22%20stroke-miterlimit%3D%222%22%2F%3E%3Cpath%20d%3D%22M1451.24%2C51.15c2.05%2C0%2C3.72-4.16%2C3.72-9.29s-1.66-9.29-3.72-9.29-3.72%2C4.16-3.72%2C9.29%2C1.66%2C9.29%2C3.72%2C9.29Z%22%20fill%3D%22none%22%20stroke%3D%22%23191919%22%20stroke-width%3D%221.45px%22%20stroke-miterlimit%3D%222%22%2F%3E%3Cpath%20d%3D%22M1444.67%2C35.43c1.68%2C1.68%2C4%2C2.72%2C6.57%2C2.72s4.89-1.04%2C6.57-2.72%22%20fill%3D%22none%22%20stroke%3D%22%23191919%22%20stroke-width%3D%221.45px%22%20stroke-miterlimit%3D%222%22%2F%3E%3Cpath%20d%3D%22M1457.81%2C48.3c-1.68-1.68-4-2.72-6.57-2.72s-4.89%2C1.04-6.57%2C2.72%22%20fill%3D%22none%22%20stroke%3D%22%23191919%22%20stroke-width%3D%221.45px%22%20stroke-miterlimit%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
header .btn_search:hover,
header .btn_lang:hover {
  opacity: 0.6;
}
header .btn_quote {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.6rem;
  margin-left: 4rem;
  padding: 0px 2.95rem;
  border-radius: 10rem;
  white-space: nowrap;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  transition: 0.3s;
  background-color: var(--primary);
}
header .btn_quote:hover {
  color: var(--title);
  background-color: var(--secondary);
}
header .btn_menu {
  display: none;
}
header .search_form {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 100%;
  padding: 2rem 0px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  transform: translateY(-1rem);
  background-color: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0px 1rem 2rem rgba(10, 35, 80, 0.06);
}
header.search_open .search_form {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}
header .search_form .content {
  display: flex;
  gap: 1.2rem;
}
header .search_form input {
  flex: 1;
  height: 5.2rem;
  padding: 0px 2rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  border: 1px solid var(--line);
  transition: border-color 0.3s;
}
header .search_form input:focus {
  border-color: var(--secondary);
}
header .search_form button {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1rem;
  transition: 0.3s;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23fff' stroke-width='1.6' stroke-linecap='round'%3E%3Ccircle cx='8.5' cy='8.2' r='6.7'/%3E%3Cpath d='m12.9 13.4 4.8 4.9'/%3E%3C/svg%3E") no-repeat center / 2rem auto;
}
header .search_form button:hover {
  background-color: var(--secondary);
}
/* #endregion */

/* #region footer */
footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 14.6rem 0px 0px;
  background-image: linear-gradient(180deg, #0d245e 0%, #0c2864 22%, #0b3674 52%, #094c90 86%, #08579e 100%);
}
footer .top {
  padding-bottom: 11.4rem;
}
footer .logo {
  display: block;
  position: relative;
  width: 29.4rem;
}
footer .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .contact {
  margin-top: 4.6rem;
}
footer .contact li {
  position: relative;
  padding-left: 3.2rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.2rem;
}
footer .contact li + li {
  margin-top: 2rem;
}
footer .contact li::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 2rem;
  height: 2.2rem;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2220%22%20viewBox%3D%220%200%2022%2020%22%3E%3Cg%20transform%3D%22translate(-269%20-8486)%22%3E%3Crect%20x%3D%22270.81%22%20y%3D%228488.81%22%20width%3D%2218.62%22%20height%3D%2214.49%22%20fill%3D%22none%22%20stroke%3D%22%2305b7f2%22%20stroke-width%3D%221.5px%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M270.81%2C8489.85l9.31%2C7.24%2C9.31-7.24%22%20fill%3D%22none%22%20stroke%3D%22%2305b7f2%22%20stroke-width%3D%221.5px%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}
footer .contact .phone::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%3E%3Cg%20transform%3D%22translate(-269%20-8525)%22%3E%3Cpath%20d%3D%22M272.88%2C8527.09h4.14l2.07%2C5.17-3.1%2C2.07c1.38%2C2.66%2C3.55%2C4.83%2C6.21%2C6.21l2.07-3.1%2C5.17%2C2.07v4.14c0%2C1.14-.93%2C2.07-2.07%2C2.07-8.92-.51-16.04-7.63-16.55-16.55%2C0-1.14.93-2.07%2C2.07-2.07Z%22%20fill%3D%22none%22%20stroke%3D%22%2305b7f2%22%20stroke-width%3D%221.5px%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
footer .contact .address::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2226%22%20viewBox%3D%220%200%2020%2026%22%3E%3Cg%20transform%3D%22translate(-269%20-8566)%22%3E%3Cpath%20d%3D%22M279.05%2C8589.95s8.24-7.76%2C8.24-14.12c0-4.55-3.69-8.24-8.24-8.24s-8.24%2C3.69-8.24%2C8.24c0%2C6.35%2C8.24%2C14.12%2C8.24%2C14.12Z%22%20fill%3D%22none%22%20stroke%3D%22%2305b7f2%22%20stroke-width%3D%221.6px%22%20stroke-linejoin%3D%22round%22%2F%3E%3Ccircle%20cx%3D%22279.05%22%20cy%3D%228575.83%22%20r%3D%222.94%22%20fill%3D%22none%22%20stroke%3D%22%2305b7f2%22%20stroke-width%3D%221.6px%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
footer .contact a {
  transition: color 0.3s;
}
footer .contact a:hover {
  color: var(--secondary);
}
footer .social {
  display: flex;
  gap: 0.85rem;
  margin-top: 3.7rem;
}
footer .social a {
  display: block;
  width: 4.88rem;
  height: 4.88rem;
  border-radius: 50%;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.1);
}
footer .social a:first-child,
footer .social a:hover {
  background-color: var(--secondary);
}
footer .social a:hover {
  transform: translateY(-0.3rem);
}
footer .social img {
  display: block;
  width: 100%;
  height: 100%;
}
footer .menus {
  gap: 0px;
  padding-top: 7.6rem;
}
footer .menu_col {
  width: 29.9rem;
}
footer .menu_col:nth-child(2) {
  width: 26.7rem;
}
footer .menu_col:last-child {
  width: 21.6rem;
}
footer .menu_col strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.4rem;
}
footer .menu_col .menu {
  margin-top: 2.1rem;
}
footer .menu_col li {
  font-size: 1.8rem;
  line-height: 3.4rem;
}
footer .menu_col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}
footer .menu_col a:hover {
  color: var(--secondary);
}
footer .bot {
  gap: 2rem;
  height: 9.2rem;
  color: #e5e6eb;
  font-size: 1.44rem;
}
footer .links {
  display: flex;
  align-items: center;
}
footer .links a {
  transition: color 0.3s;
}
footer .links a + a {
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
footer .links a:hover {
  color: var(--secondary);
}
footer .back_top {
  position: fixed;
  right: 5.6rem;
  bottom: 4rem;
  z-index: 99;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  transform: translateY(1rem);
  box-shadow: 0px 0.6rem 1.6rem rgba(5, 182, 242, 0.35);
  background: var(--secondary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 14' fill='none' stroke='%23fff' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.5 13V1M1 5.5 5.5 1 10 5.5'/%3E%3C/svg%3E") no-repeat center / 1.1rem auto;
}
footer .back_top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}
footer .back_top:hover {
  background-color: var(--primary);
}
/* #endregion */

/* #region page_cases */
.page_cases {
  position: relative;
  overflow: hidden;
  padding: 13rem 0px 10.7rem;
  background-color: #fff;
}
.page_cases .snow_right {
  right: -4.4rem;
  bottom: -8.3rem;
  width: 15.1rem;
  transform: rotate(-18.35deg);
}
.page_cases .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
.page_cases .page_cases_swiper {
  overflow: visible;
  margin-top: 5.1rem;
}
.page_cases .swiper-slide {
  width: 99.6rem;
}
.page_cases .item {
  display: flex;
  position: relative;
  overflow: hidden;
  height: 47.66rem;
  padding: 2.08rem 2.32rem 2.07rem 4.27rem;
  border-radius: 1.8rem;
  color: #fff;
  background-image: linear-gradient(180deg, #0d245e 0%, #08579e 100%);
}
.page_cases .num {
  position: absolute;
  left: -1.4rem;
  bottom: -9.6rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 32.93rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.page_cases .info {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.41rem 3rem 2.6rem 0px;
}
.page_cases .cat {
  display: inline-block;
  padding: 0px 2.24rem;
  border-radius: 10rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 3.98rem;
  text-transform: uppercase;
}
.page_cases h3 {
  max-width: 33rem;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 3.2rem;
}
.page_cases .text p {
  max-width: 38rem;
  margin-top: 2.3rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  line-height: 2.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.page_cases .img {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 50.09rem;
  height: 100%;
  border-radius: 1.41rem;
}
.page_cases .item:hover .img img {
  transform: scale(1.05);
}
.page_cases .bot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 6.5rem;
  color: #5a6478;
  font-size: 1.8rem;
  line-height: 2.2rem;
}
.page_cases .bot .more {
  gap: 1.3rem;
  color: #0b142e;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
.page_cases .bot .more::after {
  width: 3.29rem;
  height: 3.29rem;
}
/* #endregion */

@media screen and (min-width: 769px) and (max-width: 1220px) {
  header nav#navigation {
    margin-left: 5rem;
  }
  header nav#navigation .menu {
    gap: 2.6rem;
  }
  footer .menu_col,
  footer .menu_col:nth-child(2),
  footer .menu_col:last-child {
    width: 22rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page_cases .swiper-slide {
    width: 80rem;
  }
  .page_cases .img {
    width: 38rem;
  }
  header .logo img {
    width: 16rem;
  }
  header nav#navigation {
    margin-left: 3rem;
  }
  header nav#navigation .menu {
    gap: 2rem;
  }
  header nav#navigation .menu > li > a {
    font-size: 1.5rem;
  }
  header .btn_quote {
    margin-left: 2.4rem;
    padding: 0px 2rem;
  }
  footer .top {
    flex-direction: column;
    gap: 4rem;
  }
  footer .menus {
    padding-top: 0px;
  }
}

@media screen and (max-width: 768px) {
  body.preview-page {
    padding-top: 64px;
  }
  .only_mobile {
    display: block;
  }
  header .content > .flex {
    height: 64px;
  }
  header .logo img {
    width: 136px;
  }
  header nav#navigation {
    position: fixed;
    left: 0px;
    top: 64px;
    width: 100%;
    height: calc(100vh - 64px);
    margin: 0px;
    padding: 10px 20px 40px;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    background-color: #fff;
    border-top: 1px solid var(--line);
  }
  header.menu_open nav#navigation {
    opacity: 1;
    pointer-events: auto;
  }
  header nav#navigation .menu {
    display: block;
  }
  header nav#navigation .menu > li {
    border-bottom: 1px solid var(--line);
  }
  header nav#navigation .menu > li > a {
    font-size: 16px;
    line-height: 54px;
  }
  header nav#navigation .menu > li > a::after {
    display: none;
  }
  header nav#navigation .menu-item-has-children > a::before {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    transition: 0.3s;
    transform: rotate(45deg);
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
  }
  header nav#navigation .menu-item-has-children.open > a::before {
    margin-top: -2px;
    transform: rotate(-135deg);
  }
  header nav#navigation .sub-menu {
    display: none;
    position: static;
    min-width: 0px;
    padding: 0px 0px 12px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }
  header nav#navigation .menu > li:hover > .sub-menu {
    transform: none;
  }
  header nav#navigation .sub-menu a {
    padding: 9px 12px;
    font-size: 14px;
    white-space: normal;
    color: var(--text);
  }
  header .btn_search {
    width: 20px;
    height: 20px;
  }
  header .btn_lang {
    width: 20px;
    height: 20px;
    margin-left: 16px;
  }
  header .btn_quote {
    height: 36px;
    margin-left: 16px;
    padding: 0px 14px;
    font-size: 13px;
  }
  header .btn_menu {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    margin-left: 14px;
  }
  header .btn_menu span,
  header .btn_menu::before,
  header .btn_menu::after {
    content: '';
    position: absolute;
    left: 2px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    transition: 0.3s;
    background-color: var(--title);
  }
  header .btn_menu span {
    top: 11px;
  }
  header .btn_menu::before {
    top: 4px;
  }
  header .btn_menu::after {
    top: 18px;
  }
  header.menu_open .btn_menu span {
    opacity: 0;
  }
  header.menu_open .btn_menu::before {
    top: 11px;
    transform: rotate(45deg);
  }
  header.menu_open .btn_menu::after {
    top: 11px;
    transform: rotate(-45deg);
  }
  header .search_form {
    padding: 14px 0px;
  }
  header .search_form input,
  header .search_form button {
    height: 44px;
    font-size: 14px;
  }
  header .search_form button {
    width: 44px;
    background-size: 18px auto;
  }
  .page_cases {
    padding: 50px 0px;
  }
  .page_cases .head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .page_cases .page_cases_swiper {
    margin-top: 24px;
  }
  .page_cases .swiper-slide {
    width: 300px;
  }
  .page_cases .item {
    flex-direction: column-reverse;
    height: auto;
    padding: 10px;
    border-radius: 12px;
  }
  .page_cases .img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
  }
  .page_cases .info {
    padding: 16px 8px 10px;
  }
  .page_cases .cat {
    padding: 0px 12px;
    font-size: 12px;
    line-height: 28px;
  }
  .page_cases h3 {
    margin-top: 14px;
    font-size: 19px;
    line-height: 1.3;
  }
  .page_cases .text p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
    -webkit-line-clamp: 3;
  }
  .page_cases .num {
    display: none;
  }
  .page_cases .bot {
    flex-direction: column;
    margin-top: 24px;
    font-size: 14px;
    text-align: center;
  }
  .page_cases .bot .more {
    font-size: 14px;
  }
  footer {
    padding-top: 50px;
  }
  footer .top {
    flex-direction: column;
    gap: 36px;
    padding-bottom: 40px;
  }
  footer .logo {
    width: 180px;
  }
  footer .contact {
    margin-top: 24px;
  }
  footer .contact li {
    padding-left: 28px;
    font-size: 15px;
    line-height: 20px;
  }
  footer .contact li + li {
    margin-top: 14px;
  }
  footer .contact li::before {
    width: 18px;
    height: 20px;
  }
  footer .social {
    gap: 8px;
    margin-top: 24px;
  }
  footer .social a {
    width: 40px;
    height: 40px;
  }
  footer .menus {
    flex-wrap: wrap;
    gap: 30px 0px;
    padding-top: 0px;
  }
  footer .menu_col,
  footer .menu_col:nth-child(2),
  footer .menu_col:last-child {
    width: 50%;
  }
  footer .menu_col strong {
    font-size: 16px;
    line-height: 20px;
  }
  footer .menu_col .menu {
    margin-top: 12px;
  }
  footer .menu_col li {
    font-size: 14px;
    line-height: 28px;
  }
  footer .bot {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: auto;
    padding: 20px 0px 24px;
    font-size: 12px;
    text-align: center;
  }
  footer .back_top {
    right: 16px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-size: 10px auto;
  }
}

@media screen and (min-width: 769px) and (max-width: 1480px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content {
    max-width: 896px;
  }
  .tcon h1,
  .tcon h2 {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .snow,
  .img_bg > img.snow {
    display: none;
  }
  .tag {
    gap: 6px;
    font-size: 12px;
    line-height: 16px;
  }
  .tag::before {
    width: 16px;
    height: 8px;
  }
  .tcon .tag + h1,
  .tcon .tag + h2 {
    margin-top: 10px;
  }
  .tcon h1,
  .tcon h2 {
    font-size: 26px;
    line-height: 1.25;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.7;
  }
  .tcon h1 + p,
  .tcon h2 + p {
    margin-top: 10px;
  }
  .btn,
  .btn_line,
  .btn_border {
    height: 44px;
    gap: 8px;
    padding: 0px 22px;
    font-size: 15px;
  }
  .btn_line::after,
  .btn_border::after,
  .btn.arrow::after {
    width: 12px;
    height: 8px;
  }
  .more {
    gap: 12px;
    font-size: 15px;
  }
  .more::after {
    width: 30px;
    height: 30px;
    background-size: 10px auto;
  }
  .swiper_btns {
    gap: 12px;
  }
  .swiper_btns div {
    width: 40px;
    height: 40px;
  }
}


/* --- module: home2-page_supplying --- */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #02378a;
  --secondary: #05b6f2;
  --title: #0a2350;
  --text: #5c6b80;
  --dark: #071933;
  --line: #dce5ee;
  --light: #f5f8fb;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0px auto;
  position: relative;
}
.content .content {
  padding: 0px;
}
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,
select {
  border: none;
  outline: none;
  font-family: inherit;
  color: var(--title);
}
button {
  cursor: pointer;
  background-color: transparent;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: 'Inter', sans-serif;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 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: 0px;
  top: 0px;
  z-index: -2;
}
section:has(> .snow) {
  overflow-x: clip;
}
.img_bg > img.snow {
  height: auto;
  object-fit: fill;
  z-index: 1;
}
.snow {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag::before {
  content: '';
  flex-shrink: 0;
  width: 1.8rem;
  height: 0.92rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 9.2'%3E%3Cpath fill='%2305b6f2' d='M18.02 2.91c-1.76 1.09-4.08 1.34-5.73 2.63-1.1.86-1.92 2.41-2.57 3.62C7.57 5.57 3.6 6.15 0 6.45c1.66-1.05 4.02-1.34 5.6-2.53C6.68 3.1 8.05 1.28 8.57.01c.69.21.72 1 1.32 1.58 2.09 2.04 5.47 1.34 8.13 1.32Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.tag.light {
  color: var(--secondary);
}
.tcon h1,
.tcon h2 {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1.2;
}
.tcon .tag + h1,
.tcon .tag + h2 {
  margin-top: 1.2rem;
}
.tcon h1 em,
.tcon h2 em {
  color: var(--secondary);
}
.tcon p {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.tcon h1 + p,
.tcon h2 + p {
  margin-top: 1.2rem;
}
.btn,
.btn_line,
.btn_border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 5.6rem;
  padding: 0px 2.7rem;
  border-radius: 10rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  transition: 0.3s;
}
.btn_line::after,
.btn_border::after,
.btn.arrow::after {
  content: '';
  flex-shrink: 0;
  width: 1.33rem;
  height: 0.82rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9' fill='none' stroke='%23000' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M.7 4.5h12.4M9.4.7l3.7 3.8-3.7 3.8'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9' fill='none' stroke='%23000' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M.7 4.5h12.4M9.4.7l3.7 3.8-3.7 3.8'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.3s;
}
.btn_line:hover::after,
.btn_border:hover::after,
.btn.arrow:hover::after {
  transform: translateX(0.4rem);
}
.btn {
  color: var(--title);
  background-color: var(--secondary);
}
.btn:hover {
  color: #fff;
  background-color: var(--primary);
  box-shadow: 0px 1rem 2.4rem rgba(2, 55, 138, 0.25);
}
.btn.navy {
  color: #fff;
  background-color: var(--primary);
}
.btn.navy:hover {
  color: var(--title);
  background-color: var(--secondary);
  box-shadow: 0px 1rem 2.4rem rgba(5, 182, 242, 0.3);
}
.btn_line {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn_line:hover {
  color: var(--title);
  border-color: #fff;
  background-color: #fff;
}
.btn_border {
  color: var(--title);
  border: 1px solid var(--line);
  background-color: #fff;
}
.btn_border:hover {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  color: var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  white-space: nowrap;
  transition: 0.3s;
}
.more::after {
  content: '';
  flex-shrink: 0;
  width: 3.47rem;
  height: 3.47rem;
  border-radius: 50%;
  transition: 0.3s;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23fff' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 5h10M7 1l4 4-4 4'/%3E%3C/svg%3E") no-repeat center / 1rem auto;
}
.more.light::after,
.more:hover::after {
  background-color: var(--secondary);
}
.more:hover::after {
  transform: translateX(0.4rem);
}
.swiper_btns {
  display: flex;
  gap: 2.3rem;
}
.swiper_btns div {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  transition: 0.3s;
  color: var(--title);
  border: 1px solid rgba(11, 20, 46, 0.3);
}
.swiper_btns div::after {
  content: '';
  width: 1.2rem;
  height: 1rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23000' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5H1M5 1 1 5l4 4'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23000' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5H1M5 1 1 5l4 4'/%3E%3C/svg%3E") no-repeat center / contain;
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns div:hover,
.swiper_btns .btn_next {
  color: #fff;
  border-color: #0b3d87;
  background-color: #0b3d87;
}
.swiper_btns .btn_next:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.swiper_btns:has(.swiper-button-lock) {
  display: none;
}

@media screen and (min-width: 769px) and (max-width: 1480px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content {
    max-width: 896px;
  }
  .tcon h1,
  .tcon h2 {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .snow,
  .img_bg > img.snow {
    display: none;
  }
  .tag {
    gap: 6px;
    font-size: 12px;
    line-height: 16px;
  }
  .tag::before {
    width: 16px;
    height: 8px;
  }
  .tcon .tag + h1,
  .tcon .tag + h2 {
    margin-top: 10px;
  }
  .tcon h1,
  .tcon h2 {
    font-size: 26px;
    line-height: 1.25;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.7;
  }
  .tcon h1 + p,
  .tcon h2 + p {
    margin-top: 10px;
  }
  .btn,
  .btn_line,
  .btn_border {
    height: 44px;
    gap: 8px;
    padding: 0px 22px;
    font-size: 15px;
  }
  .btn_line::after,
  .btn_border::after,
  .btn.arrow::after {
    width: 12px;
    height: 8px;
  }
  .more {
    gap: 12px;
    font-size: 15px;
  }
  .more::after {
    width: 30px;
    height: 30px;
    background-size: 10px auto;
  }
  .swiper_btns {
    gap: 12px;
  }
  .swiper_btns div {
    width: 40px;
    height: 40px;
  }
}

.page_supplying {
  position: relative;
  background-color: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page_supplying .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-height: 6.94rem;
}
.page_supplying .label {
  flex-shrink: 0;
  color: var(--text);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page_supplying ul {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 114.6rem;
}
.page_supplying li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  font-weight: 500;
  font-size: 1.6rem;
}
.page_supplying li::before {
  content: '';
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--secondary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 6' fill='none' stroke='%230a2350' stroke-width='1.25'%3E%3Cpath d='M8.5.5 3.4 5.5.5 2.6'/%3E%3C/svg%3E") no-repeat center / 0.71rem auto;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .page_supplying li {
    font-size: 1.4rem;
  }
  .page_supplying ul {
    width: auto;
    flex: 1;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page_supplying .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .page_supplying ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.2rem 2.4rem;
  }
}

@media screen and (max-width: 768px) {
  .page_supplying .content {
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .page_supplying .label {
    font-size: 12px;
  }
  .page_supplying ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 16px;
    width: auto;
    margin-top: 10px;
  }
  .page_supplying li {
    gap: 6px;
    font-size: 13px;
  }
  .page_supplying li::before {
    width: 14px;
    height: 14px;
    background-size: 7px auto;
  }
}

/* --- module: home7-page_quote --- */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --primary: #02378a;
  --secondary: #05b6f2;
  --title: #0a2350;
  --text: #5c6b80;
  --dark: #071933;
  --line: #dce5ee;
  --light: #f5f8fb;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0px auto;
  position: relative;
}
.content .content {
  padding: 0px;
}
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,
select {
  border: none;
  outline: none;
  font-family: inherit;
  color: var(--title);
}
button {
  cursor: pointer;
  background-color: transparent;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: 'Inter', sans-serif;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 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: 0px;
  top: 0px;
  z-index: -2;
}
section:has(> .snow) {
  overflow-x: clip;
}
.img_bg > img.snow {
  height: auto;
  object-fit: fill;
  z-index: 1;
}
.snow {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag::before {
  content: '';
  flex-shrink: 0;
  width: 1.8rem;
  height: 0.92rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 9.2'%3E%3Cpath fill='%2305b6f2' d='M18.02 2.91c-1.76 1.09-4.08 1.34-5.73 2.63-1.1.86-1.92 2.41-2.57 3.62C7.57 5.57 3.6 6.15 0 6.45c1.66-1.05 4.02-1.34 5.6-2.53C6.68 3.1 8.05 1.28 8.57.01c.69.21.72 1 1.32 1.58 2.09 2.04 5.47 1.34 8.13 1.32Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.tag.light {
  color: var(--secondary);
}
.tcon h1,
.tcon h2 {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1.2;
}
.tcon .tag + h1,
.tcon .tag + h2 {
  margin-top: 1.2rem;
}
.tcon h1 em,
.tcon h2 em {
  color: var(--secondary);
}
.tcon p {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.tcon h1 + p,
.tcon h2 + p {
  margin-top: 1.2rem;
}
.btn,
.btn_line,
.btn_border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 5.6rem;
  padding: 0px 2.7rem;
  border-radius: 10rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  transition: 0.3s;
}
.btn_line::after,
.btn_border::after,
.btn.arrow::after {
  content: '';
  flex-shrink: 0;
  width: 1.33rem;
  height: 0.82rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9' fill='none' stroke='%23000' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M.7 4.5h12.4M9.4.7l3.7 3.8-3.7 3.8'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9' fill='none' stroke='%23000' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M.7 4.5h12.4M9.4.7l3.7 3.8-3.7 3.8'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.3s;
}
.btn_line:hover::after,
.btn_border:hover::after,
.btn.arrow:hover::after {
  transform: translateX(0.4rem);
}
.btn {
  color: var(--title);
  background-color: var(--secondary);
}
.btn:hover {
  color: #fff;
  background-color: var(--primary);
  box-shadow: 0px 1rem 2.4rem rgba(2, 55, 138, 0.25);
}
.btn.navy {
  color: #fff;
  background-color: var(--primary);
}
.btn.navy:hover {
  color: var(--title);
  background-color: var(--secondary);
  box-shadow: 0px 1rem 2.4rem rgba(5, 182, 242, 0.3);
}
.btn_line {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn_line:hover {
  color: var(--title);
  border-color: #fff;
  background-color: #fff;
}
.btn_border {
  color: var(--title);
  border: 1px solid var(--line);
  background-color: #fff;
}
.btn_border:hover {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  color: var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  white-space: nowrap;
  transition: 0.3s;
}
.more::after {
  content: '';
  flex-shrink: 0;
  width: 3.47rem;
  height: 3.47rem;
  border-radius: 50%;
  transition: 0.3s;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23fff' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 5h10M7 1l4 4-4 4'/%3E%3C/svg%3E") no-repeat center / 1rem auto;
}
.more.light::after,
.more:hover::after {
  background-color: var(--secondary);
}
.more:hover::after {
  transform: translateX(0.4rem);
}
.swiper_btns {
  display: flex;
  gap: 2.3rem;
}
.swiper_btns div {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  transition: 0.3s;
  color: var(--title);
  border: 1px solid rgba(11, 20, 46, 0.3);
}
.swiper_btns div::after {
  content: '';
  width: 1.2rem;
  height: 1rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23000' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5H1M5 1 1 5l4 4'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23000' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5H1M5 1 1 5l4 4'/%3E%3C/svg%3E") no-repeat center / contain;
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns div:hover,
.swiper_btns .btn_next {
  color: #fff;
  border-color: #0b3d87;
  background-color: #0b3d87;
}
.swiper_btns .btn_next:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.swiper_btns:has(.swiper-button-lock) {
  display: none;
}

@media screen and (min-width: 769px) and (max-width: 1480px) {
  .content {
    padding: 0px 3rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content {
    max-width: 896px;
  }
  .tcon h1,
  .tcon h2 {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0px 20px;
  }
  .snow,
  .img_bg > img.snow {
    display: none;
  }
  .tag {
    gap: 6px;
    font-size: 12px;
    line-height: 16px;
  }
  .tag::before {
    width: 16px;
    height: 8px;
  }
  .tcon .tag + h1,
  .tcon .tag + h2 {
    margin-top: 10px;
  }
  .tcon h1,
  .tcon h2 {
    font-size: 26px;
    line-height: 1.25;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.7;
  }
  .tcon h1 + p,
  .tcon h2 + p {
    margin-top: 10px;
  }
  .btn,
  .btn_line,
  .btn_border {
    height: 44px;
    gap: 8px;
    padding: 0px 22px;
    font-size: 15px;
  }
  .btn_line::after,
  .btn_border::after,
  .btn.arrow::after {
    width: 12px;
    height: 8px;
  }
  .more {
    gap: 12px;
    font-size: 15px;
  }
  .more::after {
    width: 30px;
    height: 30px;
    background-size: 10px auto;
  }
  .swiper_btns {
    gap: 12px;
  }
  .swiper_btns div {
    width: 40px;
    height: 40px;
  }
}

.page_quote {
  position: relative;
  padding: 12.6rem 0px 14.4rem;
  background-color: var(--light);
}
.page_quote .snow_1 {
  right: 0.3rem;
  top: -5.5rem;
  width: 12.1rem;
  transform: rotate(-18.35deg);
}
.page_quote .snow_2 {
  right: -2.2rem;
  top: 11.1rem;
  width: 4.3rem;
  transform: rotate(150.69deg) scaleY(-1);
}
.page_quote .snow_3 {
  left: -9.2rem;
  top: 34.6rem;
  width: 15.1rem;
  transform: rotate(-18.35deg);
}
.page_quote .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}
.page_quote .left {
  width: 56rem;
  padding-top: 5.1rem;
}
.page_quote .tcon p {
  max-width: 47rem;
  margin-top: 3.05rem;
}
.page_quote .checks {
  margin-top: 4.3rem;
}
.page_quote .checks li {
  position: relative;
  padding-left: 3.69rem;
  color: var(--text);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2rem;
}
.page_quote .checks li + li {
  margin-top: 1.96rem;
}
.page_quote .checks li::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--secondary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 7' fill='none' stroke='%23fff' stroke-width='1.25'%3E%3Cpath d='M9.4.6 3.5 6.5.5 3.5'/%3E%3C/svg%3E") no-repeat center / 0.9rem auto;
}
.page_quote .form_box {
  flex-shrink: 0;
  width: 63.44rem;
  padding: 4.7rem 4rem 4.1rem;
  border-radius: 2rem;
  border: 1px solid #3d79c1;
  background-color: rgba(18, 67, 137, 0.97);
}
.page_quote .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.2rem 1.81rem;
}
.page_quote .wpcf7-form .hidden-fields-container,
.page_quote .screen-reader-response {
  display: none;
}
.page_quote .wpcf7-form > span {
  display: block;
  position: relative;
  width: 100%;
}
.page_quote .wpcf7-form > span.col2 {
  width: calc(50% - 0.905rem);
}
.page_quote .wpcf7-form label {
  display: block;
}
.page_quote .label {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8rem;
}
.page_quote .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  margin-top: 0.7rem;
}
.page_quote input[type='text'],
.page_quote input[type='email'],
.page_quote input[type='tel'],
.page_quote select,
.page_quote textarea {
  display: block;
  width: 100%;
  height: 4.8rem;
  padding: 0px 2rem;
  border-radius: 1rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.08);
}
.page_quote select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7' fill='none' stroke='%2305b7f2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m.75.75 5.25 5.25 5.25-5.25'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 1.1rem auto;
}
.page_quote select option {
  color: var(--title);
}
.page_quote textarea {
  height: 10.54rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  resize: none;
}
.page_quote input:hover,
.page_quote select:hover,
.page_quote textarea:hover {
  border-color: rgba(255, 255, 255, 0.35);
}
.page_quote input:focus,
.page_quote select:focus,
.page_quote textarea:focus {
  border-color: var(--secondary);
  background-color: rgba(255, 255, 255, 0.12);
}
.page_quote .wpcf7-not-valid {
  border-color: #ff8a8a !important;
}
.page_quote .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.4rem;
  color: #ff9d9d;
  font-size: 1.3rem;
}
.page_quote .row_submit {
  margin-top: -0.67rem;
}
.page_quote .wpcf7-form .send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  height: 5.6rem;
  border-radius: 10rem;
  cursor: pointer;
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  transition: 0.3s;
  background-color: var(--secondary);
}
.page_quote .send::after {
  content: '';
  width: 1.33rem;
  height: 0.82rem;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9' fill='none' stroke='%23000' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M.7 4.5h12.4M9.4.7l3.7 3.8-3.7 3.8'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 9' fill='none' stroke='%23000' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M.7 4.5h12.4M9.4.7l3.7 3.8-3.7 3.8'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.3s;
}
.page_quote .send:hover {
  color: #fff;
  background-color: #0b3d87;
}
.page_quote .send:hover::after {
  transform: translateX(0.4rem);
}
.page_quote .send input {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.page_quote .wpcf7-spinner {
  position: absolute;
  right: 2rem;
  top: 50%;
  margin: -1.2rem 0px 0px;
}
.page_quote .wpcf7-response-output {
  width: 100%;
  margin: 0px !important;
  padding: 1rem 1.6rem !important;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.4rem;
}
.page_quote .wpcf7-form.init .wpcf7-response-output {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .page_quote .left {
    width: auto;
    flex: 1;
  }
  .page_quote .form_box {
    width: 55%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page_quote .content {
    flex-direction: column;
    align-items: stretch;
  }
  .page_quote .left {
    padding-top: 0px;
  }
  .page_quote .form_box {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .page_quote {
    padding: 50px 0px;
  }
  .page_quote .content {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .page_quote .left {
    width: auto;
    padding: 0px;
  }
  .page_quote .tcon p {
    margin-top: 12px;
  }
  .page_quote .checks {
    margin-top: 20px;
  }
  .page_quote .checks li {
    padding-left: 28px;
    font-size: 14px;
    line-height: 18px;
  }
  .page_quote .checks li + li {
    margin-top: 12px;
  }
  .page_quote .checks li::before {
    width: 18px;
    height: 18px;
    background-size: 8px auto;
  }
  .page_quote .form_box {
    width: 100%;
    padding: 24px 18px;
    border-radius: 14px;
  }
  .page_quote .wpcf7-form {
    gap: 16px 10px;
  }
  .page_quote .wpcf7-form > span.col2 {
    width: 100%;
  }
  .page_quote .label {
    font-size: 14px;
    line-height: 18px;
  }
  .page_quote .wpcf7-form-control-wrap {
    margin-top: 6px;
  }
  .page_quote input[type='text'],
  .page_quote input[type='email'],
  .page_quote input[type='tel'],
  .page_quote select,
  .page_quote textarea {
    height: 44px;
    padding: 0px 14px;
    border-radius: 8px;
    font-size: 14px;
  }
  .page_quote select {
    padding-right: 40px;
    background-position: right 14px center;
    background-size: 11px auto;
  }
  .page_quote textarea {
    height: 110px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .page_quote .row_submit {
    margin-top: 4px;
  }
  .page_quote .send {
    height: 48px;
    font-size: 16px;
  }
}

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

.mega_overlay {
  position: fixed;
  inset: 0;
  z-index: 8;
  background: rgba(8, 28, 56, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mega_overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
header #navigation .menu > li {
  position: relative;
  z-index: 2;
}
.btn_mega_menu > .sub-menu,
.btn_mega_product > .sub-menu,
.btn_mega_solution > .sub-menu,
.btn_mega_project > .sub-menu {
  display: none !important;
}
nav.mega_menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1;
  display: none;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid rgba(8, 28, 56, 0.08);
}
nav.mega_menu > [data-id] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
nav.mega_menu > [data-id].active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
nav.mega_menu .content {
  max-height: calc(100vh - 220px);
  overflow: auto;
  padding: 32px 0 40px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  box-sizing: border-box;
}
nav.mega_menu .mega_product {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
nav.mega_menu .mega_product .cats {
  display: grid;
  gap: 6px;
}
nav.mega_menu .mega_product .cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease;
}
nav.mega_menu .mega_product .cat:hover,
nav.mega_menu .mega_product .cat.active,
nav.mega_menu .mega_product .cat:focus-visible {
  background: rgba(8, 28, 56, 0.05);
}
nav.mega_menu .mega_product .cat .icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
}
nav.mega_menu .mega_product .cat .icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
nav.mega_menu .mega_product .cat span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}
nav.mega_menu .mega_product .cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.mega_menu .mega_product .cards > li {
  margin: 0;
  list-style: none;
}
nav.mega_menu .mega_product .cards .item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: rgba(8, 28, 56, 0.04);
  transition: background 0.2s ease;
}
nav.mega_menu .mega_product .cards .item:hover {
  background: rgba(8, 28, 56, 0.08);
}
nav.mega_menu .mega_product .cards .pic {
  position: relative;
}
nav.mega_menu .mega_product .cards .badge {
  display: none;
}
nav.mega_menu .mega_product .cards .img {
  width: 96px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
}
nav.mega_menu .mega_product .cards .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
nav.mega_menu .mega_product .cards .info h3 {
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 4px;
}
nav.mega_menu .mega_product .cards .info p,
nav.mega_menu .mega_product .cards .foot {
  display: none;
}
nav.mega_menu .mega_links .list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.mega_menu .mega_links a {
  display: block;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(8, 28, 56, 0.08);
  transition: color 0.2s ease, border-color 0.2s ease;
}
nav.mega_menu .mega_links a:hover {
  color: var(--primary, #0b4f8a);
  border-bottom-color: currentColor;
}
.quote_modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 20, 40, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.quote_modal .modal_content {
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  overscroll-behavior: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--secondary);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(7, 25, 51, 0.3);
}
.quote_modal .head {
  margin-bottom: 24px;
}
.quote_modal .title {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
.quote_modal .desc {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
.quote_modal .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 20px;
}
.quote_modal .hidden-fields-container {
  display: none;
}
.quote_modal .wpcf7-form > span {
  display: block;
  width: 100%;
  min-width: 0;
}
.quote_modal .wpcf7-form > .col2 {
  width: calc(50% - 10px);
}
.quote_modal label,
.quote_modal .wpcf7-form-control-wrap {
  display: block;
}
.quote_modal .label {
  margin-bottom: 7px;
  color: var(--title);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.quote_modal input[type='text'],
.quote_modal input[type='email'],
.quote_modal input[type='tel'],
.quote_modal select,
.quote_modal textarea {
  display: block;
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 11px 14px;
  border: 1px solid #dce5ee;
  border-radius: 9px;
  background: #f5f8fb;
  color: var(--title);
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.quote_modal textarea {
  height: 110px;
  min-height: 90px;
  resize: vertical;
}
.quote_modal input:focus,
.quote_modal select:focus,
.quote_modal textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(2, 55, 138, 0.12);
}
.quote_modal .send {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 48px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.2s;
}
.quote_modal .send:hover {
  background: #0b4f9f;
}
.quote_modal .send:focus-within {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
}
.quote_modal .send input[type='submit'] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.quote_modal .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 14px;
  margin: -12px 0 0;
  pointer-events: none;
}
.quote_modal .wpcf7-not-valid {
  border-color: #c53030 !important;
}
.quote_modal .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #c53030;
  font-size: 13px;
  line-height: 1.4;
}
.quote_modal .wpcf7 form .wpcf7-response-output {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 9px;
  color: var(--title);
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .quote_modal {
    padding: 16px;
  }
  .quote_modal .modal_content {
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    padding: 24px 20px;
    border-radius: 16px;
  }
  .quote_modal .title {
    font-size: 26px;
  }
  .quote_modal .wpcf7-form {
    gap: 14px;
  }
  .quote_modal .wpcf7-form > .col2 {
    width: 100%;
  }
}
.products_list.loading .main,
.projects_list.loading .list {
  opacity: 0.45;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .mega_menu,
  .mega_overlay {
    display: none !important;
  }
}
