
/* --------------- Start Services CSS ------------------ */
#custom-text-five {
    background: #fff;
}
#services {
  padding: 60px 0;
}
#services .row {
    justify-content: center;
    flex-direction: row;
    text-align: center;
}
#services .service {
    width: 20%;
}
#services .service-icon {
    background: url(../img/theme-frame-02.png) repeat;
    width: 120px;
    height: 120px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}
#services .service-icon img {
    max-width: 100%;
    height: 100%;
}

#services .service-content .service-title {
    font-family: "Antonio", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: #333333;
    padding: 20px 0 5px 0;
    font-weight: bold;
}
#services .service-content .service-desc {
    color: #999999;
    font-size: 14px;
}

@media (max-width: 1199px) {
    #services .service-content .service-title {
        font-size: 16px;
    }
}
@media (max-width: 991px) {
    #services {
        padding: 50px 0 20px;
    }
    #services .service {
        width: 50%;
        margin: 0 0 30px;
    }
}
@media (max-width: 575px) {
    #services .service-icon {
        width: 80px;
        height: 80px;
    }
    #services .service {
        width: 100%;
        margin: 0 0 15px;
    }
}
/* --------------- End Services CSS ------------------ */
#htmlcontent_footer {
    background: url(../img/theme-frame-01.png);
    padding: 60px 0;
}
#htmlcontent_footer ul.htmlcontent-home {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px;
}
#htmlcontent_footer li.html-content {
    position: relative;
    text-align: center;
}
#htmlcontent_footer a.item-link {
    display: block;
    background: rgb(239, 65, 48);
}
#htmlcontent_footer .html-content-item-2 a.item-link,
#htmlcontent_footer .html-content-item-4 a.item-link,
#htmlcontent_footer .html-content-item-6 a.item-link {
    background: rgb(0, 0, 0);;
}

#htmlcontent_footer img.item-img {
    opacity: 0.3;
}
#htmlcontent_footer li.html-content:hover img.item-img {
    opacity: 0;
}
#htmlcontent_footer .item-content {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    transition: 0.25s ease-out;
}
#htmlcontent_footer li.html-content:hover .item-content{
    top: 25%;
}
#htmlcontent_footer .content-desc {
    transition: 0.25s ease-out;
    font-size: 20px;
    color: #fff;
    line-height: 120%;
    text-transform: uppercase;
    font-family: "Antonio", sans-serif;
    letter-spacing: -0.3px;
    float: left;
    width: 100%;
}
#htmlcontent_footer .content-title {
    transition: 0.25s ease-out;
    font-size: 25px;
    color: #fff;
    line-height: 130%;
    text-transform: uppercase;
    font-family: "Antonio", sans-serif;
    letter-spacing: -0.3px;
    font-weight: bold;
}
@media (max-width: 991px) {
    #htmlcontent_footer ul.htmlcontent-home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    #htmlcontent_footer .content-desc {
        font-size: 16px;
    }
    #htmlcontent_footer .content-title {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    #htmlcontent_footer {
        padding: 30px 0 20px;
    }
    #htmlcontent_footer ul.htmlcontent-home {
        padding: 15px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
}