.project-top-banner{
    height: auto;
}
.project-top-banner figure{
    margin-bottom: 0;
}
.project-top-banner img{
    width: 100%;
}
.projects,
.test,
.certificate{
    padding: 5em 0;
}
.projects__container .row{
    margin-bottom: 32px;
}
.projects__container .row:nth-child(even){
    flex-direction: row-reverse;
}
.projects__container .row:nth-child(even) .projects__description{
    padding-left: 3em;
    padding-right: 0;
}
.projects__container .row:nth-child(even) .projects__image:before{
    display: block;
}
.projects__container .row:nth-child(even) .projects__image:after{
    display: none;
}
.projects__image{
    position: relative;

}
.projects__image img{
    transition: transform .5s ease;
    overflow: hidden;
}
.projects__image img:hover{
    transform: scale(1.02);
}
.projects__image:after{
    content: "";
    height: 100%;
    width: 15%;
    position: absolute;
    right: -3%;
    top: -6%;
    background: #FFC905;
    z-index: -1;
}
.projects__image:before{
    content: "";
    height: 100%;
    width: 15%;
    position: absolute;
    left: -5%;
    top: -6%;
    background: #FFC905;
    z-index: -1;
    display: none;
}
.projects__description{
    padding-right: 3em;
}
.projects__description h2{
    margin-bottom: 10px;
}
.projects__number{
    font-size: 24px;
    color: #15497E;
    font-weight: 700;
    width: fit-content;
    border-bottom: 4px solid #15497E;
    margin-bottom: 16px;
}
.projects__location{
    display: flex;
    align-items: center;
    margin: 8px 0;
}
.projects__location span{
    color: #555;
}
.projects__location figure{
    margin-bottom: 0;
}
.projects__highlight{
    display: flex;
    flex-direction: column;
}
.projects__highlight span{
    color: #555;
}
.projects__highlight-badge{
    display: flex;
    flex-wrap: wrap;
}
.projects__highlight p{
    background: #FFE99B;
    width: fit-content;
    padding: 2px 8px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 15px;

}
.btn-load{
    background: #fec73e;
    padding: 12px 24px;
    border: 0;
    color: #fff;
}
.btn-load:hover{
    background: #ebb630;
}
.test__docs{
    text-align: center;
    margin-bottom: 32px;
}
.test__title h2{
    font-size: 18px;
    margin-bottom: 16px;
}

.certificate{
    background: #F7F7F5;
}
.certificate__box{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.certificate__name{
    margin-top: 10px;
}
.certificate__name p{
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    padding: 0 12px;
}
.certificate__item{
    text-align: center;
    margin-bottom: 32px;
}
.certificate__item img{
    transition: transform .5s ease;
    overflow: hidden;
    height: 250px;
}
.certificate__item img:hover{
    transform: scale(1.02);
}

.projects__shortdesc p{
    line-height: 1.3;
}
.projects__shortdesc p span{
    line-height: 1.3;
}

@media screen and (max-width: 1536px){
    .projects__image:after{
        right: -4%;
    }
}
@media screen and (max-width: 1200px){
    .certificate__item{
        width: 23%;
    }
}
@media screen and (max-width: 991px){
    .certificate__item{
        width: 30%;
    }
}
@media screen and (max-width: 575px){
    .certificate__item{
        width: 44%;
    }
}
@media screen and (max-width: 767px){
    .projects__container .row{
        flex-direction: column-reverse;
    }
    .projects__container .row:nth-child(even){
        flex-direction: column-reverse;
    }
    .projects__description{
        padding-right: 0;
        margin-bottom: 36px;
    }
    .projects__container .row:nth-child(even) .projects__description{
        padding-left: 0;
    }
}