* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #ffc35a;
  --secondary: #5f6be0;
  --tertiary: #b1893f;
  --title: #171717;
  --text: #6d6d6d;
  --bg: #edeceb;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.large_content {
  max-width: 184rem;
  margin: 0 auto;
  position: relative;
}
.large_content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 141rem;
  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);
}
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: "Inter", 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;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.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;
}
.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: var(--title);
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 5.8rem;
  padding: 0 2.9rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid #ccc;
  color: var(--title);
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 5.9rem;
  padding: 0 2.9rem;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn_w {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--title);
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 5.8rem;
  padding: 0 2.9rem;
}
.btn_w:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns .btn_prev,
.swiper_btns .btn_next {
  width: 6.5rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid #232323;
  background-color: #232323;
}
.swiper_btns .btn_prev::after,
.swiper_btns .btn_next::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / 30.16%;
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_prev:hover,
.swiper_btns .btn_next:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: #232323;
}
.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: 157.4rem;
  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;
}
.swiper_btns.white .btn_prev,
.swiper_btns.white .btn_next {
  background-color: #fff;
  border-color: #fff;
}
.swiper_btns.white .btn_prev::after,
.swiper_btns.white .btn_next::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns.white .btn_prev:hover,
.swiper_btns.white .btn_next:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.swiper_btns.white .swiper-button-disabled {
  background-color: transparent;
  border-color: #fff;
}
.swiper_btns.white .swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}
.head.sm h2 {
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: 0.065rem;
}
.head.white {
  color: #fff;
}
.head.white h2 {
  letter-spacing: 0.09rem;
}
.head.lar h2 {
  font-size: 9.8rem;
  line-height: 1.12;
  letter-spacing: 0.21rem;
  font-size: 7.8rem !important;
}
.head h1 {
  font-size: 6.4rem;
  line-height: 1.046875;
  font-weight: 700;
  letter-spacing: 0.11rem;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 1.16666667;
  font-weight: 700;
  letter-spacing: 0.115rem;
}
header {
  position: sticky;
  left: 0;
  top: -126px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-image: linear-gradient(to right, #434547, #4a4c4b 44.9721%, #202120);
}
header.style,
header.sticky {
  background-color: #fff;
}
header.opt {
  top: -41px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .flex {
  gap: 3rem;
}
header .top {
  color: #fff;
  padding: 8px 0 10px;
}
header .top .btn_lang {
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 29px;
  padding-right: 25px;
  margin-right: 1.9rem;
  margin-left: auto;
  margin-top: 1px;
}
header .top .btn_lang::before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
header .top .btn_lang::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  right: 0;
  background: url(../img/icon-select.svg) no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
header .top .lt,
header .top .rt {
  flex: 1;
  display: flex;
}
header .top .social {
  gap: 2.15rem;
  padding-left: 0.7rem;
}
header .top .social a {
  background-color: transparent;
  border-radius: unset;
  width: 2.3rem;
  height: 2.3rem;
}
header .top .social a::after {
  background-size: 91%;
}
header .top .social .twitter::after {
  background-size: 96%;
}
header .top .social .facebook::after {
  background-size: contain;
}
header .header_notice {
  gap: 6.7rem;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  padding-top: 1px;
}
header .header_notice .btn_prev,
header .header_notice .btn_next {
  cursor: pointer;
  width: 15px;
  height: 15px;
  background: url(../img/arrow2.svg) no-repeat center / contain;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
}
header .header_notice .btn_prev:hover,
header .header_notice .btn_next:hover {
  filter: unset;
}
header .header_notice .btn_next {
  transform: rotate(180deg);
}
header .header_notice_swiper {
  overflow: hidden;
}
header .header_notice_swiper .swiper-slide {
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: max-content;
  overflow: hidden;
}
header .header_notice_swiper i {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  content: '';
  border-radius: 50%;
  border: 1px solid #fff;
}
header .header_notice_swiper p {
  flex: 1;
  font-size: 15px;
  max-width: max-content;
  white-space: nowrap;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300;
}
header .header_notice_swiper p a {
  color: #e3c891;
  text-decoration: underline;
  transition: all 0.3s;
  vertical-align: top;
}
header .header_notice_swiper p a:hover {
  color: var(--secondary);
  text-decoration-color: transparent;
}
header .header_notice_swiper p a:hover {
  text-decoration: underline;
}
header .main {
  background-color: #fff;
  border-radius: 2.4rem 2.4rem 0 0;
}
header .logo {
  display: block;
  position: relative;
  margin-right: 8.4%;
}
header .logo img {
  display: block;
  width: auto;
  height: 7.4rem;
}
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: 3.75rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 48px;
  transition: all 0.3s;
  padding-bottom: 3px;
}
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;
}
header nav .sub-menu > li > a:hover {
  color: var(--primary);
}
header .btns {
  gap: 4rem;
  display: flex;
  align-items: center;
  min-height: 85px;
  padding-right: 1.1rem;
}
header .btns .btn_lang {
  width: 19px;
  height: 19px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  display: none;
}
header .btn_search {
  display: block;
  width: 19px;
  height: 19px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btn_menu {
  display: none;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / contain;
}
header .btn {
  font-size: 1.8rem;
  line-height: 5.4rem;
  min-width: 17rem;
}
footer {
  position: relative;
  z-index: 2;
  color: #fff;
}
footer > img {
  position: absolute;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
footer::before {
  position: absolute;
  top: 9.8rem;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background-color: var(--secondary);
  z-index: -1;
  pointer-events: none;
}
footer .main {
  padding: 16.7rem 0 17.8rem;
}
footer .main strong {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.018rem;
}
footer .main .flex {
  gap: 5rem 2rem;
}
footer .main .rt {
  flex: 1;
  width: 100%;
  max-width: 75.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4.9rem 2rem;
  padding-top: 2.6%;
}
footer .main .foot_intro .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 16.3rem;
  height: 16.3rem;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #f7eed7, #fcebbc 37.1508%, #d6ba7c 75.6983%, #a97f33);
}
footer .main .foot_intro .logo:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 88.96%;
  padding-bottom: 88.96%;
  border-radius: 50%;
  background-color: #fff;
  z-index: -1;
}
footer .main .foot_intro .logo img {
  display: block;
  width: 59.51%;
  height: auto;
}
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: 2rem;
  line-height: 2.7rem;
  margin-top: 3.3rem;
  max-width: 27rem;
  letter-spacing: 0.025rem;
}
footer .main .foot_intro .social {
  margin-top: 3.1rem;
}
footer .main .foot_subscribe {
  width: 100%;
}
footer .main .foot_subscribe strong {
  margin-bottom: 2.2rem;
}
footer .main .foot_subscribe form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  border-radius: 100px;
  background-color: #fff;
  border: 1px solid #fff;
  padding-right: 0.7rem;
  position: relative;
}
footer .main .foot_subscribe form:focus-within {
  border-color: var(--primary);
}
footer .main .foot_subscribe form input {
  display: block;
  width: 100%;
  font-size: 1.7rem;
  color: #232323;
  background-color: transparent;
  padding: 0 2.9rem;
}
footer .main .foot_subscribe form input::placeholder {
  color: var(--title);
  opacity: 0.7;
}
footer .main .foot_subscribe form input[type=submit] {
  border-radius: 100px;
  background-color: var(--primary);
  transition: all 0.3s;
  line-height: 5rem;
  padding: 0 3.35rem;
  margin: 0.7rem 0;
}
footer .main .foot_subscribe form input[type=submit]:hover {
  background-color: var(--secondary);
  color: #fff;
}
footer .main .foot_nav strong {
  margin-bottom: 2.8rem;
}
footer .main .foot_nav li a {
  font-size: 1.8rem;
  opacity: 0.7;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  font-weight: 300;
  letter-spacing: 0.012rem;
}
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: 2rem;
}
footer .bottom {
  padding: 2.3rem 0;
}
footer .bottom p,
footer .bottom a {
  font-size: 1.437rem;
  letter-spacing: -0.012rem;
}
footer .bottom a {
  opacity: 0.68;
  transition: all 0.3s;
  text-decoration: underline transparent;
  font-weight: 300;
  letter-spacing: unset;
}
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.3rem;
  background-color: #fff;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.5rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer #backtop {
  position: fixed;
  right: 2rem;
  bottom: 1.9rem;
  display: block;
  width: 4.9rem;
  height: 4.9rem;
  border-radius: 50%;
  background: url("../img/arrow-top.svg") no-repeat center / 20.41% #fff;
  transition: all 0.3s;
  opacity: 0;
  cursor: pointer;
  transform: translateY(100%);
}
footer #backtop.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
footer #backtop:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
.page_banner {
  border-radius: 2.4rem;
  overflow: hidden;
}
.page_banner .flex {
  min-height: 59.8rem;
  padding: 4rem 0;
}
.page_banner .head {
  width: 47%;
  max-width: 67rem;
  padding-bottom: 3.2%;
}
.page_banner .btn_w {
  margin-top: 3rem;
}
.page_banner .head p{
  font-size: 1.8rem;
}
.page_banner .img {
  width: 49.56522%;
  height: auto;
  filter: drop-shadow(2.6rem 0 1rem rgba(0, 0, 0, 0.44));
  margin-right: -4.2754%;
}
.page_banner .img:hover img {
  transform: scale(1.02);
}
.page_steps {
  color: #fff;
  padding: 19.6rem 0 17rem;
}
.page_steps::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 9.8rem;
  bottom: 11rem;
  content: '';
  background-color: var(--secondary);
  z-index: -1;
  pointer-events: none;
}
.page_steps > img {
  height: auto;
}
.page_steps > img:nth-of-type(2) {
  top: unset;
  bottom: 0;
}
.page_steps .head {
  max-width: 75rem;
  margin: 0 auto;
}
.page_steps .page_steps_swiper {
  overflow: hidden;
  margin-top: 0.4rem;
}
.page_steps .page_steps_swiper .swiper-slide {
  max-width: 294px;
}
.page_steps .page_steps_swiper .swiper-slide:last-child .item::before {
  display: none;
}
.page_steps .page_steps_swiper .active .item .img {
  transform: scale(1);
}
.page_steps .page_steps_swiper .active .item .img::before {
  box-shadow: 0 1.5rem 1rem rgba(30, 30, 30, 0.45);
  border-color: #d8bc8b;
  width: 80.56%;
  padding-bottom: 80.56%;
}
.page_steps .item {
  position: relative;
  display: block;
  height: 100%;
}
.page_steps .item::before {
  position: absolute;
  width: 100%;
  height: 3px;
  background: url("../img/step-line.svg") repeat center / contain;
  content: '';
  left: 50%;
  top: 9rem;
  transform: translateY(-50%);
}
.page_steps .item .img {
  width: 18rem;
  --h: 100%;
  margin: 0 auto;
  transition: all 0.4s;
  transform: scale(0.833333);
}
.page_steps .item .img::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid #fff;
  width: 77.2%;
  padding-bottom: 77.2%;
  transition: all 0.4s;
}
.page_steps .item .info {
  text-align: center;
  margin-top: 1px;
}
.page_steps .item .info h3 {
  max-width: 21.7rem;
  margin: 0 auto;
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 500;
  letter-spacing: 0.045rem;
}
.page_steps .item .info p {
  line-height: 2.6rem;
  opacity: 0.8;
  margin-top: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.01rem;
}
.page_steps p.center:has(.btn_w) {
  margin-top: 5.8rem;
}
.page_started {
  overflow: hidden;
}
.page_started .flex {
  min-height: 57.6rem;
  padding: 5rem 0;
}
.page_started .head {
  position: relative;
  max-width: 83.7rem;
  margin: 0 auto;
  padding-top: 0.2%;
  width: 50%;
}
.page_started .head .subtitle {
  margin-right: auto;
  display: block;
  width: max-content;
  margin-bottom: 2px;
}
.page_started .head span {
  display: inline-block;
  font-size: 1.852rem;
  color: #fff;
  border-radius: 2.1rem;
  background-color: var(--secondary);
  padding: 0.9rem 2.3rem 1.2rem;
  letter-spacing: 0.03rem;
}
.page_started .head .ad_lis {
  position: absolute;
  right: -14.7%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.3rem;
  top: 45.5%;
}
.page_started .head .ad_lis span {
  font-size: 1.934rem;
}
.page_started .head .ad_lis span:nth-child(2) {
  padding: 0.9rem 2.5rem 1.2rem;
}
.page_started .btn {
  margin-top: 5.5rem;
}
.page_started .float {
  position: static;
}
.page_started .float ul {
  position: static;
}
.page_started .float li {
  position: absolute;
  width: 10.87%;
  --h: 100%;
  filter: drop-shadow(0 0.5rem 0.2rem rgba(0, 0, 0, 0.2));
}
.page_started .float li:hover img {
  transform: scale(1.02);
}
.page_started .float li:nth-child(1) {
  filter: drop-shadow(0 1.2rem 0.8rem rgba(30, 30, 30, 0.45));
  left: 3.97%;
  top: 47.74%;
}
.page_started .float li:nth-child(2) {
  left: 8.26%;
  top: 7.81%;
}
.page_started .float li:nth-child(3) {
  left: 20.98%;
  top: 35.59%;
}
.page_started .float li:nth-child(4) {
  filter: unset;
  width: 11.96%;
  left: 70.33%;
  top: 5.38%;
}
.page_started .float li:nth-child(5) {
  width: 13.6%;
  left: 79.08%;
  top: 43.4%;
}
.page_started .float li:nth-child(6) {
  filter: unset;
  left: 91.3%;
  top: 13.02%;
}
.form_steps {
  border-radius: 2.4rem;
  background-color: #e6eaff;
  padding: 6.1rem 0 5.5rem;
}
.form_steps .step_list {
  max-width: 90rem;
  margin: 0 auto;
}
.form_steps .step_list ul {
  display: flex;
}
.form_steps .step_list li {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.form_steps .step_list li:last-child::before {
  display: none;
}
.form_steps .step_list li::before {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #8e7d91;
  left: 50%;
  top: 2.5rem;
  content: '';
}
.form_steps .step_list li.active .order {
  color: #fff;
}
.form_steps .step_list li.active .order::after {
  background-color: var(--secondary);
  border-color: transparent;
}
.form_steps .step_list .order {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 1.998rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 5rem;
  min-width: 5rem;
}
.form_steps .step_list .order::before,
.form_steps .step_list .order::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.form_steps .step_list .order::before {
  width: 166%;
  padding-bottom: 166%;
  background-color: #e6eaff;
}
.form_steps .step_list .order::after {
  width: 100%;
  padding-bottom: 100%;
  border: 1px solid #8e7d91;
}
.form_steps .step_list .label {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 2rem;
}
.form_steps h1 {
  position: absolute;
  opacity: 0;
  font-size: 1px;
  white-space: nowrap;
  pointer-events: none;
}
.social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}
.social a {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.12);
}
.social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 40%;
}
.social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
.social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
.social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
.social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
.social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
.social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
.quote_form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3.1rem 0;
}
.quote_form span {
  width: 100%;
}
.quote_form .col-2 {
  width: 48.25%;
}
.quote_form .label {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: #161616;
  margin-bottom: 2rem;
  letter-spacing: 0.015rem;
}
.quote_form input, .quote_form select, .quote_form textarea {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  color: #121415;
  border: 1px solid #c1c1c1;
  border-radius: 0.6rem;
  background-color: transparent;
  height: 5.3rem;
  padding: 0 1.9rem;
}
.quote_form textarea{
  min-height: 20rem;
}
.quote_form input::placeholder,
.quote_form select::placeholder {
  color: #121415;
  opacity: 0.5;
}
.quote_form input:focus,
.quote_form select:focus {
  border-color: var(--secondary);
}
.quote_form select {
  background: url("../img/icon-select.svg") no-repeat center right 1.8rem/1.1rem;
  padding-right: 4rem;
}
.quote_form span:has(input[type=submit]) {
  margin-top: 4rem;
}
.quote_form input[type=submit] {
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--title);
  font-size: 1.7rem;
  font-weight: 600;
  height: 6rem;
  width: auto;
  min-width: 24rem;
}
.quote_form input[type=submit]:hover {
  background-color: transparent;
  color: var(--primary);
}

