/*colors*/
:root {
  --color-black: #0D121C;
  --color-white: #FFFFFF;
  --color-green: #49AF00;
  --color-gray: #4D5761;
  --Gray-100: #F3F4F6;
  --color-yelow: #FFE99C;
  --color-light: #FCFCFD;
  --color-gray-light: #D2D6DB;
  --color-overlay: rgba(13, 18, 28, 0.6);
  --color-gray-200: #E5E7EB;
  --color-green-light: rgba(73, 175, 0, 0.1);
  --color-gray-50: #F9FAFB;
  --Primary-25: #E8FFD8;
  --Primary-700: #2C6900;
  --Gray-500: #6C737F;
  --Gray-400: #9DA4AE;
  --Gray-700: #384250;
  --Gray-650: #54585D;
  --Gray-800: #1F2A37;
  --color-success: #17B26A;
  --color-warning: #FDB022;
  --color-green-dark: #0F2300;
}

/*-colors*/
/*animations*/
@keyframes anim1 {
  0%, 100% {
    transform: rotate(-1.5deg);
  }
  50% {
    transform: rotate(1.5deg);
  }
}
@keyframes anim2 {
  0%, 100% {
    box-shadow: 0 0 0 var(--halo-s1, 0.625rem) var(--halo-1);
  }
  50% {
    box-shadow: 0 0 0 var(--halo-s2, 1.125rem) var(--halo-2);
  }
}
/*-animations*/
/*fonts*/
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-latin.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-cyrillic.woff2") format("woff2");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
.h1 {
  color: var(--color-white);
  font-size: 4rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.h2 {
  color: var(--color-black);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.h3 {
  color: var(--color-black);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: normal;
}

.h4 {
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
}

.h5 {
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
}

.p1 {
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
}

.p2 {
  color: var(--color-gray-light);
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .h1 {
    font-size: 9.6vw;
  }
  .h2 {
    font-size: 1.75rem;
  }
  .h3 {
    font-size: 1.25rem;
  }
  .h4 {
    font-size: 1.25rem;
  }
  .h5 {
    font-size: 1.25rem;
  }
}
/*-fonts*/
/*options*/
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  color: var(--color-black);
  background: var(--color-light);
}

body.active {
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-thumb {
  background: var(--color-black);
}

body::-webkit-scrollbar-track {
  background: var(--color-light);
}

p {
  width: 100%;
  margin: 0px;
}

h1, h2, h3, h4, h5 {
  width: 100%;
  margin: 0px;
}

img {
  max-width: 100%;
}

ul, ol {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-type: none;
}

span {
  display: block;
}

table {
  width: 100%;
  border-spacing: 0px;
  border-collapse: collapse;
}

th {
  border: none;
}

td {
  border: none;
}

a {
  display: block;
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  text-decoration: none;
  outline: none;
}

select {
  font-family: "Inter Tight", sans-serif;
  opacity: 1;
  border-radius: 0;
  background: transparent;
  padding: 0px;
  margin: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

textarea {
  font-family: "Inter Tight", sans-serif;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  resize: none;
  border-radius: 0;
  background: transparent;
  padding: 0px;
  margin: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: none;
}
textarea::-webkit-input-placeholder {
  color: #000;
}
textarea::-moz-placeholder {
  color: #000;
}
textarea:-ms-input-placeholder {
  color: #000;
}
textarea:-moz-placeholder {
  color: #000;
}
textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

input {
  font-family: "Inter Tight", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 0;
  background: transparent;
  padding: 0px;
  margin: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border: none;
}
input::-webkit-input-placeholder {
  color: #000;
}
input::-moz-placeholder {
  color: #000;
}
input:-ms-input-placeholder {
  color: #000;
}
input:-moz-placeholder {
  color: #000;
}
input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

button {
  font-family: "Inter Tight", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0px;
  margin: 0px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html,
body {
  height: 100%;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 1920px;
  padding: 0 5rem;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.section {
  position: relative;
  z-index: 1;
}

.section-top {
  margin-bottom: 2.5rem;
}

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

.wpcf7-spinner {
  display: none !important;
}

@media (max-width: 1439px) {
  .container {
    padding: 0 1.25rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .section-top {
    margin-bottom: 1.5rem;
  }
}
/*-options*/
/*buttons*/
.btn1 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  width: fit-content;
  padding: 0rem 2rem;
  border: 1px solid var(--color-green);
  border-radius: 100px;
  color: var(--color-white);
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375rem;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-green);
  transition: color 0.3s ease;
}
.btn1::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--color-white);
  transform: translateY(101%);
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .btn1:hover {
    color: var(--color-green);
  }
  .btn1:hover::after {
    transform: translateY(0);
  }
}

.btn2 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  width: fit-content;
  padding: 0rem 2rem;
  border: 1px solid var(--color-black);
  border-radius: 100px;
  color: var(--color-white);
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375rem;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-black);
  transition: color 0.3s ease;
}
.btn2::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--color-white);
  transform: translateY(101%);
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .btn2:hover {
    color: var(--color-black);
  }
  .btn2:hover::after {
    transform: translateY(0);
  }
}

.btn3 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.375rem;
  width: 100%;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375rem;
  border-radius: 6.25rem;
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn3::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--color-black);
  transform: translateY(101%);
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .btn3:hover {
    color: var(--color-white);
  }
  .btn3:hover::after {
    transform: translateY(0);
  }
}

.btn4 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  width: fit-content;
  padding: 0rem 2rem;
  border-radius: 100px;
  color: var(--color-black);
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375rem;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-white);
  transition: color 0.3s ease;
}
.btn4::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--color-green);
  transform: translateY(101%);
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .btn4:hover {
    color: var(--color-white);
  }
  .btn4:hover::after {
    transform: translateY(0);
  }
}

.btn5 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  width: fit-content;
  padding: 0rem 2rem;
  border: 1px solid var(--color-white);
  border-radius: 100px;
  color: var(--color-black);
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375rem;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-white);
  transition: color 0.3s ease;
}
.btn5::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--color-green);
  transform: translateY(101%);
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .btn5:hover {
    color: var(--color-white);
  }
  .btn5:hover::after {
    transform: translateY(0);
  }
}

.btn6 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.875rem;
  width: fit-content;
  padding: 0rem 2rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 100px;
  color: var(--color-black);
  font-family: "Inter Tight", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.375rem;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-gray-50);
  transition: color 0.3s ease;
}
.btn6::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--color-black);
  transform: translateY(101%);
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .btn6:hover {
    color: var(--color-white);
  }
  .btn6:hover::after {
    transform: translateY(0);
  }
}

/*-buttons*/
/*slider*/
.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  border-radius: 2.5rem;
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
  color: var(--color-black);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.slider-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}
.slider-arrow:hover {
  background: var(--color-black);
  color: var(--color-white);
}
.slider-arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.slider-play {
  --halo-1: rgba(73, 175, 0, 0.5);
  --halo-2: rgba(73, 175, 0, 0.2);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  animation: anim2 1.5s ease-in-out infinite;
  transition: background 0.3s ease;
}
.slider-play svg {
  width: 1.5rem;
  height: 1.5rem;
}
.slider-play:hover {
  --halo-1: rgba(13, 18, 28, 0.5);
  --halo-2: rgba(13, 18, 28, 0.2);
  background: var(--color-black);
}

.slider-pagination {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  width: fit-content !important;
}
.slider-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #D2D6DB;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.slider-pagination .swiper-pagination-bullet-active {
  width: 1.625rem;
  border-radius: 0.5rem;
  background: var(--color-black);
}

/*-slider*/
/*form*/
.form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-input,
.form-textarea {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.form-label {
  color: var(--color-gray);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.125rem;
}

.form-input_point,
.form-textarea_point {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--color-gray-light);
  border-radius: 0.5rem;
  background: var(--color-white);
  color: var(--color-black);
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  transition: border-color 0.2s ease;
}
.form-input_point::placeholder,
.form-textarea_point::placeholder {
  color: var(--color-gray-light);
}
.form-input_point:focus,
.form-textarea_point:focus {
  border-color: var(--color-green);
}

.form-textarea_point {
  height: 5rem;
  resize: none;
}

.form-input_point.false,
.form-textarea_point.false {
  border-color: #A80000;
}

.form-error {
  display: none;
  margin-top: 0.25rem;
  color: #A80000;
  font-size: 0.75rem;
}

.form-input_point.false ~ .form-error,
.form-textarea_point.false ~ .form-error {
  display: block;
}

