/*
Theme Name: MDSA
Theme URI: 
Author: dLittle
Author URI: http://supercomputingmachine.com
Description: Architecture site theme built off moesia 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moesia
Domain Path: /languages/
Tags: light, two-columns, three-columns, right-sidebar, fluid-layout, responsive-layout, custom-colors, custom-background, custom-header, custom-menu, featured-images, sticky-post, theme-options, threaded-comments, 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.

moesia is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

--------------------------------------------------------------
TABLE OF CONTENTS
--------------------------------------------------------------
1. CSS Variables & Base Styles
2. Typography & Text Elements
3. Layout & Structure
4. Header & Navigation
5. Content Areas & Posts
6. Widgets & Sidebar
7. Front Page Sections
8. Forms & Buttons
9. Media & Images
10. Utilities & Helpers
11. Footer
12. Responsive Design
13. Animations & Effects
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. CSS VARIABLES & BASE STYLES
--------------------------------------------------------------*/

:root {
  --primary-color: #0099CC;
  --secondary-color: #a0cdee;
  --text-color: #666;
  --heading-color: #444;
  --light-gray: #ebebeb;
  --dark-gray: #333;
  --white: #ffffff;
  --black: #000000;
  --font-primary: Helvetica, sans-serif;
  --font-secondary: 'Roboto Condensed', sans-serif;
  --transition-speed: 0.3s;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background-color: var(--white);
	line-height: 1.5;
	font-size: 14px;
	/* word-break: break-word;*/
	-webkit-font-smoothing: antialiased;
}

p {
  margin: 25px 0;
  font-size: 16px;
}

.home{
  padding-bottom: 80px;
}

.home p{
  margin: 0 0 25px;
}

ul li {
	font-size: 16px;
}

.page, .archive, .single {
  min-height: 100%;
  position: relative;
}

#page {
	opacity: 0;	
	-webkit-animation: fadein 1s ease-out;
	animation: fadein 1s ease-out;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

#page.loaded {
	opacity: 1;
	-webkit-animation: none;
	animation: none;
}

/* No-js fallback */
.no-js #page {
	opacity: 1 !important;
	-webkit-animation: none !important;
	animation: none !important;
}

@-webkit-keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/*--------------------------------------------------------------
2. TYPOGRAPHY & TEXT ELEMENTS
--------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--heading-color);
	font-weight: 700;
	letter-spacing: -1px;
  margin: 20px 0;
}








h3 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -1px;
  color: rgb(136, 136, 136);
  line-height: 1.05;
  
}

.home h3{
  margin: 0px;
}

h3 strong {
  color: rgb(0, 153, 204);
}

h6 {
  color: rgb(102, 102, 102);
  font-weight: 300;
  letter-spacing: 0px;
  font-size: 24px;
  line-height: 28px;
}

@media (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
      margin: 30px 0px;
  }
}

blockquote {
	border: 0;
}

blockquote:before {
	float: left;
	margin-right: 10px;
	font-family: FontAwesome;
	font-size: 30px;
	line-height: 1;
	content: '\f10d';
  color: var(--secondary-color);
}

cite {
	font-style: italic;
	padding: 0 20px;
}

code {
	white-space: pre-wrap;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

/*--------------------------------------------------------------
3. LAYOUT & STRUCTURE
--------------------------------------------------------------*/

#primary {
  padding-top: 60px;
}

.site-content {
  /*
  max-width: 1200px;
  min-height: calc(100vh - 100px);
  */
  
}

.site-content.container {
  max-width: 1400px;
  min-height: calc(100vh - 80px);
  
}
/*
.content-area {
	width: 100%
  float: left;
  font-size: 20px;
  padding: 30px;
}
  */

.widget-area {
  width: 30%;
  float: right;
  background-color: var(--white);
  padding: 30px 30px 30px 0;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
4. HEADER & NAVIGATION
--------------------------------------------------------------*/

/* Header Structure */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  transition: all 0.5s ease-in-out;
  margin-top: 0px;
 /* background-attachment: fixed;*/
}

header.is-hidden {
  margin-top: -60px;
}

.has-banner, .overlay {
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: relative;
  background-size: cover;
  background-position-x: 50%;
}

.top-bar {
  position: fixed;
  width: 100%;
  z-index: 9999;
  background-color: var(--white);
  opacity: 1;	
  /* height: 80px; */
}

.top-bar .container{
  padding: 0px;
}

.overlay {
  background: url('images/pattern.png');
  position: absolute;
  top: 0;
  z-index: 1;
  opacity: 0.3;
  /*background-attachment: fixed;*/
}

.site-branding {
  padding: 15px 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
 
}

.site-logo {
  width: 100%;
  max-width: 100px;
  position: relative;
  top: 50%;
}

.site-title {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 10px;
}

.site-title a {
  color: var(--white);
  text-decoration: none;
}

.site-description {
  margin: 0;
  font-size: 18px;
  color: #DFDFDF;
}

/* Main Navigation */
.main-navigation {
	display: block;
	float: left;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
	float: right;
}

.main-navigation li {
	float: left;
	position: relative;
	padding: 30px 10px;
	text-transform: uppercase;
  font-family: var(--font-secondary);
}

.main-navigation a {
	display: block;
	text-decoration: none;
  -webkit-transition: color var(--transition-speed);
  transition: color var(--transition-speed);
}

.main-navigation a:hover {
  color: var(--secondary-color);
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
  background-color: var(--white);
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
	color: #aaa;
}

