.company_experience {
    padding: 90px 15px;
}
.company_experience .content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.company_experience .content .img,
.company_experience .content .text {
    width: calc((100% - 60px) / 2);
}
.company_experience .content .img {
    display: flex;
}
.company_experience .content .img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}
.company_experience .text h2 {
    color: #000 !important;
    font-family: var(--main-sb);
    margin-bottom: 14px;
}
.company_experience .text h2 span {
    color: #88AB69;
    font-weight: initial;
}
.company_experience .text p {
    font-family: var(--main-r);
    font-size: 16px;
    margin: 0;
    line-height: 21px;
}
.company_experience ul {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 35px;
}
.company_experience ul li {
    width: calc((100% - 90px * 2) / 3);
}
.company_experience ul li span {
    color: #88AB69;
    font-size: 36px;
    line-height: 1.2;
    font-family: var(--main-sb);
    display: block;
    margin-bottom: 5px;
    font-weight: initial;
}
.company_experience .button {
    border-radius: var(--1, 8px);
    background: #FF8145;
    font-size: 16px;
    font-weight: 700;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0);
    text-align: center;
    font-family: var(--main-sb);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: max-content;
    padding: 10px 15px;
    margin-top: 50px;
}
.company_experience .button:hover {
    background: #F74F00;
    color: #FFF;
    text-decoration: none !important;
}
.company_experience .button .arrow {
    height: auto;
    rotate: -90deg;
    width: 12px;
    filter: invert(1) drop-shadow(0px 1px 0px #fff);
}
@media(max-width: 991px) {
    .company_experience {
        padding: 0px 15px 70px;
    }
    .company_experience ul {
        gap: 15px;
        justify-content: center;
        text-align: center;
    }
    .company_experience ul li {
        width: calc((100% - 15px) / 2);
    }
    .company_experience .button {
        margin: 50px auto 0;
    }
}
@media(max-width: 767px) {
    .company_experience .content {
        gap: 20px;
        flex-direction: column-reverse;
    }
    .company_experience .content .img,
    .company_experience .content .text {
        width: 100%;
    }
    .company_experience ul li {
        width: 100%;
    }
}