/* Technology start  */

.technology-box {
    padding: 25px;
    transition: all 0.5s;
    border-radius: 12px;
    background-color: var(--ced-bg-gray);
    position: relative;
}
.technology-box::before {
    position: absolute;
    bottom: -15px;
    left: 13px;
    width: 70%;
    height: 100px;
    background-image: conic-gradient(
        from 7deg at 25.05% 71.78%,
        rgba(106, 215, 150, 0.4) 0deg,
        rgba(65, 59, 188, 0.3) 360deg
    );
    filter: blur(25px);
    -webkit-filter: blur(35px);
    transition: all 0.5s;
    opacity: 0;
    content: "";
    z-index: -1;
    border-radius: 50px;
}
.technology-box:hover::before {
    opacity: 1;
}
.technology-heading {
    font-size: 20px;
    font-family: var(--ced-montserrat-sb);
    color: var(--ced-grey-60);
}
.technology-para {
    font-size: 15px;
    color: var(--ced-grey-60);
    line-height: 28px;
}
.technology-heading img {
    max-width: 48px;
    margin-right: 10px;
}
.technology-bottom-text h3 {
    font-family: var(--ced-montserrat-m);
    color: var(--ced-grey-60);
}
@media screen and (min-width: 1200px) {
    .technology-container {
        gap: 25px;
    }
    .technology-bottom-text h3 {
        font-size: 26px;
    }
    .technology-bottom-text {
        max-width: 990px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .technology-container {
        gap: 18px;
    }
    .technology-bottom-text h3 {
        font-size: 24px;
    }
}
@media screen and (max-width: 991px) {
    .technology-container {
        gap: 25px;
    }
    .technology-bottom-text h3 {
        font-size: 22px;
        line-height: 34px;
    }
}
@media screen and (min-width: 992px) {
    .technology-box {
        width: 100%;
    }
    /* .border-pills-button.medium {
        padding: 14px 24px;
        font-size: 18px;
    }
    .border-pills-button.medium::before {
        right: 24px;
        top: 13px;
        width: 36px;
        height: 36px;
    } */
    /* .border-pills-button.medium .arrow {
        width: 36px;
        height: 36px;
        line-height: 35px;
    } */
    .technology-bottom-text {
        gap: 50px;
    }
}
@media screen and (min-width: 768px) {
    /* .border-pills-button.medium .arrow img {
        max-width: 26px;
    } */
    .technology-heading{
        margin-bottom:15px;
    }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
    .technology-box {
        width: 47%;
    }
}
/* .technolofy-section .border-pills-button.blue{
  border: 2px solid var(--ced-blue-60);
} */