

/* Start:/local/templates/svdom_new/css/preloader.css?17864456483421*/
#sd-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 26px;
    transition: opacity 0.55s ease;
}

#sd-preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 50% at 50% 50%, rgba(15, 168, 95, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

#sd-preloader.sd-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.55s ease, visibility 0s linear 0.55s;
}

.sd-preloader-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 90px;
}

.sd-preloader-logo {
    position: relative;
    width: 220px;
    height: auto;
    display: block;
    animation: sd-logo-breath 2.4s ease-in-out infinite;
    z-index: 2;
}

.sd-preloader-pulse {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 168, 95, 0.18) 0%, rgba(15, 168, 95, 0) 60%);
    animation: sd-pulse 2.6s ease-in-out infinite;
    z-index: 1;
}

@keyframes sd-logo-breath {
    0%, 100% { opacity: 0.55; transform: scale(0.985); }
    50%      { opacity: 1;    transform: scale(1); }
}

@keyframes sd-pulse {
    0%   { transform: scale(0.6); opacity: 0; }
    50%  { opacity: 1; }
    100% { transform: scale(1.15); opacity: 0; }
}

.sd-preloader-progress {
    position: relative;
    width: 220px;
    height: 3px;
    background: #EEF3ED;
    border-radius: 2px;
    overflow: hidden;
    z-index: 2;
}

.sd-preloader-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, rgba(14, 97, 49, 0) 0%, #0FA85F 50%, #0E6131 100%);
    border-radius: 2px;
    transform: translateX(-100%);
    will-change: transform;
    animation: sd-progress 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes sd-progress {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(285.71%); }
}

.sd-preloader-text {
    font-family: 'Inter', 'Geologica', sans-serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    color: #9a9a9a;
    text-transform: uppercase;
    z-index: 2;
}

.sd-preloader-text span {
    display: inline-block;
    animation: sd-dot 1.4s ease-in-out infinite;
}

.sd-preloader-text span:nth-child(2) { animation-delay: 0.15s; }
.sd-preloader-text span:nth-child(3) { animation-delay: 0.3s; }

@keyframes sd-dot {
    0%, 100% { opacity: 0.25; transform: translateY(0); }
    50%      { opacity: 1;    transform: translateY(-2px); }
}

body.sd-loading {
    overflow: hidden;
}

img.sd-img-loading {
    background: #edf3ec;
    animation: sd-shimmer 1.3s ease-in-out infinite;
    color: transparent;
}

img.sd-img-loaded {
    animation: sd-fadein 0.45s ease both;
}

img.sd-img-error {
    background: #f2f6f1;
}

@keyframes sd-shimmer {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.55; }
}

@keyframes sd-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (max-width: 768px) {
    .sd-preloader-stage,
    .sd-preloader-logo,
    .sd-preloader-progress {
        width: 180px;
    }
    .sd-preloader-pulse {
        width: 240px;
        height: 240px;
    }
}

/* End */


/* Start:/local/templates/svdom_new/css/slick.css?17830685101776*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* End */


/* Start:/local/templates/svdom_new/css/slick-theme.css?17859218982447*/
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list {
  background: #fff;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;

  position: absolute;
  top: 50%;

  display: block;

  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  cursor: pointer;

  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;

  opacity: 0.75;
  color: white;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}
.slick-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  opacity: 0.25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* End */


/* Start:/local/templates/svdom_new/css/aos.css?178306851028743*/
[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
    transition-duration: 50ms
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
    transition-delay: 50ms
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
    transition-duration: .1s
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: .1s
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
    transition-duration: .15s
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
    transition-delay: .15s
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
    transition-duration: .2s
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: .2s
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
    transition-duration: .25s
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
    transition-delay: .25s
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
    transition-duration: .3s
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
    transition-delay: .3s
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
    transition-duration: .35s
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
    transition-delay: .35s
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
    transition-duration: .4s
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: .4s
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
    transition-duration: .45s
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
    transition-delay: .45s
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
    transition-duration: .5s
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
    transition-delay: .5s
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
    transition-duration: .55s
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
    transition-delay: .55s
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
    transition-duration: .6s
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
    transition-delay: .6s
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
    transition-duration: .65s
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
    transition-delay: .65s
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
    transition-duration: .7s
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
    transition-delay: .7s
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
    transition-duration: .75s
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
    transition-delay: .75s
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
    transition-duration: .8s
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
    transition-delay: .8s
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
    transition-duration: .85s
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
    transition-delay: .85s
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
    transition-duration: .9s
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
    transition-delay: .9s
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
    transition-duration: .95s
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
    transition-delay: .95s
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1s
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
    transition-delay: 1s
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
    transition-duration: 1.05s
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
    transition-delay: 1.05s
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
    transition-duration: 1.1s
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
    transition-delay: 1.1s
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
    transition-duration: 1.15s
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
    transition-delay: 1.15s
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
    transition-duration: 1.2s
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
    transition-delay: 1.2s
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
    transition-duration: 1.25s
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
    transition-delay: 1.25s
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
    transition-duration: 1.3s
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
    transition-delay: 1.3s
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
    transition-duration: 1.35s
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
    transition-delay: 1.35s
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
    transition-duration: 1.4s
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
    transition-delay: 1.4s
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
    transition-duration: 1.45s
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
    transition-delay: 1.45s
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
    transition-duration: 1.5s
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
    transition-delay: 1.5s
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
    transition-duration: 1.55s
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
    transition-delay: 1.55s
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
    transition-duration: 1.6s
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
    transition-delay: 1.6s
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
    transition-duration: 1.65s
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
    transition-delay: 1.65s
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
    transition-duration: 1.7s
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
    transition-delay: 1.7s
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
    transition-duration: 1.75s
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
    transition-delay: 1.75s
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
    transition-duration: 1.8s
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
    transition-delay: 1.8s
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
    transition-duration: 1.85s
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
    transition-delay: 1.85s
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
    transition-duration: 1.9s
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
    transition-delay: 1.9s
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
    transition-duration: 1.95s
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
    transition-delay: 1.95s
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
    transition-duration: 2s
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
    transition-delay: 2s
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
    transition-duration: 2.05s
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
    transition-delay: 2.05s
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
    transition-duration: 2.1s
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
    transition-delay: 2.1s
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
    transition-duration: 2.15s
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
    transition-delay: 2.15s
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
    transition-duration: 2.2s
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
    transition-delay: 2.2s
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
    transition-duration: 2.25s
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
    transition-delay: 2.25s
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
    transition-duration: 2.3s
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
    transition-delay: 2.3s
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
    transition-duration: 2.35s
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
    transition-delay: 2.35s
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
    transition-duration: 2.4s
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
    transition-delay: 2.4s
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
    transition-duration: 2.45s
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
    transition-delay: 2.45s
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
    transition-duration: 2.5s
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
    transition-delay: 2.5s
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
    transition-duration: 2.55s
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
    transition-delay: 2.55s
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
    transition-duration: 2.6s
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
    transition-delay: 2.6s
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
    transition-duration: 2.65s
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
    transition-delay: 2.65s
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
    transition-duration: 2.7s
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
    transition-delay: 2.7s
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
    transition-duration: 2.75s
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
    transition-delay: 2.75s
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
    transition-duration: 2.8s
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
    transition-delay: 2.8s
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
    transition-duration: 2.85s
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
    transition-delay: 2.85s
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
    transition-duration: 2.9s
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
    transition-delay: 2.9s
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
    transition-duration: 2.95s
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
    transition-delay: 2.95s
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
    transition-duration: 3s
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
    transition-delay: 0
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
    transition-delay: 3s
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .25, .75, .75)
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
    transition-timing-function: ease
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
    transition-timing-function: ease-in
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
    transition-timing-function: ease-out
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
    transition-timing-function: ease-in-out
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
    transition-timing-function: cubic-bezier(.6, -.28, .735, .045)
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.275)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
    transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55)
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.47, 0, .745, .715)
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.39, .575, .565, 1)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
    transition-timing-function: cubic-bezier(.445, .05, .55, .95)
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.55, .085, .68, .53)
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.25, .46, .45, .94)
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
    transition-timing-function: cubic-bezier(.455, .03, .515, .955)
}

[data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform
}

[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0)
}

[data-aos=fade-up] {
    transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
    transform: translate3d(0, -100px, 0)
}

[data-aos=fade-right] {
    transform: translate3d(-100px, 0, 0)
}

[data-aos=fade-left] {
    transform: translate3d(100px, 0, 0)
}

[data-aos=fade-up-right] {
    transform: translate3d(-100px, 100px, 0)
}

[data-aos=fade-up-left] {
    transform: translate3d(100px, 100px, 0)
}

[data-aos=fade-down-right] {
    transform: translate3d(-100px, -100px, 0)
}

[data-aos=fade-down-left] {
    transform: translate3d(100px, -100px, 0)
}

[data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, transform
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1)
}

[data-aos=zoom-in] {
    transform: scale(.6)
}

[data-aos=zoom-in-up] {
    transform: translate3d(0, 100px, 0) scale(.6)
}

[data-aos=zoom-in-down] {
    transform: translate3d(0, -100px, 0) scale(.6)
}

[data-aos=zoom-in-right] {
    transform: translate3d(-100px, 0, 0) scale(.6)
}

[data-aos=zoom-in-left] {
    transform: translate3d(100px, 0, 0) scale(.6)
}

[data-aos=zoom-out] {
    transform: scale(1.2)
}

[data-aos=zoom-out-up] {
    transform: translate3d(0, 100px, 0) scale(1.2)
}

[data-aos=zoom-out-down] {
    transform: translate3d(0, -100px, 0) scale(1.2)
}

[data-aos=zoom-out-right] {
    transform: translate3d(-100px, 0, 0) scale(1.2)
}

[data-aos=zoom-out-left] {
    transform: translate3d(100px, 0, 0) scale(1.2)
}

[data-aos^=slide][data-aos^=slide] {
    transition-property: transform
}

[data-aos^=slide][data-aos^=slide].aos-animate {
    transform: translateZ(0)
}

[data-aos=slide-up] {
    transform: translate3d(0, 100%, 0)
}

[data-aos=slide-down] {
    transform: translate3d(0, -100%, 0)
}

[data-aos=slide-right] {
    transform: translate3d(-100%, 0, 0)
}

[data-aos=slide-left] {
    transform: translate3d(100%, 0, 0)
}

[data-aos^=flip][data-aos^=flip] {
    backface-visibility: hidden;
    transition-property: transform
}

[data-aos=flip-left] {
    transform: perspective(2500px) rotateY(-100deg)
}

[data-aos=flip-left].aos-animate {
    transform: perspective(2500px) rotateY(0)
}

[data-aos=flip-right] {
    transform: perspective(2500px) rotateY(100deg)
}

[data-aos=flip-right].aos-animate {
    transform: perspective(2500px) rotateY(0)
}

[data-aos=flip-up] {
    transform: perspective(2500px) rotateX(-100deg)
}

[data-aos=flip-up].aos-animate {
    transform: perspective(2500px) rotateX(0)
}

[data-aos=flip-down] {
    transform: perspective(2500px) rotateX(100deg)
}

[data-aos=flip-down].aos-animate {
    transform: perspective(2500px) rotateX(0)
}

/* End */


/* Start:/local/templates/svdom_new/css/reset-base.css?17830685109550*/
body,
html {
    font-family: "TikTok Sans", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "TikTok Sans", sans-serif;
    color: #4f4f4f;
}

input,
textarea {
    border: none;
}

input:focus,
textarea:focus {
    outline: none;
}

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

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

button {
    cursor: pointer;
    border: none;
    transition: 0.3s;
    background: none;
}

button:focus {
    outline: none;
    border: none;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}


a {
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
}

.wrapper {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
}

.title-wrap {
    padding-bottom: 30px;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .title-wrap {
        margin-bottom: 20px;
        padding-bottom: 25px;
    }
}

.title-wrap .main-title {
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

@media (max-width: 1024px) {
    .title-wrap .main-title {
        text-align: center;
        font-size: 24px;
    }
}

.main-title {
    font-size: 48px;
    color: #000;
}

@media (max-width: 1200px) {
    .main-title {
        font-size: 28px;
    }
}

.green-btn {
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 13px 20px;
    background: #0e6131;
    color: white;
}

.green-btn:hover {
    background: #008b3b;
}

.white-btn {
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 13px 20px;
    background: white;
    color: #141414;
}

.grey-btn {
    border-radius: 100px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 13px 20px;
    background: #f4f4f4;
    color: #4f4f4f;
    cursor: pointer;
}

.grey-btn:hover {
    color: #141414;
}

.red-btn {
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px 20px;
    background: #ee2929;
    color: white;
}

.red-btn:hover {
    background: #f14f4f;
}

@media (max-width: 767px) {
    .red-btn {
        padding: 12px 20px;
    }
}

.select-wrap {
    position: relative;
    height: 50px;
    min-width: 200px;
    border-radius: 50px;
    background: white;
}

.select-wrap.border {
    border: 1px solid #e4e4e4;
    min-width: auto;
}

@media (max-width: 767px) {
    .select-wrap {
        height: 44px;
    }
}

.select-wrap:hover .select2-selection__arrow b {
    background: url('/local/templates/svdom_new/css/img/arrow-green.svg') no-repeat center center !important;
}

.select-wrap:hover .select2-container .select2-selection--single .select2-selection__rendered {
    color: #008b3b;
}

.select-wrap:hover.border {
    border-color: #cecece;
}

.select-wrap:hover.border .select2-selection__rendered {
    color: #141414 !important;
}

.select-wrap select {
    display: none;
}

.select-wrap .select2 {
    position: relative;
    width: 100% !important;
    height: 100%;
}

.select-wrap .select2 .selection {
    width: 100%;
}

.select-wrap .select2-container--default .select2-selection--single {
    background-color: transparent;
    text-align: left;
    border: none;
    padding: 0 20px;
    padding-left: 0;
    background: #fff;
    height: 100%;
    border-radius: 50px;
}

.select-wrap .select2-container--default .select2-selection--single:focus {
    outline: none;
}

.select-wrap .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    padding: 10px 15px;
    line-height: 30px;
    height: 50px;
    color: #4f4f4f;
}

@media (max-width: 767px) {
    .select-wrap .select2-container .select2-selection--single .select2-selection__rendered {
        font-size: 14px;
        height: 44px;
        line-height: 24px;
    }
}

.select-wrap .select2-selection__arrow {
    width: 6px !important;
    height: 7px !important;
    top: 50% !important;
    right: 15px !important;
    transform: translateY(-50%);
    z-index: 1 !important;
    background-color: transparent;
}

.select-wrap .select2-selection__arrow b {
    background: url('/local/templates/svdom_new/css/img/arrow.svg') no-repeat center center;
    width: 6px !important;
    height: 7px !important;
    border: none !important;
    transition: 0.2s;
}

.select-wrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(180deg);
}

.select-wrap.style2 {
    min-width: auto;
    height: auto;
}

.select-wrap.style2 .select2-selection__rendered {
    padding: 0 !important;
    padding-right: 20px !important;
    color: #000 !important;
    height: auto !important;
    line-height: inherit !important;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .select-wrap.style2 .select2-selection__rendered {
        font-size: 16px !important;
    }
}

.select-wrap.style2 .select2-selection--single {
    padding-right: 0 !important;
}

.select-wrap.style2 .select2-selection__arrow {
    right: 5px !important;
}

.select-wrap.style2 .select2-selection__arrow b {
    background: url('/local/templates/svdom_new/css/img/arrow-black.svg') no-repeat center center;
    width: 6px !important;
    height: 7px !important;
    border: none !important;
    transition: 0.2s;
}

.select-wrap.style2:hover .select2-selection__rendered {
    color: #008b3b !important;
}

.select2-dropdown {
    border: none !important;
    font-size: 16px !important;
}

@media (max-width: 767px) {
    .select2-dropdown {
        font-size: 14px !important;
    }
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #4f4f4f;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: white;
    color: #4f4f4f;
    font-size: 16px !important;
    font-weight: 400;
    transition: 0s;
}

@media (max-width: 767px) {
    .select2-container--default .select2-results__option[aria-selected=true] {
        font-size: 14px !important;
    }
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    font-size: 16px;
    background: white;
    color: #008b3b;
    font-weight: 400;
    transition: 0s;
}

@media (max-width: 767px) {
    .select2-container--default .select2-results__option--highlighted[aria-selected] {
        font-size: 14px;
    }
}

.select2-search--dropdown {
    padding: 0;
}

.select2-container--open .select2-dropdown {
    bottom: 0 !important;
    top: 100%;
    transition: 0s;
}

.select2-results__options {
    border: none;
    max-height: inherit !important;
    background: white;
    border-radius: 10px;
    padding: 20px 0;
    margin-top: 10px;
    transition: 0s;
    min-width: 100%;
    width: max-content;
    box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.11);
    -webkit-box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.11);
}

@media (max-width: 767px) {
    .select2-results__options {
        margin-top: -130px;
    }
}

.select2-results__option {
    font-size: 16px;
    background: #fff;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px !important;
    margin-bottom: 20px;
    transition: 0s;
}

.select2-results__option:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .select2-results__option {
        font-size: 14px;
    }
}

.select2-results__option:last-child {
    border: none;
}

.select2-results__option>span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.select2-results__option>span img {
    width: 25px;
    height: 25px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.select2-search__field {
    border: none !important;
    border-bottom: none !important;
    border-top: 1px solid rgba(70, 70, 95, 0.1) !important;
    padding-left: 10px !important;
    font-size: 11px !important;
    min-height: 30px;
    transition: 0s;
}

.select2-search--dropdown {
    border: none;
}

.select2-search {
    display: none;
}

.select2-results__option {
    font-weight: 400;
    padding: 0 15px;
    color: #4f4f4f;
    font-size: 16px;
    transition: 0s;
}

@media (max-width: 767px) {
    .select2-results__option {
        font-size: 14px;
    }
}

.balloon-wrap {
    max-width: 290px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .balloon-wrap {
        display: none;
    }
}


/* End */


/* Start:/local/templates/svdom_new/css/forms.css?17830685109059*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.balloon-wrap .bottom-wrap {
    padding: 15px 20px;
    background: white;
}

.balloon-wrap .address {
    font-size: 14px;
    line-height: 17px;
}
/*
.current-projects {
    margin-top: 80px;
}

@media (max-width: 1024px) {
    .current-projects {
        margin-top: 50px;
    }
}
*/
@media (max-width: 767px) {
    .current-projects .wrapper {
        text-align: center;
    }
}

.current-projects .wrapper .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .current-projects .wrapper .title-wrap {
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.current-projects .wrapper .title-wrap>span {
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .current-projects .wrapper .title-wrap>span {
        margin-top: 15px;
    }
}

.current-projects .wrapper .grey-btn {
    margin-top: 24px;
}

@media (max-width: 767px) {
    .current-projects .wrapper .grey-btn {
        margin: 24px auto 0;
    }
}

.current-projects .wrapper .projects-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    align-items: baseline;
    -webkit-align-items: center;
}

@media (max-width: 1300px) {
    .current-projects .wrapper .projects-items {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .current-projects .wrapper .projects-items {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .current-projects .wrapper .projects-items {
        grid-template-columns: 1fr;
    }
}

.current-projects .wrapper .projects-items .projects-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    position: relative;
    z-index: 0;
}

.current-projects .wrapper .projects-items .projects-item:hover {
    scale: 1.02;
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    transition: all 0.2s;
}

@media (max-width: 767px) {
    .current-projects .wrapper .projects-items .projects-item {
        max-width: 470px;
        margin: 0 auto;
        width: 100%;
    }
}

.current-projects .wrapper .projects-items .projects-item .count {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    border-radius: 5px;
    background: #ffca0f;
    padding: 5px 10px;
    color: #000;
    font-size: 12px;
    font-weight: 600;
}

.current-projects .wrapper .projects-items .projects-item .sec-city {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    border-radius: 5px;
    background: #0e6131;
    padding: 5px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}


.current-projects .wrapper .projects-items .projects-item .img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.current-projects .wrapper .projects-items .projects-item .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.current-projects .wrapper .projects-items .projects-item .text-wrap {
    padding: 20px;
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    min-height: 236px;
    margin-bottom: -55px;
}

@media (max-width: 1024px) {
    .current-projects .wrapper .projects-items .projects-item .text-wrap {
        margin-bottom: 0;
        min-height: auto;
    }
}

.current-projects .wrapper .projects-items .projects-item .text-wrap b {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    text-align: left;
    display: block;
}

@media (max-width: 1024px) {
    .current-projects .wrapper .projects-items .projects-item .text-wrap b {
        font-size: 18px;
    }
}

.current-projects .wrapper .projects-items .projects-item .text-wrap p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.current-projects .wrapper .projects-items .projects-item .text-wrap p span {
    position: relative;
    z-index: 0;
    margin: 0;
    margin-right: 20px;
    color: #4f4f4f;
    font-size: 16px;
    white-space: nowrap;
}

@media (max-width: 1400px) {
    .current-projects .wrapper .projects-items .projects-item .text-wrap p span {
        font-size: 14px;
    }
}

.current-projects .wrapper .projects-items .projects-item .text-wrap p span:last-child {
    margin-right: 0;
}

.current-projects .wrapper .projects-items .projects-item .text-wrap p span:last-child:after {
    content: none;
}

.current-projects .wrapper .projects-items .projects-item .text-wrap p span:after {
    content: "";
    position: absolute;
    right: -10px;
    width: 1px;
    height: 100%;
    background: #d7d7d7;
}

.current-projects .wrapper .projects-items .projects-item .text-wrap span {
    margin-bottom: 10px;
    display: inline-block;
}

@media (max-width: 1024px) {
    .current-projects .wrapper .projects-items .projects-item .text-wrap span {
        font-size: 14px;
    }
}

.current-projects .wrapper .projects-items .projects-item .text-wrap span.text {
    color: #000;
}

.current-projects .wrapper .projects-items .projects-item .text-wrap span.grey-text {
    margin-top: 5px;
    text-align: left;
}

.current-projects .wrapper .projects-items .projects-item .text-wrap span.red-text {
    color: #eb5757;
}

.current-projects .wrapper .projects-items .projects-item .text-wrap img {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .current-projects .wrapper .projects-items .projects-item.mobile-hide {
        display: none;
    }
}

.current-projects.center {
    text-align: center;
    margin-top: 0;
}

.current-projects.center .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.current-projects.center .main-title {
    text-align: left;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .current-projects.center .main-title {
        text-align: center;
    }
}

.current-projects.center .select-wrap {
    margin-bottom: 50px;
    align-self: flex-start;
    min-width: auto;
}

@media (max-width: 767px) {
    .current-projects.center .select-wrap {
        margin-bottom: 40px;
        align-self: center;
    }
}

.current-projects.center .grey-btn {
    align-self: center;
}

.ymaps-2-1-79-balloon {
    box-shadow: none !important;
    overflow: hidden;
    border-radius: 10px;
}

.ymaps-2-1-79-balloon__close {
    display: none;
}

.ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content {
    margin: 0 !important;
}

.ymaps-2-1-79-balloon__content {
    padding: 0 !important;
    margin: 0;
}

.range-info {
    margin-right: 12px;
    margin-bottom: 12px;
    min-width: 215px;
    position: relative;
    z-index: 0;
}

.range-info #range-slider-1,
.range-info #range-slider-2 {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 0;
    background: #ffffff;
}

.range-info .inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #e4e4e4;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 50px;
    height: 50px;
    position: relative;
    transition: 0.3s;
}

.range-info .inputs:after {
    content: "";
    width: 1px;
    height: 24px;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    background: #e4e4e4;
    position: absolute;
}

.range-info .inputs .input-wrap {
    width: calc((100% - 30px) / 2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #141414;
    font-size: 17px;
}

.range-info .inputs .input-wrap sup {
    margin-top: -10px;
}

.range-info .inputs .input-wrap input {
    color: #141414;
    margin: 0 5px;
    width: 29px;
    text-align: center;
    font-size: 16px;
}

.range-info .inputs .input-wrap input::-webkit-input-placeholder {
    color: #141414;
    font-size: 16px;
}

.range-info .inputs .input-wrap input::-moz-placeholder {
    color: #141414;
    font-size: 16px;
}

.range-info .inputs .input-wrap input:-ms-input-placeholder {
    color: #141414;
    font-size: 16px;
}

.range-info .inputs .input-wrap input:-moz-placeholder {
    color: #141414;
    font-size: 16px;
}

.range-info.full .input-wrap input {
    min-width: 82px;
}

.range-info:hover .inputs {
    border-color: #cecece;
}



/* End */


/* Start:/local/templates/svdom_new/css/projects.css?178306851027055*/
@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tab-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .tab-menu {
        margin-bottom: 10px;
    }
}

.tab-menu li {
    margin-right: 10px;
    margin-bottom: 10px;
}

.tab-menu li button {
    font-size: 16px;
    transition: 0.3s;
    border-radius: 50px;
    color: #141414;
    background: #f4f4f4;
    padding: 10px 28px;
}


.tab-content .tab-content-item {
    height: 0px;
    overflow: hidden;
}

.tab-content .tab-content-item.active {
    height: auto;
    overflow: visible;
}

.apartment-info {
    margin-bottom: 80px;
}

.apartment-info .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 1300px) {
    .apartment-info .wrapper {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .apartment-info .wrapper {
        grid-template-columns: 1fr;
    }
}

.apartment-info .wrapper .tab-wrap .tab-content {
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .apartment-info .wrapper .tab-wrap .tab-content {
        margin-bottom: 16px;
    }
}

.apartment-info .wrapper .tab-wrap .tab-content .tab-content-item {
    height: 0;
    visibility: hidden;
    position: relative;
    z-index: 0;
}

.apartment-info .wrapper .tab-wrap .tab-content .tab-content-item .hover-img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    max-width: 70%;
    transition: 0.5s;
}

.apartment-info .wrapper .tab-wrap .tab-content .tab-content-item img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    transition: 0.5s;
}

.apartment-info .wrapper .tab-wrap .tab-content .tab-content-item .links {
    position: absolute;
    right: 20px;
    top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.apartment-info .wrapper .tab-wrap .tab-content .tab-content-item .links button {
    position: relative;
    z-index: 0;
    color: #000;
    border: 1px solid #4d4d4d;
    padding: 5px 20px;
    min-width: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -1px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .apartment-info .wrapper .tab-wrap .tab-content .tab-content-item .links button {
        padding: 5px 10px;
        min-width: 40px;
    }
}

.apartment-info .wrapper .tab-wrap .tab-content .tab-content-item .links button:hover {
    background: #008b3b;
    color: white;
}

.apartment-info .wrapper .tab-wrap .tab-content .tab-content-item .links button.active {
    background: #008b3b;
    color: white;
}

.apartment-info .wrapper .tab-wrap .tab-content .tab-content-item.active {
    border: 1px solid #ebebeb;
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    visibility: visible;
    padding: 20px;
    min-height: 480px;
}

@media (max-width: 767px) {
    .apartment-info .wrapper .tab-wrap .tab-content .tab-content-item.active {
        min-height: auto;
        padding-left: 0;
    }
}

.apartment-info .wrapper .tab-wrap .tab-menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

@media (max-width: 1024px) {
    .apartment-info .wrapper .tab-wrap .tab-menu {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .apartment-info .wrapper .tab-wrap .tab-menu {
        gap: 8px;
    }
}

.apartment-info .wrapper .tab-wrap .tab-menu li {
    margin: 0;
}

.apartment-info .wrapper .tab-wrap .tab-menu li button,
.apartment-info .wrapper .tab-wrap .tab-menu li a {
    width: 100%;
    padding: 15px 20px;
}

@media (max-width: 1300px) {

    .apartment-info .wrapper .tab-wrap .tab-menu li button,
    .apartment-info .wrapper .tab-wrap .tab-menu li a {
        font-size: 14px;
        padding: 15px;
    }
}

@media (max-width: 1024px) {

    .apartment-info .wrapper .tab-wrap .tab-menu li button,
    .apartment-info .wrapper .tab-wrap .tab-menu li a {
        padding: 12px 10px;
    }
}

@media (max-width: 767px) {

    .apartment-info .wrapper .tab-wrap .tab-menu li button .hide,
    .apartment-info .wrapper .tab-wrap .tab-menu li a .hide {
        display: none;
    }
}

.apartment-info .wrapper .apartment-info-wrap h3 {
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #000;
}

@media (max-width: 1300px) {
    .apartment-info .wrapper .apartment-info-wrap h3 {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .apartment-info .wrapper .apartment-info-wrap h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.apartment-info .wrapper .apartment-info-wrap .info-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 767px) {
    .apartment-info .wrapper .apartment-info-wrap .info-items {
        grid-template-columns: 1fr;
    }
}

.apartment-info .wrapper .apartment-info-wrap .info {
    border-radius: 10px;
    background: #f9f9f9;
    padding: 15px;
    cursor: default;
}

@media (max-width: 767px) {
    .apartment-info .wrapper .apartment-info-wrap .info {
        padding: 10px 15px;
    }
}

.apartment-info .wrapper .apartment-info-wrap .info>b {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 600;
    position: relative;
    z-index: 0;
}

.apartment-info .wrapper .apartment-info-wrap .info>b:after {
    content: "";
    height: 3px;
    width: 0;
    bottom: 3px;
    left: 0;
    position: absolute;
    z-index: -1;
    transition: 0.3s;
    background: rgba(18, 192, 91, 0.5);
}

.apartment-info .wrapper .apartment-info-wrap .info>span {
    display: block;
    color: #4f4f4f;
}

@media (max-width: 767px) {
    .apartment-info .wrapper .apartment-info-wrap .info>span {
        font-size: 14px;
    }
}

.apartment-info .wrapper .apartment-info-wrap .info:hover b:after {
    width: 100%;
}

.apartment-info .wrapper .apartment-info-wrap .prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .apartment-info .wrapper .apartment-info-wrap .prices {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.apartment-info .wrapper .apartment-info-wrap .prices .price-info {
    border-radius: 10px;
    background: #f9f9f9;
    padding: 25px 20px;
    border: 1px solid transparent;
    cursor: default;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .apartment-info .wrapper .apartment-info-wrap .prices .price-info {
        padding: 10px 15px;
    }
}

.apartment-info .wrapper .apartment-info-wrap .prices .price-info b {
    display: block;
    font-size: 36px;
    color: #000;
}

@media (max-width: 1300px) {
    .apartment-info .wrapper .apartment-info-wrap .prices .price-info b {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .apartment-info .wrapper .apartment-info-wrap .prices .price-info b {
        font-size: 20px;
    }
}

.apartment-info .wrapper .apartment-info-wrap .prices .price-info span {
    color: #4f4f4f;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 767px) {
    .apartment-info .wrapper .apartment-info-wrap .prices .price-info span {
        margin-bottom: 5px;
    }
}

.apartment-info .wrapper .apartment-info-wrap .prices .price-info.active {
    background: #fff;
    border: 1px solid #e4e4e4;
}

.apartment-info .wrapper .apartment-info-wrap .prices .price-info:hover {
    border-color: #d0d0d0;
}

.apartment-info .wrapper .apartment-info-wrap .prices .price-info:hover .price-info {
    border-color: #d0d0d0;
}

.accordion-list li {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .accordion-list li {
        margin-bottom: 12px;
    }
}

.accordion-list li:last-child {
    margin-bottom: 0;
}

.accordion-list li .item-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 15px 12px 20px;
    background: #f9f9f9;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .accordion-list li .item-heading {
        padding: 12px;
    }
}

.accordion-list li .item-heading p {
    font-size: 16px;
    color: #141414;
    transition: 0.3s;
    font-weight: 500;
    padding-right: 10px;
}

@media (max-width: 767px) {
    .accordion-list li .item-heading p {
        font-size: 14px;
    }
}

.accordion-list li .item-heading .icon {
    transition: 0.3s;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #e4e4e4;
    position: relative;
}

@media (max-width: 767px) {
    .accordion-list li .item-heading .icon {
        min-width: 30px;
        height: 30px;
    }
}

.accordion-list li .item-heading .icon:after {
    content: "";
    background-image: url('/local/templates/svdom_new/css/img/plus-icon.svg');
    width: 16px;
    height: 16px;
    transition: 0.3s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .accordion-list li .item-heading .icon:after {
        width: 10px;
        height: 10px;
    }
}

.accordion-list li .item-heading:hover .icon {
    background: #0e6131;
}

.accordion-list li .item-heading:hover .icon:after {
    content: "";
    background-image: url('/local/templates/svdom_new/css/img/plus-icon-white.svg');
    width: 16px;
    height: 16px;
}

.accordion-list li .item-body {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    margin-top: 15px;
    display: none;
}

@media (max-width: 767px) {
    .accordion-list li .item-body {
        padding: 15px;
    }
}

.accordion-list li .item-body p {
    font-size: 14px;
}

.faq-wrap .wrapper .main-title {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .faq-wrap .wrapper .main-title {
        text-align: center;
        line-height: 32px;
    }
}

.faq-wrap .wrapper>p {
    margin-bottom: 70px;
    color: #4f4f4f;
}

@media (max-width: 767px) {
    .faq-wrap .wrapper>p {
        margin-bottom: 24px;
        font-size: 14px;
        text-align: center;
    }
}

.faq-wrap .wrapper .select-wrap {
    display: none;
}

@media (max-width: 767px) {
    .faq-wrap .wrapper .select-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 16px;
    }
}

.faq-wrap .wrapper .tab-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.faq-wrap .wrapper .tab-wrap .tabs-menu {
    margin-right: 30px;
    min-width: 370px;
    width: 370px;
}

@media (max-width: 1200px) {
    .faq-wrap .wrapper .tab-wrap .tabs-menu {
        margin-right: 20px;
        min-width: 280px;
        width: 280px;
    }
}

@media (max-width: 767px) {
    .faq-wrap .wrapper .tab-wrap .tabs-menu {
        display: none;
    }
}

.faq-wrap .wrapper .tab-wrap .tabs-menu li {
    margin-bottom: 35px;
}

@media (max-width: 1200px) {
    .faq-wrap .wrapper .tab-wrap .tabs-menu li {
        margin-bottom: 30px;
    }
}

.faq-wrap .wrapper .tab-wrap .tabs-menu li a span {
    font-size: 22px;
    font-weight: 600;
    color: #a5a5a5;
}

@media (max-width: 1200px) {
    .faq-wrap .wrapper .tab-wrap .tabs-menu li a span {
        font-size: 18px;
    }
}

.faq-wrap .wrapper .tab-wrap .tabs-menu li.active a span {
    color: #141414;
}

.faq-wrap .wrapper .tab-wrap .tab-content-wrap {
    width: calc(100% - 400px);
}

@media (max-width: 1200px) {
    .faq-wrap .wrapper .tab-wrap .tab-content-wrap {
        width: calc(100% - 300px);
    }
}

@media (max-width: 767px) {
    .faq-wrap .wrapper .tab-wrap .tab-content-wrap {
        width: 100%;
    }
}

.tab-content-wrap {
    position: relative;
}

.tab-content-wrap .tab-content {
    opacity: 0;
    visibility: hidden;
    height: 0;
}

.tab-content-wrap .tab-content.active {
    opacity: 1;
    height: auto;
    visibility: visible;
    z-index: 1;
    transition: 0.3s;
}

.tour-3d {
    margin-top: 80px;
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .tour-3d {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

.tour-3d .wrapper .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .tour-3d .wrapper .title-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.tour-3d .wrapper .title-wrap .section-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-self: center;
}

@media (max-width: 767px) {
    .tour-3d .wrapper .title-wrap .section-container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 24px;
    }
}

.tour-3d .wrapper .title-wrap .section-container .sections {
    font-size: 16px;
    transition: 0.3s;
    border-radius: 50px;
    color: #141414;
    background: #f4f4f4;
    padding: 10px 28px;
    margin-left: 16px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .tour-3d .wrapper .title-wrap .section-container .sections {
        margin: 0 8px;
        font-size: 14px;
        padding: 8px 24px;
    }
}

.tour-3d .wrapper .title-wrap .section-container .sections.active {
    color: #fff;
    background: #0e6131;
}

#panorama {
    width: 100%;
    height: 480px;
    position: relative;
    z-index: 0;
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    #panorama {
        height: 40vw;
    }
}

