/* --------------------------------------------------
----------------------------------------------------  
** BRUCE MAU **
----------------------------------------------------
--------------------------------------------------- */

/*
#wpadminbar {
  display: none;
}
*/

/*--------------------------------------------------------------
# Reset CSS
https://meyerweb.com/eric/tools/css/reset/
--------------------------------------------------------------*/

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
:focus {
  outline: none;
}
@font-face {
  font-family: 'bmdfuturaprotonew3bold';
  src: url('../fonts/bmdfuturaprotonew3-bold-webfont.woff') format('woff'),
       url('../fonts/bmdfuturaprotonew3-bold-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}
img {
  width: 100%;
	max-width: 100%;
	height: auto;
}
/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
/* Colours */
  --white: #fff;
  --black: #111;
  --gray: #5d5d5d;
  --accent: #D7111A;
  --link:#06c;
  --yellow:#FFE92F;
  --accent-darker: rgb(167, 4, 12);
/* Typography */
  --futura: 'bmdfuturaprotonew3bold', serif;
  --sans-serif: 'Montserrat', sans-serif;
  --serif: 'Libre Baskerville', serif;
  --border-radius: 20px;
}

img {
  align-self: center;
}
/*
img[src$='.png'],
img[src$='.jpg'] {
  border-radius: var(--border-radius);
}
*/
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
body,html{
  margin: 0;
  padding:0;
  font-family: var(--sans-serif);
  font-family: 'Montserrat', serif;
}
a {
  color: #06c;
  text-decoration: none;
  background-color: transparent;
  transition: .4s;
}

nav ul,
footer ul {
    list-style: none;
}
nav a,
nav a:visited,
nav a:hover,
.menu a,
.menu a:hover {
    color: var(--white);
    transition: 0.3s;
    text-decoration: none;
}
nav a:hover,
.menu a:hover {
    opacity: 0.5;
    cursor: pointer;
}
.massive-change {
    border-radius: 50px;
    border: 1px solid var(--white);
    padding: 0 7px;
    margin-left: 20px;
    text-align: center;
    font-family: var(--futura)
}
footer .massive-change{
  margin-left: 30px; 
}
.mobile-nav .massive-change {
    margin-left: 0;
    margin-top: 15px;
    font-size: 18px;
    display: inline-block;
    width: 70px;
}
nav .desktop-nav {
    padding-top: 20px;
    position: fixed;
    height: 65px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--futura);
    padding: 0 5%;
}
.desktop-nav ul {
    display: flex;
    flex-direction: row;
}
.wp-top-menu {
    position: relative;
}
.desktop-nav ul ul {
    opacity: 0;
    visibility: hidden;
    font-family: var(--sans-serif);
    font-size: 14px;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    background-color: var(--black);
    padding: 15px;
    position: absolute;
    left: 0;
    top: 30px;
    min-width: 140px;
}
.desktop-nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
}
.desktop-nav li.has-children > a:after {
    color: #fff;
    content: url(../images/chevron-down.svg);
    font-size: 10px;
    padding-left: 5px;
    transition: 0.4s;
}
.menu li {
    position: relative;
}
nav .desktop-nav li:not(:last-child) {
    padding-right: 20px;
}
.nav-links {
    display: flex;
}
.bg-nav {
    background-color: rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}