body .wpcf7-spinner{
  width: 24px !important;
  margin: 0;
  margin-top: 1.5rem;
}
body .wpcf7-response-output{
  padding: 0;
  margin: 0;
  border: none;
}
.product_list > li {
  display: flex;
  flex-direction: column;
}
.product_list > li > img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
  opacity: 0;
}
.product_list > li:hover .img img {
  transform: scale(1.02);
}
.product_list .active > img {
  opacity: 1;
}
.product_list .active .wrap::before {
  opacity: 1;
}
.product_list .active .btns {
  opacity: 1;
}
.product_list .wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 3rem;
}
.product_list .wrap::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  background-color: var(--secondary);
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.product_list .img {
  width: 70%;
  max-width: 23rem;
  --h: 100%;
  margin: -1.3rem auto 0;
  filter: drop-shadow(0 0.5rem 0.2rem rgba(0, 0, 0, 0.2));
  z-index: 2;
  cursor: pointer;
}
.product_list .info {
  flex: 1;
  margin-top: 4.4rem;
}
.product_list .info .title {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.015rem;
}
.product_list .info ul {
  line-height: 2rem;
  color: var(--text);
  margin-top: 0.9rem;
}
.product_list .info ul li + li {
  margin-top: 0.6rem;
}
.product_list .info ul li {
  position: relative;
  padding-left: 1.6rem;
}
.product_list .info ul li::before {
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--tertiary);
  content: '';
  left: 0;
  top: 0.7rem;
}
.product_list .btns {
  position: relative;
  transition: all 0.3s;
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  gap: 0.9rem;
  margin-bottom: -2.7rem;
}
.product_list .btns .btn,
.product_list .btns .btn_line {
  flex: 1;
  font-size: 1.5rem;
  line-height: 4.3rem;
  padding: 0 1.6rem;
  white-space: nowrap;
}