@media (max-width: 767px) {
    #panorama {
        height: 60vw;
    }
}

.gsap-wrapper {
    height: 100vh;
    overflow: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 1024px) {
    .gsap-wrapper {
        display: none;
    }
}

.gsap-wrapper .hidden {
    opacity: 0;
    z-index: -1;
    position: absolute;
}

.text-animate {
    padding: 200px 20px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text-animate svg {
    width: 100%;
}

.main .breadcrumbs-wrap {
    margin: 0 !important;
}

.main .breadcrumbs-wrap .wrapper {
    padding: 20px;
    padding-bottom: 0;
}

.animate-wrap {
    background: #0e6131;
    opacity: 0;
    transition: opacity 0s;
    position: relative;
    padding-top: 400px;
}

@media (max-width: 1024px) {
    .animate-wrap {
        padding-top: 15px;
        background: #fff;
    }
}

@media (max-width: 1024px) {
    .animate-wrap>.wrapper {
        background: #075126;
    }
}

.animate-wrap .animate-title-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .animate-wrap .animate-title-mobile {
        display: block;
    }
}

.animate-wrap .animate-title-mobile h3 {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.animate-wrap .animate-title-mobile span {
    display: block;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

.animate-wrap.visible {
    opacity: 1;
}

.animate-wrap .our-winners {
    padding: 100px 0;
}

@media (max-width: 1024px) {
    .animate-wrap .our-winners {
        padding: 0;
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .animate-wrap .our-winners .wrapper {
        padding: 0;
    }
}

.animate-wrap .our-winners .wrapper .images-slider-wrap,
.animate-wrap .our-winners .wrapper .images-slider-wrap2 {
    position: relative;
    padding: 0 50px;
}

@media (max-width: 767px) {

    .animate-wrap .our-winners .wrapper .images-slider-wrap,
    .animate-wrap .our-winners .wrapper .images-slider-wrap2 {
        padding: 0 30px;
    }
}

.animate-wrap .our-winners .wrapper .images-slider-wrap .slick-dots,
.animate-wrap .our-winners .wrapper .images-slider-wrap2 .slick-dots {
    bottom: -30px;
}

.animate-wrap .our-winners .wrapper .images-slider-wrap .slider-navigation button,
.animate-wrap .our-winners .wrapper .images-slider-wrap2 .slider-navigation button {
    z-index: 100;
}

.animate-wrap .our-winners .wrapper .images-slider-wrap .slider-navigation button:before,
.animate-wrap .our-winners .wrapper .images-slider-wrap2 .slider-navigation button:before {
    content: none;
}

.animate-wrap .our-winners .wrapper .images-slider-wrap .slider-navigation button.slick-next,
.animate-wrap .our-winners .wrapper .images-slider-wrap2 .slider-navigation button.slick-next {
    transform: rotate(180deg);
    right: 5px;
}

@media (max-width: 767px) {

    .animate-wrap .our-winners .wrapper .images-slider-wrap .slider-navigation button.slick-next,
    .animate-wrap .our-winners .wrapper .images-slider-wrap2 .slider-navigation button.slick-next {
        right: 5px;
    }
}

.animate-wrap .our-winners .wrapper .images-slider-wrap .slider-navigation button.slick-prev,
.animate-wrap .our-winners .wrapper .images-slider-wrap2 .slider-navigation button.slick-prev {
    left: 5px;
}

@media (max-width: 767px) {

    .animate-wrap .our-winners .wrapper .images-slider-wrap .slider-navigation button.slick-prev,
    .animate-wrap .our-winners .wrapper .images-slider-wrap2 .slider-navigation button.slick-prev {
        left: 5px;
    }
}

@media (max-width: 1024px) {

    .animate-wrap .our-winners .wrapper .images-slider-wrap .slider-navigation button img,
    .animate-wrap .our-winners .wrapper .images-slider-wrap2 .slider-navigation button img {
        display: none;
    }
}

@media (max-width: 767px) {

    .animate-wrap .our-winners .wrapper .images-slider-wrap .slider-navigation button img,
    .animate-wrap .our-winners .wrapper .images-slider-wrap2 .slider-navigation button img {
        width: 15px;
    }
}

.animate-wrap .our-winners .wrapper .images-slider-wrap .slider-navigation button img.hide,
.animate-wrap .our-winners .wrapper .images-slider-wrap2 .slider-navigation button img.hide {
    display: none;
}

@media (max-width: 1024px) {

    .animate-wrap .our-winners .wrapper .images-slider-wrap .slider-navigation button img.hide,
    .animate-wrap .our-winners .wrapper .images-slider-wrap2 .slider-navigation button img.hide {
        display: inline-block;
    }
}

@media (max-width: 1024px) {
    .animate-wrap .our-winners .wrapper .images-slider-wrap2 {
        display: none;
    }
}

.animate-wrap .our-winners .wrapper .images-slider .slick-list,
.animate-wrap .our-winners .wrapper .images-slider2 .slick-list {
    margin: 0 -15px;
}

@media (max-width: 767px) {

    .animate-wrap .our-winners .wrapper .images-slider .slick-list,
    .animate-wrap .our-winners .wrapper .images-slider2 .slick-list {
        margin: 0;
    }
}

.animate-wrap .our-winners .wrapper .images-slider .item,
.animate-wrap .our-winners .wrapper .images-slider2 .item {
    position: relative;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    margin: 0 15px;
}

@media (max-width: 767px) {

    .animate-wrap .our-winners .wrapper .images-slider .item,
    .animate-wrap .our-winners .wrapper .images-slider2 .item {
        margin: 0;
    }
}

.animate-wrap .our-winners .wrapper .images-slider .item img,
.animate-wrap .our-winners .wrapper .images-slider2 .item img {
    width: 100%;
}

.animate-wrap .our-winners .wrapper .images-slider .item .item-info,
.animate-wrap .our-winners .wrapper .images-slider2 .item .item-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    max-width: 230px;
    transition: 0.3s;
    opacity: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.animate-wrap .our-winners .wrapper .images-slider .item .item-info img,
.animate-wrap .our-winners .wrapper .images-slider2 .item .item-info img {
    width: auto;
    align-self: flex-start;
    margin-bottom: 10px;
}

.animate-wrap .our-winners .wrapper .images-slider .item .item-info span,
.animate-wrap .our-winners .wrapper .images-slider2 .item .item-info span {
    color: white;
    display: block;
}

.animate-wrap .our-winners .wrapper .images-slider .item:after,
.animate-wrap .our-winners .wrapper .images-slider2 .item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    opacity: 0;
    z-index: 0;
    background: rgba(1, 45, 20, 0.7);
}

.animate-wrap .our-winners .wrapper .images-slider .item:hover:after,
.animate-wrap .our-winners .wrapper .images-slider2 .item:hover:after {
    opacity: 1;
}

.animate-wrap .our-winners .wrapper .images-slider .item:hover .item-info,
.animate-wrap .our-winners .wrapper .images-slider2 .item:hover .item-info {
    opacity: 1;
}

.animate-wrap .our-winners .wrapper h2 {
    text-align: center;
    font-size: 74px;
    margin: 40px 0;
    color: white;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .animate-wrap .our-winners .wrapper h2 {
        font-size: 62px;
    }
}

@media (max-width: 1024px) {
    .animate-wrap .our-winners .wrapper h2 {
        display: none;
    }
}

.animate-wrap .infos-wrap {
    min-height: 100vh;
    padding: 100px 0;
    transition: background-color 1s ease;
}

@media (max-width: 1024px) {
    .animate-wrap .infos-wrap {
        background: #075126;
        height: auto;
        margin-top: 0;
        padding: 30px 0;
        min-height: auto;
    }
}

.animate-wrap .infos-wrap .tab-menu {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 0;
}

.animate-wrap .infos-wrap .tab-menu:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #66bf8b;
    position: absolute;
    top: 10px;
    z-index: -1;
    left: 0;
}

.animate-wrap .infos-wrap .tab-menu li {
    margin: 0;
}

@media (max-width: 767px) {
    .animate-wrap .infos-wrap .tab-menu li:last-child {
        margin-right: 10px;
    }
}

.animate-wrap .infos-wrap .tab-menu li button {
    color: #448f63;
    background: none;
    position: relative;
    z-index: 0;
    padding-top: 40px;
    padding-left: 0;
    border-radius: 0;
}

@media (max-width: 767px) {
    .animate-wrap .infos-wrap .tab-menu li button {
        font-size: 12px;
        padding: 0;
        padding-top: 40px;
    }
}

.animate-wrap .infos-wrap .tab-menu li button:after {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #448f63;
    top: 0px;
    position: absolute;
    transition: 0.3s;
    left: 0;
}

.animate-wrap .infos-wrap .tab-menu li.active button {
    color: white;
}

.animate-wrap .infos-wrap .tab-menu li.active button:after {
    background: white;
}

.animate-wrap .infos-wrap .tab-menu li.active button span {
    color: white;
}

.animate-wrap .infos-wrap h2 {
    font-size: 74px;
    margin-bottom: 50px;
    color: white;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .animate-wrap .infos-wrap h2 {
        font-size: 62px;
    }
}

@media (max-width: 1024px) {
    .animate-wrap .infos-wrap h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .animate-wrap .infos-wrap h2 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 25px;
    }
}

.animate-wrap .info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: background-color 1s ease;
}

@media (max-width: 767px) {
    .animate-wrap .info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }
}

.animate-wrap .text-wrap {
    padding: 0 10px;
    width: 50%;
}

@media (max-width: 1024px) {
    .animate-wrap .text-wrap {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .animate-wrap .text-wrap {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-bottom: 0;
    }
}

.animate-wrap .text-wrap h2 {
    font-size: 4vw;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .animate-wrap .text-wrap h2 {
        font-size: 28px;
        text-align: left;
        width: 80%;
        margin-bottom: 12px;
    }
}

.animate-wrap .text-wrap h3 {
    font-size: 1.4vw;
    font-weight: 600;
    color: #ededed;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .animate-wrap .text-wrap h3 {
        font-size: 1.6vw;
    }
}

@media (max-width: 767px) {
    .animate-wrap .text-wrap h3 {
        font-size: 16px;
        margin-bottom: 10px;
        text-align: left;
        font-weight: normal;
    }
}

.animate-wrap .text-wrap p {
    font-size: 1.2vw;
    line-height: 150%;
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .animate-wrap .text-wrap p {
        font-size: 1.4vw;
    }
}

@media (max-width: 767px) {
    .animate-wrap .text-wrap p {
        font-size: 14px;
        line-height: 17px;
        text-align: left;
    }
}

.animate-wrap .img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    width: 40%;
}

@media (max-width: 767px) {
    .animate-wrap .img-wrap {
        width: 70%;
    }
}

.animate-wrap .img-wrap img {
    max-width: 100%;
    max-height: 100%;
}

.color-violet {
    background: #0e6131;
}

.color-indigo {
    background: #075126;
}

.color-blue {
    background: #063e1e;
}

.color-green {
    background: #032913;
}


/* End */


/* Start:/local/templates/svdom_new/css/utilities.css?17830685104138*/
.info-block-wrap {
    margin-bottom: 80px;
}

@media (max-width: 1024px) {
    .info-block-wrap {
        margin-bottom: 50px;
    }
}

.info-block-wrap .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .info-block-wrap .wrapper {
        flex-direction: column-reverse;
    }
}

.info-block-wrap .wrapper .img-wrap {
    width: calc(45% - 30px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    align-self: center;
}

@media (max-width: 1200px) {
    .info-block-wrap .wrapper .img-wrap {
        width: calc(45% - 10px);
    }
}

@media (max-width: 1024px) {
    .info-block-wrap .wrapper .img-wrap {
        width: 100%;
    }
}

.info-block-wrap .wrapper .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-block-wrap .wrapper .texts {
    width: calc(55% - 30px);
}

@media (max-width: 1200px) {
    .info-block-wrap .wrapper .texts {
        width: calc(55% - 10px);
    }
}

@media (max-width: 1024px) {
    .info-block-wrap .wrapper .texts {
        width: 100%;
    }
}

.info-block-wrap .wrapper .texts h3 {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

@media (max-width: 767px) {
    .info-block-wrap .wrapper .texts h3 {
        font-size: 32px;
    }
}

.info-block-wrap .wrapper .texts p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #4f4f4f;
}

@media (max-width: 767px) {
    .info-block-wrap .wrapper .texts p {
        margin-bottom: 15px;
        font-size: 15px;
        line-height: 18px;
    }
}


.social-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 767px) {
    .social-menu {
        position: static;
    }
}

.social-menu li {
    margin-left: 12px;
}

@media (max-width: 767px) {
    .social-menu li {
        margin: 0;
        margin-right: 12px;
    }
}

.social-menu li a {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

.social-menu li a:after {
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    transition: 0.3s;
}

.social-menu li:nth-child(1) a:after {
    background-image: url('/local/templates/svdom_new/css/img/social-icon2-grey.svg');
}

.social-menu li:nth-child(2) a:after {
    background-image: url('/local/templates/svdom_new/css/img/social-icon3-grey.svg');
}

.social-menu li:nth-child(3) a:after {
    background-image: url('/local/templates/svdom_new/css/img/social-icon4-grey.svg');
}

.social-menu li:hover:nth-child(1) a:after {
    background-image: url('/local/templates/svdom_new/css/img/social-icon2.svg');
}

.social-menu li:hover:nth-child(2) a:after {
    background-image: url('/local/templates/svdom_new/css/img/social-icon3.svg');
}

.social-menu li:hover:nth-child(3) a:after {
    background-image: url('/local/templates/svdom_new/css/img/social-icon4.svg');
}

.top-scroll {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .top-scroll {
        display: none !important;
    }
}

.top-scroll .icon {
    border-radius: 50%;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #d9d9d9;
    margin: 0 auto 8px;
}

.top-scroll .icon svg {
    margin: auto;
    transition: 0.3s;
    fill: #7d7d7d;
}

.top-scroll .text {
    text-align: center;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #939393;
}

@media (max-width: 767px) {
    .top-scroll .text {
        display: none;
    }
}

.top-scroll:hover .icon {
    background: #0e6131;
}

.top-scroll:hover .icon svg {
    fill: white;
}

.top-scroll.show {
    opacity: 1;
}


/* End */


/* Start:/local/templates/svdom_new/css/sliders.css?17830685105976*/
.slick-dots {
    display: none;
}

@media (max-width: 1400px) {
    .slick-dots {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        bottom: -40px;
    }
}

.slick-dots li {
    margin: 0 3px;
    width: auto;
    height: auto;
}

.slick-dots li button {
    width: 16px;
    height: 6px;
    transition: 0.3s;
}

.slick-dots li button:before {
    content: "";
    width: 16px;
    height: 6px;
    border-radius: 50px;
    background: #e4e4e4;
    opacity: 1;
    transition: 0.3s;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    background: #0e6131;
    width: 34px;
}

.info-block {
    margin-top: 80px;
}

@media (max-width: 1024px) {
    .info-block {
        margin-top: 50px;
    }
}

.info-block .wrapper .info-slider .slick-dots {
    display: none;
}

@media (max-width: 1400px) {
    .info-block .wrapper .info-slider .slick-dots {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.info-block .wrapper .info-slider .slick-list {
    margin: 0 -8px;
}

@media (max-width: 1400px) {
    .info-block .wrapper .info-slider .slick-list {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .info-block .wrapper .info-slider .slick-list {
        margin-right: -15px;
    }
}

@media (max-width: 500px) {
    .info-block .wrapper .info-slider .slick-list {
        margin: 0 -10px;
    }
}

.info-block .wrapper .info-slider .item {
    margin: 0 8px;
    background: #f9f9f9;
    border-radius: 10px;
    min-height: 175px;
    overflow: hidden;
    padding: 20px 10px 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1400px) {
    .info-block .wrapper .info-slider .item {
        margin: 0;
        margin-right: 15px;
        width: 470px;
    }
}

@media (max-width: 767px) {
    .info-block .wrapper .info-slider .item {
        width: 320px;
        height: 280px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 15px 0 0 15px;
        margin: 0;
        margin-left: 15px;
    }
}

@media (max-width: 500px) {
    .info-block .wrapper .info-slider .item {
        width: auto;
        margin: 0 10px;
    }
}

.info-block .wrapper .info-slider .item:hover .text-wrap b:after {
    width: 100%;
}

.info-block .wrapper .info-slider .item:hover .img-wrap {
    border-color: rgba(18, 192, 91, 0.46);
}

.info-block .wrapper .info-slider .item .text-wrap {
    width: 60%;
    padding-right: 10px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .info-block .wrapper .info-slider .item .text-wrap {
        width: 100%;
    }
}

.info-block .wrapper .info-slider .item .text-wrap b {
    display: inline-block;
    margin: 8px 0;
    font-weight: 600;
    color: #000;
    font-size: 30px;
    position: relative;
    min-height: 52px;
}

.info-block .wrapper .info-slider .item .text-wrap b:after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 0;
    transition: 0.3s;
    height: 3px;
    background: rgba(18, 192, 91, 0.46);
}

@media (max-width: 767px) {
    .info-block .wrapper .info-slider .item .text-wrap b {
        font-size: 24px;
    }
}

.info-block .wrapper .info-slider .item .text-wrap span {
    display: block;
}

@media (max-width: 767px) {
    .info-block .wrapper .info-slider .item .text-wrap span {
        font-size: 14px;
        max-width: 270px;
        display: inline-block;
    }
}

.info-block .wrapper .info-slider .item .img-wrap {
    position: relative;
    z-index: 0;
    width: 40%;
    transition: 0.3s;
    border: 24px solid #eeeeee;
    border-bottom: 0;
}

@media (max-width: 767px) {
    .info-block .wrapper .info-slider .item .img-wrap {
        width: 80%;
        align-self: flex-end;
        height: 140px;
        border-right: 0;
        border-width: 44px;
    }
}

@media (max-width: 500px) {
    .info-block .wrapper .info-slider .item .img-wrap {
        margin-top: auto;
    }
}

.info-block .wrapper .info-slider .item .img-wrap img {
    position: absolute;
    bottom: 0;
    right: -30px;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .info-block .wrapper .info-slider .item .img-wrap img {
        width: 180px;
        right: 0;
    }
}

.info-block .wrapper .info-slider .item .img-wrap.style2 img {
    right: -15px;
}

@media (max-width: 767px) {
    .info-block .wrapper .info-slider .item .img-wrap.style2 img {
        right: 0;
    }
}

.map-objects {
    margin-top: 80px;
}

@media (max-width: 1024px) {
    .map-objects {
        margin-top: 50px;
    }
}

.map-objects .wrapper #map {
    width: 100%;
    border-radius: 10px;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .map-objects .wrapper #map {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .ymaps-2-1-79-islets_balloon_layout_panel {
        display: none !important;
    }
}

.balloon-wrap2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 440px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .balloon-wrap2 {
        display: none;
    }
}

.balloon-wrap2 .img-wrap {
    width: 34%;
}

.balloon-wrap2 .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.balloon-wrap2 .text-wrap {
    padding: 15px;
    width: 66%;
    background: white;
}

.balloon-wrap2 .text-wrap b {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
    color: #000;
}

.balloon-wrap2 .text-wrap span {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 18px;
}


/* End */


/* Start:/local/templates/svdom_new/css/search.css?178306851030010*/
.apartment-search {
    padding-top: 40px;
    position: relative;
    z-index: 0;

    @media (max-width: 1024px) {
        .apartment-search {
            margin-top: 50px;
        }
    }
}

#popup {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

#popup .popup-body {
    position: relative;
    z-index: 0;
    width: 100%;
}

#popup .popup-body .mfp-close {
    right: -20px;
    top: -30px;
    background: url('/local/templates/svdom_new/css/img/close-popup.svg');
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media (max-width: 767px) {
    #popup .popup-body .mfp-close {
        right: 0;
    }
}

#popup .popup-body .favorites-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

#popup .popup-body .global-btn {
    margin-top: 15px;
}

#popup .popup-body .global-btn.green-btn {
    display: none;
}

@media (max-width: 767px) {
    #popup .popup-body .global-btn.green-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.apartment-search-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .apartment-search-info {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.apartment-search-info .select-wrap {
    margin-right: 10px;
    margin-bottom: 12px;
    min-width: 124px;
    flex-grow: 1;
}

@media (max-width: 1300px) {
    .apartment-search-info .select-wrap {
        min-width: 280px;
    }
}

@media (max-width: 1024px) {
    .apartment-search-info .select-wrap {
        min-width: 130px;
    }
}

@media (max-width: 767px) {
    .apartment-search-info .select-wrap {
        margin: 0;
        width: calc((100% - 15px) / 2);
        margin-bottom: 15px;
        flex-grow: 0;
    }

    .apartment-search-info .select-wrap.full {
        width: 100%;
    }
}

.apartment-search-info .select-wrap.full-mobile {
    min-width: 190px;
    flex-grow: 0;
}

@media (max-width: 1024px) {
    .apartment-search-info .select-wrap.full-mobile {
        min-width: 160px;
    }
}

.apartment-search-info .select-wrap.full {
    min-width: 180px;
    width: 180px;
}

@media (max-width: 767px) {
    .apartment-search-info .select-wrap.full {
        width: 100%;
    }
}

.apartment-search-info .select-wrap.full .select2-selection__rendered {
    padding-right: 0;
}

@media (max-width: 767px) {
    .apartment-search-info .select-wrap .select2-container .select2-selection--single .select2-selection__rendered {
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .apartment-search-info .range-info {
        width: 100%;
        margin: 0;
        margin-bottom: 15px;
    }
}

.apartment-search-info>a {
    margin-right: 10px;
    margin-bottom: 12px;
    padding: 13px 16px;
}

@media (max-width: 767px) {
    .apartment-search-info>a {
        width: 100%;
        margin: 0;
        margin-bottom: 15px;
    }
}

.apartment-search-info>a.grey-btn {
    margin-right: 0;
}

@media (max-width: 767px) {
    .apartment-search-info>a.grey-btn {
        margin-bottom: 0;
    }
}

@media (max-width: 1024px) {
    .banner-slider-wrap .wrapper {
        padding: 0;
        padding-left: 20px;
    }
}

@media (max-width: 500px) {
    .banner-slider-wrap .wrapper {
        padding: 0 20px;
    }
}

.banner-slider-wrap .banner-slider {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

@media (max-width: 1200px) {
    .banner-slider-wrap .banner-slider {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .banner-slider-wrap .banner-slider {
        display: block;
    }
}

@media (max-width: 500px) {
    .banner-slider-wrap .banner-slider .slick-list {
        margin: 0 -10px;
    }
}

.banner-slider-wrap .banner-slider .item {
    border-radius: 10px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 0;
}

@media (max-width: 1200px) {
    .banner-slider-wrap .banner-slider .item {
        grid-column: inherit !important;
        grid-row: inherit !important;
        min-height: 220px;
        height: auto !important;
    }
}

@media (max-width: 1024px) {
    .banner-slider-wrap .banner-slider .item {
        width: 320px;
        height: 300px !important;
        padding: 20px;
        margin-left: 20px;
        align-items: flex-start;
        background-size: cover !important;
    }
}

@media (max-width: 500px) {
    .banner-slider-wrap .banner-slider .item {
        margin: 0 10px;
        width: auto;
    }
}

.banner-slider-wrap .banner-slider .item .texts {
    max-width: 160px;
    margin-left: 30px;
}

@media (max-width: 1024px) {
    .banner-slider-wrap .banner-slider .item .texts {
        margin: 0;
    }
}

.banner-slider-wrap .banner-slider .item .texts b {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    display: block;
}

.banner-slider-wrap .banner-slider .item .texts .persent {
    border-radius: 50px;
    padding: 2px 17px;
    background: white;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
}

.banner-slider-wrap .banner-slider .item .texts .persent.green {
    color: #008b3b;
}

.banner-slider-wrap .banner-slider .item .texts .persent.purple {
    color: #712cb6;
}

.banner-slider-wrap .banner-slider .item .texts .persent.blue {
    color: #03a1b7;
}

.banner-slider-wrap .banner-slider .item>img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .banner-slider-wrap .banner-slider .item>img {
        width: 200px;
    }
}

.banner-slider-wrap .banner-slider .item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/3;
    height: 450px;
    background: #e5f7ea;
}

.banner-slider-wrap .banner-slider .item:nth-child(1) .texts {
    align-self: flex-end;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .banner-slider-wrap .banner-slider .item:nth-child(1) .texts {
        align-self: flex-start;
    }
}

@media (max-width: 1200px) {
    .banner-slider-wrap .banner-slider .item:nth-child(1)>img {
        width: 200px;
    }
}

.banner-slider-wrap .banner-slider .item:nth-child(2) {
    grid-column: 3/5;
    grid-row: 1/2;
}

.banner-slider-wrap .banner-slider .item:nth-child(2) .texts {
    max-width: 245px;
}

.banner-slider-wrap .banner-slider .item:nth-child(3) {
    grid-column: 3/4;
    grid-row: 2/3;
    background: #f9f3ff;
}

.banner-slider-wrap .banner-slider .item:nth-child(4) {
    grid-column: 4/5;
    grid-row: 2/3;
    background: #d0e8f5;
}

@media (min-width: 1025px) {
    .banner-slider-wrap .banner-slider .item:hover>img {
        transform: scale(1.1);
    }
}

.fixed-block {
    background: rgba(0, 0, 0, 0.75);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
    z-index: 10000;
}

.fixed-block .info {
    margin: auto;
    padding: 35px 25px;
    border-radius: 10px;
    background: #e5f7ea;
    max-width: 500px;
    width: 100%;
}

.fixed-block .info h3 {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    font-size: 24px;
}

.fixed-block .info .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.fixed-block .info .buttons button {
    margin: 0 8px;
}

.fixed-block.hide {
    display: none;
}

.breadcrumbs-wrap {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .breadcrumbs-wrap {
        margin-bottom: 20px;
    }
}

.breadcrumbs-wrap .breadcrumbs-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
}

.breadcrumbs-wrap .breadcrumbs-menu li {
    margin-right: 22px;
    margin-bottom: 15px;
    position: relative;
    z-index: 0;
}

@media (max-width: 767px) {
    .breadcrumbs-wrap .breadcrumbs-menu li {
        margin-bottom: 10px;
    }
}

