.get-in-touch-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.get-in-touch {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(138.35deg, #37C1E0 -8.29%, #7EADFB 113.43%);
    border-radius: 13px;
    padding: 24px 40px;
}

.get-in-touch a {
    color: var(--white);
    font-family: 'GFSNeohellenic';
    font-weight: 500;
    font-size: clamp(24px, 4.5vw, 32px);
    line-height: 130%;
    text-decoration: underline !important;
    text-transform: uppercase;
}

.icon-wrapper {
    display: flex;
    padding: 14px 18px 14px 0;
    border-right: 2px dashed;
}

.follow-us {
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(138.35deg, #9747FF -8.29%, #7EADFB 113.43%);
    border-radius: 13px;
    padding: 24px 40px;
    font-family: 'GFSNeohellenic';
    font-weight: 500;
    font-size: clamp(24px, 4.5vw, 32px);
    line-height: 130%;
    text-transform: uppercase;
}

.contact-social-icon {
    display: flex;
    padding: 8px 0;
}

.follow-us svg {
    height: 44px;
    width: 40px;
}



@media (max-width: 992px) {

    .get-in-touch-wrapper {
        flex-direction: column;
    }

    .follow-us {
        gap: 20px;
    }

    .follow-us svg {
        height: 32px;
        width: 30px;
    }

}