@font-face {
    font-family: 'Cabin Condensed';
    font-style: normal;
    font-weight: 400;
    src: local('Cabin Condensed Regular'), local('Cabin_Condensed-Regular'), url('/assets/fonts/Cabin-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Cabin Condensed Bold';
    font-style: normal;
    font-weight: 700;
    src: local('Cabin Condensed Bold'), local('Cabin_Condensed-Bold'), url('/assets/fonts/Cabin-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Cabin Condensed Italic';
    font-style: italic;
    font-weight: 400;
    src: local('Cabin Condensed Italic'), local('Cabin_Condensed-Italic'), url('/assets/fonts/Cabin-Italic.ttf') format('truetype');
}

* {
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Cabin Condensed', sans-serif;
    scroll-behavior: smooth;
}

.bold {
    font-family: 'Cabin Condensed Bold', sans-serif;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s linear, opacity 0.3s linear;
}

.visible {
    visibility: visible;
    opacity: 1;
    transition: visibility 0.3s linear, opacity 0.3s linear;
}

nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 15px;
    text-align: center;
	background-color: #212121;
}

nav a {
    width: 80%;
    padding: 15px;
    border: 1px solid gray;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    border-radius: 10px;
}

nav a:hover, nav a:focus {
    background-color: #404040;
    border: 1px solid white;
}

.open {
    width: 60px;
    height: 50px;
    display: block;
    position: fixed;
    z-index: 1;
    background-color: #212121;
    padding: 10px;
    top: 10px;
    left: 10px;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center;
    background-image: url('/assets/icons/menu.png');
    border-radius: 10px;
    border: 1px solid gray;
    opacity: 0.8;
    cursor: pointer;
}

.open:hover, .open:focus {
    border: 1px solid white;
    opacity: 1;
}

.close {
    width: 60px;
    height: 50px;
    display: block;
    position: fixed;
    z-index: 1;
    background-color: #212121;
    padding: 10px;
    top: 10px;
    left: 10px;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center;
    background-image: url('/assets/icons/cross.png');
    border-radius: 10px;
    cursor: pointer;
}

.parallax {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.about-header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/assets/backgrounds/about_bg.png');
}

.about-header h1, .testimonials-header h1, .gallery-header h1, .contact-header h1 {
    font-size: 75px;
    text-shadow: 3px 3px 4px #000000;
}

.about-header-inner-parallax, .testimonials-header-inner-parallax, .gallery-header-inner-parallax, .contact-header-inner-parallax {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    color: white;
    text-align: center;
}

.about-content {
    padding: 50px;
    background-color: #F5DEB3;
    color: black;
    font-size: 18px;
    text-align: center;
}

.about-content-inner {
    display: inline-block;
}

.about-content p {
    margin: 0 auto 15px auto;
    max-width: 1200px;
    text-align: left;
}

.testimonials-header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/assets/backgrounds/testimonials_bg.png');
}

.testimonials-content {
    padding: 50px;
    background-color: #7B3F00;
    color: white;
}

/* Slideshow container */
.slideshow-container {
    min-height: 400px;
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.testimonial-quote, .testimonial-author {
    font-size: 30px;
}

.testimonial-quote {
    font-family: 'Cabin Condensed', sans-serif;
    color: white;
    padding: 8px 12px;
    position: absolute;
    right: 0px;
    width: 100%;
    text-align: center;
}

.testimonial-author {
    font-family: 'Cabin Condensed Italic', sans-serif;
}
    
/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
    
.active {
    background-color: #717171;
}
    
/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
    
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.gallery-header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/assets/backgrounds/gallery_bg.png');
}

.gallery-content {
    padding-bottom: 8px;
    background-color: #B0C4DE;
}

.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

.column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    width: 100%;
    margin-top: 8px;
    vertical-align: middle;
}

.column img:hover {
    /* do something */
}

.gallery-image {
    cursor: pointer;
}

.gallery-content-visible {
    left: 0;
    transition: left 0.2s linear;
}

.gallery-content-hidden {
    left: 100%;
    transition: left 0.2s linear;
}

.gallery-image-content {
    width: 100%;
    position: fixed;
    padding: 90px 30px 30px;
    top: 0;
    bottom: 0;
    right: 0;
    background: #212121;
    overflow: scroll;
}

.gallery-image-content h1 {
    text-align: center;
}

.gallery-image-content ul {
    text-align: left;
}

.gallery-image-content button {
    display: block;
    padding: 10px 20px;
    background-color: white;
    border: 1px solid;
    color: black;
    border-radius: 5px;
    margin: 15px auto 0;
}

.gallery-image-content button:hover, .gallery-image-content button:focus {
    background-color: black;
    color: white;
}

.gallery-content-image {
    width: 100%;
    height: 100%;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #212121;
    background-size: contain;
}