.form-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.875rem;
  border-radius: 6.25rem;
  background: var(--color-green);
  border: 1px solid var(--color-green);
  overflow: hidden;
  cursor: pointer;
}
.form-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--color-white);
  transform: translateY(101%);
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .form-btn:hover::after {
    transform: translateY(0);
  }
  .form-btn:hover .form-btn_point {
    color: var(--color-green);
  }
}

.form-btn_point {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--color-white);
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.form-policy {
  color: var(--Gray-500);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.125rem;
  text-align: center;
}

/*-form*/
/*breadcrumbs*/
.breadcrumbs {
  margin-top: 78px;
  border-bottom: 1px solid #E5E7EB;
  padding: 0.75rem 0;
}

.breadcrumbs-ul {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: auto;
  padding-bottom: 4px;
}
.breadcrumbs-ul li {
  display: flex;
  align-items: center;
}
.breadcrumbs-ul li:after {
  content: "/";
  color: #6C737F;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  margin: 0 5px;
}
.breadcrumbs-ul li:last-child:after {
  display: none;
}
.breadcrumbs-ul a {
  color: #6C737F;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  white-space: nowrap;
}
.breadcrumbs-ul li:last-child a {
  color: #0D121C;
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 0.5rem;
  }
  .breadcrumbs-ul li:after {
    font-size: 0.875rem;
  }
  .breadcrumbs-ul a {
    font-size: 0.875rem;
  }
}
/*-breadcrumbs*/
/*navigation*/
.navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  margin: 2.5rem auto 0;
}

.navigation-pag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.navigation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  border-radius: 2.5rem;
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
  color: var(--color-black);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.navigation-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (hover: hover) {
  .navigation-arrow:hover {
    background: var(--color-black);
    color: var(--color-white);
  }
}

.navigation-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navigation-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  color: var(--color-gray);
  font-size: 1.125rem;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
@media (hover: hover) {
  .navigation-list a:hover {
    border-color: var(--color-black);
    color: var(--color-black);
  }
}
.navigation-list .navigation-active {
  border-color: var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
}

.navigation-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  color: var(--Gray-650);
  font-size: 0.875rem;
}

.navigation-more {
  width: 100%;
}

@media (max-width: 768px) {
  .navigation {
    width: 100%;
    margin-top: 1.5rem;
  }
  .navigation-pag {
    justify-content: space-between;
  }
}
/*-navigation*/
/*header*/
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
}
.header::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transform: translateY(-100%);
  border-bottom: 1px solid #E5E7EB;
  transition: 0.3s;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-logo svg {
  fill: var(--color-white);
  transition: 0.2s ease;
}
@media (hover: hover) {
  .header-logo svg:hover {
    fill: var(--color-green);
  }
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-menu a {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  transition: 0.2s ease;
}
@media (hover: hover) {
  .header-menu a:hover {
    color: var(--color-green);
  }
}

.header-info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  transition: 0.2s;
}
.header-tel svg {
  fill: var(--color-white);
  transition: 0.2s;
}
@media (hover: hover) {
  .header-tel:hover {
    color: var(--color-green);
  }
  .header-tel:hover svg {
    fill: var(--color-green);
  }
}

.header-burger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: 0.2s;
}
@media (hover: hover) {
  .header-burger:hover {
    background: var(--color-green);
  }
}
.header-burger svg {
  fill: #FFF;
}

.header.active::before {
  transform: translate(0);
}
.header.active .header-logo svg {
  fill: var(--color-black);
}
@media (hover: hover) {
  .header.active .header-logo svg:hover {
    fill: var(--color-green);
  }
}
.header.active .header-menu a {
  color: var(--color-black);
}
@media (hover: hover) {
  .header.active .header-menu a:hover {
    color: var(--color-green);
  }
}
.header.active .header-tel {
  color: var(--color-black);
}
.header.active .header-tel svg {
  fill: var(--color-black);
}
@media (hover: hover) {
  .header.active .header-tel:hover {
    color: var(--color-green);
  }
  .header.active .header-tel:hover svg {
    fill: var(--color-green);
  }
}
.header.active .header-burger {
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
}
.header.active .header-burger svg {
  fill: #384250;
}
@media (hover: hover) {
  .header.active .header-burger:hover {
    background: var(--color-green);
  }
  .header.active .header-burger:hover svg {
    fill: #FFF;
  }
}
.header.active .header-btn {
  border: 1px solid var(--color-green);
  color: var(--color-white);
  background: var(--color-green);
}
.header.active .header-btn::after {
  background: var(--color-white);
}
@media (hover: hover) {
  .header.active .header-btn:hover {
    color: var(--color-green);
  }
}

@media (max-width: 1200px) {
  .header-nav {
    display: none;
  }
  .header-tel {
    display: none;
  }
  .header-btn {
    display: none;
  }
}
/*-header*/
/*footer*/
.footer {
  position: relative;
  z-index: 1;
  background: var(--color-green-dark);
  padding-top: 3.75rem;
}

.footer-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo svg {
  fill: var(--color-white);
}

.footer-cover {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-a {
  height: 2.375rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
}

.footer-soc {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-soc_a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.footer-soc_a img {
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .footer-soc_a:hover {
    transform: scale(1.1);
  }
}

.footer-p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 300;
}
.footer-p a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .footer-p a:hover svg {
    fill: var(--color-green);
  }
}
.footer-p svg {
  fill: #FFF;
  transition: 0.1s;
}

.footer-mob {
  display: none;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 300;
}
.footer-mob a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .footer-mob a:hover svg {
    fill: var(--color-green);
  }
}
.footer-mob svg {
  fill: #FFF;
  transition: 0.1s;
}

.footer-boxs {
  display: flex;
  gap: 6.25rem;
}

.footer-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-box_label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: normal;
}

.footer-box_ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-box_ul a {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .footer-box_ul a:hover {
    color: var(--color-green);
  }
}
.footer-box_ul span {
  color: var(--color-gray-light);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.footer-map {
  width: 33.5rem;
  height: 18.5rem;
  overflow: hidden;
  border-radius: 0.75rem;
}
.footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-img {
  display: block;
  width: 100%;
  margin-top: 5rem;
}

@media (max-width: 1200px) {
  .footer-wrap {
    flex-wrap: wrap;
  }
  .footer-boxs {
    gap: 3rem;
  }
  .footer-map {
    width: 100%;
    height: 18.5rem;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 2.5rem;
  }
  .footer-wrap {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-info {
    width: 100%;
  }
  .footer-p {
    display: none;
  }
  .footer-cover {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
  }
  .footer-boxs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
  }
  .footer-map {
    height: 14rem;
  }
  .footer-mob {
    display: flex;
  }
  .footer-img {
    margin-top: 2.5rem;
  }
}
/*-footer*/
/*content*/
.content *:first-child {
  margin-top: 0px;
}
.content h2 {
  color: var(--color-black);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2rem;
  margin-top: 2rem;
}
.content h3 {
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
  margin-top: 2rem;
}
.content h4 {
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.625rem;
  margin-top: 2rem;
}
.content h5 {
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  margin-top: 2rem;
}
.content h6 {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  margin-top: 2rem;
}
.content p {
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  margin-top: 1rem;
}
.content p a {
  display: inline;
  margin-top: 0;
}
.content a {
  color: var(--color-green);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  text-decoration: underline;
  margin-top: 1rem;
}
.content ul {
  margin-top: 1rem;
}
.content ul ul {
  margin-top: 1rem;
}
.content ul li {
  position: relative;
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  padding-left: 20px;
  margin-top: 0.5rem;
}
.content ul li a {
  display: inline;
  margin-top: 0;
}
.content ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-green);
}
.content ol {
  counter-reset: item;
  margin-top: 1rem;
}
.content ol ol {
  margin-top: 1rem;
}
.content ol li {
  position: relative;
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  padding-left: 20px;
  margin-top: 0.5rem;
}
.content ol li:before {
  content: counters(item, ".") ".";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  color: var(--color-green);
}
.content img {
  border-radius: 16px;
  margin-top: 2rem;
}
.content iframe {
  border-radius: 16px;
  margin-top: 2rem;
}
.content .wp-block-table {
  width: 100%;
  overflow: auto;
}
/*-content*/
/*pop*/
.pop {
  position: fixed;
  z-index: 11;
  inset: 0;
  background: var(--color-overlay);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.pop.active {
  opacity: 1;
  visibility: visible;
}
.pop .container {
  display: flex;
  justify-content: flex-end;
}

.pop-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 40.1875rem;
  height: fit-content;
  max-width: 100%;
  margin-top: 1rem;
  border-radius: 1.25rem;
  background: var(--Gray-100);
  overflow: hidden;
}

.pop-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pop-logo {
  display: none;
  align-items: center;
}
.pop-logo img {
  display: block;
  height: 1.5rem;
  width: auto;
}

