
.cargoton-service-blog {
  padding:32px;
  border:1px solid var(--border-color-light);
  margin-bottom:32px;
  position: relative;
  background-color: var(--color-theme-white);
  box-shadow: none;
}
.cargoton-service-blog:before{
  content: '';
  position: absolute;
  left:0;
  bottom:0;
  width: 0;
  height: 4px;
  background: var(--color-theme-primary);
  transition: all .3s ease-in;
}
.cargoton-service-blog:hover:before{
  width: 100%;
}
.cargoton-service-blog:hover .cargoton-heading-title{
  color:var(--color-theme-primary);
}
.cargoton-service-blog:hover{
  box-shadow: 5px 10px 45px rgba(223, 223, 223, 0.2);
}
.cargoton-service-blog .cargoton-service-img{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--global-body-lightcolor);
  padding: 20px 0;
}

.mighty-cal-output .total-pay {
  display: inline-flex;
  align-items: center;
}
.mighty-cal-output .total-pay h5 {
  margin-right: 5px;
}
.cargoton-service-blog .cargoton-service-img img {
  width: 100px;
}
.cargoton-service-blog  .cargoton-service-info{
  text-align: center;
  padding-top: 24px;
  position: relative;
}

.cargoton-digit{
  position: absolute;
  color: var(--color-theme-primary);
  font-size: var(--font-size-h4);
  font-family: var(--highlight-font-family);
  top: 20px;
  left: 20px;
  display: inline-block;
  transition: opacity 0.5s ease-in;
}
.cargoton-service-blog.hover-digit .cargoton-digit {opacity:0;}
.cargoton-service-blog:hover .cargoton-digit{opacity: 1;}
.cargoton-serv-more{
  margin: 22px 15px 10px 0;
}
.cargoton-serv-more-link{
  position: relative;
  width: 14px;
  height: 1px;
  margin: auto;
  transition: width .2s, transform 2s;
}

.cargoton-serv-more-link .arrow-one,
.cargoton-serv-more-link .arrow-three{
  position: absolute;
  height: 100%;
  right: -13px;
  background-color: var(--color-theme-secondary);
  width: 10px;
  outline: transparent solid 1px;
  transition: width .2s;
}
.cargoton-serv-more-link .arrow-one{
  top: 0px;
  transform: rotate(45deg);
  transform-origin: 100% 0;
}
.cargoton-serv-more-link .arrow-two{
  position: absolute;
  display: block;
  width: calc(100% + 12px);
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color-theme-secondary);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .2s .15s;
}

.cargoton-serv-more-link .arrow-three{
  bottom: 0;
  transform: rotate(-45deg);
  transform-origin: 100% 100%;
}

.cargoton-service-blog:hover .cargoton-serv-more-link {
  width:20px;
  transform: scale(1);
}
.cargoton-service-blog:hover .arrow-one,
.cargoton-service-blog:hover .arrow-three{
  -webkit-animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 0.3s; 
  animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both 0.3s;
}
.cargoton-service-blog:hover  .arrow-two{
  -webkit-animation: scaleArr 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both; 
  animation: scaleArr 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.cargoton-service-slider .owl-carousel .cargoton-service-blog{margin-bottom: 0;}

.cargoton-service-style-1 .cargoton-service-blog .cargoton-heading-title{
  text-transform: uppercase;
}

@-webkit-keyframes fade-in {
  0% { width: 0; }
  100% { width: 10px; }
}
@keyframes fade-in {
  0% { width: 0; }
  100% { width: 10px; }
}

@-webkit-keyframes scaleArr {
  0% { transform: scaleX(0); }
  100% {transform: scaleX(1); }
}
@keyframes scaleArr {
  0% { transform: scaleX(0); }
  100% {transform: scaleX(1); }
}

