main {
    margin-top: 0;
}

section {
    flex-direction: column;
}

.main-screen__dark-background {
    width: 100vw;
    height: 85vh;
    background-color: #29282E;
    display: flex;
    justify-content: center;
    position: relative;
}

.main-screen__background-fullscreen {
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.main-screen__background-fullscreen img {
    width: 100%;
    height: 100%;
   object-fit: cover;
}

.main-screen__foreground-fullscreen {
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
}

.main-screen__content {
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icons__container {
    margin: 60px 0 50px 0;
    display: flex;
}

.icons__container div {
    align-items: center;
    display: flex;
    color: #fff;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-size: 17px;
    line-height: 22px;
    margin-right: 20px;
}

.icons__container div img {
    margin-right: 20px;
}

.icons__container div span {
    width: 200px;
}

.main-screen__content p {
    margin-bottom: 30px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-size: 20px;
    line-height: 29px;
    color: #22BCA2;
}

.main-screen__content h1 {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 51px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.main-screen__content h1 span {
    color: #22BCA2;
}

.main-screen__leave-request__btn {
    cursor: pointer;
    transition: .2s;
    display: inline-block;
    height: 80px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #22BCA2;
}

.main-screen__leave-request__btn:hover {
    background-color: #20ac95;
}

.main-screen__leave-request__btn span {
    display: inline-block;
    margin-right: 30px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-size: 17px;
    color: #fff;
}

.main-screen__leave-request__btn img {
    transition: .2s;
    width: 14px;
}

.main-screen__leave-request__btn:hover img {
    transform: translateX(5px);
}

@media (max-width: 1440px) {
    .main-screen__foreground-fullscreen {
        width: 60%;
    }
}

@media (max-width: 800px) {
    .main-screen__dark-background {
        height: 100vh;
    }

    .main-screen__foreground-fullscreen {
        width: 100%;
    }

    .icons__container {
        margin: 30px 0 30px 0;
        display: flex;
        flex-direction: column;
    }

    .icons__container div {
        align-items: center;
        margin-bottom: 25px;
        display: flex;
        color: #fff;
        font-family: 'Circe', sans-serif;
        font-style: normal;
        font-size: 16px;
        line-height: 20px;
        margin-right: 20px;
    }

    .icons__container img {
        width: 35px;
    }

    .main-screen__content p {
        margin-bottom: 15px;
        font-family: 'Circe', sans-serif;
        font-style: normal;
        font-size: 17px;
        line-height: 25px;
        color: #22BCA2;
    }

    .main-screen__content h1 {
        font-family: 'Futura PT Book', sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 34px;
        line-height: 45px;
        text-transform: uppercase;
        color: #FFFFFF;
    }
}

/*BANKS */

.main-screen__banks_wrapper {
    width: 1240px;
    height: 15vh;
    display: flex;
    justify-content: space-between;
}

.bank_item {
    width: calc(100%/6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid red; */
    color: #8C8C8C;
}

.bank_item img {
    width: 70%;
}

@media (max-width: 1280px) {
    .main-screen__banks_wrapper {
        width: 94vw;
    }
}

@media (max-width: 950px) {
    .main-screen__banks_wrapper {
        height: unset;
        flex-wrap: wrap;
    }

    .bank_item {
        margin-top: 25px;
        width: calc(100%/3);
    }
}

@media (max-width: 550px) {
    .bank_item {
        margin-top: 45px;
        width: calc(100%/2);
    }
}

/* ABOUT MORTGAGE  */

.about-mortgage {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.about-mortgage__item {
    overflow: hidden;
    background-color: #fff;
    position: relative;
    width: calc(100%/4 - 10px);
    height: 430px;
}

.about-mortgage__item:hover img {
    transform: scale(1.05);
}

.about-mortgage__item img {
    transition: .2s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-mortgage__item__gadient {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 70%;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.about-mortgage__item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 42%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 25px;
}

.about-mortgage__item__content h2 {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    text-transform: uppercase;
    color: #FFFFFF;

}

.about-mortgage__item__content p {
    margin-top: 15px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #FFFFFF;
}

@media (max-width: 1280px) {
    .about-mortgage__item__content {
        height: 52%;
        font-size: 16px;
        line-height: 23px;
    }
}

@media (max-width: 960px) {
    .about-mortgage {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .about-mortgage__item {
        overflow: hidden;
        background-color: #fff;
        position: relative;
        width: calc(100%/2 - 10px);
        height: 430px;
        margin-bottom: 20px;
    }

    .about-mortgage__item__content {
        height: 45%;
        font-size: 17px;
        line-height: 25px;
    }
}

@media (max-width: 620px) {
    .about-mortgage {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .about-mortgage__item {
        overflow: hidden;
        background-color: #fff;
        position: relative;
        width: calc(100%/2 - 10px);
        height: 430px;
        margin-bottom: 20px;
    }

    .about-mortgage__item__content {
        height: 50%;
        font-size: 15px;
        line-height: 23px;
    }
}

@media (max-width: 570px) {
    .about-mortgage {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .about-mortgage__item {
        overflow: hidden;
        background-color: #fff;
        position: relative;
        width: 100%;
        height: 430px;
        margin-bottom: 20px;
    }

    .about-mortgage__item__content {
        height: 42%;
        font-size: 15px;
        line-height: 23px;
    }
}

/* WHY WE  */

.why-we__section {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.why-we__section__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-we__section__subtitle {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #22BCA2;
}

.why-we__section__content .container__title {
    margin-top: 20px;
}

.why-we__section__content__item {
    display: flex;
    margin-bottom: 25px;
}

.green-line {
    margin-top: 12px;
    height: 2px;
    width: 30px;
    background-color: #22BCA2;
}

.why-we__section__content__item__paragraphs {
    margin-left: 20px;
    flex: 1;
}

.why-we__section__content__item__paragraphs h3 {
    font-family: 'Circe';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 10px;
    color: #34333B;
}

.why-we__section__content__item__paragraphs p {
    font-family: 'Circe';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #8C8C8C;
    padding-right: 40px;
}

.why-we__section__collage {
    width: calc(1240px/2);
    height: calc(1240px/2);
    overflow: hidden;
    position: relative;
}

.why-we__section__collage img {
    position: absolute;
    transform: scale(0.95);
}

.why-we__section__collage img:nth-child(1) {
    top: 0;
    right: 0;
}

.why-we__section__collage img:nth-child(2) {
    bottom: 0;
    z-index: 3;
    right: 50px;
}

.why-we__section__collage img:nth-child(3) {
    top: 70px;
    left: 0;
}

@media (max-width: 1100px) {
    .green-line {
        margin-top: 12px;
        height: 2px;
        width: 20px;
        background-color: #22BCA2;
    }

    .why-we__section__content__item__paragraphs {
        margin-left: 15px;
        flex: 1;
    }

    .why-we__section__content__item__paragraphs h3 {
        font-size: 18px;
        line-height: 25px;
    }

    .why-we__section__content__item__paragraphs p {
        font-size: 16px;
        line-height: 23px;
        padding-right: 20px;
    }
}

@media (max-width: 950px) {
    .why-we__section {
        margin-top: 0px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .why-we__section__collage {
        order: -1;
        width: 94vw;
        height: 94vw;
    }

    .why-we__section__collage img:nth-child(1) {
        width: 40%;
        top: 0;
        right: 0;
    }

    .why-we__section__collage img:nth-child(2) {
        width: 50%;
        bottom: 0;
        z-index: 3;
        right: 50px;
    }

    .why-we__section__collage img:nth-child(3) {
        width: 60%;
        top: 70px;
        left: 0;
    }

    .why-we__section__content {
        margin-top: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* INTERESTING DIGITS  */

/*.interesting__digits__item:first-child {*/
/*    flex: 3;*/
/*}*/

/*.interesting__digits__item:nth-child(2) {*/
/*    flex: 3;*/
/*}*/

/*@media (max-width: 950px) {*/
/*    .interesting__digits__item {*/
/*        flex: unset;*/
/*        width: calc(100%/2);*/
/*    }*/
/*}*/

/*SPECIAL */

.special-for-client__dark-fullscreen-background {
    margin-top: 100px;
    overflow: hidden;
    width: 100vw;
    background: #29282E;
    height: 900px;
    position: relative;
    display: flex;
    justify-content: center;
}

.special-for-client__foreground-house {
    transform: translateX(calc(100% / 5));
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.special-for-client__container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.special-for-client__container__content {
    transform: translateY(-70px);
    width: 60%;
}

.special-for-client__container__content__multiply-rows {
    margin-top: 50px;
}

.special-for-client__container__content h5 {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-size: 20px;
    line-height: 29px;
    color: #22BCA2;
}

.special-for-client__container__content h1 {
    margin-top: 30px;
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-size: 35px;
    line-height: 45px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.special-for-client__container__content p {
    margin-top: 15px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #8C8C8C;
}

.special-for-client__container__content__developers {
    display: flex;
    margin-bottom: 60px;
}

.special-for-client__container__content__developers:last-child {
    margin-bottom: 0;
}

.content__developers__logo {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 50px;
}

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

.content__developers__info-block {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.content__developers__info-block span:first-child {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #8C8C8C;
}

.content__developers__info-block span:last-child {
    font-family: 'Circe', sans-serif;
    margin-top: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
}

.content__developers__info {
    margin-right: 50px;
}

.content__developers__row {
    display: flex;
}

.special-for-client__container .main-screen__leave-request__btn {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
}

@media (max-width: 1150px) {
    .special-for-client__container__content {
        transform: translateY(-70px);
        width: 70%;
    }

    .special-for-client__container__content h5 {
        font-family: 'Circe', sans-serif;
        font-style: normal;
        font-size: 16px;
        line-height: 23px;
        color: #22BCA2;
    }

    .special-for-client__container__content h1 {
        margin-top: 20px;
        font-size: 32px;
        line-height: 40px;
    }

    .special-for-client__container__content p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 22px;
    }

    .content__developers__info-block {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    .content__developers__info-block span:first-child {
        font-size: 16px;
        line-height: 22px;
    }

    .content__developers__info-block span:last-child {
        font-size: 16px;
        line-height: 22px;
    }

    .content__developers__info {
        margin-right: 30px;
    }

    .content__developers__logo {
        margin-right: 30px;
    }
}

@media (max-width: 750px) {
    .special-for-client__dark-fullscreen-background {
        margin-top: 100px;
        overflow: hidden;
        width: 100vw;
        background: #29282E;
        height: unset;
        position: relative;
        display: flex;
        justify-content: center;
        padding-bottom: 85vw;
    }

    .special-for-client__container__content {
        transform: unset;
        width: 100%;
    }

    .special-for-client__foreground-house {
        transform: unset;
        position: absolute;
        height: 100%;
        width: 165%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .special-for-client__container .main-screen__leave-request__btn {
        position: absolute;
        bottom: -85vw;
        right: -3vw;
        z-index: 9;
    }
}

@media (max-width: 550px) {
    .special-for-client__container__content__developers {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .content__developers__logo {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/*BEST OFFERS*/

.best-offers__item-container {
    position: relative;
    width: 100%;
    height: 340px;
    background: #EEEEF2;
    margin-top: 30px;
    margin-bottom: 80px;
}

.best-offers__item-container:last-child {
    margin: 0;
}

.best-offers__item-container__image {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.best-offers__item-container .main-screen__leave-request__btn {
    position: absolute;
    z-index: 9;
    bottom: 0;
    right: 0;
}

.best-offers__item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 45px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.best-offers__item-content h3 {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 45px;
    text-transform: uppercase;
    color: #34333B;
}

.best-offers__item-content p {
    transition: .2s;
    cursor: pointer;
    margin-top: 10px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #22BCA2;
}

.best-offers__item-content p:hover {
    opacity: 0.6;
    transform: translateX(3px);
}

.best-offers__item-container__info-block {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.best-offers__item-container__info-block:last-child {
    margin-bottom: 0;
}

.best-offers__item-container__info-block span:first-child {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #8C8C8C;
}

.best-offers__item-container__info-block span:last-child {
    margin-top: 5px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #222;
}

.best-offers__item-container__info {
    margin-right: 50px;
}

.best-offers__item-content__rows {
    margin-top: 20px;
    display: flex;
}

@media (max-width: 1200px) {
    .best-offers__item-container {
        position: relative;
        width: 100%;
        height: 340px;
        background: #EEEEF2;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .best-offers__item-container__image {
        overflow: hidden;
    }

    .best-offers__item-container__image img {
        height: 100%;
        transform: translateX(15%);
        z-index: 0;
    }

    .best-offers__item-content {
        z-index: 1;
    }

    .best-offers__item-content h3 {
        font-size: 30px;
    }

    .best-offers__item-content p {
        font-size: 16px;
    }

    .best-offers__item-container__info-block span:first-child {
        font-size: 16px;
    }

    .best-offers__item-container__info-block span:last-child {
        font-size: 16px;
    }

    .best-offers__item-container__info {
        margin-right: 30px;
    }
}

@media (max-width: 850px) {
    .best-offers__item-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: unset;
        padding-bottom: 630px !important;
        background: #EEEEF2;
        margin-top: 0px;
        margin-bottom: 30px;
    }

    .best-offers__item-content {
        height: 370px;
        padding: 0 20px;
    }

    .best-offers__item-container__info-block {
        height: 80px;
    }

    .best-offers__item-container__image {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .best-offers__item-container__image {
        overflow: hidden;
        width: 160%;
        height: unset;
        bottom: 0;
    }

    .best-offers__item-container__image img {
        width: unset;
        height: unset;
        transform: translateX(-10%);
        z-index: 0;
    }

    .best-offers__item-content {
        z-index: 1;
    }

    .best-offers__item-content h3 {
        font-size: 30px;
    }

    .best-offers__item-content p {
        font-size: 16px;
    }

    .best-offers__item-container__info-block span:first-child {
        font-size: 16px;
    }

    .best-offers__item-container__info-block span:last-child {
        font-size: 16px;
    }

    .best-offers__item-container__info {
        margin-right: 30px;
    }

    .best-offers__item-container .main-screen__leave-request__btn {
        position: absolute;
        z-index: 9;
        bottom: 0;
        right: unset;
        left: 0;
    }
}

/*HOW WE WORK*/

.how-we-work {
    width: 100%;
    height: 750px;
    display: flex;
}

.how-we-work__left-image {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.how-we-work__right-content {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-we-work__right-content p {
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-size: 20px;
    line-height: 29px;
    color: #22BCA2;

}

.how-we-work__right-content h2 {
    margin-top: 20px;
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 45px;
    text-transform: uppercase;
    color: #34333B;
}

.how-we-work__right-content__list {
    margin-top: 30px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #68686F;
    position: relative;
}

.how-we-work__right-content__list__item {
    margin-bottom: 20px;
    display: flex;
}

.how-we-work__right-content__list__item div {
    width: 30px;
    height: 2px;
    background: #22BCA2;
    margin-top: 12px;
    margin-right: 15px;
}

.how-we-work__right-content__list__item span {
    width: 90%;
}

@media (max-width: 830px) {
    .how-we-work {
        width: 100%;
        height: unset;
        flex-direction: column;
        display: flex;
    }

    .how-we-work__left-image {
        width: 100%;
    }

    .how-we-work__right-content {
        order: -1
    }
}

/*LEAVE REQUEST*/

.leave-request__dark-fullscreen-background {
    width: 100vw;
    background: #29282E;
    display: flex;
    justify-content: center;
}


/*MORTGAGE POPUPS */

.mortagage__popup__info__container {
    width: 100%;
    height: 100%;
    display: flex;
}

.mortagage__popup__info__container__content {
    padding: 0 30px;
    width: 50%;
    height: 100%;
}

.mortagage__popup__info__container__image {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mortagage__popup__info__container__image img {
    width: 100%;
    object-fit: contain;
}

.mortagage__popup__info__container__content .container__title {
    margin-bottom: 20px;
}

.mortagage__popup__info__container__content ul {
    margin-left: 20px;
}

.mortagage__popup__info__container__content ul li {
    list-style: initial;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    color: #8C8C8C;
    margin-bottom: 15px;
}