.pop-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: var(--color-black);
  cursor: pointer;
  transition: background 0.2s ease;
}
@media (hover: hover) {
  .pop-close:hover {
    background: var(--color-gray-200);
  }
}
.pop-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.pop-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1.5rem 2rem;
}

.pop-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pop-nav a {
  color: var(--color-black);
  font-size: 1.75rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .pop-nav a:hover {
    color: var(--color-green);
  }
}

.pop-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pop-contacts a,
.pop-contacts span {
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 500;
}
.pop-contacts a {
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .pop-contacts a:hover {
    color: var(--color-green);
  }
}

.pop-catalog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1.5rem 1.5rem;
  border-top: 1px solid var(--color-gray-light);
}

.pop-catalog_info {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.pop-catalog_h {
  color: var(--color-black);
  font-size: 1.75rem;
  font-weight: 500;
  text-transform: uppercase;
}

.pop-catalog_p {
  max-width: 17rem;
  color: var(--Gray-500);
  font-size: 1.125rem;
  font-weight: 400;
}

.pop-catalog_a {
  flex-shrink: 0;
}

.pop-catalog_icon {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 6.25rem;
  background: var(--color-black);
  color: var(--color-white);
  transition: background 0.2s ease;
}
@media (hover: hover) {
  .pop-catalog_icon:hover {
    background: var(--color-green);
  }
}
.pop-catalog_icon svg {
  width: 1rem;
  height: 1rem;
}

.pop-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 15rem;
}
.pop-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 1200px) {
  .pop {
    background: var(--color-white);
  }
  .pop .container {
    display: block;
    padding: 0;
  }
  .pop-cover {
    width: 100%;
    min-height: 100%;
    margin-top: 0;
    border-radius: 0;
    background: var(--color-white);
  }
  .pop-top {
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--color-gray-light);
  }
  .pop-logo {
    display: flex;
  }
  .pop-grid {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
  .pop-nav a {
    font-size: 1.25rem;
  }
  .pop-contacts a,
  .pop-contacts span {
    font-size: 1rem;
  }
  .pop-catalog {
    padding: 1.5rem 1rem;
  }
  .pop-catalog_a {
    display: none;
  }
  .pop-catalog_icon {
    display: flex;
  }
  .pop-catalog_h {
    font-size: 1.25rem;
  }
  .pop-catalog_p {
    max-width: 12rem;
    font-size: 0.875rem;
  }
  .pop-bg {
    margin-top: auto;
  }
}
/*-pop*/
/*modal*/
.modal {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(13, 18, 28, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 28.75rem;
  max-width: 100%;
  max-height: 100%;
  padding: 2.5rem;
  border-radius: 1.25rem;
  background: var(--color-white);
  overflow-y: auto;
}

.modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-h {
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.625rem;
}

.modal-p {
  color: var(--Gray-500);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-black);
  cursor: pointer;
  transition: color 0.2s ease;
}
.modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (hover: hover) {
  .modal-close:hover {
    color: var(--color-green);
  }
}

@media (max-width: 768px) {
  .modal {
    align-items: flex-end;
    padding: 0;
  }
  .modal-wrap {
    width: 100%;
    max-height: 90vh;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 1.25rem 1.25rem 0 0;
    transform: translateY(100%);
    transition: transform 0.35s ease;
  }
  .modal.active .modal-wrap {
    transform: translateY(0);
  }
}
/*-modal*/
/*start*/
.start {
  position: fixed;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.start-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.start-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.start-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
}

.start-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 11rem;
  padding-bottom: 7.5rem;
  display: flex;
  flex-direction: column;
}

.start-h {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.start-ul_s.h3 {
  color: var(--color-white);
}

.start-h_s2 {
  padding-left: 10.25rem;
}

.start-h_s3 {
  padding-left: 4.1875rem;
}

.start-a {
  margin-top: 3.25rem;
  margin-left: 4.1875rem;
  align-self: flex-start;
}

.start-ul {
  margin-top: auto;
  display: flex;
  gap: 5rem;
}

.start-ul_li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.start-s {
  display: inline-block;
  font-size: 1.25rem;
}

@media (max-width: 1200px) {
  .start-wrap {
    padding-top: 8rem;
  }
  .start-h_s2 {
    padding-left: 8rem;
  }
  .start-h_s3 {
    padding-left: 3rem;
  }
  .start-a {
    margin-left: 3rem;
  }
}
@media (max-width: 768px) {
  .start-wrap {
    padding-top: 6rem;
    padding-bottom: 8.5rem;
  }
  .start-h {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    gap: 0;
  }
  .start-h_s2 {
    padding-left: 0;
    margin-left: auto;
  }
  .start-h_s3 {
    padding-left: 1.5rem;
  }
  .start-ul {
    gap: 0;
  }
  .start-ul_s {
    white-space: nowrap;
  }
  .start-a {
    position: absolute;
    left: 0;
    bottom: 3.5rem;
    width: 100%;
    margin: 0px;
  }
  .start-ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
/*-start*/
/*about*/
.about {
  position: relative;
  margin-top: 100vh;
  margin-top: 100dvh;
  padding: 6.25rem 0;
  background: var(--color-light);
  overflow: hidden;
}

.about-bg1,
.about-bg2,
.about-bg3 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: bottom center;
  animation: anim1 4s ease-in-out infinite;
}
.about-bg1 img,
.about-bg2 img,
.about-bg3 img {
  width: 100%;
}

.about-bg1 {
  width: 16.625rem;
  top: 23.06%;
  right: 31.81%;
  bottom: -3.33%;
  left: 49.72%;
}

.about-bg2 {
  width: 18.85738rem;
  top: 27.78%;
  right: 80.76%;
  bottom: -0.99%;
  left: -1.71%;
  animation-duration: 5s;
  animation-delay: -1s;
}

.about-bg3 {
  width: 9.375rem;
  top: 47.5%;
  right: 28.13%;
  bottom: -11.11%;
  left: 61.46%;
  animation-duration: 3.5s;
  animation-delay: -2s;
}

.about-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.5rem;
}

.about-h {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-h_s2 {
  padding-left: 7.0625rem;
  color: var(--color-green);
}

.about-h_s3 {
  padding-left: 11rem;
}

.about-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: 23.125rem;
}

.about-a {
  align-self: flex-start;
}

@media (max-width: 1200px) {
  .about {
    padding: 5rem 0;
  }
  .about-h_s2 {
    padding-left: 2rem;
  }
  .about-h_s3 {
    padding-left: 4rem;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 4.5rem 0;
  }
  .about-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-h {
    display: inline;
  }
  .about-h_s1 {
    display: inline;
  }
  .about-h_s2 {
    display: inline;
    padding: 0;
  }
  .about-h_s3 {
    display: inline;
    padding: 0;
  }
  .about-info {
    width: 100%;
  }
  .about-bg2,
  .about-bg3 {
    display: none;
  }
  .about-a {
    width: 100%;
    margin-top: 1.5rem;
  }
}
/*-about*/
/*genplan*/
.genplan {
  background: var(--Gray-100);
  overflow: hidden;
}

.genplan-top {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 6.25rem 0 2.5rem 0;
}

.genplan-h {
  grid-column-start: 1;
  grid-column-end: 3;
}

.genplan-wrap {
  grid-column-start: 4;
  grid-column-end: 7;
}

.genplan-content {
  max-width: 31.5rem;
}

.genplan-ul {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
}
.genplan-ul li {
  display: flex;
  gap: 0.6rem;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
}
.genplan-ul svg {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
}

.genplan-cover {
  position: relative;
}

.genplan-img {
  display: block;
  width: 100%;
}