.bg-nav.active,
.bg-pages {
    background: var(--gray);
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
}
.bg-nav.active .logo,
.bg-pages .logo {
    font-size: 30px;
}
.logo {
    font-family: var(--futura);
    text-transform: uppercase;
    font-size: 30px;
    transition: 0.4s;
    text-decoration: none;
}
img.nav-search {
    height: 13px;
    width: auto;
    padding-left: 15px;
}
img.nav-search:hover {
    cursor: pointer;
}
nav .mobile-nav {
    height: 53px;
    background-color: var(--gray);
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gray);
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 1px 3px;
}
.mobile-nav .logo {
    position: absolute;
    left: 30px;
    top: 15px;
    font-size: 20px;
}
.mobile-nav img.nav-search {
    position: absolute;
    right: 70px;
    top: 15px;
    height: 25px;
}
#mobile-overlay {
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 100;
    height: 101vh;
    width: 0;
    opacity: 0;
    background-color: var(--black);
    transition: 0.5s;
    font-size: 25px;
    text-align: left;
    display: flex;
    font-family: var(--futura);
    overflow: scroll;
    padding: 15px 30px 0 30px;
}
#mobile-overlay .menu li {
    font-size: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    width: 100%;
}
#mobile-overlay .sub-menu li {
    font-family: var(--sans-serif);
    font-size: 16px;
    border-bottom: none;
}
#mobile-overlay .menu li {
    padding: 6px 0 8px 0;
}
#mobile-overlay .sub-menu li:first-child {
    padding-top: 10px;
}
#mobile-overlay .sub-menu li:last-child {
    padding-bottom: 0;
}
#mobile-overlay.is-active {
    width: 100vw;
    opacity: 1;
    right: 0;
}
.mobile-nav .nav-links {
    flex-direction: column;
    width: 100%;
}
#js-ham--menu {
    top: 2px;
    right: 15px;
    z-index: 101;
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
}
.ham {
    font-size: inherit;
    cursor: pointer;
    display: inline-block;
    outline: none;
    position: relative;
    z-index: 16;
    -webkit-appearance: none;
    border-radius: 0;
    background-color: transparent;
    border: none;
    transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ham--menu.is-active span:first-child {
    top: 4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.ham--menu.is-active span:last-child {
    top: -0.313em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.ham--menu span {
    position: relative;
    top: 0;
    display: block;
    width: 25px;
    height: 2px;
    margin-bottom: 7px;
    background-color: var(--white);
    transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ham--menu span:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 950px) {
    nav .desktop-nav {
        display: none;
    }
}
@media screen and (min-width: 950px) {
    nav .mobile-nav {
        display: none;
    }
}
#scroll-to-top {
    position: fixed;
    z-index: 10;
    bottom: 30px;
    right: 30px;
    display: none;
}
#scroll-to-top img {
    height: 30px;
}
.pop-up {
    padding: 15px 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: fixed;
    left: 30px;
    width: 90%;
    max-width: 450px;
    bottom: 30px;
    box-shadow: 0 4.5px 23px 6.5px rgba(0, 0, 0, 0.4);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray);
    background-color: #f0f0f0;
}
@media screen and (max-width: 600px) {
    .pop-up {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 20px;
        min-width: 92vw;
    }
}
.pop-up h2 {
    font-size: 16px;
}
#popup-close {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
}
.pop-up-close {
    height: 20px;
    width: 20px;
}
.pop-up-close:hover {
    cursor: pointer;
}
#popup .form-box {
    width: 100%;
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: -10px;
}
.book-popup h2 {
    font-size: 16px;
    padding-bottom: 10px;
}
.scroll p {
    position: absolute;
    bottom: 140px;
    right: 9px;
    z-index: 1;
    transform: rotate(-90deg);
    text-transform: uppercase;
}
@media screen and (max-width: 760px) {
    .scroll {
        display: none;
    }
}
.c-scrolldown {
    width: 1px;
    height: 60px;
    position: absolute;
    bottom: 60px;
    right: 40px;
    margin: 0 auto;
    overflow: hidden;
}
.c-line {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(to bottom, white 50%, rgba(255, 255, 255, 0) 50%);
    background-position: 0 -60px;
    background-size: 100% 200%;
    animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@keyframes scrolldown {
    0% {
        background-position: 0 -60px;
    }
    75% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 60px;
    }
}




/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
#wpforms-submit-127,
button.btn,
.btn{
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--futura);
	padding: 10px 30px;
  border-radius: 50px;
  border: none;
	text-transform: uppercase;
  font-size: 12.5px;
  text-align: center;
  transition: .3s;
  text-decoration: none;
  max-width: 180px;
}
.btn:hover{
  background-color: var(--accent-darker);
  color: var(--white);  
}
#wpforms-submit-127{
		padding: 8px 30px;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body {
  font-family: var(--sans-serif);
  line-height: 1.5rem;
  color: var(--black);
}
h1, h2, h3, h4 {
  font-family: var(--futura);
  line-height: 1.3em;
}
article{
  font-family: var(--serif);
}
h1{
  font-size: 26px;	
}
h2 {
	font-size: 20px;
}
h3 {
	font-size: 16px;
}
p {
  font-size: 16px;
  line-height: 1.7em;
}

/*--------------------------------------------------------------
# FORMS
--------------------------------------------------------------*/

.form-group, .mc-field-group {
  display: flex;
  position: relative;
  margin: 10px 0;
  flex-direction: column;
  text-align: left;
}
.form-group input,
.mc-field-group input {
  height: 40px;
}
.form-group label,
.mc-field-group label {
  pointer-events: none;
  margin-left:10px;
  padding: 0 3px;
  color: var(--black);
  font-size: 13px;
  font-weight: normal;
}

