*, ::after, ::before {
    box-sizing: border-box;
}

.mobile_page {
    display: flex;
}

.desktop_page {
    display: none;
}

@media (min-width: 991px) {
    .mobile_page {
        display: none;
    }

    .desktop_page {
        display: block;
    }

    *, ::after, ::before {
        box-sizing: content-box;
    }
}

.slide_show {
    flex-basis: 100rem;
}

.about_content_container {
    width: 100%;
    padding: 1rem;
}

.my_slides {
    display: none;
}

.about_img_container {
    display: flex;
    margin-bottom: 2rem;
}

.about_decorated_img_container {
    flex-basis: 179.5rem;
}

.about_section {
    font-size: 1rem;
}

.about_title_img_container {
    margin-bottom: 1rem;
}

.rwd_img {
    width: 100%;
    height: auto;
}

.mobile_social_media_container {
    margin: 0.75rem;
}
