* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: white;
    scroll-behavior: smooth;
}


h1 {
    font-size: 1.7rem;
}

h2 {
    font-size: 1.4rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    font-size: 1rem;
}

hr {
    border: 1px solid rgba(184, 134, 11, 0.7);
    width: 100%;
}


#wrapper {
    min-height: 100%;
    width: 100%;
    display: block;
    position: relative;
    text-align: center;
    margin: auto;
    overflow: hidden;
    font-family: 'Lora';
    border-bottom: 3px solid rgba(184, 134, 11, 0.7);
}


header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    height: 100px;
    top: 0;
    overflow: hidden;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 200;
    background-color: white
}

.banner-header {
    position: relative;
    text-align: center;
    display: block;
    width: 100%;
    height: 100%;
    color: white;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

}



.banner-image {
    width: 50%;
    height: 90%;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    margin: auto;
    padding: 5;
}


.banner-image a {
    text-align: center;
    padding: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;


}

.banner-image img {
    width: 100%;
    height: 100%;
    margin: auto;
    overflow: hidden;
    object-fit: contain;

}

.intro-banner-text {
    color: white;
    font-family: 'Lora', serif;
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background-color: black;
}

.intro-banner-text h1 {
    padding: 0;
    margin: 0;
    line-height: 100px;
    letter-spacing: 2px;
}

/*---------Hidden Sidebar Menu & Close buttons--------*/

.navi-bar-menu {
    display: block;
    width: 100%;
    height: auto;
    float: right;
    right: 0;
    position: relative;
}

#toggle {
    position: absolute;
    top: -2rem;
    right: 0.3rem;
    width: 20px;
    height: 20px;
    z-index: 9999;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#toggle::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: black;
    transform: translateY(-5px);
    transition: 0.5s;
}

#toggle::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: black;
    transform: translateY(5px);
    transition: 0.5s;
}

#toggle.active {
    position: absolute;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: ease-out 0.5s;
}

#toggle.active::before {

    transform: translateY(0px) rotate(-40deg);
    transition: 0.5s;

}

#toggle.active::after {

    transform: translateY(0px) rotate(40deg);
    transition: 0.5s;
}

/**********The Sidebar Menu*************/

#sidebar-nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    right: -90vw;
    width: 90vw;
    margin: 0;
    height: 80vh;
    transition: 0.5s ease;
    opacity: 0;

}


#sidebar-nav.active {
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 0vw;
    width: 89vw;
    margin: 0;
    height: 80vh;
    transition: 0.5s ease-out;
    opacity: 1;
}


#sidebar-nav.active~div {
    right: 90vw;
    display: inline-block;
    transition: ease 0.7s;
    height: 100vh;
    transition-delay: 1s ease;
}

#sidebar-nav~div {
    position: relative;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    transition: all ease-out 0.5s;
    right: 0vw;
}


#sidebar-nav div {
    opacity: 0;
    display: none;
    margin: auto;
}

#sidebar-nav.active div {
    opacity: 1;
    transition: ease 0.7s;
    transition-delay: 0.3s;
    display: block;
    text-align: center;
    top: 1vw;
    text-decoration: none;
    margin: auto;
    width: 100%;
    padding: 30 5;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


#sidebar-nav div a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: .8em;
    letter-spacing: 1px;
    margin: 0 auto;
    padding: 0;
    font-family: 'Lora';
}

#sidebar-nav div:hover>a {

    transition: 0.1s ease-in-out;
    color: darkgoldenrod;
    border-top: 2px solid goldenrod;
}






/****************The Footer**********************/

footer {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 30% 30% 15% 25%;
    grid-template-areas:
        "top-row"
        "middle-row1"
        "middle-row2"
        "bottom-row";
    height: 240px;
    position: relative;
    font-family: 'Lora';
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}



footer #footer-menu {
    grid-area: top-row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

#footer-menu div {

    margin: auto;
    width: auto;

}

#footer-menu a {
    color: black;
    font-size: .7rem;
    font-weight: 500
}

footer .all-rights {
    grid-area: middle-row1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin: auto;
    font-size: .8em;
    width: 100%;
    letter-spacing: 1px;
    justify-content: center;
    align-items: center;
}

footer .all-rights .reserved {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    order: 1;
}

footer .all-rights p {
    margin: auto;
    text-transform: uppercase;
    font-size: 0.9em;
    padding: 0
}


footer .web-designer {
    grid-area: middle-row2;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    padding: 10px;
    margin: auto;
    padding: 0;
    text-transform: uppercase;
}

footer .web-designer a {
    text-decoration: none;
    color: black;
    font-size: 0.8rem;
}


footer #footer-icons {
    grid-area: bottom-row;
    overflow: hidden;
    width: 100%;
    margin: auto;
    display: block;
    text-align: center;
}


#footer-icons ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#footer-icons ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
    padding: 0;
}

#footer-icons .fab {
    color: black;
    font-size: 25px;
    width: 18px;
    margin: auto;
    margin-bottom: 10;
    padding: 0;
}

#footer-icons .fab:hover,
#footer-icons .fab:focus {
    -webkit-animation: hvr-pulse 1.1s infinite linear;
    animation: hvr-pulse 1.1s infinite linear;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}

#footer-icons ul li:nth-child(1) .fab:hover {
    color: lightskyblue;
    -webkit-transition: .1s all ease-in-out;
    -o-transition: .1s all ease-in-out;
    transition: .1s all ease-in-out
}

#footer-icons ul li:nth-child(2) .fab:hover {
    color: indianred;
    -webkit-transition: .1s all ease-in-out;
    -o-transition: .1s all ease-in-out;
    transition: .1s all ease-in-out
}

#footer-icons ul li:nth-child(3) .fab:hover {
    color: deepskyblue;
    -webkit-transition: .1s all ease-in-out;
    -o-transition: .1s all ease-in-out;
    transition: .1s all ease-in-out
}

#footer-icons ul li:nth-child(4) .fab:hover {
    color: green;
    -webkit-transition: .1s all ease-in-out;
    -o-transition: .1s all ease-in-out;
    transition: .1s all ease-in-out
}

#footer-icons ul li:nth-child(5) .fab:hover {
    color: red;
    -webkit-transition: .1s all ease-in-out;
    -o-transition: .1s all ease-in-out;
    transition: .1s all ease-in-out
}


