html {
    height: 100%;
    font-size: 12px;

    @media all and (min-width: 480px) and (max-width: 1200px) {
        font-size: 12px;
    }

    @media (min-width: 1200px) {
        font-size: 16px;
    }
}

#wpadminbar {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    height: 100%;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;

    @media all and (min-width: 480px) and (max-width: 1200px) {
        font-size: 14px;
    }

    @media (min-width: 1200px) {
        font-size: 16px;
    }
}
/* 
body {
    overflow-x: hidden;
}
.aos-init:not(.aos-animate):after {
    position: fixed;
} */

@media (max-width: 768px) {
    .hideOverflowOnMobile {
        overflow: hidden;
    }
}

input[type="text"],
textarea {
    border: none;
    outline: none;
    width: 100%;
    border-radius: 0.625rem;
    padding: 1rem;
    font-family: "Montserrat", sans-serif;
}

button {
    border: none;
    outline: none;
    border-radius: 0.625rem;
    padding: 0.5rem;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
}

* {
    padding: 0;
    margin: 0;
    /* list-style: none; */
    box-sizing: border-box;
    text-decoration: none;
}

.home-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background: rgba(77, 148, 220, 1);
    color: rgba(255, 255, 255, 1);
}

.container {
    width: 100%;
    margin: 0 auto;

    @media (max-width: 1023px) {
        padding: 1rem;
    }

    @media (min-width: 1024px) and (max-width: 1339px) {
        max-width: 960px;
        width: 960px;
    }

    @media (min-width: 1340px) {
        max-width: 1340px;
        width: 1340px;
    }
}

.nav-wrapper {
    background: rgba(22, 82, 180, 1);
    color: rgba(255, 255, 255, 1);
}

.mb-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 1rem;
    z-index: 998;
    background: rgba(18, 75, 176, 1);

    @media (min-width: 1340px) {
        display: none;
    }
}

.navbar_burger {
    display: flex;
    width: 40px;
    height: 40px;
    background: url("../images/burger-menu.png") center / contain no-repeat;
}

.navbar_close {
    display: flex;
    width: 20px;
    height: 20px;
    background: url("../images/burger-close.png") center / contain no-repeat;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 1rem;

    @media (min-width: 1340px) {
        display: none;
    }
}

.ds-logo {
    cursor: pointer;

    @media (max-width: 1339px) {
        display: none;
    }
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media (max-width: 1339px) {
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(22, 82, 180, 1);
        flex-direction: column;
        padding: 2rem 0;
        font-size: 1rem;
        height: 100vh;
        height: 100dvh;

        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -ms-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
    }

    @media (min-width: 1340px) {
        height: unset;
        flex-direction: row;
        font-size: 0.875rem;
        padding: 0.8rem 0;
        gap: 1rem;
    }
}

.navigation > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    font-size: 2rem;

    @media (min-width: 1340px) {
        font-size: 1rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
        text-align: unset;
    }
}

.navigation > ul a {
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
}

.navigation-feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 8rem;

    @media (min-width: 1340px) {
        flex-direction: row;
        margin-bottom: unset;
    }
}

.navigation-feedback-item .emai-icon {
    min-width: 21px;
    max-width: 21px;
    min-height: 21px;
    max-height: 21px;
    background: no-repeat center url("../images/email.svg");
}

.navigation-feedback-item .buttons-icon {
    min-width: 21px;
    max-width: 21px;
    min-height: 28px;
    max-height: 28px;
    background: no-repeat center url("../images/button.svg");
}

.navigation-feedback-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.75rem;

    @media (min-width: 1340px) {
        font-size: 0.75rem;
    }
}

.navigation-feedback-item a {
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
}