div.search-block {
  position: fixed;
  /* visibility: hidden; */
  z-index: 400;
  background-color: #fff;
  box-shadow: 0 0 15px rgb(0 55 96 / 12%);
  transition: 0.3s ease;
  /* opacity: 0; */
  width: 100%;
  bottom: -200vh;
  height: 100vh;
  transition: 0.3s ease;
  opacity: 0;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(135px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../img/close-black.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover{
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}

.default_head{
  padding: 9rem 0;
  background-color: #eee;
}
.default_head h1{
  font-size: 4.5rem;
}
.default_body{
  padding: 5rem 0;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
}

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 500;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 500;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 1rem;
  list-style: disc;
  margin-left: 2rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}

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

.float_contact {
  position: fixed;
  right: 3rem;
  bottom: 10rem;
  z-index: 99;
  pointer-events: none;
}
.float_contact ul {
  gap: 1rem;
  display: grid;
}
.float_contact a {
  display: block;
  width: 6rem;
  height: 6rem;
  position: relative;
  border-radius: 50%;
  pointer-events: all;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.float_contact a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: no-repeat center / 38%;
}
.float_contact a:hover span {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-50%);
}
.float_contact span {
  display: block;
  padding: 1rem 4rem 1rem 2rem;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translate(2rem, -50%);
  white-space: nowrap;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.float_contact span:hover {
  color: var(--primary);
}
.float_contact span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 2rem;
  bottom: 0;
  z-index: -1;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.float_contact .label {
  display: none;
}
.float_contact .whatsapp a::before {
  background-image: url(../img/social-whatsapp.svg);
}
.float_contact .phone a::before {
  background-image: url(../img/icon-phone.svg);
}
.float_contact .email a::before {
  background-image: url(../img/icon-email.svg);
}

.blog_list a {
  display: block;
  height: 100%;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  border-radius: 0.6rem;
  padding-bottom: 75.573%;
}
.blog_list .info {
  margin-top: 2.6rem;
}
.blog_list .info .cat {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
}
.blog_list .info .title {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 600;
  color: #25292d;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1.3rem;
}
.blog_list .info .date {
  color: #9d9d9d;
  margin-top: 0.9rem;
}

nav.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 3.1rem;
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
nav.navigation .page-numbers {
  transition: all 0.3s;
  font-size: 1.594rem;
  cursor: pointer;
  text-align: center;
  border-radius: 0.4rem;
  border: 1px solid #d6d6d6;
  min-width: 3.7rem;
  line-height: 3.5rem;
  padding: 0 0.5rem;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: var(--title);
  border-color: var(--title);
  color: #fff;
}
nav.navigation .page-numbers.prev,
nav.navigation .page-numbers.next,
nav.navigation .page-numbers.omit {
  padding: 0;
}
nav.navigation .prev,
nav.navigation .next {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
}
nav.navigation .prev::after,
nav.navigation .next::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  background: url("../img/pg-nav.svg") no-repeat center / 18.92%;
}
nav.navigation .prev:hover::after,
nav.navigation .next:hover::after {
  filter: contrast(0) brightness(2);
}
nav.navigation .next::after {
  transform: rotate(180deg);
}
nav.navigation .omit {
  border: none;
  font-size: 1.948rem;
  min-width: unset;
  margin: 0 0.4rem 0 0.8rem;
}
nav.navigation span.page-numbers {
  pointer-events: none;
}
nav.navigation .nav-page label {
  display: flex;
  align-items: center;
  font-size: 1.328rem;
  gap: 0.9rem;
}
nav.navigation .nav-page select {
  font-size: 1.594rem;
  font-weight: 700;
  color: var(--title);
  border: 1px solid #d6d6d6;
  border-radius: 0.4rem;
  background: url("../img/icon-select2.svg") no-repeat center right 1.1rem/0.8rem;
  height: 3.7rem;
  padding: 0 3.2rem 0 1.3rem;
  margin-left: 0.6rem;
}



