body {
    background: #29282E;
}

main {
    margin-top: 0px;
    background-color: #F3F3F3;
}

.header-dark #header-main {
    background-color: transparent;
}

.header-dark #header-top {
    background-color: transparent;
}

.header-dark #header-top * {
    color: #dfdfdf;
}

.mobile__dots {
    display: none;
}

.mobile__progress-bar {
    display: none;
}

.home-hello-section {
    background: #29282E;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.home-hello-section__background {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.background__slider__item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    object-fit: cover;
    animation: background__slider__default__animation 1s;
}

@keyframes background__slider__default__animation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.background__slider__item__active {
    opacity: 1;
    animation: background__slider__animation 1s;
}

@keyframes background__slider__animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.home-hello-section section {
    flex-direction: column;
    /* border: 1px solid red; */
    margin-top: 121px;
    height: calc(100vh - 121px);
    max-height: 1000px;
    z-index: 1;
}

.home-hello-section__two-fourth__container {
    height: calc(100%/4*2);
    width: 100%;
    display: flex;
    /* border-bottom: 1px solid red; */
}

.home-hello-section__one-fourth__container {
    height: calc(100%/4);
    width: 100%;
    /* border-bottom: 1px solid red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-hello-section__offers-slider__item {
    cursor: pointer;
    transition: .2s;
    z-index: 1;
    position: relative;
    width: calc(100%/4);
    height: 70%;
    background-color: #34333B;
}

.home-hello-section__offers-slider__item:hover {
    background-color: #38373f;
    /* z-index: 2; */
    transform: scale(1.01);
}

.home-hello-section__offers-slider__item__vertical-line {
    top: calc(20%/2);
    position: absolute;
    height: 80%;
    width: 2px;
    opacity: .25;
    background-color: #68686F;
    left: 0;
}

.home-hello-section__offers-slider__item:first-child .home-hello-section__offers-slider__item__vertical-line {
    display: none;
}

