* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Proxima Nova, sans-serif;
    color: #222222;
    font-style: normal;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

h1 {
    font-family: Inter Regular, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 42px;
}

h2 {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 8px;
}

h3 {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    color: #FFFFFF;
}

h4.symbol-title {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
}

p, li {
    font-size: 16px;
    line-height: 21px;
}

div[id] {
    scroll-margin-top: 70px;
}

.title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 8px;
}

.back-to {
    display: inline-block;
    height: 12px;
    width: 12px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #000 #000 transparent transparent;
    background: 0 0;
    transform: rotate(225deg);
    /*margin-top: 20px;*/
}

.main {
    margin-top: 80px;
}

section > div {
    max-width: 1200px;
    margin: 0 auto;
}

.slick-slide {
    margin: 0 8px;
}

.slick-next,
.slick-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid #DADADA;
    z-index: 9;
}

.slick-next {
    background: #FFFFFF url("/img/about/slider/arrow-next.svg") no-repeat center;
}

.slick-prev {
    background: #FFFFFF url("/img/about/slider/arrow-prev.svg") no-repeat center;
}

.slick-prev.slick-disabled {
    border: 2px solid #EFEFEF;
    background: #EFEFEF url("/img/about/slider/arrow-prev-gray.svg") no-repeat center;
}

.slick-next.slick-disabled {
    border: 2px solid #EFEFEF;
    background: #EFEFEF url("/img/about/slider/arrow-next-gray.svg") no-repeat center;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-next:before,
.slick-prev:before {
    content: '';
}

.slick-next:hover,
.slick-next:focus {
    background: #FFFFFF url("/img/about/slider/arrow-next.svg") no-repeat center;
}

.slick-prev:hover,
.slick-prev:focus {
    background: #FFFFFF url("/img/about/slider/arrow-prev.svg") no-repeat center;
}

.main-content-courtyards {
    margin-bottom: 24px;
    /*scroll-margin-top: 70px;*/
}

.video-content {
    width: 100%;
    height: 520px;
    background-color: #F8F8F8;
    border-radius: 16px;
}

.news {
    margin: 48px 0;
}

.news .slick-slide {
    margin: 0 12px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.all-news-link {
    font-size: 16px;
    line-height: 19px;
    color: #00CD2E;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 6px;
}

.news-slide, .news-slide img {
    border-radius: 16px;
}

.news .slick-next, .news .slick-prev {
    top: 180px;
}

.news-description {
    margin-top: 21px;
}

.news-slide-date {
    font-family: Proxima Nova Light, sans-serif;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 7px;
}

.news-slide-title {
    font-size: 22px;
    line-height: 24px;
    max-width: 371px;
}

.news-actions_mobile {
    display: none;
    width: 100%;
    /*padding: 15px 0;*/
    margin-top: 24px;
}

.btn {
    width: 258px;
    border: 1px solid #00CD2E;
    border-radius: 8px;
    padding: 14px 24px;

    font-style: normal;

    font-size: 16px;
    line-height: 19px;
    text-align: center;

    color: #222222;
    font-weight: 400;
}

/*ВЫБРАТЬ КВАРТИРУ*/

.choose-apartment-title {
    margin-top: 48px;
    margin-bottom: 20px;
}

.choose-apartment-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;

    background-color: #F8F8F8;
    border-radius: 16px;
    padding: 32px;
}

.choose-apartment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 24px 24px 29px 24px;
    background-color: #FFFFFF;
    border-radius: 8px;
    width: 363px;

}

.choose-apartment-option span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #222222;
}

@media screen and (max-width: 768px) {
    .choose-apartment-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0;
        border: 1px solid #EEEEEE;
        border-radius: 16px;
    }

    .choose-apartment-option {
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
    }

    .choose-apartment-option:first-child {
        border-radius: 16px 16px 0 0;
    }

    .choose-apartment-option:last-child {
        border-radius: 0 0 16px 16px;
    }

    .choose-apartment-option:not(:last-child) {
        border-bottom: 1px solid #EEEEEE;
    }
}

/*АКЦИИ*/

.promotions {
    margin: 24px 0;
}