.form-group input,
.wpforms-container input,
.form-group textarea,
.mc-field-group input,
.mc-field-group textarea {
  display: block;
  background: none;
  padding: 0.125rem 12px 0.0625rem;
  font-size: 1rem;
  border: 1px solid #111;
  width: 100%;
  display: block;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
  box-shadow: none;
  border-radius: var(--border-radius);
}
input:-internal-autofill-selected{
  background-color: #222 !important;
}
.form-group select,
.form-group input:focus,
.form-group input:valid,
.form-group input.form-file,
.form-group input.has-value,
.form-group textarea:focus,
.form-group textarea:valid,
.form-group textarea.form-file,
.form-group textarea.has-value {
  color: #111;
}

.mc-field-group input:focus,
.mc-field-group select:focus,
.mc-field-group textarea:focus,
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}
.mc-field-group label{
	display: block;
}
.form-box {
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: left;
}
.form-white-bg .form-box{
  background-color: rgba(255, 255, 255, .75);
}
.form-black-bg .form-box{
  background-color: var(--black);
}
.form-black-bg .form-box h2 {
  color: var(--white);
}
.form-black-bg .form-group label {
  color: var(--white);
}
.form-black-bg .form-group input,
.form-black-bg .form-group textarea {
  border-color: var(--white);
  color: var(--white);
}
#wpforms-confirmation-127{
  background: #fff;
  border: none;
  margin-top: 20px;
  border-radius: 5px;
}
.mailchimp-home .mc-field-group input{
	color: var(--white);
}

/*--------------------------------------------------------------
# CONTACT US
--------------------------------------------------------------*/
.wpforms-container {
  margin-bottom: 0 !important;
}
button.wpforms-submit {
  background-color: var(--accent);
  color: var(--white);
  font-family: var(--futura);
	padding: 5px 30px;
  border-radius: 50px;
  border: none;
	text-transform: uppercase;
  font-size: 12.5px;
  text-align: center;
  transition: .3s;
  text-decoration: none;
  max-width: 180px;
  margin-top: 10px;
}
.wpforms-container input,
.wpforms-container textarea {
  display: block !important;
  background: none !important;
  padding: 0.125rem 12px 0.0625rem !important;
  font-size: 16px;
  border: 1px solid #111;
  width: 100% !important;
  display: block !important;
  -webkit-transition: all 0.28s ease !important;
  transition: all 0.28s ease !important;
  box-shadow: none !important;
  border-radius: 20px !important;
}
.wpforms-container input {
  height: 40px;
  margin-bottom: 10px !important;
}
.wpforms-container label {
  display: flex !important;
  pointer-events: none;
  margin-left: 10px;
  color: var(--black);
  font-size: 13px;
  font-weight: normal;
}
#mc24-page .wpforms-container input,
#mc24-page .wpforms-container textarea {
  border: 1px solid #fff;
}
/* White BG */
.wpforms-form textarea,
.wpforms-form input{
	color: #111 !important;
	border: 1px solid #111!important;
}
.wpforms-form .wpforms-field{
	padding: 0!important;
}
.wpforms-form .wpforms-field-label{
	font-size: 13px !important;
  font-weight: normal !important;
  margin-bottom: 5px !important;
  margin-left: 10px!important;
}
/* Black BG */
.form-black-bg .wpforms-form input,
.form-black-bg .wpforms-form textarea{
  color: var(--white) !important;
  border: 1px solid var(--white)!important;
}
.form-black-bg .wpforms-container label {
  color: var(--white);  
}
#contact-home{
  background-color: var(--black);
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header{
  height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20vw;
  overflow: hidden !important;
  background-color: var(--black);
}
.header-title{
  position: relative;
}
.header-title h1{
/*   font-size: 50px; */
  font-size: 3.4vw;
}
@media screen and (max-width: 760px){

  .header-title h1{
    font-size: 30px;
  }
  header{
    padding: 0 30px;
  }
}
.video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
  height: 100%;
  overflow: hidden !important;  
	/* background: var(--primary-color) url('./https://traversymedia.com/downloads/cover.jpg') no-repeat center
    center/cover; */
    z-index: 0;
}

.video-container video {
	min-width: 100%;
	min-height: 100%;
  position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}


button.unmute {
	position: absolute;
	right: 40px;
	bottom: 30px;
	border: none;
	background: #e6e6e6;
	color: #fff;
	font-size: 13px;
	line-height: 1;
	padding:0;
	background-color: transparent;
	text-transform: uppercase;
}
@media screen and (max-width:600px){
	button.unmute {
		right: 5%;
	}	
}
button.unmute:focus{
	outline: none;
}
.soundicon,
.soundiconoff {
	width:18px;
	height: auto; 
}
.soundicon {
	display: none;
}



/*--------------------------------------------------------------
# ALL SECTIONS
--------------------------------------------------------------*/

