/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/
/* Start of Service page 2024 */

/* Service page hovering headeing of content box */
.content-box-heading:hover {
    color: #de7b0b !important;
}
/* Service page hovering list in content box  */
.content-container li a:hover {
    color: gray;
}
/* Service page createing a underline for heading in content box  */
.services h2.content-box-heading:after {
    content: '';
    display: block;
    margin: auto;
    width: 20%;
    border-bottom: 2px solid #f98b10;
    margin-top: 14px;
}
/* Service page underline of gray line of list in content box  */
ul.list-centered li:after {
    content: '';
    position: absolute;
    left: 15px;
    height: 1em;
    width: 90%;
    border-bottom: 2px solid #dedede;
    margin-top: 20px;
}
/* Service page removeing list bullets and padding in content box  */
ul.list-centered li {
    list-style: none;
    padding: 15px 5px 15px 5px;
}

@media only screen and (max-width: 1030px) {

    /* gray line in fullwidth */
    ul.list-centered li:after {
        width: 95%;
    }
}

/* End of service page */