.about-section {
    display: flex;
    width: 100vw;
    height: 100vh;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.about-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 12vh;
    gap: 2rem;
    position: relative;
}

.about-small-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-small-img img {
    width: 30%;
    height: auto;
    display: block;
	margin: 0 auto;
	
}

.about-text {
    width: 80%;
	grid-column: 2 / span 5;
	font-size: 1.4rem;
}

.about-right {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-right img.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease, transform 2s ease;
}

.about-right img.about-slide.active {
    opacity: 1;
}

/* ——————————————————— RESPONSIVE ——————————————————— */

/* Big Screens */

@media (min-width: 2000px) {

    .about-section {
        width: 100%;
        max-width: 2000px;
        margin-left: 0;
        left: 0;
        transform: none;
		margin-bottom: -34vh;
    }
	
    .about-right {
        height: 70vh;
    }

    .about-right img.about-slide {
        height: 100%;
    }

    .about-text {
        max-width: 600px;
    }

}

/* Tablet Screens */

@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        height: auto;
    }
    .about-left, .about-right {
        width: 100%;
        height: 50vh;
    }
	
	
}

/* Phone Screens */

@media (max-width: 768px) {

    .about-section {
        flex-direction: column;
		width: 100vw;
        height: auto;
		overflow: visible;
        margin-left: calc(50% - 50vw);
    }

    .about-right {
		order: -1;     
		position: relative;
        width: 100%;
        height: 80vh; 
        position: relative;
    }

    .about-right img.about-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about-left {
        width: 100%;
		height: auto;
        gap: 1.5rem;
		padding-top: 4vh;
        padding-bottom: 4vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .about-text {
		order: 1;
        width: 90%;
        font-size: 1.4rem; 
        padding-bottom: 3vh;
        text-align: left;
		padding-left: 20px;
    }

    .about-small-img {
	    order: 2;   
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .about-small-img img {
        width: 60%; 
        height: auto;
    }
}