.main-navigation ul ul li {
	padding: 5px;
	text-transform: none;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
  border-bottom: 1px solid var(--light-gray);
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

/* Navigation Icons */
.main-navigation li::before {
	font-family: Fontawesome;
  color: var(--white);
	float: left;
	margin-right: 5px;
	font-size: 20px;
	line-height: 1;
	font-weight: 400;
}

.main-navigation ul ul li::before {
	color: #aaa;
}

.main-navigation a {
	float: left;
}

.main-navigation ul ul a {
	float: none;
}

@media only screen and (max-width: 991px) {
	.main-navigation a {
		float: none;
	}
	.main-navigation li::before {
		content: '';
	}
}

/* Mobile Menu 
.cd-menu-trigger {
  display: inline-block;
	position: absolute;
  right: 0px;
  top: 17px;
	height: 50px;
  line-height: 50px;
  padding: 0 .8em;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}
  */

.cd-menu-trigger {
  display: inline-block;
  /*
  position: absolute;
  right: 0px;
  top: 17px;
  */
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.875rem;
 /* padding: 0px 0.8em; */
}



@media only screen and (min-width: 769px) {
    .cd-menu-trigger {
        font-size: 1rem;
        display: none;
    }
}

@media only screen and (max-width: 600px) {
  @media (max-width: 414px) {
      .cd-menu-trigger {
          top: 3px;
      }
  }
}

.cd-menu-trigger span {
	position: relative;
  display: inline-block;
  width: 28px;
  height: 4px;
  background-color: var(--primary-color);
  vertical-align: middle;
  margin-left: 10px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.cd-menu-trigger span::before, 
.cd-menu-trigger span::after {
  content: '';
	display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  transition: all .2s;
}

.cd-menu-trigger span::before {
  top: -8px;
}

.cd-menu-trigger span::after {
  bottom: -8px;
}

.no-touch .cd-menu-trigger:hover span::before {
  top: -8px;
}

.no-touch .cd-menu-trigger:hover span::after {
  bottom: -8px;
}

@media only screen and (min-width: 769px) {
  .cd-menu-trigger {
    font-size: 16px;
    font-size: 1rem; 
    display: none;
  }
}

@media only screen and (min-width: 1170px) {
  .cd-menu-trigger {
  }
}

/* Desktop Top Menu */
.dtop-menu {
	width: 100%;
	display: none;
}

@media only screen and (min-width: 769px) {
	.dtop-menu {
		display: block;
	}
}

.dtop-menu .menu-mainnav-container .menu {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: end;
	margin: 0;
}

.dtop-menu .menu-mainnav-container .menu li {
	margin: 0 10px;
	list-style-type: none;
	font-size: 18px;
    font-weight: 600;
}

.dtop-menu .menu-mainnav-container .menu li:last-child{
  margin-right: 0;
}

.dtop-menu .menu-mainnav-container .menu li a {
  color: var(--primary-color);
	transition: color .3s ease-out;
	text-decoration: none;
}

.dtop-menu .menu-mainnav-container .menu li a:hover {
  color: var(--dark-gray);
}

/* Menu Container */
.menu-mainnav-container {
  height: inherit;
  width: 100%;
}

/* Full Screen Navigation */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: -4px;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-duration: .5s;
  z-index: 9999;
}

#main-nav ul {
  height: 100%;
  padding: 0px; 
  display: flex;
      flex-direction: column;
      justify-content: center;
}

 #main-nav li {
    height: 12.5%;
    list-style: none; 
}

 #main-nav li a {
      position: relative;
      display: block;
      padding: 0 10%;
      height: 100%;
      border-bottom: 1px solid #4DB4D7;
      font-size: 46px;
      line-height: 46px;
  color: var(--white);
      transition: all .2s; 
      text-align: center;
      text-transform: lowercase;
  }

  #main-nav li a span {
        position: absolute;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%); 
  }

    .no-touch #main-nav li a:hover {
  background-color: var(--white); 
  color: var(--primary-color);
    }

    #main-nav li:last-child a {
  border-bottom: none;
}

#main-nav.is-visible {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

  #main-nav .cd-close-menu {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #08789D;
    overflow: hidden;
    text-indent: 100%;
  white-space: nowrap;
}

#main-nav .cd-close-menu::before, 
#main-nav .cd-close-menu::after {
      content: '';
      display: inline-block;
      position: absolute;
      top: 18px;
      left: 10px;
      width: 20px;
      height: 3px;
  background-color: var(--white);
      transition-property: -webkit-transform;
      transition-property: transform;
  transition-duration: .3s;
}

    #main-nav .cd-close-menu::before {
      -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

    #main-nav .cd-close-menu::after {
      -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

    .no-touch #main-nav .cd-close-menu:hover::before {
      -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

    .no-touch #main-nav .cd-close-menu:hover::after {
      -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

  #main-nav.move-out {
    -webkit-transform: scale(0.6);
  transform: scale(0.6);
}

  .no-js #main-nav {
    position: static;
    -webkit-transform: translateY(0);
  transform: translateY(0);
}

.no-js #main-nav .cd-close-menu {
	  display: none;
}

/*--------------------------------------------------------------
5. CONTENT AREAS & POSTS
--------------------------------------------------------------*/

.eedee-swiper-outer .wp-block-heading {
  font-size: 64px;
  word-break: auto-phrase;
  max-width: 80%;
  font-weight: 300;
  text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px;
  margin: 0px auto;
}