a:-webkit-any-link,
ul {
    list-style: none;
    text-decoration: none
}


a:-moz-any-link,
ul {
    list-style: none;
    text-decoration: none
}


a:any-link,
ul {
    list-style: none;
    text-decoration: none
}

/****************SETTINGS FOR IPADS AND TABLETS  FROM 601PX TO 1024PX*********/

@media only screen and (min-width:601px) and (max-width:1024px) {

    header {
        height: 150px;
    }

    .banner-header {

        display: grid;
        grid-template-columns: 100%;
        grid-template-areas:

            "image";
        justify-content: center;
        align-items: center;

    }

    .banner-image {
        grid-area: image;
        width: 20%;
        height: 100%;
        display: block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden;
        margin: auto;
        padding: 0;
        position: relative;
    }


    .banner-image a {
        text-align: center;
        padding: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .banner-image a img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        margin: auto;
        overflow: hidden;
        object-position: center;
        object-fit: contain;
    }


    .intro-banner-text {
        grid-area: text;
        color: black;
        font-family: 'Lora', serif;
        display: none;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden
    }

    footer {
        position: relative;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 30% 30% 15% 25%;
        grid-template-areas:
            "top-row"
            "middle-row1"
            "bottom-row"
            "middle-row2";
    }


    footer #footer-icons {

        width: 70%;

    }




    /*---------Hidden Sidebar Menu & Close buttons--------*/

    #toggle::before,
    #toggle::after {
        width: 30px;
        right: 0.8rem;
    }

    #sidebar-nav {

        min-width: 30vw;
        max-width: 30vw;
        right: -30vw;
    }


    #sidebar-nav.active {
        position: fixed;
        display: flex;
        flex-direction: column;
        right: 0vw;
        width: 30vw;
        margin: 0;
        height: 80vh;
    }


    #sidebar-nav.active~div {
        right: 30vw;
        display: inline-block;
        transition: ease 0.7s;
        height: 100vh;
        transition-delay: 1s ease;
    }


}

/**********SETTINGS FOR LAPTOPS/DESKTOPS AND LARGER SCREENS MIN WIDTH 1025PX*******/
@media only screen and (min-width:1025px) {




    header {
        height: 100px;
    }

    .banner-header {

        display: grid;
        grid-template-columns: 100%;
        grid-template-areas:
            "image";
        justify-content: center;
        align-items: center;

    }

    .banner-image {
        grid-area: image;
        width: 20%;
        height: 100%;
        display: block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden;
        margin: auto;
        padding: 0;
        position: relative;
    }


    .banner-image a {
        text-align: center;
        padding: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .banner-image a img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        margin: auto;
        overflow: hidden;
        object-position: center;
        object-fit: contain;
    }


    .intro-banner-text {
        grid-area: text;
        color: black;
        font-family: 'Lora', serif;
        display: none;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden
    }

    #toggle::before,
    #toggle::after {
        width: 30px;
        right: 1rem;
    }



    #sidebar-nav {
        display: none;
        position: absolute;

    }


    #sidebar-nav.active {
        position: fixed;
        display: flex;
        flex-direction: column;
        right: 0vw;
        width: 20vw;
        margin: 0;
        height: 75vh;
        background-color: rgba(255, 209, 220, 0.3);
        transition: 0.5s ease-in;
        background-color: white;
    }

    #sidebar-nav.active div {
        opacity: 1;
        transition: ease 0.7s;
        transition-delay: 0.3s;
        display: block;
        text-align: center;
        top: 1vw;
        text-decoration: none;
        margin: auto;
        width: 100%;
        padding: 30 5;
        overflow: hidden;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }


    #sidebar-nav div a {
        color: black;
        text-decoration: none;
        font-weight: 500;
        font-size: .8em;
        letter-spacing: 1px;
        margin: 0 auto;
        padding: 0;
        position: relative;
        font-family: 'Lora';
    }


    #sidebar-nav.active~div {
        right: 20vw;
        display: inline-block;
        transition: ease 0.7s;
        height: 100vh;
        transition-delay: 1s ease;
    }

    /********************************************************/

    footer {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 33%);
        grid-template-rows: auto;
        grid-template-areas:
            "top-row top-row top-row"
            "middle-row1 bottom-row middle-row2";
        height: 180px;
        position: relative;
        font-family: 'Lora';
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;

    }



    footer .all-rights {
        display: flex;
        flex-direction: row;
        margin: auto;
        font-size: .8em;
        width: 100%;
        height: 100%;
        letter-spacing: 1px;
        justify-content: center;
        align-items: center;
    }

    footer .all-rights .reserved {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;

        order: 1;
    }

    footer .all-rights p {
        margin: auto;
        text-transform: uppercase;
        font-size: 0.9em;
        padding: 0
    }


    #footer-menu div:hover a {
        color: darkgoldenrod;
    }

    #footer-menu a {
        font-size: 0.8rem;
    }

    footer #footer-icons {
        grid-area: bottom-row;
        overflow: hidden;
        margin: auto;
        display: block;
        text-align: center;
    }

}


/********************THE HOME PAGE *******************/


#home-page {
    position: relative;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    transition: all ease-out 0.5s;
    right: 0vw;
}


#home-page .intro-container {
    position: relative;
    width: 100%;
    height: 90vh;
    margin-bottom: 5vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;

}

.intro-container figure {
    position: relative;
    width: 1000%;
    height: 100%;
    margin: 0;
    left: 0;
    -webkit-animation: 20s slider infinite;
    animation: 30s slider infinite;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden
}

.intro-container figure img {
    float: left;
    width: 10%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center center
}


@keyframes slider {


    0% {
        left: 0;
    }

    5% {
        left: 0;
    }

    15% {
        left: -100%;
    }

    20% {
        left: -100%;
    }

    25% {
        left: -200%;
    }

    30% {
        left: -200%;
    }

    35% {
        left: -300%;
    }

    40% {
        left: -300%
    }

    45% {
        left: -400%
    }

    50% {
        left: -400%
    }

    55% {
        left: -500%
    }

    60% {
        left: -500%
    }

    65% {
        left: -600%
    }

    70% {
        left: -600%
    }

    75% {
        left: -700%
    }

    80% {
        left: -700%
    }

    85% {
        left: -800%
    }

    90% {
        left: -800%
    }



    100% {
        left: -900%
    }

}

