/*
 Theme Name: Solutions Simplified Custom Theme
 Theme URI: https://www.elegantthemes.com/gallery/divi/
 Description: This is a custom theme for Solutions Simplified and is a child of the Divi theme. DO NOT DELETE THIS OR THE DIVI THEME!
 Author: Mark Young
 Author URI: https://www.elegantthemes.com
 Template: Divi
 Version: 1.0.0
*/
 
/* =Theme customization starts here
------------------------------------------------------- */
/* BG Animation */
.et_parallax_bg {
    animation: move 45s infinite;
    background-position: bottom;
}
.cust-head .et_parallax_bg {
    animation: move 30s infinite;
    background-position: center !important;
}
#cv-head .et_parallax_bg {
    animation: move 30s infinite;
    background-position: bottom !important;
}
@keyframes move {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 105%;
    }
    100% {
        background-size: 100%;
    }
    
}

#feat-part img {
    width: 100% !important;
    object-fit: contain !important;
    height: 64px !important;
}

.letter-head {
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 5px solid #80c41c;
}
#partners-container .loop-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 130vh;
}

#customers-container .loop-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 250vh;
}
.cv-id p {
    padding-top: 5px;
}
.cv_title_link {
    color: #000;
    border-bottom: 2px solid #80c41c;
    transition: 0.35s ease;
    padding: 5px;
}
.cv_title_link:hover {
    background-color: #80c41c;
    border-color: #000;
    color: #fff;
}

.hide {
    display: none;
}

@media screen and (max-width: 1280px) {
    @keyframes move {
        0% {
            background-size: 200%;
        }
        50% {
            background-size: 205%;
        }
        100% {
            background-size: 200%;
        }
        
    }
    .cv-container {
        margin-bottom: auto !important;
    }
    #customers-container .loop-grid {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        max-height: 100%;
    }
}

@media screen and (max-width: 1080px) {
    @keyframes move {
        0% {
            background-size: 220%;
        }
        50% {
            background-size: 225%;
        }
        100% {
            background-size: 220%;
        }
        
    }
}