/* Minimal GutenSlider fixes - let GutenSlider handle its own styling */
.wp-block-eedee-block-gutenslider,
.wp-block-eedee-gutenslider,
.eedee-swiper-outer,
.eedee-swiper-container {
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 480px) {
  .eedee-swiper-outer .wp-block-heading {
      display: inline-table;
      margin: 0px auto !important;
      padding: 0px !important;
      font-size: 30px !important;

      margin: 0 !important;
      width: 100% !important;
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .eedee-swiper-outer .wp-block-heading {
      padding: 0px !important;
     

  }
}

/* Posts and Pages */
.hentry {
  margin: 0 auto 60px;
}

.entry-header {
  margin-bottom: 15px;
}

.entry-title a {
  color: var(--heading-color);
  -webkit-transition: color var(--transition-speed);
  transition: color var(--transition-speed);
	text-decoration: none;
}

.entry-title a:hover {
  color: var(--primary-color);
}

article{
  max-width: 1200px;
  padding: 40px 30px 80px 30px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .page-contact article{
    padding: 0px;
  }
}

.entry-content {

	/*clear: both;*/
 /* max-width: 1400px;
  padding: 40px 30px 80px 30px;
  */

  max-width: 1024px;
 
  margin: 0 auto;
	
}

.home .entry-content{
  padding: 0px;
  max-width: 100%;
}

.entry-meta,
.entry-meta a,
.entry-footer,
.entry-footer a {
	color: #cfcfcf;
	font-size: 13px;
}
.entry-meta span,
.entry-footer span {
	margin-right: 10px;
}
.entry-footer {
	margin-top: 15px;
	padding-top: 15px;

	clear: both;
}


.entry-footer{
	display: none;
}

.entry-thumb img {
  border: 4px double var(--light-gray);
  -webkit-transition: all var(--transition-speed);
  transition: all var(--transition-speed);
}

.entry-thumb img:hover {
  opacity: 0.7;
}

/* Single Post Styles */
.single-news .hentry,
.single-studio-stories .hentry,
.single-projects .hentry,
.single-bio .hentry {
	/*  padding: 0 60px;*/
  max-width: 1024px;
  margin: 0 auto;
}

.single-news .entry-title,
.single-studio-stories .entry-title,
.single-projects .entry-title,
.single-bio .entry-title {
  color: var(--primary-color);
	  border-bottom: #999 1px solid;
 letter-spacing: -2px;
 	padding-bottom: 6px;
  margin-bottom: -6px;
}

.single-news .entry-header,
.single-studio-stories .entry-header,
.single-projects .entry-header,
.single-bio .entry-header {
  position: relative;
  height: auto;
}

.single-news .content-area,
.single-studio-stories .content-area,
.single-projects .content-area,
.single-bio .content-area {
  width: 100%;
}

.single-news .container,
.single-studio-stories .container,
	.single-projects .container,
.single-bio .container {
	margin-top: 0px;
}




/* Archive Styles */
.archive p {
  font-size: 16px;
  margin: 20px 0;
}

.archive .entry-header {
  position: relative;
  height: auto;
  margin: 0;
}

.archive .entry-thumb img {
  border: none;
}

.archive .entry-thumb .bluetext {
  padding: 7px 0;
}

.archive article {
  border-top: #999 1px solid;
}

.archive .hentry {
  margin: 0;
}

.bluetext {
  font-size: 12px;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
6. WIDGETS & SIDEBAR
--------------------------------------------------------------*/

@media (max-width: 480px) {
  .wp-block-button, .wp-block-button__link {
      width: 100%;
  }
  .wp-block-button__link {
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .wp-block-button, .wp-block-button__link {
    width: 100%;
  }
}


.Book-callout p:first-child {
  margin: 0px 0px 10px !important;
}


@media (min-width: 768px) {
  
    .Book-callout .wp-block-columns {
        flex-wrap: nowrap !important;
    }
}



@media (max-width: 767px) {
  .wp-block-cover.has-mobile-bg .wp-block-cover__image-background {
    display: none !important;
  }

  .wp-block-cover.has-mobile-bg {
    background-image: var(--mobile-bg-url);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom !important;
  }

  .wp-block-cover.has-mobile-bg .wp-block-columns {
    flex-direction: column-reverse !important;
}

    .wp-block-cover.has-mobile-bg .wp-block-column {
        min-height: 50vw !important;
    }
}

.widget-area .widget {
  margin: 0 0 30px;
}

.widget-area .widget,
.widget-area .widget a {
  color: #aaa;
}

.widget-title,
.widgettitle {
  margin: 0 0 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-gray);
}

.widget-area .widget ul {
	list-style: none;
	padding: 0;
}

.widget-area .widget .children {
	padding-left: 20px;
}

.widget-area .widget li:before {
	font-family: FontAwesome;
  content: "\f192";
  margin-right: 10px;
  font-size: 10px;
  position: relative;
  top: -2px;
}

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

/* Search widget */
.widget_search .search-submit {
  display: none;
}

/* Custom widgets */
.moesia_recent_posts_widget h4 {
  margin: 0 0 5px 0;
}

.moesia_recent_posts_widget h4 a,
.widget .post-title {
  color: #858585;
}

.moesia_recent_posts_widget li:before,
.moesia_recent_comments li:before {
  content: "" !important;
	margin: 0;
}

.moesia_recent_comments .avatar {
	float: left;
  margin-right: 15px;
}

.moesia_recent_comments a.post-title {
  font-weight: 600;
}

.widget .list-group {
  padding-left: 0;
  margin: 0;
}

.list-group-item {
  background-color: transparent;
}

.widget .list-group-item {
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--light-gray);
  border-bottom: none;
}

.widget .list-group-item:first-child {
  border-top: none;
}

.post-date {
  font-size: 13px;
  color: #C8C8C8;
}

.recent-thumb {
  -webkit-transition: opacity var(--transition-speed);
  transition: opacity var(--transition-speed);
}

.recent-thumb:hover {
  opacity: 0.5;
}

/* Social Widget */
.social-widget ul {
  margin: 0;
}

.social-widget li {
  display: block;
  padding: 8px;
}

.social-widget li:before {
  content: '' !important;
  margin: 0 !important;
}

.social-widget li a {
	text-decoration: none;
}

.social-widget li a::before {
  font-size: 28px;
	line-height: 1;
  color: #fbb829;
}


.footer-holder .social-widget{

}

.footer-holder .social-widget li a::before{
	color: white;
}
.footer-holder .social-widget li a span{
	display: none;
}
.footer-holder .social-widget ul
{
	display: flex;
    justify-content: center;
    align-items: center;
}

.social-holder li a::before,
.social-widget li a::before,
.social-area a:before {
	font-family: FontAwesome;
	color: #09C;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	 /* margin-right: 10px; */
	  top: -6px;
	  left: -10px;
	  position: absolute;
}

.social-holder a,
.social-area li a,
.social-widget a {
	-webkit-transition: all 0.7s;
	transition: all 0.7s;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	padding-left: 24px;
	position: relative;
}

.social-area a:before {
	font-size: 80px;
	text-shadow: 0 0 1px #222;


}



.social-holder a[href*="twitter.com"]::before,
.social-widget a[href*="twitter.com"]::before,
.social-area a[href*="twitter.com"]::before {
	content: '\f081';
}
.social-widget a[href*="facebook.com"]::before,
.social-area a[href*="facebook.com"]::before {
	content: '\f082';
}
.social-widget a[href*="plus.google.com"]::before,
.social-area a[href*="plus.google.com"]::before {
	content: '\f0d4';
}
.social-widget a[href*="google.com/+"]::before,
.social-area a[href*="google.com/+"]::before {
	content: '\f0d4';
}
.social-widget a[href*="dribbble.com"]::before,
.social-area a[href*="dribbble.com"]::before {
	content: '\f17d';
}
.social-widget a[href*="pinterest.com"]::before,
.social-area a[href*="pinterest.com"]::before {
	content: '\f0d3';
}
.social-widget a[href*="youtube.com"]::before,
.social-area a[href*="youtube.com"]::before {
	content: '\f166';
}
.social-widget a[href*="flickr.com"]::before,
.social-area a[href*="flickr.com"]::before {
	content: '\f16e';
}
.social-widget a[href*="vimeo.com"]::before,
.social-area a[href*="vimeo.com"]::before {
	content: '\f194';
}
.social-widget a[href*="instagram.com"]::before,
.social-area a[href*="instagram.com"]::before {
	content: '\f16d';
}
.social-widget a[href*="linkedin.com"]::before,
.social-area a[href*="linkedin.com"]::before {
	content: '\f08c';
}
.social-widget a[href*="foursquare.com"]::before,
.social-area a[href*="foursquare.com"]::before {
	content: '\f180';
}
.social-widget a[href*="tumblr.com"]::before ,
.social-area a[href*="tumblr.com"]::before {
	content: '\f174';
}
.social-widget a[href*="behance.net"]::before ,
.social-area a[href*="behance.net"]::before {
	content: '\f1b4';
}
.social-widget a[href*="deviantart.com"]::before ,
.social-area a[href*="deviantart.com"]::before {
	content: '\f1bd';
}
.social-widget a[href*="soundcloud.com"]::before ,
.social-area a[href*="soundcloud.com"]::before {
	content: '\f1be';
}
.social-widget a[href*="spotify.com"]::before ,
.social-area a[href*="spotify.com"]::before {
	content: '\f1bc';
}
.social-widget a[href*="weibo.com"]::before ,
.social-area a[href*="weibo.com"]::before {
	content: '\f18a';
}

/*--------------------------------------------------------------
7. FRONT PAGE SECTIONS
--------------------------------------------------------------*/

/* Panel Grid */
.panel-grid {
	margin: 0 !important;
	width: 100%;
  overflow: hidden;
}

.panel-grid-cell {
	padding: 0 !important;
}

.panel-grid-cell section {
	padding: 80px 0;
	z-index: 999;
}

/* Section Titles */
section .widget-title {
	position: relative;
	margin-bottom: 60px;
	padding: 0;
	border-bottom: 0;
	text-align: center;
	font-size: 65px;
	line-height: 65px;
	text-transform: lowercase;
}

/* Services */
.service {
	padding: 30px;
}

.service-title {
	margin: 0;
	padding: 15px 0;
	font-size: 24px;	
	text-align: center;
	text-transform: uppercase;
  color: var(--secondary-color);
}

.service-icon {
	display: table;
	margin: 0 auto;
	font-size: 45px;
  color: var(--white);
  background-color: var(--secondary-color);
	line-height: 1;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	text-align: center;
}

.service-icon .fa {
	margin-top: 12px;
}

/* Employees */
.employee {
  padding: 30px;
}

.employee-name {
  margin: 0;
  padding: 15px 0;
  font-size: 24px;	
  text-align: center;
  text-transform: uppercase;
}

.employee-photo {
	border-radius: 50px;
}

.employee-position {
	margin: 0 auto;
	display: table;
	padding-bottom: 15px;
	font-size: 18px;
	font-family: inherit;
	color: #727272;
}

.employee-desc {
	margin-bottom: 15px;
	padding: 10px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.employee-social {
	text-align: center;
	font-size: 26px;
}

.employee-social a {
	margin-right: 25px;
	color: #727272;
}

.employee-social a:last-of-type {
	margin-right: 0;
}

.employee-social .fa {
  -webkit-transition: all var(--transition-speed);
  transition: all var(--transition-speed);
}

.employee-social .fa:hover {
  color: var(--secondary-color);
}

/* Projects */
.project {
  margin-bottom: 30px;
}

.project-image {
	position: relative;
  background-color: var(--secondary-color);
}

.project-image img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;	
}

.project-image:hover > img {
  opacity: 0.3;
}

.link-icon,
.pp-icon {
	position: absolute;
	top: calc(50% - 35px);
	font-size: 40px;
  color: var(--white);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	line-height: 1;
	width: 70px;
	height: 70px;
  background-color: var(--dark-gray);	
	border-radius: 50%;
	opacity: 0;
  box-shadow: 0 0 1px var(--dark-gray);
}

.link-icon {
	left: 0;
}

.pp-icon {
	right: 0;
}

.link-icon .fa {
	position: relative;
	top: 15px;
	left: 15px;
}

.pp-icon .fa {
	position: relative;
	top: 13px;
	left: 15px;	
}

.project-image:hover > .link-icon {
	left: 15%;
	opacity: 1;
}

.project-image:hover > .pp-icon {
	right: 15%;
	opacity: 1;
}

/* Social Area */
.social-area ul {
  padding: 0;
	margin: 0 auto;
  display: table;
}

.social-area li {
  float: left;
	padding: 0 30px;
  list-style: none;
  line-height: 1;
  -webkit-transition: all var(--transition-speed);
  transition: all var(--transition-speed);
}

.social-area a {
  text-decoration: none;
}

.social-area a:before {
  font-family: FontAwesome;
  color: var(--primary-color);
  -webkit-transition: all var(--transition-speed);
  transition: all var(--transition-speed);
  top: -6px;
  left: -10px;
  position: absolute;
  font-size: 80px;
  text-shadow: 0 0 1px #222;
}

.social-area a {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  padding-left: 24px;
  position: relative;
}

/* Social Icon Mappings */
.social-area a[href*="twitter.com"]::before {
  content: '\f081';
}

.social-area a[href*="facebook.com"]::before {
  content: '\f082';
}

.social-area a[href*="plus.google.com"]::before,
.social-area a[href*="google.com/+"]::before {
  content: '\f0d4';
}

.social-area a[href*="dribbble.com"]::before {
  content: '\f17d';
}

.social-area a[href*="pinterest.com"]::before {
  content: '\f0d3';
}

.social-area a[href*="youtube.com"]::before {
  content: '\f166';
}

.social-area a[href*="flickr.com"]::before {
  content: '\f16e';
}

.social-area a[href*="vimeo.com"]::before {
  content: '\f194';
}

.social-area a[href*="instagram.com"]::before {
  content: '\f16d';
}

.social-area a[href*="linkedin.com"]::before {
  content: '\f08c';
}

/*--------------------------------------------------------------
8. FORMS & BUTTONS
--------------------------------------------------------------*/

/* Form Elements */
input, textarea {
  padding: 15px;
  max-width: 100%;
  border: 2px solid var(--heading-color);
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
 /* background-color: var(--secondary-color); */
  padding: 10px 20px;
  font-family: var(--font-secondary);
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
 /* box-shadow: 0 5px 0 #C2503D; */
  border-radius: 5px;
  font-weight: 700;
  border: 0;
}

/* Custom Buttons */
.btn {
	border: none;
	border-radius: 0;
	font-family: inherit;
	font-size: 14px;
  color: var(--primary-color);
	background: none;
	cursor: pointer;
	padding: 25px 0px;
	display: inline-block;
	letter-spacing: 1px;
	font-weight: 500;
	outline: none;
	position: relative;
  -webkit-transition: all var(--transition-speed);
  transition: all var(--transition-speed);
	width: 100%;
}

.btn:after {
	content: '';
	position: absolute;
	z-index: -1;
  -webkit-transition: all var(--transition-speed);
  transition: all var(--transition-speed);
}

.btn:before {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

.btn-4 {
  border: 3px solid var(--primary-color);
  color: var(--primary-color);
	overflow: hidden;
	white-space: normal;
}

.btn-4:active {
	border-color: #17954c;
	color: #17954c;
}

.btn-4:hover {
  color: var(--white);
  background: var(--primary-color);
}

.btn-4:before {
	position: absolute;
	height: 100%;
	font-size: 125%;
	line-height: 3.5;
  color: var(--white);
  -webkit-transition: all var(--transition-speed);
  transition: all var(--transition-speed);
}

.btn-4a:before {
	left: 130%;
	top: 3px;
}

.btn-4a:hover:before {
	left: 85%;
}



/*--------------------------------------------------------------
9. MEDIA & IMAGES
--------------------------------------------------------------*/

img {
  max-width: 100%;
  height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
10. UTILITIES & HELPERS
--------------------------------------------------------------*/

/* Alignments */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
	display: block;
  margin: 0 auto;
}

/* Screen Reader Text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.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-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Tables */
table {
	width: 100%;
  margin-bottom: 20px;
  border: 1px solid #dddddd;
}

th {
  background-color: #F8F8F8;
}

table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border: 1px solid #dddddd;
}

/*--------------------------------------------------------------
11. FOOTER
--------------------------------------------------------------*/

.site-footer {
  background-color: var(--primary-color);	
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: auto;
}

.site-footer hr {
  border: 1px solid #038db2;
}

.site-footer a {
  color: #C8C8C8;
}

.footer-holder {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.footer-holder h2 {
  color: var(--white);
  margin: 0;
  margin-top: -5px;
}

.footer-holder .social-widget ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-holder .social-widget li a::before {
  color: var(--white);
}

.footer-holder .social-widget li a span {
  display: none;
}

.related-posts-container{

  padding-bottom: 80px;
  margin-top: 60px;
 
}
/*
@media (max-width: 768px) {
  .related-posts-container{
    padding-bottom: 100px;
    margin-top: 60px;
  }
}
  */


/*--------------------------------------------------------------
13. ANIMATIONS & EFFECTS
--------------------------------------------------------------*/

/* Smooth Scrolling */
.nicescroll-rails {
  z-index: 9999 !important;
}

/* Hover Effects */
.read-more {
  display: block;
  margin-top: 20px;
  text-decoration: underline;
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-speed);
}

.read-more:hover {
  color: var(--dark-gray);
}

/* Social Icons */
.social-widget li a::before {
  font-family: FontAwesome;
  color: var(--primary-color);
  -webkit-transition: all var(--transition-speed);
  transition: all var(--transition-speed);
  top: -6px;
  left: -10px;
  position: absolute;
}

/* Sticky Header */
@media screen and (min-width: 300px) {
  .is-sticky {
    top: 0;
    width: 100%;
    z-index: 99999;
    background-color: var(--white);
  }
  
  .sticky-wrapper {
    background-color: var(--white);
  }
  
  .is-sticky .main-navigation li {
    padding: 20px 10px;
    -webkit-transition: all var(--transition-speed);
    transition: all var(--transition-speed);			
  }
  
  .is-sticky .main-navigation ul ul li {
    padding: 5px;
  }
}




/*--------------------------------------------------------------
MASONRY & ISOTOPE STYLES
--------------------------------------------------------------*/

.home .mdsa-project-masonry-block{
  max-width: 1400px;
  padding: 0 40px;
  margin: 0px auto;
}

@media (max-width: 768px) {
  .home .mdsa-project-masonry-block{
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .home .mdsa-project-masonry-block{
    padding: 0 20px;
  }
}

.home .mdsa-project-masonry-block .projects-masonry-grid{
  padding: 0; 
}

/* Isotope Container */
#isotope-container {
  position: absolute;
  left: 0px;
  height: 411px;
  width: 100%;
}

/*----------------------------
Masonry isotope css
-----------------------------*/

.isotope-item {
            width: 25%;
        }

        .isotope-filters {
            display: table;
            padding: 0;
            margin: 30px auto;
            overflow: auto;
        }

        .isotope-filters li {
            list-style: none;
            float: left;
            border: 2px solid #333;
            padding: 5px 10px;
            margin: 5px;
        } 

        .isotope-filters li a {
            color: #333;
        }

        .isotope-container .isotope-item img {
            margin: 0 !important;
        }

        .isotope-item {
            overflow: hidden;
           border: 5px solid white; 
        }

.isotope-item a img {
  width: 100%;
             margin-bottom: 0;
            height: auto;
        }

        .isotope-item a {
            transition: all 0.35s;
            transform: scale(1,1);
            transition-timing-function: ease-out;
            width: 100%;
            height: 100%;
            opacity: 1;
            text-decoration: none;
            display: block;
            float: left;
        }
         
        .isotope-item a:hover {
  transform: scale(1.05,1.07);
            -webkit-transform: scale(1.05,1.07);
            -moz-transform: scale(1.05,1.07);
            -ms-transform: scale(1.05,1.07);
            -o-transform: scale(1.05,1.07);
            opacity: .4;
            position: relative;
            z-index: 99;
        }

        .isotope-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            text-align: center;
            background-color: rgba(0,0,0,0.5);
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
            color: black;
            font-size: 28px;
            font-weight: 700;
            line-height: 32px;
}