.breadcrumbs-wrap .breadcrumbs-menu li:after {
    content: "";
    background: url('/local/templates/svdom_new/css/img/arr-right.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: -15px;
    width: 7px;
    height: 11px;
}

.breadcrumbs-wrap .breadcrumbs-menu li:first-child:after {
    content: none;
}

.breadcrumbs-wrap .breadcrumbs-menu li:last-child:after {
    content: "";
    background: url('/local/templates/svdom_new/css/img/arr-right-green.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: -15px;
    width: 7px;
    height: 11px;
}

.breadcrumbs-wrap .breadcrumbs-menu li a {
    font-size: 14px;
    color: #a5a5a5;
}

.breadcrumbs-wrap .breadcrumbs-menu li span {
    font-size: 14px;
    color: #0e6131;
    font-weight: 500;
}

.favorite-wrap .wrapper .main-title {
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .favorite-wrap .wrapper .main-title {
        margin-bottom: 24px;
    }
}

.favorites-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

@media (max-width: 1200px) {
    .favorites-items {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .favorites-items {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .favorites-items {
        grid-template-columns: 1fr;
    }
}

.favorites-item {
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid transparent;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .favorites-item {
        border-color: #e4e4e4;
    }
}

.favorites-item .img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.favorites-item .img-wrap img {
    width: 100%;
    transition: 0.3s;
}

.favorites-item .text-wrap {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #f9f9f9;
    flex-grow: 1;
}

.favorites-item .text-wrap b {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    color: #000;
}

.favorites-item .text-wrap .favorite-info-list {
    margin-bottom: 20px;
}

.favorites-item .text-wrap .favorite-info-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.favorites-item .text-wrap .favorite-info-list li:last-child {
    margin-bottom: 0;
}

.favorites-item .text-wrap .favorite-info-list li span {
    color: #575757;
    font-size: 16px;
    display: inline-block;
    margin-right: 5px;
}

.favorites-item .text-wrap .favorite-info-list li span.black {
    color: #141414;
    margin-right: 0;
}

.favorites-item .text-wrap .icons {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
}

.favorites-item .text-wrap .icons .icon {
    margin-right: 15px;
    width: 44px;
    height: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    color: #a5a5a5;
    cursor: pointer;
}

.favorites-item .text-wrap .icons .icon svg {
    transition: 0.3s;
}

.favorites-item .text-wrap .icons .icon svg.favorite-icon {
    fill: #0e6131;
}

.favorites-item .text-wrap .icons .icon svg.favorite-icon.remove {
    fill: #cecece;
}

.favorites-item .text-wrap .icons .icon svg.favorite-icon2 {
    fill: #cecece;
}

.favorites-item .text-wrap .icons .icon svg.favorite-icon2.add {
    fill: #0e6131;
}

.favorites-item .text-wrap .icons .icon svg.print {
    fill: #cecece;
}

.favorites-item .text-wrap .icons .icon:hover {
    color: #0e6131;
}

.favorites-item .text-wrap .icons .icon:hover .print {
    fill: #0e6131;
}

.favorites-item:hover {
    border-color: #e4e4e4;
}

.favorites-item:hover .img-wrap img {
    transform: scale(1.01);
}

@media (max-width: 767px) {
    .favorites-item.mobile-hide {
        display: none;
    }
}

.contact-wrap .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 767px) {
    .contact-wrap .wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.contact-wrap .wrapper .contact-info-wrap {
    width: 45%;
    padding-right: 20px;
}

@media (max-width: 767px) {
    .contact-wrap .wrapper .contact-info-wrap {
        width: 100%;
    }
}

.contact-wrap .wrapper .info {
    width: 100%;
}

.contact-wrap .wrapper .info .main-title {
    line-height: 90%;
    margin-bottom: 40px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .contact-wrap .wrapper .info .main-title {
        margin-top: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-wrap .wrapper .info .main-title {
        line-height: 100%;
        margin-top: 0;
    }
}

.contact-wrap .wrapper .info .contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .contact-wrap .wrapper .info .contact-info {
        margin-bottom: 20px;
    }
}

.contact-wrap .wrapper .info .contact-info:last-child {
    margin-bottom: 0;
}

.contact-wrap .wrapper .info .contact-info .img-wrap {
    margin-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 27px;
    height: 27px;
}

.contact-wrap .wrapper .info .contact-info .img-wrap img {
    margin: auto;
    width: 27px;
}

.contact-wrap .wrapper .info .contact-info .texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.contact-wrap .wrapper .info .contact-info .texts p,
.contact-wrap .wrapper .info .contact-info .texts a {
    color: #141414;
    display: inline-block;
}

@media (max-width: 767px) {

    .contact-wrap .wrapper .info .contact-info .texts p,
    .contact-wrap .wrapper .info .contact-info .texts a {
        font-size: 14px;
    }
}

.contact-wrap .wrapper .info #map2,
.contact-wrap .wrapper .info #map {
    height: 480px;
    width: 55%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: -180px;
}

@media (max-width: 1024px) {

    .contact-wrap .wrapper .info #map2,
    .contact-wrap .wrapper .info #map {
        margin-top: -160px;
    }
}

@media (max-width: 767px) {

    .contact-wrap .wrapper .info #map2,
    .contact-wrap .wrapper .info #map {
        width: 100%;
        height: 390px;
        margin-top: 40px;
    }
}

.contact-wrap .wrapper .tab-content-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

@media (max-width: 767px) {
    .contact-wrap .wrapper .tab-content-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.apartments-wrap .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.apartments-wrap .wrapper .main-title {
    margin-bottom: 20px;
}

.apartments-wrap .wrapper .style2 {
    align-self: flex-start;
    margin-bottom: 40px;
}

.apartments-wrap .wrapper .title-wrap h2 {
    margin-bottom: 0px;
}

.apartments-wrap .wrapper .tab-content {
    margin-top: 40px;
}

@media (max-width: 767px) {
    .apartments-wrap .wrapper .tab-content {
        margin-top: 30px;
    }
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 {
    text-align: center;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .grey-btn {
    margin: 24px auto 0;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2:last-child {
    margin-bottom: 0;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .img-wrap {
    border-radius: 5px;
    overflow: hidden;
    min-width: 150px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 25px;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .icons .icon {
    margin-bottom: 10px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
    color: #a5a5a5;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .icons .icon svg {
    transition: 0.3s;
    fill: #cecece;
    width: 12px;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .icons .icon svg.favorite-icon3 {
    fill: #cecece;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .icons .icon svg.favorite-icon3.add {
    fill: #008b3b;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .icons .icon:last-child {
    margin-bottom: 0;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .icons .icon:hover {
    color: #008b3b;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .icons .icon:hover svg {
    fill: #008b3b;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .text-wrap {
    flex-grow: 1;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .text-wrap b {
    display: block;
    font-size: 24px;
    line-height: 26px;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .text-wrap .texts-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 120px;
}

@media (max-width: 1024px) {
    .apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .texts {
        margin-right: 32px;
    }
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .texts:last-child {
    margin-right: 0;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .texts span {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 7px;
    color: #4f4f4f;
    display: inline-block;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .texts span:last-child {
    margin-bottom: 0;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .texts span.black {
    color: #141414;
    font-weight: 500;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2:hover {
    border-color: #e4e4e4;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items2 {
    text-align: center;
}

.apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items2 .grey-btn {
    margin: 24px auto 0;
}

.apartments-wrap .wrapper .apartment-search-info {
    position: relative;
    z-index: 0;
    margin-right: -10px;
}

@media (max-width: 767px) {
    .apartments-wrap .wrapper .apartment-search-info {
        margin-right: 0;
    }
}

.apartments-wrap .wrapper .apartment-search-info .tab-menu {
    margin-left: auto;
    margin-top: 10px;
    margin-right: 20px;
}

@media (max-width: 767px) {
    .apartments-wrap .wrapper .apartment-search-info .tab-menu {
        margin-left: 0;
    }
}

.apartments-wrap .wrapper .apartment-search-info .tab-menu li {
    margin: 0;
    margin-left: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .apartments-wrap .wrapper .apartment-search-info .tab-menu li {
        margin-left: 0;
        margin-right: 10px;
    }
}

.apartments-wrap .wrapper .apartment-search-info .tab-menu li button {
    transition: 0.3s;
    border-radius: 0;
    color: #141414;
    background: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.apartments-wrap .wrapper .apartment-search-info .tab-menu li button .text,
.apartments-wrap .wrapper .apartment-search-info .tab-menu li a .text {
    display: none;
}

@media (max-width: 767px) {

    .apartments-wrap .wrapper .apartment-search-info .tab-menu li button .text,
    .apartments-wrap .wrapper .apartment-search-info .tab-menu li a .text {
        display: inline-block;
        padding: 5px 15px;
        border: 1px solid transparent;
        border-radius: 40px;
    }
}

.apartments-wrap .wrapper .apartment-search-info .tab-menu li button svg,
.apartments-wrap .wrapper .apartment-search-info .tab-menu li a svg {
    transition: 0.3s;
    fill: #a5a5a5;
}

@media (max-width: 767px) {

    .apartments-wrap .wrapper .apartment-search-info .tab-menu li button svg,
    .apartments-wrap .wrapper .apartment-search-info .tab-menu li a svg {
        display: none;
    }
}

.apartments-wrap .wrapper .apartment-search-info .tab-menu li button .icon,
.apartments-wrap .wrapper .apartment-search-info .tab-menu li a .icon {
    width: 29px;
    height: 29px;
    background: url('/local/templates/svdom_new/css/img/svg1.svg');
    background-repeat: no-repeat;
    background-size: 18px 18px;
    transition: 0.3s;
    background-position: center center;
}

@media (max-width: 767px) {

    .apartments-wrap .wrapper .apartment-search-info .tab-menu li button .icon,
    .apartments-wrap .wrapper .apartment-search-info .tab-menu li a .icon {
        display: none;
    }
}

.apartments-wrap .wrapper .apartment-search-info .tab-menu li.active button svg,
.apartments-wrap .wrapper .apartment-search-info .tab-menu li.active a svg {
    fill: #0e6131;
}

@media (max-width: 767px) {

    .apartments-wrap .wrapper .apartment-search-info .tab-menu li.active button .text,
    .apartments-wrap .wrapper .apartment-search-info .tab-menu li.active a .text {
        color: #0e6131;
        border-color: #0e6131;
    }
}

.apartments-wrap .wrapper .apartment-search-info .tab-menu li.active button .icon,
.apartments-wrap .wrapper .apartment-search-info .tab-menu li.active a .icon {
    width: 29px;
    height: 29px;
    background: url('/local/templates/svdom_new/css/img/svg1-1.svg');
    background-size: 18px 18px;
    background-repeat: no-repeat;
    background-position: center center;
}

.apartments-wrap .wrapper .apartment-search-info .select-wrap {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .apartments-wrap .wrapper .apartment-search-info .select-wrap {
        margin-bottom: 14px;
    }
}

.apartments-wrap .wrapper .apartment-search-info .range-info {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .apartments-wrap .wrapper .apartment-search-info .range-info {
        margin-bottom: 14px;
    }
}

.apartments-wrap .wrapper .apartment-search-info .grey-btn {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .apartments-wrap .wrapper .apartment-search-info .grey-btn {
        margin-right: 0;
    }
}

.apartments-wrap .wrapper .apartment-search-info>a {
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .apartments-wrap .wrapper .apartment-search-info>a {
        margin-bottom: 14px;
    }
}

.rooms-wrap {
    height: 720px;
    overflow-y: auto;
    padding-right: 10px;
}

@media (max-width: 1024px) {
    .rooms-wrap {
        height: auto;
    }
}

.rooms-wrap::-webkit-scrollbar {
    width: 8px;
    height: 4px;
    border-radius: 50px;
}

.rooms-wrap::-webkit-scrollbar-track {
    background: #fff;
}

.rooms-wrap::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 50px;
}

.rooms-wrap .rooms-items .rooms-item {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(12, auto);
    align-items: center;
    margin-bottom: 15px;
}

@media (max-width: 1400px) {
    .rooms-wrap .rooms-items .rooms-item {
        gap: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 1024px) {
    .rooms-wrap .rooms-items .rooms-item {
        gap: 6px;
    }
}

.rooms-wrap .rooms-items .rooms-item .number {
    display: none;
}

@media (max-width: 1024px) {
    .rooms-wrap .rooms-items .rooms-item .number {
        display: inline-block;
    }
}

.rooms-wrap .rooms-items .rooms-item>span {
    font-size: 16px;
    /*# color: rgba(29, 29, 29, 0.5); */
    font-weight: 500;
    text-align: center;
    display: block;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

@media (max-width: 1400px) {
    .rooms-wrap .rooms-items .rooms-item>span {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .rooms-wrap .rooms-items .rooms-item>span {
        min-width: 70px;
    }
}

.rooms-wrap .rooms-items .rooms-item a {
    border-radius: 10px;
    background: #f9f9f9;
    transition: 0.3s;
    /*# min-height: 105px;*/
    padding: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .rooms-wrap .rooms-items .rooms-item a {
        min-height: auto;
    }
}

.rooms-wrap .rooms-items .rooms-item a span {
    font-weight: 500;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .rooms-wrap .rooms-items .rooms-item a span {
        display: none;
    }
}

.rooms-wrap .rooms-items .rooms-item a .green {
    font-size: 12px;
    color: #0e6131;
    text-align: center;
}

@media (max-width: 1024px) {
    .rooms-wrap .rooms-items .rooms-item a .green {
        display: none;
    }
}

.rooms-wrap .rooms-items .rooms-item a .text {
    color: rgba(29, 29, 29, 0.5);
    text-align: center;
}

@media (max-width: 1300px) {
    .rooms-wrap .rooms-items .rooms-item a .text {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .rooms-wrap .rooms-items .rooms-item a .text {
        display: none;
    }
}

.rooms-wrap .rooms-items .rooms-item a .num {
    font-size: 12px;
    color: #1d1d1d;
    text-align: center;
}

@media (max-width: 1024px) {
    .rooms-wrap .rooms-items .rooms-item a .num {
        display: none;
    }
}

.rooms-wrap .rooms-items .rooms-item a.disabled {
    opacity: 0.5;
    cursor: default;
}

.rooms-wrap .rooms-items .rooms-item a:hover {
    background: #0e6131;
}

.rooms-wrap .rooms-items .rooms-item a:hover.disabled {
    background: #f9f9f9;
}

.rooms-wrap .rooms-items .rooms-item a:hover.disabled .green {
    color: #0e6131;
}

.rooms-wrap .rooms-items .rooms-item a:hover.disabled .text {
    color: rgba(29, 29, 29, 0.5);
}

.rooms-wrap .rooms-items .rooms-item a:hover.disabled .num {
    color: #1d1d1d;
}

.rooms-wrap .rooms-items .rooms-item a:hover span {
    color: white;
}


/* End */


/* Start:/local/templates/svdom_new/css/svdom.css?1788846641252001*/
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap");
.header {
  position: static;
  margin: 0;
  padding: 22px 0;
}
.header .wrapper {
  padding: 0 30px 0 25px;
  background: #f7f7f7;
  border-radius: 0;
  position: relative;
}
.header .logo {
  flex-shrink: 0;
  margin-right: 63px;
}
.header .logo img {
  height: 30px;
  width: auto;
  display: block;
}
.header-inner {
  display: flex;
  align-items: center;
  height: 77px;
  gap: 0;
}
.header-nav {
  flex-shrink: 0;
}
.header-nav .main-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: static;
  background: none;
  box-shadow: none;
  flex-direction: row;
}
.header-nav .main-menu > li.main-menu-item--home {
  display: none;
}
.header-nav .main-menu > li > a,
.header-nav .main-menu > li > button {
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #151515;
  text-decoration: none;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav .main-menu > li > a:hover,
.header-nav .main-menu > li > button:hover {
  color: #666;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #151515;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 38px;
}
.header-phone:hover {
  color: #666;
}
.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  background: none;
  border: none;
  cursor: pointer;
  color: #151515;
  transition: color 0.2s;
  flex-shrink: 0;
}
.header-icon-btn:hover {
  color: #666;
}
.header-icon-btn svg {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
  pointer-events: none;
}
@media (min-width: 1025px) and (max-width: 1550px) {
  .header-phone {
    margin-right: 20px;
  }
}
@media (min-width: 1025px) and (max-width: 1350px) {
  .header .wrapper {
    padding: 0 15px;
  }
  .header-nav .main-menu > li > a, .header-nav .main-menu > li > button, .header-phone {
    font-size: 15px;
  }
  .header-icon-btn {
    width: 30px;
    height: 30px;
  }
  .header-icon-btn svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 1025px) and (max-width: 1150px) {
  .header .logo img {
    height: 26px;
  }
  .header-nav .main-menu {
    gap: 8px;
  }
  .header-nav .main-menu > li > a, .header-nav .main-menu > li > button {
    font-size: 14px;
  }
  .header-phone {
    font-size: 0;
    gap: 0;
    margin-right: 10px;
  }
  .header-phone svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 1024px) {
  .header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    padding: 0;
    background: #fff;
  }
  .header .wrapper {
    background: #fff;
    padding: 0 16px;
    border-bottom: 1px solid #e7e7e7;
  }
  .header-inner {
    display: flex;
    align-items: center;
    height: 61px;
  }
  .header-right {
    order: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    margin-right: 0;
  }
  .header-phone {
    display: none !important;
  }
  .header-icon-btn,
  .header .search-toggle {
    width: 30px;
    height: 30px;
    background: #F4F4F4;
    border-radius: 50px;
    padding: 0;
  }
  .header-icon-btn svg,
  .header .search-toggle svg {
    width: 22px;
    height: 22px;
  }
  .header .search-toggle {
    background: transparent;
  }
  .header-nav {
    order: 5;
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: #fff;
    display: none !important;
    flex-direction: column;
    overflow-y: auto;
    border-top: 1px solid #E8E8E8;
  }
  .header-nav.open {
    display: flex !important;
  }
  .header-nav .main-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 12px 0 40px;
    margin: 0;
    width: 100%;
    gap: 0;
  }
  .header-nav .main-menu > li.main-menu-item--home {
    display: list-item;
  }
  .header-nav .main-menu > li {
    width: 100%;
    border-bottom: 1px solid #E8E8E8;
  }
  .header-nav .main-menu > li > a,
  .header-nav .main-menu > li > a.main-menu-item,
  .header-nav .main-menu > li > button,
  .header-nav .main-menu > li > button.main-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px 20px;
    font-family: "Geologica", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #151515;
    text-align: center;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: color 0.3s, background 0.3s;
  }
  .header-nav .main-menu > li ul {
    display: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
    background: #fafafa;
    gap: 0;
  }
  .header-nav .main-menu > li ul li {
    border-bottom: 1px solid #E8E8E8;
  }
  .header-nav .main-menu > li ul li:last-child {
    border-bottom: none;
  }
  .header-nav .main-menu > li ul li a {
    padding: 18px 20px;
    font-size: 16px;
    color: #555;
  }
  .header-nav .main-menu > li.mobile-open > ul {
    display: flex;
  }
}
@media (max-width: 480px) {
  .header .logo img {
    height: 20px;
  }
  .header-right {
    gap: 6px;
  }
}

@media (max-width: 1024px) {
  .logo {
    order: 1;
    margin: 0;
  }
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 20px;
}
.burger-btn.open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.open .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-btn.open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .burger-btn {
    order: 4;
    margin-left: 6px;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent !important;
    padding: 0;
  }
  .burger-btn .burger-icon-open {
    display: block;
  }
  .burger-btn .burger-icon-close {
    display: none;
  }
  .burger-btn.open .burger-icon-open {
    display: none;
  }
  .burger-btn.open .burger-icon-close {
    display: block;
  }
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #151515;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .burger-line {
    display: none !important;
  }
}

.burger-icon-close {
  display: none;
}

.burger-btn.open .burger-icon-open {
  display: none;
}

.burger-btn.open .burger-icon-close {
  display: block;
}

.lang-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 15px;
  font-family: "Geologica", sans-serif;
}
@media (min-width: 1025px) and (max-width: 1350px) {
  .lang-wrap {
    margin-right: 10px;
  }
}
@media (max-width: 1024px) {
  .lang-wrap {
    display: none !important;
  }
}

.lang-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px 8px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  color: #151515;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.lang-trigger:hover {
  background: rgba(0, 139, 59, 0.06);
  border-color: rgba(0, 139, 59, 0.18);
  color: #008b3b;
}
.lang-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 139, 59, 0.18);
}
.lang-trigger__chevron {
  flex: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-wrap.is-open .lang-trigger {
  background: rgba(0, 139, 59, 0.08);
  border-color: rgba(0, 139, 59, 0.22);
  color: #008b3b;
}
.lang-wrap.is-open .lang-trigger .lang-trigger__chevron {
  transform: rotate(180deg);
}
@media (min-width: 1025px) and (max-width: 1350px) {
  .lang-trigger {
    font-size: 15px;
    padding: 7px 12px 7px 14px;
  }
}

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  min-width: 210px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.06);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(20, 20, 20, 0.04), 0 18px 48px rgba(20, 20, 20, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.22s;
}
.lang-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid rgba(20, 20, 20, 0.06);
  border-left: 1px solid rgba(20, 20, 20, 0.06);
  border-top-left-radius: 3px;
  transform: rotate(45deg);
}
.lang-wrap.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}
.lang-menu__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 400;
  color: #2a2a2a;
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.lang-menu__item + .lang-menu__item {
  margin-top: 2px;
}
.lang-menu__item:hover, .lang-menu__item:focus-visible {
  background: rgba(0, 139, 59, 0.08);
  color: #008b3b;
  transform: translateX(2px);
}
.lang-menu__item:hover .lang-menu__code, .lang-menu__item:focus-visible .lang-menu__code {
  border-color: rgba(0, 139, 59, 0.25);
  color: #008b3b;
  background: rgba(0, 139, 59, 0.04);
}
.lang-menu__item.is-active {
  background: linear-gradient(135deg, rgba(0, 139, 59, 0.14), rgba(0, 139, 59, 0.04));
  color: #008b3b;
  font-weight: 500;
}
.lang-menu__item.is-active .lang-menu__code {
  background: #008b3b;
  color: #fff;
  border-color: #008b3b;
}
.lang-menu__item.is-active .lang-menu__check {
  opacity: 1;
  transform: scale(1);
}
.lang-menu__code {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  padding: 0 6px;
  background: rgba(20, 20, 20, 0.03);
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #4f4f4f;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lang-menu__name {
  flex: 1;
  line-height: 1.2;
}
.lang-menu__check {
  flex: none;
  opacity: 0;
  transform: scale(0.6);
  color: #008b3b;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-reduced-motion: reduce) {
  .lang-trigger,
  .lang-trigger__chevron,
  .lang-menu,
  .lang-menu__item,
  .lang-menu__code,
  .lang-menu__check {
    transition: none !important;
    transform: none !important;
  }
  .lang-wrap.is-open .lang-menu {
    transform: none !important;
  }
}
.select-wrap.lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
  min-width: 92px;
  padding: 0;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 50px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.3s ease, transform 0.25s ease;
}
.select-wrap.lang::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(14, 97, 49, 0.06), rgba(0, 139, 59, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.select-wrap.lang::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #4f4f4f;
  border-bottom: 2px solid #4f4f4f;
  border-radius: 1px;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
}
.select-wrap.lang:hover {
  border-color: #cecece;
  box-shadow: 0 6px 18px rgba(14, 97, 49, 0.08);
  transform: translateY(-1px);
}
.select-wrap.lang:hover::before {
  opacity: 1;
}
.select-wrap.lang:hover::after {
  border-color: #008b3b;
}
.select-wrap.lang:focus-within {
  border-color: #008b3b;
  box-shadow: 0 8px 22px rgba(0, 139, 59, 0.18);
}
.select-wrap.lang:focus-within::before {
  opacity: 1;
}
.select-wrap.lang:focus-within::after {
  border-color: #008b3b;
  transform: translateY(-30%) rotate(-135deg);
}
.select-wrap.lang .lang-select {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 38px 0 20px;
  margin: 0;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #141414;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: color 0.25s ease;
}
.select-wrap.lang .lang-select:hover {
  color: #008b3b;
}
.select-wrap.lang .lang-select:focus {
  color: #008b3b;
}
.select-wrap.lang .lang-select option {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #141414;
  background-color: #fff;
}
.select-wrap.lang .lang-select option:checked {
  background: linear-gradient(0deg, rgba(0, 139, 59, 0.12), rgba(0, 139, 59, 0.12)) #fff;
  color: #008b3b;
  font-weight: 600;
}
.select-wrap.lang .lang-select option:hover {
  background-color: rgba(0, 139, 59, 0.06);
  color: #008b3b;
}
@media (max-width: 1024px) {
  .select-wrap.lang {
    height: 40px;
    min-width: 80px;
  }
  .select-wrap.lang .lang-select {
    font-size: 14px;
    padding: 0 34px 0 16px;
  }
}
@media (max-width: 767px) {
  .select-wrap.lang {
    height: 36px;
    min-width: 72px;
  }
  .select-wrap.lang::after {
    right: 12px;
    width: 6px;
    height: 6px;
  }
  .select-wrap.lang .lang-select {
    font-size: 13px;
    padding: 0 30px 0 14px;
    letter-spacing: 0.3px;
  }
}

.confirm-city {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f9f9f9;
  border-top: 1px solid #e8e8e8;
  padding: 10px 40px;
  font-size: 13px;
}
.confirm-city.active {
  display: flex;
}
.confirm-city-title {
  display: flex;
  gap: 6px;
  color: #555;
  margin: 0;
}
.confirm-city-title strong {
  color: #151515;
  font-weight: 600;
}
.confirm-city-btns {
  display: flex;
  gap: 8px;
}
@media (max-width: 1024px) {
  .confirm-city-btns {
    flex-wrap: wrap;
  }
}
.confirm-city-agree, .confirm-city-another {
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.confirm-city-agree {
  background: #151515;
  color: #fff;
}
.confirm-city-agree:hover {
  background: #333;
}
.confirm-city-another {
  background: #e8e8e8;
  color: #151515;
}
.confirm-city-another:hover {
  background: #d0d0d0;
}
@media (max-width: 1024px) {
  .confirm-city {
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
}

.mobile-menu-footer {
  display: none;
}
@media (max-width: 1024px) {
  .mobile-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin-top: auto;
    border-top: 1px solid #E8E8E8;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 480px) {
  .mobile-menu-footer {
    padding: 18px 16px;
  }
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #151515;
  text-decoration: none;
}
@media (max-width: 480px) {
  .mobile-phone {
    font-size: 15px;
  }
  .mobile-phone svg {
    width: 20px;
    height: 20px;
  }
}

.mobile-lang-toggle {
  display: flex;
  border: 1px solid #E8E8E8;
  border-radius: 40px;
  padding: 2px;
  background: #fff;
}
.mobile-lang-toggle .lang-btn {
  padding: 6px 18px;
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #151515;
  text-decoration: none;
  border-radius: 40px;
  transition: 0.2s;
}
.mobile-lang-toggle .lang-btn.active {
  background: #0FA85F;
  color: #fff;
}

@media (max-width: 1024px) {
  body {
    padding-top: 61px;
  }
  body.menu-open .widget__container {
    display: none !important;
  }
  .header-icon-btn.active {
    background: #0FA85F;
    color: #fff;
    border-radius: 50%;
  }
  .header-icon-btn.active svg path {
    stroke: #fff;
  }
  .header-icon-btn.active:hover {
    color: #fff;
  }
  .header-icon-btn.active:hover svg path {
    stroke: #fff;
  }
}
@media (max-width: 1024px) {
  .has-dropdown.mobile-open > .main-menu-btn,
  .has-dropdown.mobile-open > a {
    background: none !important;
    color: #999999 !important;
  }
}
.header .search-toggle {
  transition: background 0.2s, color 0.2s;
}
.header .search-toggle.open {
  background: #0FA85F;
}
.header .search-toggle.open svg circle,
.header .search-toggle.open svg path {
  stroke: #fff;
}

.header-search {
  position: absolute;
  top: calc(100% + 8px);
  right: 25px;
  width: min(560px, 100vw - 32px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  overflow: hidden;
}
.header-search.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .header-search {
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
}
.header-search__form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.header-search__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #151515;
}
.header-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  color: #151515;
  background: transparent;
  padding: 6px 4px;
  min-width: 0;
}
.header-search__input::placeholder {
  color: #9a9a9a;
}
.header-search__clear {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f4f4f4;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.header-search__clear:hover {
  background: #e8e8e8;
}
.header-search__clear.visible {
  display: flex;
}
.header-search__results {
  max-height: min(72vh, 540px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #cecece transparent;
}
.header-search__results::-webkit-scrollbar {
  width: 6px;
}
.header-search__results::-webkit-scrollbar-thumb {
  background: #cecece;
  border-radius: 3px;
}
.header-search__hint {
  padding: 28px 20px;
  text-align: center;
  color: #9a9a9a;
  font-size: 14px;
}
.header-search__hint[data-state=loading]::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid #e0e0e0;
  border-top-color: #0FA85F;
  border-radius: 50%;
  animation: header-search-spin 0.7s linear infinite;
  vertical-align: -2px;
}
.header-search__group {
  padding: 8px 0;
}
.header-search__group + .header-search__group {
  border-top: 1px solid #f1f1f1;
}
.header-search__group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 6px;
  font-family: "Geologica", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9a9a9a;
  margin: 0;
}
.header-search__group-title a {
  color: #0FA85F;
  text-decoration: none;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.header-search__group-title a:hover {
  text-decoration: underline;
}
.header-search__item {
  display: flex;
  gap: 12px;
  padding: 10px 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  cursor: pointer;
  align-items: center;
}
.header-search__item:hover, .header-search__item.is-active {
  background: #f7faf8;
}
.header-search__item mark {
  background: rgba(15, 168, 95, 0.15);
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
}
.header-search__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-search__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.header-search__thumb--placeholder svg {
  width: 24px;
  height: 24px;
  color: #c5c5c5;
}
.header-search__body {
  flex: 1;
  min-width: 0;
}
.header-search__title {
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #151515;
  margin: 0 0 3px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.header-search__meta {
  font-size: 13px;
  color: #6a6a6a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.3;
}
.header-search__meta span {
  display: inline-flex;
  align-items: center;
}
.header-search__meta span + span::before {
  content: "·";
  margin-right: 8px;
  color: #c5c5c5;
}
.header-search__meta .header-search__done {
  background: rgba(15, 168, 95, 0.12);
  color: #0a7a44;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 9px;
  border-radius: 50px;
  line-height: 1.5;
}
.header-search__meta .header-search__done::before {
  content: none;
}
.header-search__excerpt {
  font-size: 13px;
  color: #6a6a6a;
  margin: 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.header-search__footer {
  padding: 12px 20px;
  border-top: 1px solid #f1f1f1;
  text-align: center;
}
.header-search__footer a {
  color: #0FA85F;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.header-search__footer a:hover {
  text-decoration: underline;
}
.header-search__popular {
  padding: 16px 20px 20px;
}
.header-search__popular-title {
  font-family: "Geologica", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9a9a9a;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-search__recent-clear {
  border: none;
  background: none;
  color: #0FA85F;
  font-family: "Geologica", sans-serif;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  padding: 0;
}
.header-search__recent-clear:hover {
  text-decoration: underline;
}
.header-search__popular + .header-search__popular {
  padding-top: 0;
}
.header-search__correct {
  padding: 12px 20px 4px;
  font-size: 13px;
  color: #6a6a6a;
  line-height: 1.4;
}
.header-search__popular-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.header-search__chip {
  border: 1px solid #ececec;
  background: #fff;
  color: #151515;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.header-search__chip:hover {
  background: #eef7f1;
  border-color: #0FA85F;
  color: #0d8e50;
}

.header-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.header-search-overlay.open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1025px) {
  .header-search-overlay {
    display: none;
  }
}

@keyframes header-search-spin {
  to {
    transform: rotate(360deg);
  }
}
.main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .main-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.main-menu > li {
  position: relative;
}
@media (max-width: 1024px) {
  .main-menu > li {
    margin-right: 0;
  }
}
.main-menu > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  white-space: nowrap;
}
@media (max-width: 1300px) {
  .main-menu > li a {
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .main-menu > li a {
    font-size: 13px;
  }
}
@media (max-width: 1100px) {
  .main-menu > li a {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .main-menu > li a {
    font-size: 18px;
  }
}
.main-menu > li a img {
  margin-left: 4px;
}
.main-menu > li a:hover {
  color: #008b3b;
}
.main-menu > li button {
  font-size: 16px;
  white-space: nowrap;
  position: relative;
}
.main-menu > li .sub-menu {
  position: absolute;
  top: 90%;
  left: 0;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: 0.1s;
  background: white;
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 1px 1px 20px 0px rgba(0, 0, 0, 0.11);
  padding: 20px 15px;
}
@media (max-width: 1024px) {
  .main-menu > li .sub-menu {
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    background: none;
    position: static;
    margin-top: 15px;
    display: none;
  }
  .main-menu > li .sub-menu.open {
    display: block;
  }
}
.main-menu > li .sub-menu li {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .main-menu > li .sub-menu li {
    margin-bottom: 15px;
  }
}
.main-menu > li .sub-menu li:last-child {
  margin-bottom: 0;
}
.main-menu > li:hover button {
  color: #008b3b;
}
.main-menu > li:hover button:after {
  border-top-color: #008b3b;
}
@media (min-width: 1025px) {
  .main-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}

.burger-btn {
  display: flex;
}

.has-dropdown {
  position: static;
}

.mega-dropdown {
  position: fixed;
  top: 121px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 200;
  width: 100%;
  max-width: 1480px;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.mega-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -46px;
  height: 46px;
  background: transparent;
}
.mega-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1480px) {
  .mega-dropdown {
    max-width: calc(100% - 20px);
    gap: 12px;
  }
}
@media (max-width: 1280px) {
  .mega-dropdown {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .mega-dropdown {
    display: none;
  }
}

.mega-card {
  display: flex;
  flex-direction: column;
  aspect-ratio: 212/184;
  padding: 32px 13px;
  text-decoration: none;
  background: #fff;
  border: 1px solid #f0f0f0;
  box-sizing: border-box;
  border-radius: 0;
  min-width: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mega-card:hover {
  border-color: #d9d9d9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.mega-card-all {
  background: #0fa85f;
  border-color: #0fa85f;
}
.mega-card-all:hover {
  background: #0d9854;
  border-color: #0d9854;
  box-shadow: 0 4px 16px rgba(15, 168, 95, 0.25);
}
.mega-card-all .mega-card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.mega-card-all .mega-card-title {
  color: #fff;
}
.mega-card-all .mega-card-count {
  color: #FFFFFF;
}
.mega-card--wide {
  order: 10;
  grid-column-start: 1;
}
.mega-card-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf2ed;
  color: #0fa85f;
  flex-shrink: 0;
}
@media (max-width: 1480px) {
  .mega-card-icon {
    width: 40px;
    height: 40px;
  }
}
.mega-card-title {
  font-family: "TikTok Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #151515;
  line-height: 1.3;
  margin-top: 28px;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  white-space: normal !important;
  hyphens: auto;
}
@media (max-width: 1480px) {
  .mega-card-title {
    font-size: 14px;
    margin-top: 20px;
  }
}
@media (max-width: 1280px) {
  .mega-card-title {
    font-size: 14px;
    margin-top: 16px;
  }
}
.mega-card-count {
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #607393;
  margin-top: 20px;
}
@media (max-width: 1480px) {
  .mega-card-count {
    font-size: 12px;
    margin-top: 14px;
  }
}
@media (max-width: 1280px) {
  .mega-card-count {
    margin-top: 10px;
  }
}
@media (max-width: 1480px) {
  .mega-card {
    padding: 24px 12px;
  }
}
@media (max-width: 1280px) {
  .mega-card {
    padding: 20px 12px;
    aspect-ratio: unset;
  }
}

@media (max-width: 1024px) {
  .has-dropdown.mobile-open .mega-dropdown {
    display: flex;
    flex-direction: column;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    gap: 0;
    width: 100%;
    padding: 6px 0;
    margin-bottom: 0;
    background: #fafafa;
  }
  .has-dropdown.mobile-open .mega-card {
    aspect-ratio: unset;
    padding: 13px 20px;
    background: transparent;
    border: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .has-dropdown.mobile-open .mega-card:hover {
    box-shadow: none;
  }
  .has-dropdown.mobile-open .mega-card-icon, .has-dropdown.mobile-open .mega-card-count {
    display: none;
  }
  .has-dropdown.mobile-open .mega-card-title {
    font-family: "Geologica", sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    color: #555;
    margin-top: 0;
  }
  .has-dropdown.mobile-open .mega-card-all {
    background: transparent;
  }
  .has-dropdown.mobile-open .mega-card-all .mega-card-title {
    color: #151515;
  }
}
.city-dropdown {
  position: absolute;
  top: 100px;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  min-width: 160px;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s, visibility 0.15s, transform 0.15s;
}
@media (max-width: 767px) {
  .city-dropdown {
    top: 75px;
    right: 10px;
  }
}
.city-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.city-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
  border: none;
  background: none;
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 300;
  cursor: pointer;
  color: #151515;
  transition: color 0.15s;
  gap: 8px;
  text-align: left;
}
.city-option:hover {
  color: #0fa85f;
}
.city-option.active {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 35px;
  letter-spacing: 0%;
  color: #0FA85F;
}

.city-check {
  color: #0fa85f;
  font-size: 14px;
  display: flex;
  align-items: center;
}

html.overflow,
body.overflow {
  overflow: hidden !important;
  touch-action: none;
}

.burger-panel {
  position: fixed;
  top: 121px;
  left: 0;
  right: 0;
  z-index: 190;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  max-height: calc(100vh - 121px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.burger-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.burger-panel .wrapper {
  padding: 0;
  background: transparent;
}
@media (max-width: 600px) {
  .burger-panel .wrapper {
    padding: 16px;
  }
}
.burger-panel-cols {
  display: grid;
  grid-template-columns: 202fr 202fr 568fr 314fr;
  gap: 12px;
  align-items: start;
}
@media (max-width: 1200px) {
  .burger-panel-cols {
    grid-template-columns: 0.5fr 0.5fr 1fr;
  }
}
@media (max-width: 768px) {
  .burger-panel-cols {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .burger-panel-cols {
    grid-template-columns: 1fr;
  }
}
.burger-panel-col {
  background: #f6f7f7;
  border-radius: 0;
  padding: 30px 29px;
  aspect-ratio: 202/389;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.burger-panel-col h4 {
  font-family: "TikTok Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #151515;
  margin: 0;
}
.burger-panel-col-contacts {
  padding: 30px 0 30px 45px;
  aspect-ratio: 568/389;
  position: relative;
  overflow: hidden;
  min-height: max-content;
}
.burger-panel-col-contacts > *:not(.burger-panel-social) {
  max-width: 318px;
}
.burger-panel-col-contacts .burger-panel-col-top {
  margin-bottom: 27px;
}
@media (max-width: 1500px) {
  .burger-panel-col-contacts {
    overflow: visible;
  }
  .burger-panel-col-contacts > *:not(.burger-panel-social) {
    max-width: 270px;
  }
}
@media (max-width: 600px) {
  .burger-panel-col-contacts {
    aspect-ratio: auto;
    padding-bottom: 40px;
  }
}
.burger-panel-col-banner {
  aspect-ratio: 314/389;
  border-radius: 0;
  overflow: hidden;
  min-height: 200px;
  background: #f0f0f0;
  padding: 0;
}
.burger-panel-col-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1200px) {
  .burger-panel-col-banner {
    display: none;
  }
}
.burger-panel-col-top {
  display: flex;
  flex-direction: column;
  gap: 27px;
  margin-bottom: 25px;
}
.burger-panel-col-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3ed;
  border-radius: 8px;
  color: #0fa85f;
  flex-shrink: 0;
}
.burger-panel-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.burger-panel-links a {
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.burger-panel-links a:hover {
  color: #0fa85f;
}
.burger-panel-contacts {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.burger-panel-phone {
  font-family: "TikTok Sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #151515;
  text-decoration: none;
  display: block;
  margin-bottom: 17px;
}
.burger-panel-phone:hover {
  color: #0fa85f;
}
.burger-panel-email {
  font-family: "TikTok Sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #151515;
  text-decoration: none;
  margin-bottom: 20px;
}
.burger-panel-email:hover {
  color: #0fa85f;
}
.burger-panel-desc {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #555;
  margin: 0 0 30px;
  line-height: 1.5;
}
.burger-panel-offices-label {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #555;
  margin: 0 0 18px;
}
.burger-panel-office {
  font-family: "TikTok Sans", sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: #151515;
  margin: 0;
  line-height: 1.3;
}
.burger-panel-all-contacts {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 41px;
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #0fa85f;
  text-decoration: none;
  transition: opacity 0.2s;
}
.burger-panel-all-contacts:hover {
  opacity: 0.8;
}
.burger-panel-social {
  position: absolute;
  right: 57px;
  top: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
}
.burger-panel-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.burger-panel-social-icon {
  width: 73px;
  height: 73px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger-panel-social-icon--tg {
  background: #28a1f2;
}
.burger-panel-social-icon--ig {
  background: #f3378f;
}
.burger-panel-social-icon svg {
  color: #fff;
}
.burger-panel-social-handle {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #555;
}
.burger-panel-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}
.burger-panel-overlay.open {
  opacity: 1;
  visibility: visible;
}

.header.burger-open {
  position: relative;
  z-index: 185;
}

.map-mask-wrap,
.map-mask-host {
  position: relative;
  isolation: isolate;
}
.map-mask-wrap > iframe,
.map-mask-host > iframe {
  display: block;
}
.map-mask-wrap > .map-mask,
.map-mask-host > .map-mask {
  position: absolute;
  inset: 0;
  z-index: 1001;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.map-mask-wrap > .map-mask:hover,
.map-mask-host > .map-mask:hover {
  background: rgba(0, 0, 0, 0.06);
}
.map-mask-wrap > .map-mask:hover .map-mask__hint,
.map-mask-host > .map-mask:hover .map-mask__hint {
  opacity: 1;
  transform: translateY(0);
}
.map-mask-wrap.map-mask--active > .map-mask,
.map-mask-host.map-mask--active > .map-mask {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.map-mask__hint {
  background: rgba(255, 255, 255, 0.94);
  color: #151515;
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.footer {
  font-family: "Geologica", sans-serif;
  margin-top: 75px;
  background: #F6F7F7;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.footer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 28px;
}
.footer-logo-link img {
  height: 46px;
  display: block;
}
.footer-phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-phone-big {
  font-size: 30px;
  font-weight: 400;
  color: #151515;
  text-decoration: none;
}
.footer-phone-big:hover {
  color: #666;
}
.footer-schedule {
  font-size: 15px;
  font-weight: 300;
  color: #555;
}
.footer-divider {
  height: 1px;
  background: #e8e8e8;
  width: 100%;
  position: relative;
}
.footer-cols {
  display: grid;
  grid-template-columns: 102fr 142fr 252fr 224fr auto;
  gap: 74px;
  padding: 40px 0 36px;
  align-items: start;
}
.footer-col-title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #151515;
  margin: 0 0 16px;
}
.footer-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-col-list li {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.25;
}
.footer-col-list li a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col-list li a:hover {
  color: #151515;
}
.footer-col-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-col-social .social-menu {
  position: static;
  display: grid;
  grid-template-columns: 55px 55px 55px 55px;
  gap: 12px;
  flex-wrap: unset;
}
.footer-col-social .social-menu li {
  margin: 0;
}
.footer-col-social .social-menu li a {
  width: 55px;
  height: 55px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 0;
}
.footer-col-social .social-menu li a:after {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: none;
}
.footer-col-social .social-menu li:nth-child(1) a:after {
  background-image: url("/local/templates/svdom_new/css/../img/social-instagram.svg");
}
.footer-col-social .social-menu li:nth-child(2) a:after {
  background-image: url("/local/templates/svdom_new/css/../img/social-telegram.svg");
}
.footer-col-social .social-menu li:nth-child(3) a:after {
  background-image: url("/local/templates/svdom_new/css/../img/social-facebook.svg");
}
.footer-col-social .social-menu li:nth-child(4) a:after {
  background-image: url("/local/templates/svdom_new/css/../img/social-youtube.svg");
}
.footer-col-social .social-menu li:hover:nth-child(1) a:after {
  background-image: url("/local/templates/svdom_new/css/../img/social-instagram.svg");
}
.footer-col-social .social-menu li:hover:nth-child(2) a:after {
  background-image: url("/local/templates/svdom_new/css/../img/social-telegram.svg");
}
.footer-col-social .social-menu li:hover:nth-child(3) a:after {
  background-image: url("/local/templates/svdom_new/css/../img/social-facebook.svg");
}
.footer-col-social .social-menu li:hover:nth-child(4) a:after {
  background-image: url("/local/templates/svdom_new/css/../img/social-youtube.svg");
}
.footer-copy {
  padding: 18px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-copy-name {
  font-size: 13px;
  font-weight: 300;
  color: #555;
  margin: 0;
}
.footer-copy p,
.footer-copy .bott_copy_txt {
  font-size: 13px;
  color: #aaa;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .footer {
    margin-top: 48px;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-col-social {
    align-items: flex-start;
  }
  .footer-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-phone-block {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-top: 32px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .footer .wrapper {
    padding: 0 16px;
  }
  .footer-head {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 24px 0 20px;
  }
  .footer-logo-link {
    display: none;
  }
  .footer-phone-block {
    align-items: center;
    gap: 2px;
  }
  .footer-phone-big {
    font-size: 26px;
    font-weight: 400;
  }
  .footer-schedule {
    font-size: 13px;
  }
  .footer-cols {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 0;
    padding: 0;
  }
  .footer-col:nth-child(1) {
    order: 4;
  }
  .footer-col:nth-child(2) {
    order: 3;
  }
  .footer-col:nth-child(3) {
    order: 2;
  }
  .footer-col:nth-child(4) {
    order: 1;
  }
  .footer-col-social {
    order: -1;
    align-items: center;
    padding: 4px 0 24px;
    width: 100%;
  }
  .footer-col-social .social-menu {
    grid-template-columns: repeat(4, 55px);
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
  }
  .footer-col:not(.footer-col-social) {
    border-bottom: 1px solid #CBCBCB;
    width: 100%;
  }
  .footer-col-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    margin: 0;
    cursor: pointer;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: #151515;
    text-transform: uppercase;
  }
  .footer-col-title::after {
    content: "";
    display: block;
    width: 16px;
    height: 9px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='9' viewBox='0 0 16 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.353516 0.353516L7.97705 7.97681L15.6003 0.353516' stroke='black'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
  }
  .footer-col.open .footer-col-title::after {
    transform: rotate(180deg);
  }
  .footer-col.open .footer-col-list {
    display: flex;
  }
  .footer-col-list {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 20px;
  }
  .footer-col-list li {
    font-size: 14px;
  }
  .footer-divider {
    display: none;
  }
  .footer-copy {
    padding: 0 0 20px;
  }
}
@media (max-width: 480px) {
  .footer-col-social .social-menu {
    grid-template-columns: repeat(4, 55px);
    gap: 6px;
  }
  .footer-col-social .social-menu li a,
  .footer-col-social .social-menu li a:after {
    width: 55px;
    height: 55px;
  }
}

.promo-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-popup {
  background: #fff;
  width: 581px;
  max-width: 92vw;
  height: 336px;
  box-sizing: border-box;
  padding-top: 112px;
  position: relative;
}
.city-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
}
.city-popup h4 {
  font-family: "TikTok Sans", sans-serif;
  font-weight: 500;
  font-size: 35px;
  line-height: 43px;
  color: #151515;
  margin: 0 0 22px;
  text-align: center;
}
.city-popup-btns {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: flex-start;
}
.city-popup-btn {
  border-radius: 80px;
  font-family: "Geologica", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.city-popup-btn--yes {
  width: 151px;
  height: 50px;
  background: #0a8449;
  color: #fff;
}
.city-popup-btn--no {
  width: 151px;
  height: 48px;
  margin-top: 2px;
  background: transparent;
  border: 1px solid #DFDFDF;
  color: #151515;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.coupon-popup {
  background: #fff;
  width: 970px;
  max-width: 95vw;
  min-height: 545px;
  max-height: 90vh;
  display: flex;
  position: relative;
  overflow: hidden;
}
.coupon-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  z-index: 1;
}
.coupon-popup-image {
  width: 394px;
  flex-shrink: 0;
  background: #d8d8d8 url("/upload/coupon_popup_image.jpg") center/cover no-repeat;
}
.coupon-popup-content {
  flex: 1;
  padding: 61px 58px 50px 55px;
  display: flex;
  flex-direction: column;
}
.coupon-popup-content h2 {
  font-family: "TikTok Sans", sans-serif;
  font-weight: 500;
  font-size: 43px;
  line-height: 50px;
  color: #151515;
  margin: 0 0 30px;
}
.coupon-popup-body {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: #555555;
  margin: 0 0 27px;
}
.coupon-popup-subq {
  font-family: "TikTok Sans", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #151515;
  margin: 0 0 28px;
}
.coupon-popup-cta {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  color: #555555;
  margin: 0 0 26px;
}
.coupon-popup-btn {
  height: 40px;
  border-radius: 80px;
  font-family: "Geologica", sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
}
.coupon-popup-btn--primary {
  width: 154px;
  background: #0fa85f;
  color: #fff;
  border: none;
  margin-bottom: 41px;
}
.coupon-popup-btn--secondary {
  width: 167px;
  background: transparent;
  color: #0fa85f;
  border: 1px solid #0fa85f;
}

@media (max-height: 620px) {
  .coupon-popup {
    max-height: 90vh;
    overflow-y: auto;
  }
  .coupon-popup-image {
    display: none;
  }
  .coupon-popup-content h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 12px;
  }
  .coupon-popup-body {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .coupon-popup-subq {
    margin-bottom: 12px;
  }
  .coupon-popup-cta {
    margin-bottom: 14px;
  }
  .coupon-popup-btn--primary {
    margin-bottom: 16px;
  }
}
@media (max-width: 860px) {
  .coupon-popup {
    flex-direction: column;
    width: 90vw;
    height: auto;
    max-height: 97vh;
    overflow-y: auto;
  }
  .coupon-popup-close {
    top: 15px;
    right: 15px;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }
  .coupon-popup-close svg {
    width: 16px;
    height: 16px;
  }
  .coupon-popup-image {
    width: 100%;
    height: 280px;
  }
  .coupon-popup-content {
    padding: 30px 24px;
    text-align: center;
    align-items: center;
  }
  .coupon-popup-content h2 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 20px;
  }
  .coupon-popup-body {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 25px;
  }
  .coupon-popup-subq {
    display: none;
  }
  .coupon-popup-cta {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .coupon-popup-btn {
    height: 50px;
    align-self: center;
  }
  .coupon-popup-btn--primary {
    margin-bottom: 30px;
  }
}
@media (max-width: 560px) {
  .promo-overlay {
    align-items: center;
  }
  .city-popup {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0 15px;
    padding: 70px 50px;
    margin: 0 10px;
  }
  .city-popup h4 {
    font-family: TikTok Sans;
    font-weight: 500;
    font-size: 35px;
    line-height: 43px;
    text-align: center;
    margin-bottom: 35px;
  }
  .city-popup-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .city-popup-btn--yes {
    width: 100%;
    height: 48px;
  }
  .city-popup-btn--no {
    width: 100%;
    height: 48px;
    margin-top: 0;
    flex: none;
    justify-content: space-around;
  }
  .coupon-popup {
    width: 100%;
    margin: 0 10px;
  }
  .coupon-popup-image {
    height: 346px;
  }
  .coupon-popup-content {
    padding: 35px 15px 0;
  }
  .coupon-popup-content h2 {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 35px;
    line-height: 43px;
    text-align: center;
  }
  .coupon-popup-body {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 18px;
  }
  .coupon-popup-subq {
    display: none;
  }
  .coupon-popup-cta {
    margin-bottom: 21px;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
  }
  .coupon-popup-btn {
    font-size: 16px;
  }
  .coupon-popup-btn--primary {
    margin-bottom: 25px;
  }
}
@media (max-width: 400px) {
  .city-popup-btn--yes, .city-popup-btn--no {
    height: 44px;
    font-size: 15px;
  }
  .coupon-popup-content {
    padding: 20px 7px 14px;
  }
  .coupon-popup-body {
    font-size: 14px;
    margin-bottom: 14px;
    padding: 0 30px;
  }
  .coupon-popup-subq {
    display: none;
  }
  .coupon-popup-cta {
    font-size: 13px;
    margin-bottom: 16px;
    padding: 0 30px;
  }
  .coupon-popup-btn {
    height: 46px;
  }
}
/* ================================================================
   HOME PAGE — стили для главной страницы
   ================================================================ */
/* ---------- Переменные ---------- */
:root {
  --home-green: #0FA85F;
  --home-dark: #151515;
  --home-grey-bg: #F4F4F6;
  --home-card-bg: #F4F4F4;
  --home-text: #555555;
  --home-white: #FFFFFF;
  --home-radius: 20px;
  --home-radius-pill: 80px;
  --home-gap: 22px;
  --home-section: 80px;
}

.home-section-title {
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--home-dark);
  line-height: 1.1;
  margin-bottom: 40px;
}
.home-section-title span {
  display: block;
}

.residents-stats {
  padding: var(--home-section) 0;
}
.residents-stats__inner {
  display: flex;
  gap: 20px;
  min-height: 480px;
  align-items: stretch;
}
.residents-stats__left {
  flex: 0 0 380px;
  position: relative;
  background-color: #151515;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px 40px;
  z-index: 1;
}
.residents-stats__left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(21, 21, 21, 0.4);
  z-index: -1;
}
.residents-stats__right {
  flex: 1;
  background: #F4F4F6;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.rs-left__title {
  text-align: center;
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}
.rs-left__title span {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.rs-left__btn {
  width: 215px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #151515;
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 500;
  border-radius: 80px;
  text-decoration: none;
  transition: 0.3s;
}
.rs-left__btn:hover {
  background: #e8e8e8;
}

.rs-info {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.rs-info__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E1E2E5;
  color: #151515;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 25px;
  transition: 0.3s;
}
.rs-info__btn:hover {
  background: #d0d1d4;
}
.rs-info__title {
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 46px;
  font-weight: 500;
  color: #151515;
  line-height: 1.05;
  margin: 0 0 15px 0;
}
.rs-info__title span {
  color: #8E8E8E;
  font-weight: 400;
}
.rs-info__text {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #555555;
  line-height: 17px;
  margin: 0;
}
@media (max-width: 767px) {
  .rs-info__text {
    padding: 0px 70px;
  }
}

.rs-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rs-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 10px 11px;
  display: flex;
  align-items: center;
  gap: 26px;
  width: 440px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.04);
}
.rs-card--fast {
  margin-left: 40px;
}
.rs-card__image {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  background-color: #EAEAEA;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
}
.rs-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.rs-card__title {
  font-family: "TikTok Sans", "Geologica", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #151515;
  margin: 0 0 23px 0;
}
@media (max-width: 767px) {
  .rs-card__title {
    margin: 0 0 4px 0;
    font-weight: 400;
    font-size: 24px;
  }
}
.rs-card__text {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 17px;
  padding-right: 23px;
  margin: 0;
}

.atmosphere-section {
  padding: var(--home-section) 0;
}
.atmosphere-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.atmosphere-section__desc {
  font-family: "Outfit", "Geologica", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  color: var(--home-text);
  max-width: 510px;
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: 762fr 538fr;
  grid-template-rows: 610px 413px;
  gap: 22px;
}
.atmosphere-grid__item {
  display: block;
  border-radius: var(--home-radius);
  overflow: hidden;
  position: relative;
  background: var(--home-grey-bg);
}
.atmosphere-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.atmosphere-grid__item:hover img {
  transform: scale(1.04);
}
.atmosphere-grid__item .atm-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(21, 21, 21, 0.75) 0%, transparent 100%);
  color: #fff;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.3s;
}
.atmosphere-grid__item:hover .atm-overlay {
  opacity: 1;
}
.atmosphere-grid__item--full {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: 762fr 538fr;
  gap: 22px;
  overflow: visible;
  background: none;
  border-radius: 0;
}
.atmosphere-grid__item--row2 {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  overflow: visible;
  background: none;
  border-radius: 0;
}
.atmosphere-grid__sub {
  display: block;
  overflow: hidden;
  height: 100%;
  background: var(--home-grey-bg);
  position: relative;
}
.atmosphere-grid__sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.atmosphere-grid__sub:hover img {
  transform: scale(1.04);
}
.atmosphere-grid__sub .atm-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(21, 21, 21, 0.75) 0%, transparent 100%);
  color: #fff;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.3s;
}
.atmosphere-grid__sub:hover .atm-overlay {
  opacity: 1;
}

.instagram-section {
  padding: var(--home-section) 0;
}
.instagram-section__title {
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--home-dark);
  margin-bottom: 40px;
}
.instagram-section__placeholder {
  height: 260px;
  background: var(--home-grey-bg);
  border-radius: var(--home-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: "Geologica", sans-serif;
  color: var(--home-text);
}
@media (max-width: 767px) {
  .instagram-section__placeholder {
    display: grid;
    text-align: center;
  }
}
.instagram-section__placeholder a {
  color: var(--home-green);
  font-size: 18px;
  font-weight: 500;
}

.awards-section {
  padding: var(--home-section) 0;
}
.awards-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.awards-section__title {
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--home-dark);
}

.awards-slider-wrap {
  position: relative;
}

.awards-slider .slick-track {
  display: flex;
  gap: 11px;
}

.awards-slide__inner {
  overflow: hidden;
  background: var(--home-grey-bg);
  height: 413px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.awards-slide__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-dots {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 24px;
}
.awards-dots .slick-dots {
  position: static;
  display: flex !important;
  gap: 45px;
  justify-content: center;
}
.awards-dots .slick-dots li {
  width: 11px;
  height: 11px;
  margin: 0;
}
.awards-dots .slick-dots li button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background: #C3D5D0;
}
.awards-dots .slick-dots li button:before {
  display: none;
}
.awards-dots .slick-dots li.slick-active button {
  background: var(--home-green);
}

.interview {
  padding: var(--home-section) 0;
  margin-top: 0;
}
.interview .title-wrap {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 40px;
}
.interview .main-title {
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--home-dark);
  line-height: 1.1;
  margin: 0;
}
.interview .interview-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.interview .interview-item {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--home-grey-bg);
  aspect-ratio: 762/413;
}
.interview .interview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.interview .interview-item:hover img {
  transform: scale(1.04);
}

.main-news-section {
  padding: var(--home-section) 0;
}
.main-news-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.main-news-section__title {
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--home-dark);
  margin: 0;
}
.main-news-section__all {
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  color: #111;
  text-decoration: none;
  transition: opacity 0.3s;
}
.main-news-section__all:hover {
  opacity: 0.7;
}

.news-slider-wrap {
  position: relative;
}

.news-slider {
  display: block !important;
}
.news-slider .slick-track {
  display: flex !important;
  gap: 11px;
}
.news-slider .slick-slide {
  height: auto;
  display: flex !important;
  margin: 0 !important;
}

.news-card {
  overflow: hidden;
  background: #F7F7F7;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  width: 100%;
}
.news-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 426/281;
  overflow: hidden;
  background: #ddd;
}
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card__image img {
  transform: scale(1.04);
}
.news-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: "Geologica", sans-serif;
  font-size: 13px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
  white-space: nowrap;
}
.news-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}
.news-card__title {
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  line-height: 1.3;
  margin: 0;
}
.news-card__excerpt {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888;
  line-height: 1.4;
  margin: 0;
}

.news-dots {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 24px;
}
.news-dots .slick-dots {
  position: static;
  display: flex !important;
  gap: 45px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-dots .slick-dots li {
  width: 11px;
  height: 11px;
  margin: 0;
}
.news-dots .slick-dots li button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background: #C3D5D0;
  font-size: 0;
  border: none;
  cursor: pointer;
}
.news-dots .slick-dots li button:before {
  display: none;
}
.news-dots .slick-dots li.slick-active button {
  background: var(--home-green);
}

.contact-section {
  padding: var(--home-section) 0;
}
.contact-section__title {
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--home-dark);
  line-height: 1.1;
  margin-bottom: 40px;
}
.contact-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card,
.contact-form-card {
  background: #fff;
  border: 1px solid #E7E7E7;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 430px;
}

.contact-card__title {
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: var(--home-dark);
  line-height: 1.2;
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  border: 1px solid #D2D2D2;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31 37' fill='none'%3E%3Cpath d='M29.0725 21.8595L28.2952 23.2199C27.3289 24.9109 26.0988 26.4366 24.6511 27.7395L15.4401 36.0292L6.22902 27.7395C4.78145 26.4366 3.55127 24.9109 2.58502 23.2199L1.80764 21.8595C0.294003 19.2106 -0.293564 16.1328 0.137917 13.1125C0.448757 10.9366 1.2779 8.86714 2.55549 7.07853L3.06133 6.37032C5.16271 3.4284 8.24316 1.33105 11.7506 0.454196C14.173 -0.151399 16.7072 -0.151399 19.1296 0.454196C22.637 1.33105 25.7174 3.4284 27.8187 6.37032L28.3248 7.07853C29.6023 8.86714 30.4314 10.9366 30.7423 13.1125C31.1738 16.1328 30.5863 19.2106 29.0725 21.8595ZM15.4401 24.0171C20.1432 24.0171 23.9558 20.2044 23.9558 15.5012C23.9558 10.798 20.1432 6.98537 15.4401 6.98537C10.7369 6.98537 6.9242 10.798 6.9242 15.5012C6.9242 20.2044 10.7369 24.0171 15.4401 24.0171Z' fill='%230FA85F'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 36px;
}
.contact-card__info {
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--home-text);
  line-height: 1.6;
  flex: 1;
}
.contact-card__info a {
  color: var(--home-text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card__info a:hover {
  color: var(--home-green);
}
.contact-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--home-green);
  color: var(--home-green);
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 500;
  padding: 19px 28px;
  border-radius: 80px;
  width: fit-content;
  transition: all 0.2s;
  text-decoration: none;
}
.contact-card__btn:hover {
  background: var(--home-green);
  color: #fff;
}

.contact-form-card__title {
  font-family: "Outfit", "Geologica", sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: var(--home-dark);
}
.contact-form-card__desc {
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--home-text);
  line-height: 1.5;
}