.genplan-svg {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.genplan-path {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.genplan-path.active {
  opacity: 1;
}

.genplan-point {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
}

.genplan-point1 {
  left: 47.7%;
  top: 18%;
}

.genplan-point2 {
  left: 75.2%;
  top: 42.9%;
}

.genplan-point3 {
  left: 20.5%;
  top: 43.5%;
}

.genplan-point4 {
  left: 48.75%;
  top: 63.75%;
}

.genplan-point_btn {
  --halo-1: rgba(73, 175, 0, 0.5);
  --halo-2: rgba(73, 175, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-green);
  cursor: pointer;
  animation: anim2 1.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.genplan-point_btn svg {
  width: 2rem;
  height: 2rem;
  padding: 0.375rem;
  border-radius: 50%;
  background: var(--color-white);
  transition: transform 0.4s ease;
}

.genplan-point_info {
  position: absolute;
  z-index: 4;
  width: 18rem;
  padding: 0.875rem 1.25rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 1.25rem;
  box-shadow: 0 0.375rem 0.375rem rgba(13, 18, 28, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.genplan-point1 .genplan-point_info {
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
}

.genplan-point4 .genplan-point_info {
  bottom: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
}

.genplan-point3 .genplan-point_info {
  left: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
}

.genplan-point2 .genplan-point_info {
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
}

.genplan-point_title {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-gray);
  font-size: 1.125rem;
  font-weight: 500;
}

.genplan-point_num {
  color: var(--color-black);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 2.2rem;
}

.genplan-point_ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.genplan-point_ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}
.genplan-point_ul li span:first-child {
  color: var(--color-gray);
}
.genplan-point_ul li span:last-child {
  color: var(--color-black);
}

.genplan-point_a {
  width: 100%;
  margin-top: 1rem;
}

.genplan-point.active {
  z-index: 5;
}
.genplan-point.active .genplan-point_btn {
  transform: scale(1.1);
}
.genplan-point.active .genplan-point_btn svg {
  transform: rotate(135deg);
}
.genplan-point.active .genplan-point_info {
  opacity: 1;
  visibility: visible;
}

.genplan-board {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--color-gray-light);
  border-radius: 1.25rem;
  background: var(--color-white);
}

@media (max-width: 1200px) {
  .genplan-wrap {
    grid-column-start: 3;
  }
  .genplan-point_info {
    display: none;
  }
  .genplan-board:not(:empty) {
    display: block;
  }
  .genplan-point_btn {
    --halo-s1: 0.3125rem;
    --halo-s2: 0.625rem;
    width: 1.75rem;
    height: 1.75rem;
  }
  .genplan-point_btn svg {
    width: 1.25rem;
    height: 1.25rem;
    padding: 0.25rem;
  }
}
@media (max-width: 768px) {
  .genplan-top {
    display: block;
    padding-top: 4.5rem;
    padding-bottom: 1.5rem;
  }
  .genplan-h {
    margin-bottom: 1.5rem;
  }
  .genplan-ul {
    display: grid;
    gap: 1rem;
  }
  .genplan-board {
    position: relative;
    left: -1rem;
    width: calc(100% + 2rem);
    border: none;
    border-radius: 0;
    padding: 1rem;
    margin: 0;
  }
}
/*-genplan*/
/*advantages*/
.advantages {
  position: relative;
  padding: 6.25rem 0;
  background: var(--color-light);
  overflow: hidden;
}

.advantages-bg1,
.advantages-bg2,
.advantages-bg3 {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  transform-origin: bottom center;
  animation: anim1 4s ease-in-out infinite;
}
.advantages-bg1 img,
.advantages-bg2 img,
.advantages-bg3 img {
  width: 100%;
}

.advantages-bg1 {
  width: 8.5rem;
  bottom: -3%;
  left: 0%;
}

.advantages-bg2 {
  width: 5.75rem;
  bottom: -3%;
  left: 5%;
  animation-duration: 5s;
  animation-delay: -1s;
}

.advantages-bg3 {
  width: 10.8125rem;
  bottom: -3%;
  right: 0;
  animation-duration: 3.5s;
  animation-delay: -2s;
}

.advantages-h {
  position: relative;
  z-index: 1;
}

.advantages-boxs {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.advantages-box {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  border-radius: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .advantages-box:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(13, 18, 28, 0.08);
  }
}

.advantages-box_top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0.75rem 1.25rem;
}

.advantages-box_h {
  flex: 1;
}

.advantages-box_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 6.25rem;
  background: var(--color-green-light);
}
.advantages-box_icon img {
  width: 1.5rem;
  height: 1.5rem;
}

.advantages-box_img {
  height: 15.56vw;
  border-radius: 0.75rem;
  overflow: hidden;
}
.advantages-box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .advantages-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-box_img {
    height: 26.42vw;
  }
}
@media (max-width: 768px) {
  .advantages {
    padding: 4.5rem 0;
  }
  .advantages-boxs {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .advantages-bg2 {
    display: none;
  }
  .advantages-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-box_top {
    flex-direction: column;
    padding: 0.75rem;
  }
  .advantages-box_img {
    height: 100%;
  }
  .advantages-box_icon {
    order: -1;
  }
}
/*-advantages*/
/*planning*/
.planning {
  background: var(--Gray-100);
  padding: 6.25rem 0;
  overflow: hidden;
}

.planning2 {
  position: static;
  padding: 2.5rem 0 6.25rem 0;
}

.planning-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.planning-slider {
  overflow: visible;
}

.planning-slide {
  height: auto;
}

.planning-item {
  height: 100%;
  border-radius: 1.25rem;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .planning-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(13, 18, 28, 0.08);
  }
}

.planning-item_top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.planning-item_grid {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.44em;
}

.planning-item_label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 1.5rem;
  color: var(--Primary-700);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 0.875rem;
  text-transform: uppercase;
  padding: 0px 0.5rem;
  border-radius: 0.5rem;
  background: var(--Primary-25);
}

.planning-item_rebate {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 1.5rem;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 0.875rem;
  text-transform: uppercase;
  padding: 0px 0.5rem;
  border-radius: 0.5rem;
  background: var(--color-yelow);
}

.planning-item_img {
  height: 14.58vw;
  width: auto;
}

.planning-item_bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.planning-item_cover {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--Gray-500);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 0.875rem;
  margin-top: 0.5rem;
}

.planning-item_price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.planning-item_val {
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.planning-item_discount {
  color: var(--Gray-400);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1rem;
  text-decoration-line: line-through;
}

.planning-item_a {
  margin-top: 1rem;
}

.planning-bottom {
  display: none;
}

.planning-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  padding-bottom: 1.5rem;
}

.planning-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  align-items: flex-start;
}

.planning-num {
  display: flex;
  gap: 0.38rem;
}

.planning-filter {
  grid-column: 1/4;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: var(--Gray-100);
}

.planning-filter_head {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-bottom: 1px solid var(--color-gray-light);
}

.planning-filter_title {
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 500;
}

.planning-filter_close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: var(--color-black);
  cursor: pointer;
}
.planning-filter_close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.planning-filter_body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.planning-filter_group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.planning-filter_h {
  color: var(--Gray-700);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.planning-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.planning-tag {
  cursor: pointer;
}
.planning-tag input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.planning-tag span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  color: var(--color-gray);
  font-size: 1.125rem;
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.planning-tag input:checked + span {
  border-color: var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
}
@media (hover: hover) {
  .planning-tag:hover span {
    border-color: var(--color-black);
  }
}

.planning-range {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.planning-range_field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 4.375rem;
  flex-shrink: 0;
}

.planning-range_label {
  color: var(--color-gray);
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.planning-range_num {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid var(--color-gray-light);
  border-radius: 0.5rem;
  background: var(--color-white);
  color: var(--color-black);
  font-family: "Inter Tight", sans-serif;
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
}
.planning-range_num:focus {
  border-color: var(--color-green);
}

.planning-range_bar {
  position: relative;
  flex: 1;
  height: 2.625rem;
}

.planning-range_track {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 0.375rem;
  border-radius: 0.25rem;
  left: 0;
  right: 0;
  background: var(--color-gray-light);
}

.planning-range_fill {
  display: none;
}

.planning-range_range {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 0.375rem;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.planning-range_range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-green);
  border: 2px solid var(--color-white);
  box-shadow: 0 1px 3px rgba(13, 18, 28, 0.2);
  cursor: pointer;
}
.planning-range_range::-moz-range-thumb {
  pointer-events: auto;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-green);
  cursor: pointer;
}

.planning-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.planning-check {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
}

.planning-check_input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.planning-check_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  border: 1px solid var(--color-gray-light);
  border-radius: 0.25rem;
  color: var(--color-white);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.planning-check_box svg {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
}

.planning-check_input:checked + .planning-check_box {
  border-color: var(--color-green);
  background: var(--color-green);
}
.planning-check_input:checked + .planning-check_box svg {
  opacity: 1;
}

.planning-check_name {
  color: var(--color-black);
  font-size: 0.875rem;
  line-height: 1.125rem;
}

