:root {
    --font-family: "SFProDisplay", sans-serif;
    --second-family: "Roboto", sans-serif;
    --third-family: "Angst", sans-serif;
    --accent: #cf828e;
    --accent-hover: #b45c6a;
    --black: #1e1e1e;
    --grey: #a5a2ac;
    --dark-grey: #494e52;
    --light-grey: #f5f5f5;
    --white: #fff;
}

@font-face {
    font-display: swap;
    font-family: roboto;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Roboto/Roboto-Regular.eot);
    src:
        url(../fonts/Roboto/Roboto-Regular.eot?#iefix) format("embedded-opentype"),
        url(../fonts/Roboto/Roboto-Regular.woff) format("woff"),
        url(../fonts/Roboto/Roboto-Regular.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: roboto;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/Roboto/Roboto-SemiBold.eot);
    src:
        url(../fonts/Roboto/Roboto-SemiBold.eot?#iefix) format("embedded-opentype"),
        url(../fonts/Roboto/Roboto-SemiBold.woff) format("woff"),
        url(../fonts/Roboto/Roboto-SemiBold.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: roboto;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/Roboto/Roboto-Bold.eot);
    src:
        url(../fonts/Roboto/Roboto-Bold.eot?#iefix) format("embedded-opentype"),
        url(../fonts/Roboto/Roboto-Bold.woff) format("woff"),
        url(../fonts/Roboto/Roboto-Bold.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: Angst;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/AngstVF/AngstVF.eot);
    src:
        url(../fonts/AngstVF/AngstVF.eot?#iefix) format("embedded-opentype"),
        url(../fonts/AngstVF/AngstVF.woff) format("woff"),
        url(../fonts/AngstVF/AngstVF.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: SFProDisplay;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/SF/SFProDisplay-Regular.eot);
    src:
        url(../fonts/SF/SFProDisplay-Regular.eot?#iefix) format("embedded-opentype"),
        url(../fonts/SF/SFProDisplay-Regular.woff) format("woff"),
        url(../fonts/SF/SFProDisplay-Regular.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: SFProDisplay;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/SF/SFProDisplay-Medium.eot);
    src:
        url(../fonts/SF/SFProDisplay-Medium.eot?#iefix) format("embedded-opentype"),
        url(../fonts/SF/SFProDisplay-Medium.woff) format("woff"),
        url(../fonts/SF/SFProDisplay-Medium.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: SFProDisplay;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/SF/SFProDisplay-Semibold.eot);
    src:
        url(../fonts/SF/SFProDisplay-Semibold.eot?#iefix) format("embedded-opentype"),
        url(../fonts/SF/SFProDisplay-Semibold.woff) format("woff"),
        url(../fonts/SF/SFProDisplay-Semibold.ttf) format("truetype");
}

.header {
    background-color: var(--white);
    left: 0;
    padding: 30px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}

.header__inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 48px;
    justify-content: space-between;
    position: relative;
}

.header__btns,
.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__btns {
    gap: 16px;
}

.header__btns .btn {
    height: 52px;
}

.header-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.header-menu a {
    color: var(--black);
}

.header-menu a:hover {
    color: var(--accent-hover);
}

.burger {
    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;
    height: 53px;
    justify-content: center;
    position: relative;
    width: 53px;
}

.burger svg {
    height: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: auto;
}

.burger.active svg {
    opacity: 0;
    visibility: hidden;
}

.burger.active:after,
.burger.active:before {
    background-color: var(--dark-grey);
    border-radius: 2px;
    content: "";
    height: 2px;
    position: absolute;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition:
        transform 0.3s ease,
        -webkit-transform 0.3s ease;
    width: 24px;
}

.burger.active:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.burger.active:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sidebar {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 64px 1fr;
    background-color: var(--white);
    border-radius: 15px;
    -webkit-box-shadow: 0 4px 12px 0 rgba(58, 37, 17, 0.478);
    box-shadow: 0 4px 12px 0 rgba(58, 37, 17, 0.478);
    gap: 64px;
    grid-template-columns: 1fr 1fr;
    left: -100%;
    max-width: 1760px;
    opacity: 0;
    padding: 64px;
    position: absolute;
    top: 99px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    visibility: hidden;
    width: 100%;
    z-index: -1;
}

.sidebar.active {
    left: 50%;
    opacity: 1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    visibility: visible;
    z-index: 2;
}

.sidebar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

.sidebar ul li {
    font-family: var(--second-family);
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 130%;
    text-transform: uppercase;
}

.sidebar ul a {
    color: var(--black);
}

.sidebar ul a:hover {
    color: var(--accent-hover);
}

.phones-btn {
    position: relative;
}

.phones-btn .btn:hover {
    background-color: transparent;
    color: var(--accent);
}

.phones-btn .btn:hover svg path {
    stroke: var(--accent);
}

.phones-btn .btn img {
    display: none;
}

.phones-btn .btn svg,
.phones-btn__dropdown {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.phones-btn__dropdown {
    background-color: var(--light-grey);
    border-radius: 15px;
    left: 0;
    min-width: 250px;
    opacity: 0;
    padding: 8px 20px;
    position: absolute;
    top: 60px;
    visibility: hidden;
}

.phones-btn__dropdown li {
    border-bottom: 1px solid var(--grey);
    padding: 12px 0;
}

.phones-btn__dropdown li:last-child {
    border: none;
}

.phones-btn__dropdown a {
    color: var(--dark-grey);
}

.phones-btn__dropdown a:hover {
    color: var(--accent-hover);
}

.phones-btn.active .phones-btn__dropdown {
    opacity: 1;
    visibility: visible;
}

.phones-btn.active .btn svg {
    -webkit-transform: scale(-1);
    -ms-transform: scale(-1);
    transform: scale(-1);
}

.footer {
    margin-top: 180px;
}

.footer-info {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 20px;
    justify-content: space-between;
    padding-bottom: 32px;
}

.footer-info,
.footer-info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-info li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.footer-info li span {
    color: var(--grey);
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}

.footer-info li a,
.footer-info li p {
    color: var(--black);
    font-family: var(--second-family);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 130%;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.footer-info li a:hover {
    color: var(--accent-hover);
}

.footer-menu {
    border-bottom: 1px solid var(--grey);
    border-top: 1px solid var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 32px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-menu ul:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px 48px;
}

.footer-menu ul:first-child a {
    color: var(--black);
    padding: 10px 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.footer-menu ul:first-child a:hover {
    color: var(--accent-hover);
}

.social {
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.social,
.social li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.social li a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: var(--accent);
    border-radius: 15px;
    height: 48px;
    justify-content: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 48px;
}

.social li a:hover {
    background-color: var(--accent-hover);
}

.footer-desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    margin-top: 48px;
}

.footer-desc,
.footer-dev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-dev {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    padding: 24px 0 80px;
}

.footer-dev__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.footer-dev__link a {
    color: var(--accent);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.footer-dev__link a:hover {
    color: var(--accent-hover);
}

.main-screen__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 30px 1fr;
    gap: 30px;
    grid-template-columns: 2fr 1fr;
}

.main-screen__slider,
.main-screen__slider-small {
    border-radius: 15px;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.main-screen__slider-small {
    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;
    background-color: var(--light-grey);
    border-radius: 15px;
    gap: 32px;
    padding: 48px;
}

.main-screen__slider-small .btn {
    max-width: 100%;
    white-space: nowrap;
    width: 100%;
}

.big-slider {
    height: 100%;
}

.big-slider .nav-block {
    bottom: 48px;
    position: absolute;
    right: 48px;
    z-index: 1;
}

.big-slide {
    position: relative;
}

.big-slide__label {
    border-radius: 15px;
    font-family: var(--second-family);
    font-size: 25px;
    left: 48px;
    line-height: 130%;
    max-width: 383px;
    position: absolute;
    top: 48px;
    width: 100%;
    z-index: 2;
}

.big-slide__label:before {
    background-color: var(--accent);
    border-radius: 15px 0 0 15px;
    bottom: 0;
    content: "";
    left: -15px;
    position: absolute;
    top: 0;
    width: 50px;
    z-index: -1;
}

.big-slide__label-text {
    background-color: var(--white);
    border-radius: 15px;
    font-weight: 700;
    padding: 24px;
    position: relative;
    text-transform: uppercase;
    z-index: 2;
}

.big-slide__desc {
    bottom: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 48px;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    color: var(--white);
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    max-width: 763px;
    width: 70%;
}

.big-slide img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.small-slider {
    max-height: 540px;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.small-slider .swiper-wrapper {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.small-slide {
    height: auto;
}

.small-slide__inner {
    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-pack: justify;
    -ms-flex-pack: justify;
    gap: 32px;
    height: 100%;
    justify-content: space-between;
}

.small-slide__inner h3 {
    font-family: var(--second-family);
    font-weight: 700;
}

.small-slide__inner img {
    aspect-ratio: 471/446;
    border-radius: 20px;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.what-new {
    overflow: hidden;
}

.what-new__inner {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 180px;
}

.what-new__inner,
.what-new__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.what-new__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 417px;
    position: relative;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 417px;
    flex: 0 0 417px;
}

.what-new__nav>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 32px;
}

.what-new__nav .swiper-pagination {
    position: static;
}

.what-new__slider {
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
    max-width: 100%;
    width: 100%;
}

.what-new-slider {
    border-radius: 15px;
    overflow: hidden;
}

.what-new-slider .swiper-slide {
    margin-right: 24px;
    width: 200px;
}

.what-new-slider .swiper-slide>div {
    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;
    background-color: var(--light-grey);
    border-radius: 15px;
    justify-content: center;
    padding: 6px;
}

.what-new-slider .swiper-slide>div img {
    border-radius: 12px;
    height: 188px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
}

.what-new-slider .swiper-slide span {
    color: var(--black);
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    margin-top: 8px;
    text-align: center;
    width: 100%;
}

.format__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.5fr 30px 1fr;
    grid-template-columns: 1.5fr 1fr;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 30px;
}

.format__img {
    border-radius: 15px;
    overflow: hidden;
}

.format__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.format__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.quote {
    background-color: var(--light-grey);
    border-radius: 15px;
    color: var(--black);
    font-weight: 600;
    padding: 20px;
}

.advantages {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 48px 1fr;
    gap: 30px 48px;
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
}

.advantage {
    gap: 16px;
}

.advantage,
.advantage__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.advantage__icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    background-color: var(--accent);
    border-radius: 50%;
    -ms-flex: 0 0 64px;
    flex: 0 0 64px;
    height: 64px;
}

.advantage__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
}

.advantage__desc span {
    font-family: var(--second-family);
    font-size: 25px;
    font-weight: 700;
    line-height: 130%;
    text-transform: uppercase;
}

.advantage__desc p {
    color: var(--grey);
    font-size: 16px;
    line-height: 130%;
}

.freedom {
    overflow: hidden;
}

.freedom .flex {
    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;
}

.freedom .title {
    gap: 140px;
}

.freedom .title p {
    max-width: 570px;
    width: 100%;
}

.freedom__inner {
    max-width: 100%;
    position: relative;
    width: 100%;
}

.freedom__inner .swiper-pagination {
    display: none;
}

.freedom__inner .freedom-slide {
    -webkit-box-flex: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 1 calc(33.33333% - 20px);
    flex: 0 1 calc(33.33333% - 20px);
    margin-right: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    background-color: var(--dark-grey);
    border-radius: 15px;
    color: var(--white);
    gap: 32px;
    height: auto;
    justify-content: space-between;
    overflow: hidden;
}

.freedom-slider .swiper-wrapper {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.freedom-slide__desc {
    padding: 48px 48px 0;
}

.freedom-slide__desc span {
    font-family: var(--second-family);
    font-size: 32px;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
}

.freedom-slide__desc p {
    font-family: var(--font-family);
    font-weight: 400;
    margin-top: 16px;
}

.freedom-slide__img img {
    border-radius: 15px;
    max-height: 547px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
}

.callback-sect__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}

.callback-sect__form {
    background-color: var(--dark-grey);
    border-radius: 15px;
    color: var(--white);
    padding: 48px;
}

.callback-sect__img {
    border-radius: 15px;
    overflow: hidden;
}

.callback-sect__img img {
    height: 100%;
    max-width: 100%;
    min-height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.callback-form__title {
    margin-bottom: 48px;
}

.callback-form__title h3 {
    font-family: var(--second-family);
    font-size: 32px;
    font-weight: 400;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
}

.callback-form__title p {
    margin-top: 32px;
}

.callback-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.callback-form form .btn {
    margin-top: 16px;
}

.callback-form form p {
    color: var(--grey);
    font-size: 16px;
    line-height: 130%;
}

.about__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 180px auto;
    grid-template-columns: auto auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 32px 180px;
    justify-content: space-between;
}

.about__desc {
    max-width: 716px;
}

.about__desc ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
    gap: 32px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
}

.about__desc ul li p {
    font-weight: 700;
    white-space: nowrap;
}

.about__desc ul li span {
    color: var(--dark-grey);
    display: inline-block;
}

.about__desc .btn {
    margin-top: 48px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.about__img {
    border-radius: 15px;
    overflow: hidden;
}

.about__img img {
    height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.tabs {
    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;
    position: relative;
}

.tabs .swiper-pagination {
    bottom: 32px;
    color: var(--white);
    font-family: var(--second-family);
    font-size: 25px;
    font-weight: 700;
    line-height: 130%;
}

.tabs .nav-block,
.tabs .swiper-pagination {
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tabs .nav-block {
    bottom: 30px;
}

.tabs .nav-block .nav-icon {
    display: none;
}

.tabs .nav-block .swiper-pagination {
    padding-left: 24px;
    position: static;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}

.tabs .nav-block .swiper-pagination .swiper-pagination-total {
    color: hsla(0, 0%, 100%, 0.3);
}

.tabs__head-wrap {
    -ms-flex-align: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    background-color: var(--white);
    border-radius: 100px;
    gap: 8px;
    justify-content: flex-start;
    padding: 8px;
}

.tabs__arrow,
.tabs__head-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.tabs__arrow {
    -webkit-box-flex: 0;
    border-radius: 50%;
    -ms-flex: 0 0 48px;
    flex: 0 0 48px;
    height: 48px;
    width: 48px;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: var(--accent);
    border: none;
    cursor: pointer;
    justify-content: center;
    outline: none;
}

.tabs__arrow.swiper-button-disabled {
    background-color: transparent;
    cursor: not-allowed;
}

.tabs__arrow.swiper-button-disabled svg path {
    fill: var(--grey);
}

.tabs__head {
    overflow: hidden;
    width: 100%;
}

.tabs__head .swiper-slide {
    width: auto;
}

.tabs__controls {
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.tabs__caption {
    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;
    cursor: pointer;
    font-size: 16px;
    justify-content: center;
    line-height: 100%;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-flex: 0;
    background-color: var(--light-grey);
    border-radius: 32px;
    color: var(--black);
    -ms-flex: 0 1;
    flex: 0 1;
    font-family: var(--second-family);
    font-size: 20px;
    height: 56px;
    line-height: 140%;
    padding: 14px 32px;
    position: relative;
    white-space: nowrap;
}

.tabs__caption:hover {
    background-color: var(--accent);
    color: var(--white);
}

.tabs__caption_active {
    background-color: var(--accent);
    color: var(--white);
}

.tabs__body {
    margin-top: -120px;
    position: relative;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}

.tabs__content {
    -webkit-animation: showContent 0.6s forwards;
    animation: showContent 0.6s forwards;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
    display: none;
    height: calc(100vh - 113px);
    max-height: 800px;
    min-height: 500px;
    opacity: 1;
    overflow: hidden;
    overflow: auto;
    position: relative;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
}

.tabs__content_active {
    display: block;
}

.char-content {
    background-color: var(--white);
    border-radius: 30px;
    bottom: 32px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    left: 32px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    min-width: 586px;
    padding: 30px;
    position: absolute;
    right: 32px;
    top: 118px;
    width: 100%;
}

.char-content__inner {
    overflow: auto;
}

.char-content__inner::-webkit-scrollbar {
    width: 6px;
}

.char-content__inner::-webkit-scrollbar-track {
    background-color: var(--grey);
    border-radius: 6px;
}

.char-content__inner::-webkit-scrollbar-thumb {
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 20px var(--accent);
    box-shadow: inset 0 0 20px var(--accent);
}

.char-content h3 {
    color: var(--accent);
    display: inline-block;
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    margin: 0 0 24px;
}

.char-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    max-height: 500px;
    overflow-y: auto;
    padding: 0;
}

.char-content li {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 48px 1fr !important;
    gap: 48px;
    grid-template-columns: 1fr 1fr !important;
}

.char-content li * {
    font-size: 16px;
    line-height: 130%;
}

.char-content li p {
    color: var(--accent);
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(50% - 24px);
    flex: 0 1 calc(50% - 24px);
    max-width: 240px;
    min-width: 240px;
}

.char-content li div.row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 48px 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 15px 48px;
    justify-content: space-between;
}

.char-content li div.row span {
    width: 240px;
}

.char-content li a,
.char-content li div,
.char-content li span {
    -webkit-box-flex: 0;
    color: var(--black);
    -ms-flex: 0 1 calc(50% - 24px);
    flex: 0 1 calc(50% - 24px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.char-content li:first-child {
    border-top: none;
}

.char-content li>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

[data-tab="tab-5"] .char-content,
[data-tab="tab-6"] .char-content {
    max-width: 540px;
}

[data-tab="tab-5"] .char-content p,
[data-tab="tab-6"] .char-content p {
    max-width: 100%;
    width: 100%;
}

[data-tab="tab-5"] .char-content li p {
    width: 200px;
}

.genplan__inner>.btn {
    display: none;
}

.genplan__desc .title {
    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;
    gap: 20px;
    justify-content: space-between;
}

.genplan__desc .btn {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.genplan__img,
.genplan__img-block {
    position: relative;
}

.genplan__img ::-webkit-scrollbar {
    display: none;
}

.genplan__img>img {
    border-radius: 15px;
    height: auto;
    max-height: 800px;
    min-width: 672px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
}

.svg-genplan {
    border-radius: 15px;
    bottom: 0;
    height: 100%;
    left: 0;
    min-width: 672px;
    overflow: hidden;
    right: 0;
    top: 0;
    width: 100%;
}

.liter,
.svg-genplan {
    position: absolute;
}

.liter>span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-family: var(--second-family);
    font-size: 25px;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.liter-1 {
    bottom: 55%;
    left: 25%;
}

.liter-2 {
    top: 29%;
    left: 55%;
}

.liter-3 {
    top: 25%;
    right: 15%;
}

.liter__tooltip {
    background-color: var(--white);
    border-radius: 15px;
    -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.161);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.161);
    left: 50%;
    transform: translateX(-50%);
    min-width: 450px;
    opacity: 0;
    padding: 24px;
    position: absolute;
    top: 70px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    visibility: hidden;
    z-index: 5;
}

.liter__tooltip ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
    gap: 32px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    white-space: nowrap;
}

.liter__tooltip li span {
    border-bottom: 1px solid var(--grey);
    color: var(--grey);
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    padding-bottom: 4px;
}

.liter__tooltip li p {
    font-size: 20px;
    line-height: 140%;
    margin-top: 8px;
}

.liter__tooltip .btn {
    margin-top: 32px;
}

.liter:hover .liter__tooltip {
    opacity: 1;
    visibility: visible;
}

.liter:hover>span {
    background-color: var(--accent);
}

.location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.location-1 {
    bottom: 16%;
    left: 26%;
}

.location-2 {
    left: 49%;
    top: 23%;
}

.location-3 {
    right: 23.5%;
    top: 34%;
}

.location:hover .location__desc {
    opacity: 1;
    -webkit-transform: translateY(-50%) translateX(30px);
    -ms-transform: translateY(-50%) translateX(30px);
    transform: translateY(-50%) translateX(30px);
    visibility: visible;
}

.location__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.location__icon img {
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 24px;
}

.location__desc {
    background-color: var(--white);
    border-radius: 10px;
    color: var(--accent);
    font-family: var(--second-family);
    font-weight: 400;
    left: 24px;
    opacity: 0;
    padding: 8px 16px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-20px);
    -ms-transform: translateY(-50%) translateX(-20px);
    transform: translateY(-50%) translateX(-20px);
    -webkit-transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        -webkit-transform 0.3s ease;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        -webkit-transform 0.3s ease;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease,
        -webkit-transform 0.3s ease;
    visibility: hidden;
    white-space: nowrap;
    z-index: 1;
}

.icon-swap {
    display: none;
}

.liter-hover {
    cursor: pointer;
    fill: transparent;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.liter-hover:hover {
    fill: rgba(0, 153, 67, 0.322);
}

.map .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 20px;
    justify-content: space-between;
}

.map .title h2 {
    max-width: 100%;
}

.map .title p {
    max-width: 567px;
}

.map-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 30px;
}

.map-item {
    cursor: pointer;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background-color: var(--light-grey);
    border-radius: 15px;
    gap: 20px;
    padding: 24px;
}

.map-item,
.map-item__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.map-item__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}

.map-item__desc h3 {
    font-weight: 700;
}

.map-item__desc p {
    color: var(--grey);
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
}

.map-item__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
}

.map-item__img img {
    border-radius: 10px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden;
    width: 100px;
}

.map-block {
    border-radius: 15px;
    height: 600px;
    overflow: hidden;
    width: 100%;
}

.gallery-block {
    position: relative;
}

.gallery-block__panel {
    border-radius: 15px;
    height: calc(100vh - 180px);
    max-height: 800px;
    min-height: 560px;
    overflow: hidden;
    position: relative;
}

.gallery-block__panel:before {
    background: -webkit-gradient(linear,
            left top,
            left bottom,
            from(rgba(0, 0, 0, 0)),
            to(rgba(0, 0, 0, 0.48)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.48));
    bottom: 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 2;
}

.gallery-block__image {
    height: 100%;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity 0.35s ease;
    transition: opacity 0.35s ease;
    width: 100%;
}

.gallery-block__image.is-active {
    opacity: 1;
}

.gallery-block__tabs-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 32px;
    position: absolute;
    top: 32px;
    z-index: 3;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--white);
    border-radius: 60px;
    gap: 6px;
    max-width: calc(100% - 160px);
    max-width: 82%;
    overflow: hidden;
    padding: 8px;
}

.gallery-block__tabs-slider {
    max-width: 100%;
    overflow: hidden;
}

.gallery-block__tabs-slide {
    width: auto;
}

.gallery-block__tab {
    background-color: var(--light-grey);
    border: 0;
    border-radius: 32px;
    color: var(--black);
    cursor: pointer;
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 400;
    height: 56px;
    line-height: 140%;
    padding: 14px 32px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    white-space: nowrap;
}

.gallery-block__tab:hover {
    background-color: var(--accent-hover);
    color: var(--white);
}

.gallery-block__tab.is-active {
    background: var(--accent);
    color: var(--white);
}

.gallery-block__tabs-arrow {
    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;
    -webkit-box-flex: 0;
    background: var(--accent);
    border: 0;
    border-radius: 50%;
    color: #3b6158;
    cursor: pointer;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 53px;
    width: 53px;
}

.gallery-block__tabs-arrow.swiper-button-disabled {
    background: transparent;
    pointer-events: none;
}

.gallery-block__tabs-arrow.swiper-button-disabled svg path {
    fill: var(--grey);
}

.gallery-block__tabs-arrow.is-hidden {
    display: none;
}

.gallery-block__mode {
    background: var(--white);
    border-radius: 60px;
    gap: 4px;
    position: absolute;
    right: 32px;
    top: 36px;
    z-index: 3;
}

.gallery-block__mode,
.gallery-block__mode-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gallery-block__mode-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: var(--accent);
    cursor: pointer;
    height: 64px;
    justify-content: center;
    width: 64px;
}

