/* ============================================================
   WHY DIVINE VISION CLASSES
============================================================ */

.dvc-why-section {
  
    width: 100%;
    padding: 4rem 0;
    background: #ffffff;
    box-sizing: border-box;
}


/* ============================================================
   HEADING
============================================================ */

.dvc-why-heading {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 3rem auto;

    padding: 0 1.5rem;

    box-sizing: border-box;

    text-align: center;
}


.dvc-why-title {
   margin-top: 16px;

    font-family: "Poppins", sans-serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;

    color: #202124;
}


.dvc-why-title span {
    color: #287203;
}


.dvc-why-title-line {
    width: 110px;
    height: 3px;
margin-top: 20px;
    margin: 12px auto 10px auto;

    background: #287203;

    position: relative;
}


.dvc-why-title-line::after {
    content: "";

    position: absolute;

    left: 50%;
    transform: translateX(-50%);

    bottom: -6px;

    width: 75px;
    height: 2px;

    background: #287203;
}


.dvc-why-description {
    max-width: 1000px;

    margin: 0 auto;

    font-family: "Poppins", sans-serif;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.6;

    color: #777777;

    text-align: center;
}


/* ============================================================
   MAIN CONTAINER
============================================================ */

.dvc-why-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 0 1rem;

    box-sizing: border-box;

    display: grid;

    grid-template-columns: 1fr 1.05fr;

    gap: 20px;

    align-items: stretch;
}


/* ============================================================
   LEFT IMAGE
============================================================ */

.dvc-why-image-box {
    width: 100%;

    min-height: 200px;

    overflow: hidden;

    border-radius: 6px;

    box-sizing: border-box;
}


.dvc-why-image {
    width: 100%;
    height: 90%;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 6px;

    transition: transform 0.5s ease;
}


.dvc-why-image-box:hover .dvc-why-image {
    transform: scale(1.02);
}


/* ============================================================
   RIGHT FEATURES
============================================================ */

.dvc-why-features {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* ============================================================
   FEATURE CARD
============================================================ */

.dvc-why-card {
    min-height: 175px;

    padding: 25px 25px;

    background: #ffffff;

    border-radius: 5px;

    box-sizing: border-box;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.dvc-why-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);
}


/* ============================================================
   ICON
============================================================ */

.dvc-why-icon {
    width: 45px;
    height: 45px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #287203;

    font-size: 27px;
}


/* ============================================================
   CARD TITLE
============================================================ */

.dvc-why-card h3 {
    margin: 0 0 7px 0;

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 600;

    line-height: 1.35;

    color: #287203;

    text-align: center;
}


/* ============================================================
   CARD DESCRIPTION
============================================================ */

.dvc-why-card p {
    margin: 0;

    max-width: 390px;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.55;

    color: #707070;

    text-align: center;
}


/* ============================================================
   LARGE DESKTOP
============================================================ */

@media screen and (min-width: 1400px) {

    .dvc-why-container {
        max-width: 1500px;

        grid-template-columns: 1fr 1.05fr;

        gap: 20px;
    }


    .dvc-why-image-box {
        min-height: 605px;
    }


    .dvc-why-card {
        min-height: 180px;

        padding: 25px 30px;
    }

}


/* ============================================================
   DESKTOP
============================================================ */

@media screen and (min-width: 1200px) and (max-width: 1399px) {

    .dvc-why-section {
        padding: 3.5rem 0;
    }


    .dvc-why-container {
        max-width: 1300px;

        grid-template-columns: 1fr 1.05fr;

        gap: 18px;
    }


    .dvc-why-image-box {
        min-height: 570px;
    }


    .dvc-why-card {
        min-height: 175px;

        padding: 22px;
    }


    .dvc-why-card h3 {
        font-size: 19px;
    }


    .dvc-why-card p {
        font-size: 13.5px;
    }

}


/* ============================================================
   TABLET
   768px - 1199px
============================================================ */

