.header-call-to-action a,
.header-call-to-action a:link,
.header-call-to-action a:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    max-width: 120px;
    height: 52px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2;
    background-color: #fc6818;
    text-align: center;
    text-shadow:
        -1px -1px 0 rgb(0 0 0 / 10%),
        1px -1px 0 rgb(0 0 0 / 10%),
        -1px 1px 0 rgb(0 0 0 / 10%),
        1px 1px 0 rgb(0 0 0 / 10%);
    border-radius: 4px;
}

@media screen and (min-width: 1024px) {
    .header-call-to-action {
        position: fixed;
        top: 109px;
        right: 0;
    }
    .header-call-to-action a,
    .header-call-to-action a:link {
        padding: 20px 15px;
        max-width: 110px;
        height: auto;
        font-size: 14px;
        line-height: 1.4;
        text-align: left;
        border-radius: 0;
        box-shadow: 0px 0px 4px rgb(0 0 0 / 30%);
    }
    
    @media (hover: hover) {
        .header-call-to-action a:hover {
            transform: scale(1.1) translateX(-5px);
            box-shadow: 0px 0px 10px rgb(0 0 0 / 60%);
            transition: all 0.5s ease-in-out;
        }
    }
}