.swi-sub-page-banner h2 {
    margin-bottom: 0;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-spread {
    column-gap: 30px;
}

.services-container {
    column-gap: 30px;
    row-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1440px;
    margin-top: 40px;
}

.service-title {
    color: rgba(28, 27, 31, 0.70);
    font-family: 'Poppins';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
    text-align: center;
}

.services-container .service {
    border-radius: 30px;
    padding: 30px 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    align-items: center;
    cursor: pointer;
    width: calc(25% - 40px);
    min-width: 220px;
    max-width: 270px;
    height: 250px !important;
    transition: all 300ms ease;
}

.services-container .service.active,
.services-container .service:hover {
    background-color: #F0E4FE;
}

.services-container .service svg {
    filter: grayscale();
    opacity: 0.5;
    height: 130px;
    width: 180px;
    transition: all 300ms ease;
}

.services-container .service.active svg,
.services-container .service:hover svg {
    opacity: 1;
    filter: none;
}

.service-info-container {
    max-width: 1440px;
    margin-top: 70px;
}

.service-info {
    display: none;
    border: 4px solid #F0E4FE;
    border-radius: 30px;
    overflow: hidden;
}

.service-info.active {
    display: flex;
}

.service-info .left-side {
    background-color: #F0E4FE;
    flex: 1;
    padding: 30px 50px;
}

.service-info .right-side {
    flex: 1;
    padding: 30px 50px;
    display: flex;
    align-items: center;
}

.service-info .right-side p {
    margin-bottom: 0;
}

.service-info a {
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.70);
}

.swi-sub-page-banner .swi-h2 {
    line-height: 1;
    margin-top: 70px;
}

@media screen and (max-width: 767px) {
    .services-container .service {
        width: 100%;
        flex: 1;
        min-width: unset;
        padding: 15px;
    }

    .swi-sub-page-banner .swi-h2 {
        text-align: center;
    }

    .service-info {
        flex-direction: column;
    }
}
