* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

aside,
nav,
footer,
header,
section {
    display: block;
}

html,
body {
    min-height: 100vh;
    scrollbar-gutter: stable;
}

*,
html {
    scroll-behavior: smooth !important;
    outline: none;
}

img,
video,
canvas,
svg {
    display: block;
}

input::-ms-clear {
    display: none;
}

button {
    display: inline-block;
    cursor: pointer;
    padding: 0;
    border: none;
    background: none;
    -webkit-user-select: none;
    user-select: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    text-decoration: none;
}

a:hover,
a:visited:hover {
    text-decoration: none;
}

img {
    vertical-align: top;
}

ol,
ul {
    padding: 0;
}

ol[role="list"],
ul[role="list"] {
    list-style: none;
}

.container {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 200px;
    padding-left: 24px;
    padding-right: 24px;
}

.mb-60 {
    margin-bottom: 60px !important;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('../fonts/CeraPro/CeraPro-Regular.eot');
    src: local('Cera Pro Regular'), local('CeraPro-Regular'),
        url('../fonts/CeraPro/CeraPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CeraPro/CeraPro-Regular.woff') format('woff'),
        url('../fonts/CeraPro/CeraPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('../fonts/CeraPro/CeraPro-Bold.eot');
    src: local('Cera Pro Bold'), local('CeraPro-Bold'),
        url('../fonts/CeraPro/CeraPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CeraPro/CeraPro-Bold.woff') format('woff'),
        url('../fonts/CeraPro/CeraPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Cera Pro';
    src: url('../fonts/CeraPro/CeraPro-Black.eot');
    src: local('Cera Pro Black'), local('CeraPro-Black'),
        url('../fonts/CeraPro/CeraPro-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CeraPro/CeraPro-Black.woff') format('woff'),
        url('../fonts/CeraPro/CeraPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --color-gray: #6C6C86;
    --color-bg-blue: #141430;
    --color-blue: #1E90F5;
    --color-blue-dark: #0C76D4;
    --color-white: #ffffff;
    --border-radius: 10px;
    --padding: 40px;
    --gap: 30px;
}

body {
    font-family: "Cera Pro";
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
    background-color: #00001C;
    color: var(--color-white);
}

.h1 {
    font-size: 64px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 28px;
}

.h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 22px;
}

.subtitle {
    margin-bottom: 35px;
}

.text-center {
    text-align: center;
}

.text-blue {
    color: var(--color-blue);
}

.button-primary {
    background: var(--color-blue);
    color: var(--color-white);
    border-radius: var(--border-radius);
    font-size: 17px;
    padding: 17px 27px;
    transition: all .2s ease;
}

.button-primary:hover {
    background: var(--color-blue-dark);
}

.btn-link {
    color: var(--color-blue);
    font-size: 20px;
    display: inline-block;
    background: url(../images/button-link.svg) 100% 50% no-repeat;
    padding: 0px 38px 2px 0;
    transition: all .2s ease;
}

.btn-link:hover {
    color: var(--color-blue-dark);
}

.header-gap {
    margin-bottom: 138px;
}

.header-phone {
    
}

header {
    background: var(--color-bg-blue);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    z-index: 99;
}

header .container {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    position: relative;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    font-size: 17px;
}

.nav-item:hover{
    color: var(--color-blue);
}

.burger {
    width: 24px;
    display: none;
    flex-direction: column;
    align-items: end;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all .3s ease;
}

.burger span:nth-child(1) {
    width: 100%;
}

.burger span:nth-child(2) {
    width: 80%;
}

.burger span:nth-child(3) {
    width: 90%;
}

.burger:hover span,
.burger.--active span {
    background-color: var(--color-blue) !important;
    width: 100% !important;
}

.img-accordion {
    text-align: center;
    position: relative;
}

.img-accordion img {
    text-align: center;
    border-radius: 21px;
    width: 70%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.img-accordion::before {
    content: '';
    position: absolute;
    left: 9%;
    right: 9%;
    top: 17%;
    bottom: 17%;
    background: #14152f;
    border-radius: 21px;
    z-index: 1;
}

.img-accordion::after {
    content: '';
    position: absolute;
    left: 12%;
    right: 12%;
    top: 9%;
    bottom: 9%;
    background: #1e1f38;
    border-radius: 21px;
    z-index: 2;
}


.skills-mkr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--gap);
    justify-items: center;
}

.skills-mkr__item {
    background: var(--color-bg-blue);
    border-radius: 16px;
    padding: 32px;
    font-weight: 700;
    font-size: 32px;
    width: 100%;
}

.skills-mkr__item-last:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 15px);
}


