
.sideFloating{
    margin: 0;
    padding: 0;
    position: fixed;
    right: 10px;
    top: 150px;
}
@media (max-width: 1000px) {
    .sideFloating{
        display: none;
    }
}
.sideFloatingButtons{
    display: inline-grid;
    gap: 10px;
}
.sideFloatingButton{
    display: inline-flex;
    gap: 0;
    flex-direction: column;
    width: 6em;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    padding: 1rem;
    color: #fff;
    background: #e67e22;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: saddlebrown;
    & i{
        font-size: 2.4em;
        opacity: .8;
        margin-bottom: .25em;
        transition: transform .2s;
    }
    &:hover{
        opacity: 1;
        & i{
            transform: scale(1.2);
            transition: transform .2s;
        }
    }
}
.sideFloatingButton-green{
    background: #2ecc71;
    border-color: darkgreen;
}



.mobileFooterButtons{
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    background: #f5f5f5;
}
@media screen and (min-width: 1001px){
    .mobileFooterButtons {
        display: none;
    }
}
.mobileFooterButton-li{
    flex: 50% 0 0;
    padding: 1px;
}
.mobileFooterButton-li-full{
    flex-basis: 100%;
}
.mobileFooterButton{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2ecc71;
    color: #fff;
    padding: .75em .5em;
    overflow: hidden;
    & .icon {
        margin-right: .5em;
        opacity: .4;
        transform: scale(2.6) rotate(15deg);
    }
    & .arrow{
        opacity: 0;
        transition: transform .2s;
    }
    &:hover{
        opacity: 1;
        & .arrow{
            opacity: 1;
            transform: translateX(100%);
            transition: transform .2s;
        }
    }
}
.mobileFooterButton-orange{
    background: #e67e22;
}

.ctaBox2601{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.ctaBox2601-buttons{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.ctaBox2601-button{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #2ecc71;
    color: #fff;
    padding: .75em 1em;
    border-width: 0 4px 4px 0;
    border-color: darkgreen;
    border-radius: 8px;
    border-style: solid;
    flex-grow: 1;
    & strong{
        font-size: 1.4em;
        display: block;
        margin-top: .5em;
    }
    & i{
        transform: translateX(-25%) scale(.8);
        transition: transform .2s;
    }
    &:hover{
        opacity: 1;
        & i{
            transform: scale(.8);
            transition: transform .2s;
        }
    }
}
.ctaBox2601-button-orange{
    background: #e67e22;
    border-color: saddlebrown;
}