section {
  padding: 50px 0;
}
@media screen and (max-width: 768px){
  section {
    padding: 30px 0;
  }
}
.section-title {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px){
  .section-title {
    padding-left: 15px;
  }
}
.section-title a{
  text-decoration: none;
  font-size: 30px;
  font-family: var(--futura);
  margin-right: 10px;
  transition: .3s;
  color: var(--white)
}
.section-title a:hover {
  margin-right: 15px; 
}
.section-title.black a {
  color: var(--black);
}
@media screen and (max-width: 767px){
  .section-title{
	  text-align: center;
    margin-bottom: 30px;
  }
  .section-title a{
    font-size: 25px;
  }
}

.section-title img {
  width: 10px;
}


/*--------------------------------------------------------------
# BIO SECTION
--------------------------------------------------------------*/

#bio-home {
  background-color: var(--gray);
  color: var(--white);
}
#bio-home p {
  font-family: var(--futura);
  font-size: 20px;
  line-height: 1.5em;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width:767px){
	#bio-home p {
	  font-size: 15px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
	}	
}
.bio-download {
	text-align: center;
}
.bio-download h3{
	padding: 20px 0;	
}
.blocks-gallery-grid, .wp-block-gallery{
  width: 100%;
}
/*--------------------------------------------------------------
# MC24
--------------------------------------------------------------*/
#mc24-home {
  background-image: url("../images/mc24.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  padding: 100px 0;
  background-color: var(--black);
}
.mc24-copy-box {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  max-width: 950px;
  margin: 0 auto;
}
#mc24-home p {
  padding: 15px 0;
}
@media screen and (max-width:767px){
	#mc24-home{
		padding: 50px 0;
		text-align: center;
		background-image: none;
		background-attachment: scroll;		
	}
	#mc24-home h1{
		font-size: 16px;
	}
	.mc24-copy-box {
	  padding:15px 0;
	}	
}
#mc24-page{
  line-height: 2rem;
}
@media screen and (max-width: 760px){
  #mc24-page .content h1{
    font-size: 20px;
  }
}
#mc24-page .mc24-title{
  text-align: center;
  padding-bottom: 30px;
}
#mc24-page .content{
  padding: 40px 0;
}
#mc24-page .quote-box {
  margin-top: 20px;
  margin-bottom: 20px;
}
.highlight {
  padding-bottom: 30px;
}
.highlight-img{
  height: 600px;
  background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.1);
}
@media screen and (max-width: 760px){
  .highlight-img{
    height: 300px;
  }
}
.mc24-buy {
  background-color: var(--gray);
  color: var(--white);
  padding: 15px;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 760px){
  .mc24-buy h1{
    font-size: 16px;
  }
}
.mc24-buy a {
  margin-left: 20px;
}
.mc24-experience{
  background-color: var(--black);
  color: var(--white);
  border-radius: var(--border-radius);
  margin-top: 30px;

}
.mc24-experience-info {
  padding: 20px 40px 10px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.mc24-experience-info ul {
  list-style-position: inside;
}
.mc24-experience-info li,
.mc24-experience-info p {
  font-size: 16px;
  line-height: 1.5em;
}
.mc24-experience-info h1,
.mc24-experience-info li{
  font-size: 20px;
}

.mc24-experience-info h1,
.mc24-experience-info h2,
.mc24-experience-info ul {
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# PROJECTS
--------------------------------------------------------------*/
.project-gallery {
  padding:0 20px 20px;
}
.project-gallery li {
	position: relative;
  height: 13vw;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 20px;
	transition: .3s;
  border: 1px solid rgba(0,0,0,0.1);
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
}
@media screen and (max-width: 760px){
  .project-gallery {
    padding-left: 30px;
    padding-right: 30px;
  }
  .project-gallery li {
    height: 35vw;
  }
}

@media screen and (min-width: 800px){
  .project-item:hover .btn-on-hover{
    opacity: 1;
    visibility: visible;
  }
}

.mc24-button {
	display: flex;
	padding: 30px 0;
	justify-content: center;
}
.mc24-button img{
	max-width: 170px;
}
.modal-item {
	display: none;
	  flex-direction: column;
}
.modal-item.active{
  display: flex;
  flex-direction: column;
}
.modal-caption{
/*
	position: absolute;
	bottom: 35px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
*/
  padding-top: 15px;
	font-size: 11px;
	color: var(--white);
	line-height: 13px;
	animation-name: fadein;
  animation-duration: 2s;
  max-width: 90%;
}
@media screen and (max-width: 760px){
	.modal-caption{
		width: 95%;
	}
}
.modal-overlay {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  overflow: auto;
  background-color: rgb(0,0,0);
	background-color: var(--black);
	width: 100vw;
	height: 100vh;
	padding: 6%;
	justify-content: center;
	align-items: center;
}
.modal-prev,
.modal-next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.modal-prev{
	left: 20px;
}
.modal-next {
	right: 20px;
}

.modal-overlay img{
	max-height: 70vh;
	width: auto;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 1s;
  animation-name: zoom;
  animation-duration: 1s;
}
@keyframes zoom {
  from {opacity:0;transform:scale(.95)}
  to {opacity:1;transform:scale(1)}
}

img.modal-close {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 10;
	height: 20px;
  width: auto;
  cursor: pointer;
}
#openfullscreen{
	position: absolute;
	top: 30px;
	right: 70px;
	z-index: 10;
	height: 20px;
  width: auto;
  cursor: pointer;	
}
@media screen and (max-width: 760px){
  #openfullscreen{
    display: none;
  }
}
.embed-responsive {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# EVENTS SECTION
--------------------------------------------------------------*/
.events-form{
  background-color: var(--black);
  padding: 20px;
}
#single-events .more-posts {
  border-top: none;
}
.contact-events{
	background-color: var(--black);
}
/*--------------------------------------------------------------
# VIDEOS PAGE
--------------------------------------------------------------*/
.video-box{
  position: relative;
}
.video-control{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.video-control:hover{
  cursor: pointer;
}
.videos-wrapper{
/* 	max-width: 900px; */
	margin: 0 auto;
}
.mejs-container{
  margin-bottom: 20px;
}
/*--------------------------------------------------------------
# QUOTES SECTION
--------------------------------------------------------------*/
#quotes{
  background-color: var(--yellow);
}
.quote-box {
  max-width: 800px;
  text-align: left;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  justify-content: center;
}
.quote-box img {
  width: 50px;
  margin-right:20px;
  align-self: flex-start;
}
.quote {
  display: flex;
  padding: 0 20px;
}
.quote h1{
  font-size: 20px;
  line-height: 1.5rem;
}
.quote-box p {
  margin:20px 0 0 90px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3em;
}