.home-form__field-wrap {
  margin-bottom: 12px;
}
.home-form__field {
  width: 100%;
  height: 60px;
  background: #fff;
  border: 1px solid #B2B2B2;
  border-radius: 10px;
  padding: 0 20px;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  color: var(--home-dark);
}
.home-form__field:focus {
  outline: none;
  border-color: var(--home-green);
}
.home-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--home-green);
  color: #fff;
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 500;
  padding: 19px 28px;
  border-radius: 80px;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background 0.25s;
  margin-top: 10px;
}
.home-form__submit:hover {
  background: #0d9652;
}

* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 1440px) {
  .home-section-title {
    font-size: 46px;
  }
  .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .instagram-section__title,
  .awards-section__title,
  .main-news-section__title,
  .contact-section__title,
  .interview .main-title {
    font-size: 46px;
  }
}
@media (max-width: 1300px) {
  .rs-card {
    width: 380px;
  }
  .residents-stats__right {
    padding: 50px 40px;
    gap: 30px;
  }
  .rs-info__title {
    font-size: 40px;
  }
}
@media (max-width: 1200px) {
  .home-section-title {
    font-size: 40px;
  }
  .instagram-section__title,
  .awards-section__title,
  .main-news-section__title,
  .contact-section__title,
  .interview .main-title {
    font-size: 40px;
  }
  .residents-stats__right {
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .rs-info {
    align-items: center;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .rs-info__title {
    font-size: 36px;
  }
  .rs-card {
    width: 100%;
    max-width: 450px;
    margin-left: 0;
  }
  .rs-cards-wrap {
    align-items: center;
  }
  .contact-section__grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-card__title,
  .contact-form-card__title {
    font-size: 28px;
  }
  .atmosphere-grid {
    grid-template-rows: 480px 360px;
  }
}
@media (max-width: 1024px) {
  :root {
    --home-section: 60px;
  }
  .home-section-title {
    font-size: 34px;
  }
  .instagram-section__title,
  .awards-section__title,
  .main-news-section__title,
  .contact-section__title,
  .interview .main-title {
    font-size: 34px;
  }
  .interview .interview-items {
    grid-template-columns: 1fr;
  }
  .interview .title-wrap {
    margin-bottom: 25px;
  }
  .hero-banners {
    padding: 20px 0 40px;
  }
  .hero-banners__left {
    height: 350px;
  }
  .residents-stats__inner {
    flex-direction: column;
    height: auto;
  }
  .residents-stats__left {
    width: 100%;
    height: 350px;
    order: 2;
    padding: 40px 20px;
  }
  .residents-stats__right {
    order: 1;
    border-radius: 20px;
    padding: 40px 20px;
  }
  .rs-info__title {
    font-size: 30px;
  }
  .atmosphere-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .atmosphere-grid__item--full,
  .atmosphere-grid__item--row2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .atmosphere-grid__sub {
    height: 300px;
    border-radius: 20px;
  }
  .atmosphere-section__desc {
    font-size: 18px;
    max-width: 420px;
  }
  .contact-section__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-card__title,
  .contact-form-card__title {
    font-size: 26px;
  }
  .awards-slide__inner {
    height: 300px;
  }
}
@media (max-width: 900px) {
  .home-section-title {
    font-size: 30px;
  }
  .instagram-section__title,
  .awards-section__title,
  .main-news-section__title,
  .contact-section__title,
  .interview .main-title {
    font-size: 30px;
  }
  .rs-info__title {
    font-size: 28px;
  }
  .residents-stats__left {
    height: 280px;
  }
  .atmosphere-grid__sub {
    height: 240px;
  }
  .contact-section__grid {
    max-width: 100%;
  }
  .contact-card,
  .contact-form-card {
    min-height: auto;
    padding: 28px 24px;
  }
  .contact-card__title,
  .contact-form-card__title {
    font-size: 24px;
  }
  .awards-slide__inner {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .wrapper {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .home-section-title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .hero-banners__left {
    height: 280px;
  }
  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-card,
  .contact-form-card {
    padding: 25px 15px;
    min-height: auto;
    border-radius: 15px;
  }
  .home-form__submit {
    width: 100%;
    border-radius: 50px;
  }
  .current-projects .wrapper .projects-items .projects-item .text-wrap span.adress {
    width: 100% !important;
    white-space: normal;
  }
  .residents-stats {
    padding: 0;
  }
  .residents-stats__inner {
    flex-direction: column;
    gap: 40px;
  }
  .residents-stats__right {
    order: 1;
    background: #F4F4F6;
    margin-left: -15px;
    margin-right: -15px;
    padding: 40px 0 50px 0;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
  }
  .residents-stats__left {
    order: 2;
    width: 100%;
    height: 500px;
    padding: 48px 20px 36px;
  }
  .rs-info {
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }
  .rs-info__btn {
    display: none;
  }
  .rs-info__title {
    font-size: 27px;
    line-height: 32px;
  }
  .rs-cards-wrap {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 15px 20px 15px;
    gap: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .rs-cards-wrap::-webkit-scrollbar {
    display: none;
  }
  .rs-card {
    scroll-snap-align: start;
    flex: 0 0 min(310px, 100vw - 50px);
    width: min(310px, 100vw - 50px);
    margin-left: 0;
    padding: 10px;
    gap: 12px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  }
  .rs-card__image {
    width: 120px;
    height: 120px;
  }
  .rs-card__title {
    font-size: 24px;
  }
  .rs-card__text {
    font-size: 14px;
    padding-right: 10px;
  }
  .rs-left__title {
    font-size: 34px;
    font-weight: 400;
    text-shadow: none;
  }
  .rs-left__btn {
    width: 260px;
    height: 55px;
    font-size: 17px;
  }
  .atmosphere-section {
    padding: 40px 0;
  }
  .atmosphere-section__header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }
  .atmosphere-section__desc {
    font-family: Geologica;
    font-weight: 300;
    font-size: 16px;
    max-width: 100%;
    line-height: 23px;
    text-align: center;
    color: #555555;
    padding: 0 28px;
  }
  .atmosphere-section .home-section-title {
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  .atmosphere-section .home-section-title span {
    display: block;
    color: #8E8E8E;
  }
  .atmosphere-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .atmosphere-grid__item, .atmosphere-grid__sub {
    border-radius: 0;
  }
  .atmosphere-grid__item--full {
    display: grid;
    grid-template-columns: 58fr 42fr;
    gap: 8px;
    flex-direction: row;
  }
  .atmosphere-grid__item--full .atmosphere-grid__sub {
    height: 220px;
  }
  .atmosphere-grid__item--row2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    flex-direction: row;
  }
  .atmosphere-grid__item--row2 .atmosphere-grid__sub {
    height: 110px;
  }
  .awards-section {
    padding: 40px 0;
  }
  .awards-section__head {
    justify-content: center;
    margin-bottom: 25px;
  }
  .awards-section__title {
    font-size: 30px;
    text-align: center;
    width: 100%;
    margin: 0;
  }
  .interview {
    padding: 40px 0;
  }
  .interview .title-wrap {
    margin-bottom: 20px;
  }
  .interview .main-title {
    font-size: 27px;
    line-height: 32px;
    text-align: center;
  }
  .interview .interview-items {
    gap: 10px;
  }
  .interview .interview-item {
    border-radius: 12px;
  }
  .awards-slider-wrap {
    margin-right: -15px;
  }
  .awards-slide__inner {
    height: 160px;
    border-radius: 0;
  }
  .awards-dots {
    display: none;
  }
  .main-news-section {
    padding: 40px 0;
  }
  .main-news-section__head {
    justify-content: center;
    margin-bottom: 25px;
  }
  .main-news-section__title {
    font-size: 30px;
    text-align: center;
    width: 100%;
    margin: 0;
  }
  .main-news-section__all {
    display: none;
  }
  .news-slider-wrap {
    margin-right: -15px;
  }
  .news-slide {
    padding-right: 8px;
  }
  .news-card {
    border-radius: 0;
    background: #F4F4F6;
    height: 100%;
    box-shadow: none;
  }
  .news-card__image {
    border-radius: 0;
  }
  .news-card__date {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    font-size: 12px;
    padding: 4px 10px;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
  .news-card__body {
    padding: 15px 10px 20px 10px;
    text-align: center;
    align-items: center;
    gap: 6px;
  }
  .news-card__title {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    margin: 0;
  }
  .news-card__excerpt {
    font-size: 12px;
    line-height: 14px;
    color: #888888;
    margin: 0;
  }
  .news-dots {
    display: none;
  }
  .contact-section {
    padding: 40px 0;
  }
  .contact-section__title {
    text-align: center;
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 25px;
  }
  .contact-section__grid {
    gap: 15px;
  }
  .contact-card {
    padding: 30px 20px;
    border-radius: 0;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .contact-card__icon {
    margin-bottom: 5px;
  }
  .contact-card__title {
    font-size: 25px;
    font-weight: 400;
    line-height: 43px;
    margin: 0;
  }
  .contact-card__title br {
    display: none;
  }
  .contact-card__info {
    font-size: 20px;
    line-height: 28px;
    color: #555555;
    margin-bottom: 10px;
  }
  .contact-card__btn {
    width: 100%;
    max-width: 282px;
    padding: 11px 30px;
    font-size: 17px;
    font-weight: 500;
  }
  .contact-form-card {
    padding: 30px 20px;
    border-radius: 0;
    align-items: stretch;
    text-align: center;
  }
  .contact-form-card__title {
    font-size: 25px;
    line-height: 43px;
    width: 100%;
  }
  .contact-form-card__desc {
    font-size: 14px;
    line-height: 20px;
    color: #777777;
    padding: 0 15px;
  }
  .home-form {
    width: 100%;
  }
  .home-form__field-wrap {
    margin-bottom: 15px;
  }
  .home-form__field {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    font-size: 16px;
    text-align: left;
    padding: 0 15px;
  }
  .home-form__submit {
    width: 100%;
    max-width: 100%;
    height: 50px;
    border-radius: 80px;
    font-size: 17px;
    margin-top: 5px;
  }
}
@media (max-width: 359px) {
  .rs-info__title {
    font-size: 26px;
  }
  .home-section-title {
    font-size: 24px;
  }
  .rs-card {
    flex: 0 0 280px;
    width: 280px;
  }
}
.home-realty-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef1ee;
  border-radius: 0;
  padding: 5px;
  line-height: 1;
}
.home-realty-switch__btn {
  font-family: "TikTok Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  padding: 11px 28px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #57615a;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.home-realty-switch__btn:not(.active) {
  animation: realty-switch-pulse 2.4s ease-in-out infinite;
}
.home-realty-switch__btn:not(.active):hover {
  animation: none;
  color: #0A8449;
  background: rgba(15, 168, 95, 0.12);
}
.home-realty-switch__btn.active {
  background: #0A8449;
  color: #fff;
  box-shadow: 0 3px 10px rgba(10, 132, 73, 0.28);
  animation: none;
}
@media (max-width: 767px) {
  .home-realty-switch__btn {
    font-size: 15px;
    padding: 9px 20px;
  }
}

@keyframes realty-switch-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
.contacts-page {
  padding: 40px 0 80px;
}
@media (max-width: 767px) {
  .contacts-page {
    padding: 20px 0 40px;
  }
}
@media (max-width: 767px) {
  .contacts-page .wrapper {
    padding: 0 10px;
  }
}
.contacts-page__tab-list {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}
@media (max-width: 767px) {
  .contacts-page__tab-list {
    gap: 19px;
    margin-bottom: 27px;
  }
}
@media (max-width: 400px) {
  .contacts-page__tab-list {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.contacts-page__tab-item {
  position: relative;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .contacts-page__tab-item {
    flex: 1;
    text-align: center;
  }
}
.contacts-page__tab-item--active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0fa85f;
}
.contacts-page__tab-item--active .contacts-page__tab-btn {
  color: #151515;
}
.contacts-page__tab-btn {
  background: none;
  border: none;
  font-family: "TikTok Sans", "Geologica", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #555555;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
@media (max-width: 767px) {
  .contacts-page__tab-btn {
    font-size: 17px;
    line-height: 30px;
    width: 100%;
  }
}
@media (max-width: 400px) {
  .contacts-page__tab-btn {
    font-size: 14px;
    line-height: 22px;
  }
}
.contacts-page__tab-btn:hover {
  color: #151515;
}
.contacts-page__panel {
  display: none;
}
.contacts-page__panel--active {
  display: block;
}
.contacts-page .contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .contacts-page .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.contacts-page .contacts-grid.addresses {
  margin-top: 22px;
}
@media (max-width: 767px) {
  .contacts-page .contacts-grid.addresses {
    margin-top: 10px;
  }
}
.contacts-page .contact-cards {
  border: 1px solid #e7e7e7;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}
@media (max-width: 767px) {
  .contacts-page .contact-cards {
    padding: 25px 45px;
    min-height: auto;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .contacts-page .contact-cards {
    padding: 20px 16px;
  }
}
.contacts-page .contact-cards__title {
  font-family: "TikTok Sans", "Geologica", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #151515;
  margin-bottom: 12px;
}
.contacts-page .contact-cards__title a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .contacts-page .contact-cards__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 8px;
    white-space: nowrap;
  }
}
@media (max-width: 400px) {
  .contacts-page .contact-cards__title {
    font-size: 16px;
    line-height: 20px;
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
  }
}
.contacts-page .contact-cards__title--work {
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .contacts-page .contact-cards__title--work {
    font-size: 18px;
    line-height: 22px;
  }
}
.contacts-page .contact-cards__text {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  margin-bottom: 20px;
  text-transform: none;
}
@media (max-width: 767px) {
  .contacts-page .contact-cards__text {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0px;
    text-align: center;
  }
}
.contacts-page .contact-cards__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 6px 28px;
  border: 1px solid #0fa85f;
  background: #ffffff;
  color: #0fa85f;
  border-radius: 80px;
  font-family: "Geologica", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  width: auto;
  min-width: 200px;
  max-width: 100%;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .contacts-page .contact-cards__btn {
    min-height: 30px;
    width: auto;
    min-width: 200px;
    max-width: 100%;
    font-size: 16px;
    padding: 4px 28px;
  }
}
@media (max-width: 400px) {
  .contacts-page .contact-cards__btn {
    width: 100%;
    max-width: 240px;
    padding: 4px 16px;
    font-size: 14px;
  }
}
.contacts-page .contact-cards__btn:hover {
  background: #0fa85f;
  color: #fff;
}
.contacts-page .contact-cards__icon {
  margin-bottom: 15px;
  display: flex;
  width: 41px;
  height: 41px;
  border: 1px solid #D2D2D2;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contacts-page .contact-cards__icon {
    margin-bottom: 12px;
  }
}
.contacts-page .contact-cards__icon svg {
  width: 22px;
  height: 26px;
  object-fit: contain;
}
.contacts-page .address-cards .contact-cards__text {
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.contacts-page .address-cards .contact-cards__title {
  font-family: "Geologica", sans-serif;
  font-weight: 500;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "lnum" 1, "pnum" 1;
}
.contacts-page__map {
  margin-top: 22px;
  overflow: hidden;
  background: #f4f4f6;
  min-height: 542px;
  position: relative;
}
@media (max-width: 767px) {
  .contacts-page__map {
    margin-top: 20px;
    min-height: 640px;
  }
}
.contacts-page__map > div, .contacts-page__map [id^=map], .contacts-page__map iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 542px;
  display: block;
}
@media (max-width: 767px) {
  .contacts-page__map > div, .contacts-page__map [id^=map], .contacts-page__map iframe {
    min-height: 640px;
  }
}
@media (max-width: 1024px) {
  .contacts-page__map {
    min-height: 360px;
  }
  .contacts-page__map > div, .contacts-page__map [id^=map], .contacts-page__map iframe {
    min-height: 360px;
  }
}
.contacts-page .contacts-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .contacts-page .contacts-footer-grid {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .contacts-page .contacts-footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
}
.contacts-page .footer-info-cards {
  border: 1px solid #e7e7e7;
  padding: 48px;
}
@media (max-width: 767px) {
  .contacts-page .footer-info-cards {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 400px) {
  .contacts-page .footer-info-cards {
    padding: 20px 14px;
  }
}
.contacts-page .footer-info-cards__icon {
  display: flex;
  width: 81px;
  height: 64px;
  border: 1px solid #D2D2D2;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .contacts-page .footer-info-cards__icon {
    width: 57px;
    height: 46px;
    margin-bottom: 16px;
  }
}
.contacts-page .footer-info-cards__icon svg {
  width: 37px;
  height: 29px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .contacts-page .footer-info-cards__icon svg {
    width: 28px;
    height: 22px;
  }
}
.contacts-page .footer-info-cards h2 {
  font-family: "TikTok Sans", "Geologica", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  color: #151515;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .contacts-page .footer-info-cards h2 {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
  }
}
.contacts-page .footer-info-cards p {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: #555555;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .contacts-page .footer-info-cards p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.contacts-page .footer-info-cards__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 60px;
  padding: 0 35px;
  border: 1px solid #0fa85f;
  border-radius: 50px;
  background: #ffffff;
  transition: background 0.3s;
  text-decoration: none;
}
@media (max-width: 767px) {
  .contacts-page .footer-info-cards__btn {
    height: 30px;
    padding: 0 20px;
    width: 271px;
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .contacts-page .footer-info-cards__btn {
    width: 100%;
    padding: 0 14px;
    gap: 6px;
  }
}
.contacts-page .footer-info-cards__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.contacts-page .footer-info-cards__btn span {
  color: #0fa85f;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 767px) {
  .contacts-page .footer-info-cards__btn span {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .contacts-page .footer-info-cards__btn span {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.contacts-page .footer-info-cards__btn:hover {
  background: rgba(15, 168, 95, 0.08);
}

.news-page {
  padding: 50px 0 80px;
}
@media (max-width: 767px) {
  .news-page {
    padding: 24px 0 50px;
  }
}
.news-page__title {
  font-family: "TikTok Sans", "Geologica", sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 60px;
  color: #151515;
  margin-bottom: 34px;
}
@media (max-width: 1024px) {
  .news-page__title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .news-page__title {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.news-page__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .news-page__filters {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.news-page__filter {
  position: relative;
}
@media (max-width: 767px) {
  .news-page__filter {
    flex: 1;
    min-width: 0;
  }
}
.news-page__filter::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.368164 0.337891L5.86816 6.33789L11.3682 0.337891' stroke='%232B2B2B'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
@media (max-width: 767px) {
  .news-page__filter::after {
    right: 10px;
    width: 9px;
    height: 6px;
  }
}
.news-page__select {
  height: 50px;
  padding: 0 44px 0 20px;
  background: #f4f4f4;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Geologica", sans-serif;
  font-weight: 100;
  font-size: 16px;
  color: #151515;
  cursor: pointer;
  min-width: 220px;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
}
@media (max-width: 767px) {
  .news-page__select {
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 26px 0 14px;
    font-size: 12px;
  }
}
.news-page__select:hover {
  background: #ebebeb;
}
.news-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .news-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .news-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.news-page__nav {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .news-page__nav {
    margin-top: 40px;
  }
}

.news-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-pager__item {
  display: flex;
}
.news-pager__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  text-decoration: none;
  -webkit-transition: background 0.2s, color 0.2s;
  -o-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.news-pager__num:hover {
  background: #f4f4f4;
  color: #151515;
}
.news-pager__item--active .news-pager__num {
  background: #0fa85f;
  color: #ffffff;
  font-weight: 500;
  cursor: default;
}
.news-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  font-size: 18px;
  color: #151515;
  text-decoration: none;
  background: #ffffff;
  -webkit-transition: border-color 0.2s, color 0.2s;
  -o-transition: border-color 0.2s, color 0.2s;
  transition: border-color 0.2s, color 0.2s;
}
.news-pager__btn:hover {
  border-color: #0fa85f;
  color: #0fa85f;
}
.news-pager__btn--disabled {
  color: #cccccc;
  border-color: #f0f0f0;
  cursor: default;
  pointer-events: none;
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #f5f5f5;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.news-card:hover .news-card__img {
  transform: scale(1.04);
}
.news-card__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 426/281;
}
@supports not (aspect-ratio: 1) {
  .news-card__media {
    padding-top: 65.96%;
    height: 0;
  }
  .news-card__media .news-card__img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.news-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: transform 0.4s ease;
  -o-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}
.news-card__date {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 300px;
  color: #ffffff;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  padding: 3px 12px;
  white-space: nowrap;
  z-index: 2;
}
@media (max-width: 767px) {
  .news-card__date {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    line-height: 14px;
    padding: 2px 8px;
  }
}
.news-card__body {
  padding: 29px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
@media (max-width: 767px) {
  .news-card__body {
    padding: 12px 10px 14px;
    gap: 8px;
    text-align: left;
    align-items: flex-start;
  }
}
.news-card__title {
  font-family: "TikTok Sans", "Geologica", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #151515;
  margin: 0;
}
@media (max-width: 1200px) {
  .news-card__title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .news-card__title {
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    text-align: center;
  }
}
.news-card__preview {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #777777;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-card__preview {
    font-size: 11px;
    line-height: 14px;
    text-align: center;
  }
}

.news-detail {
  padding: 50px 0 80px;
}
@media (max-width: 767px) {
  .news-detail {
    padding: 24px 0 50px;
  }
}
.news-detail__panel {
  max-width: 918px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  padding: 35px 42px 50px;
}
@media (max-width: 1024px) {
  .news-detail__panel {
    padding: 30px 30px 40px;
  }
}
@media (max-width: 767px) {
  .news-detail__panel {
    padding: 0;
    border: none;
    background: transparent;
  }
}
.news-detail__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 16px;
}
@media (max-width: 767px) {
  .news-detail__meta {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
  }
}
.news-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Geologica", sans-serif;
  font-weight: 250;
  font-size: 16px;
  color: #555555;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}
.news-detail__back:hover {
  color: #151515;
}
.news-detail__back svg {
  flex-shrink: 0;
}
.news-detail__meta-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .news-detail__meta-right {
    display: none;
  }
}
.news-detail__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Geologica", sans-serif;
  font-weight: 250;
  font-size: 14px;
  color: #151515;
  white-space: nowrap;
}
.news-detail__divider {
  border: none;
  border-top: 1px solid #d9d9d9;
  margin: 0 0 38px;
}
@media (max-width: 767px) {
  .news-detail__divider {
    display: none;
  }
}
.news-detail__divider--bottom {
  margin: 38px 0;
  border-top-color: #e7e7e7;
}
@media (max-width: 767px) {
  .news-detail__divider--bottom {
    display: none;
  }
}
.news-detail__title {
  font-family: "TikTok Sans", "Geologica", sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 60px;
  color: #151515;
  margin: 0 0 38px;
}
@media (max-width: 1024px) {
  .news-detail__title {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .news-detail__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 24px;
    text-align: center;
  }
}
.news-detail__lead {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #555555;
  margin: 0 0 38px;
}
.news-detail__lead p {
  margin: 0 0 20px;
}
.news-detail__lead p:last-child {
  margin-bottom: 0;
}
.news-detail__lead ul, .news-detail__lead ol {
  padding-left: 24px;
  margin: 0 0 20px;
}
.news-detail__lead ul:last-child, .news-detail__lead ol:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .news-detail__lead ul, .news-detail__lead ol {
    text-align: left;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .news-detail__lead {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 24px;
    text-align: center;
  }
}
.news-detail__img-wrap {
  margin: 0 0 38px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 767px) {
  .news-detail__img-wrap {
    margin-bottom: 24px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
  }
}
.news-detail__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.news-detail__body {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #555555;
}
@media (max-width: 767px) {
  .news-detail__body {
    font-size: 15px;
    line-height: 22px;
    text-align: center;
  }
}
.news-detail__body p {
  margin-bottom: 20px;
}
.news-detail__body h2 {
  font-size: 28px;
  font-weight: 500;
  color: #151515;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .news-detail__body h2 {
    font-size: 20px;
  }
}
.news-detail__body ul, .news-detail__body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .news-detail__body ul, .news-detail__body ol {
    text-align: left;
    display: inline-block;
  }
}
.news-detail__body ul li, .news-detail__body ol li {
  margin-bottom: 8px;
}
.news-detail__related {
  margin-top: 0;
}
@media (max-width: 767px) {
  .news-detail__related {
    margin-top: 40px;
  }
}
.news-detail__related-title {
  font-family: "TikTok Sans", "Geologica", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #151515;
  margin: 0 0 38px;
}
@media (max-width: 767px) {
  .news-detail__related-title {
    text-align: center;
    margin-bottom: 24px;
  }
}
.news-detail__related-wrap {
  overflow: hidden;
}
.news-detail__related-slider .slick-track {
  display: flex;
}
.news-detail__related-slider .slick-slide {
  height: auto;
}
.news-detail__related-slider .slick-slide > div {
  height: 100%;
}
.news-detail__rel-card {
  display: flex !important;
  flex-direction: column;
  height: 100% !important;
  background: #efefef;
  gap: 8px;
  padding: 24px;
  margin-right: 21px;
  text-decoration: none;
  box-sizing: border-box;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
}
@media (max-width: 767px) {
  .news-detail__rel-card {
    padding: 20px 16px;
    margin-right: 12px;
  }
}
.news-detail__rel-card:hover {
  background: #e4e4e4;
}
.news-detail__rel-date {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #151515;
  opacity: 0.6;
}
.news-detail__rel-title {
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #151515;
  padding-bottom: 6.5px;
  padding-top: 7.5px;
  padding-right: 76px;
  min-height: 56px;
}
@media (max-width: 767px) {
  .news-detail__rel-title {
    font-size: 16px;
    line-height: 22px;
    padding-right: 0;
    padding-top: 4px;
    padding-bottom: 0;
    min-height: 44px;
  }
}
.news-detail__related-dots {
  margin-top: 24px;
  text-align: center;
}
.news-detail__related-dots .slick-dots {
  position: static;
  display: flex !important;
  justify-content: center;
  gap: 46px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-detail__related-dots .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.news-detail__related-dots .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4d5d0;
  padding: 0;
  border: none;
  font-size: 0;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}
.news-detail__related-dots .slick-dots li button::before {
  display: none;
}
.news-detail__related-dots .slick-dots li.slick-active button {
  background: #0fa85f;
}
.news-detail__zhk {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 38px;
}
@media (max-width: 767px) {
  .news-detail__zhk {
    margin-top: 24px;
    gap: 12px;
  }
}
.news-detail__zhk-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #efefef;
  padding: 24px;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
}
.news-detail__zhk-card:hover {
  background: #e4e4e4;
}
@media (max-width: 767px) {
  .news-detail__zhk-card {
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 16px;
  }
}
.news-detail__zhk-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 767px) {
  .news-detail__zhk-img {
    width: 56px;
    height: 56px;
  }
}
.news-detail__zhk-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}
.news-detail__zhk-label {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #151515;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .news-detail__zhk-label {
    font-size: 12px;
  }
}
.news-detail__zhk-name {
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #151515;
}
@media (max-width: 767px) {
  .news-detail__zhk-name {
    font-size: 16px;
    line-height: 22px;
  }
}
.news-detail__zhk-city {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #777777;
}
.news-detail__zhk-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  padding: 13px 24px;
  border-radius: 100px;
  background: #0e6131;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #ffffff;
  white-space: nowrap;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
}
.news-detail__zhk-cta svg {
  flex-shrink: 0;
}
.news-detail__zhk-cta svg path {
  stroke: #ffffff;
}
@media (max-width: 767px) {
  .news-detail__zhk-cta {
    width: 100%;
    margin-left: 0;
  }
}
.news-detail__zhk-card:hover .news-detail__zhk-cta {
  background: #008b3b;
}