.planning-filter_bottom {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.planning-filter_reset,
.planning-filter_submit {
  flex: 1;
}

.planning-filter_open {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 2rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 6.25rem;
  background: var(--color-gray-50);
  color: var(--color-black);
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.planning-filter_open svg {
  width: 1.5rem;
  height: 1.5rem;
}

.planning-overlay {
  display: none;
}

.planning-grid {
  grid-column-start: 4;
  grid-column-end: 13;
}

.planning-boxs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.planning-title {
  grid-column: 1/4;
}

.planning-cover {
  grid-column: 4/13;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.planning-num {
  color: var(--Gray-500);
  font-size: 1rem;
  font-weight: 400;
}
.planning-num span {
  color: var(--color-black);
  font-weight: 500;
}

.planning-sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.planning-sort_drop {
  position: relative;
}

.planning-sort_btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.875rem;
  padding: 0 1rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.5rem;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.planning-sort_btn_label {
  white-space: nowrap;
}

.planning-sort_arrow {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.planning-sort_list {
  position: absolute;
  z-index: 5;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.75rem;
  background: var(--color-white);
  box-shadow: 0 0.5rem 1.5rem rgba(13, 18, 28, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.25rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.planning-sort_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .planning-sort_item:hover {
    background: var(--color-gray-50);
  }
}

.planning-sort_check {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--color-green);
  opacity: 0;
}

.planning-sort_item.active {
  color: var(--color-black);
}
.planning-sort_item.active .planning-sort_check {
  opacity: 1;
}

.planning-sort_item.disabled {
  color: var(--color-gray-light);
  pointer-events: none;
}

.planning-sort_drop.active .planning-sort_btn {
  border-color: var(--color-green);
}
.planning-sort_drop.active .planning-sort_arrow {
  transform: rotate(180deg);
}
.planning-sort_drop.active .planning-sort_list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .planning-head {
    display: block;
    gap: 1.25rem;
  }
  .planning-title {
    margin-bottom: 1rem;
  }
  .planning-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .planning-cover {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }
  .planning-sort {
    width: 100%;
    justify-content: space-between;
  }
  .planning-filter_open {
    width: 100%;
  }
  .planning-num {
    order: 3;
    width: 100%;
  }
  .planning-filter_open {
    order: 1;
  }
  .planning-sort {
    order: 2;
  }
  .planning-sort_drop {
    width: 100%;
  }
  .planning-sort_btn {
    width: 100%;
    justify-content: space-between;
  }
  .planning-wrap {
    display: block;
  }
  .planning-grid {
    grid-column: auto;
  }
  .planning-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
  .planning-filter_open {
    display: flex;
  }
  .planning-overlay {
    display: block;
    position: fixed;
    z-index: 39;
    inset: 0;
    background: rgba(13, 18, 28, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .planning-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .planning-filter {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100vh;
    padding: 0;
    border-radius: 1.25rem 1.25rem 0 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .planning-filter.active {
    transform: translateY(0);
  }
  .planning-filter_head {
    display: flex;
  }
  .planning-filter_body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
  }
  .planning-filter_bottom {
    margin-top: 0;
    padding: 1rem;
    border-top: 1px solid var(--color-gray-light);
  }
}
@media (max-width: 768px) {
  .planning {
    padding: 4.5rem 0;
  }
  .planning2 {
    padding: 1.5rem 0 4.5rem 0;
  }
  .planning-top {
    margin-bottom: 1.5rem;
  }
  .planning-top .planning-a {
    display: none;
  }
  .planning-item_img {
    height: 50.67vw;
  }
  .planning-slider {
    width: calc(100% - 2rem);
    margin-left: 0;
  }
  .planning-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.5rem;
  }
  .planning-a {
    width: 100%;
  }
  .planning-boxs {
    grid-template-columns: 1fr;
  }
}
/*-planning*/
/*gallery*/
.gallery {
  padding: 6.25rem 0;
  background: var(--color-white);
  overflow: hidden;
}

.gallery-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.gallery-arrows {
  display: flex;
  gap: 1.25rem;
}

.gallery-slider {
  overflow: visible;
}

.gallery-slide {
  width: 43.06vw;
  height: 32.85vw;
}

.gallery-slide:nth-child(2n) {
  width: 22.22vw;
}

.gallery-slide_a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .gallery-slide_a:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(13, 18, 28, 0.08);
  }
}
.gallery-slide_a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7.6875rem;
  background: linear-gradient(to bottom, rgba(13, 18, 28, 0), rgba(13, 18, 28, 0.8));
  pointer-events: none;
}

.gallery-slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide_h {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 1.25rem;
  color: var(--color-white);
}

.gallery-bottom {
  display: none;
}

@media (max-width: 768px) {
  .gallery {
    padding: 4.5rem 0;
  }
  .gallery-top {
    margin-bottom: 1.5rem;
  }
  .gallery-arrows {
    display: none;
  }
  .gallery-slider {
    width: calc(100% - 2rem);
    margin-left: 0;
  }
  .gallery-slide {
    width: 100%;
    height: 56vw;
  }
  .gallery-slide:nth-child(2n) {
    width: 50vw;
  }
  .gallery-slide_h {
    padding: 1rem;
  }
  .gallery-bottom {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.5rem;
  }
}
/*-gallery*/
/*build*/
.build {
  position: relative;
  padding: 6.25rem 0;
  background: var(--Gray-100);
  overflow: hidden;
}

.build-bg1 {
  position: absolute;
  width: 13.4rem;
  bottom: -1%;
  left: 0.01%;
  z-index: 0;
  pointer-events: none;
  animation: anim1 4s ease-in-out infinite;
}
.build-bg1 img {
  width: 100%;
}

.build-bg2 {
  position: absolute;
  width: 7.5rem;
  bottom: -1%;
  right: 4.53%;
  z-index: 0;
  pointer-events: none;
  animation: anim1 4s ease-in-out infinite;
  animation-delay: -1s;
}
.build-bg2 img {
  width: 100%;
}

.build-h {
  position: relative;
  z-index: 1;
}

.build-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0.25rem;
  margin-top: 2.5rem;
  border-radius: 6.25rem;
  background: var(--color-white);
  overflow: hidden;
}
.build-tabs::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 52px;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.build-tabs:before {
  content: "";
  position: absolute;
  z-index: 2;
  right: 52px;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

.build-tabs_slider {
  flex: 1;
  padding: 0 0.5rem;
  overflow: hidden;
}
.build-tabs_slider .swiper-wrapper {
  align-items: center;
}

.build-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: 2.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2.5rem;
  background: transparent;
  color: var(--Gray-500);
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.build-tab:hover {
  color: var(--color-black);
}

.build-tab_active {
  background: var(--color-black);
  color: var(--color-white);
}
.build-tab_active:hover {
  color: var(--color-white);
}

.build-boxs {
  margin-top: 2rem;
}

.build-box {
  display: none;
}
.build-box.build-box_active {
  display: block;
}

.build-content {
  max-width: 43.25rem;
  margin-bottom: 2rem;
}

.build-slider {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.build-slide {
  position: relative;
  display: block;
  width: 33.33vw;
  height: 22.22vw;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--color-gray-light);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .build-slide:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(13, 18, 28, 0.08);
  }
}

.build-slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.build-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 1200px) {
  .build-slide {
    width: 24rem;
    height: 16rem;
  }
}
@media (max-width: 768px) {
  .build {
    padding: 4.5rem 0;
  }
  .build-tabs {
    margin-top: 1.5rem;
  }
  .build-boxs {
    margin-top: 1.25rem;
  }
  .build-content {
    margin-bottom: 1.25rem;
  }
  .build-slider {
    width: calc(100% - 2rem);
    margin-left: 0;
  }
  .build-slide {
    width: 100%;
    height: 56vw;
  }
  .build-controls {
    width: calc(100% + 2rem);
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .build-bg2 {
    display: none;
  }
}
/*-build*/
/*news*/
.news {
  padding: 6.25rem 0;
  background: var(--color-white);
  overflow: hidden;
}

.news2 {
  padding: 2.5rem 0 6.25rem 0;
  overflow: hidden;
}

.news3 {
  padding: 6.25rem 0;
  background: #F3F4F6;
  overflow: hidden;
}

.news-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.news-slider {
  width: 100%;
  overflow: visible;
}

.news-slide {
  height: auto;
}

.news-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--color-gray-200);
  border-radius: 1.25rem;
  background: var(--color-white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .news-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(13, 18, 28, 0.08);
  }
}

.news-item_img {
  width: 100%;
  height: 15.56vw;
  object-fit: cover;
}

.news-item_info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
}

