.social-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.social-section .social-content {
    background-color: #f5f5f5;
    padding: 40px;
    min-height: 380px;
    margin-bottom: 50px;
    border-radius: 6px;
    display: flex;
}

.social-section .social-content:last-child {
    margin-bottom: 0;
}

.social-section .social-content .line {
    width: 2px;
    height: 100%;
    background-color: #000;
}

.social-section .social-content .custom-col {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-section .social-content .custom-remaining-col {
    flex: 0 0 20%;
    max-width: 20%;
}

.social-section .social-content .custom-col .social-list {
    list-style: disc;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-section .social-content .custom-col .social-list li {
    position: relative;
    font-family: "Area-Normal-Regular, sans-serif";
    font-size: 1rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .social-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }  
    .social-section .social-content {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .social-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .social-section .social-content .line {
        width: 100%;
        height: 2px;
        background-color: #000;
    }

    .social-section .social-content {
        padding: 40px 20px;
        flex-direction: column;
        gap: 30px;
    }

    .social-section .social-content .custom-col {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .social-section .social-content .custom-remaining-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* CSR Section Start */
.csr-section {
    padding-bottom: 70px;
}

.csr-section .image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 15px;
}

.csr-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) and (max-width: 1024px) { 
    .csr-section {
        padding-bottom: 50px;
    }
    .csr-section .image-container {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 767px) {
    .csr-section {
        padding-bottom: 50px;
    }
}
/* CSR Section End */

/* Join US Section Start */

.join-us-section .section-heading {
    font-size: 4rem;
    line-height: 80px;
}

.join-us-section .description {
    font-family: "Area-Normal-Semibold, sans-serif";
    font-size: 20px;
    color: #000;
}

.join-us-section .image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.join-us-section .image-container img {
    width: 100%;
}

.join-us-section .join-us-in-change {
    height: 100%;
    width: 100%;
    padding: 40px;
    background-color: #aad04e;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.join-us-section .read-more {
    font-size: 16px;
    font-family: "Area-Normal-Semibold, sans-serif";
    color: #000;
    background-color: #fff;
    text-decoration: none;
    border: none;
    outline: none;
    transition: all 0.4s ease;
    transform: scale(1);
    border-radius: 30px;
    padding: 12px 40px;
    width: max-content;
}

.join-us-section .read-more:hover {
    background-color: #0084de;
    transform: scale(1.05);
    color: #fff;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .join-us-section .section-heading {
        font-size: 1.9rem;
        line-height: 40px;
    } 

    .desktop-break {
        display: none;
    }
}


@media (max-width: 767px) {       
    .join-us-section .section-heading {
        font-size: 1.5rem;
        line-height: 36px;
    } 

    .join-us-section .description {
        font-size: 15px;
    }

    .join-us-section .read-more {
        padding: 10px 20px;
        font-size: 13px;
        margin: 0 auto 30px;
    }

    .join-us-section .join-us-in-change {
        gap: 0px;
    }

    .desktop-break {
        display: none;
    }
}

/* Join US Section End */