.main-intro {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    grid-template-areas:
        "story"
        "story-img"
        "mission"
        "mission-img"
        "core"
        "core-img";
    gap: 20px;
    padding: 0;
    position: relative;
    height: auto;
    width: 100%;
    margin: 0 0 2vh 0;
    font-family: 'Rouge Script', cursive;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 15px;
}

.main-intro h2 {
    margin: auto;
    padding: 2;
    width: 100%;
    font-size: 2rem;
}

.intro-section {
    height: auto;
    width: 100%;
    margin: auto;
}

.intro-section#introduction,
.intro-section#mission,
.intro-section#core {

    margin: auto;
    overflow: hidden;
    height: auto;
}

intro-section#introduction {
    grid-area: story;
}

.intro-section#mission {
    grid-area: mission;
}

.intro-section#core {
    grid-area: core;
}

.intro-section .intro-message {

    font-family: 'Lora';
    font-weight: normal;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

.images {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0 0 5vh 0;
}

.images img {
    min-height: 400px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.intro-section#services {

    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    gap: 2em
}

.intro-section .header-text {
    width: 100%;
    height: 10%;
}

.intro-section .service-tabs-container {
    display: grid;
    grid-template-columns: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: auto;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    gap: 1.5rem;
}



.service-tabs-container .services-tabs {
    height: 500px;
    width: 100%;
    position: relative;
    margin: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;

}

.service-tabs-container .services-tabs:hover {

    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    cursor: pointer;
    overflow: hidden;
}

.services-tabs .tile-header {
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    overflow: hidden;
    z-index: 1;
    height: 60%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.services-tabs .tile-header h3 {
    position: relative;
    color: white;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 2.5rem;
    width: 340px;
    text-align: center;
    overflow: hidden;
    margin: auto;
    padding: 0;
}

.services-tabs .images {
    width: 340px;
    height: 100%;
    margin: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.services-tabs:hover .images img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    box-sizing: border-box;
    overflow: hidden;
}

.services-tabs .images img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    overflow: hidden;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

.intro-section #learn-more {
    font-family: 'Lora';
    width: 100%;
    position: absolute;
    height: 5%;
    font-weight: normal;
    top: 95%;
    opacity: 1;
    max-width: 340px;
}

.services-tabs:hover #learn-more {
    opacity: 1;
    z-index: 2;
    color: white;
}

.intro-section #learn-more a {
    cursor: pointer;
    font-weight: normal;
    text-decoration: none;
    color: white;

}



.outro {
    display: block;
    width: 100%;
    height: 100vh;
    position: relative;
}

.outro-inner {
    position: relative;
    animation: image-effect 25s ease 1s infinite alternate;
    background-image: url(images/tablesixevents-7PNb.JPG);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    transform-style: preserve-3d;
    width: 100%;
    height: 100%;
}

.outro #outro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    border: 3px solid white;
    padding: 8px 18px;
    text-align: center
}

.outro #outro-text h2 {
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    font-size: 3.5em;
    margin: 0;
    padding: 0;
    text-align: center
}

.outro #outro-text h3 {
    font-family: sans;
    font-style: italic;
    margin: 0;
    padding: 0;
    font-weight: normal;
}


@keyframes image-effect {
    0% {
        background-image: url(images/tablesixevents-7PNb.JPG);
        transition: background-image 5s linear;

    }




    25% {
        background-image: url(images/Img-22.jpg);
        transition: background-image 5s linear;

    }



    50% {
        background-image: url(images/outdoor-wedding.jpg);
        transition: background-image 5s linear;

    }



    75% {
        background-image: url(images/tablesixevents-Pd15.JPG);
        transition: background-image 5s linear;

    }



    100% {
        background-image: url(images/tablesixevents-7PNb.JPG);
        transition: background-image 5s linear;

    }

}


/*****Meet the founder section *************/

#home-page .meet-ruth {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto;
    grid-template-areas:
        "top-bl "
        "text"
        "image  "
        "bottom-bl";
    width: 90%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    border: 5px solid white;
    gap: 20px 5px;
    padding: 15px 0;
}

#home-page .meet-ruth h2 {
    grid-area: top-bl;
    display: block;
    font-weight: normal;
    width: 100%;
    margin: 0;
    padding: 0;
}


.meet-ruth #image-container {
    grid-area: image;
    display: block;
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.meet-ruth #image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-position: 100%;
    object-position: 100%;
}

#home-page .meet-ruth #comments-box {
    grid-area: text;
    position: relative;
    overflow: hidden;
    padding: 0 5px;
}

#home-page .meet-ruth p {

    width: 100%;
    text-align: justify;
    text-justify: inter-word;

    overflow: hidden;
}

.meet-ruth q {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 600;
    font-family: 'open sans';
    letter-spacing: 1.5px;
    text-align: right;
    text-justify: newspaper;
}



.meet-ruth button {
    grid-area: bottom-bl;
    width: 45vw;
    height: 50px;
    max-width: 150px;
    margin: auto;
    outline: none;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: rgba(184, 134, 11, 0.3);
    font-weight: 500;
    transition: all 0.3s;
}

.meet-ruth button a {
    text-decoration: none;
    color: black;
    padding: 0;
    margin: 0;
    border-bottom: 2.5px solid white;
    font-family: 'Lora';
    font-size: 1rem;
}

.meet-ruth button:hover {


    background-color: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(161, 128, 43, 1);
}

.meet-ruth button:hover a {
    color: rgba(161, 128, 43, 1);
    border-bottom: 1.9px solid rgba(161, 128, 43, 1);
}

.meet-ruth button a::after {
    position: absolute;
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    margin-left: 4px;
    font-weight: 600;
    color: ghostwhite;
    font-size: 1rem;
}

.meet-ruth button:hover a::after {
    color: rgba(161, 128, 43, 1);
}

/****************The Contact us section******************/

#home-contact-section {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), url(images/happy-couple2.JPG);
    background-size: cover;
    background-position: 60% 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#home-contact-section a {
    height: 10%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