.top-content {
    background: linear-gradient(180deg, #0841aa 0%, #4d95dd 100%);
    width: 100%;
}

.fs-content {
    @media (max-width: 1339px) {
        margin-top: 4rem;
    }

    padding: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.375rem;

    @media (min-width: 1340px) {
        padding: 5rem 0;
        margin-bottom: 5rem;
        grid-template-columns: 1.5fr 1fr;
    }
}

.fs-content-text > button {
    width: fit-content;
    padding: 1rem 1.5rem;
    background: rgba(39, 151, 255, 1);
    margin-top: 1.5rem;
}

.fs-content-text > h5 {
    font-weight: 400;
    color: rgba(200, 215, 235, 1);
}

.fs-content-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fs-content-text h1 {
    font-size: 2rem;

    @media (min-width: 1340px) {
        font-size: 2.5rem;
    }
}

.fs-content-text span {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

.fs-content-mini-blocks {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(200, 215, 235, 1);
    gap: 1rem;
}

.fs-content-mini-blocks > div {
    padding-left: 0.8rem;
    position: relative;
}

.fs-content-mini-blocks > div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30%;
    transform: translate(0, -30%);
    height: 100%;
    width: 1px;
    background-color: rgba(200, 215, 235, 1);
}

.fs-content-figure {
    border-radius: 0.625rem;

    height: 25rem;

    @media (min-width: 1340px) {
        min-height: 100%;
        max-height: 100%;
    }
}

.company-info {
    display: flex;
    flex-direction: column;
    padding: 1rem 0rem;
    font-size: 1rem;
    line-height: 1.7188rem;
}

.company-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1.875rem;
}

.project-objectives {
    margin: 1rem 0 5rem;
}

.project-objectives ol {
    margin-left: 1.25rem;
}

.project-members {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
    margin-bottom: 8rem;

    @media (min-width: 1340px) {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-member {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.member-figure {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0.625rem;
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    line-height: 1;
}

.member-name {
    font-weight: 700;
    font-size: 1.15rem;
}

.member-position {
    font-weight: 400;
    font-size: 0.8rem;
}

.current-work {
    padding: 1rem 0;
}

.current-work h1 {
    font-size: 2rem;
    margin-bottom: 2rem;

    @media (min-width: 1340px) {
        width: 70%;
        margin-bottom: 5rem;
        font-size: 2.5rem;
    }
}

.current-works {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 2rem;
}

.current-work-item {
    display: flex;
    flex-direction: column;
    gap: 3.375rem;

    @media (min-width: 1340px) {
        flex-direction: row;
    }
}

.current-work-figure {
    width: 100%;
    height: 25rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0.625rem;

    @media (min-width: 1340px) {
        width: 45%;
    }
}

.current-work-description {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    width: 100%;
    @media (min-width: 1340px) {
        width: 55%;
    }
}

.current-work-description > button {
    width: fit-content;
    padding: 1rem 1.5rem;
    background: rgba(39, 151, 255, 1);
    margin-top: 1.5rem;
}

.current-work-description > h2 {
    font-weight: 700;
    font-size: 2.25rem;
    position: relative;
}

.current-work-description > div {
    line-height: 1.5rem;
}

.current-work-description > h2::before {
    content: "";
    position: absolute;
    left: -0.5rem;
    top: 50%;
    height: 50%;
    width: 2px;
    transform: translate(0, -50%);
    background-color: rgba(255, 255, 255, 1);
}

.current-work-item:nth-child(even) {
    @media (min-width: 1340px) {
        flex-direction: row-reverse;
    }
}

.construction-progress {
    padding: 5rem 0;
}

.construction-progress h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.construction-progress > .content {
    display: flex;
    flex-direction: column;
    gap: 3.325rem;

    @media (min-width: 1340px) {
        flex-direction: row;
    }
}

.construction-progress > .content > .text-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.construction-progress > .content > .text-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.construction-progress > .content > .figure {
    width: 100%;
    max-height: 25rem;
    min-height: 25rem;
    border-radius: 0.625rem;
    background: url("../images/constraction.jpeg") center center / cover no-repeat;

    @media (min-width: 1340px) {
        min-width: 50%;
        max-width: 50%;
        max-height: 100%;
        min-height: 100%;
    }
}

.map {
    @media (max-width: 1339px) {
        display: flex;
        flex-direction: column-reverse;
        gap: 4rem;
        padding: 1rem 0 3rem;
    }

    @media (min-width: 1340px) {
        padding: 3rem 0;
        position: relative;
        padding: 5rem 0;
    }
}

.map > iframe {
    width: 100%;
    min-height: 25rem;
    max-height: 25rem;

    @media (min-width: 1340px) {
        min-height: 34.375rem;
        max-height: 34.375rem;
    }
}

.map > .contacts-wrapper {
    background: rgba(255, 255, 255, 1);
    color: rgba(16, 36, 65, 1);
    margin: 1rem;

    @media (min-width: 1340px) {
        margin: unset;
        position: absolute;
        top: 50%;
        left: 20%;
        transform: translate(-20%, -50%);
        z-index: 100;
        width: fit-content;
    }
}

.contacts-wrapper > .contacts {
    padding-bottom: 0.5rem;

    @media (min-width: 1340px) {
        padding: 2rem 2.5rem 0.5rem;
    }
}
.contacts-wrapper > .contacts > a {
    font-weight: 700;
    font-size: 1.5rem;
    color: rgba(12, 70, 173, 1);
}

.contacts-wrapper > .contacts > .content {
    padding: 1rem 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 2rem 3rem;
}

.contacts > .content > .content-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contacts > .content .content-section > p {
    color: rgba(126, 136, 136, 1);
    font-size: 0.75rem;
}

.contacts > .content > .content-section > .content-section-label {
    display: flex;
    gap: 0.5rem;
}

.content-section-label > label,
.content-section-label > a {
    font-weight: 700;
    color: rgba(16, 36, 65, 1);
}

.content-section-label > .icon {
    min-width: 1.25rem;
    min-height: 1.25rem;
}

.content-section-label .geo {
    background: no-repeat center/contain url("../images/icons/geo.svg");
}
.content-section-label .clock {
    background: no-repeat center/contain url("../images/icons/clock.svg");
}
.content-section-label .phonebtns {
    background: no-repeat center/contain url("../images/icons/phonebtns.svg");
}
.content-section-label .whatsapp {
    background: no-repeat center/contain url("../images/icons/whatsapp.svg");
}

.contacts-wrapper > .bottom-content-wrapper {
    border-top: 1px solid rgba(223, 223, 223, 1);
}

.bottom-content-wrapper > .bottom-content {
    padding: 1.5rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media (min-width: 1340px) {
        padding: 1.5rem 2.5rem 2rem;
    }
}

.bottom-content-wrapper > .bottom-content > button {
    background: rgba(39, 151, 255, 1);
    padding: 1rem;
}

.social-networks {
    display: flex;
    gap: 1rem;
}

.social-networks > .social-icon {
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    cursor: pointer;
}

.social-networks > .vk {
    background: no-repeat center url("../images/vk.svg");
}
.social-networks > .telegram {
    background: no-repeat center url("../images/telegram.svg");
}
.social-networks > .instagram {
    background: no-repeat center url("../images/instagram.svg");
}

.feedback {
    padding: 3rem 0 5rem;
}

.feedback > .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.325rem;

    @media (min-width: 1340px) {
        grid-template-columns: 1.5fr 1fr;
    }
}

.feedback > .text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    width: 50%;
}

.feedback > .content > .text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    line-height: 1.5rem;
}

