body {
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
}

.hamburger {
    display: inline-block;
    cursor: pointer;
}

.hamburger .bar1,
.hamburger .bar2,
.hamburger .bar3 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.opened .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

.opened .bar2 {
    transform: scale(0, 0);
}


.opened .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

.nav {
    opacity: 0;
    transition: opacity 0.4s;
    position: absolute;
    z-index: 100;
    box-shadow: 2px 2px 3px grey;
    border-radius: 5px;
    background-color: #f1f1f1;
    overflow: hidden;
}

.visible {
    opacity: 1;
}

.hidden {
    display: none;
}

.nav button {
    width: 10%;
    height: auto;

}

.nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 200px;
}

.nav li a {
    display: block;
    color: black;
    padding: 8px 16px;
    text-decoration: none;
}

.nav .active {
    background-color: #00C82B;
    color: black;
}

.nav .active:hover {
    background-color: #70AD7D;
    color: white;
}

.nav li a:hover {
    background-color: #868686;
    color: white;
}

#header {
    margin: auto;
    width: 50%;
}

#header-mini {
    margin: auto;
    width: 25%;
}

#header img,
#header-mini img {
    width: 100%;
}

.box-section {
    margin: 1.5% 3%;
    padding: 1%;
    outline-width: 2px;
    outline-color: #70AD7D;
    outline-style: auto;
    padding-left: 3%;
    padding-bottom: 3%;
    padding-right: 3%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

#carousel {
    padding: 1% !important;
}

h3 {
    font-size: xx-large !important;
    margin: 0 !important;
    margin-top: 3% !important;
}

.gallery-title,
#feedback-title {
    text-align: center;
}

#main h1,
#main h2,
#main h3 {
    font-family: "Permanent Marker", cursive;
    font-style: normal;
    font-size: 50pt;
    margin: 1%;
    margin-bottom: 2%;
}

.img-paragraph p {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.img-paragraph img {
    width: 40%;
    height: auto;
    flex-shrink: 0;
}

.img-paragraph {
    display: flex;
    align-items: flex-start;
    gap: 3%;
    align-items: center;
}

#large-site-image {
    max-width: 100%;
    max-height: 600px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

#large-site-image img {
    object-fit: contain;
}


.slideshow-container {
    box-sizing: border-box;
}

.mySlides {
    display: none;
    width: 100%;
    height: 100%;
}

.slideshow-container img {
    vertical-align: middle;
    max-height: auto;
}

.slideshow-container {
    width: 100%;
    max-width: 80%;
    max-height: 600px;
    position: relative;
    margin: auto;
    overflow: hidden;
}

.active {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 2s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

#feedback-container input[type=text],
#feedback-container input[type=email],
#feedback-container input[type=date],
#feedback-container select,
#feedback-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

#feedback-container input[type=button] {
    background-color: #70AD7D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#feedback-container input[type=button]:hover {
    background-color: #00C82B;
}

#feedback-container {
    border-radius: 5px;
    padding: 20px;
}

#feedback-description {
    text-align: center;
    width: 80%;
    margin: 1% auto;
}

#form-error-msg {
    color: red;
}

#footer {
    margin: 3%;
    text-align: center;
}