#home-contact-section h2 {
    margin-top: 40%;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid rgba(184, 134, 11, 0.7);
    color: #fff;
    background-color: rgba(184, 134, 11, 0.2);
    padding: 5px 10px;
    letter-spacing: 1.5px;
    transition: background 0.3s;
    border-radius: 5px;
}

#home-contact-section h2:hover {
    border: 3px solid white;
    color: rgba(161, 128, 43, 1);
    background-color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    transition: background 0.3s;
}

#contactUs-icons {
    display: inline-flex;
    height: 80px;
    width: 80%;
    position: relative;
    margin: auto;
    justify-content: center;
    align-items: center;
}

#contactUs-icons a {
    display: inline-block;
    margin: 0 10px;
}

#contactUs-icons a.fab,
#contactUs-icons a.fa {
    display: flex;
    color: white;
    padding: 15px;
    margin: auto;
    width: 2.6rem;
    font-size: 1.5rem;
    height: 2.6rem;
    line-height: 1rem;
    border-radius: 50%;
    border: 2px solid white;
}

#contactUs-icons a.fab:hover,
#contactUs-icons a.fa:hover {
    border: 2px solid rgba(161, 128, 43, 1);
    color: rgba(161, 128, 43, 1);
    background-color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    transition: background 0.3s;
}

#home-contact-section h3 {
    color: white;
    border-bottom: 2px solid white;
}

/************** HOME PAGE SETTINGS FOR IPADS AND TABLETS**************/

@media only screen and (min-width:601px) and (max-width:1024px) {



    /********************************************************/


    #home-page .intro-container {

        height: 80vh;
    }

    .main-intro {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: repeat(3, 500px);
        grid-template-areas:
            "story story-img"
            "mission-img mission"
            "core core-img";
        gap: 20px;
        padding: 5px 20px;
        position: relative;
        height: auto;
        width: 100%;
    }

    .images img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .intro-section .service-tabs-container {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: auto;
        gap: 10px;
        height: auto;
        width: 90%;
        max-width: 720px;

    }



    .services-tabs .tile-header {
        overflow: hidden;
        z-index: 1;
        height: 60%;
        background-color: rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 340px;
    }

    .services-tabs .tile-header h3 {
        display: flex;
        flex-direction: column;
        width: inherit;
        font-size: 2.2rem;

    }

    .intro-section#services {

        width: 90%;
        margin: auto;
        overflow: hidden;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        height: auto;
        border-top: 5px solid white;
        padding: 30px 0;
    }

    .outro {

        height: 80vh;

    }

    .services-tabs .images {
        width: 100%;
        max-width: 340px;
        height: 100%;
        margin: auto;
        overflow: hidden;
    }


    #home-page .meet-ruth {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto;
        grid-template-areas:
            "top-bl top-bl"
            "text image"
            "bottom-bl image";
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: auto;
        max-width: 1024px;
        margin: auto;
        border: 10px solid white;
        position: relative;
        box-sizing: border-box;
        padding: 2rem;
    }



    .meet-ruth #image-container {
        grid-area: image;
        display: block;
        width: 100%;
        height: 450px;
        margin: 0;
        padding: 1rem;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden;
    }

    .meet-ruth #image-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        -o-object-position: 100%;
        object-position: 100%;
    }

    .meet-ruth button {

        width: 45%;
        height: 50px;
        max-width: 150px;
        margin: auto;
    }




}

/**********HOME PAGE SETTINGS FOR THE LAPTOPS AND DESKTOP SCREENS************/

@media only screen and (min-width:1025px) {


    #home-page .intro-container {

        height: 100vh;
    }

    .main-intro {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-rows: repeat(3, 450px);
        grid-template-areas:
            "story story-img"
            "mission-img mission"
            "core core-img";
        gap: 20px;
        padding: 20px;
        position: relative;
        height: auto;
        width: 70%;
        margin: auto;
        font-family: 'Rouge Script', cursive;
        overflow: hidden;
        justify-content: center;
        align-items: center;
    }

    .images img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

   .images#core img {
        object-position: 50% 80%;
    }


    .intro-section .service-tabs-container {
        display: grid;
        grid-template-columns: repeat(3, 31%);
        grid-template-rows: auto;
        width: 100%;
        max-width: 1140px;
        gap: 25px 20px;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-sizing: border-box;
        padding: .5rem;
    }

    .services-tabs .images {
        position: relative;
        max-width: 350px;
        height: 100%;
    }

    .intro-section #learn-more {
        font-family: 'Lora';
        width: 100%;
        position: absolute;
        height: 5%;
        font-weight: normal;
        top: 95%;
        opacity: 0
    }

    .intro-section #learn-more a {
        width: 100%;
    }

    .services-tabs .tile-header {
        overflow: hidden;
        z-index: 1;
        height: 80%;
        background-color: rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 340px;
    }

    .services-tabs .tile-header h3 {
        display: flex;
        flex-direction: column;
        width: inherit;
        font-size: 2.2rem;

    }

    .services-tabs .images {
        width: 100%;
        max-width: 340px;
        height: 100%;
        margin: auto;
        overflow: hidden;
    }

    /*******************************************************/
    /*.outro-inner {

        height: 300px;
        width: 100%;

    }
*/
    /****************MEET THE TEAM SECTION**********************/


    #home-page .meet-ruth {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: 10% 70% 10%;
        grid-template-areas:
            "top-bl top-bl"
            "text image"
            "bottom-bl image";
        gap: 25px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 500px;
        max-width: 1200px;
        margin: auto;
        border: 10px solid white;
        position: relative;
        box-sizing: border-box;
        padding: 2rem 5rem;
    }

    #home-page .meet-ruth h2 {
        grid-area: top-bl;
        display: block;
        font-weight: normal;
        width: 100%;
        margin: 0;
        padding: 0;
    }


    .meet-ruth #image-container {
        grid-area: image;
        display: block;
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        overflow: hidden;
        background-image: url(images/ruth-b_1.jpg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: 80%;
    }

    .meet-ruth #image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: none;
    }

    #home-page .meet-ruth #comments-box {
        grid-area: text;
        position: relative;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    #home-page .meet-ruth p {

        width: 100%;
        margin: 0;
    }


    .meet-ruth button a {
        text-decoration: none;
        color: black;
        padding: 0;
        margin: 0
    }


    .meet-ruth button {

        width: 30%;
    }


    #home-contact-section {

        height: 70vh;

    }

    #home-contact-section a {
        height: 15%;
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
    }

    #home-contact-section h2 {

        font-size: 3rem;
        padding: 5px 10px;
        letter-spacing: 1.5px;
        margin-top: 60%;
    }


}


