﻿/* Global */
* {
    font-family: "Poppins", sans-serif;
}

.container {
    max-width: calc(1200px + 30px);
    margin: 0 auto;
    width: 100%;
    padding: 0px 15px;
    position: relative;
    z-index: 2;
}

.logoImg {
    width: 165px;
}

.footerLogoImg {
    width: 130px;
}

.header {
    background: var(--bg-header);
}

.header .war {
    text-align: center;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header .war p {
    position: absolute;
    margin: 0;
    color: var(--color-warning);
    font-size: 16px;
    font-weight: 700;
    transition: opacity 0.6s ease;
}

.header .war p#war-text-2 {
    opacity: 0;
    pointer-events: none;
}

.header .war p span {
    color: var(--text-dark);
}

.header .header2 {
    background: var(--primary-color-light);
}

.header .header2 .header2-cont {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.header .header2 .header2-cont .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header2 .header2-cont .right-side {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .header2 .header2-cont .call {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    gap: 8px;
    line-height: normal;
    text-decoration: underline;
}

.header .header2 .header2-cont .call:before {
    content: "";
    background-image: url(../img/call.svg);
    width: 24px;
    height: 24px;
}

.header .header2 .header2-cont .btn {
    border-radius: 64px;
    background: var(--text-dark);
    color: var(--color-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    height: 48px;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    transform-style: preserve-3d;
}

.header .header2 .header2-cont .btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(5px);
}

.section-text {
    padding: 60px 0px 80px;
    background: var(--bg-section);
}

.section-text .container {
    max-width: 945px;
}

.section-text-cont {
    background: var(--color-white);
    border-radius: 12px;
    padding: 48px 56px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.section-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--primary-color-light);
}

.section-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 40px;
    margin-bottom: 14px;
    padding-left: 12px;
    border-left: 3px solid var(--primary-color);
}

.section-text p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--color-text-body);
    margin-bottom: 16px;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.section-text a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section-text ul {
    list-style: disc !important;
    padding-left: 24px;
    margin-bottom: 16px;
}

.section-text ul li {
    list-style: disc !important;
    font-size: 15px;
    line-height: 1.85;
    color: var(--color-text-body);
    margin-bottom: 10px;
    padding-left: 6px;
}

.section-text ul li::marker {
    color: var(--primary-color);
    font-size: 18px;
}

footer {
    padding: 80px 0px;
    background: var(--text-dark);
}

footer .footer-cont-1 .list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 20px;
}

footer .footer-cont-1 .list .itm {
    flex: 1;
    border-radius: 32px;
    background: var(--color-footer-bg-item);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
}

footer .footer-cont-1 .list .itm h6 {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-light);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

footer .footer-cont-2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

footer .footer-cont-2 .left-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

footer .footer-cont-2 .right-side .list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

footer .footer-cont-2 .right-side .list .itm {
    padding: 0px 20px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 64px;
    background: var(--bg-white-soft);
}

footer .footer-cont-2 .right-side .list .itm a {
    white-space: nowrap;
    color: var(--text-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    text-decoration: underline;
}

footer .footer-cont-2 .right-side .list .itm p {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 8px;
    color: var(--text-dark);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

footer .footer-cont-2 .right-side .list .itm .call:before {
    content: "";
    background-image: url(../img/call.svg);
    width: 24px;
    height: 24px;
}

footer .footer-cont-2 .right-side .list .itm .mail:before {
    content: "";
    background-image: url(../img/address.svg);
    width: 24px;
    height: 24px;
}

footer .footer-cont-2 .right-side .list .itm .address:before {
    content: "";
    background-image: url(../img/mail.svg);
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-repeat: no-repeat;
}

footer .footer-cont-3 {
    padding-bottom: 80px;
    position: relative;
}

footer .footer-cont-3::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(to right, var(--text-dark) 0%, var(--primary-color-light) 50%, var(--text-dark) 100%);
}

footer .footer-cont-3 p {
    color: var(--primary-color-light);
    margin-bottom: 40px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

footer .footer-cont-3 p:last-child {
    margin-bottom: 0px;
}

footer .footer-cont-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
}

footer .footer-cont-4 .left-side p {
    color: var(--primary-color-light);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

footer .footer-cont-4 .right-side .list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

footer .footer-cont-4 .right-side .list .itm {
    border-right: 1px solid var(--border-color);
    padding-right: 20px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-self: center;
}

footer .footer-cont-4 .right-side .list .itm:last-child {
    margin-right: 0px;
    border-right: 0px;
    padding-right: 0px;
}

footer .footer-cont-4 .right-side .list .itm a {
    color: var(--primary-color-light);
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-self: center;
}

.contact-block {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
    gap: 24px;
    margin: 24px 0;
}

.contact-item {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 8px;
}



.contact-item a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

@media only screen and (max-width: 1230px) {

    footer .footer-cont-1 .list .itm {
        padding: 40px 15px;
    }

    footer .footer-cont-4 .right-side .list .itm {
        padding-right: 10px;
        margin-right: 10px;
    }

    footer .footer-cont-2 .right-side .list {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 1050px) {

    footer .footer-cont-2 .right-side .list {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 992px) {

    footer .footer-cont-4 {
        align-items: flex-start;
        gap: 40px;
        flex-direction: column-reverse;
    }
}

@media only screen and (max-width: 768px) {

    .section-text {
        padding: 32px 0px 48px;
    }

    .section-text-cont {
        padding: 28px 20px;
        border-radius: 8px;
    }

    .section-text h2 {
        font-size: 20px;
    }

    .section-text h3 {
        margin-top: 28px;
    }

    .header .header2 .header2-cont .logo {
        width: 182px;
    }

    .header .header2 .header2-cont .logo img {
        width: 100%;
    }

    .header .header2 .header2-cont .call {
        display: none;
    }

    footer {
        padding: 40px 0px;
    }

    footer .footer-cont-1 .list {
        flex-direction: column;
        margin-bottom: 40px;
    }

    footer .footer-cont-1 .list .itm {
        width: 100%;
    }

    footer .footer-cont-2 {
        flex-direction: column;
    }

    footer .footer-cont-2 .left-side {
        gap: 40px;
    }

    footer .footer-cont-2 .right-side .list {
        flex-direction: column;
    }

    footer .footer-cont-3 {
        padding-bottom: 40px;
    }

    footer .footer-cont-4 {
        padding-top: 40px;
    }

    footer .footer-cont-4 .right-side .list {
        flex-direction: column;
    }

    footer .footer-cont-4 .right-side .list .itm {
        margin-right: 0px;
        padding-right: 0px;
        border-right: 0px;
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    footer .footer-cont-4 .right-side .list {
        align-items: flex-start;
    }

    footer .footer-cont-4 .right-side .list .itm a {
        font-size: 16px;
    }

    footer .footer-cont-4 .left-side p {
        font-size: 16px;
    }

    footer .footer-cont-2 .right-side .list .itm {
        padding: 0px 15px;
    }

    .header .war p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 375px) {
    footer .footer-cont-2 .right-side .list .itm p {
        font-size: 11px;
    }

    footer .footer-cont-2 .right-side .list .itm .address:before {
        width: 33px;
    }
}