@media screen and (min-width: 768px) and (max-width: 1199px) {

    .dvc-why-section {
        padding: 3rem 0;
    }


    .dvc-why-heading {
        margin-bottom: 2.5rem;

        padding: 0 20px;
    }


    .dvc-why-title {
        font-size: 36px;
    }


    .dvc-why-description {
        font-size: 16px;

        max-width: 850px;
    }


    .dvc-why-container {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 20px;

        padding: 0 20px;
    }


    .dvc-why-image-box {
        width: 100%;

        min-height: 450px;

        height: 450px;
    }


    .dvc-why-features {
        width: 100%;

        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }


    .dvc-why-card {
        min-height: 180px;

        padding: 22px 18px;
    }


    .dvc-why-card h3 {
        font-size: 18px;
    }


    .dvc-why-card p {
        font-size: 14px;
    }

}


/* ============================================================
   MOBILE
   401px - 767px
============================================================ */

@media screen and (min-width: 401px) and (max-width: 767px) {

    .dvc-why-section {
        padding: 2.5rem 0;
    }


    .dvc-why-heading {
        margin-bottom: 2rem;

        padding: 0 15px;
    }


    .dvc-why-title {
        font-size: 30px;

        line-height: 1.25;
    }


    .dvc-why-title-line {
        width: 90px;

        margin-top: 10px;
    }


    .dvc-why-description {
        font-size: 15px;

        line-height: 1.6;
    }


    .dvc-why-container {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 18px;

        padding: 0 12px;
    }


    .dvc-why-image-box {
        width: 100%;

        height: 350px;

        min-height: 350px;

        border-radius: 6px;
    }


    .dvc-why-features {
        width: 100%;

        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }


    .dvc-why-card {
        min-height: 185px;

        padding: 20px 12px;

        border-radius: 5px;
    }


    .dvc-why-icon {
        font-size: 25px;

        margin-bottom: 7px;
    }


    .dvc-why-card h3 {
        font-size: 17px;

        line-height: 1.35;
    }


    .dvc-why-card p {
        font-size: 13px;

        line-height: 1.5;
    }

}


/* ============================================================
   SMALL MOBILE
   200px - 400px
============================================================ */

@media screen and (min-width: 200px) and (max-width: 400px) {

    .dvc-why-section {
        padding: 2rem 0;
    }


    .dvc-why-heading {
        margin-bottom: 1.7rem;

        padding: 0 12px;
    }


    .dvc-why-title {
        font-size: 27px;

        line-height: 1.3;
    }


    .dvc-why-title-line {
        width: 85px;

        height: 3px;

        margin-top: 9px;
    }


    .dvc-why-description {
        font-size: 14px;

        line-height: 1.55;
    }


    .dvc-why-container {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 15px;

        padding: 0 10px;
    }


    .dvc-why-image-box {
        width: 100%;

        height: 280px;

        min-height: 280px;

        border-radius: 6px;
    }


    .dvc-why-features {
        width: 100%;

        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }


    .dvc-why-card {
        min-height: 190px;

        padding: 17px 8px;

        border-radius: 5px;
    }


    .dvc-why-icon {
        width: 40px;
        height: 40px;

        font-size: 22px;

        margin-bottom: 5px;
    }


    .dvc-why-card h3 {
        font-size: 15px;

        line-height: 1.35;
    }


    .dvc-why-card p {
        font-size: 12px;

        line-height: 1.45;
    }

}




/* ============================================================
   DIVINE VISION CLASSES
   OUR VISION SECTION
============================================================ */

.dvc-vision-section {
    width: 100%;
    background: #f4faef;
    padding: 4rem 0;
    overflow: hidden;
}


/* ============================================================
   CONTAINER
============================================================ */

.dvc-vision-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;

    padding: 0 3rem;

    box-sizing: border-box;

    display: grid;
    grid-template-columns: 1.25fr 0.75fr;

    align-items: center;

    gap: 3rem;
}


/* ============================================================
   LEFT CONTENT
============================================================ */

.dvc-vision-content {
    width: 100%;
}


/* ============================================================
   TITLE
============================================================ */

.dvc-vision-title {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 46px;
    font-weight: 700;

    line-height: 1.15;

    text-align: center;

    color: #202020;
}

.dvc-vision-title span {
    color: #287203;
}


/* ============================================================
   TITLE LINE
============================================================ */

.dvc-vision-title-line {
    width: 105px;
    height: 3px;

    background: #287203;

    margin: 10px auto 18px;

    border-radius: 10px;

    position: relative;
}

