.about-1-section .content-box {
    max-width: 430px;
}

.about-1-section ul {
    list-style: none;
}

.about-1-section ul li {
    border-bottom: 1px solid var(--grey-color-200);
    color: var(--grey-color-800);
    padding: 1.2rem 0 1.2rem 3rem;
    position: relative;
}

.about-1-section ul li:last-child {
    border: 0;
}

.about-1-section ul li::before {
    content: '';
    display: block;
    background: url(../img/tick-shape.svg) no-repeat;
    width: 20px;
    height: 20px;
    left: 0;
    top: 1.9rem;
    position: absolute;
}

.about-1-section .img-box img {
    position: relative;
    width: auto;
    max-height: 330px;
    object-fit: cover;
    border-radius: 0.6rem;
    box-shadow: rgba(0,0,0,0.12) -2px 5px 10px;
}

.about-1-section .img-box {
    position: relative;
    max-width: max-content;
}

.about-1-section .img-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 19px;
    left: -19px;
    width: 100%;
    height: 100%;
    border-radius: 1.2rem;
    border: 1px solid var(--primary-color);
    opacity: 0.3;
}

.features-box {
    margin-top: 7rem;
}

.features-box .box .text {
    margin: 1.2rem auto 0 auto;
    text-transform: uppercase;
    max-width: 160px;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--secondary-color);
}

.benefits-grid {
    margin-top: 4rem;
}

.benefits-grid .row > div {
    transition: all 0.25s ease;
}

.benefits-grid .row > div:nth-child(even) {
    background: var(--grey-color-100);
}

.benefits-grid .row > div:hover {
    background: var(--grey-color-200);
}

.benefits-grid .row > div:hover .icon {
    transform: scale(1.1);
}

.benefit-box {
    padding: 8rem 5rem;
}

.benefit-box .icon {
    margin-bottom: 1.6rem;
    transition: all 0.25s ease;
}

.benefit-box .content h2 {
    margin-bottom: 1rem;
}

.benefit-box .content p {
    line-height: 2.1rem;
    font-size: 1.6rem;
}

.license-section .license-box {
    border-radius: 14px;
    padding: 4.6rem 6.6rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 10px 0;
    margin-bottom: 4rem;
}

.license-section .license-box:last-child {
    margin-bottom: 0;
}

.license-section .license-box .icon {
    margin-right: 4rem;
}

/* Media Queries */
@media (max-width: 575px) {
    .about-1-section .content-box {
        max-width: 100%;
    }
    .about-1-section .img-box {
        margin: 3rem 0 4rem;
        max-width: calc(100% - 20px);
        left: 16px;
    }
    .about-1-section .img-box::before {
        top: 14px;
        left: -14px;
    }
    .about-1-section .img-box img {
        width: 100%;
        max-height: unset;
    }
    .features-box .box .text {
        font-size: 1.4rem;
    }
    .benefit-box {
        padding: 7rem 5rem;
    }
    .license-section .license-box {
        padding: 2.6rem;
        margin-bottom: 2.6rem;
    }
    .license-section .license-box .icon {
        margin-right: 2rem;
    }
}