/********************************************************************************* THE SERVICES PAGE ****************************************************************/

#services-page {
    position: relative;
    width: 90%;
    min-height: 100%;

    transition: all ease-out 0.5s;
    right: 0vw;
}

#services-page>h2 {
    display: block;
    height: auto;
    text-align: center;
    margin: 0px;
    padding: 5px;
    text-transform: uppercase;

}

#services-page>p {
    padding: 0 10px;
    text-align: justify;
    text-justify: inter-word;
}

#thumbnail-container {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(6, auto);
    column-gap: 5px;
    row-gap: 15px;
    justify-content: center;
    align-items: center;
    margin: auto;
    overflow: hidden;
    border: 10px;
    width: 95%;
    padding: 50px 0;
}

#thumbnail-container .thumbnail-tiles {
    height: 500px;
    margin: auto;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    filter: brightness(1.1);
}

.thumbnail-tiles .tile-header {
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translate(-50%, -50%);
    margin: auto;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumbnail-tiles .tile-header h3 {
    text-transform: uppercase;
    font-weight: 600;
    margin: auto;
    height: auto;
    text-align: center;
}

.thumbnail-tiles .images {
    height: 100%;
    width: calc(100% -10%);
    max-width: 420px;
    margin: auto;
}

.thumbnail-tiles img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: auto;
}

.thumbnail-tiles ul {
    text-align: left;
}

#thumbnail-reveal-txt,
#thumbnail-reveal-txt2,
#thumbnail-reveal-txt3,
#thumbnail-reveal-txt4,
#thumbnail-reveal-txt5,
#thumbnail-reveal-txt6 {
    top: 0;
    left: 50%;
    width: 99%;
    height: 95%;
    transform: translate(-50%, 0%);
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    position: absolute;
    transition: 0.5s ease;
    max-width: 420px;
    color: white;
}

#thumbnail-reveal-txt h3,
#thumbnail-reveal-txt2 h3,
#thumbnail-reveal-txt3 h3,
#thumbnail-reveal-txt4 h3,
#thumbnail-reveal-txt5 h3,
#thumbnail-reveal-txt6 h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20%;
    width: 100%;
    padding: 0;
    margin-top: 1%;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 2px solid white;
}



#learn-more {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: rgba(184, 134, 11, 0.3);
    width: 100%;
    max-width: 420px;
    border-top: 3px solid white;
}

#learn-more h3 {
    margin: 0;
    padding: 0;
    color: white;
    height: 2rem;
    line-height: 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

#learn-more h3::after {
    content: "\f139";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    display: inline-block;
    margin-left: 5px;
}


/*************SETTINGS FOR TABLET AND IPADS***************/

@media only screen and (min-width:601px) and (max-width:1024px) {

    #services-page {
        position: relative;
        width: 100%;
        min-height: 100%;
        margin: 30px 30px 0;
        padding: 0;
        transition: all ease-out 0.5s;
        right: 0vw;
    }

    #thumbnail-container {

        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: repeat(3, auto);
        column-gap: 10px;
        row-gap: 10px;
        border: 10px;
        width: 90%;
        padding: 30px 15px;
    }

    .thumbnail-tiles .images {
        height: 100%;
        width: calc(100% -20%);
        max-width: 420px;
    }




}

/************************************************************/
/*************SETTINGS FOR LAPTOPS AND DESKTOPS***************/

@media only screen and (min-width:1025px) {

    #services-page {
        position: relative;
        width: 100%;
        min-height: 100%;
        padding: 0;
        transition: all ease-out 0.5s;
        right: 0vw;
    }


    #services-page>p {
        padding: 0 10px;
        width: 90%;
        text-align: justify;
        text-justify: inter-word;
        margin: auto;
    }

    #thumbnail-container {

        display: grid;
        grid-template-columns: repeat(3, 30%);
        grid-template-rows: repeat(2, auto);
        column-gap: 10px;
        row-gap: 20px;
        border: 10px;
        width: 90%;
    }



}



/*******************************************************************/
/**********************THE GALLERY PAGE***********************/


#Gallery-page {
    position: relative;
    height: auto;
    width: 100%;
    margin: auto;
    text-align: center;
    box-sizing: border-box;
    padding: 0;
}


#Gallery-page h2 {
    margin: auto;
    width: 90%;
}

#Gallery-page p {
    padding: 10px;
    text-align: center;
    width: 90%;
    margin: auto;
}

#gallery-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 10px auto;
    text-align: center;
    display: block;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.9);
}

#gallery-wrapper .gallery-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: auto;
    text-align: center;
    box-sizing: border-box;
    padding: 0px;
    overflow: hidden;
    width: 80%;
}

.gallery-items .item {
    width: 300px;
    height: 450px;
    position: relative;
    box-sizing: border-box;
    margin: 30px auto 0;
    overflow: hidden;
}


.gallery-items .item.hide {
    display: none;
}

.gallery-items .item.show {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: show .5s ease;
    margin: auto;
    overflow: hidden;
    box-sizing: border-box;
}

@keyframes show {
    0% {
        opacity: o;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.item img {
    -webkit-box-reflect: below 5px linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5));
    object-fit: cover;
    height: 330px;
    width: 100%;
    margin: auto;
    transition: 0.3s ease;
    display: block;
}

.item:hover img {
    transform: scale(1.1);
    transition: 0.3s ease-out;
    width: 100%;
    overflow: hidden;
}

.caption-txt {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 50%;
    top: 70%;
    width: 100%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.caption-txt h3 {
    color: white;
    text-align: center;
    font-weight: 400;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    line-height: 40px;
    font-family: 'lora';
    font-size: 1.2rem;
}

/*SECTION THAT SHOULD ALLOW FOR THE PAGINATION OF GALLERY**********/
#gallery-wrapper .pagination {
    display: none;
    /*disabled for mean time*/
    padding: 15px 0;
    text-align: center;
}

#gallery-wrapper .pagination div {
    display: inline-block;
    margin: 0.5rem 1rem;
}

#gallery-wrapper .pagination .page {
    color: dimgray;
    font-size: 0.8rem;
}