@media screen and (max-width: 768px){
	.quote h1{
	  font-size: 20px;
	  line-height: 1.5rem;
	}
	.quote{
		flex-direction: column;
	}
	.quote-box p {
	  margin-left:20px;
	  font-size: 16px;
	}
	.quote-box img {
	  width: 30px;
	  margin-bottom: 20px;
	}
}

/*--------------------------------------------------------------
# VIDEO BOTTOM SECTION
--------------------------------------------------------------*/
#video-bottom {
  position: relative;
  height:800px;
  width: 100vw;
  overflow: hidden !important;
  z-index: 10;
  padding:15px;  
}
@media screen and (max-width: 760px){
  #video-bottom {
    height:500px;
  }
}
/*--------------------------------------------------------------
# MAILCHIMP HOME
--------------------------------------------------------------*/
.mailchimp-home-container{
  max-width: 1200px;
  margin: 0 auto;
}
.mailchimp-home{
 background-color: var(--black);
}
.mailchimp-home h2{
  color: var(--white);
}
@media screen and (max-width: 760px){
  .mailchimp-home h2{
    font-size: 22px;
    margin-bottom: 0;
  }
}
.mailchimp-home .mc-field-group input{
  border: 1px solid var(--white);
}
.mailchimp-home .mc-field-group label{
  color: var(--white);
}
/*--------------------------------------------------------------
# CAROUSELS
--------------------------------------------------------------*/
.homepage .slick-track{
  margin-left: 0;
}
.slick-prev:before {
  content: url('../images/arrow-left-black.svg') !important;
}
.slick-next:before {
  content: url('../images/arrow-right-black.svg') !important;
}
.white .slick-prev:before {
  content: url('../images/arrow-left-white.svg') !important;
}
.white .slick-next:before {
  content: url('../images/arrow-right-white.svg') !important;
}

.tile-img {
	position: relative;
  margin-bottom: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: var(--border-radius);
  height: 350px;
  transition: .3s;
  border: 1px solid rgba(0,0,0,0.1);  
}
.tile-box{
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 760px){
  .tile-box{
    text-align: center;
  }
}
.carousel-posts .slick-prev,
.carousel-posts .slick-next {
  top: 170px;
}
#videos-home .carousel-posts .slick-prev,
#videos-home .carousel-posts .slick-next{
  top: 100px;	
}
@media screen and (max-width: 1199px){
	.tile-img {
		height: 290px;
  }
  .carousel-posts .slick-prev,
  .carousel-posts .slick-next {
    top: 140px;
  }
}