.news-item_h {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item_date {
  color: var(--Gray-500);
  font-size: 1.125rem;
  line-height: normal;
}

.news-bottom {
  display: none;
}

.news-boxs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .news-item_img {
    height: 23.67vw;
  }
  .news-boxs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news {
    padding: 4.5rem 0;
  }
  .news2 {
    padding: 1.5rem 0 4.5rem 0;
  }
  .news3 {
    padding: 4.5rem 0;
  }
  .news-top {
    margin-bottom: 1.5rem;
  }
  .news-top .news-a {
    display: none;
  }
  .news-slider {
    width: calc(100% - 2rem);
    margin-left: 0;
  }
  .news-item_info {
    padding: 1rem;
  }
  .news-item_img {
    height: 48vw;
  }
  .news-item_date {
    font-size: 0.875rem;
  }
  .news-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 1.5rem;
  }
  .news-a {
    width: 100%;
  }
  .news-boxs {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*-news*/
/*developer*/
.developer {
  position: relative;
  padding: 6.25rem 0;
  background: var(--Gray-100);
  overflow: hidden;
}

.developer-bg1,
.developer-bg2,
.developer-bg3 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  transform-origin: bottom center;
  animation: anim1 4s ease-in-out infinite;
}
.developer-bg1 img,
.developer-bg2 img,
.developer-bg3 img {
  width: 100%;
}
.developer-bg1:hover,
.developer-bg2:hover,
.developer-bg3:hover {
  animation-play-state: paused;
}

.developer-bg1 {
  width: 9.25rem;
  bottom: -1%;
  right: 0;
}

.developer-bg2 {
  width: 12.5rem;
  bottom: -1%;
  left: 0;
  animation-duration: 5s;
  animation-delay: -1s;
}

.developer-bg3 {
  width: 8.6875rem;
  bottom: -1%;
  left: 11%;
  animation-duration: 3.5s;
  animation-delay: -2s;
}

.developer-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.developer-arrows {
  display: flex;
  gap: 1.25rem;
}

.developer-slider {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.developer-slide {
  position: relative;
  display: block;
  width: 43.06vw;
  height: 26.39vw;
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .developer-slide:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(13, 18, 28, 0.08);
  }
}
.developer-slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15.875rem;
  background: linear-gradient(to bottom, rgba(13, 18, 28, 0) 20.67%, rgba(13, 18, 28, 0.8) 72.11%);
  pointer-events: none;
}

.developer-slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.developer-slide_info {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
}

.developer-slide_logo {
  width: 6.1875rem;
  height: auto;
}

.developer-slide_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-white);
}
.developer-slide_row svg {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.developer-slide_h {
  color: var(--color-white);
}

.developer-bottom {
  display: none;
}

@media (max-width: 1200px) {
  .developer-slide {
    width: 30rem;
    height: 18rem;
  }
}
@media (max-width: 768px) {
  .developer {
    padding: 4.5rem 0;
  }
  .developer-top {
    margin-bottom: 1.5rem;
  }
  .developer-arrows {
    display: none;
  }
  .developer-slider {
    width: calc(100% - 2rem);
    margin-left: 0;
  }
  .developer-slide {
    width: 100%;
    height: 56vw;
  }
  .developer-slide_info {
    gap: 0.5rem;
    padding: 1rem;
  }
  .developer-slide_logo {
    width: 4rem;
  }
  .developer-slide_row svg {
    width: 1rem;
    height: 1rem;
  }
  .developer-bottom {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .developer-bg1,
  .developer-bg3 {
    display: none;
  }
}
/*-developer*/
/*project*/
.project {
  overflow: hidden;
}

.project-card {
  position: relative;
  display: block;
  width: 100%;
  height: 51.94vw;
  max-height: 51.9375rem;
  overflow: hidden;
  cursor: pointer;
}
.project-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(13, 18, 28, 0.5);
  pointer-events: none;
}

.project-card_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.5rem 0;
}

.project-h {
  color: var(--color-white);
}

