.about {
    display: flex;
    padding: 40px;
    padding-bottom: 0px;
}

.left-section {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.right-section {
    flex: 1;
}

.heading {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 5px;
}

.left-section .heading .title {
    font-family: var(----manrope-font) !important;
    font-weight: bold;
    text-transform: uppercase;
    color: #027f30;
    text-align: left;
}

.title p {
    font-family: var(----manrope-font);
    font-size: 18px;
}

.sub-title {
    font-size: var(----subtitle-font);
    font-weight: bold;
    font-family: var(----manrope-font);
    color: #282828;
}

.paragraph {
    text-align: left;
}

.paragraph p {
    font-size: var(----usual-font-size);
    color: #484848;
    font-family: var(----manrope-font);
    font-weight: 200;
    text-align: justify;
    line-height: 150%;
}

.link {
    text-align: left;
}

.link li {
    list-style-type: none;
}

.link li a {
    text-decoration: none;
    font-size: var(----usual-font-size);
    font-family: var(----manrope-font);
    color: var(----menu-bg);
}

.link li a:hover {
    text-decoration: underline !important;
}

.about_image {
    display: flex;
    justify-content: flex-end;
}

.about_image img {
    /* height: 400px; */
    width: 370px;
}

/* For screens between 1300px and 1700px */
@media (max-width: 1700px) and (min-width: 1300px) {
    .about {
        padding: 30px;
        padding-bottom: 0px;
    }
    .title {
        font-size: 16px;
    }
    .sub-title {
        font-size: 22px;
    }
    .paragraph p {
        font-size: 16px;
    }
    .about_image img {
        height: 370px;
        width: 320px;
    }
}

/* For screens smaller than 768px */
@media (max-width: 768px) and (min-width: 481px) {
    .about {
        padding: 20px;
        padding-bottom: 0px;
    }
    .title {
        font-size: 14px;
    }
    .sub-title {
        font-size: 20px;
    }
    .paragraph p {
        font-size: 14px;
    }
    .about_image {
        justify-content: center;
    }
    .about_image img {
        height: 250px;
        width: 220px;
    }
}

/* For screens smaller than 480px */
@media (max-width: 480px) {
    .about {
        flex-direction: column;
        padding: 20px 0px;
        padding-bottom: 0px;
    }

    .left-section,
    .right-section {
        flex: none;
        width: 100%;
    }

    .heading {
        text-align: center;
    }

    .title {
        font-size: var(---media-title) !important;
        text-align: right;
    }

    .sub-title {
        font-size: var(---media-sub-title);
        text-align: left;
    }

    .paragraph p {
        font-size: var(---media-main-font);
        margin: 0;
    }

    .about_image {
        justify-content: center;
    }

    .about_image img {
        width: 50%;
        height: auto;
    }

    .link li a {
        font-size: var(---media-main-font);
    }
}