.slick-prev, .slick-next {
	height: 50px;
	width: 50px;
}
@media screen and (max-width: 767px){
	.tile-img {
		height: 285px;
	}
	.slick-next {
		right:2px;
	}
	.slick-prev {
    left:2px;
    z-index: 1;
	}
	.slick-slide {
		padding-right: 30px;
		padding-left: 30px;
	}
	.slick-prev:before {
	  max-height: 10px;
	}
	.slick-prev,
	.slick-next {
		width: 35px;
	}
}
/* --------------------
Center quotes vertically 
-----------------------*/
.carousel-quotes .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-on-hover {
	position: absolute;
	bottom: -1px;
	right: -2px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 0;
}
@media screen and (min-width: 760px){
  .tile-box:hover .btn-on-hover{
    opacity: 1;
    visibility: visible;
  }
}

.tile-box a,
.tile-box a:hover,
.tile-box a:visited {
	color: var(--black);
	text-decoration: none;
}
.tile-box a:focus{
	outline: none;
}
.white .tile-box a,
.white .tile-box a:hover,
.white .tile-box a:visited {
	color: var(--white);
}
/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
.page {
	padding-top: 80px;
	padding-bottom: 50px;
}

.page-title{
	padding: 30px 0 50px 0;
}
.page-description{
	padding: 0 0 50px 0;	
}
.page-title a,
.page-title a:hover,
.page-title a:visited {
	color: var(--black);
	text-decoration: none;
}
.page p{
	margin-bottom: 15px;
}
#single-press article p,
#single-ideas article p,
.page-bio article p{
	font-size: 19px;
}
@media screen and (max-width: 767px){
	.page-title{
		padding: 30px 0 30px 0;
		text-align: center;
	}
	.page-title a{
		font-size: 22px;
	}	
}
h1.page-title {
  font-size: 30px;
}
@media screen and (max-width: 760px){
  h1.page-title{
    font-size: 20px;   
  }
}
/*--------------------------------------------------------------
# Single Pages
--------------------------------------------------------------*/
h1.single-page-title{
	padding-bottom: 20px;
	text-align: center;
	font-size: 38px;
	line-height: 1.2em;
}
.single-page-title h1 {
	text-align: center;
	font-size: 38px;
	line-height: 1.2em;
}
.tile-ideas h1{
  font-size: 20px; 
}
.more-posts .tile-ideas h1{
  padding: 0;
}
@media screen and (max-width: 768px){
  .tile-ideas h1{
    font-size: 16px; 
  }
}
.single-page-title-left {
  text-align: left;
}
p.sub-title{
	padding-bottom: 30px;
	text-align: center;
	font-size: 24px;
	line-height: 1.2em;	
}
.single-page h3{
  margin: 10px 0;
}
.single-header-img {
	height: 450px;
	background-position: center ;
	background-size: cover;
	background-repeat: no-repeat;
/*
	border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
*/
}
#single-projects .single-header-img, 
#mc24-page .single-header-img{
  margin: 0 26px 20px; 
}
figure {
	padding-top: 20px;
}
figcaption {
	font-size: 10px;
	font-style: italic;
	padding-bottom: 20px;
}

@media (max-width:600px){
	.single-page h2 {
		font-size: 28px;
	}
	p.sub-title{
		padding-bottom: 30px;
		text-align: center;
		font-size: 18px;
		line-height: 1.2em;	
	}
	.single-header-img {
		height: 210px;
	}
}
/*--------------------------------------------------------------
# MORE POSTS
--------------------------------------------------------------*/
.more-posts {
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.more-posts p{
  margin-bottom: 0;
}
.more-posts h1 {
  padding: 20px 0 20px 0;;
}
@media screen and (max-width: 760px){
  .more-posts {
    text-align: center;
  }
}
/*--------------------------------------------------------------
# SOCIAL SHARE
--------------------------------------------------------------*/
.social-share {
	display: flex;
	margin: 20px 0;
}
.social-share p{
	font-weight: 700;
	padding-right: 10px;
  margin-bottom: 0;
  font-size: 13px;
}
.twitter-share-button {
	margin: 4px 5px 0;
}
@media (max-width:600px){
	.social-share p{
		font-size: 11px;
	}
}

/*--------------------------------------------------------------
# PRESS
--------------------------------------------------------------*/

.dark-bg{
  background-color: var(--gray);
  color: var(--white);
}
.press-publisher-info{
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.press-publisher-info ul{
	display: inline-flex;
	font-size: 10px;
	color: var(--white);
	background-color: var(--black);
	padding: 5px 15px;
  border-radius: var(--border-radius);
  list-style: none;
}
.press-publisher-info li{
  margin-left: 1px;
}
a.link-to-original{
	color: var(--black);
/* 	font-size: 13px; */
	font-weight: 700;	
}
a.link-to-original:hover{
	color: var(--black);
	text-decoration: none;
}
.publisher-link {
  margin-bottom: 30px;
}
.publisher-link img {
	height: 8px;
	width: auto;
	margin-left: 5px;
}
#press-page p{
	margin-bottom: 0;
}
#single-projects .quote-box{
  margin-top: 20px;
}
#single-press hr{
  margin: 35px 0 25px 0;
}
/*
img[class*="wp-image-"]{
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--border-radius);
}
*/
/*--------------------------------------------------------------
# IMAGES
--------------------------------------------------------------*/
#images p{
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# BOOKS
--------------------------------------------------------------*/