.isotope-overlay span {
  display: inline-block;
  vertical-align: middle;
        }

        .isotope-overlay:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
		}
       
        .iso-link {
            position: absolute;
            top: 0;
            right: -100%;
            font-size: 28px;
            padding: 0 20px;
            color: white;
            line-height: 1;
            border-left: 2px solid #fff;
            background-color: rgba(255,255,255,0.4);
            height: 100%;
            -webkit-transition: all 0.3s 0.1s !important;
            transition: all 0.3s 0.1s !important;
            text-align: center;         
        }

        .iso-link:hover {
            color: white;
        }

        .iso-link .fa {
            position: relative;
            top: 40%;
        }

        @media only screen and (max-width: 699px) {
            .isotope-item {
                width: 50%;
            }          
        }

        @media only screen and (max-width: 420px) {
            .isotope-item {
                width: 100%;
            }          
        }        

/*--------------------------------------------------------------
ADDITIONAL STYLES (Legacy/Uncategorized)
--------------------------------------------------------------*/

/* Font Face Definitions */
@font-face {
  font-family: 'icomoon';
  src:url('fonts/icomoon/icomoon.eot');
  src:url('fonts/icomoon/icomoon.eot?#iefix') format('embedded-opentype'),
    url('fonts/icomoon/icomoon.woff') format('woff'),
    url('fonts/icomoon/icomoon.ttf') format('truetype'),
    url('fonts/icomoon/icomoon.svg#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Welcome Area */
	.welcome-info {
  position: absolute;
  z-index: 1999;
  display: table;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
		width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
		align-items: center;
}

.welcome-title {
  font-size: 40px;
  font-weight: 500;
  color: var(--white);
  width: 85%;
		margin: 0 auto;
  text-align: center;		
  margin-top: -50px;
}

.welcome-title span {
  color: var(--dark-gray);
  background: rgba(255,255,255,.4);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
  padding: 0;
  line-height: 1.25;
}

.welcome-title h1 {
  display: block;
  font-size: 1.6em;
  font-weight: 300;
}

.welcome-title h3 {
  letter-spacing: normal;
  font-weight: 300;
}

.welcome-title h3 span {
  padding: 10px 10px 5px 0;
}

.welcome-title .bullet {
  background: none;
  box-shadow: none;
  padding: 0;
}

.welcome-title .bullet:before { 
  content: "â€¢"; 
  font-size: 16pt; 
}

.welcome-title .pronounciation {
  background: none;
  box-shadow: none;
  border-left: 2px solid var(--dark-gray);
  border-right: 2px solid var(--dark-gray);
  margin: 43px 10px;
  font-size: 32px;
  padding: 0 10px;
  font-weight: 300;
}

.welcome-title h3 i {
  font-weight: 100;
  font-size: 18px;
}

/* Page Specific Styles */
.page .entry-title {
  color: white;
  font-size: 56px;
  text-align: center;
  text-shadow: 0px 4px 3px rgba(133, 133, 133, 0.54), 0px 8px 13px rgba(92, 92, 92, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
  /* margin-bottom: 100px;
  /*
  color: var(--white);
  font-size: 56px;
  text-align: center;
  text-shadow: 0px 4px 3px rgba(133, 133, 133, 0.54), 0px 8px 13px rgba(92, 92, 92, 0.1), 0px 18px 23px rgba(0,0,0,0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  */
}

/* Page Header with Background Image */
.page .site-header {
  position: relative;
  height: 400px;
  display: flex;
		align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Fullwidth Header */
.fullwidth-header {
  position: relative;
  height: 80vh;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .fullwidth-header {
    height: 40vh;
  }
}

@media (max-width: 480px) {
  .fullwidth-header {
    height: 30vh;
  }
}

.fullwidth-header h1{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    margin: 0;
}

.fullwidth-header img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.page-contact .wp-block-column p{
  margin: 2px;
}

/*
.page .entry-header {
  position: relative;
		width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
  */

/* Project Portfolio Page */
.page-project-portfolio .entry-header {
		display: none;
}

.page-project-portfolio .hentry {
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
 /* max-width: 1200px;*/
}

.page-project-portfolio .entry-content {

  width: 100%;
  max-width: 1400px;
}

/* How Images Section */
#how-images {
  padding: 0px;
  border: 5px white solid;
}

#how-images a {
  width: 18%;
  height: 182px;
}

/* Project Samples */
.project-samples .widget-title {
  color: var(--primary-color);
  text-align: left;
  margin: 0px;
}

.project-samples #who-subhead {
  padding: 0px;
}

.project-samples .btn-4 {
  float: right;
  margin: 15px 0;
}

#projectsamples {
  margin-bottom: 10px;
}