.corporate-intro {
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 32px;
    display: flex;
    padding: 32px;
    border-radius: 16px;
    align-items: center;
    gap: 32px;
    margin-bottom: 30px;
}

.corporate-intro b {
    display: block;
    flex: 1;
}

.corporate-intro span {
    display: block;
    width: 30px;
    height: 30px;
    background: #00001C;
    border-radius: 35px;
}


.skills-company {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.skills-company__item {
    background: var(--color-bg-blue);
    border-radius: 16px;
    padding: var(--padding);
    font-weight: 700;
}

.skills-company__img {
    width: 100px;
    height: 100px;
    background: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border-radius: 110px;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 80px;
}

.skills-company__img-reverse {
    color: var(--color-blue);
    background: var(--color-white);
}

.skills-company__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.skills-company__subtitle {
    font-size: 20px;
    font-weight: normal;
}


.skills-team {}

.sc5 {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding: 0;
    background: var(--color-blue);
    color: var(--color-white);
}

.sc5>div {
    padding: var(--padding);
    flex: 1;
}

.sc5>img {
    width: calc(50% - 20px);
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.sc6 {
    grid-column: span 3;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding: 0;
    height: 465px;
}

.sc6>div {
    padding: var(--padding);
    flex: 1;
}

.sc6>img {
    width: calc(67.5% - 20px);
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}


.form-partners-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--gap);
}

.form-partners-wrapper__item {
    background: var(--color-bg-blue);
    border-radius: 16px;
    padding: var(--padding);
    position: relative;
    overflow: hidden;
}

.form-partners-wrapper__item:last-child {
    background: var(--color-blue);
    padding: 0;
}

.form-partners-wrapper__item:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.form-partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 65px 0 0;
}

.form-partners .button-primary {
    grid-column: span 2;
}

.input {
    border: 1px solid var(--color-gray);
    border-radius: var(--border-radius);
    background: none;
    color: var(--color-gray);
    font-size: 17px;
    padding: 18px 25px;
}

.input.--modal::placeholder,
.input.--modal::-webkit-input-placeholder,
.input.--modal:-moz-placeholder,
.input.--modal::-moz-placeholder,
.input.--modal:-ms-input-placeholder,
.input.--modal::-ms-input-placeholder {
    color: var(--color-gray);
}

.input:hover,
.input:focus {
    border-color: var(--color-blue) !important;
}

.skills-deal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--gap);
}

.sd1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    background: var(--color-blue);
    color: var(--color-white);
}

.sd1>div {
    padding: var(--padding);
}

.sd1>img {
    width: 100%;
    height: calc(50% - 20px);
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.sd2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.sd3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.sd4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.sd5 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.team-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
}

.team-contacts__item {
    border-radius: 16px;
}

.team-contacts__item.--person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-column: 1 / span 2;
    background: var(--color-bg-blue);
    padding: 19px 40px;
    gap: 40px;
}

.team-contacts__item.--person .img {
    width: 24px;
}

.team-contacts__item.--person .name {
    flex: 1;
}

.team-contacts__item.--person .phone {
    font-size: 32px;
    font-weight: bold;
}

.team-contacts__item.--image {
    height: 150px;
    grid-column: 1 / span 2;
}

.team-contacts__item.--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.team-contacts__item.--director {
    background: var(--color-bg-blue);
    padding: var(--padding);
    display: flex;
    flex-direction: column;
}

.team-contacts__item.--director .post {
    color: #6C6C86;
    margin-bottom: 13px;
}

.team-contacts__item.--director .name {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 23px;
}

