.photo {
    text-align: center;
    color: #fff;
}

.photo a {
    color: #ccc;
    text-decoration: none;
}

h1 {
    font-family: 'Courgette', cursive;
    color: #0D5212;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 90%;
    margin: 20px auto 0;
}

.box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    margin: 50px 10px 10px 25px;
    position: relative;
}

.photo img {
    width: 80%;
    -webkit-box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.75);
}

.overlay {
    position: absolute;
    margin: 0;
    top: 0;
    height: 100%;
    z-index: 98;
    background: rgba(13, 82, 137, 1);
}

.ovrl-left {
    width: 40%;
    left: 50%;
    -webkit-box-shadow: 9px 0px 19px 0px rgba(105, 109, 122, 1);
    box-shadow: 9px 0px 19px 0px rgba(105, 109, 122, 1);
    border-left: 0.5px solid rgba(255, 255, 255, 0.8);
}

.ovrl-right {
    width: 40%;
    right: 50%;
    -webkit-box-shadow: -9px 0px 19px 0px rgba(105, 109, 122, 1);
    box-shadow: -9px 0px 19px 0px rgba(105, 109, 122, 1);
}

.locker {
    position: absolute;
    height: 20px;
    width: 20px;
    background: #fff;
    top: 50%;
    left: 49.21%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    z-index: 99;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

i.arrow {
    font-size: 0.8em;
    color: #bcbcbc;
}

.move-right {
    -webkit-animation-name: myRight;
    animation-name: myRight;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.move-left {
    -webkit-animation-name: myLeft;
    animation-name: myLeft;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes myRight {
    0% {
        left: 50%;
        opacity: 1;
    }
    100% {
        left: 80%;
        opacity: 0;
        display: none;
    }
}

@keyframes myRight {
    0% {
        left: 50%;
        opacity: 1;
    }
    100% {
        left: 80%;
        opacity: 0;
        display: none;
    }
}

@-webkit-keyframes myLeft {
    0% {
        right: 50%;
        opacity: 1;
    }
    100% {
        right: 80%;
        opacity: 0;
        display: none;
    }
}

@keyframes myLeft {
    0% {
        right: 50%;
        opacity: 1;
    }
    100% {
        right: 80%;
        opacity: 0;
        display: none;
    }
}

* {
    box-sizing: border-box
}

.mySlides1,
.mySlides2 {
    display: none
}

img {
    vertical-align: middle;
}


/* Slideshow container */

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 60%;
    width: 30%;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
}


/* On hover, add a grey background color */

.prev:hover,
.next:hover {
    background-color: #f1f1f1;
    color: black;
}

h2 {
    font-family: 'Courgette', cursive;
    color: #123967;
}

#suggestions .suggestions-item {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
}

#suggestions .suggestions-item .suggestions-link {
    position: relative;
    display: block;
    margin: 0 auto;
}

#suggestions .suggestions-item .suggestions-link .suggestions-hover {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 74 105 / 76%);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity ease-in-out 0.25s;
}

#suggestions .suggestions-item .suggestions-link .suggestions-hover .suggestions-hover-content {
    font-size: 1.25rem;
    color: white;
}

#suggestions .suggestions-item .suggestions-link:hover .suggestions-hover {
    opacity: 1;
}

#suggestions .suggestions-item .suggestions-caption {
    padding: 1.5rem;
    text-align: center;
    background-color: #fff;
}

#suggestions .suggestions-item .suggestions-caption .suggestions-caption-heading {
    font-size: 1.5rem;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    margin-bottom: 0;
}

#suggestions .suggestions-item .suggestions-caption .suggestions-caption-subheading {
    font-style: italic;
    font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.suggestions-modal .modal-dialog {
    margin: 1rem;
    max-width: 100vw;
}

.suggestions-modal .modal-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
}

.suggestions-modal .modal-content h2 {
    font-size: 3rem;
    line-height: 3rem;
}

.suggestions-modal .modal-content p.item-intro {
    font-style: italic;
    margin-bottom: 2rem;
    font-family: "Roboto Slab", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.suggestions-modal .modal-content p {
    margin-bottom: 2rem;
}

.suggestions-modal .modal-content ul.list-inline {
    margin-bottom: 2rem;
}

.suggestions-modal .modal-content img {
    margin-bottom: 2rem;
}

.suggestions-modal .close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    background-color: transparent;
}

.suggestions-modal .close-modal:hover {
    opacity: 0.3;
}

.img-fluid {
    width: 100%;
    height: 4em;
}

h3 {
    font-family: 'Courgette', cursive;
    color: #123967;
}
