/* About Us Section */

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 15px 50px;
}

.about-text {
    padding-bottom: 10px;
}

/* .learn-more {
    margin-top: 10px;
    padding-bottom: 20px;
} */

/* History Section */

.history-container {
    margin: 0 auto;
    padding: 30px 15px 30px;
}

.history-text{
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 15px 0 10px;
    padding-bottom: 20px;
}

/* Vision Section */

.vision {
    background-color: var(--indigo-color);
    color: var(--white-color);
    margin-bottom: 0px;
    padding: 20px 0 30px;
    text-align: left;
}

.vision-container {
    margin: 0 auto;
    padding: 0 15px;
}

.vision-container .values .value-items ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
    justify-items: center;
}

.value-item {
    height: 420px;
    width: 330px;
    color: var(--indigo-color);
    background-color: var(--white-color);
    border-radius: 17px;
    transition: 0.7s ease;
    padding: 10px 15px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
}

.value-item:hover {
    color:black;
}

.vision-container .values .value-items ul li {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.box-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.value-icon {
    font-size: 5rem;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* CEO Message section */
.ceo-message {
    padding: 20px 10px;
}


.ceo-signature {
    text-align: end;
}

/* Responsive Edits */

@media screen and (width < 1200px) {
    .value-item {
        width: 280px;

    }
    
}

@media screen and (width < 1000px) {    
    .vision-container .values .value-items ul {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        width: 630px;
        height: 330px;
        margin: 10px;
    }
}

@media screen and (width < 750px) {    
    .vision-container .values .value-items ul {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        width: 280px;
        height: 400px;
        margin: 10px;
    }
}

@media screen and (width < 375px) {
    .value-item{
        width: 240px;
        height: 420px;
    }    
}