html,
body {
    max-width: 100%;
}

.blog_section .blog_content .blog_item {
    margin-bottom: 30px;
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, 0.14);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.blog_section .blog_content .blog_item:hover .blog_image img {
    transform: scale(1.1);
}

.blog_section .blog_content .blog_item .blog_image {
    overflow: hidden;
    padding: 0;
}

.blog_section .blog_content .blog_item .blog_image img {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.blog_section .blog_content .blog_item .blog_image span i {
    position: absolute;
    z-index: 200;
    color: #fff;
    font-size: 18px;
    width: 38px;
    height: 45px;
    padding-top: 7px;
    text-align: center;
    right: 20px;
    top: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
    background-color: #ff5e14;
}

.blog_section .blog_content .blog_item .blog_details {
    padding: 25px 20px 30px 20px;
}

.blog_section .blog_content .blog_item .blog_details .blog_title h5 a {
    color: #024172;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 32px;
    font-weight: 400;
    transition: all 0.3s;
    text-decoration: none;
}

.blog_section .blog_content .blog_item .blog_details .blog_title h5 a:hover {
    color: #21d0b3;
}

.blog_section .blog_content .blog_item .blog_details ul {
    padding: 0 3px 10px 0;
    margin: 0;
}

.blog_section .blog_content .blog_item .blog_details ul li {
    display: inline-block;
    padding-right: 15px;
    position: relative;
    color: #7f7f7f;
}

.blog_section .blog_content .blog_item .blog_details ul li i {
    padding-right: 7px;
    color: #024172;
}

.blog_section .blog_content .blog_item .blog_details p {
    border-top: 1px solid #e5e5e5;
    margin-top: 4px;
    padding: 20px 0 4px;
    color: #024172;
}

.blog_section .blog_content .blog_item .blog_details a {
    font-size: 16px;
    display: inline-block;
    color: #21d0b3;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.blog_section .blog_content .blog_item .blog_details a:hover {
    color: #1ab09f;
}

.blog_section .blog_content .blog_item .blog_details a i {
    vertical-align: middle;
    font-size: 20px;
}

.blog_section .blog_content .owl-nav {
    display: block;
}

.blog_section .blog_content .owl-nav .owl-prev {
    position: absolute;
    left: -27px;
    top: 33%;
    border: 5px solid #fff;
    text-align: center;
    z-index: 500;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    outline: 0;
    background: #ff5e14;
    transition: all 0.3s;
    color: #fff;
}

.blog_section .blog_content .owl-nav .owl-prev span {
    font-size: 25px;
    margin-top: -6px;
    display: inline-block;
}

.blog_section .blog_content .owl-nav .owl-prev:hover {
    background: #fff;
    border-color: #ff5e14;
    color: #ff5e14;
}

.blog_section .blog_content .owl-nav .owl-next {
    position: absolute;
    right: -27px;
    top: 33%;
    border: 5px solid #fff;
    text-align: center;
    z-index: 500;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    outline: 0;
    background: #ff5e14;
    color: #fff;
    transition: all 0.3s;
}

.blog_section .blog_content .owl-nav .owl-next span {
    font-size: 25px;
    margin-top: -6px;
    display: inline-block;
}


img
@media only screen and (max-width: 577px) {
    .blog_section .owl-nav .owl-prev {
        left: -17px !important;
    }

    .blog_section .owl-nav .owl-next {
        right: -17px !important;
    }
}
.image-banner {
    position: relative;
    width: 100%;
    height: 400px;
    /* Adjust as needed */
    overflow: hidden;
}

.image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This will ensure the image covers the div fully */
}

.section-title {
    color: #024172;
    font-weight: bold;
}

.section-description {
    color: #024172;
    font-size: 1.1em;
}

.verified-symbol {
    display: inline-block;
    width: 15px;  /* size of the circle */
    height: 15px; /* size of the circle */
    background-color: #21d0b3; /* your specified color */
    border-radius: 50%; /* makes it a circle */
    color: #024172;
    text-align: center;
    line-height: 15px; /* centers the content vertically */
    font-size: 0; /* removes default font size */
    margin-left: 2px; /* space from the text */
    vertical-align: middle; /* vertical alignment */
}

.verified-symbol::after {
    content: '✓';
    font-size: 12px; /* size of the checkmark */
    line-height: 15px; /* centers the checkmark vertically */
}

.blog_section .blog_content .blog_item {
    min-height: 700px; /* Set this to the desired minimum height */
    /* Other styles remain unchanged */
}


}