#gallery-wrapper .pagination .prev,
#gallery-wrapper .pagination .next {
    color: black;
    border: 1px solid black;
    font-size: 0.8rem;
    cursor: pointer;
    margin: auto;
    padding: 0.2rem 0.5rem;
}

#gallery-wrapper .pagination .prev.disabled,
#gallery-wrapper .pagination .next.disabled {
    border-color: gray;
    color: dimgray;
    pointer-events: none;
}

.to-top {
    position: fixed;
    background-color: white;
    top: 70vh;
    right: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 400;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    opacity: 0;
    text-decoration: none;
    pointer-events: none;
    transition: all .4s;
}

.to-top.active {
    opacity: 1;
    pointer-events: auto;

}



/************GALLERY PAGE SETTINGS FOR LAPTOPS/DESKTOPS**************/
@media screen and (min-width:1025px) {

    #gallery-wrapper .gallery-items {
        display: grid;
        grid-template-columns: repeat(3, 33%);
        min-width: 1025px;
        max-width: 1300px;
    }

    .gallery-items .item.show {

        animation: show .5s ease;
        margin: 0 auto;
        overflow: hidden;
        box-sizing: border-box;
        min-width: auto;
        max-width: 100%;
    }

}



/******************************************************************************THE ABOUT-US PAGE**********************************/

#aboutUs-page {
    display: block;
    position: relative;
    height: auto;
    text-align: center;
    overflow: hidden;
    padding-bottom: 100px;
}

.aboutUs-inner-grid {
    display: grid;
    width: 95vw;
    grid-template-columns: 100%;
    grid-template-areas:
        "header"
        "intro"
        "header2"
        "image1"
        "intro2"
        "image2"
        "intro3";
    justify-content: center;
    align-items: center;
    margin: auto;
    overflow: hidden;
    height: auto;
    padding: 0 15px;
    box-sizing: border-box;
}



#aboutUs-page h2#hdr1 {
    grid-area: header;
    text-align: center;

}

#aboutUs-page h2#hdr2 {
    grid-area: header2;
    text-align: center;
    margin: 15 auto;
    width: 100%;
    display: block;
}

#aboutUs-page p {
    text-align: justify;
    text-justify: inter-word;
    padding: 2px;
    line-height: 1.8rem;
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
}



#aboutUs-page p.text-1 {
    grid-area: intro;
    margin: auto;
    width: 100%;
    height: auto;
}

#aboutUs-page p.text-2 {
    grid-area: intro2;
    margin: auto;
    width: 100%;
    height: auto;
}

#aboutUs-page p.text-3 {
    grid-area: intro3;
    margin: auto;
    width: 100%;
    height: auto;
}

#aboutUs-page span {
    font-style: italic;
}

#aboutUs-page q {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 600;
    font-family: 'open sans';
    letter-spacing: 1.5px;
    text-align: right;
    text-justify: newspaper;
}


#the-ceo-pic1 {
    grid-area: image1;
    width: 100%;
    height: 400px;
    width: 100%;
    overflow: hidden;
    margin: auto;
    display: block;
}

#the-ceo-pic1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65%;
}

#the-ceo-pic2 {
    grid-area: image2;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    height: 400px;
}

#the-ceo-pic2 figure {
    width: 400%;
    height: 100%;
    margin: 0;
    padding: 0;
    animation: ceo-slide 16s ease infinite;
    position: absolute;
}

@keyframes ceo-slide {
    0% {
        left: 0%;
    }

    25% {
        left: -100%;
    }

    50% {
        left: -200%;

    }

    75% {
        left: -300%;
    }

    100% {
        left: 0;
    }
}

#the-ceo-pic2 img {
    height: 100%;
    float: left;
    left: 0;
    width: 25%;
    margin: 0;
    object-fit: cover;
    object-position: top;
}


#awards {
    display: grid;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    grid-template-areas:
        "award-hdr"
        "award-text"
        "award-img";
    margin: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding-bottom: 30px;
}

#awards h2 {
    grid-area: award-hdr;
    text-align: center;


}


#awards p {

    text-align: center;
    padding: 5px 10px;
    margin: auto;
    box-sizing: border-box;
    overflow: hidden;
}

#awards a {
    color: goldenrod;
    font-style: italic;
}

#awards .award-pic {
    grid-area: award-img;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

#awards .award-pic img {
    width: 90%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}



/**************TABLET AND IPAD SETTINGS*******************/

@media only screen and (min-width:601px) and (max-width:1024px) {

    .aboutUs-inner-grid {
        display: grid;
        max-width: 1000px;
        grid-template-columns: repeat(2, 50%);
        grid-template-areas:
            "header header"
            "intro intro"
            "header2 header2 "
            "intro2 image1"
            "intro3 intro3 "
            "image2 image2";
        justify-content: center;
        align-items: center;
        margin: auto;
        padding: 0 20px 100px;
    }

    #aboutUs-page p.text-1,
    #aboutUs-page p.text-2,
    #aboutUs-page p.text-3 {
        padding: 0 15px;
        overflow: hidden;
        box-sizing: border-box;
    }


    #the-ceo-pic1 {
        grid-area: image1;
        width: 100%;
        height: 500px;
        overflow: hidden;
        margin: auto;
        display: block;
        text-align: center;
    }

    #the-ceo-pic1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 65%;
    }

    #the-ceo-pic2 {

        height: 500px;
    }


    #the-ceo-pic2 img {

        object-fit: cover;
        object-position: center;
    }

    #awards {
        display: grid;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: auto;
        grid-template-areas:
            "award-hdr award-hdr"
            "award-text award-img";
        margin: auto;
        width: 80%;
        max-width: 900px;
        height: 500px;
    }



}


