.cert-item {
  background: white;
  padding: 0 15px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
}

.cert-item .inner{
    width: 100%;
    height: 85px;
}

.cert-item .inner a{
    border: 1px solid #0F213E;
    width: 100%;
    padding: 20px 50px 20px 30px;
    display: flex;
    position: relative;
    color: #0F213E;
    text-decoration: underline;
    border-radius: 10px;
    height: 100%;
    align-items: center;
}

.certification-swiper .cert-item.swiper-slide:nth-child(1) .inner a {
	background-color: #1E3C71;
    color: #FFF;
    text-decoration: unset;
}

.cert-item.no-data .inner{
    border: 0;
    display: none
}

.cert-item .inner a::after{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 12px;
    z-index: 1;
    pointer-events: none;
    background: url(../assets/link-arrow.svg) center right no-repeat;
}

.certification-swiper{
    width: 100%;
}

.certification-slider{
    margin-bottom: 50px;
}

.swiper-button-prev,
.swiper-button-next{
    width: auto;
    height: auto;
    display:none;
}

.swiper-button-prev::after,
.swiper-button-next::after{
    content: '';
    width: 40px;
    height: 40px;
    background: url(../assets/slider-arrow.svg) center no-repeat;
    background-size: contain;
}

.swiper-button-next::after{
    transform: rotate(180deg);
}

.swiper-pagination .swiper-pagination-bullet{
    width: auto;
    height: auto;
    background: #fff !important;;
/*     border: #00A4B1 solid 2px; */
    color: #00A4B1;
    margin: 0 8px !important;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
/*     background: #00A4B1 !important; */
    font-weight: 700;
}

@media(max-width:1023px){

    .swiper-button-prev::after,
    .swiper-button-next::after{
        width: 32px;
        height: 32px;
    }
}

@media(max-width:767px){
    
    .cert-item {
      min-height: 90px;
    }

    .cert-item .inner{
        height: 90px;
    }
    
    .cert-item .inner a{
        padding-left: 20px;
        padding: 10px 40px 10px 10px;
        height: 100%;
    }

}