/**
 * Copyright since 2007 PrestaShop SA and Contributors
 * PrestaShop is an International Registered Trademark & Property of PrestaShop SA
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License 3.0 (AFL-3.0)
 * that is bundled with this package in the file LICENSE.md.
 * It is also available through the world-wide-web at this URL:
 * https://opensource.org/licenses/AFL-3.0
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@prestashop.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to https://devdocs.prestashop.com/ for more information.
 *
 * @author    PrestaShop SA and Contributors <contact@prestashop.com>
 * @copyright Since 2007 PrestaShop SA and Contributors
 * @license   https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
 */
 #basecmsservices {
    float: left;
    width: 100%;
    margin-bottom: 80px;
}
.services {
    background-color: var(--global-palette9);
    padding: 38px 0px;
    border-radius: var(--global-border-radius);
}
.service_image {
    height: 45px;
    position: relative;
    width: 45px;
    padding: 0;
    float: left;
}
.service_image {
    transition: all 600ms ease 0s;
    -webkit-transition: all 600ms ease 0s;
    -moz-transition: all 600ms ease 0s;
    -ms-transition: all 600ms ease 0s;
    -o-transition: all 600ms ease 0s;
}
.scroll-item:hover .service_image {
    transform: rotateY(360deg);
    transition: all .6s ease-in-out 0s;
    -webkit-transition: all .6s ease-in-out 0s;
    -moz-transition: all .6s ease-in-out 0s;
    -o-transition: all .6s ease-in-out 0s;
    -ms-transition: all .6s ease-in-out 0s;
}
.service-cms-banner-list.service-1 .service_image {
    background-image: url(../img/service-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 41px;
}
.service-cms-banner-list.service-2 .service_image {
    background-image: url(../img/service-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 41px;

}
.service-cms-banner-list.service-3 .service_image {
    background-image: url(../img/service-3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 37px;

}
.service-cms-banner-list.service-4 .service_image {
    background-image: url(../img/service-4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 42px;

}

.service_content {
    float: left;
    text-align: left;
    position: relative;
    padding-left: 18px;
    cursor: pointer;
}

.service_title1 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--global-palette3);
}
.services.stickyscroll > .scroll-item {
    width: 25%;
    padding-left: 45px;
}
@media (max-width: 1359px) {
    .services{
        padding: 32px 0;
    }
    #basecmsservices{
        margin-bottom: 70px;
    }
    .services.stickyscroll > .scroll-item{
        width: 33.33%;
    }
}
@media (max-width: 1199px) {
    #basecmsservices {
        margin-bottom: 55px;
    }
    .services.stickyscroll > .scroll-item{
        padding-left: 35px;
    }
    .service_image{        
       width: 50px;
    }
}
@media (max-width: 991px) {
    .services.stickyscroll > .scroll-item{
        padding-left: 20px;
    }
    #basecmsservices{
        margin-bottom: 45px;
    }
    #basecmsservices .services > div {
        width: 45%;
    }
}
@media (max-width: 767px) {
    #basecmsservices .services > div{
        padding: 0 10px;
    }
    .service-cms-banner-list.service-2 .service_image,
    .service-cms-banner-list.service-1 .service_image,
    .service-cms-banner-list.service-3 .service_image{
        background-size: 37px;
    }
    .service_title1{
        line-height: 20px;
        font-size: 15px;
    }
    .service_content{
    padding-left: 9px;
    }
    #basecmsservices .services.stickyscroll {
        padding: 20px 0;
    }
}
@media (max-width: 543px) {
    #basecmsservices .services > div {
        width: 60%;
    }
    #basecmsservices {
        margin-bottom: 35px;
    }
}
@media (max-width: 479px) {
    #basecmsservices .services.stickyscroll {
        padding: 10px 0;
    }
    .service-cms-banner-list.service-2 .service_image, 
    .service-cms-banner-list.service-1 .service_image, 
    .service-cms-banner-list.service-3 .service_image, 
    .service-cms-banner-list.service-4 .service_image {
        background-size: 30px;
    }
    .service_content {
        padding-left: 5px;
    }
    .service_title1 {
        line-height: 20px;
        font-size: 13px;
    }
    #basecmsservices {
        margin-bottom: 35px;
    }
    #basecmsservices .services > div {
        width: 73%;
    }
}