.news-in-slider-wrap {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .news-in-slider-wrap .wrapper {
    padding-right: 0;
  }
}
.news-in-slider-wrap .news-in-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 1024px) {
  .news-in-slider-wrap .news-in-slider {
    display: block;
    gap: 0;
  }
}
.news-in-slider-wrap .news-in-slider .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .news-in-slider-wrap .news-in-slider .item {
    padding: 30px 20px;
  }
}
@media (max-width: 1024px) {
  .news-in-slider-wrap .news-in-slider .item {
    width: 520px;
    margin: 0 10px;
  }
}
@media (max-width: 560px) {
  .news-in-slider-wrap .news-in-slider .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 20px;
    margin: 0;
    margin-right: 20px;
    width: 320px;
  }
}
.news-in-slider-wrap .news-in-slider .item .img-wrap {
  border-radius: 16px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 43%;
}
@media (max-width: 1200px) {
  .news-in-slider-wrap .news-in-slider .item .img-wrap {
    width: 47%;
  }
}
@media (max-width: 560px) {
  .news-in-slider-wrap .news-in-slider .item .img-wrap {
    width: 100%;
    margin-top: 12px;
  }
}
.news-in-slider-wrap .news-in-slider .item .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.news-in-slider-wrap .news-in-slider .item .text-wrap {
  width: 57%;
  padding-right: 20px;
}
@media (max-width: 1200px) {
  .news-in-slider-wrap .news-in-slider .item .text-wrap {
    width: 53%;
    padding-right: 10px;
  }
}
@media (max-width: 560px) {
  .news-in-slider-wrap .news-in-slider .item .text-wrap {
    width: 100%;
  }
}
.news-in-slider-wrap .news-in-slider .item .text-wrap .text {
  max-width: 320px;
  display: inline-block;
  color: #4f4f4f;
  margin-bottom: 10px;
  overflow: hidden;
  height: 60px;
}
@media (max-width: 1200px) {
  .news-in-slider-wrap .news-in-slider .item .text-wrap .text {
    font-size: 14px;
    height: 52px;
  }
}
@media (max-width: 560px) {
  .news-in-slider-wrap .news-in-slider .item .text-wrap .text {
    max-width: 270px;
    height: auto;
    overflow: visible;
    width: 100%;
    display: block;
  }
}
.news-in-slider-wrap .news-in-slider .item .text-wrap .read-more {
  color: #141414;
}
.news-in-slider-wrap .news-in-slider .item .text-wrap .date {
  display: inline-block;
  padding: 2px 17px;
  border-radius: 50px;
  background: white;
  color: #a5a5a5;
  font-size: 14px;
}
.news-in-slider-wrap .news-in-slider .item .text-wrap b {
  display: block;
  color: #141414;
  font-weight: 600;
  font-size: 24px;
  margin: 12px 0;
}
@media (max-width: 1200px) {
  .news-in-slider-wrap .news-in-slider .item .text-wrap b {
    font-size: 20px;
  }
}
.news-in-slider-wrap .news-in-slider .item.green {
  background: #efffe7;
}
.news-in-slider-wrap .news-in-slider .item.yellow {
  background: #fffbe7;
}
.news-in-slider-wrap .news-in-slider .item.purple {
  background: #e7ebff;
}
.news-in-slider-wrap .news-in-slider .item.blue {
  background: #e7f3ff;
}
.news-in-slider-wrap .news-in-slider .item:hover .img-wrap img {
  transform: scale(1.03);
}
.news-in-slider-wrap .news-in-slider .item:hover.green {
  background: rgb(222, 255, 205.5);
}
.news-in-slider-wrap .news-in-slider .item:hover.yellow {
  background: rgb(255, 246.75, 205.5);
}
.news-in-slider-wrap .news-in-slider .item:hover.purple {
  background: rgb(205.5, 213.75, 255);
}
.news-in-slider-wrap .news-in-slider .item:hover.blue {
  background: rgb(205.5, 230.25, 255);
}

.news-info-slider-wrap .wrapper {
  text-align: center;
}
.news-info-slider-wrap .wrapper .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .news-info-slider-wrap .wrapper .title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .news-info-slider-wrap .wrapper .title-wrap .main-title {
    margin-bottom: 16px;
  }
}
.news-info-slider-wrap .wrapper .grey-btn {
  margin: 40px auto 0;
}

.news-items {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: left;
}
@media (max-width: 1200px) {
  .news-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .news-items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .news-items {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.news-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1024px) {
  .news-item {
    border-color: #e4e4e4;
  }
}
.news-item .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news-item .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.news-item .text-wrap {
  padding: 20px;
  background: white;
}
@media (max-width: 767px) {
  .news-item .text-wrap {
    padding: 15px;
  }
}
.news-item .text-wrap time {
  color: #4f4f4f;
}
.news-item .text-wrap span {
  font-size: 16px;
  color: #4f4f4f;
  margin-bottom: 20px;
  display: block;
  height: 60px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-item .text-wrap span {
    height: auto;
    overflow: visible;
  }
}
.news-item .text-wrap span.green {
  margin-bottom: 0;
  color: #0e6131;
  height: auto;
  overflow: visible;
}
.news-item .text-wrap b {
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  font-size: 22px;
  color: #000;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin: 5px 0;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .news-item .text-wrap b {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .news-item.mobile-hide {
    display: none;
  }
}
.news-item.hide {
  display: none;
}
.news-item.hide.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .news-item.hide.show {
    display: none;
  }
}
.news-item:hover {
  border-color: #e4e4e4;
}
.news-item:hover .img-wrap img {
  transform: scale(1.03);
}
.news-item:hover .text-wrap .green {
  color: #008b3b;
}

.news-slider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  text-align: left;
}
@media (max-width: 1200px) {
  .news-slider {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .news-slider {
    display: block;
    gap: 0;
    margin-bottom: 80px !important;
    margin-top: 5px;
  }
}
@media (max-width: 1024px) {
  .news-slider .news-item {
    width: 520px;
    margin: 0 10px;
  }
}
@media (max-width: 501px) {
  .news-slider .news-item {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .news-slider .news-item .text-wrap b {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .news-slider .news-item .text-wrap span {
    height: 40px;
    overflow: hidden;
  }
  .news-slider .news-item .text-wrap span.green {
    height: auto;
    overflow: visible;
  }
}
@media (max-width: 501px) {
  .news-slider .news-item .text-wrap span {
    height: 60px;
  }
}

.news-info2 {
  margin-bottom: 80px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .news-info2 {
    margin-bottom: 50px;
  }
}
.news-info2 .wrapper {
  max-width: 990px;
  position: relative;
}
@media (max-width: 767px) {
  .news-info2 .wrapper {
    text-align: center;
  }
}
.news-info2 .wrapper .social-menu {
  right: 20px;
  top: 0;
}
@media (max-width: 767px) {
  .news-info2 .wrapper .social-menu {
    position: static;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }
}
.news-info2 .wrapper .social-menu li {
  margin: 0 6px;
}
.news-info2 .wrapper h1 {
  font-size: 60px;
  font-weight: 600;
  color: #000;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .news-info2 .wrapper h1 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .news-info2 .wrapper h1 {
    font-size: 24px;
  }
}
.news-info2 .wrapper .date {
  border-radius: 50px;
  background: #f9f9f9;
  font-size: 14px;
  color: #4f4f4f;
  padding: 2px 17px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 20px;
}
.news-info2 .wrapper h2 {
  font-size: 36px;
  color: #000;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .news-info2 .wrapper h2 {
    font-size: 20px;
  }
}
.news-info2 .wrapper h3 {
  font-weight: 600;
  font-size: 24px;
  color: #000;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .news-info2 .wrapper h3 {
    font-size: 20px;
  }
}
.news-info2 .wrapper p {
  font-size: 16px;
  line-height: 157%;
  color: #4f4f4f;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .news-info2 .wrapper p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
  }
}
.news-info2 .wrapper p:last-child {
  margin-bottom: 0;
}
.news-info2 .wrapper .big-info {
  margin-top: 10px;
}
.news-info2 .wrapper .big-info .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-info2 .wrapper .big-info .img-wrap {
    margin-bottom: 30px;
  }
}
.news-info2 .wrapper .big-info .img-wrap img {
  width: 100%;
}
.news-info2 .wrapper .big-info .buttons {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .news-info2 .wrapper .big-info .buttons {
    margin-top: 30px;
  }
}
.news-info2 .wrapper .big-info .buttons button {
  font-size: 24px;
  font-weight: 600;
  color: #a5a5a5;
}
@media (max-width: 767px) {
  .news-info2 .wrapper .big-info .buttons button {
    font-size: 14px;
  }
}
.news-info2 .wrapper .big-info .buttons button:hover {
  color: #141414;
}
.news-info2 .wrapper .big-info .buttons button:hover span {
  color: #141414;
}
.news-info2 .wrapper .big-info .buttons button span {
  font-size: 24px;
  font-weight: 600;
  color: #a5a5a5;
  margin-left: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .news-info2 .wrapper .big-info .buttons button span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .news-info2 .wrapper .big-info .buttons button span {
    display: none;
  }
}

.our-team {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .our-team {
    margin-bottom: 50px;
  }
}
.our-team .wrapper {
  position: relative;
  z-index: 0;
}
.our-team__label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  left: -30px;
}
@media (max-width: 1540px) {
  .our-team__label {
    left: 0;
  }
}
@media (max-width: 1024px) {
  .our-team__label {
    display: none;
  }
}
.our-team__label span {
  font-weight: 600;
  color: #000;
  transform: rotate(-90deg);
  position: absolute;
  left: 3px;
  top: 45%;
}
@media (max-width: 1540px) {
  .our-team__label span {
    font-size: 14px;
    left: -9px;
  }
}
.our-team__info {
  padding: 40px;
  background: #eeffff;
  border-radius: 10px;
  display: flex;
}
@media (max-width: 1200px) {
  .our-team__info {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .our-team__info {
    flex-direction: column;
  }
}
.our-team__text {
  width: 58%;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .our-team__text {
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .our-team__text {
    width: 100%;
    padding-right: 0;
  }
}
.our-team__text .green-btn {
  align-self: flex-start;
}
@media (max-width: 767px) {
  .our-team__text .green-btn {
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
  }
}
.our-team__text h1 {
  font-size: 48px;
  margin-bottom: 8px;
  color: #000;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .our-team__text h1 {
    font-size: 32px;
  }
}
.our-team__text h5 {
  max-width: 590px;
  font-size: 18px;
  color: #141414;
  margin-bottom: 18px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .our-team__text h5 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.our-team__text p {
  margin-bottom: 24px;
  color: #4f4f4f;
}
@media (max-width: 1024px) {
  .our-team__text p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.our-team__gallery {
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .our-team__gallery {
    margin-top: 20px;
    width: 100%;
  }
}
.our-team__gallery-row {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
  margin-right: -10px;
}
.our-team__img {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  margin-right: 10px;
}
.our-team__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .team-list .wrapper {
    text-align: center;
  }
}
.team-list__header {
  margin-bottom: 24px;
}
.team-list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
@media (max-width: 1300px) {
  .team-list__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .team-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .team-list__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.team-list__item {
  display: block;
}
@media (max-width: 767px) {
  .team-list__item--hidden {
    display: none;
  }
}
.team-list__item:hover .team-list__item-photo img {
  transform: scale(1.05);
}
.team-list__item:hover .team-list__item-photo::after {
  border: 34px solid rgba(0, 139, 59, 0.6);
}
.team-list__item-photo {
  display: flex;
  padding: 30px 20px 0;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
  z-index: 0;
  min-height: 340px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .team-list__item-photo {
    min-height: auto;
  }
}
.team-list__item-photo::after {
  content: "";
  width: calc(100% - 130px);
  left: 30px;
  position: absolute;
  height: 50%;
  bottom: 0;
  z-index: -1;
  transition: 0.3s;
  border: 34px solid rgba(14, 97, 49, 0.1);
}
.team-list__item-photo img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  transition: 0.3s;
  margin-bottom: 0;
}
.team-list__item-name {
  font-size: 24px;
  font-weight: 600;
  color: #141414;
  margin-bottom: 10px;
  margin-top: 20px;
  display: block;
}
@media (max-width: 767px) {
  .team-list__item-name {
    margin-top: 10px;
    font-size: 22px;
    margin-bottom: 5px;
  }
}
.team-list__item-role {
  color: #4f4f4f;
}
.team-list .grey-btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .team-list .grey-btn {
    margin-top: 24px;
  }
}

.about-cta {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .about-cta {
    margin-bottom: 50px;
  }
}
.about-cta__inner {
  padding: 70px 70px 100px;
  background: #186f3c;
  background-position: center center;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media (max-width: 1200px) {
  .about-cta__inner {
    padding: 70px 50px;
  }
}
@media (max-width: 767px) {
  .about-cta__inner {
    padding: 40px 15px;
  }
}
.about-cta__inner::after {
  content: "";
  background: url("/local/templates/svdom_new/css/img/circle.svg") center center/cover no-repeat;
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: -1;
  width: 207px;
  height: 207px;
}
@media (max-width: 767px) {
  .about-cta__inner::after {
    content: none;
  }
}
.about-cta__inner::before {
  content: "";
  background: url("/local/templates/svdom_new/css/img/circle.svg") center center/cover no-repeat;
  position: absolute;
  bottom: 0;
  right: 200px;
  z-index: -1;
  width: 207px;
  height: 207px;
}
@media (max-width: 1200px) {
  .about-cta__inner::before {
    right: 50px;
  }
}
@media (max-width: 767px) {
  .about-cta__inner::before {
    content: none;
  }
}
.about-cta__decor-left {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1200px) {
  .about-cta__decor-left {
    width: 120px;
  }
}
@media (max-width: 767px) {
  .about-cta__decor-left {
    width: 80px;
  }
}
.about-cta__decor-right {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1200px) {
  .about-cta__decor-right {
    width: 120px;
  }
}
@media (max-width: 767px) {
  .about-cta__decor-right {
    width: 80px;
  }
}
.about-cta__title {
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 48px;
  max-width: 1050px;
  margin: 0 auto 24px;
}
@media (max-width: 1200px) {
  .about-cta__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .about-cta__title {
    font-size: 24px;
    text-align: left;
    margin-bottom: 10px;
  }
}
.about-cta__subtitle {
  max-width: 1180px;
  text-align: center;
  color: #ededed;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .about-cta__subtitle {
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .about-cta__subtitle {
    text-align: left;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
  }
}
.about-cta__buttons {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .about-cta__buttons {
    flex-direction: column;
    max-width: 470px;
    width: 100%;
    margin: 0 auto;
  }
}
.about-cta__buttons a {
  margin: 0 6px;
  font-weight: 500;
  color: #141414;
}
@media (max-width: 767px) {
  .about-cta__buttons a {
    margin: 0;
    margin-top: 16px;
  }
}
.about-cta__buttons a:hover {
  color: white;
  background: #d4be4f;
}

.stats {
  margin: 80px 0;
}
@media (max-width: 1024px) {
  .stats {
    margin: 50px 0;
  }
}
.stats__header {
  margin-bottom: 30px;
}
.stats__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .stats__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .stats__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.stats__item {
  border-radius: 10px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
}
.stats__item-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stats__item-text img {
  width: 32px;
  height: 32px;
}
.stats__item-text b {
  font-size: 28px;
  font-weight: 700;
  color: #141414;
}
@media (max-width: 1024px) {
  .stats__item-text b {
    font-size: 22px;
  }
}
.stats__item-text span {
  font-size: 14px;
  color: #4f4f4f;
}
.stats__item-photo {
  margin-top: auto;
}
.stats__item-photo img {
  width: 100%;
  display: block;
}

.gallery {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .gallery {
    margin-top: 50px;
  }
}
.gallery--no-top {
  margin-top: 0;
}
.gallery--condensed {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .gallery--condensed {
    margin-bottom: 50px;
  }
}
.gallery--condensed .wrapper {
  display: flex;
  flex-direction: column;
}
.gallery--condensed .green-btn {
  margin-top: 24px;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .gallery--condensed .green-btn {
    margin: 24px auto 0;
    max-width: 470px;
    width: 100%;
  }
}
.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.gallery__title-wrap .date {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  color: #a5a5a5;
}
.gallery__slide-link {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 10px;
  display: block;
}
@media (max-width: 1024px) {
  .gallery__slide-link {
    position: relative;
    z-index: 0;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: auto;
  }
  .gallery__slide-link::after {
    content: "";
    height: 80%;
    width: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(transparent 0%, #000000 100%);
    transition: 0.3s;
  }
  .gallery__slide-link img {
    width: 100%;
  }
}
.gallery__slide-link::after {
  content: "";
  height: 80%;
  width: 100%;
  bottom: -15%;
  left: 0;
  position: absolute;
  background: linear-gradient(transparent 0%, #000000 100%);
  transition: 0.3s;
  opacity: 0;
}
.gallery__slide-texts {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 20px;
  left: 20px;
  transition: 0.3s;
  z-index: 1;
  opacity: 0;
}
.gallery__slide-texts span {
  font-size: 14px;
  color: white;
}
.gallery__slide-texts b {
  font-weight: 600;
  font-size: 24px;
  color: white;
  display: block;
  margin: 8px 0;
}
@media (max-width: 1480px) {
  .gallery__slide-texts b {
    font-size: 20px;
    margin: 5px 0;
  }
}
.gallery__slide-caption {
  width: 270%;
  transform: translateX(-30%);
  margin-top: 30px;
  font-size: 14px;
  color: #4f4f4f;
  background: white;
}
@media (max-width: 1024px) {
  .gallery__slide-caption {
    width: 100%;
    transform: translateX(0);
  }
}
.gallery__slide-caption.show {
  animation: mymove 1s;
}

.swiper-buttons {
  display: flex;
  justify-content: space-between;
  width: 90px;
}
@media (max-width: 767px) {
  .swiper-buttons {
    display: none;
  }
}
.swiper-buttons button {
  position: static;
  margin: 0;
  width: 40px;
  height: 40px;
  display: flex;
  padding: 0;
  border-radius: 34px;
  background: #e4e4e4;
}
.swiper-buttons button:hover {
  background: gainsboro;
}
.swiper-buttons button::after {
  content: none;
}
.swiper-buttons button img {
  margin: auto;
  transition: 0.3s;
}
.swiper-buttons button.swiper-button-next img {
  transform: rotate(180deg);
}

.swiper-pagination {
  display: none;
}
@media (max-width: 1024px) {
  .swiper-pagination {
    display: flex;
    justify-content: center;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 6px;
  border-radius: 50px;
  background: #e4e4e4;
  opacity: 1;
  margin: 0 3px;
  transition: 0.5s;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #008b3b;
  width: 32px;
}

.swiper {
  width: 100%;
  padding-top: 8px;
}
.swiper .swiper-wrapper {
  margin-bottom: 30px;
}
.swiper > .text {
  width: 100%;
  font-size: 16px;
  color: #4f4f4f;
  transition: 1s;
}
@media (max-width: 1024px) {
  .swiper > .text {
    display: none;
  }
}
.swiper > .text.animate {
  animation-duration: 1s;
  animation-name: zoom;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1480px) {
  .swiper-slide {
    width: 25vw;
    height: 20vw;
  }
}
@media (max-width: 1024px) {
  .swiper-slide {
    width: 100%;
    height: auto;
    position: static;
  }
}
.swiper-slide > img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.swiper-slide.swiper-slide-active {
  overflow: visible;
  height: auto;
}
.swiper-slide.swiper-slide-active .gallery__slide-link::after {
  opacity: 1;
}
.swiper-slide.swiper-slide-active img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}
.swiper-slide.swiper-slide-active .gallery__slide-texts {
  opacity: 1;
}

@keyframes mymove {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loyalty-programs {
  margin: 80px 0;
}
@media (max-width: 1024px) {
  .loyalty-programs {
    margin: 50px 0;
  }
}
.loyalty-programs__items,
.loyalty-programs .wrapper .programs-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1024px) {
  .loyalty-programs__items,
  .loyalty-programs .wrapper .programs-items {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .loyalty-programs__items,
  .loyalty-programs .wrapper .programs-items {
    grid-template-columns: 1fr;
  }
}
.loyalty-programs__item,
.loyalty-programs .wrapper .programs-items .programs-item {
  border-radius: 10px;
  padding: 40px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  .loyalty-programs__item,
  .loyalty-programs .wrapper .programs-items .programs-item {
    padding: 20px 15px 0;
  }
}
.loyalty-programs__item .img2,
.loyalty-programs .wrapper .programs-items .programs-item .img2 {
  position: absolute;
  bottom: 0;
  right: 40px;
}
@media (max-width: 1480px) {
  .loyalty-programs__item .img2,
  .loyalty-programs .wrapper .programs-items .programs-item .img2 {
    width: 14vw;
  }
}
@media (max-width: 1024px) {
  .loyalty-programs__item .img2,
  .loyalty-programs .wrapper .programs-items .programs-item .img2 {
    width: 20vw;
  }
}
@media (max-width: 767px) {
  .loyalty-programs__item .img2,
  .loyalty-programs .wrapper .programs-items .programs-item .img2 {
    width: 28vw;
  }
}
.loyalty-programs__item .img1,
.loyalty-programs .wrapper .programs-items .programs-item .img1 {
  margin-top: auto;
  width: 100%;
}
.loyalty-programs__item h3,
.loyalty-programs .wrapper .programs-items .programs-item h3 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}
@media (max-width: 1200px) {
  .loyalty-programs__item h3,
  .loyalty-programs .wrapper .programs-items .programs-item h3 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .loyalty-programs__item h3,
  .loyalty-programs .wrapper .programs-items .programs-item h3 {
    font-size: 28px;
  }
}
.loyalty-programs__item p,
.loyalty-programs .wrapper .programs-items .programs-item p {
  max-width: 560px;
  margin-bottom: 24px;
  color: #4f4f4f;
}
@media (max-width: 767px) {
  .loyalty-programs__item p,
  .loyalty-programs .wrapper .programs-items .programs-item p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.loyalty-programs__item.grey,
.loyalty-programs .wrapper .programs-items .programs-item.grey {
  background: #f9f9f9;
}
.loyalty-programs__item.grey .green-btn,
.loyalty-programs .wrapper .programs-items .programs-item.grey .green-btn {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .loyalty-programs__item.grey .green-btn,
  .loyalty-programs .wrapper .programs-items .programs-item.grey .green-btn {
    margin-bottom: 20px;
  }
}
.loyalty-programs__item.green,
.loyalty-programs .wrapper .programs-items .programs-item.green {
  background: #0e6131;
  position: relative;
}
@media (max-width: 1024px) {
  .loyalty-programs__item.green,
  .loyalty-programs .wrapper .programs-items .programs-item.green {
    padding: 20px 15px 190px;
  }
}
.loyalty-programs__item.green::after,
.loyalty-programs .wrapper .programs-items .programs-item.green::after {
  content: "";
  border: 70px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 15%;
  height: 100px;
  width: calc(70% - 140px);
  z-index: -1;
}
@media (max-width: 1024px) {
  .loyalty-programs__item.green::after,
  .loyalty-programs .wrapper .programs-items .programs-item.green::after {
    border-width: 50px;
    width: calc(80% - 140px);
  }
}
.loyalty-programs__item.green h3,
.loyalty-programs .wrapper .programs-items .programs-item.green h3 {
  color: white;
}
.loyalty-programs__item.green p,
.loyalty-programs .wrapper .programs-items .programs-item.green p {
  max-width: 440px;
  color: white;
  margin-bottom: 40px;
}
.loyalty-programs__item.green .img3,
.loyalty-programs .wrapper .programs-items .programs-item.green .img3 {
  position: absolute;
  right: 50px;
  bottom: 0;
}
@media (max-width: 1480px) {
  .loyalty-programs__item.green .img3,
  .loyalty-programs .wrapper .programs-items .programs-item.green .img3 {
    width: 20vw;
  }
}
@media (max-width: 767px) {
  .loyalty-programs__item.green .img3,
  .loyalty-programs .wrapper .programs-items .programs-item.green .img3 {
    width: 40vw;
    right: 20px;
  }
}

.current-projects-banner {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .current-projects-banner {
    margin-bottom: 50px;
  }
}
.current-projects-banner .wrapper .top-info {
  padding: 50px;
  padding-right: 0;
  background: #eafbe4;
  border-radius: 10px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (max-width: 1300px) {
  .current-projects-banner .wrapper .top-info {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .top-info {
    padding: 0;
  }
}
.current-projects-banner .wrapper .top-info .text-wrap {
  max-width: 650px;
}
@media (max-width: 1300px) {
  .current-projects-banner .wrapper .top-info .text-wrap {
    max-width: inherit;
    width: 55%;
  }
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .top-info .text-wrap {
    padding: 15px;
    width: 100%;
  }
}
.current-projects-banner .wrapper .top-info .text-wrap h1 {
  font-size: 48px;
  margin-top: 15px;
  color: #000;
}
@media (max-width: 1024px) {
  .current-projects-banner .wrapper .top-info .text-wrap h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .top-info .text-wrap h1 {
    font-size: 24px;
    margin-top: 10px;
  }
}
.current-projects-banner .wrapper .top-info .text-wrap .grey-btn {
  margin-top: 24px;
  background: white;
  color: #141414;
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .top-info .text-wrap .grey-btn {
    max-width: 470px;
    width: 100%;
    margin: 16px auto 0;
    padding: 10px 30px;
  }
}
.current-projects-banner .wrapper .top-info .text-wrap p {
  margin-top: 15px;
  color: #4f4f4f;
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .top-info .text-wrap p {
    font-size: 14px;
    margin-top: 10px;
  }
}
.current-projects-banner .wrapper .top-info .img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media (max-width: 1300px) {
  .current-projects-banner .wrapper .top-info .img {
    width: 42vw;
  }
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .top-info .img {
    position: static;
    width: 100%;
  }
}
.current-projects-banner .wrapper .top-info .img2 {
  position: absolute;
  bottom: 30px;
  right: 10%;
  z-index: -1;
}
@media (max-width: 1024px) {
  .current-projects-banner .wrapper .top-info .img2 {
    display: none;
  }
}
.current-projects-banner .wrapper .bottom-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .bottom-info {
    grid-template-columns: 1fr;
  }
}
.current-projects-banner .wrapper .bottom-info .info {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  padding: 20px 25px;
  position: relative;
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .bottom-info .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
  }
}
.current-projects-banner .wrapper .bottom-info .info .text {
  font-size: 24px;
  font-weight: 600;
  color: #141414;
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .bottom-info .info .text {
    font-size: 20px;
  }
}
.current-projects-banner .wrapper .bottom-info .info .number {
  font-size: 70px;
  line-height: 50px;
  color: #0e6131;
  position: absolute;
  bottom: 0;
  font-weight: 600;
  right: 30px;
}
@media (max-width: 1024px) {
  .current-projects-banner .wrapper .bottom-info .info .number {
    font-size: 50px;
    line-height: inherit;
    position: static;
  }
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .bottom-info .info .number {
    font-size: 36px;
  }
}
.current-projects-banner .wrapper .bottom-info-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (max-width: 1024px) {
  .current-projects-banner .wrapper .bottom-info-items {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .current-projects-banner .wrapper .bottom-info-items {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .current-projects-banner .wrapper .bottom-info-items {
    gap: 15px;
  }
}
.current-projects-banner .wrapper .bottom-info-items .bottom-info-item {
  background: #eafbe4;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .current-projects-banner .wrapper .bottom-info-items .bottom-info-item {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .current-projects-banner .wrapper .bottom-info-items .bottom-info-item {
    padding: 20px 18px;
  }
}
.current-projects-banner .wrapper .bottom-info-items .bottom-info-item b {
  display: block;
  margin-top: 7px;
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 600;
  color: #141414;
}
@media (max-width: 1200px) {
  .current-projects-banner .wrapper .bottom-info-items .bottom-info-item b {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .current-projects-banner .wrapper .bottom-info-items .bottom-info-item b {
    font-size: 20px;
  }
}
.current-projects-banner .wrapper .bottom-info-items .bottom-info-item span {
  font-size: 16px;
  color: #4f4f4f;
}
@media (max-width: 1024px) {
  .current-projects-banner .wrapper .bottom-info-items .bottom-info-item span {
    font-size: 15px;
  }
}

.tab-content {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .tab-content {
    margin-top: 30px;
  }
}
.tab-content .tab-content-item .apartments-items1 .grey-btn {
  margin: 10px 0 25px;
}

.favorites-item2 {
  text-align: left;
  display: flex;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #f9f9f9;
  width: 100%;
  transition: 0.3s;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .favorites-item2 {
    padding: 20px 0;
    border: none;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid #dadada;
    background: none;
  }
}
.favorites-item2 .img-wrap {
  border-radius: 5px;
  overflow: hidden;
  min-width: 150px;
  height: 100px;
  display: flex;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .favorites-item2 .img-wrap {
    margin-right: 10px;
    min-width: 100px;
    height: auto;
    align-self: flex-start;
    width: 100px;
  }
}
.favorites-item2 .text-wrap {
  flex-grow: 1;
}
.favorites-item2 .text-wrap b {
  display: block;
  font-size: 24px;
  line-height: 26px;
  color: #000;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .favorites-item2 .text-wrap b {
    font-size: 18px;
    line-height: 22px;
  }
}
.favorites-item2 .text-wrap .texts-info {
  display: flex;
}
@media (max-width: 767px) {
  .favorites-item2 .text-wrap .texts-info {
    flex-direction: column;
  }
}
.favorites-item2 .texts {
  display: flex;
  flex-direction: column;
}
.favorites-item2 .texts span {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 7px;
  color: #4f4f4f;
  display: inline-block;
}
.favorites-item2 .texts span.black {
  color: #141414;
  font-weight: 500;
}
.favorites-item2 .texts p span {
  width: 260px;
}
@media (max-width: 767px) {
  .favorites-item2 .icons {
    display: none;
  }
}
.favorites-item2 .icons .icon {
  margin-bottom: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
  color: #a5a5a5;
}

@media (max-width: 767px) {
  .wrapper .tab-content .tab-content-item .favorites-item2 {
    padding: 20px 0;
    border: none;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid #dadada;
    background: none;
  }
}

@media (max-width: 767px) {
  .apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .img-wrap {
    margin-right: 10px;
    min-width: 100px;
    height: auto;
    align-self: flex-start;
    width: 100px;
  }
}
@media (max-width: 767px) {
  .apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .text-wrap b {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .apartments-wrap .wrapper .tab-content .tab-content-item .apartments-items1 .favorites-item2 .text-wrap .texts-info {
    flex-direction: column;
  }
}
.apartments-wrap .tab-menu li button .icon {
  width: 29px;
  height: 29px;
  background: url(https://mrcherry89.github.io/svoyDomNew/img/svg1.svg) center center/18px 18px no-repeat;
  transition: 0.3s;
}
.apartments-wrap .tab-menu li.active button .icon {
  background: url(https://mrcherry89.github.io/svoyDomNew/img/svg1-1.svg) center center/18px 18px no-repeat;
}

.bx-filter-select-popup ul {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.popup-window {
  width: 180px;
}

.b24-form-dropdown-container {
  height: 150px;
}

.b24-form-control {
  height: 50px;
  width: 100%;
  border-radius: 50px;
  margin-bottom: 15px;
  padding: 0 15px;
  border: 1px solid #e4e4e4;
  color: #4f4f4f;
  font-size: 16px;
}

.b24-form-btn {
  height: 50px !important;
  margin-top: 20px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  border-radius: 100px !important;
}

.widget__hint {
  display: none !important;
}

.poweredby {
  display: none !important;
}

#contact-details-popup {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}

.contact-details {
  border-radius: 12px;
  background: white;
  padding: 40px;
  box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.11);
  width: 100%;
}
@media (max-width: 767px) {
  .contact-details {
    padding: 30px 20px;
  }
}

.contact-details-form {
  width: 100%;
  flex-direction: column;
  display: flex;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contact-details-form {
    margin-top: 30px;
  }
}
.contact-details-form p {
  font-size: 18px;
  color: #4f4f4f;
}
.contact-details-form input {
  height: 50px;
  width: 100%;
  border-radius: 50px;
  margin-bottom: 15px;
  padding: 0 15px;
  border: 1px solid #e4e4e4;
  color: #4f4f4f;
  font-size: 16px;
}
.contact-details-form input::placeholder {
  color: #4f4f4f;
  font-size: 16px;
}
.contact-details-form button {
  height: 50px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.contact-us .contact-form-wrap .b24-form-header-padding,
.contact-us .contact-form-wrap .b24-form-content {
  background-color: #e5f7ea;
}
.contact-us .contact-form-wrap .b24-form-control-label {
  padding-left: 18px;
  padding-bottom: 17px;
}

.contact-info-wrap iframe {
  height: 385px;
  width: 100%;
}

.interview .main-title {
  color: #000;
}

.bott_copy_txt {
  font-size: 9px;
}

.fixed-block .info h4 {
  text-align: center;
  color: #000;
  margin-bottom: 12px;
  font-size: 18px;
}

@media (max-width: 1024px) {
  .main-menu {
    gap: 18px;
  }
}

.title-style {
  width: 100%;
  margin-bottom: 30px;
}

.apartment-search-info form .info-wrap2 .left-info .options {
  align-items: flex-end;
}

.filter-tab {
  color: #4f4f4f !important;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  z-index: 0;
}
.filter-tab::after {
  content: "";
  bottom: 0;
  left: 0;
  height: 3px;
  transition: 0.3s;
  width: 100%;
  background: rgba(18, 192, 91, 0.45) !important;
  position: absolute;
}
@media (max-width: 767px) {
  .filter-tab::after {
    height: 2px;
  }
}
.filter-tab.active, .filter-tab:hover {
  color: #0e6131 !important;
}
.filter-tab.active::after, .filter-tab:hover::after {
  background: rgba(18, 192, 91, 0.45) !important;
}

#submit-application-popup {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
#submit-application-popup .popup-body {
  position: relative;
  z-index: 0;
  width: 100%;
  display: flex;
}
#submit-application-popup .popup-body .mfp-close {
  right: -20px;
  top: -30px;
  background: url(/local/templates/svdom_new/img/close-popup.svg) center center/cover no-repeat;
  width: 20px;
  height: 20px;
}
@media (max-width: 1200px) {
  #submit-application-popup .popup-body .mfp-close {
    right: 0;
  }
}
@media (max-width: 767px) {
  #submit-application-popup .popup-body .mfp-close {
    right: 0;
    z-index: 100;
    opacity: 1;
  }
}
#submit-application-popup .popup-body .popup-info {
  display: flex;
  width: 100%;
}
#submit-application-popup .popup-body .popup-info .leave-request-form {
  width: 55%;
  background: #0e6131;
  padding: 90px 40px;
}
@media (max-width: 767px) {
  #submit-application-popup .popup-body .popup-info .leave-request-form {
    width: 100%;
    padding: 60px 20px;
  }
}
#submit-application-popup .popup-body .popup-info .leave-request-form h3 {
  font-size: 52px;
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  #submit-application-popup .popup-body .popup-info .leave-request-form h3 {
    font-size: 34px;
    margin-bottom: 10px;
  }
}
#submit-application-popup .popup-body .popup-info .leave-request-form p {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}
@media (max-width: 767px) {
  #submit-application-popup .popup-body .popup-info .leave-request-form p {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
#submit-application-popup .popup-body .popup-info .leave-request-form input {
  width: 100%;
  height: 60px;
  background: #f2f2f2;
  padding: 0 20px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #000;
}
#submit-application-popup .popup-body .popup-info .leave-request-form input::placeholder {
  color: #979797;
  font-size: 18px;
}
#submit-application-popup .popup-body .popup-info .leave-request-form button {
  background: #f2f2f2;
  color: #655d4d;
  font-size: 18px;
  font-weight: bold;
}
#submit-application-popup .popup-body .popup-info .img-wrap {
  width: 45%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 767px) {
  #submit-application-popup .popup-body .popup-info .img-wrap {
    display: none;
  }
}
#submit-application-popup .b24-form-wrapper {
  background: none;
}
#submit-application-popup .b24-form-wrapper.b24-form-border-bottom {
  border-bottom: none;
}
#submit-application-popup .b24-form-control-container input {
  border-radius: 0 !important;
}
#submit-application-popup .b24-form-btn-block button {
  border-radius: 0 !important;
}

