/*
Theme Name: DMA Studio
Theme URI: https://github.com/WordPress/dma-studio/
Author: wordpressdotorg
Author URI: https://wordpress.org
Description: Framework built for DMA Studio 2020. Built by Seth Daniels
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dma-studio
Tags: translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

dma-studio is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Footer
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: flex;
  width: 100%;
  flex-direction: column;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  
}

a:active,
a:hover {
  
}

abbr[title] {
  
}

b,
strong {
  
}

dfn {
  
}

h1 {
 
}

h2 {
 
}

h3 {
  
}

h4 {
  
}

h5 {
  
}

h6 {
  
}

mark {
 
}

small {
  
}

sub,
sup {
  
}

sup {
  
}

sub {
  
}

img {
  
}

svg:not(:root) {
  
}

figure {
  
}

hr {
  
}

pre {
  
}

code,
kbd,
pre,
samp {
  
}

button,
input,
optgroup,
select,
textarea {
  
}

button {
  
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.alignfull{
max-width: 100%;
}

.alignwide{
  max-width: 1200px;
  margin:0 auto;
}

.hidden{
  display:none;
}


.dark{
  color:#333333;
}

.entry-header{
  display: none;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  
}

h1, h2, h3, h4, h5, h6 {
  
}

.entry-header {
  padding: 0px 15px;
  margin: 0 auto;
}

dfn, cite, em, i {
  
}

blockquote {
  
}

address {
  
}

pre {
  
}

code, kbd, tt, var {
  
}

p > code {
  
}

abbr, acronym {
 
}

mark, ins {
  
}

big {
 
}

.archive .site-header {
	
}

.site-title {
	
}

.site-title a {
	
}

.site-branding {
	
}

.site-description {
	
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */ }

blockquote, q {
  quotes: "" ""; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: ""; }

hr {
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #795548;
  border-radius: 2px;
  background: #795548;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.75rem;
  line-height: 1;
  padding: 10px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #0073aa;
}

a:hover, a:focus, a:active {
  color: #00a0d2;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.custom-logo-link{
  display: flex;
}

/* ---------- Standard Menu ---------- */

.header-standard{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 15px;
  margin: 0 auto;
  max-height: 100%;
}

.header-standard .custom-logo-link {
  display: block;
  height: 100%;
}

.header-standard .custom-logo{
  height: 100%;
  width: auto;
  max-width: unset;
}

.header-standard .menu-toggle{
  display: none;
}

.header-standard .main-navigation {
  height: 100%;
  justify-content: center;
}

.header-standard .main-menu{
  display: flex;
  height: 100%;
}

.header-standard .main-navigation ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding-left: 0;
  height: 100%;
}

.header-standard .main-navigation ul li {
  
}

.header-standard .main-navigation ul li a{
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75em;
  padding: 0 10px;
}

/* ---------- Left Side Menu ---------- */

.header-leftSide,
.header-rightSide{
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-direction: row-reverse;
  padding-left: 15px;
  padding-right: 15px;
}

.header-rightSide{
  flex-direction: row;
}

.header-leftSide .main-menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    min-height: 100%;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: 0;
    background-color: #b6e6ff;
    z-index: 5;
    padding: 10px 20px;
    transition: all 0.3s;
  }

.header-rightSide .main-menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    min-height: 100%;
    width: 100%;
    max-width: 350px;
    top: 0;
    right: 0;
    background-color: #b6e6ff;
    z-index: 5;
    padding: 10px 20px;
    transition: all 0.3s;
  }


.header-leftSide .main-menu.isClosed{
  left:-350px;
}

.header-rightSide .main-menu.isClosed{
  right:-350px;
}

.header-leftSide .site-branding,
.header-rightSide .site-branding{
  display: flex;
}

.header-leftSide .menu-toggle,
.header-rightSide .menu-toggle{
  z-index: 10;
  outline: none;
}

.header-leftSide .menu-line,
.header-rightSide .menu-line{
  background-color:#000;
  height: 3px;
  width: 100%;
  display: block;
  margin-bottom:5px;
  transition: all 0.3s;
}

.header-leftSide .isClosed .menu-line:first-child,
.header-rightSide .isClosed .menu-line:first-child{
  transform: rotate(45deg);
}

.header-leftSide .isClosed .menu-line:nth-child(2),
.header-rightSide .isClosed .menu-line:nth-child(2){
  transform:translateY(-8px) rotate(-45deg);
}


.header-leftSide button,
.header-rightSide button{
  border: none;
  background: transparent;
  padding: 0px;
}

.header-leftSide .main-navigation,
.header-rightSide .main-navigation{
display: flex;
flex-direction: column;
justify-content: center;
}

.header-leftSide .main-navigation ul,
.header-rightSide .main-navigation ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0;
  padding-left: 0;
  height: 100%;
}

.header-leftSide .main-navigation ul li,
.header-rightSide .main-navigation ul li {
  
}

.header-leftSide .main-navigation ul li a,
.header-rightSide .main-navigation ul li a{
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75em;
  padding: 0 10px;
}


/* ---------- Full Page Menu ---------- */

