.about-grid {
    margin-top: 1rem !important;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
	flex-direction: column;
}

.about-col .about-text h4{
    margin-bottom: 1.5rem;
}

.about-description p{
    line-height: 1.2;
}

.inner-text {
    line-height: 1.2;
}

.about-text ul {
    list-style: circle;
    /* padding-left: 20px; */
    line-height: 1.2;
}

.about-text ul li {
/*     text-align: center; */
    padding: 10px 0 5px 0;
}

.about-col.about-image-center {
    margin-top: 60px;
    margin-bottom: 35px;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
	display: flex;
    justify-content: space-between;
}

.about-image-center img{
    justify-self: center;
}

.about-image-center img,
.about-images-right img {
    display: block;
    border-radius: 15px;
    width: 250px;
    border: 1px solid #636161;
}

@media (max-width: 768px) {
	.about-col.about-image-center {
		flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
	}
}

.about-col.about-images-right {
    padding: 0px 15px;
}

.about-images-right img:first-child {
    margin-bottom: 35px;
    justify-self: flex-end;
}

.about-images-right img:last-child {
    justify-self: center;
}

/* Responsive */
@media (max-width: 990px) {
    .about-grid {
        gap: 5px;
    }
    .about-images-right img:first-child {
        justify-self: center;
    }

    .about-col.about-image-center {
        margin-bottom: 0px;    
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images-right img:first-child {
        justify-self: center;
    }

    .about-col.about-image-center {
        margin-bottom: 30px;    
    }
}
