
/*------------------------------------------------------------------------
# mod_mx_services Extension
# ------------------------------------------------------------------------
# author    mixwebtemplates
# Copyright (C) 2020 mixwebtemplates.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: http://www.mixwebtemplates.com
-------------------------------------------------------------------------*/
:root {  
  --base-skin: #ccc;
  --base-dark: #000000;
  --base-grey: #f3f4f9;
  --base-white: #ffffff; 
}

.process-box-one {
    padding: 20% 10%;
    border-radius: 100%;
    border: 1px solid var(--base-skin);
    position: relative;
    background-color: var(--base-grey);
    transition: all 0.5s;
    overflow: hidden;
    width: 420px;
    height: 420px;
    text-align: center;
}
.process-box-one>img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 0%;
    width: 0%;
    object-fit: cover;
    transition: all 0.8s ease;
    border-radius: 100%;
    z-index: 0;
}
.process-icon-one {
    position: relative;
}
.process-box-one h4{
margin-bottom: 15px;
transition: all 0.5s;
font-size: 26px;
font-weight: 400;
line-height: 1.3;
position: relative;
}
.process-box-one p{
    position: relative;
    transition: all 0.5s ;
}
.process-box-one i{
    position: relative;
    transition: all 0.5s ;
    font-size: 60px;
}
.process-box-one h4 span{
    color: #D1A97A;
    transition: all 0.5s 0.3s;
}
.process-box-one+.process-box-one {
    margin-left: -183px;
}
.process-box-one:hover{
    z-index: 2;
}
.process-box-one:hover>img{
   height: 100%;
   width: 100%;
}
.process-box-one:hover h4, .process-box-one:hover h4 span, .process-box-one:hover p, .process-box-one:hover i, .process-box-one:hover .service-link{
    color: var(--base-white);
    z-index: 2;
}
.process-box-one::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 0%;
    width: 0%;
    border-radius: 100%;
    transition: all 0.8s ease;
    background: linear-gradient(180deg, rgba(59, 68, 67, 0) 0%, rgba(59, 68, 67, 0.72) 100%);
     backdrop-filter: blur(10px);
    z-index: 1;
}
.process-box-one:hover::before{
    height: 100%;
    width: 100%;
}
.process-box-one:hover .process-icon-one img {
    filter: brightness(20.5);
}

.process-box-one .service-link {
  position: relative;
  color: #111;
  margin-top: 10px;
  text-decoration: none;
  display: inline-block;
}

.process-box-one .service-link:hover {
  color: var(--base-white);
}