.header-fullPage .main-menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    min-height: 100%;
    width: 100%;
    max-width: 100%;
    top: 0;
    right: 0;
    background-color: #b6e6ff;
    z-index: 5;
    padding: 10px 20px;
    transition: all 0.3s;
  }

.header-fullPage .main-menu.isClosed{
  top:-100%;
}

.header-fullPage .site-branding{
  text-align: center;
}

.header-fullPage .site-branding .custom-logo{
 margin: 0 auto;
}

.header-fullPage .menu-toggle{
  position: relative;
  z-index: 10;
  outline: none;
  margin: 0 auto;
  width: 35px;
  display: block;
}

.header-fullPage .menu-line{
  background-color:#000;
  height: 3px;
  width: 100%;
  display: block;
  margin-bottom:5px;
  transition: all 0.3s;
}

.header-fullPage .isClosed .menu-line:first-child{
  transform: rotate(45deg);
}

.header-fullPage .isClosed .menu-line:nth-child(2){
  transform:translateY(-8px) rotate(-45deg);
}


.header-fullPage button{
  border: none;
  background: transparent;
  padding: 0px;
}

.header-fullPage .main-navigation{
display: flex;
flex-direction: column;
justify-content: center;
}

.header-fullPage .main-navigation ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0;
  padding-left: 0;
  height: 100%;
}

.header-fullPage .main-navigation ul li {
  
}

.header-fullPage .main-navigation ul li a{
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75em;
  padding: 0 10px;
}



/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft,
.alignright {
	max-width: 580px !important;	/* Let's work to make this !important unnecessary */
}

.alignleft img,
.alignright img,
.alignleft figcaption,
.alignright figcaption {
	max-width: 50%;
	width: 50%;
}

.alignleft figcaption {
	clear: left;
}

.alignright figcaption {
	clear: right;
}

.alignleft img,
.alignleft figcaption {
  float: left;
  margin-right: 1.5em;
}

.alignright img,
.alignright figcaption {
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.aligncenter img{
  margin-left: auto;
  margin-right: auto;
}

.wp-block-image .aligncenter{
  text-align: center;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer,
.footer{
  display: flex;
  background-color: #3c4653;
  color: #ffffff;
}

.footer{
  margin:0 auto;
  padding-left:15px;
  padding-right:15px;
  width: 100%;
  
}

.simpleFooter,
.duoFooter,
.trioFooter,
.quadFooter{
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-top:30px;
  padding-bottom:30px;
}

.simpleFooter .footer-section{
  width: 100%;
  text-align: center;
}

.duoFooter{}

.trioFooter{}

.quadFooter{}

.duoFooter .footer-section{
  width:100%;
  max-width:50%;
  padding-left:15px;
  padding-right:15px;
}

.trioFooter .footer-section{
  width:100%;
  max-width:25%;
  padding-left:15px;
  padding-right:15px;
}

.trioFooter .footer-section:last-child{
  width:100%;
  max-width:50%;
  padding-left:15px;
  padding-right:15px;
  text-align:right;
}

.quadFooter .footer-section{
  width:100%;
  max-width:25%;
  padding-left:15px;
  padding-right:15px;
}

.widget-area{

}

.footer-section ul{
  margin:0;
}


/*--------------------------------------------------------------
# Social
--------------------------------------------------------------*/
.social-icons{
  display: flex;
  flex-direction: row;
}

.social-icons svg{
  width: 32px;
  height: 32px;
  display: flex;
  margin-right: 14px;
}

.social-icon{
  transform: scale(1);
  fill:#c58954;
}

.fb{
  /*fill:#42619c;*/
}
.twitter{
  /*fill:#42619c;*/
}

.instagram{
  /*fill:#f50375;*/
}

.google{
  /*fill:#dd4b39;*/
}

.social-icon-link svg{
  width: 32px;
  height: 32px;
  display: flex;
  margin-right: 10px;
}

.social-icon-link{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget-area {
	/*width: 25%;*/
}

.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}

.widget select {
  /*max-width: 100%;*/
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/



/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  
}

.entry-meta {
  
}

.page-links {

}

.entry-header,
.page-header,
.entry-footer,
.site-info,
.posts-navigation,
.post-navigation,
.page-navigation,
.comments-area,
.not-found .page-content,
.search .entry-summary {
  
}

.entry-header .wp-post-image {
 
}

.entry-footer span{
  
}

.entry-footer{
  
}


/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}



/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.3333333333%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.6666666667%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.2857142857%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.1111111111%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
## Carousel
--------------------------------------------------------------*/

button.slick-next.slick-arrow,
button.slick-prev.slick-arrow {
    position: absolute;
    top:50%;
    display: block;
    z-index: 10;
    margin-top: -16px;
}

button.slick-next.slick-arrow {
    right: 15px;
}

button.slick-prev.slick-arrow {
    left: 15px;
}

.slide{
  position: relative;
}

.caption-text{
  position: absolute;
  display: block;
  bottom: 0px;
  text-align: center;
  margin: 0px auto 15px auto;
  width: 100%;
  z-index: 5;
}