.team-contacts__item.--director .phone {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 40px;
}

.team-contacts__item.--director .contacts {
    margin-top: auto;
}

.w-100 {
    width: 100%;
}

.flats-slider {}

.flats {
    padding: var(--padding);
    text-align: center;
    background: var(--color-white);
    border-radius: 16px;
}

.flats .name {
    color: #00001C;
    font-size: 32px;
    font-weight: bold;
}

.flats .area {
    color: var(--color-blue);
    margin-bottom: 29px;
}

.flats>img {
    max-width: 100%;
    height: auto;
    margin-bottom: 22px;
}

.flats .price {
    color: #00001C;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.swiper-pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.swiper-pagination-bullet-active{
    background: var(--color-blue) !important;
    width: 30% !important;    
}

.swiper-pagination-bullet{
    height: 6px;
    border-radius: 3px;
    background: var(--color-gray);
    width: 10%;
    transition: all .3s ease;
    display: block;
    cursor: pointer;
}


.raffle {
    padding: var(--padding);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
    border-radius: 16px;
    background: var(--color-bg-blue);
    align-items: center;
}

.raffle__item {}

.raffle__item.--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.raffle__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.raffle__subtitle {
    margin-bottom: 64px;
}


.qna {
    display: grid;
    grid-template-columns: repeat(1fr);
    gap: var(--gap);
}

.qna__item {
    background: var(--color-bg-blue);
    border-radius: 16px;
    padding: var(--padding);
}

.qna__title {
    display: flex;
    justify-content: space-between;
    gap: var(--gap);
    font-size: 32px;
    font-weight: bold;
    width: 100%;
}

.qna__title span {
    display: block;
    flex: 1;
    text-align: left;
}

.qna__answer {
    display: none;
    color: #6C6C86;
    border-top: 1px solid #6C6C86;
    margin-top: 40px;
    padding-top: 40px;
}

.qna__item.active .qna__answer {
    display: block;
}

.qna__item.active .close img {
    transform: rotate(180deg);
}

.close img {
    transition: transform 0.3s ease;
}


.help-missing {
    background: var(--color-white);
    border-radius: 16px;
    padding: var(--padding);
    position: relative;
}

.help-missing ::after {
    content: '';
    left: 3%;
    right: 3%;
    height: 32px;
    background: var(--color-blue);
    position: absolute;
    bottom: -32px;
    border-radius: 0 0 16px 16px;
}

.help-missing__title {
    display: flex;
    align-items: center;
    gap: var(--gap);
    font-size: 64px;
    color: #00001C;
    font-weight: 900;
    margin-bottom: 60px;
}

.help-missing__contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.help-missing__item {}

.help-missing__item span {
    display: block;
    color: #6C6C86;
}

.help-missing__item b {
    display: block;
    font-size: 32px;
    color: var(--color-blue);
}

.housing-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.housing-list__item {
    border-radius: 16px;
    background: var(--color-bg-blue);
    padding: var(--padding);
}

.housing-list__item .title {
    font-size: 32px;
    font-weight: bold;
    display: block;
    margin-bottom: 30px;
}

.housing-list__item .img {
    display: block;
    height: 250px;
    margin-bottom: 30px;
}

.housing-list__item img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 1, 27, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--padding);
    z-index: -1;
    opacity: 0;
    transition: all .2s ease;
}

.modal.--active{
    opacity: 1;
    z-index: 1000;
    /* backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */
}

.modal-content {
    background: var(--color-white);
    padding: var(--padding);
    padding-top: 52px;
    border-radius: 16px;
    position: relative;
    max-width: 470px;
    width: 100%;    
    transition: all .3s ease;
    transform: scale(1.2);
}
.modal.--active .modal-content {
    transform: scale(1);
}


.modal-content .h2 {
    color: #00001C;
}

.modal-content p {
    color: #6C6C86;
}

.modal-form {
    display: grid;
    grid-template-columns: repeat(1fr);
    gap: 20px;
}

.close-modal-btn {
    position: absolute;
    right: 10px;
    top: 10px;
}


