.services-list {
    padding: 28px 0 32px;
    background: url(../../../library/images/services-list-bg.png) no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
}
.services-list::before{
    content: '';
    position: absolute;
    top: 0;
    right: 97px;
    width: 100%;
    height: 100%;
    background: #FFFFFF57;
}
.services-list h2{
    text-align: center;
}
.services-list .services {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    justify-content: center;
    text-align: center;
}
.services-list .services .service {
    width: calc((100% - (40px * 2))/3);
    padding: 32px 24px 40px;
    border-radius: 13.78px;
    background-color: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    transition: all 0.33s linear;
}
.services-list .service .icon-wrp {
    margin-bottom: 40px;
}
.services-list .service .icon-wrp img {
    object-fit: contain;
}
.services-list .service .cnt-wrp{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.services-list .service p {
    margin-top: 0;
    line-height: 32px;
    /* text-align: left; */
    margin-bottom: 20px;
}
.services-list .service a.btn-blue {
    background-color: transparent;
    border: 2px solid var(--red);
    min-width: 160px;
    padding: 10px 23px;
    margin-top: auto;
}
.services-list .service a.btn-blue span{
    color: var(--blue);
    text-transform: capitalize;
}
.services-list .services .service:hover{
    background-color: var(--blue);
}
.services-list .services .service:hover h3{
    color: var(--yellow);
}
.services-list .services .service:hover p{
    color: var(--white2);
}
.services-list .services .service:hover a.btn-blue{
    background-color: var(--red);
}
.services-list .services .service:hover a.btn-blue span{
    color: var(--white2);
}

.services-list .btn-wrp.mobile {
    display: none;
}

a.btn-dark {
    min-width: 165px;
    position: relative;
    display: inline-flex;
    padding: 14px 23px;
    justify-content: center;
    align-items: center;
    transition: background-color .3s ease-in-out;
    border-radius: 60px;
    border: 1px solid var(--yellow);
    background-color: var(--blue);
    width: 100%;
}

a.btn-dark span {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--yellow);
    line-height: 1;
    transition: all 0.3s linear;
}

a.btn-dark:hover {
    background-color: var(--yellow);
}

a.btn-dark:hover span {
    color: var(--blue);
}

@media (min-width: 1201px){
    .services-list .container{
        max-width: 1214px;
    }
}
@media (max-width: 1199px) {
    .services-list .services {
        column-gap: 25px;
    }
    .services-list .services .service {
        width: calc((100% - (25px * 2))/3);
        padding: 32px 15px 40px;
    }
}
@media (max-width: 991px) {
    .services-list .services {
        column-gap: 25px;
        row-gap: 20px;
    }
    .services-list .services .service {
        width: calc((100% - 25px)/2);
        padding: 32px 19px 40px;
    }
}
@media (max-width: 767px) {
    .services-list {
        padding: 50px 0 60px;
        background: url(../../../library/images/services-list-bgmobile.png) no-repeat;
        background-size: contain;
        background-position: bottom;
    }
    .services-list::before{
        content: unset;
    }
    .services-list .services {
        column-gap: 0px;
        row-gap: 10px;
    }
    .services-list .services .service {
        width: 100%;
        padding: 15px 19px;
    }
    .services-list .service .cnt-wrp h3{
        font-size: 32px;
        line-height: 40px;
    }
    .services-list .service p {
        font-size: 14px;
        line-height: 30px;
    }
    .services-list .btn-wrp.mobile {
        display: block;
        margin-top: 40px;
    }
}