/*===================Header================*/
.about__header {
    background: var(--color-green);
    position: relative;
    top: 5rem;
    overflow: hidden;
    height: auto;
    margin-bottom: 5rem;
    padding: 1rem; 
    

}

.about__header h3{
    line-height: 3rem;
}

.about__header__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1rem;
    height: auto; /* Adjust height based on content */
    padding: 1rem;
}

.about__header__left p {
    margin: 1rem 0 1rem;
    font-size: 1.1rem;
}

.about__header img {
border-radius: 2rem;

}



/*===================end of header================*/

/*===================section about================*/
.section__about {
    background: var(--color-green);
    padding: 5rem 0;
    text-align: center;
 
    /* Center the text */
}

.section__about__container {
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    max-width: var(--container-width-lg);
    /* Optional: limit the content width for readability */
    margin: 0 auto;
    /* Center the container */
    gap: 1.5rem;
}

.section__about__content h1 {
    
    color: #ffde00;
    font-size: 2.5rem;
    /* Adjust font size */
    margin-bottom: 1rem;
}

.section__about__content p {
    text-align:  justify;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.section__about__content a {

    font-size: 1rem;
}





.section__about__content li {
   
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    padding-left: 4rem;
}

.section__about__content li i {
    color: #ffde00; /* Bright orange for checkmark */
    margin-right: 0.75rem;
}

/*===================end of section about================*/









.text-box{
    padding: 20px 30px;
    background: #fff;
    position: relative;
    border-radius: 6px;
    font-size: 15px;
}

.left-container{
    left: 0;
}

.right-container{
    left: 50%;
}

.time_container img{
    position: absolute;
    width: 40px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    z-index: 10;

}

.right-container img{
    left: -20px;
}




.text-box h2{
    font-weight: 600;
}

.text-box small{
    display: inline-block;
    margin-bottom: 15px;
}

.left-container-arrow{
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #fff;
    right: -15px;

}

.right-container-arrow{
    height: 0;
    width: 0;
    position: absolute;
    top: 28px;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    left: -15px;

}

/*===================partners================*/


.partner-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 8 equal columns */
    grid-gap: 0.9rem;
    margin-top: 0.2rem;
    height: auto; /* Allow height to adjust based on content */
    width: 80%;  /* Adjust the width to ensure it fits within the layout */
   
  
}

.partner-container a{

    padding: .2rem; /* Optional: Add some padding around the logos */
    border-radius: 0.5rem; /* Optional: Add rounded corners */
    color: #fff;
}



@media screen and (max-width: 600px) {
 
    .text-box {
        font-size: 13px;
    }
    .text-box small{
        margin-bottom: 10px;
    }
    .right-container{
        left: 0;
    }

    .left-container img, .right-container img{
        left:3px;
    }

    .left-container-arrow, .right-container-arrow{
        border-right: 15px solid #fff;
        border-left: 0;
        left: -15px;
    }



        /*===================Header================*/
        .about__header {
            height: auto;
            
    
        }
    
        .about__header__container {
            grid-template-columns: 1fr;
            text-align: center;
            
            
        }
    
        .about__header__left p {
            margin-bottom: 1.3rem;
        }

        /*===================sections================*/


        .section__about__content li {
   
            text-align: left;
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
            padding-left: 1rem;
        }
        
    

        .section__about__container {
           
     
            align-items: center;
            padding: 0;
            margin: 1rem auto;
            /* Center the container */
        }



        .partner-container {
            grid-template-columns: 1fr; /* Stack buttons vertically on mobile */
            width: 100%; /* Full width on mobile */
        }
}