/*

Theme Name: Salient Child Theme

Description: This is a custom child theme for Salient

Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266

Author: ThemeNectar

Author URI:  https://themeforest.net/user/themenectar

Template: salient

Version: 1.0

*/

.home .fixed-cta {top: 50%}

.fixed-cta {
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    right: 10px;
    top:80%;
    transform: translateY(-50%);
    background-color: #ff650050;
    padding: 16px;
    border-radius: 6rem;
}

.fixed-cta a, .fixed-cta a img {transition: .2s; height: 45px;}
.fixed-cta a:hover {transform: scale(1.1);}


@media (max-width: 768px) {

    .home .fixed-cta, .fixed-cta {
        flex-direction: row;
        gap: 6px;
        position: fixed;
        right: 50%;
        top: 15px;
        transform: translateX(50%);
        background-color: transparent;
        padding: 0;
    }

    .fixed-cta a, .fixed-cta a img {height: 30px;}

}

@media (max-width: 400px) {

    .home .fixed-cta, .fixed-cta {right: 35%;}
}