.dvc-vision-title-line::after {
    content: "";

    position: absolute;

    width: 55px;
    height: 2px;

    background: #287203;

    left: 50%;
    bottom: -6px;

    transform: translateX(-50%);

    border-radius: 10px;
}


/* ============================================================
   INTRODUCTION
============================================================ */

.dvc-vision-intro {
    margin: 0 0 18px;

    font-family: "Poppins", sans-serif;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.7;

    color: #303030;

    text-align: left;
}


/* ============================================================
   VALUES CARD
============================================================ */

.dvc-vision-values {
    width: 100%;

    background: #ffffff;

    padding: 20px;

    box-sizing: border-box;

    border-radius: 6px;

    border: 1px solid #e3e3e3;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);

    margin-bottom: 18px;
}

.dvc-vision-values h3 {
    margin: 0 0 6px;

    font-family: "Poppins", sans-serif;

    font-size: 24px;
    font-weight: 700;

    color: #287203;
}

.dvc-vision-values p {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 15px;
    line-height: 1.65;

    color: #333333;
}


/* ============================================================
   COMMITMENT TITLE
============================================================ */

.dvc-vision-commitment-title {
    margin: 0 0 10px;

    font-family: "Poppins", sans-serif;

    font-size: 20px;
    font-weight: 700;

    color: #252525;
}


/* ============================================================
   COMMITMENT LIST
============================================================ */