/**************LAPTOPS AND DESKTOPS SETTINGS*******************/
@media only screen and (min-width:1025px) {

    .aboutUs-inner-grid {
        display: grid;
        max-width: 1050px;
        height: auto;
        grid-template-columns: repeat(2, 50%);
        grid-auto-rows: auto;
        grid-template-areas:
            "header header"
            "intro intro"
            "header2 ."
            "intro2 image1"
            "intro3 intro3 "
            "image2 image2";
        justify-content: center;
        align-items: center;
        margin: auto;
        padding: 0 20px 100px;
        overflow: hidden;
        column-gap: 20px;
        row-gap: 15px;
        box-sizing: border-box;
    }

    #aboutUs-page p.text-1,
    #aboutUs-page p.text-2,
    #aboutUs-page p.text-3 {
        padding: 0 15px;
        overflow: hidden;
        box-sizing: border-box;
    }


    #the-ceo-pic1,
    #the-ceo-pic2 {
        height: 500px;
        width: 100%;
        overflow: hidden;
        margin: auto;
    }

    .aboutUs-inner-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        margin: auto;
        overflow: hidden;
    }

    #the-ceo-pic1 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: 65%;
    }

    #the-ceo-pic2 img {

        object-fit: cover;
        object-position: center;
    }

    #awards {

        grid-template-columns: repeat(2, 50%);
        grid-template-rows: auto;
        grid-template-areas:
            "award-hdr award-hdr"
            "award-text award-img";
        margin: auto;
        width: 80%;
        max-width: 900px;
        height: 500px;
    }


}



/**************THE CLIENT REVIEWS PAGE*******************/

#client-reviews-page {
    position: relative;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    transition: all ease-out 0.5s;
    right: 0vw;
    overflow: hidden;
}



#client-reviews-page h4 {
    display: block;
}


.customer-reviews-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    overflow: hidden;
    margin: auto;
}


#client-reviews-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1330px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
    overflow: hidden;
    height: auto;
    box-sizing: border-box;
    margin: auto;
    margin-bottom: 10%;
    padding: 30px 0;
}

#client-reviews-container .card {
    position: relative;
    width: 280px;
    height: auto;
    margin: 30px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.3);
    border-radius: 1px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

#client-reviews-container .card#one {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/Icons/TABLE\ 6\ LOGO\ COLOR.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}

#client-reviews-container .card#two {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/Icons/TABLE\ 6\ LOGO\ COLOR.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#client-reviews-container .card#three {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/Icons/TABLE\ 6\ LOGO\ COLOR.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#client-reviews-container .card#four {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/Icons/TABLE\ 6\ LOGO\ COLOR.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#client-reviews-container .card#five {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/Icons/TABLE\ 6\ LOGO\ COLOR.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#client-reviews-container .card#six {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(images/Icons/TABLE\ 6\ LOGO\ COLOR.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}





#client-reviews-container .card .content {
    padding: 20px;
    height: 100%;
    text-align: center;
    transform: translateY(0px);
    transition: 0.5s;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.8);
}

#client-reviews-container .card:hover {

    height: auto;

}

/*
#client-reviews-container .card:hover .content {
    transform: translateY(0px);
    opacity: 1;
    height: 100%;
}*/



#client-reviews-container .card .content h3 {

    color: black;
    z-index: 1;
    pointer-events: none;
    margin: 0;
    width: 90%;

}

#client-reviews-container .card .content q {

    font-weight: 300;
    color: black;
    pointer-events: none;
    cursor: progress;
}

#client-reviews-container .card .content a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 15px;
    background: white;
    color: black;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

}

/***************SETTINGS FOR LAPTOPS AND LARGE SCREENS****************************/

@media only screen and (min-width:1025px) {
    #client-reviews-page h4 {
        display: none;
    }

}






/***************************THE CONTACT US PAGE*************************/

#contact-us-page {
    height: auto;
}



#slider {
    overflow: hidden;
    position: relative;
    height: 50vh;
    margin: auto auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
}

#slider .slideshow-item {
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0;
    position: absolute;
    animation: contactSlides 21s infinite;
    opacity: 0;

}

@keyframes contactSlides {
    10% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    /*
    55% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    85% {
        opacity: 1;
    }*/
}

#slider .slideshow-item:nth-child(1) {
    animation-delay: 0s;
}

#slider .slideshow-item:nth-child(2) {
    animation-delay: 5s;

}

#slider .slideshow-item:nth-child(3) {
    animation-delay: 10s;
}

#slider .slideshow-item:nth-child(4) {
    animation-delay: 15s;
}


.slideshow-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% 50%;
    animation: pan 21s infinite;
}

#slider .slideshow-item:nth-child(1),
#slider .slideshow-item:nth-child(1) img {
    animation-delay: 0s;
}

#slider .slideshow-item:nth-child(2),
#slider .slideshow-item:nth-child(2) img {
    animation-delay: 5s;
}

#slider .slideshow-item:nth-child(3),
#slider .slideshow-item:nth-child(3) img {
    animation-delay: 10s;
}

#slider .slideshow-item:nth-child(4),
#slider .slideshow-item:nth-child(4) img {
    animation-delay: 15s;
}

@keyframes pan {
    100% {
        transform: scale(1.3);
    }
}

.slideshow-item-text {
    width: auto;
    max-width: 60%;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.slideshow-item-text h3 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.slideshow-item-text li {
    height: auto;
    width: 100%;
    text-decoration: none;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.slideshow-item-text a {
    text-decoration: none;
    color: white;
    padding: 0;
    margin: 0;
    width: 100%;
    font-size: 1.1rem;
}

.slideshow-item-text li {
    text-align: left;
    margin-left: 30%;

}

.slideshow-item-text span {
    text-align: center;
    margin-left: 0.8rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
}

.slideshow-item-text li a.fab {
    display: inline-block;
    font-size: 1rem;
    color: white;
    margin: auto;
    padding: 0;
    font-weight: 900;
}







/*****************THE MAIN CONTACT US FORM************************/

#contact-section {
    position: relative;
    width: 100%;
    height: auto;
    background-image: linear-gradient(rgba(255, 255, 255, 9%), rgba(255, 255, 255, 9%)), url(images/couple7jpg.jpg);
    padding: 0;
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    overflow: hidden;
    box-sizing: border-box;

}

#slider {
    height: 600px;
}

#contact-us-banner {

    padding: 1rem;
}


#contact-us-banner h2 {

    text-transform: uppercase;
}

#contact-us-banner p {
    text-align: center;
    text-justify: distribute-all-lines;
}

#mainform {
    height: auto;
    margin: auto;
    text-align: center;
    display: block;
}