.feedback > .content > .form-content {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.feedback > .content a {
    color: rgba(255, 255, 255, 1);
}

.form-section {
    display: flex;
    width: 100%;
    gap: 1rem;
    font-size: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.form-button {
    /* background: rgba(39, 151, 255, 1); */
    background: rgba(32, 62, 117, 1);
    padding: 1rem;
    /* border-radius: unset; */

    @media (min-width: 1340px) {
        padding: 1rem 2rem;
    }
}
.form-section-p {
    width: 60%;
}

footer {
    background: rgba(28, 30, 33, 1);
    color: rgba(255, 255, 255, 1);
}

footer .content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 3.75rem 0 2rem;

    @media (min-width: 1340px) {
        grid-template-columns: 1fr auto auto 0.8fr;
    }
}

footer .content p {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

footer .content .phone-number {
    margin-top: 1rem;
}

footer .content .social-networks {
    margin-top: 1rem;
}

.interspective {
    width: 100%;
    text-align: center;
    padding: 2.5rem 0;
    font-size: 0.875rem;
    position: relative;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

footer a {
    color: rgba(255, 255, 255, 1);
}

footer a:hover {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.breadcrumb {
    display: flex;
    gap: 0.625rem;
    list-style: none;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: rgba(60, 60, 60, 1);

    margin-top: 5.5rem;

    @media (min-width: 1340px) {
        margin-top: 1rem;
    }
}

.breadcrumb > a {
    text-decoration: none;
}

.breadcrumb > li {
    cursor: pointer;
}

.breadcrumb > li:before {
    content: ">";
    margin-right: 0.625rem;
}

.breadcrumb > li:first-child:before {
    content: "";
    margin-right: 0rem;
}
.breadcrumb > li:last-child {
    color: rgba(29, 128, 235, 1);
}

.main-page-contacts {
    padding: 1rem;

    @media (min-width: 1340px) {
        padding: unset;
    }
}

.wpcf7-form-control-wrap {
    width: 100%;
}
