div[data-sp-htmlproperties] > img {
    max-width: 100%;
    margin-bottom: 5px;
} 

div[data-sp-prop-name="title"] {
    display: none;
}

div[data-sp-componentid] {
    display: none;
}

div[data-sp-htmlproperties] > img[src^="/_LAYOUTS"] {
    display: none;
}

[data-sp-rte] {
    font-family: helvetica, verdana, arial, sans-serif;
}

.carousel .slider-wrapper {
    overflow: hidden !important;
}

.carousel.carousel-slider {
    overflow: hidden !important;
}

.fontSizeXLargePlus {
    font-size: 24px;
}

.fontSizeXxxLarge {
    font-size: 32px;
}

.fontSizeSuper {
    font-size: 42px;
}

.fontSizeMega {
    font-size: 68px;
}

.fontColorYellow {
    color: yellow;
}

.fontColorRed {
    color: red;
}

.fontColorRedDark {
    color: darkred;
}

.fontColorBlue {
    color: blue;
}

.fontColorBlueDark {
    color: darkblue;
}

.fontColorBlueLight {
    color: lightblue;
}

.fontColorGreen {
    color: Green;
}

.fontColorGreenLight {
    color: lightgreen; 
}

.fontColorPurple {
    color: purple;
}

.fontColorOrange {
    color: orange;
}

.fontColorNeutralPrimaryAlt {
    color: #3c3c3c;
}

.fontColorNeutralTertiary {
    color: #a6a6a6;
}

.fontColorNeutralSecondary {
    color: #666666
}

.fontColorThemeDarker {
    color: #751b1e;
}

.fontColorThemeDark {
    color: #952226;
}

.fontColorThemeDarkAlt {
    color: #c02b30;
}

.fontColorThemePrimary {
    color: #d13438;
}

.fontColorThemeSecondary {
    color: #d6494d;
}

.carouselDiv {
    background-color: #FBF8F5;
    padding: 0px 5px 0px 5px;
}


#threeWaycontainer {
    display: grid !important;
    grid-template-columns: 20% 60% 20%;
    padding-top: 5px;
}

.outsideWrapper {
    display: grid;
    grid-template-columns: 20% 60% 20%;
    background-color: #FBF8F5;
}

.outsideContainers {
    background-color: white; 
    margin: 15px 0px 0px 0px;
    padding: 10px;
    box-shadow: rgba(84, 30, 14, 0.35) 0px 5px 15px;
    overflow-wrap: break-word;
}

.headerDiv {
    text-align: center;
}

.carousel-root {
    overflow: hidden;
    max-height: 90vh;
}

.headerImage  {
    position: relative !important;
    min-width: 357px !important;
    min-height: 103px !important;
    max-height: 103px !important;
    align-content: center;
}

@media only screen and (max-width: 1080px) {
    #threeWaycontainer {
        display: block !important;
        padding-top: 5px;
        overflow: hidden;
    }
    .ogImg, .mrhLogo {
        display: none;
    }

    body {
        overflow: visible; 
    }

    .outsideWrapper {
        display: grid;
        grid-template-columns: 100%;
    }

    .outsideLogo {
        width: auto;
    }

    .fontSizeXLargePlus {
        font-size: 18px;
    }

    .fontSizeXxxLarge {
        font-size: 22px;
    }

    .fontSizeSuper {
        font-size: 24px;
    }

    .fontSizeMega {
        font-size: 28px;
    }

}

body {
    overflow-x: hidden;
    overflow-y: auto;
    /* min-height: 100vh; */
}


.ogImg {
    transform: rotate(-90deg);
    position: relative;
    top: 300px;
    left: -200px;
}

.mrhLogo {
    transform: rotate(90deg);
    position: relative;
    top: 275px;
    left: -200px;
}

/* Modal attempt #1 */
.gallery__item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

/*Image modal*/
.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(97, 20, 0, 1);
    margin-top: -1px;
    animation: zoom 0.3s ease-in-out;
    overflow: auto;
}
@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.modal img {
    max-height: 100%;
    max-width: 95%;
    object-fit: cover;
}