.project-card_info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.project-card_logo {
  width: 13.5rem;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.project-card_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--color-white);
}
.project-card_row svg {
  width: 3.8rem;
  height: 3.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.project-card_h {
  color: var(--color-white);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.1;
}

@media (hover: hover) {
  .project-card:hover .project-card_row svg {
    transform: translate(0.25rem, -0.25rem);
  }
}
@media (max-width: 1200px) {
  .project-card_h {
    font-size: 2.5rem;
  }
  .project-card_row svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media (max-width: 768px) {
  .project-card {
    height: 120vw;
  }
  .project-wrap {
    padding: 1.5rem 0;
  }
  .project-card_logo {
    width: 5rem;
  }
  .project-card_h {
    font-size: 1.25rem;
  }
  .project-card_row svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
/*-project*/
/*company*/
.company {
  position: relative;
  padding: 2.5rem 0 6.25rem 0;
  overflow: hidden;
}

.company-bg1,
.company-bg2,
.company-bg3 {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  display: flex;
  transform-origin: bottom center;
  animation: anim1 4s ease-in-out infinite;
}
.company-bg1 img,
.company-bg2 img,
.company-bg3 img {
  width: 100%;
}

.company-bg2 {
  bottom: -2rem;
  left: 0;
  width: 15rem;
}

.company-bg1 {
  bottom: 0;
  left: 31%;
  width: 7rem;
  animation-duration: 5s;
  animation-delay: -1s;
}

.company-bg3 {
  bottom: 7rem;
  left: 44%;
  width: 3.5rem;
  animation-duration: 3.5s;
  animation-delay: -2s;
}

.company-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.company-h {
  width: 39rem;
  flex-shrink: 0;
}
.company-h span {
  display: inline;
}

.company-h_s1 {
  color: var(--color-green);
}

.company-box {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.company-text {
  max-width: 35.375rem;
}

.company-stats {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.company-stat {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.company-stat_top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.company-stat_label {
  color: var(--Gray-500);
  font-size: 0.875rem;
  font-weight: 400;
}

.company-stat_line {
  width: 1.5rem;
  height: 0.125rem;
  background: var(--color-green);
}

.company-stat_box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.company-stat_h {
  color: var(--Gray-800);
  line-height: 2rem;
}

.company-stat_p {
  color: var(--Gray-700);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.125rem;
}

.company-slider {
  margin-top: 6.25rem;
  overflow: visible;
}

.company-slide {
  width: 92.5vw;
  height: 57.3vw;
}

.company-slide_a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .company-slide_a:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(13, 18, 28, 0.08);
  }
}
.company-slide_a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7.6875rem;
  background: linear-gradient(to bottom, rgba(13, 18, 28, 0), rgba(13, 18, 28, 0.8));
  pointer-events: none;
}

.company-slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-slide_h {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 1.25rem;
  color: var(--color-white);
}

.company-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.company-pagination {
  display: none;
}

@media (max-width: 1200px) {
  .company {
    padding: 2.5rem 0 5rem 0;
  }
  .company-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .company-h {
    width: 100%;
  }
  .company-text {
    max-width: none;
  }
  .company-slider {
    margin-top: 5rem;
  }
}
@media (max-width: 768px) {
  .company {
    padding: 1.5rem 0 4.5rem 0;
  }
  .company-stats {
    flex-direction: column;
  }
  .company-slider {
    margin-top: 3rem;
  }
  .company-slide {
    width: 86.4vw;
    height: 82vw;
  }
  .company-slide_h {
    padding: 1rem;
  }
  .company-pagination {
    display: flex;
  }
  .company-bg1,
  .company-bg3 {
    display: none;
  }
}
/*-company*/
/*plus*/
.plus {
  padding: 5rem 0;
  background: var(--Gray-100);
}

.plus-wrap {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}

.plus-item {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  flex: 1;
}

.plus-icon {
  width: 4rem;
  height: 4rem;
}
.plus-icon img {
  width: 100%;
  height: 100%;
}

.plus-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plus-h {
  color: var(--Gray-650);
}

.plus-p {
  color: var(--Gray-500);
}

@media (max-width: 1200px) {
  .plus-wrap {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .plus {
    padding: 3rem 0;
  }
  .plus-wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
/*-plus*/
/*info*/
.info {
  padding: 6.25rem 0;
}

.info-wrap {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.info-box {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 39rem;
  flex-shrink: 0;
}

.info-cover {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-h_s1 {
  display: inline;
  color: var(--color-green);
}

.info-p {
  line-height: 1.25rem;
}

.info-a {
  align-self: flex-start;
}

.info-img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.info-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .info {
    padding: 5rem 0;
  }
}
@media (max-width: 768px) {
  .info {
    padding: 4.5rem 0;
  }
  .info-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
  .info-box {
    width: 100%;
    gap: 1.5rem;
  }
  .info-a {
    align-self: stretch;
    width: 100%;
  }
  .info-img {
    height: 78.4vw;
  }
}
/*-info*/
/*plan*/
.plan {
  overflow: hidden;
}

.plan-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.plan-wrap:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  width: 1000px;
  background: var(--Gray-100);
}
.plan-wrap:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 1000px;
  background: var(--Gray-100);
}

.plan-filter {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 2.5rem 2.5rem 0;
  background: var(--Gray-100);
}

.plan-view {
  width: 45.125rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-white);
}

.plan-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 5rem 2.5rem 2.5rem;
  background: var(--Gray-100);
}

.plan-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.plan-h {
  color: var(--Gray-700);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.plan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.plan-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.5rem;
  background: var(--color-white);
  color: var(--color-gray);
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .plan-tag:hover {
    border-color: var(--color-black);
  }
}

.plan-tag_active {
  border-color: var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
}

.plan-tag_off {
  border-color: transparent;
  background: var(--color-gray-50);
  color: var(--Gray-400);
  cursor: default;
}
@media (hover: hover) {
  .plan-tag_off:hover {
    border-color: transparent;
  }
}

.plan-legend {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 0.5rem;
  background: var(--color-white);
}

.plan-legend_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.plan-legend_l {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.25rem;
}

.plan-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.plan-dot_free {
  background: var(--color-success);
}

.plan-dot_reserve {
  background: var(--color-warning);
}

.plan-dot_sold {
  background: var(--Gray-400);
}

.plan-legend_n {
  color: var(--Gray-500);
  font-size: 1rem;
  line-height: 1.25rem;
}

.plan-title {
  color: var(--Gray-700);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-align: center;
}

.plan-floor {
  position: relative;
  width: 100%;
  height: 27.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-floor img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.plan-floor svg {
  max-width: 100%;
  max-height: 100%;
}
.plan-floor svg path[fill="#17B26A"],
.plan-floor svg path[fill="#FDB022"],
.plan-floor svg path[fill="#9DA4AE"] {
  cursor: pointer;
  transition: fill-opacity 0.2s ease;
}
@media (hover: hover) {
  .plan-floor svg path[fill="#17B26A"]:hover,
  .plan-floor svg path[fill="#FDB022"]:hover,
  .plan-floor svg path[fill="#9DA4AE"]:hover {
    fill-opacity: 0.45;
  }
}
.plan-floor svg path[fill="#17B26A"].active,
.plan-floor svg path[fill="#FDB022"].active,
.plan-floor svg path[fill="#9DA4AE"].active {
  fill-opacity: 0.55;
}

.plan-compass {
  width: 6.1875rem;
  height: 5.375rem;
}
.plan-compass svg {
  width: 100%;
  height: 100%;
}

.plan-map {
  width: 100%;
  aspect-ratio: 239/135;
  border-radius: 0.5rem;
  overflow: hidden;
}
.plan-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 2.875rem;
  padding: 0 2rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 6.25rem;
  background: var(--color-gray-50);
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.2s ease;
}
.plan-action img {
  width: 1.5rem;
  height: 1.5rem;
}
@media (hover: hover) {
  .plan-action:hover {
    border-color: var(--color-black);
  }
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: var(--color-white);
}

.plan-card_top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-card_icon {
  display: flex;
  width: 1.75rem;
  height: 1.75rem;
}
.plan-card_icon svg {
  width: 100%;
  height: 100%;
}

.plan-card_text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.plan-card_h {
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.plan-card_p {
  color: var(--color-gray);
  font-size: 0.875rem;
  line-height: 1.125rem;
}

.plan-card_a {
  width: 100%;
}

.plan-mobtop {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
  width: 100%;
}

.plan-filter_open {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.5rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 6.25rem;
  background: var(--color-gray-50);
  color: var(--color-black);
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.plan-filter_open svg {
  width: 1.5rem;
  height: 1.5rem;
}

.plan-filter_head {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-bottom: 1px solid var(--color-gray-light);
}

.plan-filter_title {
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 500;
}

.plan-filter_close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: var(--color-black);
  cursor: pointer;
}
.plan-filter_close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.plan-overlay {
  display: none;
}

.plan-board {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  width: 17rem;
  max-width: calc(100vw - 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--color-white);
  box-shadow: 0 0.5rem 1.5rem rgba(13, 18, 28, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.plan-board.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.plan-board_close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  cursor: pointer;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .plan-board_close:hover {
    color: var(--color-green);
  }
}
.plan-board_close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.plan-board_badge {
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(23, 178, 106, 0.12);
  color: var(--color-success);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.125rem;
}

.plan-board_h {
  padding-right: 1.5rem;
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.plan-board_specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.25rem;
}

.plan-board_spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--Gray-500);
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.plan-board_spec span:last-child {
  color: var(--color-black);
  font-weight: 500;
  text-align: right;
}

.plan-board_a {
  width: 100%;
  margin-top: 0.25rem;
}

@media (max-width: 1200px) {
  .plan-wrap {
    flex-direction: column;
  }
  .plan-wrap:after {
    display: none;
  }
  .plan-wrap:before {
    display: none;
  }
  .plan-view {
    position: relative;
    left: -1.25rem;
    width: calc(100% + 2.5rem);
    padding: 2rem 1.25rem;
  }
  .plan-side {
    padding: 2rem 1.25rem;
  }
  .plan-mobtop {
    order: 0;
    justify-content: space-between;
  }
  .plan-filter_open {
    display: flex;
  }
  .plan-filter_head {
    display: flex;
  }
  .plan-filter {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 90vh;
    padding: 0;
    border-radius: 1.25rem 1.25rem 0 0;
    background: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
  }
  .plan-filter.active {
    transform: translateY(0);
  }
  .plan-filter > .plan-group {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .plan-filter > .plan-group:first-of-type {
    padding-top: 1.5rem;
  }
  .plan-filter > .plan-group:last-of-type {
    padding-bottom: 1.5rem;
  }
  .plan-board {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    border-radius: 1.25rem 1.25rem 0 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    opacity: 1;
    visibility: visible;
  }
  .plan-board.active {
    transform: translateY(0);
  }
  .plan-overlay {
    display: block;
    position: fixed;
    z-index: 39;
    inset: 0;
    background: rgba(13, 18, 28, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .plan-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 768px) {
  .plan-filter {
    padding: 1.5rem 1rem;
  }
  .plan-view {
    left: -1rem;
    width: calc(100% + 2rem);
    padding: 1.5rem 1rem;
  }
  .plan-floor {
    height: 17.875rem;
  }
  .plan-side {
    padding: 1.5rem 1rem;
  }
}
/*-plan*/
/*contact*/
.contact {
  padding: 2.5rem 0 6.25rem 0;
}

.contact-wrap {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
}

.contact-info_item {
  display: flex;
  gap: 0.5rem;
}

.contact-info_icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.contact-info_box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info_h {
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.625rem;
}

.contact-info_p {
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .contact-info_p:hover {
    color: var(--color-green);
  }
}

.contact-info_soc {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.contact-info_soc a {
  display: flex;
  transition: transform 0.2s ease;
}
.contact-info_soc a img {
  width: 1.5rem;
  height: 1.5rem;
}
@media (hover: hover) {
  .contact-info_soc a:hover {
    transform: scale(1.1);
  }
}

.contact-map {
  position: relative;
  flex: 1 0 0;
  min-width: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.contact-map_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 14.9375rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: var(--color-white);
}

.contact-card_top {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact-card_head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card_icon {
  width: 1.75rem;
  height: 1.75rem;
}

.contact-card_h {
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.contact-card_p {
  color: var(--color-gray);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.125rem;
}

.contact-card_a {
  width: 100%;
}

.contact-routes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
}

.contact-routes_h {
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.625rem;
}

.contact-route {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-route_h {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.contact-route_list {
  display: flex;
  flex-direction: column;
}

.contact-route_item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
}
.contact-route_item img {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.contact-route_line {
  width: 1rem;
  height: 1.5rem;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .contact-wrap {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-map {
    width: 100%;
    flex: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: visible;
    border-radius: 0;
  }
  .contact-map_img {
    height: 25rem;
    border-radius: 1rem;
  }
  .contact-card {
    position: static;
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 1rem;
  }
  .contact-card_top {
    gap: 0.5rem;
  }
  .contact-card_head {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 1.5rem 0 4.5rem 0;
  }
  .contact-map_img {
    height: 21rem;
  }
  .contact-routes_h {
    font-size: 1.125rem;
  }
}
/*-contact*/
/*doc*/
.doc {
  padding: 2.5rem 0 6.25rem 0;
  overflow: hidden;
}

.doc-slider {
  overflow: visible;
}

.doc-slide {
  width: 22.64vw;
  height: 32vw;
}

.doc-slide_a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gray-200);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .doc-slide_a:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(13, 18, 28, 0.08);
  }
}
.doc-slide_a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7.6875rem;
  background: linear-gradient(to bottom, rgba(13, 18, 28, 0), rgba(13, 18, 28, 0.8));
  pointer-events: none;
}

.doc-slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-slide_h {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 1.25rem;
  color: var(--color-white);
}

.doc-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .doc {
    padding: 1.5rem 0 4.5rem 0;
  }
  .doc-slider {
    width: calc(100% - 2rem);
    margin: 0;
  }
  .doc-slide {
    width: 100%;
    height: 120vw;
  }
  .doc-slide_h {
    padding: 1rem;
  }
  .doc-bottom {
    margin-top: 1.5rem;
  }
}
/*-doc*/
/*own*/
.own {
  padding: 2.5rem 0 6.25rem 0;
}

.own-wrap {
  max-width: 53rem;
  margin: auto;
}

.own-date {
  color: #4D5761;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.125rem;
  margin-bottom: 1.7rem;
}

.own-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  overflow: hidden;
  margin: 2.5rem 0;
}
.own-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .own {
    padding: 1.5rem 0 4.5rem 0;
  }
  .own-img {
    margin: 1.5rem 0;
  }
}
/*-own*/
/*studio*/
.studio {
  overflow: hidden;
}

.studio-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.studio-wrap:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  width: 1000px;
  background: #FFF;
}
.studio-wrap:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 1000px;
  background: var(--Gray-100);
}

.studio-view {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--color-white);
}

.studio-tabs {
  display: flex;
  align-items: center;
  max-width: 100%;
  padding: 0.25rem;
  border-radius: 6.25rem;
  background: var(--Gray-100);
}

.studio-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  border-radius: 2.5rem;
  background: transparent;
  color: var(--Gray-500);
  font-family: "Inter Tight", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease;
}

