.photogallery-section {
    padding: 50px 0;
}

.photos-row {
    display: flex;
}

.photos-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 35px 25px;
}

.colored-box {
    background: #09ab9c;
}

.photos-box>h2 {
    font-size: 32px;
    font-weight: 800;
}

.colored-title {
    color: white;
}

.white-title {
    color: #09ab9c;
}

.photos-before-after {
    display: flex;
    gap: 60px;
}

.before, .after {
    width: calc(50% - 30px);
}

.before>h3, .after>h3 {
    font-size: 24px;
    padding: 0;
    margin: 5px 0;
    text-align: center;
}

.colored-text {
    color: white;
}

.white-text {
    color: #09ab9c;
}

.before>img, .after>img {
    width: 100%;
    border-radius: 15px;
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    max-height: 230px;
    object-fit: cover;
}

.colored-image {
    border: 2px solid white;
}

.white-image {
    border: 2px solid #09ab9c;
}

/* Mobile */

.mobile-photogallery-section {
    padding: 50px 0;
}

.mobile-photos-box {
    text-align: center;
    padding: 25px 0;
}

.mobile-colored-box {
    color: white;
    background: #09ab9c;
}

.mobile-title {
    padding: 0;
    margin: 0;
}

.mobile-colored-image {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    border: 2px solid white;
}

.mobile-photo-white-box {
    text-align: center;
    color: #09ab9c;
    background: #f7f7f7;
}

.mobile-title {
    padding: 0;
    margin: 0;
}

.mobile-white-image {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    border: 2px solid #09ab9c;
}