.gallery-block__mode-btn svg path {
    fill: var(--accent);
    stroke: var(--accent);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.gallery-block__mode-btn.is-active {
    background: var(--accent);
    color: #fff;
}

.gallery-block__mode-btn.is-active svg path {
    fill: var(--white);
}

.gallery-block__text {
    border-radius: 15px;
    color: var(--white);
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: 600;
    left: 22px;
    line-height: 140%;
    max-width: 40%;
    padding: 24px 21px;
}

.gallery-block__controls,
.gallery-block__text {
    backdrop-filter: blur(48px);
    background: hsla(0, 0%, 100%, 0.2);
    bottom: 32px;
    position: absolute;
    z-index: 3;
}

.gallery-block__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 60px;
    gap: 8px;
    padding: 8px 8px 8px 24px;
}

.gallery-block__counter {
    margin-right: 24px;
}

.gallery-block__counter.h3 {
    color: var(--white);
    font-weight: 700;
}

.gallery-block__counter [data-total] {
    color: var(--grey);
}

.gallery-block__arrow {
    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;
    background: var(--black);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    height: 53px;
    justify-content: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 53px;
}

.gallery-block__arrow:hover {
    background: var(--accent-hover);
}

.gallery-block__select {
    display: none;
}

.gallery-block__select .custom-select__trigger {
    height: 52px;
    min-height: 52px;
}