.studio-tab_active {
  border-color: var(--color-gray-200);
  background: var(--color-light);
  color: var(--color-black);
}

.studio-pane {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.studio-pane_active {
  display: flex;
}

.studio-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 48.6875rem;
  aspect-ratio: 779/440;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
}
.studio-plan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-slider {
  width: 100%;
  max-width: 48.6875rem;
  aspect-ratio: 779/440;
}

.studio-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-slide_a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.studio-slide_a img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.studio-gallery {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.studio-thumbs {
  width: 16.75rem;
  max-width: 100%;
}

.studio-thumb {
  width: 5rem;
  height: 5rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 0.5rem;
  background: var(--color-white);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.studio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-thumb.swiper-slide-thumb-active {
  border-color: var(--color-green);
}

.studio-info {
  width: 31.3125rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--Gray-100);
}

.studio-info_head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.studio-h {
  color: var(--color-black);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2rem;
}

.studio-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(23, 178, 106, 0.12);
  color: var(--color-success);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.studio-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: var(--color-white);
}

.studio-price {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.studio-price_top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.studio-price_now {
  color: var(--color-black);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2rem;
}

.studio-price_old {
  color: var(--Gray-500);
  font-size: 1rem;
  line-height: 1.25rem;
  text-decoration: line-through;
}

.studio-price_m {
  color: var(--Gray-500);
  font-size: 1rem;
  line-height: 1.25rem;
}

.studio-book {
  width: 100%;
}

.studio-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.studio-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 2.875rem;
  padding: 0 2rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 6.25rem;
  background: var(--color-gray-50);
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.2s ease;
}
.studio-contact img {
  width: 1.5rem;
  height: 1.5rem;
}
@media (hover: hover) {
  .studio-contact:hover {
    border-color: var(--color-black);
  }
}

.studio-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.studio-spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.studio-spec_l {
  color: var(--Gray-500);
  font-size: 1rem;
  line-height: 1.25rem;
}

.studio-spec_v {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  text-align: right;
}

@media (max-width: 1200px) {
  .studio-wrap {
    left: -1.25rem;
    width: calc(100% + 2.5rem);
    flex-direction: column;
  }
  .studio-wrap:after {
    display: none;
  }
  .studio-wrap:before {
    display: none;
  }
  .studio-view {
    padding: 2rem 1.25rem;
  }
  .studio-info {
    width: 100%;
    padding: 2rem 1.25rem;
  }
}
@media (max-width: 768px) {
  .studio-view {
    gap: 1.5rem;
    padding: 1rem;
  }
  .studio-tabs {
    align-self: stretch;
    overflow-x: auto;
  }
  .studio-tab {
    flex: 1 0 auto;
    padding: 0 1rem;
  }
  .studio-slider {
    aspect-ratio: 343/414;
  }
  .studio-plan {
    aspect-ratio: auto;
  }
  .studio-plan img {
    height: auto;
    object-fit: contain;
  }
  .studio-gallery {
    gap: 0.75rem;
    width: 100%;
  }
  .studio-thumbs {
    flex: 1;
    width: auto;
  }
  .studio-prev,
  .studio-next {
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
  }
  .studio-info {
    padding: 1rem;
  }
}
/*-studio*/
/*mistake*/
.mistake {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 6.25rem;
}

.mistake-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.mistake-bg img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: bottom center;
  animation: anim1 6s ease-in-out infinite;
}

.mistake-bg1 {
  left: 0;
  bottom: 0;
  width: 18.875rem;
}

.mistake-bg2 {
  right: 0;
  bottom: 0;
  width: 16.625rem;
}
.mistake-bg2 img {
  animation-duration: 7s;
  animation-delay: -1.5s;
}

.mistake-bg3 {
  right: 13.1875rem;
  bottom: 0;
  width: 9.375rem;
}
.mistake-bg3 img {
  animation-duration: 5s;
  animation-delay: -3s;
}

.mistake-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.mistake-img {
  width: 37.75rem;
  max-width: 100%;
}
.mistake-img img {
  display: block;
  width: 100%;
  height: auto;
}

.mistake-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mistake-p {
  color: var(--Gray-700);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
}

.mistake-btns {
  display: flex;
  gap: 0.75rem;
  width: 29.5rem;
  max-width: 100%;
}
.mistake-btns a {
  flex: 1 0 0;
}

@media (max-width: 1200px) {
  .mistake {
    padding: 8rem 0 5rem;
  }
  .mistake-bg1 {
    width: 14rem;
  }
  .mistake-bg2 {
    width: 12rem;
  }
  .mistake-bg3 {
    width: 7rem;
    right: 9.5rem;
  }
}
@media (max-width: 768px) {
  .mistake {
    padding: 1.5rem 0 4.5rem;
  }
  .mistake-wrap {
    gap: 2rem;
  }
  .mistake-p {
    font-size: 1rem;
  }
  .mistake-btns {
    width: 100%;
  }
  .mistake-bg1,
  .mistake-bg2,
  .mistake-bg3 {
    display: none;
  }
}
/*-mistake*/
/*police*/
.police {
  padding: 2.5rem 0 6.25rem 0;
}

.police-wrap {
  max-width: 53rem;
  margin: auto;
}
.police-wrap .section-h {
  text-align: center;
}

@media (max-width: 768px) {
  .police {
    padding: 1.5rem 0 4.5rem 0;
  }
  .police-wrap .section-h {
    text-align: left;
  }
}
/*-police*/
/*apartment-single*/
.apt-single {
  padding: 2.5rem 0 4rem;
}

.apt-single_wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.apt-single_media {
  position: sticky;
  top: 6rem;
}

.apt-single_img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  background: var(--color-white);
  padding: 1rem;
  border: 1px solid var(--color-gray-200);
}

.apt-single_img_empty {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  color: var(--Gray-500);
  font-size: 1rem;
}

.apt-single_info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.apt-single_badge {
  align-self: flex-start;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.125rem;
}

.apt-single_badge_free {
  background: rgba(23, 178, 106, 0.12);
  color: var(--color-success);
}

.apt-single_badge_reserve {
  background: rgba(253, 176, 34, 0.16);
  color: var(--color-warning);
}

.apt-single_badge_sold {
  background: rgba(157, 164, 174, 0.18);
  color: var(--Gray-500);
}

.apt-single_h {
  margin: 0;
}

.apt-single_specs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
}
.apt-single_specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--Gray-500);
  font-size: 0.95rem;
}
.apt-single_specs li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.apt-single_specs li span:last-child {
  color: var(--color-black);
  font-weight: 500;
  text-align: right;
}

.apt-single_price {
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--color-black);
  color: var(--color-white);
}

.apt-single_price_val {
  font-size: 1.5rem;
  font-weight: 600;
}

.apt-single_actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.apt-single_btn,
.apt-single_pdf {
  width: 100%;
  justify-content: center;
}

.apt-single_empty {
  padding: 3rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 1200px) {
  .apt-single_wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .apt-single_media {
    position: static;
  }
}
@media (max-width: 768px) {
  .apt-single {
    padding: 1.5rem 0 2.5rem;
  }
}
/*-apartment-single*/