.mission-hero {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .mission-hero {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .mission-hero {
    margin-bottom: 50px;
  }
}
.mission-hero__inner {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1200px) {
  .mission-hero__inner {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .mission-hero__inner {
    gap: 30px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .mission-hero__inner {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.mission-hero__image {
  flex-shrink: 0;
  width: 38%;
  aspect-ratio: 630/820;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .mission-hero__image {
    width: 44%;
  }
}
@media (max-width: 767px) {
  .mission-hero__image {
    width: 100%;
    height: 220px;
    aspect-ratio: auto;
    border-radius: 10px;
  }
}
.mission-hero__image picture,
.mission-hero__image img,
.mission-hero__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mission-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .mission-hero__content {
    align-items: center;
    text-align: center;
  }
}
.mission-hero__badge {
  display: inline-block;
  background: #e1e2e5;
  color: #151515;
  font-size: 17px;
  font-weight: 300;
  padding: 10px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .mission-hero__badge {
    display: none;
  }
}
.mission-hero__title {
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  line-height: 1.15;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .mission-hero__title {
    font-size: 44px;
  }
}
@media (max-width: 1024px) {
  .mission-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .mission-hero__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
.mission-hero__text {
  font-size: 21px;
  font-weight: 300;
  color: #555555;
  line-height: 1.3;
  margin-bottom: 12px;
  max-width: 656px;
}
.mission-hero__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .mission-hero__text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .mission-hero__text {
    font-size: 15px;
    line-height: 1.45;
  }
}

.mission-principles {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .mission-principles {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .mission-principles {
    margin-bottom: 50px;
  }
}
.mission-principles__title {
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  line-height: 1.15;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 1200px) {
  .mission-principles__title {
    font-size: 44px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .mission-principles__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .mission-principles__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
  }
}
.mission-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .mission-principles__grid {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .mission-principles__grid {
    display: block;
  }
  .mission-principles__grid.slick-initialized {
    padding-bottom: 0;
  }
  .mission-principles__grid.slick-initialized .slick-list {
    margin: 0 -8px;
  }
}
.mission-principles__card {
  background: #f4f4f4;
  padding: 55px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .mission-principles__card {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .mission-principles__card {
    padding: 30px 24px;
    align-items: flex-start;
    text-align: left;
    margin: 0 8px;
  }
}
.mission-principles__card-icon {
  margin-bottom: 32px;
  height: 32px;
}
.mission-principles__card-icon img, .mission-principles__card-icon svg {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .mission-principles__card-icon {
    margin-bottom: 20px;
  }
}
.mission-principles__card-value {
  font-size: 40px;
  font-weight: 300;
  color: #151515;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 1200px) {
  .mission-principles__card-value {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .mission-principles__card-value {
    font-size: 32px;
    line-height: 1.1;
  }
}
.mission-principles__card-label {
  font-size: 28px;
  font-weight: 300;
  color: #151515;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .mission-principles__card-label {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .mission-principles__card-label {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.mission-principles__card-text {
  font-size: 16px;
  font-weight: 300;
  color: #555555;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .mission-principles__card-text {
    font-size: 14px;
    line-height: 1.45;
  }
}

.mission-best {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .mission-best {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .mission-best {
    margin-bottom: 50px;
  }
}
.mission-best__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .mission-best__header {
    gap: 16px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .mission-best__header {
    gap: 12px;
    margin-bottom: 24px;
  }
}
.mission-best__title {
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  line-height: 1.15;
}
@media (max-width: 1200px) {
  .mission-best__title {
    font-size: 44px;
  }
}
@media (max-width: 1024px) {
  .mission-best__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .mission-best__title {
    font-size: 28px;
    line-height: 1.2;
  }
}
.mission-best__subtitle {
  font-size: 21px;
  font-weight: 300;
  color: #555555;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .mission-best__subtitle {
    font-size: 15px;
    line-height: 1.45;
  }
}
.mission-best__feature {
  display: flex;
  overflow: hidden;
  margin-bottom: 22px;
  gap: 22px;
  min-height: 560px;
}
@media (max-width: 1024px) {
  .mission-best__feature {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .mission-best__feature {
    flex-direction: column;
    gap: 0;
    border-radius: 10px;
    margin-bottom: 16px;
  }
}
.mission-best__feature-text {
  flex: 0 0 58%;
  background: #f4f4f4;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .mission-best__feature-text {
    padding: 40px;
  }
}
@media (max-width: 1024px) {
  .mission-best__feature-text {
    padding: 30px;
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .mission-best__feature-text {
    flex: none;
    padding: 30px 20px;
    text-align: center;
    align-items: center;
  }
}
.mission-best__feature-title {
  font-size: 43px;
  font-weight: 400;
  color: #151515;
  line-height: 1.16;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .mission-best__feature-title {
    font-size: 34px;
  }
}
@media (max-width: 1024px) {
  .mission-best__feature-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .mission-best__feature-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.mission-best__feature-desc {
  font-size: 21px;
  font-weight: 300;
  color: #555555;
  line-height: 1.3;
  margin-bottom: 16px;
}
.mission-best__feature-desc:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .mission-best__feature-desc {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .mission-best__feature-desc {
    font-size: 15px;
    line-height: 1.45;
  }
}
.mission-best__feature-image {
  flex: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mission-best__feature-image {
    display: none;
  }
}
.mission-best__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mission-best__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .mission-best__grid {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .mission-best__grid {
    display: block;
  }
  .mission-best__grid.slick-initialized .slick-list {
    margin: 0 -4px;
  }
}
.mission-best__grid-item {
  overflow: hidden;
  height: 380px;
}
.mission-best__grid-item.mobile-feature-image {
  display: none;
}
@media (max-width: 767px) {
  .mission-best__grid-item.mobile-feature-image {
    display: block;
  }
}
@media (max-width: 1200px) {
  .mission-best__grid-item {
    height: 300px;
  }
}
@media (max-width: 1024px) {
  .mission-best__grid-item {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .mission-best__grid-item {
    height: 127px;
    margin: 0 4px;
  }
}
.mission-best__grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mission-best__grid-item:hover img {
  transform: scale(1.04);
}

.history-hero {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .history-hero {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .history-hero {
    margin-bottom: 40px;
  }
}
.history-hero__inner {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1200px) {
  .history-hero__inner {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .history-hero__inner {
    gap: 30px;
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .history-hero__inner {
    flex-direction: column-reverse;
    gap: 16px;
  }
}
.history-hero__image {
  flex-shrink: 0;
  width: 38%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .history-hero__image {
    width: 44%;
  }
}
@media (max-width: 767px) {
  .history-hero__image {
    width: 100%;
    height: 220px;
    border-radius: 10px;
  }
}
.history-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.history-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .history-hero__content {
    align-items: center;
    text-align: center;
  }
}
.history-hero__badge {
  display: inline-block;
  background: #e1e2e5;
  color: #151515;
  font-size: 17px;
  font-weight: 300;
  padding: 10px 18px;
  border-radius: 10px;
  margin-bottom: 24px;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .history-hero__badge {
    display: none;
  }
}
.history-hero__title {
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  line-height: 1.15;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .history-hero__title {
    font-size: 44px;
  }
}
@media (max-width: 1024px) {
  .history-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .history-hero__title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}
.history-hero__text {
  font-size: 21px;
  font-weight: 300;
  color: #555555;
  line-height: 1.3;
  margin-bottom: 12px;
  max-width: 656px;
}
.history-hero__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .history-hero__text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .history-hero__text {
    font-size: 15px;
    line-height: 21px;
  }
}

.history-timeline {
  padding: 75px 0;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .history-timeline {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .history-timeline {
    padding: 40px 0;
    overflow: hidden;
  }
}
.history-timeline .wrapper {
  max-width: 1216px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .history-timeline .wrapper {
    padding: 0 10px;
  }
}
.history-timeline__title {
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  line-height: 1.15;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .history-timeline__title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 24px;
    text-align: center;
  }
}
.history-timeline__desktop {
  display: block;
}
@media (max-width: 767px) {
  .history-timeline__desktop {
    display: none;
  }
}
.history-timeline__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.history-timeline__item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}
.history-timeline__item:nth-child(odd) {
  flex-direction: row;
  gap: 32px;
}
.history-timeline__item:nth-child(odd) .history-timeline__year {
  margin-left: 32px;
}
@media (max-width: 1145px) {
  .history-timeline__item:nth-child(odd) .history-timeline__year {
    margin-left: 0;
  }
}
.history-timeline__item:nth-child(even) {
  flex-direction: row;
  justify-content: flex-end;
  gap: 32px;
}
.history-timeline__item:nth-child(even) .history-timeline__card {
  order: -1;
}
.history-timeline__item:nth-child(even) .history-timeline__year {
  margin-right: 32px;
}
.history-timeline__year {
  background-color: #f4f4f4;
  color: #151515;
  font-size: 36px;
  width: 145px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.history-timeline__card {
  background-color: #f4f4f4;
  width: 904px;
  max-width: 100%;
  padding: 48px;
}
.history-timeline__heading {
  font-size: 30px;
  font-weight: 600;
  color: #151515;
  margin-bottom: 10px;
}
.history-timeline__desc {
  font-size: 20px;
  font-weight: 400;
  color: #777;
  line-height: 1.4;
  margin-bottom: 24px;
}
.history-timeline__achievements {
  display: flex;
  gap: 15px;
}
.history-timeline__achievement {
  flex: 1;
  background-color: #fff;
  color: #151515;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 19px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.history-timeline__item--highlighted .history-timeline__square {
  width: 24px;
  height: 24px;
  background-color: #0fa85f;
  flex-shrink: 0;
  margin-top: 24px;
}
@media (max-width: 1145px) {
  .history-timeline__item--highlighted .history-timeline__square {
    display: none;
  }
}
.history-timeline__item--highlighted .history-timeline__year {
  background-color: #0fa85f;
  color: #fff;
}
.history-timeline__item--highlighted .history-timeline__card {
  background-color: #0fa85f;
}
.history-timeline__item--highlighted .history-timeline__heading {
  color: #fff;
}
.history-timeline__item--highlighted .history-timeline__desc {
  color: rgba(255, 255, 255, 0.9);
}
.history-timeline__item--highlighted .history-timeline__achievement {
  color: #0fa85f;
}
.history-timeline__mobile {
  display: none;
}
@media (max-width: 767px) {
  .history-timeline__mobile {
    display: block;
  }
}
.history-timeline__years-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: none;
}
.history-timeline__years-nav::-webkit-scrollbar {
  display: none;
}
.history-timeline__year-tab {
  flex: 1 0 0;
  background: #f4f4f4;
  color: #151515;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
}
.history-timeline__year-tab.active {
  background: #0fa85f;
  color: #fff;
}
.history-timeline__main-slider {
  margin: 0 -16px;
}
.history-timeline__main-slider .slick-list {
  padding: 0 24px 0 0 !important;
  overflow: visible;
}
.history-timeline__slide-item {
  padding: 0 8px;
  outline: none;
  display: flex !important;
  flex-direction: column;
  gap: 7px;
}
.history-timeline__slide-item .history-timeline__card-main,
.history-timeline__slide-item .history-timeline__ach-box {
  background: #f4f4f4;
  color: #151515;
}
.history-timeline__slide-item .history-timeline__progress-line {
  background: #f4f4f4;
}
.history-timeline__slide-item.is-green .history-timeline__card-main {
  background: #0fa85f;
}
.history-timeline__slide-item.is-green .history-timeline__card-title {
  color: #fff;
}
.history-timeline__slide-item.is-green .history-timeline__card-text {
  color: #fff;
}
.history-timeline__slide-item.is-green .history-timeline__ach-box {
  background: #0fa85f;
  color: #fff;
}
.history-timeline__card-main {
  padding: 24px 16px;
  min-height: 187px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.history-timeline__card-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 12px;
  color: #151515;
}
.history-timeline__card-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  color: #555;
}
.history-timeline__card-achievements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.history-timeline__ach-box {
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 300;
  line-height: 14px;
  min-height: 62px;
  display: flex;
  align-items: flex-start;
  text-align: left;
}
.history-timeline__footer-nav {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.history-timeline__progress-line {
  height: 7.7px;
  flex-grow: 1;
}
.history-timeline__next-btn {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #0fa85f;
  background: none;
  border-right: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
  position: relative;
}
.history-timeline__next-btn::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
}
.history-timeline__next-btn:active {
  opacity: 0.6;
}

.history-gallery {
  margin-top: 75px;
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .history-gallery {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .history-gallery {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.history-gallery .wrapper {
  max-width: 1216px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .history-gallery .wrapper {
    padding: 0 10px;
  }
}
.history-gallery__title {
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  line-height: 60px;
  margin-bottom: 36px;
}
@media (max-width: 1200px) {
  .history-gallery__title {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 28px;
  }
}
@media (max-width: 1024px) {
  .history-gallery__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .history-gallery__title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.history-gallery__item {
  aspect-ratio: 108/128;
  overflow: hidden;
  margin: 0 11px;
  outline: none;
}
@media (max-width: 767px) {
  .history-gallery__item {
    margin: 0 4px;
  }
}
.history-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.history-gallery__item:hover img {
  transform: scale(1.03);
}
.history-gallery__dots {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .history-gallery__dots {
    display: none;
  }
}
.history-gallery__dots .slick-dots {
  position: static;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.history-gallery__dots .slick-dots li {
  width: 11px;
  height: 11px;
  margin: 0;
}
.history-gallery__dots .slick-dots li button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c4d5d0;
  padding: 0;
  border: none;
  font-size: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.history-gallery__dots .slick-dots li button::before {
  display: none;
}
.history-gallery__dots .slick-dots li.slick-active button {
  background: #0fa85f;
}

.onas-hero {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .onas-hero {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .onas-hero {
    margin-bottom: 40px;
  }
}
.onas-hero__inner {
  display: flex;
  gap: 7%;
  padding-top: 53px;
}
@media (max-width: 1200px) {
  .onas-hero__inner {
    gap: 4%;
  }
}
@media (max-width: 1024px) {
  .onas-hero__inner {
    gap: 30px;
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .onas-hero__inner {
    flex-direction: column;
    gap: 32px;
    padding-top: 45px;
  }
}
.onas-hero__left {
  flex-shrink: 0;
  width: 39%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1024px) {
  .onas-hero__left {
    width: 42%;
  }
}
@media (max-width: 767px) {
  .onas-hero__left {
    width: 100%;
    order: 2;
  }
}
.onas-hero__image {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 515/469;
  overflow: hidden;
}
@media (max-width: 767px) {
  .onas-hero__image {
    aspect-ratio: 340/220;
    border-radius: 0;
  }
}
.onas-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.onas-hero__stats {
  display: flex;
  gap: 12px;
}
@media (max-width: 767px) {
  .onas-hero__stats {
    gap: 8px;
  }
}
.onas-hero__stat {
  flex: 1 1 0%;
  min-width: 0;
  aspect-ratio: 251/131;
  padding: 24px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .onas-hero__stat {
    aspect-ratio: auto;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .onas-hero__stat {
    aspect-ratio: 166/103;
    padding: 22px 21px;
  }
}
.onas-hero__stat--green {
  background: #0fa85f;
}
.onas-hero__stat--green .onas-hero__stat-number,
.onas-hero__stat--green .onas-hero__stat-label {
  color: #fff;
}
.onas-hero__stat-number {
  font-family: "TikTok Sans", sans-serif;
  font-size: 56px;
  font-weight: 300;
  color: #151515;
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 1200px) {
  .onas-hero__stat-number {
    font-size: 44px;
  }
}
@media (max-width: 1024px) {
  .onas-hero__stat-number {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .onas-hero__stat-number {
    font-size: 38px;
  }
}
.onas-hero__stat-label {
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 250;
  color: #555555;
  line-height: 1.3;
  width: 65%;
}
@media (max-width: 1024px) {
  .onas-hero__stat-label {
    font-size: 14px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .onas-hero__stat-label {
    font-size: 13px;
    line-height: 1;
  }
}
.onas-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .onas-hero__content {
    align-items: center;
    text-align: center;
    order: 1;
  }
}
.onas-hero__badge {
  display: inline-block;
  background: #e1e2e5;
  color: #151515;
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 300;
  padding: 10px 18px;
  border-radius: 10px;
  margin-bottom: 33px;
  align-self: flex-start;
}
@media (max-width: 1024px) {
  .onas-hero__badge {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .onas-hero__badge {
    display: none;
  }
}
.onas-hero__title {
  font-family: "TikTok Sans", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  line-height: 60px;
  margin-bottom: 38px;
}
.onas-hero__title span, .onas-hero__title b, .onas-hero__title strong {
  color: #0fa85f;
  font-weight: inherit;
}
@media (max-width: 1200px) {
  .onas-hero__title {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .onas-hero__title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .onas-hero__title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 32px;
    padding: 0 10px;
  }
  .onas-hero__title span, .onas-hero__title b, .onas-hero__title strong {
    color: #777777;
  }
}
.onas-hero__text {
  font-family: "Geologica", sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: #555555;
  line-height: 27px;
  margin-bottom: 12px;
}
.onas-hero__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .onas-hero__text {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .onas-hero__text {
    font-size: 15px;
    line-height: 21px;
    padding: 0 10px;
  }
}

.onas-leadership {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .onas-leadership {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .onas-leadership {
    margin-bottom: 40px;
  }
}
.onas-leadership__title {
  font-family: "TikTok Sans", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .onas-leadership__title {
    font-size: 44px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .onas-leadership__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .onas-leadership__title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 25px;
  }
}
.onas-leadership__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (max-width: 767px) {
  .onas-leadership__list {
    gap: 40px;
  }
}
.onas-leadership__item {
  display: flex;
  overflow: hidden;
  aspect-ratio: 1322/427;
  gap: 22px;
}
@media (max-width: 1200px) {
  .onas-leadership__item {
    aspect-ratio: auto;
    min-height: 380px;
  }
}
@media (max-width: 1024px) {
  .onas-leadership__item {
    min-height: 340px;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .onas-leadership__item {
    flex-direction: column !important;
    aspect-ratio: auto;
    min-height: auto;
    gap: 10px;
  }
}
.onas-leadership__item--reversed {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .onas-leadership__item--reversed {
    flex-direction: column;
  }
}
.onas-leadership__info {
  flex: 0 0 57.6%;
  background: #f5f5f5;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .onas-leadership__info {
    padding: 40px;
  }
}
@media (max-width: 1024px) {
  .onas-leadership__info {
    padding: 30px 25px;
    flex: 0 0 55%;
  }
}
@media (max-width: 767px) {
  .onas-leadership__info {
    flex: none;
    padding: 25px 10px;
    text-align: center;
    align-items: center;
  }
}
.onas-leadership__name {
  font-family: "TikTok Sans", sans-serif;
  font-size: 43px;
  font-weight: 400;
  color: #151515;
  line-height: 1.15;
  margin-bottom: 35px;
}
@media (max-width: 1200px) {
  .onas-leadership__name {
    font-size: 36px;
    margin-bottom: 24px;
  }
}
@media (max-width: 1024px) {
  .onas-leadership__name {
    font-size: 30px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .onas-leadership__name {
    font-size: 28px;
    line-height: 50px;
    margin-bottom: 0;
  }
}
.onas-leadership__role {
  font-family: "TikTok Sans", sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: #151515;
  margin-bottom: 38px;
}
@media (max-width: 1200px) {
  .onas-leadership__role {
    font-size: 18px;
    margin-bottom: 28px;
  }
}
@media (max-width: 1024px) {
  .onas-leadership__role {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .onas-leadership__role {
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 20px;
  }
}
.onas-leadership__desc {
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-weight: 250;
  color: #555555;
  line-height: 27px;
  margin-bottom: 37px;
}
@media (max-width: 1200px) {
  .onas-leadership__desc {
    margin-bottom: 28px;
  }
}
@media (max-width: 1024px) {
  .onas-leadership__desc {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .onas-leadership__desc {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px;
  }
}
.onas-leadership__actions {
  display: flex;
  gap: 6px;
}
@media (max-width: 767px) {
  .onas-leadership__actions {
    gap: 7px;
    width: 100%;
    max-width: 303px;
  }
}
.onas-leadership__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 80px;
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.onas-leadership__btn:hover {
  opacity: 0.85;
}
@media (max-width: 1024px) {
  .onas-leadership__btn {
    height: 46px;
    padding: 0 22px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .onas-leadership__btn {
    flex: 1;
    height: 40px;
    padding: 0 28px;
  }
}
.onas-leadership__btn--filled {
  background: #0fa85f;
  color: #fff;
  border: none;
}
.onas-leadership__btn--outline {
  background: transparent;
  color: #0fa85f;
  border: 1px solid #0fa85f;
}
.onas-leadership__photo {
  flex: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .onas-leadership__photo {
    aspect-ratio: 340/226;
    order: -1;
  }
}
.onas-leadership__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.onas-team-section {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .onas-team-section {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .onas-team-section {
    margin-bottom: 40px;
  }
}
.onas-team-section__title {
  font-family: "TikTok Sans", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .onas-team-section__title {
    font-size: 44px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .onas-team-section__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .onas-team-section__title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 25px;
  }
}
.onas-team-section__slider {
  margin: 0 -11px;
}
@media (max-width: 1024px) {
  .onas-team-section__slider {
    margin: 0 -8px;
  }
}
@media (max-width: 767px) {
  .onas-team-section__slider {
    margin: 0 -4px;
  }
}
.onas-team-section__slider.slick-dotted.slick-slider {
  margin-bottom: 54px;
}
@media (max-width: 1024px) {
  .onas-team-section__slider.slick-dotted.slick-slider {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .onas-team-section__slider.slick-dotted.slick-slider {
    margin-bottom: 30px;
  }
}
.onas-team-section__card {
  position: relative;
  overflow: hidden;
  margin: 0 11px;
}
@media (max-width: 1024px) {
  .onas-team-section__card {
    margin: 0 8px;
  }
}
@media (max-width: 767px) {
  .onas-team-section__card {
    margin: 0;
    padding: 0 4px;
  }
}
.onas-team-section__card-photo {
  width: 100%;
  aspect-ratio: 314/416;
  overflow: hidden;
}
@media (max-width: 767px) {
  .onas-team-section__card-photo {
    aspect-ratio: 166/285;
  }
}
.onas-team-section__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.onas-team-section__card:hover .onas-team-section__card-photo img {
  transform: scale(1.04);
}
.onas-team-section__card-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #fff;
  padding: 20px 22px;
}
@media (max-width: 1024px) {
  .onas-team-section__card-info {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 14px 16px;
  }
}
@media (max-width: 767px) {
  .onas-team-section__card-info {
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.onas-team-section__card-name {
  font-family: "TikTok Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #151515;
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .onas-team-section__card-name {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
@media (max-width: 767px) {
  .onas-team-section__card-name {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 0;
  }
}
.onas-team-section__card-role {
  font-family: "TikTok Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555555;
}
@media (max-width: 767px) {
  .onas-team-section__card-role {
    font-size: 13px;
    line-height: 16px;
    width: 80%;
  }
}
.onas-team-section__dots {
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .onas-team-section__dots {
    margin-top: 20px;
  }
}
.onas-team-section__dots .slick-dots {
  position: static;
  display: flex !important;
  justify-content: center;
  gap: 46px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .onas-team-section__dots .slick-dots {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .onas-team-section__dots .slick-dots {
    gap: 15px;
  }
}
.onas-team-section__dots .slick-dots li {
  width: 11px;
  height: 11px;
  margin: 0;
}
.onas-team-section__dots .slick-dots li button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #c3d5d0;
  padding: 0;
  border: none;
  font-size: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.onas-team-section__dots .slick-dots li button::before {
  display: none;
}
.onas-team-section__dots .slick-dots li.slick-active button {
  background: #0fa85f;
}

.career-hero {
  margin-bottom: 75px;
  margin-top: 53px;
}
@media (max-width: 1024px) {
  .career-hero {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .career-hero {
    margin-bottom: 50px;
    margin-top: 44px;
  }
}
.career-hero__inner {
  display: flex;
  gap: 106px;
  align-items: center;
}
@media (max-width: 1200px) {
  .career-hero__inner {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .career-hero__inner {
    gap: 30px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .career-hero__inner {
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }
}
.career-hero__image {
  flex-shrink: 0;
  width: 38%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .career-hero__image {
    width: 44%;
  }
}
@media (max-width: 767px) {
  .career-hero__image {
    width: 100%;
    aspect-ratio: 340/220;
    border-radius: 0;
    order: 2;
  }
}
.career-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.career-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .career-hero__content {
    align-items: center;
    text-align: center;
    order: 1;
    margin-bottom: 24px;
  }
}
.career-hero__badge {
  display: inline-block;
  background: #e1e2e5;
  color: #151515;
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 21px;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 33px;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .career-hero__badge {
    display: none;
  }
}
.career-hero__title {
  font-family: "TikTok Sans", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  line-height: 60px;
  margin-bottom: 39px;
}
@media (max-width: 1200px) {
  .career-hero__title {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (max-width: 1024px) {
  .career-hero__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .career-hero__title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 32px;
  }
}
.career-hero__text {
  font-family: "Geologica", sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: #555555;
  line-height: 27px;
  margin-bottom: 40px;
  max-width: 656px;
}
.career-hero__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .career-hero__text {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .career-hero__text {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 24px;
  }
}
.career-hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .career-hero__list {
    gap: 10px;
    width: 100%;
  }
}
.career-hero__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Geologica", sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: #555555;
  line-height: 19px;
}
.career-hero__list-item svg {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .career-hero__list-item {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .career-hero__list-item {
    font-family: "Geologica", sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 19px;
    color: #151515;
    border: 1px solid #eaeaea;
    border-radius: 0;
    min-height: 30px;
    justify-content: center;
    text-align: center;
  }
  .career-hero__list-item svg {
    display: none;
  }
}

.career-benefits {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .career-benefits {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .career-benefits {
    margin-bottom: 50px;
  }
}
.career-benefits__title {
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  line-height: 1.15;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 1200px) {
  .career-benefits__title {
    font-size: 44px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .career-benefits__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .career-benefits__title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}
.career-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .career-benefits__grid {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .career-benefits__grid {
    display: block;
  }
  .career-benefits__grid.slick-initialized {
    padding-bottom: 0;
  }
  .career-benefits__grid.slick-initialized .slick-list {
    margin: 0 -8px;
  }
}
.career-benefits__card {
  background: #f4f4f4;
  padding: 55px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .career-benefits__card {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .career-benefits__card {
    padding: 40px 24px;
    align-items: flex-start;
    text-align: left;
    margin: 0 8px;
  }
}
.career-benefits__card-icon {
  margin-bottom: 28px;
  height: 44px;
}
.career-benefits__card-icon img, .career-benefits__card-icon svg {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .career-benefits__card-icon {
    margin-bottom: 24px;
    height: 28px;
  }
  .career-benefits__card-icon img, .career-benefits__card-icon svg {
    filter: brightness(0) saturate(100%) invert(47%);
  }
}
.career-benefits__card-value {
  font-size: 40px;
  font-weight: 300;
  color: #151515;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 1200px) {
  .career-benefits__card-value {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .career-benefits__card-value {
    font-size: 32px;
    line-height: 1.1;
  }
}
.career-benefits__card-label {
  font-family: "TikTok Sans", sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #151515;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .career-benefits__card-label {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .career-benefits__card-label {
    font-size: 28px;
    line-height: 29px;
    margin-bottom: 23px;
  }
}
.career-benefits__card-text {
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #555555;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .career-benefits__card-text {
    font-size: 14px;
    line-height: 19px;
  }
}

.career-vacancies {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .career-vacancies {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .career-vacancies {
    margin-bottom: 40px;
  }
}
.career-vacancies__title {
  font-family: "TikTok Sans", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #151515;
  text-align: center;
  line-height: 60px;
  margin-bottom: 55px;
}
@media (max-width: 1200px) {
  .career-vacancies__title {
    font-size: 44px;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .career-vacancies__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .career-vacancies__title {
    font-size: 27px;
    line-height: 32px;
    margin-bottom: 25px;
  }
}
.career-vacancies__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.career-vacancies__item {
  background: #f4f4f4;
  padding: 38px 65px;
}
@media (max-width: 1024px) {
  .career-vacancies__item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .career-vacancies__item {
    padding: 27px 18px;
  }
}
.career-vacancies__header {
  padding-bottom: 19px;
  max-width: 700px;
}
@media (max-width: 767px) {
  .career-vacancies__header {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    padding-bottom: 11px;
  }
}
.career-vacancies__name {
  font-family: "TikTok Sans", sans-serif;
  font-size: 31px;
  font-weight: 400;
  color: #151515;
  line-height: 39px;
  margin-bottom: 23px;
}
@media (max-width: 1024px) {
  .career-vacancies__name {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .career-vacancies__name {
    font-size: 23px;
    line-height: 27px;
    margin-bottom: 21px;
  }
}
.career-vacancies__desc {
  font-family: "TikTok Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #777777;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .career-vacancies__desc {
    font-size: 14px;
    line-height: 17px;
  }
}
.career-vacancies__divider {
  margin: 0 -65px;
  padding: 0 65px;
  border-top: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
}
@media (max-width: 1024px) {
  .career-vacancies__divider {
    margin: 0 -30px;
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .career-vacancies__divider {
    margin: 0 -18px;
    padding: 0 20px;
  }
}
.career-vacancies__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  padding: 19px 0;
  max-width: 700px;
}
@media (max-width: 767px) {
  .career-vacancies__details {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .career-vacancies__col {
    padding: 11px 0;
    text-align: center;
  }
  .career-vacancies__col + .career-vacancies__col {
    border-top: 1px solid #d0d0d0;
    margin: 0 -18px;
    padding: 11px 18px 11px;
  }
}
.career-vacancies__col-title {
  font-family: "TikTok Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #151515;
  line-height: 28px;
  margin-bottom: 19px;
}
@media (max-width: 767px) {
  .career-vacancies__col-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 13px;
    text-align: center;
  }
}
.career-vacancies__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.career-vacancies__col-list li {
  font-family: "TikTok Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #151515;
  line-height: 24px;
  padding-left: 20px;
  position: relative;
  text-wrap: nowrap;
}
.career-vacancies__col-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #0fa85f;
}
@media (max-width: 767px) {
  .career-vacancies__col-list li {
    font-size: 13px;
    line-height: 24px;
    color: #595959;
    text-wrap: normal;
    text-align: center;
    padding-left: 0;
  }
  .career-vacancies__col-list li::before {
    display: none;
  }
}
.career-vacancies__meta {
  display: flex;
  align-items: center;
  gap: 19px;
  flex-wrap: wrap;
  padding-top: 19px;
}
@media (max-width: 767px) {
  .career-vacancies__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 19px;
    row-gap: 15px;
    padding-top: 22px;
  }
}
.career-vacancies__tag {
  font-family: "TikTok Sans", sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: #151515;
  line-height: 24px;
}
@media (max-width: 767px) {
  .career-vacancies__tag {
    font-size: 15px;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
  }
  .career-vacancies__tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #0fa85f;
    flex-shrink: 0;
  }
}
.career-vacancies__dot {
  width: 6px;
  height: 6px;
  background: #0fa85f;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .career-vacancies__dot {
    display: none;
  }
}

.career-resume {
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .career-resume {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .career-resume {
    margin-bottom: 40px;
  }
}
.career-resume__inner {
  display: grid;
  grid-template-columns: 762fr 538fr;
  gap: 22px;
}
@media (max-width: 767px) {
  .career-resume__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.career-resume__card {
  border: 1px solid #e7e7e7;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.career-resume__card-header {
  text-align: center;
}
.career-resume__card-header-first {
  border-bottom: 1px solid #e7e7e7;
  padding: 22px 40px;
  padding-top: 46px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .career-resume__card-header-first {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .career-resume__card-header-first {
    padding: 37px 20px 29px;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.career-resume__card-header-second {
  padding: 35px 40px;
  padding-top: 46px;
}
@media (max-width: 1024px) {
  .career-resume__card-header-second {
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .career-resume__card-header-second {
    padding: 38px 20px 24px;
  }
}
.career-resume__card:first-child .career-resume__card-header {
  text-align: left;
}
@media (max-width: 767px) {
  .career-resume__card:first-child .career-resume__card-header {
    text-align: center;
  }
}
.career-resume__title {
  font-family: "TikTok Sans", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #151515;
  line-height: 50px;
  margin: 0;
}
@media (max-width: 1024px) {
  .career-resume__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .career-resume__title {
    font-size: 27px;
    line-height: 32px;
  }
}
.career-resume__card-body {
  padding: 0 53px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .career-resume__card-body {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .career-resume__card-body {
    padding: 0 20px 38px;
  }
}
.career-resume__text {
  font-family: "Geologica", sans-serif;
  font-size: 19px;
  font-weight: 300;
  color: #777777;
  line-height: 32px;
  margin-bottom: 38px;
  width: 80%;
}
@media (max-width: 1024px) {
  .career-resume__text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .career-resume__text {
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 17px;
    color: #777777;
    margin-bottom: 31px;
  }
}
.career-resume__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.career-resume__list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Geologica", sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #555555;
  line-height: 30px;
}
.career-resume__list li svg {
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .career-resume__list li {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .career-resume__list li {
    font-size: 19px;
    line-height: 30px;
    color: #151515;
    justify-content: center;
  }
  .career-resume__list li svg {
    display: none;
  }
}
@media (max-width: 767px) {
  .career-resume__list {
    gap: 0;
    margin: 0 auto 36px;
    text-align: center;
  }
}
.career-resume__socials {
  display: flex;
  gap: 49px;
}
@media (max-width: 767px) {
  .career-resume__socials {
    justify-content: center;
  }
}
.career-resume__social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  text-decoration: none;
}
.career-resume__social-link-icon {
  width: 73px;
  height: 73px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .career-resume__social-link-icon {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 767px) {
  .career-resume__social-link-icon {
    width: 73px;
    height: 73px;
  }
}
.career-resume__social-link-icon--tg {
  background: #28a1f2;
}
.career-resume__social-link-icon--ig {
  background: #f3368e;
}
.career-resume__social-link-icon img, .career-resume__social-link-icon svg {
  width: 34px;
  height: 34px;
}
.career-resume__social-link-label {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #555555;
  line-height: 20px;
}
.career-resume__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .career-resume__form {
    max-width: 297px;
    margin: 0 auto;
    gap: 15px;
  }
}
.career-resume__input, .career-resume__file-label {
  width: 100%;
  height: 50px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid #c6c6c6;
  border-radius: 0;
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-weight: 250;
  color: #151515;
  outline: none;
  transition: border-color 0.2s;
}
.career-resume__input:focus, .career-resume__file-label:focus {
  border-color: #0fa85f;
}
.career-resume__input::placeholder, .career-resume__file-label::placeholder {
  color: #151515;
  opacity: 1;
}
@media (max-width: 767px) {
  .career-resume__input, .career-resume__file-label {
    font-size: 18px;
  }
}
.career-resume__file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.career-resume__file-label input {
  display: none;
}
@media (max-width: 767px) {
  .career-resume__file-label svg {
    display: none;
  }
}
.career-resume__submit {
  width: 100%;
  height: 60px;
  background: #0fa85f;
  color: #fff;
  border: none;
  border-radius: 30000px;
  font-family: "Geologica", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.career-resume__submit:hover {
  opacity: 0.85;
}
@media (max-width: 767px) {
  .career-resume__submit {
    height: 60px;
    font-size: 20px;
    margin-top: 8px;
  }
}
.career-resume__disclaimer {
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 250;
  color: #555555;
  text-align: center;
  line-height: 20px;
  margin-top: 6px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.career-resume__policy-link {
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.career-resume__policy-link:hover {
  text-decoration: none;
}
.career-resume__policy-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.career-resume__policy-modal[hidden] {
  display: none;
}
.career-resume__policy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.career-resume__policy-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.career-resume__policy-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: #555555;
  cursor: pointer;
}
.career-resume__policy-close:hover {
  color: #151515;
}
.career-resume__policy-body {
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #151515;
}

[v-cloak] {
  display: none !important;
}

@keyframes pf-adv-fade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.projects-page {
  font-family: "TikTok Sans", sans-serif;
}
@media (max-width: 1024px) {
  .projects-page {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .projects-page {
    padding-bottom: 40px;
  }
}
.projects-page__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.projects-page__title {
  font-size: 52px;
  font-weight: 400;
  color: #141414;
  margin: 0;
  line-height: 1;
}
@media (max-width: 1024px) {
  .projects-page__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .projects-page__title {
    font-size: 26px;
  }
}
.projects-page__apts-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0FA85F;
  color: #fff;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.projects-page__apts-btn, .projects-page__apts-btn span {
  color: #fff;
}
.projects-page__apts-btn svg {
  flex-shrink: 0;
  color: #fff;
}
.projects-page__apts-btn svg path, .projects-page__apts-btn svg circle {
  stroke: #fff;
}
.projects-page__apts-btn:hover {
  background: #0FA85F;
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .projects-page__apts-btn {
    font-size: 14px;
    padding: 11px 18px;
  }
}

.pf {
  font-family: "Geologica", sans-serif;
  margin-bottom: 30px;
}
.pf__top-row {
  display: grid;
  grid-template-columns: 336fr 214fr 386fr 154fr 192fr;
  gap: 10px;
  align-items: center;
}
@media (max-width: 1200px) {
  .pf__top-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 12px;
  }
  .pf__top-row > .pf__field--toggle {
    grid-column: 1/-1;
  }
}
@media (max-width: 900px) {
  .pf__top-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .pf__top-row > .pf__field:nth-child(4) {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .pf__top-row {
    grid-template-columns: 1fr;
  }
}
.pf__adv-wrap {
  margin-top: 24px;
  animation: pf-adv-fade 0.2s ease;
}
.pf__adv-row-1 {
  display: grid;
  grid-template-columns: 559fr 380fr 350fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .pf__adv-row-1 {
    grid-template-columns: 1fr 1fr;
  }
  .pf__adv-row-1 > :last-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .pf__adv-row-1 {
    grid-template-columns: 1fr;
  }
}
.pf__adv-row-1--no-housing {
  grid-template-columns: 380fr 350fr;
}
@media (max-width: 1024px) {
  .pf__adv-row-1--no-housing {
    grid-template-columns: 1fr 1fr;
  }
  .pf__adv-row-1--no-housing > :last-child {
    grid-column: auto;
  }
}
@media (max-width: 767px) {
  .pf__adv-row-1--no-housing {
    grid-template-columns: 1fr;
  }
}
.pf__adv-row-2 {
  display: grid;
  grid-template-columns: 1fr;
}
.pf__field {
  width: 100%;
  position: relative;
}
.pf__label {
  display: block;
  font-size: 14px;
  font-weight: 100;
  color: #555555;
  margin-bottom: 13px;
}
.pf__select, .pf__range-box {
  background: #F4F4F4;
  height: 50px;
  border: none;
}
.pf__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 100;
  color: #141414;
  cursor: pointer;
  transition: background 0.15s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pf__select:hover {
  background: #ececec;
}
.pf__select-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.pf__select-inner > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pf__select-arrow {
  width: 10px;
  height: 6px;
  color: #555555;
  transition: transform 0.3s;
}
.open .pf__select-arrow {
  transform: rotate(180deg);
}
.pf__box-icon {
  flex-shrink: 0;
}
.pf__options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px 0;
}
.pf__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #141414;
  cursor: pointer;
  transition: background 0.2s;
}
.pf__option:hover {
  background: #F4F4F4;
}
.pf__option .pf__check {
  width: 18px;
  height: 18px;
  border: 1.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf__option .pf__check-icon {
  display: none;
}
.pf__option.selected {
  color: #0FA85F;
}
.pf__option.selected .pf__check {
  background: #0FA85F;
  border-color: #0FA85F;
}
.pf__option.selected .pf__check .pf__check-icon {
  display: block;
}
.pf__range-box {
  position: relative;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf .rf-values {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0;
}
.pf .rf-val {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 14px;
  color: #374151;
  font-weight: 600;
  white-space: nowrap;
}
.pf .rf-prefix {
  color: #9ca3af;
  font-weight: 500;
}
.pf .rf-unit {
  color: #9ca3af;
  font-weight: 500;
}
.pf .rf-input {
  border: none;
  border-bottom: 1px dashed #b9b9b9;
  outline: none;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  color: #374151;
  padding: 0;
  text-align: left;
  min-width: 1ch;
}
.pf .rf-input:hover {
  border-bottom-color: #0FA85F;
}
.pf .rf-input:focus {
  border-bottom-color: #0FA85F;
  border-bottom-style: solid;
}
.pf .rf-track {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  transform: translateY(50%);
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
}
.pf .rf-rail {
  position: relative;
  width: 100%;
  height: 4px;
  background: #555;
  border: 1px solid #555;
  border-radius: 999px;
}
.pf .rf-fill {
  position: absolute;
  top: -1px;
  bottom: -1px;
  background: linear-gradient(90deg, #0FA85F, #0e6131);
  border-radius: 999px;
}
.pf .rf-handle {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  flex: none;
  box-sizing: border-box;
  aspect-ratio: 1;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  background: #0e6131;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #d1d5db, 0 1px 3px rgba(16, 24, 40, 0.25);
  cursor: grab;
  z-index: 2;
  touch-action: none;
}
.pf .rf-handle:active {
  cursor: grabbing;
}
.pf__sheet-body {
  display: contents;
}
.pf__sheet-head, .pf__sheet-handle {
  display: none;
}
.pf__range-val {
  font-size: 16px;
  font-weight: 250;
  color: #141414;
  position: relative;
  z-index: 2;
}
.pf__range-val small {
  font: inherit;
  color: inherit;
}
.pf .noUi-target {
  height: 2px;
  background: #555;
  border: none;
  box-shadow: none;
}
.pf .noUi-connect {
  background: #555555;
  height: 7px;
  top: -3px;
  border-radius: 0;
}
.pf .noUi-handle {
  width: 41px;
  height: 7px;
  background: #0FA85F;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  top: -3px !important;
}
.pf .noUi-handle::before, .pf .noUi-handle::after {
  display: none;
}
.pf .noUi-handle:focus {
  outline: none;
}
.pf__rooms {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.pf__room-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: #F4F4F4;
  font-size: 16px;
  font-weight: 100;
  color: #141414;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.pf__room-btn:hover {
  filter: brightness(0.95);
}
.pf__room-btn.active {
  background: #0FA85F;
  color: #fff;
}
.pf__btn-green {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #0FA85F;
  border: none;
  padding: 0 24px;
  height: 50px;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.2s;
  border-radius: 300px;
}
.pf__btn-green span {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.pf__btn-green:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  .pf__btn-green {
    width: 100%;
  }
}

.pv-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}
.pv-toggle__btn {
  height: 50px;
  padding: 0 28px;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #141414;
  background: #ecf1f1;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 300px;
}
.pv-toggle__btn.active {
  background: #0FA85F;
  color: #fff;
}

.pg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .pg {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .pg {
    grid-template-columns: 1fr;
  }
}
.pg__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 426/451;
  display: block;
  text-decoration: none;
  transform: translateZ(0);
}
.pg__card:hover .pg__bg {
  transform: scale(1.05);
}
@media (min-width: 1025px) {
  .pg__card:hover .pg__overlay {
    opacity: 0;
  }
  .pg__card:hover .pg__hover {
    opacity: 1;
    visibility: visible;
  }
}
.pg__card--business {
  border: 2px solid #D9B64C;
}
.pg__card--comfort-plus {
  border: 2px solid #2BC77E;
}
.pg__ribbon {
  position: absolute;
  top: 34px;
  right: -44px;
  z-index: 4;
  width: 190px;
  padding: 8px 0;
  transform: rotate(45deg);
  text-align: center;
  font-family: "Geologica", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.pg__ribbon--business {
  background: linear-gradient(100deg, #F3DC7C 0%, #DDB84F 55%, #C2952C 100%);
  color: #55430E;
}
.pg__ribbon--comfort-plus {
  background: linear-gradient(100deg, #3ED289 0%, #0FA85F 100%);
}
.pg__countdown {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 16px;
  background: linear-gradient(90deg, #F5362B 0%, #D11C13 100%);
  color: #fff;
  font-family: "Geologica", sans-serif;
  box-shadow: 0 2px 12px rgba(190, 22, 14, 0.35);
  pointer-events: none;
}
@media (max-width: 767px) {
  .pg__countdown {
    gap: 7px;
    padding: 9px 12px;
  }
}
.pg__countdown-icon {
  flex: none;
  width: 16px;
  height: 16px;
  color: #fff;
}
@media (max-width: 767px) {
  .pg__countdown-icon {
    width: 14px;
    height: 14px;
  }
}
.pg__countdown-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .pg__countdown-text {
    font-size: 12px;
  }
}
.pg__countdown-time {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #fff;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .pg__countdown-time {
    font-size: 13px;
  }
}
.pg__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.pg__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 45px 61px;
  font-family: "Geologica", sans-serif;
  background: rgba(24, 24, 24, 0.3019607843);
  transition: opacity 0.3s ease;
}
.pg__hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  padding: 37px 56px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(15, 168, 95, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px 20px 0 0;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pg__hover-title {
  font-family: "TikTok Sans", sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin: 0 0 11px;
}
.pg__hover-desc {
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  max-width: 363px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pg__hover-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  height: 40px;
  padding: 0 28px;
  border-radius: 80px;
  background: #fff;
  color: #0FA85F;
  font-family: "Geologica", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  align-self: flex-start;
}
.pg__top {
  text-align: center;
  margin-bottom: 32px;
}
.pg__name {
  font-family: "TikTok Sans", sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 21px;
}
.pg__address {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 21px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pg__time-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}
.pg__time-pill {
  background: #78A992;
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 300px;
  font-weight: 400;
}
.pg__bottom {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.pg__badges {
  display: flex;
  gap: 8px;
}
.pg__badge {
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  padding: 0 14px;
  border-radius: 300px;
  white-space: nowrap;
  box-sizing: border-box;
}
.pg__badge--green {
  aspect-ratio: 196/28;
  background: #0FA85F;
}
.pg__badge--glass {
  aspect-ratio: 101/28;
  background: rgba(196, 196, 196, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pg__badge--plus {
  background: #0FA85F;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.pg__badge--gold {
  background: linear-gradient(100deg, #F3DC7C 0%, #DDB84F 55%, #C2952C 100%);
  color: #55430E;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.pg__status {
  aspect-ratio: 150/28;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Geologica", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  background: rgba(196, 196, 196, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0 14px;
  border-radius: 300px;
  box-sizing: border-box;
}
.pg__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px;
  color: #888;
}
.pg__view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin: 32px auto 0;
  padding: 16px 32px;
  background: #0FA85F;
  text-decoration: none;
  border-radius: 300px;
  transition: opacity 0.2s, transform 0.2s;
}
.pg__view-all span {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  font-family: "Geologica", sans-serif;
}
.pg__view-all svg {
  color: #fff;
  transition: transform 0.2s;
}
.pg__view-all svg path {
  stroke: #fff;
}
.pg__view-all:hover {
  opacity: 0.92;
}
.pg__view-all:hover svg {
  transform: translateX(4px);
}
@media (max-width: 767px) {
  .pg__view-all {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }
}

.pm__map {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.pm__note {
  margin-top: 12px;
  font-family: "Geologica", sans-serif;
  font-size: 13px;
  color: #555555;
}

.leaflet-marker-icon.map-marker-icon {
  background: transparent !important;
  border: none !important;
}

.map-marker {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0FA85F;
  padding: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}
.map-marker:hover {
  transform: scale(1.1);
  z-index: 10;
}
.map-marker__inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  overflow: hidden;
  box-sizing: border-box;
}
.map-marker img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
}

.leaflet-popup-content {
  margin: 12px 16px;
}

.noUi-target {
  position: relative;
  direction: ltr;
  touch-action: none;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
  border-radius: 3px;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform-origin: 0 0;
  height: 100%;
  width: 100%;
}

.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 700%;
  width: 100%;
  top: -300%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-horizontal {
  height: 2px;
}
.noUi-horizontal .noUi-origin {
  height: 0;
  left: 0;
}

.pf .noUi-horizontal {
  height: 2px;
}

.pf .noUi-handle {
  width: 41px;
  height: 7px;
  background: #0FA85F;
  border: none;
  border-radius: 0;
  box-shadow: none;
  top: -3px !important;
}
.pf .noUi-handle::before, .pf .noUi-handle::after {
  display: none;
}

.pf .noUi-handle-lower {
  right: 0;
}

.pf .noUi-handle-upper {
  right: -41px;
}

.pf .noUi-target {
  background: #555;
}

.pf .noUi-horizontal {
  height: 4px;
}

.pf .noUi-target {
  height: 4px;
  background: #555;
  border: none;
  border-radius: 999px;
  box-shadow: none;
}

.pf .noUi-connect {
  background: #0FA85F;
  height: 4px;
  top: 0;
  border-radius: 999px;
}

.pf .noUi-handle,
.pf .noUi-handle-lower,
.pf .noUi-handle-upper {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50%;
  background: #0e6131;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #d1d5db, 0 1px 3px rgba(16, 24, 40, 0.25);
  top: -8px !important;
  right: -10px;
}

.pf .noUi-handle::before, .pf .noUi-handle::after {
  display: none;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border-radius: 4px;
  background: #333;
  color: #fff;
  padding: 2px 6px;
  text-align: center;
  font-size: 11px;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 769px) and (max-width: 1200px) {
  .pf__top-row .pf__field--range .pf__range-box {
    padding: 0 14px;
  }
  .pf__top-row .pf__field--range .rf-track {
    left: 14px;
    right: 14px;
  }
}
@media (max-width: 768px) {
  .projects-page {
    padding-top: 30px;
  }
  .projects-page__title {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 18px;
  }
  .pf {
    margin-bottom: 20px;
  }
  .pf__top-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    row-gap: 12px;
  }
  .pf__top-row > .pf__field {
    min-width: 0;
  }
  .pf__top-row > .pf__field:nth-child(4) {
    display: none;
  }
  .pf__top-row > .pf__field--toggle {
    grid-column: 1/-1;
  }
  .pf__select {
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
    gap: 6px;
  }
  .pf__select > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  .pf__select-arrow {
    width: 8px;
    height: 5px;
    flex-shrink: 0;
  }
  .pf__top-row .pf__field--range {
    background: #F4F4F4;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    cursor: pointer;
  }
  .pf__top-row .pf__field--range::before {
    content: "Цена";
    font-size: 13px;
    font-weight: 100;
  }
  .pf__top-row .pf__field--range::after {
    content: "";
    width: 8px;
    height: 5px;
    flex-shrink: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") no-repeat center/contain;
  }
  .pf__top-row .pf__field--range .pf__range-box {
    display: none;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: auto;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 0 16px 40px;
    display: block;
    cursor: default;
    z-index: 10001;
    animation: pf-sheet-slide-up 0.25s ease-out;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__sheet-handle {
    display: block;
    width: 70px;
    height: 4px;
    background: #A6A6A6;
    margin: 12px auto 10px;
    position: static;
    transform: none;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    margin-bottom: 20px;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__sheet-title {
    font-size: 20px;
    font-weight: 400;
    color: #141414;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__sheet-close {
    background: transparent;
    border: none;
    padding: 0;
    color: #777777;
    cursor: pointer;
    font-family: Geologica;
    font-weight: 250;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__sheet-body {
    background: #F4F4F4;
    padding: 24px 20px 28px;
    display: block;
    position: relative;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__sheet-body .rf-values {
    margin-bottom: 14px;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__sheet-body .rf-val {
    font-size: 17px;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__sheet-body .rf-track {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin-top: 8px;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__range-val {
    display: flex;
    flex-direction: column;
    font-size: 17px;
    font-weight: 300;
    color: #141414;
    line-height: 1.2;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__range-val small {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #A6A6A6;
    margin-top: 4px;
    padding: 0;
    letter-spacing: 0.5px;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .pf__range-val:last-of-type {
    text-align: right;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box #price-slider {
    display: block;
    position: relative;
    grid-column: 1/-1;
    margin: 15px 14px 0;
    height: 4px;
    background: #555;
    border: none;
    box-shadow: none;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box #price-slider::before, .pf__top-row .pf__field--range.is-sheet-open .pf__range-box #price-slider::after {
    display: none;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .noUi-connect {
    background: #555;
    height: 2px;
    top: 0;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .noUi-handle {
    width: 44px;
    height: 11px;
    background: #0FA85F;
    border-radius: 2px;
    border: none;
    box-shadow: none;
    top: -4.5px !important;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .noUi-handle::before, .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .noUi-handle::after {
    display: none;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .noUi-handle-lower {
    right: 0;
  }
  .pf__top-row .pf__field--range.is-sheet-open .pf__range-box .noUi-handle-upper {
    right: -44px;
  }
  @keyframes pf-sheet-slide-up {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }
  .pf__sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6509803922);
    backdrop-filter: blur(10px);
    z-index: 10000;
  }
  .pf__btn-green {
    height: 48px;
    border-radius: 300px;
  }
  .pf__btn-green span {
    font-size: 15px;
  }
  .pf__adv-row-1 {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .pf__label {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .pf__range-box {
    height: 44px;
    padding: 0 14px;
  }
  .pf__rooms {
    gap: 10px;
  }
  .pf__room-btn {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .pv-toggle {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    justify-content: center;
    border-top: 1px solid #E7E7E7;
    padding-top: 24px;
  }
  .pv-toggle::before {
    content: "Выберите тип отображения:";
    display: block;
    width: 100%;
    text-align: center;
    font-family: "Geologica", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #555555;
    margin-bottom: 4px;
  }
  .pv-toggle__btn {
    flex: 1 1 calc(50% - 5px);
    height: 44px;
    padding: 0 16px;
    font-size: 15px;
    background: #f4f4f4;
  }
  .pg {
    gap: 14px;
  }
  .pg__card {
    height: auto;
  }
  .pg__ribbon {
    top: 26px;
    right: -50px;
    width: 170px;
    padding: 6px 0;
    font-size: 11px;
    letter-spacing: 2px;
  }
  .pg__overlay {
    padding: 36px 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.8) 100%);
  }
  .pg__top {
    margin-bottom: 0;
  }
  .pg__name {
    font-size: 24px;
    margin: 0 0 6px;
  }
  .pg__address {
    font-size: 12px;
    margin: 0 0 10px;
  }
  .pg__time-badge {
    font-size: 11px;
  }
  .pg__time-pill {
    padding: 3px 8px;
    font-size: 11px;
  }
  .pg__bottom {
    gap: 8px;
  }
  .pg__badges {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .pm__map {
    height: 640px;
  }
  .pm__note {
    font-size: 12px;
  }
  .map-marker {
    width: 52px;
    height: 52px;
    padding: 3px;
  }
}
@media (max-width: 374px) {
  .projects-page__title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .pf__top-row {
    gap: 6px;
    row-gap: 10px;
  }
  .pf__select {
    padding: 0 8px;
    font-size: 12px;
    gap: 4px;
  }
  .pf__top-row .pf__field--range {
    padding: 0 10px;
  }
  .pf__top-row .pf__field--range::before {
    font-size: 12px;
  }
  .pf__field--range.is-sheet-open .pf__range-box .pf__sheet-body {
    padding: 22px 14px 18px;
  }
  .pf__field--range.is-sheet-open .pf__range-box .pf__range-val {
    font-size: 17px;
  }
  .pf__field--range.is-sheet-open .pf__range-box #price-slider {
    left: 64px;
    right: 64px;
  }
  .pf__btn-green {
    padding: 0 16px;
  }
  .pf__btn-green span {
    font-size: 14px;
  }
  .pf__label {
    font-size: 12px;
  }
  .pf__rooms {
    gap: 8px;
  }
  .pf__room-btn {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  .pv-toggle__btn {
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }
  .pg {
    gap: 12px;
  }
  .pg__name {
    font-size: 22px;
    margin: 0 0 4px;
  }
  .pg__address {
    margin: 0 0 8px;
  }
  .pg__badges {
    gap: 6px;
  }
  .pg__badge, .pg__status {
    font-size: 13px;
    padding: 6px 12px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .pg__overlay {
    padding: 28px 22px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.8) 100%);
  }
  .pg__top {
    margin-bottom: 18px;
  }
  .pg__name {
    font-size: 26px;
    margin: 0 0 10px;
  }
  .pg__address {
    font-size: 13px;
    margin: 0 0 12px;
  }
  .pg__time-badge {
    font-size: 12px;
  }
  .pg__time-pill {
    padding: 3px 8px;
    font-size: 12px;
  }
  .pg__bottom {
    gap: 6px;
  }
  .pg__badges {
    gap: 6px;
    flex-wrap: wrap;
  }
  .pg__badge {
    height: 22px;
    font-size: 12px;
    padding: 0 12px;
  }
  .pg__status {
    height: 22px;
    font-size: 12px;
    padding: 0 12px;
  }
}
.search-results-page {
  padding: 56px 0 96px;
  min-height: 60vh;
}
.search-results-page .wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 1024px) {
  .search-results-page {
    padding: 36px 0 60px;
  }
}
@media (max-width: 600px) {
  .search-results-page {
    padding: 24px 0 48px;
  }
  .search-results-page .wrapper {
    padding: 0 16px;
  }
}

.search-results-title {
  font-family: "Geologica", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  color: #151515;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
  .search-results-title {
    font-size: 34px;
    margin-bottom: 22px;
  }
}
@media (max-width: 600px) {
  .search-results-title {
    font-size: 26px;
    margin-bottom: 18px;
  }
}

.search-results-form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 22px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  margin-bottom: 36px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-results-form:focus-within {
  border-color: #0FA85F;
  box-shadow: 0 4px 24px rgba(15, 168, 95, 0.12), 0 0 0 4px rgba(15, 168, 95, 0.08);
}
.search-results-form:focus-within .search-results-form__icon {
  color: #0FA85F;
}
.search-results-form__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #6a6a6a;
  transition: color 0.2s;
}
.search-results-form input[type=text] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 17px;
  font-family: "Geologica", sans-serif;
  padding: 10px 4px;
  min-width: 0;
  color: #151515;
}
.search-results-form input[type=text]::placeholder {
  color: #aaa;
}
.search-results-form button {
  background: #0FA85F;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}
.search-results-form button:hover {
  background: #0d8e50;
}
.search-results-form button:active {
  transform: translateY(1px);
}
@media (max-width: 1024px) {
  .search-results-form {
    padding: 10px 10px 10px 18px;
    border-radius: 16px;
    margin-bottom: 28px;
  }
  .search-results-form input[type=text] {
    font-size: 16px;
  }
  .search-results-form button {
    padding: 12px 22px;
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .search-results-form {
    padding: 8px 8px 8px 16px;
    border-radius: 14px;
    gap: 8px;
  }
  .search-results-form input[type=text] {
    font-size: 15px;
    padding: 8px 2px;
  }
  .search-results-form button {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 10px;
  }
}

.search-results-corrected {
  color: #6a6a6a;
}
.search-results-corrected strong {
  color: #151515;
}

.search-results-searchbar {
  position: relative;
  margin-bottom: 16px;
}
.search-results-searchbar .search-results-form {
  margin-bottom: 0;
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 60;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  max-height: min(70vh, 520px);
  scrollbar-width: thin;
  scrollbar-color: #cecece transparent;
}
.search-results-dropdown::-webkit-scrollbar {
  width: 6px;
}
.search-results-dropdown::-webkit-scrollbar-thumb {
  background: #cecece;
  border-radius: 3px;
}

.search-results-quickfilter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.search-results-quickfilter__label {
  font-size: 14px;
  color: #9a9a9a;
  margin-right: 2px;
}
@media (max-width: 600px) {
  .search-results-quickfilter__label {
    width: 100%;
    margin-bottom: 4px;
  }
}

.search-results-popular {
  margin-bottom: 36px;
}
.search-results-popular__title {
  font-size: 15px;
  font-weight: 500;
  color: #6a6a6a;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-results-popular__clear {
  border: none;
  background: none;
  color: #0FA85F;
  font-family: "Geologica", sans-serif;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}
.search-results-popular__clear:hover {
  text-decoration: underline;
}
.search-results-popular__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-results-popular__chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ececec;
  background: #fff;
  color: #151515;
  font-family: "Geologica", sans-serif;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.search-results-popular__chip:hover {
  background: #eef7f1;
  border-color: #0FA85F;
  color: #0d8e50;
}
@media (max-width: 600px) {
  .search-results-popular__chip {
    font-size: 14px;
    padding: 8px 14px;
  }
}

.search-results-empty {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 80px 32px;
  text-align: center;
  color: #6a6a6a;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}
.search-results-empty p {
  margin: 0 0 8px;
}
.search-results-empty p:last-child {
  margin: 0;
}
.search-results-empty strong {
  color: #151515;
  font-weight: 600;
}
.search-results-empty::before {
  content: "";
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  background: #f4f4f4 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 33 33' fill='none'><circle cx='15.92' cy='14.33' r='9.58' stroke='%239a9a9a' stroke-width='2'/><path d='M27.99 26.29L23.98 22.28' stroke='%239a9a9a' stroke-width='2' stroke-linecap='round'/></svg>") center/44px no-repeat;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .search-results-empty {
    padding: 56px 20px;
    font-size: 15px;
    border-radius: 16px;
  }
  .search-results-empty::before {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    background-size: 32px;
  }
}

.search-results-hint {
  font-size: 14px;
  color: #aaa;
  margin-top: 6px !important;
}

.search-results-summary {
  font-size: 15px;
  color: #6a6a6a;
  margin: 0 0 28px;
}
.search-results-summary strong {
  color: #151515;
  font-weight: 600;
}

.search-results-group {
  margin-bottom: 56px;
}
.search-results-group:last-child {
  margin-bottom: 0;
}
.search-results-group__title {
  font-family: "Geologica", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #151515;
  margin: 0 0 20px;
  display: flex;
  align-items: normal;
  gap: 12px;
  letter-spacing: -0.01em;
}
@media (max-width: 1024px) {
  .search-results-group__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .search-results-group__title {
    font-size: 20px;
  }
}
.search-results-group__count {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #0FA85F;
  background: #eef7f1;
  padding: 4px 13px;
  border-radius: 50px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .search-results-group {
    margin-bottom: 40px;
  }
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
@media (max-width: 1024px) {
  .search-results-grid {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .search-results-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.search-result-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.search-result-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}
.search-result-card:hover .search-result-card__img img {
  transform: scale(1.04);
}
.search-result-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
  overflow: hidden;
  position: relative;
}
.search-result-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.search-result-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
@media (max-width: 600px) {
  .search-result-card__body {
    padding: 14px 16px 18px;
  }
}
.search-result-card__title {
  font-family: "Geologica", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #151515;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.search-result-card__title mark {
  background: rgba(15, 168, 95, 0.18);
  color: inherit;
  padding: 0 3px;
  border-radius: 3px;
}
@media (max-width: 1024px) {
  .search-result-card__title {
    font-size: 17px;
  }
}
@media (max-width: 600px) {
  .search-result-card__title {
    font-size: 16px;
  }
}
.search-result-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6a6a6a;
  margin: 0;
  line-height: 1.4;
}
.search-result-card__meta span {
  display: inline-flex;
  align-items: center;
}
.search-result-card__meta span + span:not(.search-result-card__klass):not(.search-result-card__done)::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #cecece;
  margin-right: 8px;
}
.search-result-card__klass {
  background: #eef7f1;
  color: #0FA85F;
  padding: 3px 11px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-left: auto;
}
.search-result-card__done {
  background: #eef7f1;
  color: #0FA85F;
  padding: 3px 11px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  margin-left: auto;
}
.search-result-card__klass + .search-result-card__done {
  margin-left: 0;
}
.search-result-card__excerpt {
  font-size: 14px;
  color: #6a6a6a;
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-result-card__excerpt mark {
  background: rgba(15, 168, 95, 0.15);
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
}
.search-result-card__date {
  font-size: 13px;
  color: #aaa;
  margin: auto 0 0;
  padding-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.search-result-card__date::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>") center/contain no-repeat;
  flex-shrink: 0;
}
.search-result-card--news .search-result-card__img {
  background: linear-gradient(135deg, #f5fbf7 0%, #eaf6ee 100%);
}

.pl-page {
  font-family: "Geologica", sans-serif;
  color: #151515;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 75px;
}
.pl-page * {
  box-sizing: border-box;
}
.pl-page img {
  max-width: 100%;
  display: block;
}
.pl-page > section {
  margin: 0;
}

.pl-section-title {
  font-family: "TikTok Sans", sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.154;
  color: #151515;
  margin: 0 0 24px;
  text-align: center;
}
.pl-section-title--left {
  text-align: left;
}
.pl-section-title__sub {
  display: block;
  color: #555555;
  font-weight: 300;
}

.pl-section-sub {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: #555555;
  text-align: center;
  margin-bottom: 24px;
}

.pl-hero__grid {
  aspect-ratio: 16/9;
  max-height: 850px;
}
.pl-hero__main {
  position: relative;
  overflow: hidden;
  background: #2b2b2b;
  color: #fff;
  height: 100%;
}
.pl-hero__main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.pl-hero__main-content {
  position: relative;
  z-index: 1;
  padding: 64px 78px;
  height: 100%;
  width: 750px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}
.pl-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}
.pl-hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: "TikTok Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.867;
  padding: 9px 16px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}
.pl-hero__badge::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #A8940F;
  flex-shrink: 0;
}
.pl-hero__badge--accent::before {
  background: #0FA85F;
}
.pl-hero__title {
  font-family: "TikTok Sans", sans-serif;
  font-weight: 500;
  font-size: 85px;
  line-height: 0.976;
  margin: 0;
  color: #fff;
  letter-spacing: -0.5px;
}
.pl-hero__price {
  font-family: "TikTok Sans", sans-serif;
  font-weight: 500;
  font-size: 55px;
  line-height: 1;
  color: #fff;
}
.pl-hero__address {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 29px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}
.pl-hero__address:hover {
  text-decoration: underline;
}

.pl-about {
  display: flex;
  flex-direction: column;
  gap: 75px;
}
.pl-about__head {
  max-width: 781px;
  margin: 0 auto;
  text-align: center;
}
.pl-about__head .pl-section-title {
  margin-bottom: 50px;
}
.pl-about__text {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.286;
  color: #555555;
}
.pl-about__text p {
  margin: 0 0 12px;
}
.pl-about__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pl-feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pl-feature__frame {
  position: relative;
  max-width: 209px;
  aspect-ratio: 209/209;
  border: 5px solid #0FA85F;
  overflow: hidden;
  margin-bottom: 24px;
  background: #F4F4F4;
  padding: 19px;
}
.pl-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pl-feature__title {
  font-family: "TikTok Sans", sans-serif;
  font-weight: 400;
  font-size: 31px;
  line-height: 1.161;
  color: #151515;
  margin: 0 0 12px;
  white-space: pre-line;
}
.pl-feature__desc {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.375;
  color: #555555;
  margin: 0;
}

.pl-location__head {
  margin-bottom: 32px;
  text-align: center;
}
.pl-location__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .pl-location__list {
    gap: 16px;
  }
}
.pl-location__list.slick-initialized {
  display: block;
}
.pl-location__list.slick-initialized .slick-list {
  position: relative;
  margin: 0;
}
.pl-location__list.slick-initialized .slick-slide {
  padding: 0;
}
.pl-location__list.slick-initialized .slick-dots {
  position: absolute;
  bottom: 31px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex !important;
  justify-content: center;
  gap: 45px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pl-location__list.slick-initialized .slick-dots li {
  width: 11px;
  height: 11px;
  margin: 0;
}
.pl-location__list.slick-initialized .slick-dots li button {
  width: 11px;
  height: 11px;
  padding: 0;
  font-size: 0;
  border: 0;
  border-radius: 50%;
  background: #C3D5D0;
  cursor: pointer;
}
.pl-location__list.slick-initialized .slick-dots li button:before {
  display: none;
}
.pl-location__list.slick-initialized .slick-dots li.slick-active button {
  background: #0FA85F;
}

.pl-loc {
  background: #F4F4F4;
  padding: 55px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 1200px) {
  .pl-loc {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .pl-loc {
    padding: 30px 24px;
    margin: 0 0 16px;
  }
}
.pl-loc__frame {
  width: 84px;
  height: 84px;
  border: 5px solid #0FA85F;
  overflow: hidden;
  margin-bottom: auto;
  padding: 11px;
}
.pl-loc__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pl-loc__title {
  font-family: "Geologica", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: #151515;
  margin: 0;
}
@media (max-width: 767px) {
  .pl-loc__title {
    font-size: 20px;
  }
}
.pl-loc__desc {
  font-family: "Geologica", sans-serif;
  font-weight: 250;
  font-size: 22px;
  line-height: 1;
  color: #555555;
  margin: 0;
  margin-top: 7px;
}

.pl-arch__head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 781px;
  margin-left: auto;
  margin-right: auto;
}
.pl-arch__lead {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  color: #555555;
  max-width: 560px;
  margin: 12px auto 0;
}
.pl-arch__grid {
  display: grid;
  grid-template-rows: 610px 413px;
  gap: 22px;
}
@media (max-width: 1100px) {
  .pl-arch__grid {
    grid-template-rows: 480px 360px;
  }
}
@media (max-width: 1024px) {
  .pl-arch__grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    grid-template-rows: none;
  }
}
@media (max-width: 767px) {
  .pl-arch__grid {
    gap: 8px;
  }
}
.pl-arch__row {
  display: grid;
  gap: 22px;
}
.pl-arch__row--full {
  grid-template-columns: 762fr 538fr;
}
.pl-arch__row--three {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1024px) {
  .pl-arch__row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    grid-template-columns: none;
  }
}
@media (max-width: 767px) {
  .pl-arch__row {
    display: grid;
    gap: 8px;
  }
  .pl-arch__row--full {
    grid-template-columns: 58fr 42fr;
  }
  .pl-arch__row--three {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.pl-arch__cell {
  position: relative;
  background: #2b2b2b center/cover no-repeat;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.pl-arch__cell:hover {
  transform: scale(1.02);
}
@media (max-width: 1024px) {
  .pl-arch__cell {
    height: 300px;
    border-radius: 20px;
  }
}
@media (max-width: 900px) {
  .pl-arch__cell {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .pl-arch__cell {
    border-radius: 0;
  }
}

@media (max-width: 767px) {
  .pl-arch__row--full .pl-arch__cell {
    height: 220px;
  }
  .pl-arch__row--three .pl-arch__cell {
    height: 110px;
  }
}
.pl-holls__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 610px;
}
.pl-holls__media {
  background: #2b2b2b center/cover no-repeat;
  min-height: 610px;
}
.pl-holls__text {
  padding: 130px 0 130px 130px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pl-holls__body {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.375;
  color: #555555;
}
.pl-holls__body p {
  margin: 0 0 12px;
}
.pl-holls__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: auto;
}

.pl-tag {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.333;
  color: #0FA85F;
}

.pl-progress__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 610px;
}
.pl-progress__media {
  position: relative;
  background: #2b2b2b center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 610px;
}
.pl-progress__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.pl-progress__play {
  position: relative;
  width: 80px;
  height: 80px;
  z-index: 1;
}
.pl-progress__play svg {
  width: 100%;
  height: 100%;
}
.pl-progress__text {
  padding: 130px 0 130px 130px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pl-progress__body {
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.375;
  color: #555555;
}
.pl-progress__body p {
  margin: 0 0 12px;
}

@media (max-width: 1100px) {
  .pl-page {
    gap: 60px;
  }
  .pl-section-title {
    font-size: 40px;
  }
  .pl-hero__title {
    font-size: 60px;
  }
  .pl-hero__price {
    font-size: 38px;
  }
  .pl-hero__address {
    font-size: 22px;
  }
  .pl-about__features {
    grid-template-columns: repeat(2, 1fr);
  }
  .pl-holls__grid,
  .pl-progress__grid {
    grid-template-columns: 1fr;
  }
  .pl-holls__media,
  .pl-progress__media {
    min-height: 320px;
  }
  .pl-holls__text,
  .pl-progress__text {
    padding: 32px;
  }
}
@media (max-width: 768px) {
  .pl-page {
    padding-bottom: 50px;
    gap: 50px;
  }
  .pl-section-title {
    font-size: 27px;
    line-height: 1.18;
    margin-bottom: 16px;
  }
  .pl-section-sub {
    font-size: 16px;
  }
  .pl-hero__grid {
    aspect-ratio: 360/281;
    max-height: none;
  }
  .pl-hero__main {
    min-height: 281px;
  }
  .pl-hero__main-content {
    padding: 20px;
    gap: 10px;
    width: 100%;
  }
  .pl-hero__title {
    font-size: 45px;
    line-height: 1.05;
    letter-spacing: -0.3px;
  }
  .pl-hero__price {
    font-size: 32px;
  }
  .pl-hero__address {
    font-size: 17px;
    line-height: 1.4;
  }
  .pl-hero__badge {
    font-size: 12px;
    line-height: 1.5;
    padding: 6px 12px;
    gap: 6px;
  }
  .pl-hero__badge::before {
    width: 9px;
    height: 9px;
  }
  .pl-about {
    gap: 40px;
  }
  .pl-about__head .pl-section-title {
    margin-bottom: 16px;
  }
  .pl-about__text {
    font-size: 15px;
    line-height: 1.4;
  }
  .pl-about__features {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .pl-feature__frame {
    max-width: 112px;
    aspect-ratio: 1/1;
    border-width: 4px;
    padding: 11px;
    margin-bottom: 16px;
  }
  .pl-feature__title {
    font-size: 17px;
    line-height: 1.12;
    margin-bottom: 6px;
  }
  .pl-feature__desc {
    font-size: 13px;
    line-height: 1.23;
  }
  .pl-location__head {
    margin-bottom: 20px;
  }
  .pl-loc {
    padding: 41px 28px 30px !important;
    margin: 0;
    min-height: 286.69px;
    align-items: center;
    text-align: center;
  }
  .pl-loc__frame {
    width: 84px;
    height: 84px;
    padding: 11px;
    border-width: 4px;
    margin: 0 auto 26px;
    align-self: center;
  }
  .pl-loc__title {
    font-family: "TikTok Sans", sans-serif;
    font-weight: 400;
    font-size: 27px;
    line-height: 1.18;
    margin: 0 0 3px;
  }
  .pl-loc__desc {
    font-size: 19px;
    line-height: 1.16;
    margin: 0;
  }
  .pl-arch__head {
    margin-bottom: 20px;
  }
  .pl-arch__lead {
    font-size: 13px;
    line-height: 1.45;
  }
  .pl-holls__grid,
  .pl-progress__grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
    min-height: 0;
  }
  .pl-holls__media,
  .pl-progress__media {
    min-height: 220px;
  }
  .pl-holls__text,
  .pl-progress__text {
    padding: 0;
    gap: 16px;
    text-align: center;
    align-items: center;
  }
  .pl-holls__text .pl-section-title,
  .pl-progress__text .pl-section-title {
    text-align: center;
  }
  .pl-holls__body,
  .pl-progress__body {
    font-size: 13px;
    line-height: 1.45;
  }
  .pl-tag {
    font-size: 16px;
    line-height: 1.4;
  }
  .pl-holls__tags {
    gap: 14px;
    justify-content: center;
    margin-top: 0;
  }
}

/* End */


/* Start:/local/templates/.default/components/svoydom/webform.form/popup-sd/style.css?178306847313182*/
/**
 * FormSimple Popup (popup-sd) — layout mirrors #submit-application-popup (mfp-content)
 */

/* ========================================
   BODY LOCK (when popup is open)
   ======================================== */

body.form-simple-popup-open {
    overflow: hidden;
}

/* ========================================
   POPUP WRAPPER
   ======================================== */

.form-simple-popup-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* ========================================
   OVERLAY
   ======================================== */

.form-simple-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-simple-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   POPUP CONTAINER
   ======================================== */

.sd-form-popup {
    position: fixed;
    z-index: 99999;
    width: calc(100% - 40px);
    max-width: 940px;
    min-height: 520px;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.sd-form-popup.show {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   POSITIONS
   ======================================== */

.form-simple-popup-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
}
.form-simple-popup-center.show {
    transform: translate(-50%, -50%) scale(1);
}

.form-simple-popup-bottom {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}
.form-simple-popup-bottom.show {
    transform: translateX(-50%) translateY(0);
}

.form-simple-popup-bottom-left {
    bottom: 20px;
    left: 20px;
    transform: translateY(100%);
}
.form-simple-popup-bottom-left.show {
    transform: translateY(0);
}

.form-simple-popup-bottom-right {
    bottom: 20px;
    right: 20px;
    transform: translateY(100%);
}
.form-simple-popup-bottom-right.show {
    transform: translateY(0);
}

.form-simple-popup-top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
}
.form-simple-popup-top.show {
    transform: translateX(-50%) translateY(0);
}

.form-simple-popup-top-left {
    top: 20px;
    left: 20px;
    transform: translateY(-100%);
}
.form-simple-popup-top-left.show {
    transform: translateY(0);
}

.form-simple-popup-top-right {
    top: 20px;
    right: 20px;
    transform: translateY(-100%);
}
.form-simple-popup-top-right.show {
    transform: translateY(0);
}

/* ========================================
   ANIMATIONS
   ======================================== */

.form-simple-popup-slide {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-simple-popup-bounce.show {
    animation: popupBounce 0.5s ease forwards;
}

@keyframes popupBounce {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
    50%  { transform: translate(-50%, -50%) scale(1.05); }
    70%  { transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.form-simple-popup-zoom {
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-simple-popup-zoom.show {
    transform: translate(-50%, -50%) scale(1);
}

/* ========================================
   LEFT COLUMN (form) — mirrors .leave-request-form
   ======================================== */

.sd-form-popup .sd-form-simple-popup-content {
    width: 55%;
    background: #0e6131;
    padding: 90px 40px;
    box-sizing: border-box;
    overflow-y: auto;
}

/* ========================================
   RIGHT COLUMN (image) — mirrors .img-wrap
   ======================================== */

.sd-form-popup .sd-img-wrap {
    width: 45%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* ========================================
   CLOSE BUTTON — mirrors .mfp-close
   ======================================== */

.sd-form-popup .form-simple-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: #fff;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.sd-form-popup .form-simple-popup-close svg {
    display: block;
    pointer-events: none;
}

.sd-form-popup .form-simple-popup-close:hover {
    transform: scale(1.06);
}

.sd-form-popup .form-simple-popup-close:active {
    transform: scale(0.96);
}

/* ========================================
   TITLE / SUBTITLE — mirrors .leave-request-form h3/p
   ======================================== */

.sd-form-popup .form-simple-popup-title {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
}

.sd-form-popup .form-simple-popup-subtitle {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.4;
}

/* ========================================
   FORM FIELDS
   ======================================== */

.sd-form-popup .form-simple {
    margin: 0;
}

.sd-form-popup .form-simple-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sd-form-popup .form-simple-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.sd-form-popup .form-simple-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
}

.sd-form-popup .form-simple-required {
    color: #ffcc66;
    margin-left: 2px;
}

.sd-form-popup .form-simple-input,
.sd-form-popup .form-simple-textarea,
.sd-form-popup .form-simple-select {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    background: #f2f2f2;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-family: inherit;
    color: #000;
    box-sizing: border-box;
    outline: none;
    transition: box-shadow 0.2s ease;
}

.sd-form-popup .form-simple-textarea {
    height: auto;
    min-height: 120px;
    padding: 16px 20px;
    resize: vertical;
}

.sd-form-popup .form-simple-input::placeholder,
.sd-form-popup .form-simple-textarea::placeholder {
    color: #979797;
    font-size: 18px;
}

.sd-form-popup .form-simple-input:focus,
.sd-form-popup .form-simple-textarea:focus {
    box-shadow: inset 0 0 0 2px #ffffff;
}

.sd-form-popup .form-simple-input.error,
.sd-form-popup .form-simple-textarea.error {
    box-shadow: inset 0 0 0 2px #ff7676;
}

/* ========================================
   ERROR MESSAGES
   ======================================== */

.sd-form-popup .form-simple-error-message {
    font-size: 13px;
    color: #ffd5d5;
    display: none;
    margin-top: 4px;
}

.sd-form-popup .form-simple-error-message.show {
    display: block;
}

.sd-form-popup .form-simple-errors {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 16px;
    margin-bottom: 16px;
}

.sd-form-popup .form-simple-error {
    color: #fff1f1;
    font-size: 14px;
}

/* ========================================
   SUCCESS MESSAGE
   ======================================== */

.sd-form-popup .form-simple-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 12px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
}

.sd-form-popup .form-simple-success::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #ffffff;
    color: #0e6131;
    border-radius: 50%;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

/* ========================================
   CONSENT
   ======================================== */

.sd-form-popup .form-simple-consent {
    margin-top: 4px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 13px;
}

.sd-form-popup .form-simple-consent a {
    color: #ffffff;
    text-decoration: underline;
}

.sd-form-popup .form-simple-consent-error {
    display: block;
    font-size: 13px;
    color: #ffd5d5;
    margin-top: 4px;
}

/* ========================================
   SUBMIT BUTTON — mirrors .leave-request-form button
   ======================================== */

.sd-form-popup .form-simple-submit {
    margin-top: 4px;
}

.sd-form-popup .form-simple-button {
    width: 100%;
    height: 60px;
    padding: 0 24px;
    background: #f2f2f2;
    color: #655d4d;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sd-form-popup .form-simple-button:hover {
    background: #ffffff;
    color: #0e6131;
}

.sd-form-popup .form-simple-button:active {
    transform: translateY(1px);
}

.sd-form-popup .form-simple-button:disabled,
.sd-form-popup .form-simple-button.form-simple-submitting {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ========================================
   NOTIFICATION (success toast)
   ======================================== */

.form-simple-notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #18181b;
    color: #fff;
    padding: 10px 18px 10px 12px;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    max-width: calc(100vw - 48px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease;
}

.form-simple-notification::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: #22c55e;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.form-simple-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.form-simple-notification p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 767px) {
    .sd-form-popup {
        width: calc(100% - 16px);
        min-height: 0;
        max-height: calc(100vh - 20px);
    }

    .sd-form-popup .sd-form-simple-popup-content {
        width: 100%;
        padding: 60px 20px;
    }

    .sd-form-popup .sd-img-wrap {
        display: none;
    }

    .sd-form-popup .form-simple-popup-title {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .sd-form-popup .form-simple-popup-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .sd-form-popup .form-simple-popup-close {
        top: 10px;
        right: 10px;
        z-index: 100;
        opacity: 1;
    }

    .sd-form-popup .form-simple-input,
    .sd-form-popup .form-simple-textarea,
    .sd-form-popup .form-simple-button {
        font-size: 16px; /* prevents iOS zoom */
    }

    /* positions on mobile */
    .form-simple-popup-bottom,
    .form-simple-popup-bottom-left,
    .form-simple-popup-bottom-right {
        bottom: 10px;
        left: 8px;
        right: 8px;
        width: auto;
        transform: translateY(100%);
    }
    .form-simple-popup-bottom.show,
    .form-simple-popup-bottom-left.show,
    .form-simple-popup-bottom-right.show {
        transform: translateY(0);
    }

    .form-simple-popup-top,
    .form-simple-popup-top-left,
    .form-simple-popup-top-right {
        top: 10px;
        left: 8px;
        right: 8px;
        width: auto;
        transform: translateY(-100%);
    }
    .form-simple-popup-top.show,
    .form-simple-popup-top-left.show,
    .form-simple-popup-top-right.show {
        transform: translateY(0);
    }

    .form-simple-notification {
        left: 16px;
        right: 16px;
        width: auto;
        transform: translateX(0) translateY(100px);
        text-align: center;
    }

    .form-simple-notification.show {
        transform: translateX(0) translateY(0);
    }
}

/* End */


/* Start:/local/templates/svdom_new/components/bitrix/news.list/soc_footer/style.min.css?1783068502129*/
div.news-list{word-wrap:break-word}div.news-list img.preview_picture{float:left;margin:0 4px 6px 0}.news-date-time{color:#486DAA}
/* End */


/* Start:/local/templates/svdom_new/styles.css?17830684945418*/
.bx-core-popup-menu-item-text {color:#dde7e9 !important;}
.viewicon span{display:block;}
.b24-widget-button-wrapper.b24-widget-button-position-bottom-right{margin-right: 55px;}
.b24-form-sign {display:none !important;}
.b24-form-dropdown-container {
    background: #ffffff !important;
}
@media (max-width: 1024px) {
.b24-widget-button-wrapper.b24-widget-button-position-bottom-right{align-items: flex-start;
    left: 30px;
    bottom: 20px;}
}

.contact-form-wrap .b24-form-wrapper{min-height: 100px;}
.contact-form-wrap .b24-form-wrapper.b24-form-border-bottom {
    border-bottom: 0 none;
background: transparent;
}
.contact-form-wrap .b24-form-wrapper .b24-form-content {
    padding: 0 !important;
}
.contact-form-wrap .b24-form-wrapper .b24-form-padding-side{padding-left: 0 !important; padding-right:0 !important;}
.contact-form-wrap .b24-form-sign{display: none !important; }
.contact-form-wrap .b24-form .b24-form-content form > div {
  display: flex;
  align-items: center;
  max-width: 745px;
  width: 100%;
  margin-bottom: 10px !important;
}

@media only screen and (max-width: 1240px) {
  .contact-form-wrap .b24-form .b24-form-content form > div {
    max-width: 600px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-form-wrap .b24-form .b24-form-content form > div {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .contact-form-wrap .b24-form .b24-form-content form > div {
    display: block;
    margin-bottom: 20px;
  }
}


 .contact-form-wrap .b24-form-control-alert.b24-form-control-checkbox,
 .contact-form-wrap.b24-form-control-alert.b24-form-control-radiobox,
 .contact-form-wrap .b24-form-control-alert.b24-form-control-file,
 .contact-form-wrap .b24-form-control-alert.b24-form-control-list .b24-form-control,
 .contact-form-wrap .b24-form-control-alert.b24-form-control-string .b24-form-control,
 .contact-form-wrap .b24-form-control-alert.b24-form-control-text .b24-form-control {
  background: #fcfcfc !important;
}

@media only screen and (max-width: 767px) {
 .contact-form-wrap .b24-form-control-label {
    margin-top: -5px;
  }
}

.contact-form-wrap .b24-form .b24-form-control {
    width: 100%;
    border-radius: 50px;
    background: white;
    padding: 0 15px;
    height: 50px;
    color: #141414;
    font-size: 16px;
}

@media only screen and (max-width: 767px) {
.contact-form-wrap .b24-form .b24-form-control {
    margin-right: 0;
    margin-bottom: 13px;
    padding-top: 15px;
  }

  .contact-form-wrap .b24-form .b24-form-control:last-child {
    margin-bottom: 0;
  }
}

.contact-form-wrap .b24-form .b24-form-control::-moz-placeholder {
  color: rgba(29, 29, 29, 0.5);
}

.contact-form-wrap .b24-form .b24-form-control::-ms-input-placeholder {
  color: rgba(29, 29, 29, 0.5);
}

.contact-form-wrap .b24-form .b24-form-control::placeholder {
  color: rgba(29, 29, 29, 0.5);
}

.contact-form-wrap .b24-form-field.b24-form-control-string {
  margin-right: 17px !important;
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 767px) {
  .contact-form-wrap .b24-form-field.b24-form-control-string {
    margin-right: 0 !important;
  }
}

.contact-form-wrap .b24-form-field.b24-form-field-list.b24-form-control-list {
  margin-right: 0;
  margin-bottom: 0 !important;
  min-width: 250px;
}

.form__end {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .form__end {
    display: block;
  }
}

.contact-form-wrap .b24-form .b24-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
  cursor: pointer;
  transition: 300ms;
  width: 187px;
  height: 50px;
  background: #0e6131;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-right: 31px;
}

@media only screen and (max-width: 767px) {
.contact-form-wrap .b24-form .b24-form-btn {
    height: 46px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 21px;
    font-size: 16px;
  }
}

.contact-form-wrap .b24-form .b24-form-btn:hover {
  background: #0d9956;
}
.b24-form-dropdown-container::-webkit-scrollbar {
  width: 4px;
  background-color: transparent;
  border-radius: 10;
}

@media only screen and (max-width: 767px) {
  .b24-form-dropdown-container::-webkit-scrollbar {
    width: 1px;
  }
}

.b24-form-dropdown-container::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #0e6131;
}

.b24-form-dropdown-container::-webkit-scrollbar-thumb:hover {
  background-color: #9f9f9f;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.b24-form-dropdown-container::-webkit-scrollbar-track {
  -webkit-box-shadow: transparent;
  border-radius: 10;
  background-color: transparent;
}
.b24-form-control-not-empty+.b24-form-control-label {
    top: -2px !important;}

.white-btn.vybor:hover{
    background: #0e6131;
    color: white;
}

.bott_copy_txt {
    font-size: 16px !important;
}

.contact-us .wrapper .contact-form-wrap {
    overflow: hidden;
}

@media (max-width: 767px) {
  .footer .wrapper .footer-bottom p {
    font-size: 14px;
    margin-bottom: 15px;
    display: none;
  }
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

::-webkit-scrollbar-thumb {
  background: #0e6131; 
}

::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

::selection {
 background: #0e6131 !important;
 color: white !important;
}
/* End */


/* Start:/local/modules/cnetwork.translatorjs/assets/css/styles.min.css?17830685242112*/
.skiptranslate {display: none !important;}.goog-text-highlight, font > font {background-color: transparent !important;box-shadow: none !important;box-sizing: inherit;}.translatorjs_langs {background: #ddd;border-radius: 0 5px 5px 0;display: flex;flex-direction: column;left: -12px;line-height: 24px;max-width: 32px;padding: 5px;position: fixed;text-align: center;text-transform: uppercase;top: 50%;transform: translateY(-50%);transition: all 0.5s ease;-moz-transition: all 0.5s ease;-webkit-transition: all 0.5s ease;z-index: 999999;}.translatorjs_langs:hover {left: 0;}.translatorjs_lang_item {cursor: pointer;margin-bottom: 5px;max-width: 30px;opacity: .5;}.translatorjs_lang_item:last-of-type {margin-bottom: 0;}.translatorjs_lang_item:hover, .translatorjs_lang_active {opacity: 1;}.translatorjs_info {background: #ddd;border-radius: 5px 5px 0 0;bottom: 0;font-family: sans-serif;font-size: 16px;padding: 8px 0;position: fixed;text-align: center;transition: all 0.5s ease;-moz-transition: all 0.5s ease;-webkit-transition: all 0.5s ease;width: 100%;z-index: 999999;}
.translatorjs_langs--row {position:static;flex-direction:row;flex-wrap:wrap;max-width:none;left:auto;top:auto;-moz-transform:none;-webkit-transform:none;transform:none;-moz-transition:none;-webkit-transition:none;transition:none;border-radius:5px;padding:4px;gap:4px;display:inline-flex;}.translatorjs_langs--row:hover {left:auto;}.translatorjs_langs--row .translatorjs_lang_item {margin-bottom:0;border-radius:3px;border:2px solid transparent;padding:2px;box-sizing:border-box;}.translatorjs_langs--row .translatorjs_lang_active {border-color:#555;background:rgba(0,0,0,.12);opacity:1;}
html,body{top:0!important;}.goog-te-banner-frame,.goog-te-balloon-frame,.goog-te-ftab,#goog-gt-tt,.goog-te-gadget-icon{display:none!important;}
.translatorjs_langs,.translatorjs_info{display:none!important;}
font[style*="vertical-align"]{color:inherit!important;-webkit-text-fill-color:inherit!important;background:transparent!important;display:inline!important;white-space:inherit!important;overflow-wrap:inherit!important;word-break:inherit!important;}
/* End */


/* Start:/local/modules/cnetwork.floatwidget/install/css/widget.css?17854907334057*/
.cfw-root {
    position: fixed;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--cfw-spacing, 12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.cfw-root.cfw-axis-row {
    flex-direction: row;
}

.cfw-root.cfw-visible {
    opacity: 1;
    pointer-events: auto;
}

.cfw-main {
    position: relative;
    box-sizing: border-box;
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}

.cfw-shadow {
    box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}

.cfw-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: cfw-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes cfw-pulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.cfw-list {
    display: flex;
    gap: var(--cfw-spacing, 12px);
    opacity: 0;
    transform: scale(.85);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.cfw-list.cfw-dir-up { flex-direction: column; transform-origin: center bottom; }
.cfw-list.cfw-dir-down { flex-direction: column-reverse; order: 1; transform-origin: center top; }
.cfw-list.cfw-dir-left { flex-direction: row; transform-origin: right center; }
.cfw-list.cfw-dir-right { flex-direction: row-reverse; order: 1; transform-origin: left center; }

.cfw-root.cfw-open .cfw-list {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.cfw-btn {
    position: relative;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.cfw-btn .cfw-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
}

.cfw-icon svg,
.cfw-main > svg {
    width: 60%;
    height: 60%;
    color: inherit;
}

.cfw-icon svg *,
.cfw-main > svg * {
    color: inherit;
}

.cfw-monogram {
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    color: inherit;
    font-family: inherit;
}

.cfw-label {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .75);
    color: #fff;
    font-family: inherit;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
}

.cfw-btn:hover .cfw-label {
    opacity: 1;
}

.cfw-left .cfw-label {
    right: auto;
    left: calc(100% + 10px);
}

@media (max-width: 480px) {
    .cfw-label { display: none; }
}

.cfw-btn.cfw-multi {
    background: none;
    padding: 0;
}

.cfw-trigger {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.cfw-submenu {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
    z-index: 3;
}

.cfw-multi.cfw-open .cfw-submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cfw-left .cfw-submenu {
    right: auto;
    left: 0;
}

.cfw-submenu-item {
    display: block;
    padding: 8px 12px;
    border-radius: 5px;
    color: #333;
    font-family: inherit;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
}

.cfw-submenu-item:hover {
    background: #f2f2f2;
}

/* End */
/* /local/templates/svdom_new/css/preloader.css?17864456483421 */
/* /local/templates/svdom_new/css/slick.css?17830685101776 */
/* /local/templates/svdom_new/css/slick-theme.css?17859218982447 */
/* /local/templates/svdom_new/css/aos.css?178306851028743 */
/* /local/templates/svdom_new/css/reset-base.css?17830685109550 */
/* /local/templates/svdom_new/css/forms.css?17830685109059 */
/* /local/templates/svdom_new/css/projects.css?178306851027055 */
/* /local/templates/svdom_new/css/utilities.css?17830685104138 */
/* /local/templates/svdom_new/css/sliders.css?17830685105976 */
/* /local/templates/svdom_new/css/search.css?178306851030010 */
/* /local/templates/svdom_new/css/svdom.css?1788846641252001 */
/* /local/templates/.default/components/svoydom/webform.form/popup-sd/style.css?178306847313182 */
/* /local/templates/svdom_new/components/bitrix/news.list/soc_footer/style.min.css?1783068502129 */
/* /local/templates/svdom_new/styles.css?17830684945418 */
/* /local/modules/cnetwork.translatorjs/assets/css/styles.min.css?17830685242112 */
/* /local/modules/cnetwork.floatwidget/install/css/widget.css?17854907334057 */
