﻿.contact-line {
    position: relative;
}

.contact-line-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .contact-line-image img {
        width: 100%;
        height: 100%;
    }

.contact-line-inner {
    padding-left: 110px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 36px;
    padding-top: 63px;
    padding-bottom: 55px;
    align-items: center;
    justify-content: center;
}

.contact-line-text {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.contact-line-title {
    font-family: Outfit;
    font-weight: 700;
    font-size: 48px;
    line-height: 52px;
    text-align: center;
    vertical-align: middle;
    width: 768px;
    color: #fff;
    max-width: 100%;
}

.contact-line-description {
    font-family: Outfit;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.32px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    width: 500px;
    max-width: 100%;
}

.contact-line-phone-and-mail {
    display: flex;
    align-items: center;
    column-gap: 48px;
}

.contact-line-phone a, .contact-line-mail a {
    display: flex;
    align-items: center;
    column-gap: 9px;
    font-family: Outfit;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    text-decoration: none;
}

.contact-line-button a {
    padding: 16.5px 48px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Outfit;
    font-weight: 800;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: none;
    color: #1A3563;
    border-radius: 4px;
}

@media only screen and (max-width: 1199px)
{
    .contact-line-inner {
        padding-left: 0;
    }

    .contact-line-title {
        font-size: 36px;
        line-height: 46px;
        width: 550px;
        max-width: 100%;
    }

    .contact-line-description {
        font-size: 18px;
        line-height: 26px;
    }

    .contact-line-button a {
        padding: 16px 42px;
        font-size: 16px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 767px)
{
    .contact-line-title {
        font-size: 24px;
        line-height: 32px;
        width: 430px;
        max-width: 100%;
    }

    .contact-line-description {
        font-size: 16px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 575px)
{
    .contact-line-phone-and-mail {
        flex-direction: column;
        row-gap: 12px;
    }
}