/**
* 2007-2021 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* 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 http://www.prestashop.com for more information.
*
*  @author PrestaShop SA <contact@prestashop.com>
*  @copyright  2007-2021 PrestaShop SA
*  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*/
.ukcustomerservices-block {
    margin-bottom: 40px;
    position: relative;
}
.ukcustomerservices-content-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    margin: auto;
    width: 141px;
    height: 119px;
    text-align: center;
    border-top-left-radius: 115px;
    border-top-right-radius: 185px;
    border-bottom-left-radius: 125px;
    border-bottom-right-radius: 85px;
    background-color: #f9fcfa;
}
.ukcustomerservices-content-block {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 40px 35px;
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.1);
}
.ukcustomerservices-content-block:hover::before {
    top: 0;
    height: 100%;
}
.ukcustomerservices-content-block:before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--theme-custom-color-2);
    opacity: .1;
    transition: all 1s ease;
    height: 0;
}
.ukcustomerservices-content-image {
    position: relative;
    z-index: 1;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    display: block;
    margin: auto;
}
.ukcustomerservices-content-image-wrapper:after {
    position: absolute;
    content: close-quote;
    width: 20px;
    height: 20px;
    background-color: #eef4f8;
    border-radius: 50%;
    right: -3px;
    top: 0;
    transition: .3s;
}
.ukcustomerservices-content-block:hover .ukcustomerservices-content-image-wrapper:after{
    right: -23px;
    top: 100px;
}
.ukcustomerservices-content-image-wrapper:before {
    position: absolute;
    content: close-quote;
    width: 15px;
    height: 15px;
    background-color: #eef4f8;
    border-radius: 50%;
    left: -9px;
    bottom: 0;
    transition: .3s;
}
.ukcustomerservices-content-block:hover .ukcustomerservices-content-image-wrapper:before{
    left: -23px;
    bottom: 100px;
}
.ukcustomerservices-content-box {
    margin-top: 30px;
}
.ukcustomerservices-content-title {
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    color: #333;
    font-family: var(--uktheme-font-2);
    margin-bottom: 15px;
}
.ukcustomerservices-content-sub-title {
    font-size: 14px;
    color: #616161;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 1.3px;
}
.ukservice-btn {
    margin-top: 20px;
}
@media(max-width: 991px) {
    .ukcustomerservices-content-title {
        display: block;
    }
    .ukcustomerservices-1,
    .ukcustomerservices-2 {
        margin-bottom: 30px;
    }
}
@media(max-width: 575px) {
    .ukcustomerservices-content-inner {
        margin-bottom: 30px;
    }
}