.promotions-items {
    display: flex;
    overflow-x: scroll;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.promotions-item {
    position: relative;
    border-radius: 8px;
}

.promotions-item img {
    border-radius: 8px;
}

.promotion-item-title {
    position: absolute;
    top: 16px;
    left: 16px;

    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.tabbar-container {
    display: flex;
    overflow-x: auto;
}

.tabbar-container::-webkit-scrollbar {
    display: none;
}

.tabbar {
    box-sizing: border-box;
    border: 1px solid #DADADA;
    border-radius: 12px;
    display: inline-block;
    padding: 4px;
    background: #FFFFFF;
    flex-shrink: 0;
}

.tabbar-item {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #222222;
    padding: 12px 21px;
    cursor: pointer;
    display: inline-block;
}

.tabbar-item.tabbar-active {
    font-family: Proxima Nova, sans-serif;
    background: #D8FEE0;
    border-radius: 10px;
}

.main-tabbar {
    margin-bottom: 24px;
}

.main-slider {
    margin: 24px 0;
}

.slider {
    max-height: 560px;
    overflow-y: hidden;
}

.slider.slick-initialized {
    overflow-y: visible;
}

.slider {
    margin-bottom: 24px;
}

.slider img {
    border-radius: 8px;
    max-height: 560px;
}

section p {
    margin-bottom: 24px;
}

section p span {
    font-family: Proxima Nova, sans-serif;
}

.main-content {
    display: none;
    font-size: 16px;
}

.main-content-active {
    display: block;
}

.main-image {
    text-align: center;
    margin-bottom: 24px;
}

.pump-track-list {
    margin-bottom: 24px;
}
.pump-track-list li {
    list-style-type: none;
}

.symbols-slider .slick-slide {
    margin: 0 140px;
}

.symbols-slider {
    margin-bottom: 24px;
}

.main-content-symbols {
    display: none;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    bottom: 30px;
}

.slick-dots li {
    height: 6px;
    margin: 0;
}

.slick-dots li button {
    border-radius: 50%;
    background: #DADADA;
    padding: 0;
    width: 6px;
    height: 6px;
}

.slick-dots li.slick-active {
    margin-right: 16px;
}

.slick-dots li.slick-active button {
    width: 24px;
    height: 6px;
    background: #00CD2E;
    border-radius: 5px;
    margin-right: 10px;
    align-self: center;
}

.slick-dots li button::before {
    content: none;
}


.slide-effect {
    position: relative;
}

.slide-effect:after {
    position: absolute;
    content:"";
    border-radius: 8px;
    height:50%;
    width:100%;
    top:0;
    left:0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 78%, rgba(0, 0, 0, 0.6) 100%);
}

.holidays-slider {
    margin-top: 24px;
    margin-bottom: 48px;
}

.main-slide-info {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 4px;

    position: absolute;
    left: 16px;
    top: 16px;

    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    border-radius: 8px;
}

.main-slide-info-title {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    color: #FFFFFF;
}


.card-info-extra {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.other-links {
    display: flex;
    gap: 25px;
    margin-top: 32px;
    margin-bottom: 48px;
}

.other-link {
    border-radius: 8px;
    position: relative;
}

.other-link img {
    border-radius: 8px;

}

.other-link-title {
    position: absolute;
    left: 16px;
    bottom: 16px;
}

.other-link {
    width: 100%;
}

.other-link img {
    width: 100%;
    height: auto;
}

.schools, .kindergartens {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.kindergartens-mobile {
    display: none;
}

.kindergartens-mobile .kindergarten-quarter {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.kindergartens-mobile-item {
    max-height: 255px;
    overflow-x: scroll;
}

.kindergartens-mobile .kindergarten-quarter .kindergarten {
    min-width: 300px;
    max-width: 330px;
    min-height: 230px;
    max-height: 235px;
}

.kindergartens-mobile .quarter-title {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 8px;
}

.kindergartens-mobile .tags {
    top: 8px;
    left: 8px;
}

.school,
.kindergarten,
.new-school,
.addition {
    position: relative;
}

.school img,
.kindergarten img,
.new-school img,
.addition img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.school,
.kindergarten {
    height: 384px;
}

.ei-img-darken {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 25%);
    border-radius: 8px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;

    position: absolute;
    top: 16px;
    left: 16px;
}

.tag {
    padding: 4px 8px;
    background: rgba(250, 250, 250, 0.8);
    border-radius: 8px;

    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #222222;
}

.edu-item-info {
    position: absolute;
    left: 17px;
    bottom: 16px;
    max-width: calc(100% - 80px);
}

.school .edu-item-number,
.kindergarten .edu-item-number {
    max-width: 260px;
}

.edu-item-address {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.next-title {
    margin-bottom: 16px;
}

.next-info {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /*flex-wrap: wrap;*/
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.next-info-item-text {
    grid-column: 1 / 4;
}

.next-info-items {
    display: flex;
    gap: 8px;
}

.next-info-item {
    background: #F8F8F8;
    border-radius: 8px;
}

.school-next {
    padding: 20px 0px 20px 24px;
}

.kindergarten-next {
    padding: 20px 0px 20px 24px;
}

.next-info-item-text {
    padding: 30px 56px;
    box-sizing: border-box;
}

.next-info-item-text p {
    max-width: 619px;
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    /*font-weight: 600;*/
    font-size: 16px;
    line-height: 19px;
    color: #222222;
    margin-bottom: 0;
}


.next-info-item-number {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
}

.next-info-item-extra {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    color: #7A827C;
}


.new-schools, .additions {
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.kindergarten-wrap .new-schools {
    flex-wrap: wrap;
    justify-content: left;
    gap: 24px;
}

.kindergarten-wrap .new-schools .new-school {
    aspect-ratio: 1;
    width: 384px;
    height: 384px;
}

.main-content .fd-button-short {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid #dadada;
    background: rgb(255 255 255 / .6);
    transition: all .1s ease-in-out;
    z-index: 1;
    /*margin-bottom: auto;*/
}
.main-content a:hover .fd-button-short {
    border: 1px solid #00cd2e;
}

.main-content .arrow-forward:before {
    content: '';
    display: inline-block;
    height: 8px;
    width: 8px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #000 #000 transparent transparent;
    background: 0 0;
    transform: rotate(45deg);
    margin-left: -4px;
    transition: all .1s ease-in-out;
}

.tag-wrap-fw {
    width: 100%;
}
.tag-wrap-fw .tag {
    display: inline-block;
}