.dvc-vision-list {
    width: 100%;

    background: #ffffff;

    border-radius: 6px;

    overflow: hidden;

    border: 1px solid #e1e1e1;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


/* ============================================================
   LIST ITEM
============================================================ */

.dvc-vision-list-item {
    width: 100%;

    min-height: 52px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 10px 15px;

    box-sizing: border-box;

    border-bottom: 1px solid #dddddd;
}

.dvc-vision-list-item:last-child {
    border-bottom: none;
}


/* ============================================================
   LIST ICON
============================================================ */

.dvc-vision-list-icon {
    width: 25px;
    min-width: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #287203;

    font-size: 17px;
}


/* ============================================================
   LIST TEXT
============================================================ */

.dvc-vision-list-item p {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 14px;
    line-height: 1.5;

    color: #303030;
}


/* ============================================================
   BOTTOM TEXT
============================================================ */

.dvc-vision-bottom-text {
    margin: 18px 0 0;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    line-height: 1.65;

    color: #333333;
}

.dvc-vision-bottom-text strong {
    color: #287203;
    font-weight: 700;
}


/* ============================================================
   RIGHT IMAGE AREA
============================================================ */

.dvc-vision-image-wrapper {
    width: 100%;

    min-height: 520px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ============================================================
   SOFT BACKGROUND CIRCLE
============================================================ */

.dvc-vision-image-bg {
    position: absolute;

    width: 470px;
    height: 470px;

    background: #e6f3dc;

    border-radius: 50%;

    z-index: 0;
}


/* ============================================================
   ILLUSTRATION
============================================================ */

.dvc-vision-image {
    position: relative;

    z-index: 1;

    width: 100%;
    max-width: 560px;

    height: auto;

    display: block;

    object-fit: contain;

    filter: drop-shadow(
        0 12px 18px rgba(40, 114, 3, 0.08)
    );

    transition: transform 0.4s ease;
}

.dvc-vision-image:hover {
    transform: translateY(-6px);
}


/* ============================================================
   LARGE DESKTOP
============================================================ */

@media screen and (min-width: 1200px) {

    .dvc-vision-section {
        padding: 4.5rem 0;
    }

    .dvc-vision-container {
        max-width: 1500px;
        padding: 0 3.5rem;

        grid-template-columns: 1.2fr 0.8fr;

        gap: 4rem;
    }

    .dvc-vision-title {
        font-size: 48px;
    }

    .dvc-vision-intro {
        font-size: 17px;
    }

    .dvc-vision-image-wrapper {
        min-height: 560px;
    }

    .dvc-vision-image-bg {
        width: 500px;
        height: 500px;
    }

    .dvc-vision-image {
        max-width: 600px;
    }
}


/* ============================================================
   TABLET
   768px - 1199px
============================================================ */

@media screen and (min-width: 768px) and (max-width: 1199px) {

    .dvc-vision-section {
        padding: 3.5rem 0;
    }

    .dvc-vision-container {
        padding: 0 2rem;

        grid-template-columns: 1fr 0.8fr;

        gap: 2rem;
    }

    .dvc-vision-title {
        font-size: 38px;
    }

    .dvc-vision-intro {
        font-size: 15px;
        line-height: 1.65;
    }

    .dvc-vision-values {
        padding: 17px;
    }

    .dvc-vision-values h3 {
        font-size: 21px;
    }

    .dvc-vision-values p {
        font-size: 14px;
    }

    .dvc-vision-commitment-title {
        font-size: 18px;
    }

    .dvc-vision-list-item p {
        font-size: 13px;
    }

    .dvc-vision-image-wrapper {
        min-height: 450px;
    }

    .dvc-vision-image-bg {
        width: 360px;
        height: 360px;
    }

    .dvc-vision-image {
        max-width: 440px;
    }
}


/* ============================================================
   MOBILE
   401px - 767px
============================================================ */

@media screen and (min-width: 401px) and (max-width: 767px) {

    .dvc-vision-section {
        padding: 2.8rem 0;
    }

    .dvc-vision-container {
        width: 100%;

        padding: 0 18px;

        display: flex;
        flex-direction: column;

        gap: 2rem;
    }

    .dvc-vision-title {
        font-size: 34px;
    }

    .dvc-vision-title-line {
        margin-bottom: 16px;
    }

    .dvc-vision-intro {
        font-size: 15px;

        line-height: 1.65;

        text-align: center;
    }

    .dvc-vision-values {
        padding: 17px;

        margin-bottom: 16px;
    }

    .dvc-vision-values h3 {
        font-size: 21px;
    }

    .dvc-vision-values p {
        font-size: 14px;
    }

    .dvc-vision-commitment-title {
        font-size: 18px;

        margin-bottom: 9px;
    }

    .dvc-vision-list-item {
        padding: 10px 12px;
    }

    .dvc-vision-list-item p {
        font-size: 13px;
    }

    .dvc-vision-bottom-text {
        font-size: 14px;

        text-align: center;
    }

    .dvc-vision-image-wrapper {
        width: 100%;

        min-height: auto;

        margin-top: 5px;
    }

    .dvc-vision-image-bg {
        width: 300px;
        height: 300px;
    }

    .dvc-vision-image {
        width: 100%;
        max-width: 400px;
    }
}


/* ============================================================
   SMALL MOBILE
   200px - 400px
============================================================ */

@media screen and (min-width: 200px) and (max-width: 400px) {

    .dvc-vision-section {
        padding: 2.3rem 0;
    }

    .dvc-vision-container {
        width: 100%;

        padding: 0 12px;

        display: flex;
        flex-direction: column;

        gap: 1.6rem;
    }

    .dvc-vision-title {
        font-size: 30px;
    }

    .dvc-vision-title-line {
        width: 85px;

        margin-top: 8px;
        margin-bottom: 14px;
    }

    .dvc-vision-intro {
        font-size: 14px;

        line-height: 1.6;

        text-align: center;
    }

    .dvc-vision-values {
        padding: 15px;

        margin-bottom: 15px;
    }

    .dvc-vision-values h3 {
        font-size: 19px;
    }

    .dvc-vision-values p {
        font-size: 13px;

        line-height: 1.6;
    }

    .dvc-vision-commitment-title {
        font-size: 17px;

        line-height: 1.4;
    }

    .dvc-vision-list-item {
        min-height: 50px;

        gap: 8px;

        padding: 9px 10px;
    }

    .dvc-vision-list-icon {
        width: 22px;
        min-width: 22px;

        font-size: 15px;
    }

    .dvc-vision-list-item p {
        font-size: 12.5px;

        line-height: 1.45;
    }

    .dvc-vision-bottom-text {
        font-size: 13px;

        line-height: 1.6;

        text-align: center;
    }

    .dvc-vision-image-wrapper {
        min-height: auto;

        margin-top: 0;
    }

    .dvc-vision-image-bg {
        width: 250px;
        height: 250px;
    }

    .dvc-vision-image {
        width: 100%;
        max-width: 330px;
    }
}


/* ============================================================
   DVC AIMS & RESPONSIBILITIES
============================================================ */
/* Aims & Responsibilities Section Background */
.dvc-aims-section {
    background: #ffffff !important;
}
.dvc-aims-section {
    width: 100%;
    /* background: #f4faef; */
    padding: 5rem 0;
    overflow: hidden;
}


/* ============================================================
   CONTAINER
============================================================ */

.dvc-aims-container {
    width: 100%;
    max-width: 1500px;

    margin: 0 auto;
    padding: 0 3rem;

    box-sizing: border-box;

    display: grid;
    grid-template-columns: 44% 56%;

    align-items: center;

    gap: 3.5rem;
}


/* ============================================================
   LEFT IMAGE
============================================================ */

.dvc-aims-image-wrapper {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}


.dvc-aims-image {
    width: 100%;
    max-width: 620px;

    height: auto;

    display: block;

    object-fit: contain;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


/* Subtle hover */

.dvc-aims-image-wrapper:hover .dvc-aims-image {
    transform: translateY(-6px);
}


/* ============================================================
   RIGHT CONTENT
============================================================ */

.dvc-aims-content {
    width: 100%;
    max-width: 850px;
}


/* ============================================================
   TITLE
============================================================ */

.dvc-aims-title {
    margin: 0 0 1rem;

    font-family: inherit;

    font-size: 2.2rem;
    font-weight: 700;

    line-height: 1.25;

    color: #202124;

    text-align: left;
}


.dvc-aims-title span {
    color: #287203;
}


/* ============================================================
   TITLE UNDERLINE
============================================================ */

/* ============================================================
   DESCRIPTION
============================================================ */

.dvc-aims-description {
    margin: 0 0 1.2rem;

    font-family: inherit;

    font-size: 16px;
    line-height: 1.75;

    color: #555;

    max-width: 850px;
}


/* ============================================================
   SUBTITLE
============================================================ */

.dvc-aims-subtitle {
    margin: 0 0 0.9rem;

    font-family: inherit;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.5;

    color: #222;
}


/* ============================================================
   RESPONSIBILITY BOX
============================================================ */

.dvc-aims-list {
    width: 100%;

    background: #eaf5df;

    border-radius: 6px;

    padding: 1.1rem 1.4rem;

    box-sizing: border-box;

    box-shadow:
        0 4px 15px rgba(40, 114, 3, 0.08);

    border: 1px solid rgba(40, 114, 3, 0.08);
}


/* ============================================================
   LIST ITEM
============================================================ */

.dvc-aims-item {
    width: 100%;

    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 10px 0;

    box-sizing: border-box;
}


/* Divider */

.dvc-aims-item + .dvc-aims-item {
    border-top: 1px solid rgba(40, 114, 3, 0.10);
}


/* ============================================================
   ICON
============================================================ */

.dvc-aims-item i {
    flex-shrink: 0;

    width: 20px;

    margin-top: 3px;

    color: #287203;

    font-size: 15px;

    text-align: center;
}


/* ============================================================
   TEXT
============================================================ */

.dvc-aims-item span {
    font-family: inherit;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.55;

    color: #333;
}


/* ============================================================
   HOVER
============================================================ */

.dvc-aims-item {
    transition:
        transform 0.3s ease,
        padding-left 0.3s ease;
}


.dvc-aims-item:hover {
    transform: translateX(5px);
}


.dvc-aims-item:hover i {
    color: #1f5d02;
}


/* ============================================================
   LARGE DESKTOP
============================================================ */

@media screen and (min-width: 1400px) {

    .dvc-aims-section {
        padding: 5.5rem 0;
    }

    .dvc-aims-container {
        max-width: 1550px;

        grid-template-columns: 45% 55%;

        gap: 4rem;

        padding: 0 3.5rem;
    }

    .dvc-aims-title {
        font-size: 2.35rem;
    }

    .dvc-aims-description {
        font-size: 16.5px;
    }

    .dvc-aims-item span {
        font-size: 15.5px;
    }
}


/* ============================================================
   LAPTOP
============================================================ */

@media screen and (min-width: 992px) and (max-width: 1199px) {

    .dvc-aims-section {
        padding: 4rem 0;
    }

    .dvc-aims-container {
        grid-template-columns: 43% 57%;

        gap: 2rem;

        padding: 0 2rem;
    }

    .dvc-aims-title {
        font-size: 2rem;
    }

    .dvc-aims-description {
        font-size: 15px;
    }

    .dvc-aims-item span {
        font-size: 14px;
    }
}


/* ============================================================
   TABLET
   768px - 991px
============================================================ */

@media screen and (min-width: 768px) and (max-width: 991px) {

    .dvc-aims-section {
        padding: 3.5rem 0;
    }

    .dvc-aims-container {
        grid-template-columns: 1fr 1fr;

        gap: 1.8rem;

        padding: 0 1.5rem;
    }

    .dvc-aims-title {
        font-size: 1.8rem;
    }

    .dvc-aims-description {
        font-size: 14px;

        line-height: 1.65;
    }

    .dvc-aims-subtitle {
        font-size: 15px;
    }

    .dvc-aims-list {
        padding: 0.8rem 1rem;
    }

    .dvc-aims-item {
        padding: 8px 0;
    }

    .dvc-aims-item span {
        font-size: 13px;
    }

    .dvc-aims-item i {
        font-size: 13px;
    }
}


/* ============================================================
   MOBILE
   481px - 767px
============================================================ */

@media screen and (min-width: 481px) and (max-width: 767px) {

    .dvc-aims-section {
        padding: 3rem 0;
    }

    .dvc-aims-container {
        display: flex;

        flex-direction: column;

        gap: 2rem;

        padding: 0 1.25rem;
    }

    .dvc-aims-image-wrapper {
        order: 1;

        width: 100%;
    }

    .dvc-aims-image {
        width: 90%;
        max-width: 500px;
    }

    .dvc-aims-content {
        order: 2;

        width: 100%;
    }

    .dvc-aims-title {
        font-size: 1.8rem;

        text-align: center;
    }

    .dvc-aims-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .dvc-aims-description {
        font-size: 15px;

        text-align: center;

        line-height: 1.65;
    }

    .dvc-aims-subtitle {
        font-size: 15px;
    }

    .dvc-aims-list {
        padding: 0.8rem 1rem;
    }

    .dvc-aims-item span {
        font-size: 14px;
    }
}


/* ============================================================
   SMALL MOBILE
   200px - 480px
============================================================ */

@media screen and (min-width: 200px) and (max-width: 480px) {

    .dvc-aims-section {
        padding: 2.5rem 0;
    }

    .dvc-aims-container {
        display: flex;

        flex-direction: column;

        gap: 1.5rem;

        padding: 0 0.9rem;
    }

    .dvc-aims-image-wrapper {
        width: 100%;

        order: 1;
    }

    .dvc-aims-image {
        width: 100%;

        max-width: 430px;
    }

    .dvc-aims-content {
        width: 100%;

        order: 2;
    }

    .dvc-aims-title {
        font-size: 1.65rem;

        line-height: 1.3;

        text-align: center;

        margin-bottom: 0.8rem;
    }

    .dvc-aims-title::after {
        width: 65px;

        height: 3px;

        margin: 9px auto 0;
    }

    .dvc-aims-description {
        font-size: 14px;

        line-height: 1.65;

        text-align: center;

        margin-bottom: 1rem;
    }

    .dvc-aims-subtitle {
        font-size: 14px;

        line-height: 1.5;

        margin-bottom: 0.7rem;
    }

    .dvc-aims-list {
        padding: 0.65rem 0.8rem;

        border-radius: 6px;
    }

    .dvc-aims-item {
        gap: 9px;

        padding: 8px 0;
    }

    .dvc-aims-item i {
        width: 17px;

        font-size: 12px;
    }

    .dvc-aims-item span {
        font-size: 13px;

        line-height: 1.5;
    }
}


/* ============================================================
   EXTRA SMALL MOBILE
============================================================ */

@media screen and (max-width: 360px) {

    .dvc-aims-section {
        padding: 2rem 0;
    }

    .dvc-aims-container {
        padding: 0 0.7rem;
    }

    .dvc-aims-title {
        font-size: 1.45rem;
    }

    .dvc-aims-description {
        font-size: 13px;
    }

    .dvc-aims-item span {
        font-size: 12.5px;
    }
}