.achievement-item{
    position:relative;
    margin-bottom:50px;
    padding-bottom:50px;
}

.achievement-item:not(:last-child)::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:#e5e5e5;
}

/* =========================
   Award Row
========================= */

.award-row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:40px;
}

.award-row__content{
    flex:1;
    min-width:0;
}

/* =========================
   Badge
========================= */

.award-badge{
    display:inline-block;
    background:#f47c20;
    color:#fff;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    padding:6px 14px;
    border-radius:30px;
    margin-bottom:15px;
}

/* =========================
   Heading
========================= */

.award-row__title{
    font-size:28px;
    line-height:1.4;
    font-weight:700;
    color:#17324d;
    margin-bottom:20px;
}

.award-row__title i{
    color:#f47c20;
    margin-right:10px;
}

/* =========================
   Content
========================= */

.award-row__content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:15px;
}

/* =========================
   Images
========================= */

.award-row__images{
    width:320px;
    flex-shrink:0;
    display:flex;
    justify-content:flex-end;
    gap:15px;
    flex-wrap:wrap;
}

.award-row__images a{
    display:block;
    width:150px;
    overflow:hidden;
    border-radius:8px;
}

.award-row__images img{
    width:100%;
    height:220px;
    object-fit:fill;
    border:1px solid #ddd;
    padding:3px;
    background:#fff;
    border-radius:8px;
    transition:all .3s ease;
}

.award-row__images img:hover{
    transform:scale(1.03);
}

/* =========================
   Large Desktop
========================= */

@media (max-width:1199px){

    .award-row__title{
        font-size:26px;
    }

    .award-row__images{
        width:280px;
    }

    .award-row__images a{
        width:130px;
    }
}

/* =========================
   Tablet
========================= */

@media (max-width:991px){

    .award-row{
        flex-direction:column;
        gap:25px;
    }

    .award-row__images{
        width:100%;
        justify-content:flex-start;
    }

    .award-row__title{
        font-size:24px;
    }

    .award-row__content p{
        font-size:16px;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width:767px){

    .achievement-item{
        margin-bottom:35px;
        padding-bottom:35px;
    }

    .award-badge{
        font-size:11px;
        padding:5px 12px;
    }

    .award-row__title{
        font-size:22px;
        margin-bottom:15px;
    }

    .award-row__content p{
        font-size:15px;
        line-height:1.8;
    }

    .award-row__images{
        gap:10px;
    }

    .award-row__images a{
        width:120px;
    }

    .award-row__images img{
        height:140px;
    }
}

/* =========================
   Small Mobile
========================= */

@media (max-width:575px){

    .award-row__title{
        font-size:20px;
    }

    .award-row__images{
        justify-content:center;
    }

    .award-row__images a{
        width:110px;
    }

    .award-row__images img{
        height:auto;
    }
}

.award-row__images{
    width:320px;
    display:flex;
    gap:15px;
    justify-content:flex-end;
    flex-shrink:0;
}

.award-row__images .gallery-page__card{
    width:150px;
    margin:0;
}

.award-row__images .gallery-page__card img{
    width:100%;
    height:190px;
    object-fit:cover;
}

@media(max-width:991px){
    .award-row__images{
        width:100%;
        justify-content:flex-start;
    }
}

@media(max-width:575px){
    .award-row__images .gallery-page__card{
        width:120px;
    }

    .award-row__images .gallery-page__card img{
        height:150px;
    }
}
.mfp-bg{
    background:#000 !important;
    opacity:0.95 !important;
}