.home-contact {
    padding: 0 0 15px;
    background: #fff;
}

.home-contact__inner {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    width: min(1180px, calc(100% - 64px));
    min-height: 94px;
    margin: 0 auto;
    padding: 20px 24px;
    border-radius: 8px;
    background: #071e3a;
    color: #fff;
}

.home-contact__copy {
    display: flex;
    gap: 18px;
    align-items: center;
    min-width: 0;
}

.home-contact__icon {
    display: flex;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(65, 148, 255, .55);
    border-radius: 8px;
    background: rgba(25, 106, 209, .18);
}

.home-contact__icon svg,
.home-contact__action svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.home-contact__copy h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
	font-family: Roboto, Arial, sans-serif;
}

.home-contact__copy p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.45;
}

.home-contact__actions {
    display: flex;
    gap: 12px;
}

.home-contact__action {
    box-sizing: border-box;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(78, 151, 240, .5);
    border-radius: 7px;
    background: rgba(9, 42, 78, .9);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
        border-color .2s ease,
        background-color .2s ease;
}

.home-contact__action:hover {
    border-color: #4c9cff;
    background: #103964;
    color: #fff !important;
}

.home-contact__action svg {
    width: 19px;
    height: 19px;
    color: #55a5ff;
}

.home-contact__action--max {
    min-width: 176px;
}

.home-contact__action--max img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

@media (max-width: 980px) {
    .home-contact__inner {
        grid-template-columns: 1fr;
    }

    .home-contact__actions {
        padding-left: 64px;
    }
}

@media (max-width: 680px) {
    .home-contact {
        padding-bottom: 40px;
    }

    .home-contact__inner {
        width: calc(100% - 32px);
        padding: 22px 18px;
    }

    .home-contact__actions {
        flex-direction: column;
        padding-left: 0;
    }

    .home-contact__action {
        width: 100%;
    }
}