/* Project Feature Image */
.project-feature-image {
  position: relative;
  width: 100%;
}

.project-feature-image img {
  width: 100%;
  margin-bottom: 10px;
}

.page-template-page_bios article{
	margin-bottom: 0;
  padding-bottom: 0;
}

.type-bio{
  padding-bottom: 140px;
}

/*--------------------------------------------------------------
PRACTICE PAGE & TEAM STYLES
--------------------------------------------------------------*/

/* Author Bio */
.author-bio {
  margin-bottom: 60px;
  padding: 30px;
  background-color: var(--white);
}

.author-bio .avatar {
  display: block;
  margin: 0 auto;
}

.author-name {
  padding-bottom: 15px;
  border-bottom: 4px double var(--light-gray);
}

.author-social {
  padding-top: 15px;
  text-align: center;
}

.author-social a {
  font-size: 25px;
  color: var(--secondary-color);
  line-height: 1;
  margin-right: 5px;
}

.author-social a:last-child {
  margin-right: 0;
}

.author-desc {
  padding-top: 15px;
}

.view-all {
  padding-top: 15px;
}

.view-all,
.view-all a {
  font-weight: 700;
  color: var(--heading-color);
}

.section-staff{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Staff Grid */
.staff-grid {
  padding: 40px 30px 80px 30px;
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 20px;
}

@media screen and (min-width: 500px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 900px) {
  .staff-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.staff-grid a:hover {
  /* transform: translate(-2px, -2px); */
}

.staff-grid a {
  text-decoration: none;
}

.staff-grid a:hover h6,
.staff-grid a:hover h3 {
  color: var(--primary-color);
}

.staff-grid .staff-img {
  padding-bottom: 10px;
}

.staff-grid h3 {
  transition: color .3s ease-out;
  text-transform: none;
  margin: 20px 0 0;
  color: #444;
    font-weight: 700;
    letter-spacing: -1px;
    font-size: 24px;
}

.staff-grid h6 {
  transition: color .3s ease-out;
  font-weight: 300;
		margin-top: 2px;
  letter-spacing: 0;
  font-style: italic;
  font-size: 12px;
 /* text-transform: lowercase; */
  line-height: 1.2;
}

.staff-grid a {
  /* transform: translate(-2px, -2px); */
  /* transition: transform .3s ease-out; */
  transition: color .3s ease-out;
  font-weight: 300;
  margin-top: 0;
  letter-spacing: 0.1px;
  font-size: 14px;
}

/* Practice Page Specific */
/*
.page-the-practice .entry-content {
  max-width: 1200px;
  margin: 0 auto;
}
  */


.wp-block-columns {
  max-width: 1400px;
  padding: 40px;
  margin: 0px auto;
}

@media (max-width: 781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
      flex-basis: 100% !important;
  }
}

@media (max-width: 768px) {
  .wp-block-columns .wp-block-column {
      padding: 0px !important;
  }
}

@media (max-width: 480px) {
  .wp-block-columns{
    padding: 40px 20px;
  }
}
/*
@media (max-width: 768px) {
  .wp-block-columns {
    padding: 10px 40px 40px;
  }
}
  */



.wp-block-column{
  padding: 20px;
}


.wp-block-column p {
    margin: 0px 0px 24px;
}



@media (max-width: 768px) {
    .wp-block-column p {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
  :where(.wp-block-columns.is-layout-flex) {
      gap: 0px !important;
  }
}

/* Column List Styles */
/*
.column-list,
.wp-block-list {


      columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    margin: 30px 0;
    color: #333;
    list-style: none;
    font-weight: 600;
}

.column-list li,
.wp-block-list li {
	padding:0;
	margin-bottom:10px;
}
  */
/*
.column-list li,
.wp-block-list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-weight: 400;
  letter-spacing: 0.5px;
}


.column-list li:last-child,
.wp-block-list li:last-child {
  border-bottom: none;
}
  */

@media screen and (max-width: 600px) {
  .column-list,
  .wp-block-list {
	columns: 1;
  }
  

}


.page-template-page_bios .entry-content{
	padding-bottom: 20px;

}

.page-template-page_bios .site-main{
	padding-bottom: 140px;
}

.page-template-page_bios .bios{
	padding-top: 0;
}

.page-the-practice .widget-title {
  color: var(--primary-color);
  text-align: left;
  margin-bottom: 30px;
}

.light-text a {
  color: #666;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}


.page-the-practice .light-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-the-practice .service-list {
  margin-bottom: 60px;
}

.page-the-practice .service-list ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-the-practice .service-list li {
  padding: 15px;
  border-left: 3px solid var(--primary-color);
  background-color: var(--light-gray);
  font-weight: 500;
}

.page-the-practice .service-list li:before {
  content: none;
}


.page-template-page_bios article.h-entry{
	margin-bottom: 0;
 
}

.page-template-page_bios .entry-footer{
	display: none;
}

.staff-grid{
	display: grid;
  	grid-template-columns: 100%;
	grid-gap: 20px;	

}





@media screen and (min-width: 500px) {

	.staff-grid{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 900px) {

	.staff-grid{
		grid-template-columns: repeat(4, 1fr);
	}
}

.staff-grid a:hover{
	//transform: translate(-2px, -2px);
}

.staff-grid a{
	text-decoration: none;
	
}

.staff-grid a:hover h6,
.staff-grid a:hover h3{
	color: #0099CC;
	
}

.staff-grid .staff-img{
	padding-bottom: 10px;
}

.staff-grid h3{
	transition: color .3s ease-out;
	margin: 20px 0 0;
	text-transform: none;
}

.staff-grid h6{
	transition: color .3s ease-out;
	font-weight: 300;
	margin-top: 2px;
	letter-spacing: 0;
	font-style: italic;

}

.staff-grid a{
	//transform: translate(-2px, -2px);
	//transition: transform .3s ease-out;
	transition: color .3s ease-out;
	font-weight: 300;
    margin-top: 0;
    letter-spacing: 0.1px;
	font-size: 14px
}



.page-studio-stories .site-main{
	padding-bottom: 100px;
  max-width: 1200px;
  padding: 0px 30px 140px 30px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .page-studio-stories .site-main{
    padding: 20px 20px 80px 20px;
  }
}

.page-studio-stories .page-title{
	font-weight: 300;
}



.news,
.studio-stories{
	display: flex;
	flex-direction: row;
}



.single-news .news,
.single-studio-stories .studio-stories{
	flex-direction: column;
}
.single-news .news.hentry,
.single-studio-stories .studio-stories.hentry{
	margin: auto;
	/*padding: 60px;*/
  padding: 40px 30px 80px 30px;
    max-width: 1024px;
    margin: 0 auto;
}

@media (max-width: 480px) {
  .single-news .news.hentry,
  .single-studio-stories .studio-stories.hentry{
    padding: 20px 20px 80px 20px !important;
  }
}

.news .entry-thumb,
.studio-stories .entry-thumb{
	background-size: cover !important;
    background-position: center center  !important;
}

.news h1.entry-title,
.studio-stories h1.entry-title{
	letter-spacing: -1px;
	font-size: 36px;
	text-align: left;
	text-shadow: none;
  margin: 20px 0;
}

.news.hentry,
.studio-stories.hentry {
    margin: 0;
	padding: 20px 0;
}

.news.hentry .post-content,
.studio-stories.hentry .post-content {
    margin: 0;
	padding: 0 20px;
	min-height: 240px;
}

.news .entry-meta span,
.studio-stories .entry-meta span{
	margin: 0;
}





/* Navigation Links */
.post-navigation,
.paging-navigation {
  margin-bottom: 60px;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a,
.paging-navigation .nav-previous a,
.paging-navigation .nav-next a {
  max-width: 50%;
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  border: 3px solid var(--primary-color);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover,
.paging-navigation .nav-previous a:hover,
.paging-navigation .nav-next a:hover {
  background-color: var(--white);
  border: 3px solid var(--primary-color);
  color: var(--primary-color);
}

/* Comments */
.comments-area {
  margin-bottom: 60px;
}

.comments-title {
  margin: 0 0 30px 0;
  font-size: 24px;
}

.comments-area ol {
  list-style: none;
  padding: 0;
}

.comments-area .children {
  padding-left: 20px;
}

.comment-body {
  padding: 15px;
  margin-bottom: 20px;
  border: 4px double var(--light-gray);
  background-color: var(--white);
}

.comment-reply-link {
  padding: 5px;
  background-color: var(--white);
  border: 4px double var(--light-gray);
  font-size: 12px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;	
}

a.comment-reply-link {
  color: #505050;
  text-decoration: none;
}

a.comment-reply-link:hover {
  color: var(--black);
  box-shadow: 0 0 1px #505050;
}

/* Infinite Scroll */
.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer {
		display: none;
	}

.infinity-end.neverending .site-footer {
  display: block;
}

/* Container */
.container {
  width: auto !important;	
}

.widget .container,
section .container {
  max-width: 1200px;
}

@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}

/* Mobile Navigation Styles */
@media screen and (max-width: 991px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}
	.main-navigation.toggled {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}
	.main-navigation ul {
		float: none;
	}
	.toggled .menu-toggle {
		margin: 0;
	}
	.main-navigation li {
		width: 100%;
		border: 0;
		padding: 5px 0 !important;
		text-align: center;
	}
	.main-navigation li:first-child {
		padding-top: 15px;
	}
	.main-navigation ul ul li:hover {
		background-color: transparent;
	}
	.main-navigation ul {
		display: none;
	}
	.main-navigation .children,
	.main-navigation ul ul {
		display: block !important;
		float: none;
		position: static;
		border: none;
		background: transparent;
		box-shadow: none;
	}
	.main-navigation ul ul li {
		border: 0;
		text-align: center;
	}
	.main-navigation ul ul a {
		color: #E2E2E2;
		margin: 0 auto;
	}
}

/* Menu Toggle Button */
.menu-toggle {
		display: none;
  background-color: #ebebeb;
  color: #444;
  margin: 40px 0;
  box-shadow: none;
  float: right;
}

.bio .entry-content{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}


.bio-feature-image{
  width: 50%;

  padding: 0 20px 20px 0;
}

.bio-feature-text{
  width: 50%;
}

.bio-feature-text p:first-of-type{
  margin-top: 0;
}

.single-bio h5:first-of-type{
  letter-spacing: -0.1px;
}

//////////


/*--------------------------------------------------------------
12. RESPONSIVE DESIGN
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Responsive
--------------------------------------------------------------
@media only screen and (min-width: 1025px) {	
	.header-image {
		display: none;
	}
}

*/
@media only screen and (max-width: 1199px) {
	.content-area {
	//	width: 65%;

	}	
	.fullwidth {
		width: 100%;
	}
	.home-masonry .hentry {
		width: 283px;
	}


	
}



@media only screen and (max-width: 991px) {
	.welcome-info {
		top: 30px;
	}
	.project:nth-of-type(2n+1),
	.service:nth-of-type(2n+1),
	.employee:nth-of-type(2n+1) {
		clear: both;
	}
	.blog-post:nth-of-type(3) {
		clear: both;
		margin-top: 30px;
	}
	.project:nth-of-type(3n+1),
	.service:nth-of-type(3n+1),
	.employee:nth-of-type(3n+1) {
		clear: none;
	}
	
	.stuck {
		position: relative;
	}
	.home-masonry .hentry {
		width: 330px;
	}		

	
}

@media only screen and (max-width: 860px) {
	.content-area,
	.widget-area {
		width: 100%;
	}

	.sidebar-bio{
		align-items: center;
		padding-right: 0;
		flex-direction: row;
	}

	.sidebar-bio a{
		height: 300px;
		margin: 10px;
	}
}

@media only screen and (max-width: 767px) {
	.blog-post:nth-of-type(3) {
		clear: both;
	}
	.skills-desc {
		border: 0;
		margin-bottom: 30px;
	}
	.skills-list {
		border: 0;
		margin: 0;
	}
	.home-masonry {
		margin: 0 auto;
	}
	.home-masonry .hentry {
		width: 280px;
	}		

/*
	.single-bio .entry-content{
		display: flex;
		flex-direction: column;
	}
    */
	

	/*
	.bio-feature-text{
		width: 100%;
		
		padding: 0 0px 20px 0;
	  }
    */

	  .footer-holder h2{
		font-size: 20px;
		line-height: 23px;
	  }

	

}
@media only screen and (max-width: 650px) {
	.home-masonry .hentry {
		width: auto;
	}	
	.home-masonry {
		max-width: 100%;
	}		

	.header-image{
		  margin-left: -50%;
  			height: 100%;
  			  max-width: none;
	}

}
@media only screen and (max-width: 600px) {

	.news,
	.studio-stories{
		display: flex;
		flex-direction: column;
	}

	.news .entry-thumb,
	.studio-stories .entry-thumb{
		height: 260px;
		/* margin-bottom: 30px; */
	}

	.single-news .hentry,
	.single-studio-stories .hentry,
	.single-projects .hentry,
	.single-bio .hentry{
		 /*  padding: 0 !important;*/

	}

	.sidebar-bio{
		align-items: center;
		padding-right: 0;
		flex-direction: column;
	}

	.sidebar-bio a{
		margin: 10px 0;
	}



	.hentry .entry-thumb,
	.post-content {
		width: 100%;
		padding: 0 !important;
	}
	.entry-title {
		font-size: 25px !important;
	}
	.welcome-desc,
	.welcome-button {
		display: none;
	}
	.panel-grid-cell section,   
	.panel.widget {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.service,
	.employee {
		padding-left: 5px;
		padding-right: 5px;
	}		
/*
	.fullwidth{
		padding: 0 10px;
	}
    */

	.fullwidth h1.entry-title{
		font-size: 32px !important;
	}
/*
	.fullwidth .page {
		padding:0 !important;

		
	}
    */

	.column-list{
		//padding: 0;
		columns: 1;
	}



	.page-contact .wp-block-columns div:first-child{
	
		margin-bottom: 1.75em
	  }
	  .single-projects .content-area,
	  .single-bio .content-area{
		/*padding: 15px;*/
	  }

  


/*
@media only screen and (max-width: 499px) {
	.project,
	.service,
	.employee,
	.bq-text,
	.bq-img {
		width: 100% !important;		
	}
	.project img {
		display: block;
		margin: 0 auto;
	}
	section .widget-title {
		font-size: 36px;
	}
	.welcome-title {
		font-size: 24px;
	}
	.welcome-logo {
		max-width: 100px;
	}
	.welcome-desc {
		font-size: 20px;
		color: #D8D8D8;
		text-shadow: 0 0 2px #222, 0 0 2px #222;
	}
	.welcome-button {
	    font-size: 14px;
	    margin-top: 30px;
	}
	.blog-post {
		width: 100%;
		margin-bottom: 30px;
	}
	.blog-post:nth-of-type(3) {
		margin-top: 0;
	}
	table {
		table-layout: fixed;
	}
	.comments-area .children {
		padding-left: 0;
	}	
}

@media only screen and (max-width: 416px) {
	.social-area li {
		padding: 0 10px;	
	}
	.social-area a:before {
		font-size: 65px;
	}
	.page-template-page_services-php .service,
	.page-template-page_testimonials-php .testimonial {
		padding-left: 0;
		padding-right: 0;
	}
}


.menu-toggle {
	display: none;
	background-color: #ebebeb;
	color: #444;
	margin: 40px 0;
	box-shadow: none;
	

	float: right;
}

*/

@media only screen and (max-width: 540px) {
	.meta-nav-text{
		display: none;
	}

  .bio .entry-content{
    flex-direction: column;
  }

  .bio-feature-image{
    width: 100%;
  
    padding: 0;
  }
  
  .bio-feature-text{
    width: 100%;
  }
  
  .bio-feature-text p:first-of-type{
    margin-top: 25px;
  }
}

@media (max-width: 414px) {

	body{
		font-size: 18px;
	}

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


	}

	.site-header { 
	
		background-size: cover;
	/*	background-attachment: fixed; */
		background-position-x: 100%;
	/*	background-attachment: scroll;*/

		
	}

	

	.page-contact .site-header{
	

		background-position-x: 50%;


		
	
	}

	.bq-text{
		padding: 0;
	}

	.top-bar{
		/* height: 50px; */
	}



	.cd-menu-trigger{
		top: 3px;
	}

	.welcome-info{
		  padding: 0 20px;
	}


	.welcome-title{
		width: 100%;
	}

	.welcome-info .entry-title{
		  text-align: center;
  		font-size: 44px;
	}

	.welcome-title h1{
		  display: block;
		  font-size: 50px;
		  font-weight: 300;
	}


	.welcome-title h3 {
		font-size: 18px;
		line-height: 39px;
	}

	.welcome-title .pronounciation{

	  font-size: 28px;

	}

	.isotope-overlay{
		display: none;
	}

	section .widget-title,
	section .widget-title h3,
	section .light-text{
		font-size: 50px;
		letter-spacing: -1px;
		line-height: 54px;
		text-align: left;
	
		  
	}

	.headline-block .light-text{
		font-size: 24px;
	}



	#main-nav li a{

		font-size: 30px;
  		line-height: 34px;
  		letter-spacing: 0px;
	}

	#main-nav li a span{

		width: 80%;
	}


	.site-branding{

		padding: 5px 20px;
	}
    

	.cd-menu-trigger{
		right: 0px;
	}




	.site-branding.col-md-4 {
		width: 100%;
		text-align: center;
		/*padding-top: 20px;
		padding-bottom: 20px;
		*/
	}
	.menu-toggle.btn {
		margin: 5px auto 10px;
		float: none;
	}
	.site-title {
		font-size: 30px;
	}
	#whoweare h3{
		margin-top: 0;
		margin-bottom: 30px;
	}


	#who-subhead{
		padding: 0;
		margin-bottom: 30px;
	}

	.headline-one .widget-title{

		  margin: 0px;
  		width: 100%;
  		letter-spacing: -1px;
  		padding: 20px;
	}

	.headline-two .light-text{
		  width: 100%;
  			color: white;
  			font-size: 30px;
  		line-height: 30px;
	}

	.headline-two .widget-title{
		  width: 100%;
  			color: white;
  			font-size: 50px;
  		line-height: 50px;
	}

	.headline-three .widget-title{

		  width: 100%;
 		 padding: 0 10%;
	}

	#how-title .col-xs-12{
		padding: 0px;
	}

	#howwecraft .col-xs-12 {
		padding: 0px;
	}

	#howwecraft .bq-text{
		  margin: 0 0 30px 0;
	}

	#howwecraft img{
		margin-bottom: 30px;
	}

	#howwecraft p.subhead {
		padding: 0;
		text-align: left;
	}

	.headline-three .action-text{
		  width: 80%;
		  margin: 0 10%;
		  padding: 0 10px;
		  text-align: center;
	}

	.headline-four .light-text{
		  width: 100%;
  		text-align: right;
	}

	.headline-four .light-text b{
		 font-size: 50px;
	}

	.headline-four .widget-title{
		 width: 100%
	}

	.project-samples .btn-4{
		width: 100%;
	}

	.btn-4 {

 		 margin: 25px 0;
 	}

 	#how-images img{
 		width: 100%;
			  max-width: 100%;
		  height: auto;
		  margin: 15px 0;
			
		}

	#projectsamples .col-xs-12{
		padding: 0px;
	}

	.single-news header,
	.single-studio-stories header,
	.single-projects header {
	  height: auto;
	}




	.single-news .hentry,
	.single-studio-stories .hentry,
	.single-projects .hentry{
		padding: 20px !important;
	}

	.project-feature-image{
		margin-bottom: 30px;
	}



	.comment-navigation .nav-previous a, .paging-navigation .nav-previous a, .post-navigation .nav-previous a {
		padding: 8px !important;
	}

	.comment-navigation .nav-next a, .paging-navigation .nav-next a, .post-navigation .nav-next a {
		padding: 8px !important;
	}
}

