.company-space p {
    color: var(--third-color);
}
.divider {
    position: relative;
    height: 2px;
}
.div-transparent:before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    width: 90%;
    height: 1px;
    background-image: linear-gradient(to right, transparent, #157ED6, transparent);
}
.info-card {
    border-top: 2px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    border-bottom: none;
    padding: 20px;
    position: relative;
    border-radius: 40px;
    background-color: #0d47a140;
}
.info-card:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    width: 90%;
    height: 1px;
    background-image: linear-gradient(to right, transparent, rgb(48, 49, 51), transparent);
}
.section-background {
    background: radial-gradient(circle at bottom, #1d4668, #0d2a4a, #0d154a, #3f1363);
    background-blend-mode: screen;
}
.card-img-top {
    filter: brightness(70%) blur(2px);
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.info-card svg {
    height: 70px;
    width: 70px;
    margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
    .info-card h5 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 576px) {
    .lead {
        font-size: 1rem;
        font-weight: 300;
    }
    .text-description {
        font-size: 14px;
    }
    .info-card h5 {
        font-size: 1rem;
    }
    .info-card svg {
        height: 50px;
        width: 50px;
        margin-bottom: 10px;
    }
    .company-space p {
        font-size: 15px;
    }
}