/**
 * 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: 23px 0;
    border-top: var(--border);
    border-bottom: var(--border);
    margin-top: 50px;
}
#basecmsservices .footer-logo {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 0;
}
.services-contact {
    display: inline-block;
    vertical-align: middle;
    width: 63%;
    float: right;
}
.service_image {
    height: 35px;
    position: relative;
    width: 35px;
    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: 34px;
    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: 34px;
    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: 34px;
    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: 34px;
    background-color: var(--global-palette1);
}
#basecmsservices .services .service-cms-banner-list{
    padding: 0 10px;
}
.services-contact .services {
    justify-content: end;
}
.service_content {
    position: relative;
    cursor: pointer;
    background-color: var(--global-palette2);
    padding: 8px 15px;
    border-radius: var(--global-border-radius);
    display: flex;
    width: 100%;
    justify-content: center;
}

.service_title1 {
    padding-left: 10px;
    line-height: 35px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    vertical-align: middle;
}
@media (max-width: 1359px) and (min-width: 1200px){
}
@media (max-width: 1359px) {
    #basecmsservices .row {
        margin: 0;
    }
}
@media (max-width: 1199px) {
    .service_content{
        padding: 6px 10px;
    }
    .services-contact{
        width: 70%;
    }
    #basecmsservices {
        margin-top: 40px;
    }
}
@media (max-width: 991px) {
    #basecmsservices .footer-logo {
        padding: 0 0 20px 0;
    }
    #basecmsservices{
        text-align: center;
    }    
    .services-contact{
        width: 100%;
    }
}
@media (max-width: 767px) {
    .services-contact .services{
        justify-content: start;
    }
    .services-contact .services{
        padding-bottom: 10px;
    }
    #basecmsservices {
        margin-top: 20px;
    }
    .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;
    }
}
@media (max-width: 543px) {
    .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;
    }
    
}