/* GENERAL START */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

body {
    font-family: "Source Sans 3", sans-serif;
    font-size: 20px;
}

body.lock {
    overflow: hidden;
}

.container {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

main {
    min-height: calc(100vh - 380px);
}

main .container {
    position: relative;
    padding: 100px 50px 100px 20px;
    margin: 0 auto;
}

main p {
    margin-bottom: 10px;
}

main a {
    color: #CF2127;
    font-weight: 600;
}

main .container::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 10px;
    width: 20px;
    height: 100%;
    background-image:
        linear-gradient(to bottom, #CF2127 20px, transparent 20px);
    background-size: 20px 40px;
}

b {
    color: #CF2127;
}

.main__title {
    font-size: 68px;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
}

/* GENERAL END */

/* HEADER START */

.above-header {
    height: 60px;
    background-color: #CF2127;
}

.header {
    border-bottom: 60px solid #CF2127;
}

.header .container {
    height: 100%;
    display: flex;
    align-items: end;
}

.header__row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
}

.header__images-decor {
    width: 100%;
    background-image: url('images/objekt-esi-solo.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

.header__images-row {
    padding-top: 50px;
    display: flex;
}

.header__logo img {
    width: 300px;
    border-radius: 20px;
    background-color: #fff;
    margin-left: 30%;
}

@media (max-width: 1371px) {
    .header__logo img {
        width: 300px;
        border-radius: 20px;
        background-color: #fff;
        margin-left: 0;
    }
}

@media (max-width: 1241px) {
    .header__images-row {
        padding-top: 30px;
    }
}

@media (max-width: 581px) {
    .header__logo img {
        width: 180px;
    }

    .contact-form .wpforms-container {
        width: calc(100% + 20px);
    }

    .header__navigation .menu {
        width: 100%;
    }

    .menu-city .menu {
        width: calc(100% + 20px);
    }
}

/* HEADER END */

/* FOOTER START */
.footer {
    background-color: #CF2127;
    color: #fff;
}

.footer h4 {
    font-weight: 600;
    font-size: 28px;
}

.footer h6 {
    font-weight: 600;
    font-size: 20px;
}

.footer__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__contacts {
    line-height: 130%;
}

.footer__img {
    height: 250px;
}

.footer__img img {
    height: 100%;
}

@media (max-width: 860px) {
    .footer__row {
        gap: 40px;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .footer__img {
        height: auto;
        width: 100%;
    }

    .footer {
        padding-bottom: 10px;
    }

    .footer__img img {
        height: auto;
    }
}

/* FOOTER END */