#contact-form {
    position: relative;
    display: grid;
    grid-template-areas:
        "names"
        "emailAdd"
        "phone"
        "subject"
        "event"
        "date"
        "guests"
        "textarea"
        "captchaBadge"
        "buttons";
    grid-template-columns: 100%;
    justify-content: center;
    align-items: center;
    margin: auto;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
}

#contact-form .inputBox {
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'Quicksand', sans-serif;
    width: 100%;
    padding: 10px;
    margin: 0;
    border-radius: 5px;
    outline: none;
    overflow: hidden;
    resize: none;
    box-sizing: border-box;
}

.inputBox label {
    text-align: left;
    margin-left: 2%;
    font-size: 1rem;
    font-weight: bolder;
    color: white;

}

#contact-form .inputBox input,
#contact-form .inputBox textarea {


    height: 2rem;
    width: 98%;
    resize: none;
    outline: none;
    background-color: rgba(0, 0, 0, 29%);
    border: solid 2px rgba(0, 0, 0, 0);
    overflow: hidden;
    margin: auto;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    color: white;
    box-sizing: border-box;
    padding: 0;
}



#contact-form .inputBox:nth-child(1) {
    grid-area: names;

}

#contact-form .inputBox input:nth-child(2) {
    grid-area: emailAdd;
}

#contact-form .inputBox:nth-child(3) {
    grid-area: phone;
}

#contact-form .inputBox:nth-child(4) {
    grid-area: subject;
}

#contact-form .inputBox:nth-child(5) {
    grid-area: event;
}

#contact-form .inputBox:nth-child(6) {
    grid-area: date;
}

#contact-form .inputBox:nth-child(7) {
    grid-area: guests;
}

#contact-form .inputBox:nth-child(8) {
    grid-area: textarea;
}

#contact-form .inputBox:nth-child(9) {
    grid-area: captchaBadge;
}



#mainform .inputBox textarea {
    min-height: 300px;
    resize: vertical;
    width: 100%;
}


#mainform .buttonz {
    grid-area: buttons;
    height: 3em;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid rgba(255, 255, 255, 0);
    overflow: hidden;
    box-sizing: border-box;
}

#mainform button#submit-btn,
#mainform button#reset-btn {
    display: block;
    position: relative;
    margin: auto;
    color: ghostwhite;
    font-family: 'Quicksand', sans-serif;
    width: 100px;
    height: 1.5em;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-color: rgba(0, 0, 0, .3);
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.7);
    text-align: center;
    border-radius: 5px;
}

#mainform button#submit-btn {
    border: 2px solid rgba(184, 134, 11, 0.7);
    color: rgba(161, 128, 43, 1);
    background-color: rgba(184, 134, 11, 0.2);
    font-weight: 600;
    transition: background 0.3s;
    cursor: pointer;
}

#mainform #submit-btn span,
#mainform #reset-btn span {
    font-size: 0.9rem;
    text-align: center;
    margin: auto;
    color: white
}

#mainform #submit-btn span {
    color: white;
    font-weight: 600;
}


#mainform button#submit-btn:hover,
#mainform button#reset-btn:hover {
    border: 2px solid white;
    color: rgba(161, 128, 43, 1);
    background-color: rgba(161, 128, 43, 0.6);
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

#mainform button#submit-btn:hover span,
#mainform button#reset-btn:hover span {
    color: black;
}

/** The GOOGLE RECAPTCHA Section**/

#recpactcha-section {
    grid-area: captchaBadge;
    position: relative;
    width: 90%;
    height: 60px;
    display: flex;
    margin: auto;
    padding: 15px 0;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}



.g-recaptcha {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    transform: scale(0.57);
    -webkit-transform: scale(0.57);
    transform-origin: -50% -0%;
    -webkit-transform-origin: -50% 0%;
    margin-left: -20px;
}



#recaptcha-alerts {
    position: relative;
    width: 80%;
    margin: auto;
    text-align: center;
    font-size: 1rem;
    font-family: sans-serif;
    color: red;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px;

}




/*css for alert messages*/



.alert-success,
.alert-error {
    width: 100%;
    height: auto;
    font-family: 'open sans';
    padding: 10px 5px;
}

.alert-success {
    background-color: rgba(63, 119, 85, 0.5);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;
}



.alert-error {
    background-color: rgba(255, 105, 0, .5);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;
}

.alert-success span,
.alert-error span {
    color: white;
    font-weight: normal;
    line-height: 20px;
    background: none;
    font-size: 1.1em
}


/**************LAPTOPS AND DESKTOPS SETTINGS*******************/
@media only screen and (min-width:600px) and (max-width:1024px) {

    #mainform {
        width: 100%;
        max-width: 620px;
    }

    #contact-form {

        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-areas:
            "names names"
            "emailAdd phone"
            "subject subject"
            "event date"
            "guests guests"
            "textarea textarea"
            "captchaBadge buttons";
        justify-content: center;
        gap: 10px;
        align-items: center;
        margin: auto;
        overflow: hidden;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 5px;
        text-align: center;
        padding: 0;
        box-sizing: border-box;
    }

    #contact-form .inputBox {
        display: flex;
        margin: auto;
        border-radius: 5px;
        outline: none;
        overflow: hidden;
        resize: none;
        box-sizing: content-box;
        padding: 0;
        margin-left: 0;
    }


    #mainform .inputBox textarea {
        min-height: 300px;
    }

}


/**************LAPTOPS AND DESKTOPS SETTINGS*******************/
@media only screen and (min-width:1025px) {

    #mainform {
        width: 750px;
        padding-bottom: 30px;
    }

    #contact-form {

        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-areas:
            "names names"
            "emailAdd phone"
            "subject subject"
            "event date"
            "guests guests"
            "textarea textarea"
            "captchaBadge buttons";
        justify-content: center;
        gap: 10px;
        align-items: center;
        margin: auto;
        overflow: hidden;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 5px;
        text-align: center;
        box-sizing: border-box;

    }

    #contact-form .inputBox {
        display: flex;
        margin: auto;
        border-radius: 5px;
        outline: none;
        overflow: hidden;
        resize: none;
        box-sizing: content-box;
        padding: 0;
        margin-left: 0;
    }

    .g-recaptcha {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        transform: scale(0.67);
        -webkit-transform: scale(0.67);
        transform-origin: -50% -0%;
        -webkit-transform-origin: -50% 0%;
        margin-left: -20px;
    }


}