.ctabar img {
    max-width: 26px;
    height: auto;
    display: block;
    margin-right: 8px;
}

.cta-info a,
.cta-socials a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #292929;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.ctabar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.5rem;
    background-color: #059700;
    align-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1.5rem;
    text-align: center;
}

.cta-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.0rem;
    justify-content: flex-start;
}

.cta-socials {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-socials img:hover {
    background-color: #f3f3f36a;
    transition: ease 0.1s;
    border-radius: 6px;
}

.cta-info a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #292929;
    font-weight: 500;
    gap: 0.5rem;
}

.cta-info img,
.cta-socials img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.cta-divider {
    width: 2px;
    height: 32px;
    background-color: #292929;
    margin: 0 1rem;
}

@media (max-width: 1081px) {
    .cta-divider {
        display: none;
    }
}

@media (max-width: 1081px) {
    .cta-info span {
        display: none;
    }

    .cta-info a {
        justify-content: center;
    }

    .cta-info {
        gap: 1rem;
        justify-content: space-around;
    }
}