@media (max-width: 375px) {





	.site-branding{
		/*padding: 20px 0;*/
	}

	.welcome-title h1 {
	  
	 /* font-size: 1.5em; */
	}

	

}

@media (max-width: 320px) {





	.welcome-info{
		  margin-top: 30px;
	}

	.welcome-title h1 {
	  
	  font-size: 1.3em;
	}

	.welcome-title h3 {
		display: none;
	}

	section .widget-title, 
	section .widget-title h3, 
	section .light-text {
		  font-size: 40px;
		  letter-spacing: -1px;
		  line-height: 45px;
	}
	.headline-one .widget-title {
		text-align: center;
	}

	.headline-two .widget-title {

		  font-size: 40px;
		  line-height: 40px;

	}

	.headline-three .action-text{
		/*display: none;*/
	}

	.headline-four .light-text b {
  		font-size: 40px;
  	}

  	#who-subhead {

	  line-height: 35px;
	}



}


@media screen and (max-width: 991px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}
	.main-navigation.toggled {
		width: 100%;
		text-align: center;
		margin-bottom: 30px;
	}
	.main-navigation ul {
		float: none;
	}
	.toggled .menu-toggle {
		margin: 0;
	}
	.main-navigation li {
		width: 100%;
		border: 0;
		padding: 5px 0 !important;
		text-align: center;
	}
	.main-navigation li:first-child {
		padding-top: 15px;
	}
	.main-navigation ul ul li:hover {
		background-color: transparent;
	}
	.main-navigation ul {
		display: none;
	}
	.main-navigation .children,
	.main-navigation ul ul {
		display: block !important;
		float: none;
		position: static;
		border: none;
		background: transparent;
		box-shadow: none;
	}
	.main-navigation ul ul li {
		border: 0;
		text-align: center;
	}
	.main-navigation ul ul a {
		color: #E2E2E2;
		margin: 0 auto;
	}
	/*
	.top-bar {
		position: relative !important;
	}	
	*/
}
@media screen and (max-width: 1024px) {
	.has-banner:after,
	section {
	/*background-attachment: scroll !important;*/
		background-position: center top !important;
		-webkit-background-size: auto !important;
		-moz-background-size: auto !important;
		background-size: auto !important;
	}
	.widget-title:after {
		display: none;
	}
}

/* Multi columns support */
.container {
  width: auto !important;	
}
.widget .container,
section .container {
  /*
  padding-left: 30px;
  padding-right: 30px;
  */
  max-width: 1200px;
}
/*
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}
*/
@media (min-width: 768px) {
  .container {
  	max-width: 100%;
    /*max-width: 1170px;*/
  }
}
/*
@media (max-width: 499px) {
	section .widget-title,
	.panel.widget .widget-title {
		font-size: 36px;
	}

*/
}



//////////