/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 09 2019 | 12:11:22 */
/** The outer container of all products **/
.products{
  display: flex;
  justify-content: space-between;
  min-height: 325px;
  padding-top: 10px;
}

@media (max-width: 768px) {
  .products{
    padding-top: 0;
    flex-direction: column;
    min-height: 0;
  }
}

/** The individual product box **/
.products__product{
	width: 32%;
  	min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 0;
  transition: .2s all;
}
.products__product:hover{
  margin-top: -5px;
  padding-top: 5px;
  transition: .2s all;
  cursor: pointer;
}

@media (max-width: 768px) {
  .products__product{
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    margin-top: 20px;
  }
  .products__product:hover{
    margin-top: 20px;
    padding-top: inherit;
  }
  .products__product:first-child,
  .products__product:first-child:hover{
   	margin-top: 0;
  }
}
.products__product--cbpay{
  background: #3066DF;
  color: #ffffff;
}
.products__product--cbpay:hover{
  color: #ffffff;
}
.products__product--sepax{
	background: #e5edf3;
  color: #5e6e75;
}
.products__product--sepax:hover{
  color: #5e6e75;
}
.products__product--sctinst{
	background: #3CD5BF;
  color: #ffffff;
}
.products__product--sctinst:hover{
  color: #ffffff;
}

/** The icons within each product box **/
.products__iconWrap{
	flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .products__iconWrap{
	flex-grow: 0;
  }
}
.products__product .products__icon{
  transition: .2s transform;
}
.products__product:hover .products__icon{
  transform: scale(1.1);
  transition: .2s transform;
}
.products__icon path{
	fill: #ffffff;
}
.products__icon.products__icon--cbpay{
	width: 65%;
}
.products__icon.products__icon--sepax{
	width: 60%;
}
.products__icon.products__icon--sepax path{
	fill: #5e6e75;
}
.products__icon.products__icon--sctinst{
	width: 55%;
}
@media (max-width: 768px) {
  .products__product:hover .products__icon{
    transform: none;
  }
  .products__iconWrap{
      padding: 10px;
  }
  .products__icon.products__icon--cbpay{
      width: 40px;
  }
  .products__icon.products__icon--sepax{
      width: 40px;
  }
  .products__icon.products__icon--sctinst{
      width: 40px;
  }
  .products__icon.products__icon--sctinst{
      width: 40px;
  }
}

/** Text under icon **/
.products__text{
  position: relative;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: .2s background;
}
.products__product:hover .products__text{
  background: rgba(255,255,255,.4);
  transition: .2s background;
}
.products__product.products__product--cbpay:hover .products__text,
.products__product.products__product--sctinst:hover .products__text{
  background: rgba(255,255,255,.2);
  transition: .2s background;
}
@media (max-width: 768px) {
  .products__text{
    flex-grow: 1;
    padding: 10px 20px 10px 10px;
  }
  .products__product:hover .products__text{
    background: transparent;
  }
  .products__product.products__product--cbpay:hover .products__text,
  .products__product.products__product--sctinst:hover .products__text{
    background: transparent;
  }
}

.products__text::after {
    content: ' ';
    background-image: url(/wp-content/uploads/2019/04/arrow-rounded-white.svg);
    height: 24px;
    width: 24px;
    float:right;
	margin-top: 5px;
  background-size: contain;
  background-repeat: no-repeat;
}
.products__product--sepax .products__text::after{
  	background-image: url(/wp-content/uploads/2019/04/arrow-rounded-gray.svg);
}