.book-info h1 {
  font-size: 22px;
  margin-bottom: 10px;
}
@media screen and (max-width: 760px){
  .book-info h1 {
    font-size: 18px;
  }
}
.yrm-btn-wrapper{
  text-align: left!important ;
}
.yrm-toggle-expand{
  border: none!important;
	font-style: italic!important;
}
.yrm-content{
  color: var(--black)!important;
  font-size: 16px!important;
  line-height: 1.7rem!important;
}
.book-info-box{
  margin:0 18px;
}
.book-image{
  padding-right: 7px;
}
/*--------------------------------------------------------------
# TIMELINE
--------------------------------------------------------------*/
.timeline{
  position: relative;
  min-height:120vh;
  color:var(--white);
  text-align: left;
  background-color: var(--black);
}
.timeline p,
.timeline--mobile p{
  padding-bottom: 5px;
}
.timeline-dates{
  position: absolute;
  left: 50px;
  top: 50px;
  color:var(--white);
  list-style-type: none;
  font-weight: 700;
}
.timeline-date-item {
  opacity: .5;
  transition: .3s;
  transition-timing-function: ease-in-out;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  border-left: 1px solid var(--white);
  font-size: 12px;
}
.timeline-date-item:hover,
.timeline-date-item.selected {
 opacity: 1;
}
.timeline-date-item.selected {
 border-left: 3px solid var(--accent);
 font-size: 16px;
}
.timeline-dates li{
  padding:15px;
}
.timeline-dates li:hover{
  cursor: pointer;
  color: var(--white);
}
.timeline-box{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size:cover;
  background-position: top center;
  background-repeat:no-repeat;
  opacity: 0;
  transition: .5s;
}
.timeline-box.selected{
  opacity: 1;
  padding-bottom: 0;
}
.timeline-box-overlay{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0;
  left: 0;
}
.timeline-info{
  max-width: 1000px;
  position: absolute;
  top: 100px;
  left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
  z-index: 1;
  transition: .6s;
  transition-timing-function: ease-in-out;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

.timeline-box.selected .timeline-info{
  top: 60px;  
}
.timeline-info h1{
  margin-bottom: 10px;
}
.timeline--mobile {
  display: none;
  background-color: var(--black);
  padding: 20px 0 30px;
}
ul.timeline--mobile_copy{
  flex-direction: column;
}
.timeline--mobile li{
  list-style: none;
}


@media screen and (max-width: 760px){
  .timeline--desktop {
    display: none;
  }
  .timeline--mobile {
    display: flex;
  }
}
.accordion{
  color: var(--white);
  padding: 10px 0;
}
.accordion img{
  width: 15px;
  transform: rotate(-225deg);
  transition: .4s;
}
.accordion h2{
  font-size: 20px;
  font-weight: 700;
}
.accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: var(--white);
}
.accordion-box{
  border-bottom: 1px solid #888;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.accordion.selected img{
  transform: rotate(0deg);
}

/* Visual Timeline */

.visual-timeline{
	padding: 100px 0;
		background-color: var(--yellow);
}
.visual-timeline h1,
.visual-timeline button{
	text-align: center;
	display: block;
	margin: 0 auto;
}
.visual-timeline h1{
	margin-bottom: 30px;
}
/*--------------------------------------------------------------
# PODCASTS
--------------------------------------------------------------*/
.podcast-links .btn{
	margin-right: 10px
}