.close-black {
    width: 50px;
    height: 50px;
    display: block;
    position: fixed;
    z-index: 1;
    padding: 10px;
    top: 10px;
    left: 10px;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center;
    background-image: url('/assets/icons/cross.png');
    cursor: pointer;
}

.contact-header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/assets/backgrounds/contact_bg.png');
}

.contact-content {
    padding: 50px;
    font-size: 18px;
    background-color: #FFB6C1;
    font-family: 'Cabin Condensed Bold', sans-serif;
    color: #4B0082;
    text-align: center;
}

.contact-content form {
    max-width: 1000px;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
}

.contact-content form button {
    display: inline-block;
    width: 75px;
    height: 35px;
    color: #4B0082;
    background-color: #FFB6C1;
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #4B0082;
    cursor: pointer;
}

.contact-content form button:hover {
    color: #FFB6C1 !important;
    background-color: #4B0082 !important;
}

.contact-content label {
    display: inline-block;
    width: 100%;
    text-align: left;
}

.contact-content label input, .contact-content label textarea {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px
} 

.contact-content label input {
    height: 30px;
    border: 1px solid #4B0082;
    border-radius: 5px;
}

.contact-content label textarea {
    height: 100px;
    border: 1px solid #4B0082;
    border-radius: 5px;
}

.instagram-icon {
	background-image:url('/assets/icons/instagram_icon.png');
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center;
	display: inline-block;
}

.footer {
	text-align: center;
	background-color: #212121;
	padding: 50px;
    font-size: 18px;
}

.footer p {
    color: white;
}

.footer .social-icons ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row;
    justify-content: center;
    list-style-type: none;
}

.footer .social-icons ul span {
    width: 75px;
    height: 75px;
    margin: 0 15px;
}

@media only screen and (max-width: 768px) {
    nav a {
        width: 60%;
    }

    .about-content, .testimonials-content, .gallery-content, .contact-content, .footer {
        padding: 50px 10px;
        margin: 0 auto;
    }

    .footer .social-icons ul {
        display: flex;
        flex-flow: row;
        align-items: stretch;
    }

    .footer .social-icons ul li {
        flex-grow: 1;
    }
    
    .footer .social-icons ul span {
        margin: 0;
    }
}

@media only screen and (max-width: 390px) {
    nav a {
        width: 50%;
    }
}

@media (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}
  
@media (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}

/* smartphones, iPhone, portrait 480x320 phones */
@media (max-width: 320px)  {
    .about-content, .testimonials-content, .gallery-content, .contact-content, .footer {
        font-size: 12px;
    }

    /* Slideshow container */
    .slideshow-container {
        min-height: 250px;
        max-width: 1000px;
        position: relative;
        margin: auto;
        text-align: center;
    }

    .mySlides img {
        height: auto;
        position: relative;
        transform: none;
        border-radius: 50%;
        margin: 0 auto;
        display: inline-block;
        overflow: hidden;
    }

    .testimonial-quote, .testimonial-author {
        font-size: 16px;
    }

    .testimonial-quote {
        font-family: 'Cabin Condensed', sans-serif;
        color: white;
        padding: 8px 12px;
        position: relative;
        width: 100%;
        text-align: center;
    }
}

/* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
@media (min-width: 321px) and (max-width: 481px)  {
    .about-content, .testimonials-content, .gallery-content, .contact-content, .footer {
        font-size: 14px;
    }

    /* Slideshow container */
    .slideshow-container {
        min-height: 250px;
        max-width: 1000px;
        position: relative;
        margin: auto;
        text-align: center;
    }

    .mySlides img {
        height: auto;
        position: relative;
        transform: none;
        border-radius: 50%;
        margin: 0 auto;
        display: inline-block;
        overflow: hidden;
    }

    .testimonial-quote, .testimonial-author {
        font-size: 20px;
    }

    .testimonial-quote {
        font-family: 'Cabin Condensed', sans-serif;
        color: white;
        padding: 8px 12px;
        position: relative;
        width: 100%;
        text-align: center;
    }
}

/* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
@media (min-width: 482px) and (max-width: 641px) {
    .about-content, .testimonials-content, .gallery-content, .contact-content, .footer {
        font-size: 16px;
    }

    /* Slideshow container */
    .slideshow-container {
        min-height: 250px;
        max-width: 1000px;
        position: relative;
        margin: auto;
        text-align: center;
    }

    .mySlides img {
        height: auto;
        position: relative;
        transform: none;
        border-radius: 50%;
        margin: 0 auto;
        display: inline-block;
        overflow: hidden;
    }

    .testimonial-quote, .testimonial-author {
        font-size: 24px;
    }

    .testimonial-quote {
        font-family: 'Cabin Condensed', sans-serif;
        color: white;
        padding: 8px 12px;
        position: relative;
        width: 100%;
        text-align: center;
    }
}