/* Contact & Support style */
p.content-text.title-contact {
    max-width: 600px;
    color: #00A7B5;
    font-weight: 600;
}
p.content-text.des-contact {
    max-width: 600px;
}
div#contact-container {
    display: flex;
    justify-content: space-between;
}
div#contact-cta-logos {
    display: flex;
}
p.c-text.content-text.des-contact {
    margin-bottom: 0 !important;
}
a#cons-button-cta {
    background: linear-gradient(to bottom, #00a7b5 0%, #00a7b5 50%, #94193b 50%, #94193b 100%);
    background-size: 100% 200%;
    background-position: 0 0;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-position 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 30px;
}
a#cons-button-cta::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid #00000000;
    border-bottom: 6px solid #00000000;
    border-left: 8px solid #94193b;
    transition: transform 0.3s ease;
    display: none;
}
a#cons-button-cta:hover {
    background-position: 0 100%;
    color: #ffffff;
    transform: translateY(-1px);
}
a#cons-button-cta:hover::after {
    transform: translateX(3px);
    border-left: 8px solid #ffffff;
    display: none;
}
img#contact-logo {
    padding-bottom: 30px;
}
p.contact-text {
    padding: 0 !important;
    margin: 0 !important;
    color: #00A7B5;
}