.crf-switch-contact {
    position: relative;
    padding: 0 var(--global-lateral-padding);
    display: flex;
    flex-direction: row;
    width: 100%;
}

.crf-switch-contact__wrapper {
    display: flex;
    width: 100%;
}

.crf-switch-contact__cta {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 20px 0;
    box-sizing: border-box;
    font-weight: 500;
    color: var(--crf--middle-grey);
}
.crf-switch-contact__cta svg {
   margin-right: 15px;
   fill: var(--crf--middle-grey);
}
.crf-switch-contact__cta.active {
    color: var(--crf--shiny-blue);
}
.crf-switch-contact__cta.active svg {
    fill: var(--crf--shiny-blue);
}

.crf-switch-contact__cta.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--crf--shiny-blue);
    z-index: 2;
}

.crf-switch-contact__cta::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background-color: var(--crf--middle-grey);
    z-index: 1;
    transition: height 100ms ease-in-out;
}


.crf-switch-contact__cta:hover:after {
    content: "";
    height: 2px;
}


@media screen and (max-width: 768px) {
    .crf-switch-contact {
        padding: 0;
    }
    .crf-switch-contact__cta.active {
        display: none;
    }
    .crf-switch-contact__cta {
       width: 100%;
       color: var(--crf--shiny-blue);
       border-bottom: 2px solid var(--crf--shiny-blue);
    }
    .crf-switch-contact__cta svg {
        fill: var(--crf--shiny-blue);
    }
    .crf-switch-contact__cta:hover:after {
        content: none;
        height: 0;
    }
}