.cta-section {
    padding: 0;
}

.home-contact {
    width: 100%;
}

.home-contact .fullblock {
    width: 100%;
    background-color: #13293f;
    background-image: url("../images/common/home-contact-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-contact .container {
    width: min(1360px, calc(100% - 24px));
    margin: 0 auto;
    padding: 135px 0;
}

.home-contact .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
}

.home-contact .title {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 3.3rem);
    line-height: 1.08;
    text-transform: none;
}

.home-contact p {
    margin: 0;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.92);
}

.home-contact .more {
    display: flex;
    justify-content: flex-end;
}

.home-contact .more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 65px 20px 45px;
    border-radius: 0;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    zoom: 1;
    transition: color 0.3s linear, background-color 0.3s linear;
}

.home-contact .more a:hover {
    background: #fff;
    color: #000;
    transform: none;
}

@media (max-width: 1100px) {
    .home-contact .container {
        padding: 88px 0;
    }
}

@media (max-width: 860px) {
    .home-contact .row {
        grid-template-columns: 1fr;
    }

    .home-contact .more {
        justify-content: flex-start;
    }

    .home-contact .container {
        padding: 64px 0;
    }
}

@media (max-width: 560px) {
    .home-contact .container {
        width: min(1360px, calc(100% - 16px));
        padding: 22px 0;
    }
}