body.lock {
    overflow: hidden;
}

.popup {
    background-color: rgba(51, 51, 51, 0.7);
    height: 100%;
    left: 0;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 20;
}

.popup.open {
    opacity: 1;
    visibility: visible;
}

.popup.open .popup__content {
    opacity: 1;
    -webkit-transform: perspective(600px) translate(0) rotateX(0deg);
    transform: perspective(600px) translate(0) rotateX(0deg);
}

.popup__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px;
}

.popup__body,
.popup__content {
    -webkit-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}

.popup__content {
    background-color: #fff;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    max-width: 526px;
    opacity: 0;
    padding: 64px 48px 48px;
    position: relative;
    -webkit-transform: perspective(600px) translateY(-100%) rotateX(45deg);
    transform: perspective(600px) translateY(-100%) rotateX(45deg);
    width: 100%;
}

.popup__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    text-align: left;
}

.popup__title span:not(.h2) {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
}

.popup__title span.h2 {
    font-family: var(--second-family);
    font-weight: 400;
    text-transform: uppercase;
}

.popup__close {
    position: absolute;
    right: 20px;
    text-decoration: none;
    top: 20px;
}

.popup-gallery .popup__slider>span {
    color: var(--accent);
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 32px;
    text-align: center;
    width: 100%;
}