@media (max-width: 1300px) {
    nav {
        display: none;
    }

    nav.--active {
        display: flex;
        flex-direction: column;
        align-items: end;
        position: absolute;
        right: 0;
        top: 40px;
        background: var(--color-bg-blue);
        padding: 20px;
        border-radius: 0 0 16px 16px;
    }

    .header-phone {
        margin-left: auto;
    }

    .burger {
        display: flex;
    }

    .h1,
    .team-contacts__item.--director .phone,
    .help-missing__title {
        font-size: 44px;
    }

    body {
        font-size: 20px;
    }

    .skills-mkr__item,
    .corporate-intro,
    .team-contacts__item.--person .phone,
    .team-contacts__item.--director .name,
    .flats .name,
    .flats .price,
    .qna__title,
    .help-missing__item b,
    .housing-list__item .title {
        font-size: 24px;
    }


}

@media (max-width: 1024px) {

    .skills-deal {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .sd1 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        flex-direction: row;
    }

    .sd1>img {
        width: calc(50% - 20px);
        height: 100%;
    }

    .sd2 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .sd3 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .sd4 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .sd5 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    /* .sd1, .sd2, .sd3, .sd4, .sd5 {
        height: fit-content;
    } */

}

.tc-w {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tc-t {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 768px) {
    .skills-company {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .sc5,
    .sc6 {
        grid-column: unset;
    }

    .sc5 {
        flex-direction: column;
    }

    .sc5>img {
        width: 100%;
        height: 242px;
        object-position: top;
    }

    .sc6>img {
        width: calc(48.5% - 20px);
    }

    .skills-deal {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .sd1 {
        width: 100%;
    }

    .sd2,
    .sd3,
    .sd4,
    .sd5 {
        width: calc(50% - 10px);
    }

    .form-partners-wrapper {
        grid-template-columns: 1fr;
    }

    .form-partners-wrapper__item:last-child {
        height: 440px;
    }

    .team-contacts__item.--person {
        flex-direction: column;
        align-items: start;
    }

    .tc-w {
        width: 100%;
    }

    .team-contacts__item.--director {
        grid-column: 1 / span 2;
    }

    .raffle {
        grid-template-columns: repeat(1, 1fr);
    }

    .raffle__item.--image {
        margin-top: 35px;
    }

    .housing-list {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media (max-width: 640px) {

    :root {
        --padding: 20px;
        --gap: 20px;
    }

    .header-phone {
        display: none;
    }

    .logo img {
        width: 170px;
    }

    .h1,
    .team-contacts__item.--director .phone,
    .help-missing__title {
        font-size: 27px;
    }

    body {
        font-size: 16px;
    }

    .skills-mkr__item,
    .corporate-intro,
    .team-contacts__item.--person .phone,
    .team-contacts__item.--director .name,
    .flats .name,
    .flats .price,
    .qna__title,
    .help-missing__item b,
    .housing-list__item .title {
        font-size: 20px;
    }

    .img-accordion img {
        width: 95%;
        height: 350px;
    }

    .img-accordion::before {
        left: -3%;
        right: -3%;
        top: 9%;
        bottom: 9%;
    }

    .img-accordion::after {
        left: 0%;
        right: 0%;
        top: 3%;
        bottom: 3%;
    }

    .skills-mkr {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }

    .skills-mkr__item-last:last-child {
        width: 100%;
    }

    .sc6 {
        height: auto;
        flex-direction: column;
    }

    .sc6>img {
        width: 100%;
    }

    .form-partners {
        grid-template-columns: repeat(1, 1fr);
    }

    .form-partners .button-primary {
        grid-column: span 1;
    }

    .sd1 {
        flex-direction: column;
    }

    .sd1>img {
        width: 100%;
        height: auto;
    }

    .sd2, .sd3, .sd4, .sd5 {
        width: 100%;
    }

    .tc-w {
        flex-direction: column;
        align-items: flex-start;
    }

    .tc-w .button-primary{
        width: 100%;
    }

    .container {
        margin-bottom: 140px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .help-missing__contacts {
        grid-template-columns: repeat(1, 1fr);        
    }

}