Your IP : 3.139.80.194
/*========================================*/
/*---------- [_Working_Process] ----------*/
/*========================================*/
.working-process-wrapper {
position: relative;
counter-reset: process-counter1;
.working-process-shape {
position: absolute;
top: -50px;
left: 215px;
opacity: 0.1;
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
left: 165px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
left: 45px;
}
@media screen and (max-width: 991px) {
display: none;
}
}
.process-item {
position: relative;
display: block;
text-align: center;
padding: 0 40px 0;
@media only screen and (min-width: 992px) and (max-width: 1199px) {
padding: 0 10px 0;
}
.process-icon-box {
position: relative;
display: block;
height: 150px;
width: 150px;
margin: 0 auto;
.process-icon {
position: relative;
align-items: center;
display: flex;
justify-content: center;
background-color: #fff;
box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.1);
height: 148px;
width: 148px;
line-height: 148px;
margin: 0 auto;
z-index: 1;
border-radius: 20px 8px 20px 0px;
span {
&:before {
font-size: 64px;
color: var(--webex-primary-color);
}
}
&:before {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: "";
background-color: var(--webex-primary-color);
transform-origin: center;
transform-style: preserve-3d;
@include transition(all 0.3s cubic-bezier(0.54, 0.33, 0.78, 0.84));
@include transform(scale(0));
z-index: -1;
border-radius: 20px 8px 20px 0px;
}
}
.process-count {
position: absolute;
top: 0;
right: 0;
height: 40px;
width: 40px;
background-color: var(--webex-primary-color);
z-index: 2;
border-radius: 6px;
&:before {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
color: #fff;
font-size: 14px;
line-height: 40px;
counter-increment: process-counter1;
content: counters(process-counter1, ".", decimal-leading-zero);
@include transition(all 200ms linear);
transition-delay: 0.1s;
}
}
}
.process-details {
position: relative;
display: block;
margin-top: 21px;
.process-title {
margin-bottom: 10px;
color: #fff;
}
.process-text {
color: #fff;
margin-bottom: 0;
}
}
&:hover {
.process-icon-box {
.process-icon {
span {
&:before {
color: #fff;
}
}
&:before {
transform: scale(1.1);
}
}
.process-count {
&:before {
background-color: #fff;
color: var(--webex-primary-color);
}
}
}
}
}
}