/*--------------------------------------------------------------
# IDEAS
--------------------------------------------------------------*/
.tile-ideas {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  background-color: var(--yellow);
}
h3.idea-category{
  position: absolute;
  top: 50px;
  left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
  color: var(--accent);
  text-transform: uppercase;
  font-family: sans-serif;
  letter-spacing: 3px;
  margin-left: -3px;
  font-weight: 700;
  font-size: 14px;
}
#page-404 {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}
.ideas-info ul{
  background-color: var(--yellow);
  color: var(--black);
}
/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
footer {
  padding: 50px 20px;
  background-color: var(--gray);
  color: var(--white);
  text-align: center;
}
footer .logo {
  font-size: 28px;
}
.footer-nav{
	display: flex;
	justify-content: center;
}
footer .massive-change{
	align-self: flex-start;
}
@media screen and (max-width: 760px){
  footer .logo {
    display: none;
  }
 
  .footer-nav{
	  flex-direction: column;
  }
  footer .massive-change{
		margin-left: 0;
		align-self: center;
	}
}
footer a,
footer a:visited,
footer a:hover {
  text-decoration: none;
  transition: .3s;
  color: var(--white);
}
footer a:hover {
	opacity: .5;
}
footer ul.menu,
.footer-socials{
  font-family: var(--futura);
  display: flex;
  justify-content: center;
  text-align: left;
}
footer li:not(:last-child) {
  margin-right: 30px;
}
footer .sub-menu {
  display: flex;
  flex-direction: column;
  font-family: var(--sans-serif);
  font-size: 12.5px;
}
footer .sub-menu li{
  margin-right: 0;
  margin-top: 5px;
}

hr{
	margin: 0;
	padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
footer hr {
	margin: 20px 0;
}
@media screen and (max-width: 767px){
	footer ul.menu{
		flex-direction: column;
		text-align: center;
	}
	footer .menu li{
 	 	margin: 0;
 	 	padding-bottom: 10px;
 	 	font-size: 16px;
  }
  footer .sub-menu li{
		font-size: 14px;
	}
	footer .sub-menu li:last-child{
		padding-bottom: 0;
  }
  footer .sub-menu li:first-child{
		padding-top: 10px;
	}
	footer hr:first-of-type{
	  display: none;
  }
}
/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/

.search-result-title p{
  font-size: 16px;
  margin-bottom: 0;
}
.search-result-title p:nth-child(1){
  font-size: 16px;
  font-weight: 700;
}
#search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  padding:30px;
  z-index: 100;
  display: none;
  animation: fadein .5s;
}
@media screen and (max-width: 760px){
  #search-modal {
    align-items: flex-start;
    padding-top: 20vh;
  }
}
.search-form {
  display: flex;
  align-items: center;
}
#search-modal input{
  display: inline-flex;
  background: none;
  padding: 0.125rem 12px 0.0625rem;
  font-size: 1rem;
  border: 1px solid var(--white);
  width: 100%;
  display: block;
  -webkit-transition: all 0.28s ease;
  transition: all 0.28s ease;
  box-shadow: none;
  border-radius: var(--border-radius);
  height: 40px;
  color: var(--white);
}
#search-modal button {
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
img.search-go{
  height: 30px;
  width: auto;
}
img.search-close{
  position: absolute;
  right: 30px;
  top: 20px;
  height: 20px;
  width: auto;
}
img.search-close:hover{
  cursor: pointer;
}
#search-results h1{
  margin-top: 40px;
}
.fadein{
  animation: fadein 2s;
  transition-timing-function: ease-in-out;
}
@keyframes fadein{from{opacity:0}to{opacity:1}}
input#desktop-search:focus{
outline: none;
}
/*--------------------------------------------------------------
# CONTACT PAGE
--------------------------------------------------------------*/
.contact-info{
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
}
.contact-info a,
.contact-info p{
	color: #111;
	font-size: 16px;
	margin: 0;
	padding: 0;
	padding-bottom: 15px
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* iPad tweaks */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px){ 
  #bio-home p{
    font-size: 14px;
  }
  .section-title a{
    font-size: 22px;
  }
  .tile-img {
		height: 215px;
  }
  .carousel-posts .slick-prev, .carousel-posts .slick-next {
    top: 100px;
  }
  .project-gallery li {
    height: 30vw;
  }
  .tile-ideas h3{
    font-size: 12px;
  }
  h3.idea-category{
    top: 25px;
  }
  #mobile-overlay{
    align-items: center;
    padding: 15px 100px 0 100px;
  }
  .tile-ideas h1{
    font-size: 14px; 
  }
}

.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-60 {
  margin-top: 60px;
}
.mr-10 {
  margin-right: 10px;
}
.ml-10 {
  margin-left: 10px;
}
@media screen and (max-width: 750px) {
  .mt-30-mbl {
    margin-top: 30px;
  }
  .mt-60-mbl {
    margin-top: 60px;
  }
  .mb-30-mbl {
    margin-bottom: 30px;
  }
}
.mb-15{
	margin-bottom: 15px;
}
.mb-30{
	margin-bottom: 30px;
}
.mt-minus-50 {
  margin-top: -50px;
}
@media screen and (max-width: 768px){
  .mt-minus-50 {
    margin-top: -20px;
  }
}

.mice-type {
  font-size: 10px;
}


body.lock-scroll {
  height: 100vh;
  overflow: hidden;
}


