/*-------------------------------
 About  Section  CSS
-------------------------------*/

.about-wrap-2.style1 {
    background: linear-gradient(to bottom, #e9ecef 0%, rgba(244, 245, 247, .35) 100%);
}

.about-wrap-2.style1 .about-img-wrap-2 {
    position: relative;
    z-index: 1;
    /*padding-left: 2rem;*/
}

.about-img-wrap-2 img {
    border-radius: var(--siteBorderRadius, 4px);
    width: 100%;
    aspect-ratio: 6/5;
    object-fit: cover;
}


.about-wrap-2.style1 .about-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding-left: 0;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.about-wrap-2.style1 .about-content ul li {
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
    z-index: 1;
    height: max-content;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about-wrap-2.style1 .about-content ul li::before {
    position: absolute;
    content: "\eb7b";
    font-family: 'remixicon';
    font-size: inherit;
    /*border: 1px solid;*/
    /*border-radius: var(--siteBorderRadius, 4px);*/
    left: 0;
    top: calc(50% - 10px);
    /*height: 20px;*/
    /*width: 20px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008000;
}
.about-wrap-2.style1 .about-content ul li:hover:after {
    width: 100%;
    transition: width 2s;
}

@media screen and (max-width: 575px) {
    .about-wrap-2.style1 .about-content ul {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width: 991px) {
    .about-wrap-2.style1 .about-img-wrap-2{
        margin-bottom: 2rem;
    }
}

