/**
 * 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;
    position: relative;
    text-align: left;
    width: 100%;
    padding: 30px 0 0;
}
#basecmsservices .services {
    border: var(--border);
    border-radius: var(--global-border-radius);
    padding: 15px;

}
.service_image {
    height: 45px;
    position: relative;
    width: 45px;
    padding: 0;
    float: left;
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}
#basecmsservices .services .service-cms-banner-list:hover .service_image {
    transform: rotateY(360deg);
    -webkit-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
}
.service-cms-banner-list.service-1 .service_image {
    -webkit-mask-image: url(../img/service-1.png);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 41px;
    background-color: var(--global-palette1);
}
.service-cms-banner-list.service-2 .service_image {
    -webkit-mask-image: url(../img/service-2.png);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 41px;
    background-color: var(--global-palette1);
}
.service-cms-banner-list.service-3 .service_image {
    -webkit-mask-image: url(../img/service-3.png);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 37px;
    background-color: var(--global-palette1);

}
.service-cms-banner-list.service-4 .service_image {
    -webkit-mask-image: url(../img/service-4.png);
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 42px;
    background-color: var(--global-palette1);

}

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

.service_title1 {
    letter-spacing: 0.4px;
    text-transform: capitalize;
    line-height: 22px;
    font-weight: 500;
    font-size: 16px;
    color: var(--global-palette3);
}
.service_title2 {
    letter-spacing: 0.4px;
    color: var(--global-palette6);
    margin-top: 5px;

}
.services.stickyscroll > .scroll-item:last-child {
    border: none;
}
.services.stickyscroll > .scroll-item {
    width: 20%;
    padding: 10px 0;
    border-right: var(--border);
}
@media (max-width: 1359px) and (min-width: 1200px){
    .services.stickyscroll > .scroll-item{
        width: 27%;
        padding: 5px 0;
    }
}
@media (max-width: 1359px) {
    #basecmsservices .row {
        margin: 0;
    }
    #basecmsservices .services.stickyscroll {
        padding: 10px  0;
    }
    .service_title2{
        margin-top: 2px;
    }
    #basecmsservices{
        padding: 25px 0 0;
    }
    .service_content{
        padding-left: 15px;
    }
}
@media (max-width: 1199px) {
    .services.stickyscroll > .scroll-item {
        width: 33.75%;
        padding: 0px 0;
    }
    .service_image{        
       width: 50px;
    }
    .service_title2 {
        margin-top: 4px;
    }
    #basecmsservices {
        padding: 20px 0 0;
    }
}
@media (max-width: 991px) {

    #basecmsservices .services > div {
        width: 45%;
    }
}
@media (max-width: 767px) {
    .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;
    }
    #basecmsservices .services > div {
        width: 58%;
    }
    .service_content{
    padding-left: 15px;
    }
    .service_title2 {
        width: 100%;
        font-size: 13px;
        line-height: 18px;
    }
}
@media (max-width: 543px) {
    #basecmsservices .services > div {
        width: 65%;
    }
    #basecmsservices {
        padding: 30px 0 0;
    }
    .service_content {
        padding-left: 10px;
    }
}
@media (max-width: 479px) {
    .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 {
        -webkit-mask-size: 31px;
    }
    
    #basecmsservices .services > div {
        width: 99%;
    }
}