@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    background-color: #E5E8F0;
    min-width: 320px;
}

* {
    font-family: "Golos Text", sans-serif;
    font-optical-sizing: auto;
    color: #272727;
}

img {
    max-width: 100%;
    height: auto;
}

.button {
    display: block;
    background: #272727;
    border: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: #FFFFFF;
    width: 100%;
    padding: 16px 20px;
    border-radius: 30px;
    transition: all .2s ease;
}

.button:hover {
    background: #2FA0DF !important;
    color: #FFFFFF !important;
}

.button.button-white {
    background: #FFFFFF;
    color: #272727;
}

.button[disabled],
.button:disabled{
    background: #BABBC6 !important;
    color: #272727 !important;
    cursor: initial;
}

.wrapper {
    margin: 0 auto;
    max-width: 1320px;
    padding: 0 20px;
    box-sizing: border-box;
}

header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #FFFFFF;
    border-radius: 0 0 30px 30px;
    z-index: 99;
}

header .wrapper {
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav {
    margin-left: auto;
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #272727;
    font-size: 16px;
    text-decoration: none;
    transition: all .2s ease;
}

.nav-link:hover {
    color: #2FA0DF;
}

.hamburger{
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #2FA0DF;
    border-radius: 10px;
    margin-left: auto;
    position: relative;
    z-index: 100;
    transition: all .3s ease;
    display: none;
}

.hamburger div{
    height: 2px;
    background: #2FA0DF;
    border-radius: 2px;
    width: 25px;
    margin-bottom: 8px;
    transition: all .3s ease;
}
.hamburger div:nth-child(2){
    width: 15px;
    margin-bottom: 0;
    margin-right: -10px;
}

.hamburger.active{
    background: #2FA0DF;
}
.hamburger.active div{
    background: #FFFFFF;
    width: 25px !important;
    transform: rotate(45deg);
    margin: 0 0 -1px !important;
}
.hamburger.active div:nth-child(2){
    margin: -1px 0 0 !important;
    transform: rotate(-45deg);
}

.head-skills {
    min-height: 650px;
    display: grid;
    grid-template-columns: 50% 1fr 1fr;
    grid-template-rows: calc(50% - 10px) calc(50% - 10px);
    gap: 20px 20px;
    grid-template-areas:
        "div1 div2 div2"
        "div1 div3 div4";
    margin-top: 106px;
}

.head-skills__item {
    position: relative;
}

.head-skills-swiper {
    height: 100%;
}

.head-skills__slide {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    /* height: 644px; */
    height: 100%;
}
.head-skills__slide::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.head-skills__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: -5px;
}

.head-skills__slide-title {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 32px;

}
.head-skills__slide-title h2 {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 32px;
}
.head-skills__slide-title p {
  color: #FFFFFF;
  margin-top: 16px;
  font-size: 24px;
  text-transform: uppercase;
}

.head-skills-pagination {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    gap: 24px;
}

.dots-pagination {
    width: 120px !important;
    display: flex;
}

.dots-pagination .swiper-pagination-bullet {
    width: 100%;
    margin: 0 !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 1);
    height: 4px;
}

.dots-pagination .swiper-pagination-bullet-active {
    background-color: #FFFFFF !important;
}

.current-slide,
.total-slides {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
}

/* .head-skills__item:last-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
} */

/* .tile-row {
    display: flex;
    gap: 20px;
} */

.div1 {
    grid-area: div1;
}

.div2 {
    grid-area: div2;
}

.div3 {
    grid-area: div3;
}

.div4 {
    grid-area: div4;
}

.head-skills__tile {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px 32px;
    box-sizing: border-box;
    height: 100%;
    /* width: 50%; */
}

.head-skills__tile.lg {
    /* width: 100%; */
}

.head-skills__tile-title {}

.head-skills__tile-title b {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 27px;
    margin: 0 0 14px;
}

.head-skills__tile-title p {
    display: block;
    font-size: 16px;
    color: #BABBC6;
}

.head-skills__tile-img {
    text-align: center;
    margin: 21px 0 0;
}

.head-skills__tile-1st {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-skills__tile-1st .head-skills__tile-img {
    margin-top: 0;
}

.head-skills__tile .button {
    margin-top: 18px;
}

.investment {
    border-radius: 30px 30px 0 0;
    background: #FFFFFF;
    margin: 84px 0 0;
    padding: 160px 0;
    overflow: hidden;
}

.section-title {
    margin: 0 auto 64px;
    max-width: 870px;
}

.section-title,
.section-title * {
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.25;
}

.section-title .start {
    font-size: 16px;
    display: inline-block;
    text-transform: initial;
    margin-right: 10%;
}

.text-blue {
    color: #2FA0DF;
}

.text-white {
    color: #FFFFFF;
}

.text-uppercase {
    text-transform: uppercase;
}

.fw-500 {
    font-weight: 500;
}

.fs-5 {
    font-size: 12px;
    opacity: 0.8;
}

.text-bg-blue {
    background: #2FA0DF;
    border-radius: 10px;
    padding: 0 8px;
}

.text-columns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
}

