/* ------------------ FONTS ------------------ */
	@import url('https://fonts.googleapis.com/css?family=Montserrat|Unna|Special+Gothic+Expanded+One');


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

     body, html {
      height: fit-content;
      font: 400 11px/17px 'Montserrat', sans-serif; 
    }
    h1 { 
      font: 800 40px/30px 'Special Gothic Expanded One', sans-serif;
      letter-spacing: normal;
      color: #000;
      padding: 2rem 6rem 1rem 0;
      text-align: right;
    }
    h2 {
      font: 400 35px/40px 'Unna', sans-serif; 
      letter-spacing: normal;
      color: black;
      padding: 1rem 0 0 0;
    }
    h2 img.bio {
      width:  100px; 
      height: 100px; 
      object-fit: cover; 
      border-radius: 50%;  
      vertical-align: -20px;
      margin-right: 5px;
    }
     h2 img.bio.finger {
      width:  50px; 
      height: 50px; 
      vertical-align: -15px;
    }
    h3 {
      font: 400 25px/25px 'Unna', sans-serif; 
      letter-spacing: normal;
      color: black;
      padding: 2rem 0 0.5rem 0;
    }
   p {
      letter-spacing: 0.5px;
      word-spacing: 1.75px;
      color: black;
      margin-bottom: 15px;
      display:inline-block;
    }
    .about i {
        font-size:9px;
        line-height: 12px;
    }
    .about, .testimonials {
    /* padding-right: 10rem; */
     padding-top: 15px; 
    }
    .columnCount {
    column-count: 2;
    column-gap: 50px;
    }
    .testimonials p {
     margin-bottom: 20px;
    }
    p img.logo {
     margin: 12px 0 4px 0;
     width: 80px;
     display: block;
    }
    
    p a {
      color: black;
      text-decoration: none;
    }
    p a:hover { 
       border-bottom: 0.1px solid currentColor; 
    }
    

    section ul {
      list-style-type: disc;
      display: block;
      margin-top: -1.2rem;
    }
    section li {
      margin: 0 0 0 2rem;
    }
    
    
    body {
      display: flex;
      flex-direction: column;
    }

    header {
      position: sticky;
      top: 0;
      background-color: white;
      padding: 1rem;
      text-align: center;
      z-index: 1500;
    }
	
    .container {
      display: flex;
      flex: 1;
      margin: 0 150px 0 150px;
    }

    nav {
      width: 200px;
      background-color: none;
      position: sticky;
      top: 60px;
      align-self: flex-start;
      height: calc(100vh - 60px);
      padding: 1rem;
      margin: 17px 0 0 100px;
      z-index: 999;
    }

    nav ul {
      list-style-type: none;
      display: block;
    }

    nav li {
      margin-bottom: 1rem;
    }

    nav a {
      font: 600 16px/25px 'Special Gothic Expanded One', sans-serif;
      letter-spacing: 1px;
      color: #4169E1;
      text-decoration: none;
      padding: 0.5rem;
      display: inline-block;
      opacity: 0.5;
    }
    .active, nav a:hover { 
      opacity: 1;
    }
    .active {
      font-weight: 800;
      color: black; 
    }
    .subNav         { width:100%; margin: 15px 0 5px 5px; padding: 0; font-size: 10px; }
    .checkbox       { display: inline; margin: 0; padding-right: 15px;}
    .subNav input   { width: 12px; height: 12px; margin: -1px 5px 0 0; vertical-align: middle; }
    
     main {
      flex: 1;
      padding-bottom: 100px;
      background-color: white;
    }
    section { padding: 2rem 0 4rem 0;   /* border-top: black solid 0.5px; */  }
   
    footer {
      position: sticky;
      bottom: 0;
      background-color: white;
      color: #999;
      font-size: 8px; 
      padding: .8rem 0 1.2rem 0;
      text-align: center;
      z-index: 1000;
    }

/* ------------------ GALLERIES ------------------ */
	.gallery-container			        { display: flex; flex-wrap: wrap; margin: 1rem 0 0 0; padding:0; }
	.item, .item video 			        { width: 95px;  margin: 5px; box-shadow: 3px 3px 4px #999; }
	.gallery				            { position:relative; }
	/* .gallery.vid img			        { filter: brightness(30%); } */
	.playButton				            { display: none; content: ""; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 17px solid rgba(255, 255, 255, 1); position: absolute; left: 10%; top: 10%; z-index: 999; transform: rotate(-90deg); -webkit-transform: rotate(-90deg); }
	.mfp-title, .mfp-counter		    { font: 600 11px/12px 'Montserrat', sans-serif; }
	.mfp-iframe-scaler .mfp-bottom-bar	{ margin-top: 10px; }
	.mfp-iframe-holder .mfp-content   	{ max-width: 800px;}
    
	
/* ------------------ MEDIA QUERIES ------------------ */
    /* large screen in landscape (regular layout, see initiating css) */
    
    /* large screen in portrait (regular layout, narrower nav) */
    @media (min-aspect-ratio: 3/4) and (max-aspect-ratio: 1/1) {
    
     }
    /* medium screen in portrait (center layout) */
    @media (max-aspect-ratio: 3/4) and (min-width: 481px) {
            .container              { flex-direction: column; height: auto; margin: 0 50px 0 50px; }
            main                    { height: auto; }
            .columnCount           { column-count: 1; }
            section                 { padding: 1.5rem 1rem 4rem 2rem; }
            h1                      { padding: 2rem 0 0em 0;   text-align: center;}
            footer                  { padding: 0.2rem 0 0.2rem 0;}
    }
    /* medium screen in landscape (regular layout, narrower nav) */
    @media (min-aspect-ratio: 1/1) and (max-aspect-ratio: 4/3) {
            .columnCount           { column-count: 2; }
            .container          {  margin: 0 55px 0 55px; }
        
    	}
    /* small screens in landscape (regular layout, narrower nav, smaller fonts) */
    @media (min-aspect-ratio: 4/3) and (max-width: 768px) {
        header                  { padding: 0rem; }
        .columnCount           { column-count: 1; }
        h1                      { font-size: 25px; padding: 1.5rem 1rem 0rem 0; text-align: center;}
        footer                  { padding: 0.2rem 0 0.2rem 0; }
    }
    /* small screen in portrait (center layout, reduce menu height) */
    @media (max-aspect-ratio: 3/4) and (max-width: 480px) {
            .container              { flex-direction: column; height: auto; margin: 0 10px 0 10px;}
            .checkbox               { display: block; }
            main                    { height: auto; }
            .columnCount           { column-count: 1; }
            section                 { padding: 1.5rem 2rem 4rem 2rem; }
            h1                      { font-size: 35px; padding: 1.5rem 0 0rem 0;  text-align: center;}
            footer                  { padding: 0.2rem 0 0.2rem 0;}
    }



    
    #preload {display:block}
    #ajax-loader {display:none}
    
    
    
    
    
    
    
    