.offers-slider__item__active {
    z-index: 2;
    background-color: #34333B;
    animation: slider__item__active__animation .2s;
    transform: scale(1.07);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.offers-slider__item__active:hover {
    transform: scale(1.07);
}

.offers-slider__item__active .home-hello-section__offers-slider__item__vertical-line {
    display: none;
}

@keyframes slider__item__active__animation {
    from {
        transform: scale(1);
        box-shadow: none;
    }
    to {
        transform: scale(1.07);
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}

.offers-slider__item__active__progress {
    display: none;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    /* background-color: #bebebe; */
}

.offers-slider__item__active__progress-bar {
    width: 0%;
    height: 2px;
    background-color: #22BCA2;
}

.offers-slider__item__active .offers-slider__item__active__progress {
    display: block;
}

.home-hello-section__main__slider {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.home-hello-section__offers-slider__item__content {
    opacity: 0.5;
    height: 100%;
    padding: 0 35px;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.home-hello-section__offers-slider__item__content h3 {
    color: #ffffff;
    font-family: 'Circe', sans-serif;
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 15px;
}

.home-hello-section__offers-slider__item__content span {
    width: 80%;
    color: #8C8C8C;
    font-family: 'Circe', sans-serif;
    font-weight: 300;
    font-size: 15px;
}

.offers-slider__item__active .home-hello-section__offers-slider__item__content {
    opacity: 1;
}

#content__slider {
    z-index: 9;
    opacity: 1;
    animation: offers-slider__loading__animation 3s;
}

#background__slider {
    opacity: 1;
    animation: offers-slider__loading__animation 2s;
}


/* SLIDER H1 */

#offers-slider {
    opacity: 1;
    animation: offers-slider__loading__animation 2s;
}

@keyframes offers-slider__loading__animation {
    0% {
        opacity: 0
    }
    50% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.home-hello-section__main__content__slider {
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 50%;
    opacity: 0;
    transform: scale(1);
    animation: defeault_content_slide_state 2s
}

.content__slider__active {
    opacity: 1;
    left: 0;
    transform: scale(1);
    animation: content_slide_animation .5s
}

@keyframes content_slide_animation {
    from {
        transform: scale(1);
        left: 50%;
        opacity: 0;
    }
    to {
        transform: scale(1);
        left: 0;
        opacity: 1;
    }
}

@keyframes defeault_content_slide_state {
    0% {
        transform: scale(1);
        left: 0;
        opacity: 1;
    }
    25% {
        transform: scale(1);
        left: -25%;
        opacity: 0;
    }
    50% {
        transform: scale(1);
        left: -50%;
        opacity: 0;
    }
    100% {
        transform: scale(1);
        left: 50%;
        opacity: 0;
    }
}

.home-hello-section__main__content__slider__action-button {
    margin-top: 20px;
    cursor: pointer;
    display: inline-block;
    padding: 5px 0;
    /* background-color: #22BCA2; */
}

.home-hello-section__main__content__slider__action-button span {
    color: #fff;
    font-family: 'Circe', sans-serif;
    font-size: 18px;
    display: inline-block;
    white-space: nowrap;
}

.home-hello-section__main__content__slider__action-button img {
    transition: .2s;
    transform: rotateZ(-90deg);
    width: 16px;
    margin-left: 7px;
    margin-top: 5px;
    display: inline-block;
}

.home-hello-section__main__content__slider__action-button:hover img {
    margin-left: 12px;
}

.home-hello-section__main__content__slider h5 {
    font-family: 'Circe', sans-serif;
    font-size: 20px;
    display: inline-block;
    white-space: nowrap;
    color: #22BCA2;
}

.home-hello-section__main__content__slider h1 {
    margin-top: 25px;
    font-family: 'Futura PT Book', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
    /* display: inline-block;
    white-space: nowrap; */
}

.home-hello-section__main__content__slider p {
    margin-top: 10px;
    width: 100%;
    font-family: 'Circe', sans-serif;
    font-size: 18px;
    color: #8c8c8c;
}

#foreground-slider {
    animation: loading__animation 2s
}

@keyframes loading__animation {
    0% {
        opacity: 0
    }
    50% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.home-hello-section__main__foreground-slider {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.home-hello-section__main__foreground-slider__item {
    z-index: 0;
    opacity: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: absolute;
    transform: scale(0.8);
    animation: default_foreground_state_animation .5s;
}

.foreground-slider__item__active {
    opacity: 1;
    transform: scale(1);
    animation: foreground_show_animation .7s;
}

@keyframes default_foreground_state_animation {
    from {
        transform: scale(1);
        opacity: 1
    }
    to {
        transform: scale(0.8);
        opacity: 0
    }
}

@keyframes foreground_show_animation {
    from {
        transform: scale(0.8);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

@media (max-width: 1240px) {
    .home-hello-section__main__content__slider h5 {
        font-size: 18px;
    }

    .home-hello-section__main__content__slider h1 {
        margin-top: 25px;
        font-size: 34px;
    }

    .home-hello-section__main__content__slider p {
        font-size: 16px;
    }

    .home-hello-section__main__content__slider__action-button span {
        font-size: 16px;
    }

    .home-hello-section__offers-slider__item {
        width: calc(100%/4);
        height: 70%;
    }

    .home-hello-section__offers-slider__item__content {
        opacity: 0.5;
        height: 100%;
        padding: 0 20px;
    }

    .home-hello-section__offers-slider__item__content h3 {
        font-size: 1.5vw;
        margin-bottom: 15px;
    }

    .home-hello-section__offers-slider__item__content span {
        width: 90%;
        font-size: 1.3vw;
    }
}

@media (max-width: 980px) {
    .home-hello-section__main__content__slider {
        overflow: hidden;
        width: 100%;
        margin-top: -15%;
        height: 85%;
    }

    .foreground-slider__item__active {
        transform: scale(1.2) translateY(-20%);
        animation: foreground_show_animation .7s;
    }

    @keyframes default_foreground_state_animation {
        from {
            transform: scale(1.2) translateY(-20%);
            opacity: 1
        }
        to {
            transform: scale(0.8);
            opacity: 0
        }
    }

    @keyframes foreground_show_animation {
        from {
            transform: scale(0.8);
            opacity: 0
        }
        to {
            transform: scale(1.2) translateY(-20%);
            opacity: 1
        }
    }

    .home-hello-section__main__content__slider h5 {
        font-size: 16px;
    }

    .home-hello-section__main__content__slider h1 {
        margin-top: 25px;
        font-size: 30px;
    }

    .home-hello-section__main__content__slider p {
        font-size: 15px;
    }

    .home-hello-section__main__content__slider__action-button span {
        font-size: 15px;
    }

    .home-hello-section__offers-slider__item {
        width: calc(100%/4);
        height: 60%;
    }

    .home-hello-section__offers-slider__item__content {
        opacity: 0.5;
        height: 100%;
        padding: 0 15px;
    }

    .home-hello-section__offers-slider__item__content h3 {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 16px;
    }

    .home-hello-section__offers-slider__item__content span {
        width: 90%;
        font-size: 12px;
    }
}

@media (max-width: 730px) {

    .mobile__dots {
        position: absolute;
        bottom: 5vh;
        display: flex;
        width: 100vw;
        height: 30px;
        /* border: 1px solid red; */
        justify-content: center;
        align-items: center;
    }

    .mobile__dots div {
        transition: .2s;
        margin: 4px;
        width: 7px;
        height: 7px;
        border-radius: 5px;
        background-color: #B7B7B7;
        /* box-shadow: rgba(0, 0, 0, 0.35) 0px 3px 6px; */
    }

    .mobile__dots .mobile__dots__active {
        transform: scale(1.3);
        background-color: #FFFFFF;
    }

    .mobile__progress-bar {
        position: absolute;
        bottom: 1.5vh;
        display: flex;
        width: 100vw;
        height: 5px;
        /* border: 1px solid red; */
        justify-content: space-between;
    }

    .mobile__progress-bar div {
        width: 50%;
        height: 5px;
        background-color: #22BCA2;
    }

    .home-hello-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        width: 100vw;
        height: unset;
        overflow: visible;
    }

    .home-hello-section section {
        width: 100vw;
        flex-direction: column;
        /* border: 1px solid red; */
        overflow: visible;
        margin-top: 60px;
        height: unset;
        max-height: 150vh;
        z-index: 1;
    }

    .home-hello-section__one-fourth__container {
        width: 100%;
        height: unset;
        background-color: #34333B;
    }

    .home-hello-section__one-fourth__container:last-child {
        display: none;
    }

    .foreground-slider__item__active {
        transform: scale(1.2) translateY(-20%);
        animation: foreground_show_animation .7s;
    }

    @keyframes default_foreground_state_animation {
        from {
            transform: scale(1.2) translateY(-20%);
            opacity: 1
        }
        to {
            transform: scale(0.8);
            opacity: 0
        }
    }

    @keyframes foreground_show_animation {
        from {
            transform: scale(0.8);
            opacity: 0
        }
        to {
            transform: scale(1.2) translateY(-20%);
            opacity: 1
        }
    }

    .home-hello-section__main__content__slider {
        overflow: hidden;
        flex-direction: column;
        justify-content: flex-start;
        width: 94vw;
        padding: 0 3vw;
        margin-top: -10vh;
        position: absolute;
        top: 20px;
        height: 90vh;
    }

    .home-hello-section__main__content__slider h5 {
        font-size: 16px;
        white-space: unset;
        width: 60vw !important;
    }

    .home-hello-section__main__content__slider h1 {
        margin-top: 25px;
        font-size: 30px;
    }

    .home-hello-section__main__content__slider p {
        font-size: 15px;
    }

    .home-hello-section__main__content__slider__action-button span {
        font-size: 15px;
    }

    .home-hello-section__main__content__slider__action-button {
        width: 80vw;
    }

    .home-hello-section__offers-slider__item {
        width: calc(100%/4);
        height: 60%;
    }

    .home-hello-section__offers-slider__item__content {
        opacity: 0.5;
        height: 100%;
        padding: 0 15px;
    }

    .home-hello-section__offers-slider__item__content h3 {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 16px;
    }

    .home-hello-section__offers-slider__item__content span {
        width: 90%;
        font-size: 12px;
    }

    .background__slider__item {
        width: unset;
        height: 60%;
    }

    .home-hello-section__two-fourth__container {
        height: 90vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        /* border-bottom: 1px solid red; */
    }

    .home-hello-section__main__slider {
        height: 50%;
        width: 94vw;
        margin-top: 10vh;
    }

    .home-hello-section__main__foreground-slider {
        /* border: 1px solid red; */
        width: 100vw;
        top: 0;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        overflow: visible;
    }

    .home-hello-section__main__foreground-slider__item {
        overflow-x: hidden !important;
        width: 100vw;
        top: -10% !important;
        transform: scale(1.1);
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: absolute;
        overflow: visible;
    }

    @keyframes default_foreground_state_animation {
        from {
            transform: scale(1.1);
            opacity: 1
        }
        to {
            transform: scale(0.8);
            opacity: 0
        }
    }

    @keyframes foreground_show_animation {
        from {
            transform: scale(0.8);
            opacity: 0
        }
        to {
            transform: scale(1.1);
            opacity: 1
        }
    }

    .home-hello-section__background {
        z-index: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }

    .background__slider__item {
        position: absolute;
        top: unset;
        bottom: 0;
        left: 0;
        right: 0;
        width: unset;
        height: 80%;
    }

    .home-hello-section__background__backdrop {
        display: block;
        z-index: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: rgb(41,40,46);
        background: linear-gradient(180deg, rgba(20,20,20,1) 0%, rgba(41,40,46,1) 30%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0) 100%);
    }

}

section {
    margin-top: 30px;
    flex-direction: column;
}

.offers_n_sales {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.offers_n_sales__item {
    padding: 30px;
    width: calc(100%/3 - 15px);
    height: 330px;
    background-color: #fff;
}

.offers_n_sales__item h3 {
    margin-bottom: 10px;
    font-family: 'Circe', sans-serif;
    color: #29282E;
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
}

.offfers_n_sales__list a {
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E1E1E1;
}

.offfers_n_sales__list a:last-child {
    border-bottom: none;
}

.offfers_n_sales__list a span {
    transition: .2s;
    white-space: nowrap;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #22BCA2;
    font-family: 'Circe', sans-serif;
    font-size: 16px;
}

.offfers_n_sales__list a img {
    transition: .2s;
    cursor: pointer;
    opacity: 0.6;
    width: 12px;
}

.offfers_n_sales__list a:hover span {
    color: #1a8976;
}

.offfers_n_sales__list a:hover img {
    opacity: 0.9;
}

/* adfafa */

.flats-on-sales__list a {
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E1E1E1;
}

.flats-on-sales__list a:last-child {
    border-bottom: none;
}

.flats-on-sales__list a span:nth-child(1) {
    width: calc(20%);
}

.flats-on-sales__list a span:nth-child(2) {
    color: #8C8C8C;
}

.flats-on-sales__list a span:nth-child(3) {
    color: #8C8C8C;
}

.flats-on-sales__list a span {
    transition: .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #22BCA2;
    font-family: 'Circe', sans-serif;
    font-size: 16px;
}

.flats-on-sales__list a span:last-child {
    text-align: right;
}

.flats-on-sales__list a:hover span {
    color: #1a8976;
}

.offer-mortgage img {
    margin-bottom: 30px;
    width: 50px;
    height: 50px;
}

.offer-mortgage p {
    font-family: 'Circe', sans-serif;
    font-size: 17px;
    color: #8C8C8C;
    margin-bottom: 15px;
}

.offer-mortgag__more__button {
    transition: .2s all;
    color: #29282E;
    display: flex;
    align-items: center;
    font-family: 'Circe', sans-serif;
    font-size: 16px;
}

.offer-mortgag__more__button img {
    transition: .2s all;
    margin-bottom: unset;
    width: 10px;
    height: 10px;
    border-radius: unset;
    box-shadow: none;
    margin-left: 5px;
    margin-top: -2px;
}

.offer-mortgag__more__button:hover {
    opacity: .7;
}

.offer-mortgag__more__button:hover img {
    margin-left: 8px;
}

.slider-controls {
    width: 100px;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

@media (max-width: 500px) {
    .slider-controls {
        width: 80px;
    }
}

.slider-controls img {
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    width: 15px;
}

.slider-controls img:hover{
    opacity: 0.6
}

.complexes-slider {
    margin-top: 10px;
    width: 100%;
}

.complexes-list {
    width: 100%;
    display: flex;
    /* justify-content: space-between; */
}

.complexes-list__item {
    transition: .2s;
    cursor: pointer;
    width: calc(100%/3 - 10px);
    height: 545px !important;
    background-color: #fff;
}

.complexes-list__item .complexes-list__item-a{
    height: 100%;
}

.complexes-list__item:hover {
    box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
}

.items-slider-wrapper {
    flex-direction: column !important;
}

.complexes-list__item__image-container {
    overflow: hidden;
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.complexes-list__item__image-container__img {
    transition: .2s;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    background-color: #dfdfdf;
}

.complexes-list__item__image-container__content {
    position: absolute;
    bottom: 0;
    z-index: 3;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.complexes-list__item__image-container__content img {
    transition: .2s;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 15px;
    object-fit: cover;
}

.complexes-list__item__image-container__content img:hover {
    transform: scale(1.07);
}

.complexes-list__item__image-container__content div {
    width: 70%;
}

.complexes-list__item__image-container__content span {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #E1E1E1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.complexes-list__item__image-container__content h4 {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 450;
    font-size: 22px;
    line-height: 28px;
    color: #FFFFFF;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.complexes-list__item__image-container__gradient {
    width: 100%;
    height: 40%;
    position: absolute;
    z-index: 2;
    bottom: 0;
    background: linear-gradient(0deg, #000000 -18.25%, rgba(0, 0, 0, 0) 92.46%);
}

.show-on-map {
    cursor: pointer;
    transition: .2s;
    width: 22px !important;
    height: 22px !important;
    position: absolute;
    right: 15px;
}

.show-on-map:hover {
    opacity: .6;
}

.complexes-list__item__content-container {
    position: relative !important;
    height: 245px;
    padding: 20px;
}

.content-container__to-subway {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.content-container__to-subway div {
    display: flex;
    align-items: center;
}

.content-container__to-subway div svg {
    width: 22px;
    height: 20px;
    margin-right: 5px;
    margin-top: -2px;
}

.content-container__to-subway div img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.content-container__to-subway div span {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8C8C8C;
}

.content-container__to-subway div:first-child {
    margin-right: 15px;
}

.content-container__ready-time {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    color: #29282E;
}

.content-container__ready-time span {
    color: #8C8C8C;
    margin-right: 7px;
}

.complexes-list__item__content-container p {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    color: #8C8C8C;
    margin-top: 3px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.content-container__count {
    position: absolute;
    bottom: 57px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 18px;
    color: #8C8C8C;
    margin-top: 25px;
    margin-bottom: 10px;
}

.complexes-list__item__content-container h4 {
    position: absolute;
    bottom: 28px !important;
    margin-top: 5px;
    font-family: 'Futura PT Book', sans-serif;
    font-size: 18px;
    line-height: 23px;
    text-transform: uppercase;
    color: #34333B;
}

.complexes-list__item__content-container h4 span {
    margin-left: 5px;
    font-family: 'Futura PT Book', sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    color: #34333B;
}

.content-container__action-button {
    cursor: pointer;
    transition: .2s;
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #22BCA2;
}

.content-container__action-button img {
    transition: .2s;
    width: 15px;
}

.content-container__action-button:hover {
    background-color: #1a8976;
}

.content-container__action-button:hover img {
    transform: translateX(3px);
}

.complexes-list__item:hover .complexes-list__item__image-container__img {
    transform: scale(1.05)
}

/* FLATS SLIDER  */

.flats-list {
    width: 100%;
}

.flats-list__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.flats-list__container__item {
    cursor: pointer;
    transition: .2s;
    width: calc(100%/3 - 10px);
    height: 590px !important;
    background-color: #fff;
}

.flats-list__container__item:hover {
    box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
}

.flats-list__container__item:hover .complexes-list__item__image-container__img {
    transform: scale(1.05)
}

.flats-list__item__content-container {
    padding: 20px;
}

.content-container__complex-name {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8C8C8C;
    transition: .2s;
}

.content-container__complex-name:hover{
    color: #22BCA2;
}

.flats-list__item__content-container h1 {
    margin-top: 5px;
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 27px;
    text-transform: uppercase;
    color: #34333B;
}

.flats-list__item__content-container h2 {
    margin-top: 5px;
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 27px;
    text-transform: uppercase;
    color: #34333B;
}

.flats-list__item__content-container h2 span {
    font-family: 'Circe', sans-serif;
    margin-left: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    color: #8C8C8C;
}

.flats-list__item__content-container p {
    /* border: 1px solid red; */
    width: 82%;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    height: 50px;
    color: #8C8C8C;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 3px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.content-container__additional-info {
    margin-top: 12px;
    margin-bottom: 20px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    color: #8C8C8C;
    display: flex;
}

.content-container__additional-info div {
    display: flex;
    flex-direction: column;
}

.content-container__additional-info div:first-child {
    margin-right: 40px;
}

.content-container__additional-info div span:last-child {
    color: #29282E;
}

/* NEWS SECTION  */

.container__title__link-container a {
    transition: .2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: 'Circe', sans-serif;
    color: #29282E;
    white-space: nowrap;
}

.container__title__link-container img {
    width: 12px;
    margin-left: 10px;
}

.container__title__link-container:hover a {
    opacity: 0.6;
}

.news-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.news-wrapper a {
    width: calc(100%/4 - 10px);
}

.news-wrapper__item {
    transition: .2s;
    width: 100%;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0) 0px 8px 24px;
}

.news-wrapper__item:hover {
    transform: translateY(-3px);
    box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
}

.news-wrapper__item__image {
    width: 100%;
    height: 250px;
    background-color: #dfdfdf;
}

.news-wrapper__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-wrapper__item__content {
    padding: 25px;
    width: 100%;
}

.news-wrapper__item__content span {
    color: #8C8C8C;
    font-size: 15px;
    font-family: 'Circe', sans-serif;
}

.news-wrapper__item__content h2 {
    margin-top: 25px;
    color: #29282E;
    font-size: 18px;
    line-height: 25px;
    height: 50px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-family: 'Circe', sans-serif;
}

@media (max-width: 850px) {
    .news-wrapper {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .news-wrapper a {
        margin-bottom: 10px;
        width: calc(100%/2 - 5px);
    }

    .news-wrapper__item__content {
        padding: 15px;
        width: 100%;
    }

    .news-wrapper__item__content h2 {
        margin-top: 15px;
    }
}

@media (max-width: 500px) {
    .news-wrapper {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .news-wrapper a {
        margin-bottom: 10px;
        width: 100%;
    }

    .news-wrapper__item__content {
        padding: 15px;
        width: 100%;
    }

    .news-wrapper__item__content h2 {
        margin-top: 15px;
    }
}

/* ARTICLES  */

.articles-container {
    margin-bottom: 100px;
    margin-top: 50px;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: space-between;
}

.articles-container__left-info-block {
    cursor: pointer;
    overflow: hidden;
    width: 30%;
    height: 100%;
    background-color: #B7B7B7;
}

.articles-container__left-info-block a {
    width: 100%;
}

.articles-container__left-info-block__inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.articles-container__left-info-block:hover .articles-container__left-info-block__background {
    transform: scale(1.05);
}

.articles-container__left-info-block:hover .articles-container__left-info-block__content .link-to-news img {
    margin-left: 13px;
}

.articles-container__left-info-block__background {
    position: absolute;
    top: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: .2s;
}

.articles-container__left-info-block__logo {
    z-index: 2;
    position: absolute;
    top: 30px;
    width: 45px;
    height: 45px;
    left: 30px;
}

.articles-container__left-info-block__content {
    position: absolute;
    top: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.articles-container__left-info-block__content h1 {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Futura PT Book', sans-serif;
    font-size: 34px;
}

.articles-container__left-info-block__content p {
    margin-top: 10px;
    color: #fff;
    font-family: 'Circe', sans-serif;
    font-size: 17px;
}

.articles-container__left-info-block__content .link-to-news {
    margin-top: 40px;
    color: #fff;
    font-family: 'Circe', sans-serif;
    font-size: 17px;
    display: flex;
    align-items: center;
    transition: .2s;
}

.articles-container__left-info-block__content .link-to-news:hover {
    opacity: .6;
}

.articles-container__left-info-block__content .link-to-news:hover img {
    margin-left: 13px;
}

.articles-container__left-info-block__content .link-to-news img {
    width: 12px;
    margin-left: 10px;
    transition: .1s;
}

.articles-container__right-articles-list {
    width: calc(70% - 50px);
    height: 100%;
}

.articles-container__right-articles-list a {
    width: 100%;
    height: 100%;
}

.articles-list__item {
    width: 100%;
    height: calc(100% / 4);
    border-bottom: 1px solid #E1E1E1;
    display: flex;
}

.articles-list__item:last-child {
    border-bottom: 1px solid transparent;
}

.articles-list__item:hover .articles-list__item__image img {
    transform: scale(1.05);
}

.articles-list__item:hover .articles-list__item__content {
    transform: translateX(5px)
}

.articles-list__item__wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.articles-list__item__image {
    overflow: hidden;
    width: 200px;
    height: calc(100% - 20px);
    background-color: #B7B7B7;
}

.articles-list__item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s;
}

.articles-list__item__content {
    transition: .2s;
    padding: 15px 0;
    width: calc(100% - 250px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.articles-list__item__content h1 {
    font-family: 'Futura PT Book', sans-serif;
    font-size: 22px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    text-transform: uppercase;
    color: #29282E
}

.articles-list__item__content p {
    font-family: 'Circe', sans-serif;
    font-size: 17px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 27px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #8C8C8C;
}

.articles-list__item__content span {
    font-family: 'Circe', sans-serif;
    font-size: 15px;
    width: 100%;
    color: #8C8C8C
}

@media (max-width: 840px) {
    .articles-container {
        margin-bottom: 100px;
        margin-top: 50px;
        width: 100%;
        height: unset;
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }

    .articles-container__left-info-block {
        cursor: pointer;
        overflow: hidden;
        width: 100%;
        height: 280px;
        margin-bottom: 20px;
        background-color: #B7B7B7;
    }

    .articles-container__right-articles-list {
        width: 100%;
        height: auto;
    }

    .articles-list__item {
        width: 100%;
        height: 180px;
        border-bottom: 1px solid #E1E1E1;
        display: flex;
    }
}

@media (max-width: 500px) {
    .articles-container__left-info-block__content {
        padding: 20px;
    }

    .articles-container__left-info-block__logo {
        top: 20px;
        left: 20px;
    }

    .articles-container {
        margin-bottom: 30px;
        margin-top: 30px;
        width: 100%;
        height: unset;
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }

    .articles-container__left-info-block {
        cursor: pointer;
        overflow: hidden;
        width: 100%;
        height: 280px;
        margin-bottom: 20px;
        background-color: #B7B7B7;
    }

    .articles-container__right-articles-list {
        width: 100%;
        height: auto;
    }

    .articles-list__item {
        margin-bottom: 20px;
        width: 100%;
        height: unset;
        border-bottom: 1px solid #E1E1E1;
        display: flex;
    }

    .articles-list__item:hover .articles-list__item__content {
        transform: translateX(0)
    }

    .articles-list__item__wrapper {
        align-items: unset;
        justify-content: unset;
        flex-direction: column;
    }

    .articles-list__item__image {
        order: -1;
        overflow: hidden;
        width: 100%;
        height: 250px;
        background-color: #B7B7B7;
    }

    .articles-list__item__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .2s;
    }

    .articles-list__item__content {
        transition: .2s;
        padding: 15px 0;
        width: 94vw;
        height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .articles-list__item__content p {
        font-family: 'Circe', sans-serif;
        font-size: 17px;
        width: 90%;
        text-overflow: ellipsis;
        overflow: hidden;
        line-height: 27px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        color: #8C8C8C;
    }
}

/* CEO  */

.ceo-container {
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.ceo-container__link-block {
    width: 330px;
    height: 425px;
    background-color: #34333B;
    position: relative;
    display: flex;
    justify-content: center;
}

.ceo-container__link-block__image {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    width: 80%;
}

.ceo-container__link-block .content-container__action-button {
    z-index: 3;
}

.ceo-container__link-block__content {
    position: absolute;
    z-index: 2;
    padding: 35px;
}

.ceo-container__link-block__content span {
    font-family: 'Circe', sans-serif;
    color: #22BCA2;
    font-size: 17px;
}

.ceo-container__link-block__content h1 {
    margin-top: 10px;
    font-family: 'Futura PT Book', sans-serif;
    color: #fff;
    font-size: 27px;
    text-transform: uppercase;
}

.ceo-container__link-block__content p {
    margin-top: 10px;
    font-family: 'Circe', sans-serif;
    color: #8C8C8C;
    font-size: 16px;
}

.ceo-container__texts {
    flex: 1;
    margin-left: 60px;
    /*width: calc(75% - 40px);*/
}

.ceo-container__texts div {
    margin-bottom: 30px;
}

.ceo-container__texts div:last-child {
    margin-bottom: 0;
}

.ceo-container__texts div h1 {
    font-size: 18px;
    color: #B7B7B7;
    font-family: 'Circe', sans-serif;
    margin-bottom: 10px;
}

.ceo-container__texts div p {
    font-size: 16px;
    color: #8C8C8C;
    font-family: 'Circe', sans-serif;
}

@media (max-width: 1100px) {
    /*.ceo-container__link-block {*/
    /*    width: 30%;*/
    /*    height: 400px;*/
    /*    background-color: #34333B;*/
    /*    position: relative;*/
    /*    display: flex;*/
    /*    justify-content: center;*/
    /*}*/

    /*.ceo-container__texts {*/
    /*    width: calc(70% - 40px);*/
    /*}*/
}

@media (max-width: 900px) {
    /*.ceo-container__link-block {*/
    /*    width: 35%;*/
    /*    height: 400px;*/
    /*    background-color: #34333B;*/
    /*    position: relative;*/
    /*    display: flex;*/
    /*    justify-content: center;*/
    /*}*/

    /*.ceo-container__texts {*/
    /*    width: calc(65% - 40px);*/
    /*}*/
}

@media (max-width: 780px) {
    /*.ceo-container__link-block {*/
    /*    width: 40%;*/
    /*    height: 400px;*/
    /*    background-color: #34333B;*/
    /*    position: relative;*/
    /*    display: flex;*/
    /*    justify-content: center;*/
    /*}*/

    /*.ceo-container__texts {*/
    /*    width: calc(60% - 40px);*/
    /*}*/
}

@media (max-width: 650px) {
    .ceo-container {
        margin-bottom: 40px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }

    .ceo-container__link-block {
        width: 100%;
        height: 400px;
        background-color: #34333B;
        position: relative;
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
    }

    .ceo-container__texts {
        margin-left: 0;
        width: 100%
    }

    .ceo-container__link-block__image {
        position: absolute;
        z-index: 1;
        bottom: 20px;
        width: 50%;
    }

    .ceo-container__link-block__content {
        width: 100%;
        position: absolute;
        z-index: 2;
        padding: 20px;
    }
}




@media (max-width: 1100px) {
    .offer-mortgage p {
        font-size: 15px;
        height: 120px;
        text-overflow: ellipsis;
        overflow: hidden;
        line-height: 24px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }

    .offers_n_sales__item h3 {
        font-size: 18px;
    }
}

@media (max-width: 840px) {

    a {
        color: #29282E;
    }

    section {
        margin-top: 0px;
        flex-direction: column;
    }

    .offers_n_sales {
        margin-top: 0px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: unset;
    }

    .offers_n_sales__item {
        width: 100%;
        height: 330px;
        margin-bottom: 10px;
    }

    .offers_n_sales__item h3 {
        font-size: 21px;
    }

    .offer-mortgage p {
        font-size: 17px;
        margin-bottom: 10px;
        height: 130px;
        text-overflow: ellipsis;
        overflow: hidden;
        line-height: 26px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }
}
