body {
    font-family: 'Pathway Gothic One', sans-serif;
    background: url('/assets/img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

a:active, a:visited, a:link {
    color: #777777;
}

h1 {
    color: #ffffff;
    font-size: 36px;
    font-family: 'Pathway Gothic One', sans-serif;
}

p {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1em;
    color: #777777;
}


/* ######################################################################## */

/* COMMON PAGE STYLES */

.header {
    margin-bottom: 2em;
    margin-top: 1em;
}

.headerbar {
  /*  background-color: #000000; */
    padding: 20px 0 15px 0;
    margin-right: -1em;
}

.headerbar img {
    margin-left: 20px;
}

.topnav {
    border-left: 4px solid #666666; 
    height: 3em; 
    color: #777777;
    font-size: 22px;
    margin-top: .6em;
}

.topnav ul {
    margin-left: 1.5em;
}

.topnav li {
    list-style: none;
    display: inline-block;
    margin-right: 1.5em;
    padding-top: .6em;
}

#contact, #test {
    border: solid thin #777777;
    border-radius: 1em;
    background-color: #333333;
    width: 35%;
}

#contact p, #test p {
    color: #aaaaaa !important;
    font-size: .9em;
}

#contact label {
    font-size: .9em;
    color: #aaaaaa;
    font-family: 'Didact Gothic', sans-serif;

}

#contact input {
    font-size: .9em;
    height: 1.75em;
    background-color: #cccccc;
    font-family: 'Didact Gothic', sans-serif;
}

#contact textarea {
    height: 6em;
    background-color: #cccccc;
    font-family: 'Didact Gothic', sans-serif;
    font-size: .9em;
}

#submit {
    width: 50%;
    height: 2em !important;
    background-color: #cccccc;
    color: #333333;
    font-family: 'Pathway Gothic One', sans-serif !important;
    font-size: 1.25em !important;
    border-radius: .5em;
    transition: ease .5s;
    font-weight: bold;
    font-size: 1.3em;
    cursor: pointer;
}

#submit:hover {
    background-color: #ffffff;
}



.footerbar {
    text-align: left;
    vertical-align: middle;
    margin-left: 33px;
    padding-top: 8px;
    font-family: 'Didact Gothic', sans-serif;
    color: #777777;
    font-size: .6em;
}

.footerbar p {
    padding: .5em 0;
}

/* ######################################################################## */


/* HOME PAGE STYLES */

.homebody {
    background-color: #000000 !important;
}

.home-left {
    height: calc(90vh - 106px - 2em);
    background-image: url("../img/home-graphics-bg.jpg");
    opacity: .20;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity, 1s; 

}

.home-right {
    height: calc(90vh - 106px - 2em);
    background-image: url("../img/home-photo-bg.jpg");
    opacity: .20;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity, 1s; 
}

.home-path-link-container {
    z-index: 999;
}

.home-path-link {
    color: #ffffff;
    margin-left: 20px;
    margin-top: -140px;
    font-size: 36px;
}

.home-path-link:active, .home-path-link:hover, .home-path-link:link  {
    color: #ffffff;
}

/* ######################################################################## */


/* ABOUT PAGE STYLES */

#black {
    background: #000000;
}

.about-left {
    height: calc(100vh - 106px - 2em);
    background-image: url("../img/about-bg.jpg");
    opacity: .8;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity, 1s;
    box-shadow: 0px 0px 90px 60px black inset;

}

.medium-6 li {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 1em;
    color: #777777;
    list-style: none !important;
}

.accordion > li::before {
    content: url('../img/menu-arrow.png');
    margin-right: 1em;
}


.accordion li {
    color: #cccccc;
    font-size: .9em;
    font-weight: 500;
}


.accordion {
    padding: 0;
    background-color: #000000;
}
    .inner::before {
        content: none !important;
    }
    .inner {
        padding: 1em 0 1em 2em;
        overflow: hidden;
        display: none;
        list-style: none;
        list-style-type: none;
}
        /*.show {
          display: block;
        }*/
    
  
    .inner li {
        margin: .5em 0;
        list-style: none;
        list-style-type: none;
}
        a.toggle {
            width: 100%;
            padding: .75em;
            border-radius: 0.15em;

}

/* ######################################################################## */


/* DESIGN & PHOTO PAGE STYLES */

.gallerybody {
   /* background-color: #000000; */
    background: url('/assets/img/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.thumb-section {
    overflow: hidden;
    margin: 0 -1.3em 0 1.3em;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.thumb-section::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

.thumb-section div img {
    opacity: .45;
    transition: opacity 1s;
    cursor: pointer;
    -webkit-filter: grayscale(100%);
    -moz-filter:    grayscale(100%);
    -ms-filter:     grayscale(100%);
    -o-filter:      grayscale(100%);
    filter: gray;
    display: inline-block;
}

.thumb-section div img:hover {
    opacity: 1;
    -webkit-filter: grayscale(0%);
    -moz-filter:    grayscale(0%);
    -ms-filter:     grayscale(0%);
    -o-filter:      grayscale(0%);
    filter: none;
}

.featuredimage {
    opacity:0;
    position:relative; 
    left:-100px;
    background-position-x:center;
    transition: background 1s ease-in-out;
    -moz-transition: background 1s ease-in-out;
    -webkit-transition: background 1s ease-in-out;

}

.featuredimage img {
    transition-timing-function: ease;
}

.featuredtext {
    transition: width .5s;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.medium-3.cell::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.medium-3.cell {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/*
#####################################################
###############    MEDIA QUERIES    #################
##################################################### */


@media (max-width:796px) {     /* UP TO 796 */
    .headerbar img {
        margin-left: 0;
        margin-top: 1em;
    }
    .topnav {
        border-left: none;
    }
    .topnav ul {
        margin-left: auto;
    }
    .home-path-link {
        font-size: 28px;
        margin-top: -60px;
        text-align: center;
    }
    .gallerybody {
        background-size: auto;
    }
    .path-design {
        text-align: left;
        margin-left: 1em;
    }
    .path-photo {
        margin-right: 1em;
    }
    .home-left, .home-right {
        height: calc(60vh - 2em);
    }
    .featuredimage-parent {
        margin-bottom: 3em;
    }
}

@media (max-width:639px) {     /* UP TO 639 */
    .topnav {
        margin-top: 0;
    }
    .home-path-link-container {
        position: inherit;
        top: 400px;
    }
    /*.path-design {
    }*/
    .path-photo, .path-design {
        margin-top: -3em;
    }
    footer {
        font-size: 11px;
        text-align: center;
    }
}