.text-columns__item {}

.text-columns__item:first-child {
    width: 51%;
}

.text-columns__item:last-child {
    width: 43%;
}

.play-video {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 64px;
}

.play-video a {
    display: block;
    position: relative;
    transition: all .2s ease;
    height: 100%;
}

.play-video a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/play.svg) 50% 50% no-repeat;
    transition: all .2s ease;
}

.play-video a:hover:after {
    transform: scale(1.1);
}

.play-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: -5px;
}

.investment-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #272727;
    border-radius: 10px;
    padding: 56px;
    position: relative;
    margin-bottom: 41px;
}

.investment-form-wrapper.countdown{
    margin-bottom: 150px;
}

.investment-form {
    max-width: 41%;
}

.form-title {
    font-size: 32px;
    margin-bottom: 16px;
}

.input {
    border-radius: 30px;
    background: transparent;
    font-size: 16px;
    color: #BABBC6;
    border: 1px solid #BABBC6;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 29px;
}

.input.input-white {}

.investment-form-img {
    position: absolute;
    top: -50px;
    bottom: -50px;
    right: -8%;
    width: 63%;
}

.investment-form-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.investment-form .form-title {
    margin-bottom: 41px;
}

.investment-form .button {
    margin-bottom: 18px;
}

.flats {
    padding: 160px 0;
    overflow: hidden;
}

.flats-swiper {
    border-top: 1px solid #BABBC6;
    margin-bottom: 160px;
    padding-top: 64px;
    overflow: initial !important;
}

.flats-swiper::after {
    /* content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: calc(100% - 64px);
    width: 408px;
    background: url(../img/flats-shadow.png) 100% 0 repeat-y;
    z-index: 5; */
}

.swiper-button-disabled{
    opacity: 0;
}

.flats__slide {
    /* width: 315px; */
    background-color: rgba(255, 255, 255, .5);
    border-radius: 10px;
}

.flats__slide-img {
    padding: 20px;
}

.flats__slide-img img {
    
}

.flats__slide-title {
    padding: 32px 37px;
}

.flats__slide-title b {
    display: block;
    font-weight: normal;
}

.flats__slide-title span {
    display: block;
    margin: 8px 0 0;
}

.flats-button {
    background: #2FA0DF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    position: absolute;
    top: calc(50% + 32px);
    transform: translateY(-50%);
    left: 20px;
    z-index: 10;
    transition: all .3s ease;
}

.flats-button:hover {
    background: #0055B8;
}

.flats-button.flats-next {
    left: initial;
    right: 20px;
}

.flats-pagination {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 16px 0 0;
}

.flats-dots-pagination {
    width: 120px !important;
    display: flex;
}

.flats-dots-pagination .swiper-pagination-bullet {
    width: 100%;
    margin: 0 !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 1);
    opacity: 0.8;
    height: 4px;
}

.flats-dots-pagination .swiper-pagination-bullet-active {
    background-color: #2FA0DF !important;
}

.flats-current-slide,
.flats-total-slides {
    color: #2FA0DF;
    font-size: 16px;
    font-weight: 500;
}

.countdown-side {
    width: 41%;
}

.countdown-title {
    color: #BABBC6;
    margin-bottom: 10px;
}

.countdown-number {
    display: flex;
    gap: 40px;
    margin-bottom: 24px;
}

.countdown-number__item {
    text-align: center;
    color: #FFFFFF;
    position: relative;
}

.countdown-number__item * {
    color: #FFFFFF;
}

.countdown-number__item::before {
    content: '';
    position: absolute;
    right: -22px;
    top: 19px;
    width: 4px;
    height: 4px;
    background: #BABBC6;
}

.countdown-number__item::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 32px;
    width: 4px;
    height: 4px;
    background: #BABBC6;
}

.countdown-number__item:last-child:before,
.countdown-number__item:last-child::after {
    display: none;
}

.countdown-number__item div {
    font-size: 32px;
    font-weight: 500;
}

.countdown-number__item span {
    display: block;
    color: #BABBC6;
}

.investment-form.countdown {
    max-width: 48%;
}

.investment-form.countdown .form-title {
    margin-bottom: 22px;
}


.mkr-skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.mkr-skills__item {
    width: calc((100% / 4) - 15px);
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px 32px;
}

.mkr-skills__img {
    text-align: center;
}

.architecture-img {}