.popup-gallery .close-popup {
    top: 70px;
}

.popup-gallery .close-popup svg {
    height: 32px;
    width: 32px;
}

.popup-gallery .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 32px;
    position: static;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.popup-gallery .swiper-pagination .swiper-pagination-bullet {
    border-radius: 100px;
    margin: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.popup-gallery .swiper-pagination .swiper-pagination-bullet-active {
    -webkit-box-flex: 1;
    background-color: var(--accent);
    -ms-flex: 1 1;
    flex: 1 1;
}

.popup-gallery .nav-arrow {
    position: absolute;
    top: calc(50% + 72px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.popup-gallery .nav-arrow.swiper-button-disabled {
    display: none;
}

.popup-gallery .popup__content {
    border-radius: 15px;
    max-width: 490px;
    padding: 0;
    width: 100%;
}

.popup__slider {
    max-height: 90vh;
    overflow: auto;
    scrollbar-color: var(--accent) var(--grey);
    scrollbar-width: thin;
}

.popup-slider {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.popup-slider .swiper-slide img {
    height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.gallery-arrow__prev {
    left: -80px;
}

.gallery-arrow__next {
    right: -80px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #666;
    opacity: 1;
}

:-moz-placeholder,
::-moz-placeholder {
    color: #666;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #666;
    opacity: 1;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
    color: #666;
}

body input:required:valid,
body textarea:required:valid {
    color: #666;
}

body,
html {
    height: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 20px;
    line-height: 140%;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

.text-center {
    text-align: center;
}

::-moz-selection {
    background-color: var(--accent);
    color: var(--white);
}

::selection {
    background-color: var(--accent);
    color: var(--white);
}

a {
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 80px;
}

.mt-113 {
    margin-top: 113px;
}

.mb-48 {
    margin-bottom: 48px;
}

.h1,
.h2 {
    font-family: var(--font-family);
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 0;
}

.h1,
.h2,
.h3 {
    line-height: 130%;
    text-transform: uppercase;
}

.h3 {
    color: var(--black);
    font-family: var(--second-family);
    font-size: 25px;
    font-weight: 700;
}

.accent {
    color: var(--accent);
}

.nav-block {
    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;
    backdrop-filter: blur(48px);
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: 60px;
    gap: 20px;
    justify-content: space-between;
    max-width: 224px;
    padding: 8px;
}

.nav-block--border {
    background: transparent;
    border: 1px solid var(--black);
}

.nav-block--border .swiper-button-disabled svg path {
    fill: var(--dark-grey);
}

.nav-block .swiper-pagination-fraction {
    position: static;
}

.nav-block .swiper-pagination {
    color: var(--dark-grey);
    font-family: var(--second-family);
    font-size: 25px;
    font-weight: 700;
    line-height: 120%;
    padding-left: 24px;
    white-space: nowrap;
}

.nav-block .swiper-pagination--white {
    color: var(--white);
}

.nav-block .swiper-pagination .swiper-pagination-total {
    color: var(--grey);
}

.nav-block .nav-icon {
    background-color: var(--white);
    display: none;
    height: 42px;
    width: 42px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    border-radius: 50%;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
}

.nav-arrows {
    -ms-flex-align: center;
    gap: 8px;
}

.nav-arrow,
.nav-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.nav-arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 53px;
    flex: 0 0 53px;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background-color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 53px;
    justify-content: center;
    outline: none;
    position: static;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 53px;
}

.nav-arrow:hover {
    background-color: var(--accent-hover);
}

.nav-arrow.swiper-button-disabled {
    background-color: transparent;
    opacity: 0.5;
    pointer-events: none;
}

.custom-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 16px;
}

.custom-pagination .swiper-pagination-bullet {
    -webkit-box-flex: 0;
    background-color: var(--grey);
    border-radius: 10px;
    -ms-flex: 0 0 8px;
    flex: 0 0 8px;
    height: 8px;
    margin: 0 !important;
    opacity: 1;
    padding: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 8px;
}

.custom-pagination .swiper-pagination-bullet-active {
    -webkit-box-flex: 0;
    background-color: var(--accent);
    -ms-flex: 0 0 88px;
    flex: 0 0 88px;
    width: 88px;
}

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 180px;
}

.input {
    background-color: transparent;
    border: 1px solid var(--grey);
    border-radius: 15px;
    color: var(--white);
    font-size: 20px;
    height: 54px;
    line-height: 140%;
    max-width: 100%;
    outline: none;
    padding: 5px 24px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    width: 100%;
}

.input:focus {
    border-color: var(--white);
}

.input:focus::-webkit-input-placeholder {
    color: var(--white);
}

.input:focus::-moz-placeholder {
    color: var(--white);
}

.input:focus:-ms-input-placeholder {
    color: var(--white);
}

.input:focus::-ms-input-placeholder {
    color: var(--white);
}

.input:focus::placeholder {
    color: var(--white);
}

::-webkit-input-placeholder {
    color: var(--grey);
    font-size: 20px;
    line-height: 140%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

::-moz-placeholder {
    color: var(--grey);
    font-size: 20px;
    line-height: 140%;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
}

:-ms-input-placeholder {
    color: var(--grey);
    font-size: 20px;
    line-height: 140%;
    -ms-transition: 0.3s ease;
    transition: 0.3s ease;
}

::-ms-input-placeholder {
    color: var(--grey);
    font-size: 20px;
    line-height: 140%;
    -ms-transition: 0.3s ease;
    transition: 0.3s ease;
}

::placeholder {
    color: var(--grey);
    font-size: 20px;
    line-height: 140%;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.custom-select {
    display: none;
    position: relative;
    width: 100%;
}

.custom-select__trigger {
    background: var(--accent);
    border-radius: 60px;
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 56px;
    padding: 0 24px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border: none;
    cursor: pointer;
    gap: 12px;
    justify-content: space-between;
    text-align: left;
}

.custom-select__value {
    color: var(--white);
    font-size: 17px;
    line-height: 1.4;
}

.custom-select__arrow {
    -webkit-box-flex: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition:
        transform 0.2s ease,
        -webkit-transform 0.2s ease;
}

.custom-select.is-open .custom-select__arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.custom-select__dropdown {
    background: var(--light-grey);
    border-radius: 15px;
    left: 0;
    opacity: 0;
    padding: 4px 20px;
    position: absolute;
    top: calc(100% + 8px);
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        -webkit-transform 0.2s ease;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        -webkit-transform 0.2s ease;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease,
        -webkit-transform 0.2s ease;
    visibility: hidden;
    width: 100%;
    z-index: 30;
}

.custom-select.is-open .custom-select__dropdown {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

.custom-select__option {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--grey);
    color: var(--accent);
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    padding: 16px 0;
    text-align: left;
    -webkit-transition:
        background 0.2s ease,
        color 0.2s ease;
    transition:
        background 0.2s ease,
        color 0.2s ease;
    width: 100%;
}

.custom-select__option:last-child {
    border-bottom: none;
}

.custom-select__option:last-child {
    margin-bottom: 0;
}

.custom-select__option:hover {
    color: var(--accent-hover);
}

.custom-select__option.is-active {
    border-color: var(--accent);
    color: var(--accent-hover);
}

.btn {
    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;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    gap: 10px;
    height: 60px;
    justify-content: center;
    line-height: 140%;
    outline: none;
    padding: 16px 64px;
    text-align: center;
}

.btn,
.btn svg path {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.btn--primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn--primary:hover {
    background-color: var(--accent-hover);
}

.btn--white {
    background-color: var(--white);
    color: var(--black);
}

.btn--white:hover {
    background-color: var(--accent-hover);
    color: var(--white);
}

.btn--border {
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
}

.btn--border:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
}

.btn--icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
}

.btn--icon:hover svg path {
    stroke: var(--white);
}

.req-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.req-form .success {
    color: var(--grey);
    font-size: 14px;
    line-height: 120%;
}

.req-form .input {
    color: var(--accent);
}

.req-form .input:focus {
    border-color: var(--accent);
    color: var(--accent);
}

.req-form .input:focus ::-webkit-input-placeholder {
    color: var(--grey);
}

.req-form .input:focus ::-moz-placeholder {
    color: var(--grey);
}

.req-form .input:focus :-ms-input-placeholder {
    color: var(--grey);
}

.req-form .input:focus ::-ms-input-placeholder {
    color: var(--grey);
}

.req-form .input:focus ::placeholder {
    color: var(--grey);
}

@media screen and (max-width: 1875px) {
    .header-menu {
        display: none;
    }

    .map-item__desc h3 {
        font-size: 17px;
    }
}

@media screen and (max-width: 1600px) {
    .container {
        padding: 0 50px;
    }

    .footer {
        margin-top: 160px;
    }

    .main-screen__inner {
        -ms-grid-columns: 1.42fr 1fr;
        grid-template-columns: 1.42fr 1fr;
    }

    .big-slide__desc {
        width: 100%;
    }

    .big-slide p {
        max-width: 366px;
    }

    .format__inner {
        -ms-grid-columns: 1fr 1.4fr;
        grid-template-columns: 1fr 1.4fr;
    }

    .freedom .title p {
        max-width: 407px;
    }

    .freedom-slide__desc {
        padding: 32px 32px 0;
    }

    .freedom-slide__img img {
        max-height: 363px;
    }

    .about__inner {
        gap: 32px 140px;
    }

    .about__desc {
        max-width: 625px;
    }

    .about__img {
        max-width: 516px;
    }

    .liter-2 {
        left: 54%;
    }

    .location-3 {
        right: 22.5%;
        top: 32%;
    }

    .map-item__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
        flex: 0 0 90px;
    }

    .map-item__img img {
        height: 90px;
        width: 90px;
    }

    .gallery-block__panel:after {
        backdrop-filter: blur(1px);
        background: -webkit-gradient(linear,
                left top,
                left bottom,
                from(rgba(0, 0, 0, 0)),
                to(rgba(0, 0, 0, 0.48)));
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0),
                rgba(0, 0, 0, 0.48));
        bottom: 0;
        content: "";
        height: 300px;
        left: 0;
        position: absolute;
        right: 0;
        width: 100%;
        z-index: 2;
    }

    .gallery-block__text {
        max-width: 35%;
    }

    .main {
        gap: 160px;
    }
}

@media screen and (max-width: 1439.5px) {
    .header {
        padding: 22px 0;
    }

    .header__btns .btn {
        height: 48px;
    }

    .header__btns .btn:first-child {
        max-width: 260px;
        width: 100%;
    }

    .sidebar {
        gap: 24px;
        padding: 48px;
        top: 85px;
    }

    .sidebar ul {
        gap: 24px;
    }

    .sidebar ul li {
        font-size: 36px;
    }

    .phones-btn .btn {
        min-width: 84px;
        padding: 10px 16px;
    }

    .phones-btn .btn img {
        display: block;
    }

    .phones-btn .btn span {
        display: none;
    }

    .phones-btn__dropdown {
        left: auto;
        right: 0;
    }

    .footer {
        margin-top: 130px;
    }

    .footer-info li span {
        font-size: 17px;
    }

    .footer-info li a,
    .footer-info li p {
        font-size: 24px;
    }

    .main-screen__inner {
        -ms-grid-columns: 1.75fr 1fr;
        grid-template-columns: 1.75fr 1fr;
    }

    .main-screen__slider-small {
        padding: 32px;
    }

    .big-slider .nav-block {
        bottom: 32px;
        right: 32px;
    }

    .big-slide__label {
        left: 32px;
        top: 32px;
    }

    .big-slide__desc {
        bottom: 32px;
        left: 32px;
        right: 32px;
    }

    .big-slide p {
        max-width: 240px;
    }

    .what-new__inner {
        gap: 100px;
    }

    .what-new__nav {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 333px;
        flex: 0 0 333px;
    }

    .what-new__nav>div {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .what-new__nav .swiper-pagination {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .what-new-slider .swiper-slide {
        margin-right: 16px;
        width: 160px;
    }

    .what-new-slider .swiper-slide>div img {
        height: 148px;
    }

    .what-new-slider .swiper-slide span {
        font-size: 17px;
    }

    .format__inner {
        -ms-grid-columns: 1fr;
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .format__img img {
        height: 400px;
    }

    .advantages {
        margin-top: 12px;
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .advantage__desc span {
        font-size: 22px;
    }

    .advantage__desc p {
        font-size: 15px;
    }

    .freedom .title {
        gap: 100px;
    }

    .freedom .title p {
        max-width: 333px;
    }

    .freedom__inner .freedom-slide {
        gap: 24px;
        margin-right: 24px;
    }

    .freedom-slide__desc {
        padding: 24px 24px 0;
    }

    .freedom-slide__desc span {
        font-size: 24px;
    }

    .freedom-slide__desc p {
        margin-top: 10px;
    }

    .callback-form__title {
        margin-bottom: 32px;
    }

    .callback-form__title h3 {
        font-size: 24px;
    }

    .callback-form form .btn {
        margin-top: 4px;
    }

    .about__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .about__desc {
        max-width: 100%;
    }

    .about__desc ul {
        max-width: 615px;
    }

    .about__desc .btn {
        margin-top: 32px;
    }

    .about__img {
        height: 400px;
        max-width: 100%;
        width: 100%;
    }

    .char-content li {
        gap: 32px;
    }

    .char-content li * {
        font-size: 15px;
    }

    .char-content li div.row {
        gap: 15px 32px;
    }

    .genplan__img>img {
        height: 600px;
    }

    .liter>span {
        font-size: 22px;
        padding: 8px 16px;
    }

    .liter__tooltip {
        min-width: 400px;
    }

    .liter__tooltip ul {
        gap: 24px;
    }

    .liter__tooltip li span {
        font-size: 15px;
    }

    .liter__tooltip li p {
        font-size: 18px;
    }

    .location-3 {
        right: 11.5%;
    }

    .map .title p {
        max-width: 333px;
    }

    .map-list {
        -ms-grid-columns: 1fr 16px 1fr;
        gap: 16px;
        grid-template-columns: repeat(2, 1fr);
    }

    .map-block {
        height: 400px;
    }

    .gallery-block__tabs-wrap {
        max-width: 76%;
    }

    .gallery-block__tab {
        font-size: 17px;
    }

    .gallery-block__text {
        font-size: 17px;
        left: 32px;
        max-width: 50%;
    }

    .gallery-block__controls {
        left: auto;
        right: 32px;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .popup__title span:not(.h2) {
        font-size: 18px;
    }

    body {
        font-size: 17px;
    }

    .container {
        padding: 0 48px;
    }

    .mt-113 {
        margin-top: 97px;
    }

    .mb-48 {
        margin-bottom: 32px;
    }

    .h1,
    .h2 {
        font-size: 36px;
    }

    .h3,
    .nav-block .swiper-pagination {
        font-size: 22px;
    }

    .main {
        gap: 130px;
    }

    .btn {
        font-size: 17px;
        height: 56px;
        padding: 16px 38px;
    }
}

@media (max-width: 1439.5px) {
    .char-content h3 {
        font-size: 17px;
    }

    .char-content ul {
        max-height: -webkit-max-content;
        max-height: -moz-max-content;
        max-height: max-content;
    }

    .tabs__caption {
        font-size: 17px;
        height: 52px;
    }

    .tabs__content {
        height: calc(100vh - 97px);
    }
}

@media screen and (max-width: 1023.5px) {
    .header__btns {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .logo {
        max-width: 168px;
    }

    .sidebar__img {
        display: none;
    }

    .footer-info {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer-info li {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 30%;
        flex: 1 1 30%;
    }

    .footer-info li:last-child {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .footer-menu {
        padding: 24px 0;
    }

    .footer-menu ul:first-child {
        gap: 16px 32px;
    }

    .footer-desc {
        margin-top: 32px;
    }

    .footer-dev {
        padding: 24px 0 48px;
    }

    .main-screen__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .main-screen__slider-small {
        background-color: transparent;
        gap: 22px;
        padding: 0;
    }

    .main-screen__slider-small .nav-block {
        display: none;
    }

    .big-slide__label {
        max-width: 320px;
    }

    .big-slide__label-text {
        padding: 16px 20px;
    }

    .big-slide p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        max-width: 450px;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .small-slide__inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: var(--light-grey);
        border-radius: 15px;
        gap: 0;
        overflow: hidden;
    }

    .small-slide__inner h3 {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        padding: 0 32px;
    }

    .small-slide__inner img {
        aspect-ratio: 300/150;
        height: 150px;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-box-flex: 0;
        border-radius: 15px;
        -ms-flex: 0 0 300px;
        flex: 0 0 300px;
    }

    .what-new__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 32px;
        padding-bottom: 50px;
        position: relative;
    }

    .what-new__nav {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        position: static;
    }

    .what-new__nav .nav-arrows {
        display: none;
    }

    .what-new__nav .swiper-pagination {
        position: absolute;
    }

    .advantages {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .freedom__inner {
        padding-bottom: 40px;
    }

    .freedom__inner .swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .freedom__inner .freedom-slide {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        width: 324px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 324px;
        flex: 0 0 324px;
    }

    .callback-sect__inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .callback-sect__form {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        padding: 32px;
    }

    .callback-sect__img img {
        max-height: 300px;
    }

    .callback-form__title p {
        margin-top: 24px;
    }

    .about__desc .btn,
    .about__desc ul {
        max-width: 100%;
    }

    .tabs .nav-block {
        backdrop-filter: none;
        background: transparent;
        bottom: 24px;
        height: auto;
        left: auto;
        padding: 0;
        right: 24px;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .tabs .nav-block .nav-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .tabs .nav-block .swiper-pagination {
        display: none;
    }

    .tabs__body {
        -webkit-transform: translateY(-90px);
        -ms-transform: translateY(-90px);
        transform: translateY(-90px);
    }

    .tabs__content {
        top: 95px;
    }

    .char-content li {
        gap: 24px;
    }

    .char-content li p {
        min-width: auto;
    }

    .char-content li div.row {
        gap: 24px;
    }

    .char-content li div.row span {
        width: auto;
    }

    [data-tab="tab-5"] .char-content,
    [data-tab="tab-6"] .char-content {
        max-width: 100%;
        width: auto;
    }

    .genplan__img>img {
        -o-object-position: 60%;
        object-position: 60%;
    }

    .svg-genplan {
        display: none;
    }

    .liter__tooltip {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .liter-1 {
        bottom: 58%;
        left: 16%;
    }

    .liter-3 .liter__tooltip {
        left: auto;
        right: 0;
        transform: translateX(0);
    }

    .liter-1 .liter__tooltip {
        left: 0;
        transform: translateX(0);
    }

    .location-1 {
        bottom: 21%;
        left: 8%;
    }

    .location-2 {
        left: 38%;
        top: 28%;
    }

    .location-3 {
        right: 6.5%;
    }

    .gallery-block__tabs-wrap {
        left: 24px;
        max-width: 70%;
        top: 24px;
    }

    .gallery-block__tabs-arrow {
        display: none;
    }

    .gallery-block__mode {
        right: 24px;
        top: 28px;
    }

    .gallery-block__arrow {
        height: 42px;
        width: 42px;
    }

    .nav-block .swiper-pagination {
        padding-left: 16px;
    }

    .nav-block .nav-icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .nav-arrows {
        display: none;
    }

    .custom-pagination {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 1023.5px) {
    .char-content {
        bottom: 24px;
        left: 24px;
        min-width: 320px;
        padding: 20px;
        right: 24px;
    }

    .char-content__inner {
        max-height: 380px;
        overflow: auto;
    }

    .char-content ul {
        max-height: -webkit-fit-content;
        max-height: -moz-fit-content;
        max-height: fit-content;
    }

    .char-content li {
        gap: 24px;
        -ms-grid-columns: auto 24px 1fr;
        grid-template-columns: auto 1fr;
    }

    .char-content li a,
    .char-content li div,
    .char-content li span {
        width: 100%;
    }

    .tabs__controls {
        padding: 0 24px;
    }
}

@media screen and (max-width: 767.5px) {
    .header {
        padding: 16px 0;
    }

    .header__btns {
        gap: 10px;
    }

    .header__btns .btn:first-child {
        display: none;
    }

    .sidebar {
        padding: 24px;
    }

    .sidebar ul {
        gap: 16px;
    }

    .sidebar ul li {
        font-size: 28px;
    }

    .footer-info {
        gap: 16px;
    }

    .footer-info li a,
    .footer-info li p {
        font-size: 22px;
    }

    .footer-menu ul:first-child li {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .social {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .footer-dev {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .big-slider .nav-block {
        bottom: 24px;
        left: 24px;
        right: auto;
    }

    .big-slide {
        min-height: 600px;
    }

    .big-slide__label {
        left: 36px;
        max-width: 288px;
        right: 24px;
        top: 24px;
    }

    .big-slide__label:before {
        left: -12px;
    }

    .big-slide__label-text {
        padding: 16px;
    }

    .big-slide__desc {
        bottom: 106px;
        gap: 16px;
        left: 24px;
        right: 24px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .big-slide img {
        -o-object-position: 0;
        object-position: 0;
    }

    .small-slide {
        height: 100px;
    }

    .small-slide__inner h3 {
        padding: 0 24px;
    }

    .small-slide__inner h3 span {
        display: none;
    }

    .small-slide__inner img {
        aspect-ratio: 100/100;
        height: 100px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
        flex: 0 0 100px;
    }

    .what-new-slider {
        overflow: visible;
    }

    .what-new-slider .swiper-slide {
        width: 130px;
    }

    .what-new-slider .swiper-slide>div img {
        height: 118px;
    }

    .advantages {
        -ms-grid-columns: 1fr;
        gap: 16px;
        grid-template-columns: 1fr;
        margin-top: 4px;
    }

    .advantage__icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48px;
        flex: 0 0 48px;
        height: 48px;
    }

    .advantage__icon img {
        height: 24px;
        width: 24px;
    }

    .advantage__desc span {
        font-size: 20px;
    }

    .freedom .flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .freedom .title {
        gap: 16px;
    }

    .freedom .title p {
        max-width: 100%;
    }

    .freedom__inner .freedom-slide {
        margin-right: 16px;
    }

    .callback-form__title h3 {
        font-size: 22px;
    }

    .callback-form form p {
        font-size: 15px;
    }

    .about__desc ul {
        -ms-grid-columns: 1fr 24px 1fr;
        gap: 24px;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 24px;
    }

    .about__desc .btn {
        margin-top: 24px;
    }

    .about__img {
        height: 250px;
    }

    .tabs__content {
        max-height: 600px;
    }

    .char-content li,
    .char-content li div.row {
        gap: 8px;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    [data-tab="tab-5"] .char-content li p {
        width: 100%;
    }

    .genplan__inner>.btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 24px;
    }

    .genplan__desc .btn {
        display: none;
    }

    .genplan__img {
        border-radius: 15px;
        height: 500px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .genplan__img>img {
        height: 500px;
        -o-object-position: 90%;
        object-position: 90%;
    }

    .liter>span {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .liter-1 {
        bottom: 50%;
        left: 17%;
    }

    .liter-1 .liter__tooltip {
        left: -37px;
        top: -185px;
    }

    .liter-3 {
        top: 29%;
        right: -56%;
    }

    .liter-2 {
        left: 70%;
    }

    .liter-2 .liter__tooltip {
        left: 26px;
        top: -120px;
    }

    .liter-3 .liter__tooltip {
        top: -125px;
        left: auto;
        right: -75px;
    }

    .liter__tooltip {
        min-width: 300px;
        top: -200px;
    }

    .liter__tooltip ul {
        gap: 16px;
        -ms-grid-columns: 1fr 16px 1fr;
        grid-template-columns: repeat(2, 1fr);
    }

    .location-2 {
        top: 24%;
    }

    .location-3 {
        right: -27.5%;
    }

    .icon-swap {
        background-color: var(--white);
        border-radius: 50%;
        bottom: 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 42px;
        position: absolute;
        right: 16px;
        width: 42px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .map .title {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .map .title p {
        max-width: 100%;
    }

    .map-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .map-item {
        padding: 16px;
    }

    .map-item__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 64px;
        flex: 0 0 64px;
    }

    .map-item__img img {
        height: 64px;
        width: 64px;
    }

    .map-block {
        height: 500px;
    }

    .gallery-block__tabs-wrap {
        display: none;
    }

    .gallery-block__mode {
        right: 16px;
        top: 18px;
    }

    .gallery-block__mode-btn {
        height: 48px;
        width: 48px;
    }

    .gallery-block__mode-btn svg {
        height: 20px;
        width: 20px;
    }

    .gallery-block__text {
        bottom: 90px;
        left: 16px;
        max-width: none;
        padding: 20px;
        right: 16px;
    }

    .gallery-block__controls {
        bottom: 24px;
        bottom: 16px;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .gallery-block__select {
        display: block;
        left: 16px;
        max-width: 60%;
        position: absolute;
        right: 16px;
        top: 16px;
        width: 100%;
        z-index: 5;
    }

    .popup__content {
        max-width: 368px;
        padding: 35px;
    }

    .popup__title {
        margin-bottom: 28px;
    }

    .popup__title span:not(.h2) {
        font-size: 16px;
    }

    .gallery-arrow__prev {
        left: 20px;
    }

    .gallery-arrow__next {
        right: 20px;
    }

    .container {
        padding: 0 24px;
    }

    .mt-113 {
        margin-top: 85px;
    }

    .mb-48 {
        margin-bottom: 24px;
    }

    .h1,
    .h2 {
        font-size: 28px;
    }

    .h3 {
        font-size: 20px;
    }

    .freedom-slider .custom-pagination .swiper-pagination-bullet-active {
        -webkit-box-flex: 1;
        -ms-flex: 1 1;
        flex: 1 1;
        width: auto;
    }
}

@media (max-width: 767px) {
    .char-content {
        min-width: auto;
    }

    .tabs__arrow,
    .tabs__head {
        display: none;
    }

    .tabs__select {
        display: block;
        font-size: 14px;
    }

    .tabs__head-wrap {
        background-color: none;
        padding: 0;
    }

    .tabs {
        gap: 16px;
    }

    .char-content {
        max-width: 100%;
        width: auto;
    }

    .char-content li * {
        font-size: 14px;
    }

    .char-content li * br {
        display: none;
    }

    .gallery-block__panel {
        min-height: 520px;
    }
}