@charset "utf-8";

.ai_agent{
    padding: 60px 0;
}
.ai_agent .ai_agent_card{
    width: 48%;
    margin-top: 50px;
    padding: 49px 34px 0px 34px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(180deg, #EFF7FD 0%, #DEE9FF 100%);
}
.ai_agent .ai_agent_card .img_container{
    width: 100%;
    /* height: 300px; */
}
.ai_agent .ai_agent_card .img_container img{
    position: relative;
    bottom: -20px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
    box-shadow: -6px 16px 20px 0px rgba(2, 73, 217, 0.20);
}
.ai_agent .ai_agent_card .h2{
    color: #0F0E17;
    font-weight: 500;
    font-size: 28px;
}
.ai_agent .ai_agent_card .ai_agent_des{
    color: #0F0E17;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    
    
}
.ai_agent .ai_agent_card .ai_agent_des p{
    margin-top: 14px;
    color: #5F697C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
@media (max-width:1000px) {
    .ai_container{
        display: block !important;
    }
    .ai_agent .ai_agent_card{
        width: 100%;
        
    }
    .ai_agent .ai_agent_card .img_container{
        height: auto;
    }
}