.architecture-img img {
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: -5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

footer {
    background: #272727;
    border-radius: 30px 30px 0 0;
    padding: 64px 0;
}

.footer-title {
    text-align: center;
    font-size: 32px;
    border-bottom: 1px solid #BABBC6;
    margin-bottom: 32px;
    padding-bottom: 32px;
}

.footer-contacts {
    display: flex;
    justify-content: space-between;
}

.footer-contacts__item {
    width: 31%;
    text-align: center;
}

.footer-contacts__item b,
.footer-contacts__item b * {
    display: block;
    text-decoration: none;
    font-size: 24px;
}

.footer-contacts__item span {
    display: block;
    margin: 21px 0 0;
    line-height: 1.6;
}

.modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 9999;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal {
    position: relative;
    margin: 50px auto;
    padding-top: 20px;
    background-color: #fff;
    border-radius: 10px;
    max-width: 547px;
    overflow: hidden;
}

.modal-lg{
    max-width: 1280px;
}

.close-modal {
    width: 48px;
    height: 48px;
    border: 2px solid #BABBC6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border-radius: 10px;
    margin-left: auto;
    margin-bottom: 38px;
    margin-right: 20px;
    transition: all .2s ease;
}
.close-modal:hover{
    border-color: #2FA0DF;
}

.modal-form {
    padding: 0 64px 64px 64px;
    box-sizing: border-box;
}

.modal-form-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.modal-form-description {
    margin-bottom: 33px;
}

.no-scroll {
    overflow: hidden !important;
}


@media (max-width: 768px) {
    .mkr-skills__item {
        width: calc((100% / 2) - 10px);
    }
}

@media (max-width: 475px) {
    
}


@media (max-width: 1024px) {
    .head-skills {
        display: grid;
        grid-template-columns: calc(50% - 10px) calc(50% - 10px);
        grid-template-rows: 450px 267px;
        gap: 20px 20px;
        grid-template-areas:
            "div1 div2"
            "div3 div4";
    }

    .head-skills__tile-1st {
        align-items: initial;
        flex-direction: column;
    }

    .div2 .head-skills__tile{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .head-skills__tile-1st .head-skills__tile-img {
        margin-top: 31px;
    }

    .investment {
        margin: 64px 0 0;
        padding: 110px 0;
    }
    .section-title {
        margin: 0 auto 48px;
    }
    .section-title, .section-title * {
        font-size: 40px;
    }

    .text-columns {
        margin-bottom: 48px;
    }

    .head-skills__slide-title {
        font-size: 24px;
    }

    .head-skills__tile-title b {
        font-size: 20px;
    }

    .form-title {
        font-size: 24px;
    }

    .investment-form-wrapper {
        margin-bottom: 0;
    }

    .flats {
        padding: 110px 0;
    }

    .flats-swiper {
        margin-bottom: 110px;
        padding-top: 48px;
    }

    .flats-button{
        display: none;
    }

    .flats-pagination {
        display: flex;
    }

    .investment-form-wrapper.countdown{
        margin-bottom: 110px;
    }

    .footer-title {
        font-size: 24px;
    }

    .footer-contacts__item b, .footer-contacts__item b * {
        font-size: 20px;
    }

}

@media (max-width: 768px) {
    .hamburger{
        display: flex;
    }
    .nav{
        display: none;
    }
    .nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        background: #FFFFFF;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        padding: 0 40px;
        box-sizing: border-box;
    }
    .nav-link {
        display: block;
        border-bottom: 1px solid #BABBC6;
        width: 100%;
        text-align: center;
        padding: 0 0 24px;
        margin: -10px 0 0;
    }

    .investment-form-wrapper {
        flex-direction: column;
    }

    .investment-form {
        max-width: 100%;
    }

    .investment-form-img {
        position: initial;
        width: 100%;
        margin: 20px 0 -117px;
    }

    .section-title {
        max-width: 800px;
    }

    .investment-form.countdown {
        max-width: 100%;
        margin: 0 0 47px;
    }

    .countdown-side {
        width: 100%;
    }

    .architecture-img {
        height: 450px;
    }

    .footer-contacts {
        flex-direction: column;
        align-items: center;
    }

    .footer-contacts__item {
        width: 100%;
        margin: 0 0 46px;
    }

    .play-video {
        height: 450px;
    }

}

@media (max-width: 675px) {
    .head-skills {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 500px 250px 144px 144px;
        gap: 20px 20px;
        grid-template-areas:
            "div1"
            "div2"
            "div3"
            "div4";
    }

    .head-skills__tile-1st {
        align-items: center;
        flex-direction: row;
    }

    .head-skills__tile-1st .head-skills__tile-img {
        margin-top: 0;
    }

    .div3 .head-skills__tile, .div4 .head-skills__tile  {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .head-skills__tile-img {
        margin: 0 0 0 23px;
    }

    .modal-form {
        padding: 0 34px 64px 34px;
        box-sizing: border-box;
    }

    .section-title {
        margin: 0 auto 24px;
    }

    .section-title, .section-title * {
        font-size: 32px;
    }

    .text-columns {
        margin-bottom: 32px;
        flex-direction: column;
    }

    .text-columns__item {
        width: 100% !important;
    }

    .play-video {
        height: 300px;
    }

    .investment-form-wrapper {
        padding: 32px 16px;
    }

    .architecture-img {
        height: 300px;
    }

    .mkr-skills__item {
        padding: 27px 16px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mkr-skills__img {
        margin-left: 14px;
    }











}