@media screen and (min-width: 769px) and (max-width: 1440px) {
  .large_content {
    padding: 0 3rem;
  }
  header .logo {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header nav .menu {
    gap: 3rem;
  }
  header nav .menu > li > a {
    font-size: 15px;
  }
  header .btns {
    gap: 2rem;
    padding-right: 0;
  }
  .head.lar h2 {
    font-size: 8rem !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content,
  .large_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 6rem;
  }
  .head.lar h2 {
    font-size: 6rem !important;
  }
  .page_steps::before {
    top: 7rem;
    bottom: 7rem;
  }
  footer::before {
    top: 7rem;
  }
}
@media screen and (max-width: 1024px) {
  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('../img/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(../img/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;
  }
  header .header_notice {
    gap: 3rem;
  }
  header .header_notice_swiper p {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content,
  .large_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,
  .large_content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line,
  .btn_w {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns .btn_prev,
  .swiper_btns .btn_next {
    width: 40px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translateX(0);
    margin-top: 30px;
    padding: 0 20px;
  }
  div.head.sm h2,
  div.head.lar h2 {
    font-size: 22px !important;
    line-height: 1.3;
    letter-spacing: unset;
  }
  div.head.white h2 {
    letter-spacing: unset;
  }
  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 .btn,
  div.head .btn_line,
  div.head .btn_w {
    margin-top: 20px;
  }
  header {
    padding: 0;
    top: 0;
  }
  header.opt {
    top: 0;
  }
  header .top {
    padding: 10px 0;
  }
  header .top .btn_lang,
  header .top .social {
    display: none;
  }
  header .header_notice {
    gap: 20px;
    padding: 0;
  }
  header .header_notice .btn_prev,
  header .header_notice .btn_next {
    width: 12px;
    height: 12px;
  }
  header .header_notice .header_notice_swiper .swiper-slide {
    gap: 10px;
  }
  header .header_notice .header_notice_swiper i {
    width: 12px;
    height: 12px;
  }
  header .header_notice .header_notice_swiper p {
    font-size: 14px;
  }
  header .main {
    border-radius: 10px 10px 0 0;
  }
  header .logo {
    margin: 0;
  }
  header .logo img {
    height: 50px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
    padding: 0;
  }
  header .btns .btn_lang {
    display: block;
  }
  header .btns .btn {
    line-height: 40px;
    min-width: unset;
    font-size: 14px;
  }
  footer::before {
    top: 50px;
  }
  footer .main {
    padding: 80px 0 50px;
  }
  footer .main .flex {
    display: block;
  }
  footer .main strong {
    font-size: 18px;
    letter-spacing: unset;
  }
  footer .main .rt {
    display: block;
    padding: 0;
  }
  footer .main .foot_intro {
    margin: 0 0 20px;
    width: 100%;
    display: grid;
  }
  footer .main .foot_intro .logo {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
  footer .main .foot_intro p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    max-width: unset;
    margin-top: 20px;
    letter-spacing: unset;
  }
  footer .main .foot_intro .social {
    margin-top: 20px;
    justify-content: space-around;
  }
  footer .main .foot_nav {
    width: 100%;
  }
  footer .main .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/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.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .main .foot_nav > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
    letter-spacing: unset;
  }
  footer .main .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .foot_subscribe {
    margin-bottom: 20px;
  }
  footer .main .foot_subscribe strong {
    margin-bottom: 20px;
  }
  footer .main .foot_subscribe form {
    padding-right: 5px;
  }
  footer .main .foot_subscribe form input {
    font-size: 14px;
    padding: 0 20px;
  }
  footer .main .foot_subscribe form input[type=submit] {
    margin: 5px 0;
    line-height: 40px;
    padding: 0 20px;
  }
  footer .bottom {
    padding: 20px 0;
  }
  footer .bottom .flex {
    gap: 30px;
    flex-direction: column-reverse;
  }
  footer .bottom p,
  footer .bottom a {
    letter-spacing: unset;
  }
  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;
  }
  footer #backtop {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
  .page_banner {
    border-radius: 10px;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 50px 0 80px;
  }
  .page_banner .flex .head {
    padding: 0;
  }
  .page_banner .img {
    margin-right: 0;
    width: 45%;
  }
  .page_steps {
    padding: 80px 0;
    overflow: hidden;
  }
  .page_steps::before {
    top: 50px;
    bottom: 50px;
  }
  .page_steps .page_steps_swiper {
    margin-top: 30px;
    overflow: unset;
  }
  .page_steps .page_steps_swiper .swiper-slide {
    max-width: 270px;
  }
  .page_steps .item::before {
    top: 70px;
  }
  .page_steps .item .img {
    width: 140px;
  }
  .page_steps .item .info {
    margin-top: 10px;
  }
  .page_steps .item .info h3 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: unset;
  }
  .page_steps .item .info p {
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .page_steps p.center:has(.btn_w) {
    margin-top: 40px;
  }
  .page_started .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .page_started .head {
    padding: 0;
  }
  .page_started .head .subtitle {
    margin-bottom: 0;
    margin-right: 0;
  }
  .page_started .head span {
    font-size: 14px;
    padding: 5px 12px;
    letter-spacing: unset;
  }
  .page_started .head .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
  }
  .page_started .head .ad_lis {
    gap: 10px;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: unset;
  }
  .page_started .head .ad_lis span {
    font-size: 14px;
  }
  .page_started .head .ad_lis span:nth-child(2) {
    padding: 5px 12px;
  }
  .page_started .float li:nth-child(3) {
    top: 50%;
  }
  .form_steps {
    padding: 30px 0;
    border-radius: 0;
  }
  .form_steps .step_list li::before {
    top: 15px;
  }
  .form_steps .step_list .order {
    font-size: 14px;
    line-height: 32px;
    min-width: 32px;
  }
  .form_steps .step_list .label {
    font-size: 14px;
    margin-top: 14px;
  }
  .social {
    gap: 16px;
  }
  .social a {
    width: 40px;
    height: 40px;
  }
  .quote_form form {
    gap: 16px 0;
  }
  .quote_form form .label {
    font-size: 16px;
    letter-spacing: unset;
    margin-bottom: 10px;
  }
  .quote_form form input,
  .quote_form form select {
    font-size: 14px;
    height: 46px;
    padding: 0 20px;
  }
  .quote_form form select {
    padding-right: 30px;
    background-size: 10px;
    background-position: center right 10px;
  }
  .quote_form form span:has(input[type=submit]) {
    margin-top: 10px;
  }
  .quote_form form input[type=submit] {
    font-size: 14px;
    height: 46px;
    min-width: 120px;
  }
  .product_list .wrap {
    padding: 0 20px;
  }
  .product_list .img {
    margin-top: 0;
  }
  .product_list .info {
    margin-top: 20px;
  }
  .product_list .info .title {
    font-size: 18px;
    letter-spacing: unset;
  }
  .product_list .info ul {
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_list .info ul li + li {
    margin-top: 5px;
  }
  .product_list .info ul li {
    padding-left: 14px;
  }
  .product_list .info ul li::before {
    width: 5px;
    height: 5px;
    top: 8px;
  }
  .product_list .btns {
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 0;
    gap: 8px;
  }
  .product_list .btns .btn,
  .product_list .btns .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 12px;
  }

  div.search-block .searchform {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  div.search-block input[type='text'] {
    flex: 1;
  }
  div.search-block input[type='submit'] {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 2.2vw 0 1.2vw;
    /* background: url(../img/page_home-header_search.svg) no-repeat center; */
    background: url(../img/search.svg) no-repeat center / contain;
    background-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s all ease;
    cursor: pointer;
    border: none;
    outline: none;
  }
  div.search-block div.content {
    position: unset;
  }
  div.search-block .searchform input[type='text'] {
    font-size: 22px;
    height: 70px;
  }
  .wd-action-btn {
    width: 25px;
    height: 25px;
    top: unset;
    right: 2rem;
    bottom: 2rem;
  }
  div.search-block {
    height: 100%;
    width: 100%;
    top: 120%;
    bottom: unset;
    visibility: hidden;
  }
  div.search-block.active {
    top: 20%;
    visibility: visible;
    height: 80%;
    transform: translateY(0);
    bottom: unset;
  }
  .search-block input[type="submit"]:not(:disabled):hover {
    background-size: 1.4rem;
    border: none;
  }

  .default_head{
      padding: 10rem 0 5rem;
  }
  .default_head h1{
    font-size: 2rem;
  }
  .default_body{
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .default_body h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0 1rem;
  }
  .default_body h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0;
  }
  .default_body p {
    margin: 1rem 0;
  }
  
  
  .default_body ul li {
    position: relative;
    margin-bottom: 1rem;
  }
  .default_body ul li:last-child {
    margin-bottom: 0;
  }

  .float_contact {
    right: 20px;
    bottom: 40px;
  }
  .float_contact a {
    width: 50px;
    height: 50px;
  }
  .float_contact span {
    transform: translate(15px, -50%);
    padding: 10px 30px 10px 15px;
  }
  .float_contact span::before {
    right: 15px;
  }

  .blog_list .info {
    margin-top: 16px;
  }
  .blog_list .info .cat {
    font-size: 14px;
  }
  .blog_list .info .title {
    font-size: 18px;
    margin-top: 5px;
  }
  .blog_list .info .date {
    margin-top: 10px;
  }

  nav.navigation {
    gap: 20px;
  }
  nav.navigation .nav-links {
    gap: 10px;
  }
  nav.navigation .page-numbers {
    font-size: 14px;
    line-height: 32px;
    min-width: 32px;
  }
  nav.navigation .omit {
    font-size: 14px;
    margin: 0 10px;
    min-width: unset;
  }
  nav.navigation .nav-page label {
    font-size: 14px;
  }
  nav.navigation .nav-page select {
    font-size: 14px;
    height: 32px;
    padding: 0 30px 0 10px;
    margin-right: 0;
    background-size: 8px;
    background-position: center right 10px;
  }

}
@media screen and (max-width: 576px) {
  header .btns .btn {
    display: none;
  }
  .page_banner::after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: '';
    background-color: #1e3756;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
  }
  .page_banner .head {
    width: 100%;
  }
  .page_banner .img {
    width: 100%;
    order: -1;
    margin-bottom: 20px;
  }
  .page_steps {
    padding: 50px 0;
  }
  .page_steps::before {
    top: 20px;
    bottom: 20px;
  }
  .page_started {
    padding: 50px 0;
  }
  .page_started .flex {
    padding: 0;
  }
  .page_started .head {
    width: 100%;
  }
  .page_started .float ul {
    width: calc(100% + 40px);
    padding: 0 20px 30px;
    margin: 0 -20px;
    display: flex;
    overflow-x: auto;
    gap: 16px;
  }
  .page_started .float ul::-webkit-scrollbar {
    display: none;
  }
  .page_started .float ul .img {
    position: relative;
    left: unset;
    top: unset;
    width: 120px;
    flex-shrink: 0;
  }
  footer .main {
    padding-top: 50px;
  }
  footer::before {
    top: 20px;
  }
  .quote_form form .col-2 {
    width: 100%;
  }

  .float_contact {
    position: sticky;
    bottom: 0;
    pointer-events: all;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .float_contact ul {
    display: flex;
    justify-content: space-around;
  }
  .float_contact li {
    flex: 1;
  }
  .float_contact a {
    width: auto;
    height: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
    padding: 8px 8px 3px;
    margin: 0 auto;
    max-width: max-content;
  }
  .float_contact a::before {
    position: static;
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
    border-radius: 0;
    background-size: contain;
  }
  .float_contact span {
    display: none;
  }
  .float_contact .label {
    display: block;
    margin-top: 2px;
  }

}
