@charset "UTF-8";
/* CSS Document */

/*@Resuable Global Styles
===================================== */
body {
	background:var(--white);
	padding: 0;
	margin: 0;
	position: relative;
	cursor: default;
    color: var(--medium-gray);
}

p{
   color: var(--medium-gray); 
}

#sectionWrapper{
	width: 100%;
    height: auto;
	padding:4em 4em;
	overflow: hidden;
	position:relative;
	z-index:1;
    background-color: var(--white);
}

#sectionWrapper.remove-top-padding{
	padding:0 4em 4em;
}

#sectionWrapper.remove-bottom-padding{
	padding:4em 4em 0;
}

#fullSectionWrapper{
	width: 100%;
    height: auto;
	padding:0;
    display: block;
	overflow: hidden;
	position:relative;
	z-index:1;
}

.reveal,
.reveal:focus{
    background-color: var(--white) !important;
    border: none !important;
    padding:0 !important;
}

.reveal {
    width: 100%;
    max-width: 100%;
}

img {
	image-rendering: optimizeQuality;
	-ms-interpolation-mode: bicubic;
}

.vertical-align {
	display: -webkit-flex;
	display: flex;
	display: -ms-flexbox;

	-webkit-flex-direction: row;
	flex-direction: row;
	-ms-flex-direction: row;

	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;

	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-pack: justify;
}

.reveal-overlay {
    background-color: rgba(0, 0, 0, 0.9);
}

.box-shadow{
    -webkit-box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.5);
	box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.5);
}

.nice-header-text{
    margin: 0 -1em -0.55em;
}

.top-spacer{
    display: none;
}


.force-opacity{
    transition: all 0.25s ease-in-out;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/*@end Resuable Global Styles
===================================== */


/*@Loader
https://projects.lukehaas.me/css-loaders/
===================================== */
.loading-wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.99;
    background-color: var(--dark-blue);
    z-index: 999999; 
}

/*
.loading-wrapper h5{
    font-family: Oswald, sans-serif;
    color: var(--white) !important;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    
    display: block;
    width:100%;
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
}
*/

 .loading-wrapper h2{
    color: var(--white);
    font-size: clamp(2rem, 4.55vw, 6rem);
    font-weight: 700;
    line-height: 0.875em;
    margin-bottom: 0.125em;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

 .loading-wrapper p{
    color: var(--white);
    font-size: clamp(1.125rem, 2.55vw, 3rem);
}

.loader-text-wrapper{
    width:100%;
    text-align: center;
}

.loader-text{
    display: inline-block;
    margin: auto auto;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: clamp(1.25em, 1.25vw, 2.5em);
    height: clamp(1.25em, 1.25vw, 2.5em);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.loader {
    color: var(--white);
    font-size: clamp(0.01rem, 1vw, 0.275rem);
    display: inline-block;
    /* margin: 0 auto; */
    position: relative;
    
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
    
    top: -1.95em;
    margin-left: 3.55em;
}

.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}

@media only screen and (max-width: 639px) {
    .loader {
        margin-left: 3em;
    }
    
    .loader:before {
        left: -2.5em;
    }

    .loader:after {
        left: 2.5em;
    }
}

@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
/*@end Loader
===================================== */

/* @Primary Navigation
===================================== */
.brand {
    min-width: 250px;
    max-width: 250px;
    width: auto;
    max-width: 100%;
    position: relative;
}

#navWrapper{
	width: 100%;
    padding: 3em 4em 10em;
    position: relative;
    top:0;
    left: 0;
    z-index: 1000;
    background-color: var(--white);
    
    opacity: 1;
    
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.page-template-flex-layouts-work #navWrapper{
    padding: 3em 4em;
}

#navWrapper.fixed-nav,
.page-template-flex-layouts-work #navWrapper.fixed-nav{
    padding: 2em 4em;
    position:fixed;
    -webkit-box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.25);
	box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.25);
}

#mobileNav.nav-up,
#navWrapper.nav-up,
.page-template-flex-layouts-work #navWrapper.nav-up{
    translate: 0 -100%;
}

ul.main-nav{
	list-style: none;
    display: inline-block;
    text-align: center;
    padding: 0;
    margin: 0 0;
    float: right;
}

ul.main-nav li {
	text-align:center;
    font-weight: 700;
    line-height: normal;
    font-size: 1.25rem;
	
	padding:2em 0;
	margin: 0 1.25em;
	position: relative;
	display: inline-block;
}

ul.main-nav li:first-child{
    margin-left: 0;
}

ul.main-nav li:last-child{
    margin-right: 0;
}

ul.main-nav li a,
.home ul.main-nav li.current_page_item a{
    font-size: 1.25rem;
	color:var(--dark-gray);
    font-weight: 300;
	line-height: normal;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    
    
	display: inline-block;
    padding: 0.25em 0;
    position: relative;
	
	 transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

ul.main-nav li a:hover{
    color:var(--hover) !important;
	text-decoration:none;
    opacity: 1;
}

ul.main-nav li.current-menu-item a,
ul.main-nav li.current-page-ancestor a,
ul.main-nav li.current_page_ancestor a,
ul.main-nav li.current_page_item a{
    color:var(--hover);
    font-weight: 600;
	text-decoration:none;
}

#navWrapper li.has-dropdown a{
    padding-right: 1.25em;
}


#navWrapper li.has-dropdown a:after{
    content: "\f107";
    font-family: FontAwesome;
    color:var(--dark-gray) !important;
    font-weight: normal;
    
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}


#navWrapper li.has-dropdown a:hover:after{
    content: "\f106";
    color:var(--hover) !important;
}

#navWrapper li.current-menu-item.has-dropdown a:after,
#navWrapper li.current-page-ancestor.has-dropdown a:after,
#navWrapper li.current_page_ancestor.has-dropdown a:after,
#navWrapper li.current_page_item.has-dropdown a:after{
    color:var(--hover) !important;
}

#navWrapper li.has-dropdown li a:after{
    content: " " !important;
}

ul.main-nav li span{
    display: none;
}
/* @end Primary Navigation
===================================== */


/* @Primary Navigationu Drop Down Menus
===================================== */
#navWrapper ul li ul{
	position:absolute;
	z-index: 1500;
	clear:both;
	
	width:auto;
	height:0;
	overflow: hidden;
	margin:0;
	border-top: none;
	
	opacity:0;
	transition: opacity .25s ease-in-out; 
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out;
}

#navWrapper ul li:hover ul,
#navWrapper ul li ul.has-focus{
	height:auto;
	overflow: visible;
	padding:0.55em 0;
	opacity:1;
    background-color:var(--white);
    line-height: 0;
    border-radius: 8px;
    border: 1px solid var(--borders);
    
	left:-0.55em;
	top: 4.55em;
	
	-webkit-box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.5);
	box-shadow: 5px 5px 10px -6px rgba(0, 0, 0, 0.5);
}


#navWrapper ul ul ul {
    position: relative !important;
    clear: both;
    width: auto;
    height: auto;
    overflow: hidden;
    margin: 0;
    top: 0 !important;
    left: 0 !important;
    opacity: 1;
    background-color: var(--white) !important;
    
    border: none !important;
    -webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
}

#navWrapper ul li.current_page_ancestor ul ul li a,
#navWrapper ul ul ul li a{
    padding-left: 2.55em !important;
}

#navWrapper ul li li{
	float: none;
	padding:0;
	margin:0;
	height: auto;
	text-align:left;
	min-width: 280px;
	top: 0;
}

#navWrapper ul li li.current-page-parent li a,
#navWrapper ul li li.current_page_item ul a,
#navWrapper ul li.current_page_ancestor li a,
#navWrapper ul li.current_page_item li a,
#navWrapper ul li li a{
	display: block;
	padding: 0.65em 1.55em;
	margin:0;
	
	text-align:left;
	color:var(--dark-blue);
	line-height: 1em;
	text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
	
	transition: all .25s ease-in-out; 
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

#navWrapper ul ul ul li a{
    color:var(--gray);
}

#navWrapper ul li li:last-child a{
    border-bottom: none;
}

#navWrapper ul li li.current-page-parent li a:hover,
#navWrapper ul li li a:hover,
#navWrapper ul li li.current_page_item ul a:hover{
	color: var(--light-blue);
    opacity: 0.65;
}

#navWrapper ul li li.current-page-parent a,
#navWrapper ul li li.current_page_item a,
#navWrapper ul li li.current_page_item a,
#navWrapper ul li li.current-page-parent li.current-menu-item a{
    color:var(--light-blue);
}
/* @end Primary Navigation Drop Down Menus
===================================== */


/* @Off Canvas List
===================================== */
#mobileNav{
	width:100%;
	position: fixed;
    top: 0;
    left: 0;
	z-index: 500;
	padding: 1em 1.25em;
    display: none;
    
    background-color: var(--white);
    
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

#mobileMenuWrapper{
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
		
	position:fixed;
	z-index:-400;
	top: 56px;
	height:100%;
	width:100%;
	background: var(--white); 
	opacity:0;
	padding: 0 0 6em;
	
	transition: all .25s ease-in-out; 
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}

#mobileMenuWrapper.hideShow{
	opacity: 1;
    z-index: 400;
}

ul.off-canvas-list {
	list-style-type: none;
	padding: 1em 0;
	margin: 0 0;
	display: block;
    font-size: 18px;
	
	transition: all .25s ease-in-out; 
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
	position: relative;
	z-index: 1;
} 

ul.off-canvas-list li {
	margin: 0;
    line-height: normal;
}


ul.off-canvas-list ul{
	opacity: 1;
	height:auto;
	display: block;
	
	transition: all .25s ease-in-out; 
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}


ul.off-canvas-list li a {
    color: var(--dark-gray);
    font-size: 1.35rem;
	font-weight: 700;
    text-transform: uppercase;
    
    display: block;
    padding: 0.55em 1em;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255,255,255, 0.15);
}



ul.off-canvas-list li a:hover {
	color:var(--hover);
	text-decoration: none;
}


ul.off-canvas-list li ul{
	margin:0;
}

ul.off-canvas-list li li a{
    font-weight: 400;
    font-size: 17px;
    text-transform: none;
    
    padding-left: 2.55em;
}

ul.off-canvas-list li.current-menu-item a,
ul.off-canvas-list li.current-page-ancestor a,
ul.off-canvas-list li.current_page_ancestor a,
ul.off-canvas-list li.current_page_item a,
ul.off-canvas-list li.current-menu-item li a,
ul.off-canvas-list li.current_page_item li a,
ul.off-canvas-list li li a,
ul.off-canvas-list li.current_page_ancestor li a,
ul.off-canvas-list li.current_page_ancestor li.current-page-parent li a,
ul.off-canvas-list li.current_page_ancestor li.current-menu-item li a,
ul.off-canvas-list li li li a,
ul.off-canvas-list li.current_page_ancestor li li a,
ul.off-canvas-list li li li li a, 
ul.off-canvas-list li.current_page_ancestor li li li a{
	color: var(--hover);
    font-weight: bold;
}

ul.off-canvas-list li li li a{
    text-transform: none;
    font-size: 17px;
    
	padding-left: 3.55em;
    background-color: var(--white);
    color: var(--dark-gray);
}

.menu-icon-mobile {
    width: 40px;
    height: 15px;
    margin: 0;
    top: -2px;
    float: right;
    position: relative;
	
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.menu-icon-mobile span{
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--dark-blue);
  borders-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.menu-icon-mobile span:nth-child(1) {
	top: 0px;
}

.menu-icon-mobile span:nth-child(2) {
	top: 8px;
}

.menu-icon-mobile span:nth-child(3) {
	top: 16px;
}

.menu-icon-mobile.open span:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.menu-icon-mobile.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.menu-icon-mobile.open span:nth-child(3) {
	top: 8px;
	
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
/* @end Off Canvas List
===================================== */

/* @eHero
===================================== */
#heroWrapper{
	width: 100%;
    height: auto;
	padding:6em 4em 3.55em;
	position:relative;
	z-index:1;
    display: block;
}

#heroWrapper h1,
#heroWrapper h2{
    color: var(--dark-blue);
    font-size: min(14vw, 300px);
    font-weight: 700;
    line-height: 0.875em;
    margin-bottom: 0;
    left: -0.04em;
    
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

#heroWrapper.increase-top-padding{
    padding-top: 33em;
}

#heroWrapper.increase-bottom-padding{
    padding-bottom: 4.55vw;
}


.page-id-147 #heroWrapper.bg-dark-blue,
.page-template-flex-layouts-work #heroWrapper,
.work-modal #heroWrapper{
    padding-top: 16.875em;
}

.hide-title{
    position: absolute;
    z-index: -1000;
    left:-100% !important;
}

.nice-icon{
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: var(--dark-blue);
    color: var(--white);
}
/* @end Hero
===================================== */

/* @Video
===================================== */
.video-button{
    position: absolute;
    width: 108px;
    height: 108px;
    bottom: 4em;
    left: 4em;
    opacity: 1;
    display:block;
    z-index: 100;
    
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out; 
}

.video-button:hover{
    opacity: 0.65;
}

.playing .play-btn{
    display: none;
}
    
.playing .pause-btn{
    display: block;
}
    
.paused .play-btn{
    display: block;
}
    
.paused .pause-btn{
    display: none;
}

.audio-button{
    position: absolute;
    width: 108px;
    height: 108px;
    bottom: 4em;
    right: 4em;
    opacity: 1;
    display:block;
    z-index: 100;
    
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out; 
}

.audio-button:hover{
    opacity: 0.65;
}

.close-button {
    text-align: center;
    top: 0.75em;
    right: 1em;
    position: fixed;
    width: 40px;
    height: 36px;
    opacity: 1;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.close-button:hover{
    opacity: 0.55;
}

#videoHeroModal {
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-color: transparent !important;
}

#contactModal{
    width: 100%;
    max-width: 100%;
    height: 100%; 
    background-color: var(--light-gray) !important;
}

.work-modal{
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.video-container{
    width:100%;
}

.flex-video{
    width: 100%;
}

.parallax-video{ 
    width:100%;
    height: 80vh;
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 3.55em;
    
    -webkit-box-shadow: inset 0px 0px 20px -10px rgba(0,0,0,0.3);
    -moz-box-shadow: inset 0px 0px 20px -10px rgba(0,0,0,0.3);
    box-shadow: inset 0px 0px 20px -10px rgba(0,0,0,0.3);
}

.parallax-video video{ 
    position: fixed;
    left: 0;
    top: 1em;
    right: 0;
    z-index: -9999;
    object-fit:cover;
    width:100%;
    height:100%;
}

.video-container-full{ 
    width:100%;
    min-height: 80vh;
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: -1em;
/*    padding-bottom: 3.55em;*/
}

.video-container-full video{ 
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    z-index: 1;
    object-fit:cover;
    width:100%;
    height:100%;
}

.responsive-embed, 
.flex-video {
    margin-bottom: 0;
}

.video-thumbnail{
    position: relative;
    top:0;
    left:0;
    z-index: 50;
    opacity: 1;
    width:100%;
    
    transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
}

.video-thumbnail.hide{
    opacity: 0;
    z-index: -100;
    
    transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
    -webkit-transition: all 2s ease-in-out;
}

.modal-content-wrapper:before{
    content: " ";
    text-align: center;
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: bold;
    background-image: url("../images/loader-spinner.gif");
    background-position: center center;
    background-size: 600px 315px;
    background-repeat: no-repeat;
    
    padding: 10vh 6vw;
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    color: var(--dark-blue);
}

#fullSectionWrapper{
    background-color: var(--white);
}
/* @end Video
===================================== */

/* @Two Column
===================================== */
.content-wrapper{
    display: block;
    width:100%;
    padding-top: clamp(1.125rem, 6.75vw, 4.75em);
    padding-bottom: clamp(3.5rem, 6.75vw, 7.75em);
    padding-left: clamp(3.125rem, 6.55vw, 6.25em);
    padding-right: clamp(3.125rem, 6.55vw, 6.25em);
    color: var(--white);
}

.content-wrapper p,
.content-wrapper li{
    color: var(--white);
}

.expertise-list {
    margin: 0;
}

.expertise-list li{
    font-weight: 700;
    margin-bottom: 0.0125em;
    line-height: 1em;
    font-size: clamp(1.35rem, 2.85vw, 2.55rem);
    list-style: circle;
}

.column-image{
    opacity: 0;
    width:100%;
}

.bg-column-image{
    width:100%;
    height:100%;
}
/* @end Two Column
===================================== */

/* @Brands
===================================== */
.tabs-content.vertical {
    border: none;
    background: transparent;
    color: var(--dark-gray);
}

.tabs-panel {
    padding: 0;
}

.tabs {
    margin: 0;
    border: none;
    background: transparent;
}

.tabs-title > a {
    padding: 0;
    font-size: 1.87rem;
    color: var(--white) !important;
    opacity: 1;
}

.tabs-title > a:hover {
    background: transparent;
    color: var(--white) !important;
    opacity: 0.5;
}

.tabs-title > a:focus, 
.tabs-title > a[aria-selected='true'] {
    background: transparent;
    color: var(--white) !important;
    font-weight: 700;
}

.accordion {
    background: transparent;
    margin: 0;
}

.accordion-item{
    margin-bottom: 0;
    list-style: none;
}

.accordion-item:first-child a {
    padding-top: 0.75em;
}

.accordion-item:last-child a{
    padding-bottom: 0.75em;
}

.accordion-title {
    padding: 0.55rem 1.55rem;
    border: none;
    background-color: var(--orange);
    border-bottom: 0;
    font-size: 1.35rem;
    color: var(--white) !important;
    opacity: 1;
}

.accordion-title::before {
    margin-top: -0.75rem;
    content: "+";
    font-size: 1.55rem;
}

.accordion-title:hover, 
.accordion-title:focus {
    background-color: var(--orange);
    opacity: 0.5;
}

.accordion-content {
    display: none;
    padding: 1.55rem 1.55rem 0;
    border: none;
    border-bottom: 0;
    background-color: var(--alt-gray);
    color: var(--dark-gray);
}

:last-child:not(.is-active) > .accordion-title,
:last-child > .accordion-content:last-child {
    border-bottom: none;
}

.accordion-content img{
    max-width: 75%;
    margin: 0 auto;
    display: inline-block;
}

.is-active > .accordion-title{
    font-weight: 700;
}
/* @end Brands
===================================== */

/* @Team
===================================== */
.team-wrapper{
    margin-bottom: 6.75em;
/*    max-height: 700px;*/
    overflow: hidden;
}

.team-wrapper h3.name {
    font-size: 6.25rem;
    color: var(--orange);
    margin-bottom: 0;
}

.team-wrapper h3.title {
    font-size: 6.25rem;
    color: var(--dark-blue);
    margin-bottom: 0.125em;
}

.team-photo{
    width:100%;
    opacity: 0;
}

.content-wrapper-team{
    display: block;
    width:100%;

    max-height: calc(700px - 5.75em);
    overflow-y: scroll;

    padding: 5.75em 10em 5.75em;
    
    color: var(--dark-gray);
}

.content-wrapper-team p{
    font-size: clamp(1.125rem, 2.55vw, 2.35rem);
}

#fullSectionWrapper .team-wrapper:last-child{
    margin-bottom: 0;
}

.bg-team{
    background-color: var(--dark-blue);
    max-width: 690px;
    
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/* @end Team
===================================== */


/*Grid Row
===================================== */
.grid-wrapper{
    margin-bottom: 0;
}

.grid-card{
    position: relative;
    z-index: 1;
    width:100%;
    height: auto;
    text-align: center;
    margin-bottom: 0;
    cursor: pointer;
}

.grid-card:focus{
    outline: 1px dashed var(--dark-blue) !important;
    outline-offset: 2px;  
}

.grid-card img{
    width:100%;
}

.grid-hover-wrapper{
    width:100%;
    height:100%;
    padding: 2em;
    opacity: 0;
    background-color: rgba(0,0,0,0.9);
    
    position: absolute;
    z-index: 10;
    
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}

.grid-hover-wrapper h3{
    font-size: 5.125rem;
    margin-bottom: 0.125em;
    
    transition: all .5s ease-in-out;
    transform: translateY(-0.125em);
}

.grid-hover-wrapper p{
    font-weight: 300;
    font-size:3rem;
    line-height: 1em;
    
    transition: all .5s ease-in-out;
    transform: translateY(0.125em);
}

.grid-card:hover .grid-hover-wrapper h3,
.grid-card:hover .grid-hover-wrapper p{
    transform: translateY(0);
}

/*.grid-card:focus .grid-hover-wrapper,*/
.grid-card:hover .grid-hover-wrapper{
    opacity: 1;
}

.grid-card:active .grid-hover-wrapper{
    opacity: 0;
}

.image-row img{
    width: 100%;
}

.grid-mobile-title{
    text-align: left;
    color:var(--white);
    
    display: none;
    width:100%;
    background-color:rgba(35,35,35,0.85);
    padding:0.75em 1.65em;
    
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 20;
}

.grid-mobile-title h3 {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    margin-bottom: 0.1em;
}

.grid-mobile-title p {
    font-size: 1.05rem;
}

/*@end Grid Row
===================================== */

/*@Slider
===================================== */

.glide__slide{
    margin-bottom: -10px;
}

.glide__bullets{
    bottom: 80px;
}


.glide__bullet{
  	width: 18px;
  	height: 18px;
  	background: var(--orange);
    opacity: 1;
  	border: none ;
  	border-radius: 50%;
    cursor: pointer;
    box-shadow: none;
    margin: 0 0.35em;
  
  	transition: all .25s ease-in-out; 
	-moz-transition: all .25s ease-in-out;
	-webkit-transition: all .25s ease-in-out;
}


.glide__bullet:hover {
    background: var(--orange);
    border:none;
    opacity: 0.5;
}

.glide__bullet.glide__bullet--active {
    background: var(--orange);
    border:none;
    opacity: 0.5;
}

.glide {
    cursor: auto;
}

.brands-slider .glide{
    display: flex;
}

.brands-slider .glide__track{
    width:60%;
    display: inline-block;
    padding: 3.75em;
}

.brands-slider .glide__bullets{
    width:40%;
    position: relative;
    z-index: 2;
    top:0;
    bottom: inherit;
    left: 0;
    display: inline-block;
    padding: 5.75em 2em 5.75em 5.75em;
    
    list-style: none;
    transform: none;
    
    color: var(--white);
}

.brands-slider .glide__bullet {
    width: 100%;
    min-height: 1em;
    height: auto;
    display: block;
    clear: both;
    background-color: transparent;
    margin-bottom: 0.25em;
    
    font-size: 2.85rem;
    line-height: 1em;
    white-space: nowrap;
   
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.brands-slider .glide__bullet:last-child {
    margin-bottom: 0;
}

.brands-slider .glide__slide{
   text-align: center; 
}

.brands-slider .glide__bullet.glide__bullet--active {
    background: var(--orange);
    border:none;
    opacity: 1;
    font-weight: 700;
}

.brands-image {
    max-width: 80%;
    margin-left: -14%;
}

.brands-slider .glide__slides {
    transform: translate3d(0, 0, 0) !important;
    height: 100%;
}

.brands-slider .glide__slide {
    position: absolute;
    top: 0;
    left: 0;
    order: 2;
    opacity: 0;
    transition: opacity 1250ms ease-in-out;
}

.brands-slider .glide__slide.glide__slide--active {
    position: relative;
    order: 1;
    opacity: 1;
    z-index: 1;
    height: 100%;
}
/*@end Slider
===================================== */

/*@Screen Saver
===================================== */
#sectionWrapper.screensaver{
    padding-left:8em;
    margin-bottom: 1em;
}
    
.mobile-phone {
    text-align: right;
}

@media only screen and (min-width: 1921px) {
   .mobile-phone {
        text-align: left;
    }
}
    
.mobile-phone img{
    margin-top: -8%;
}
    
.video-wrapper{
    border: 3em solid var(--white);
    border-radius: 1.55em;
        
        
    box-shadow: 0px 0px 60px 0px rgba(0,0,0,0.24);
    -webkit-box-shadow: 0px 0px 60px 0px rgba(0,0,0,0.24);
    -moz-box-shadow: 0px 0px 60px 0px rgba(0,0,0,0.24);
}

.margin-bottom{
    margin-bottom: 1em;
}
    
@media only screen and (max-width: 1440px) {
    #sectionWrapper.screensaver{
        padding-left:6em;
    }
}
    
    
    
@media only screen and (max-width: 1280px) {
    #sectionWrapper.screensaver{
        padding-left:5em;
    }
        
    .video-wrapper{
        border: 1.55em solid var(--white);
    } 
}
    
@media only screen and (max-width: 880px) {
    .video-wrapper{
        
        border: 12px solid var(--white);
        overflow: hidden;
        border-radius: 0.75em;
    } 
        
    #sectionWrapper.screensaver{
        padding: 2.125em 1.55em 1em 2.25em;
    }
        
    .mobile-phone {
        text-align: right;
    }
        

    .mobile-phone img{
        margin-top: -8px;
         max-width: 90%;
    }
}

@media only screen and (max-width: 639px) {
    .mobile-phone img{
        max-width: 68%;
    } 
}
/*@end Screen Saver
===================================== */
/* @Footer
===================================== */
#footerWrapper{
	width:100%;
	padding: 19.375em 4em 11.875em;
	position:relative;
	z-index:1;
	overflow: hidden;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

#footerWrapper a:focus{
    outline: 1px dashed var(--blue) !important;
}

#footerWrapper p {
    color: var(--dark-gray);
    font-weight: 200;
}
/* @end Footer
===================================== */
@media only screen and (max-width: 1850px) {
    .brands-slider .glide__track{
        width:57%;
    }
    
    .brands-slider .glide__bullets {
        width: 43%;
    }
    
    .brands-slider .glide__bullet {
        font-size: 2.75rem;
    }
}

@media only screen and (max-width: 1680px) {
    #navWrapper {
/*        padding-bottom: 8em;*/
        padding: 2em 4em 8em;
    }
    
    #navWrapper.fixed-nav, 
    .page-template-flex-layouts-work #navWrapper.fixed-nav {
        padding: 1.55em 4em;
    }
    
    #footerWrapper{
        padding: 14.375em 4em 8.875em;
    }
    
    .content-wrapper-team {
        padding: 5.75em 6em 5em;
    }
    
    .page-id-147 #heroWrapper.bg-dark-blue,
    .page-template-flex-layouts-work #heroWrapper,
    .work-modal #heroWrapper{
        padding-top: 12.5em;
    }
    
    #heroWrapper.increase-top-padding {
        padding-top: 25em;
    }
    
    .brand {
        min-width: 200px;
        max-width: 200px;
    }
    
    .bg-team{
        max-width: 550px;
    }
    
    .brands-slider .glide__track{
        width:56%;
    }
    
    .brands-slider .glide__bullets {
        width: 44%;
    }
    
    .brands-slider .glide__bullet {
        font-size: 2.6875rem;
    }
}

@media only screen and (max-width: 1580px) {
    .brands-slider .glide__track{
        width:55%;
    }
    
    .brands-slider .glide__bullets {
        width: 45%;
    }
    
    .brands-slider .glide__bullet {
        font-size: 2.5875rem;
    }
}

@media only screen and (max-width: 1480px) {
    .grid-hover-wrapper h3{
        font-size: 3.95rem;
    }

    .grid-hover-wrapper p{
        font-size:2.25rem;
    }
    
   .brand {
        min-width: 150px;
        max-width: 150px;
    }
    
    .video-button{
        width: 82px;
        height: 82px;
        
        left: 3.125em;
    }

    .linkedin-logo{
        max-width: 35px;
    }
    
    #sectionWrapper {
        padding: 3.125em;
    }
    
    #navWrapper{
        padding: 3.125em 3.125em 8em;
    }
    
    #heroWrapper{
        padding: 1.25em 3.125em 2em;
    }
    
    #footerWrapper{
        padding: 14.375em 3.125em 8.725em;
    }
    
    #sectionWrapper.remove-top-padding {
        padding: 0 3.125em 3.125em;
    }
    
    .nice-you{
        margin: 12.8125em 0 0 3.125em ;
    }

    .nice-you img{
        width: calc(100% - 5em);
        max-width: 780px;
    }

    .form-wrapper {
        margin-top: 4.5625em;
        padding: 3.125em;
    }
    
    ul.main-nav li a,
    .home ul.main-nav li.current_page_item a{
        font-size: 1rem;
    }
        
    .brands-slider .glide__bullets{
        padding: 4em 2em 4em 4em;
    }

    .brands-slider .glide__bullet {
        min-height: 28px;
        font-size: 2.25rem;
    }
    
    .bg-team{
        max-width: 500px;
    }   
}

@media only screen and (max-width: 1280px) {
    
    #navWrapper.fixed-nav, .page-template-flex-layouts-work #navWrapper.fixed-nav {
        padding: 1em 4em;
    }
    
    .brands-slider .glide__bullets{
        padding: 3em 2em 3em 3em;
    }

    .brands-slider .glide__bullet {
        min-height: 24px;
        font-size: 2rem;
    }
    
    .bg-team{
        max-width: 450px;
    }
    

    .brands-slider .glide__track{
        width:55%;
    }
    
    .brands-slider .glide__bullets {
        width: 45%;
    }
    
    .brands-image {
        margin-left: -19%;
    }
}

@media only screen and (max-width: 1280px) {
    #navWrapper {
        padding: 1em 3.125em 3em;
    }
}

@media only screen and (max-width: 1080px) {
     .grid-hover-wrapper h3{
        font-size: 3rem;
    }

    .grid-hover-wrapper p{
        font-size:1.75rem;
    }
    
    .brand {
        min-width: 135px;
        max-width: 135px;
    }
    
     .video-button{
        width: 60px;
        height: 60px;
        
        left: 2.375em;
    }
    
    
    .linkedin-logo{
        max-width: 26px;
    }
    
    #sectionWrapper {
        padding: 2.375em;
    }
    
    #sectionWrapper.remove-top-padding {
        padding: 0 2.375em 2.375em;
    }
    
    #sectionWrapper.remove-top-bottom {
        padding: 2.375em 2.375em 0;
    }
    
    #navWrapper{
        padding: 2.375em 2.375em 6em;
    }
    
    #heroWrapper{
        padding:5em 2.375em 2em;
    }
    
    #footerWrapper{
        padding: 10.9em 2.375em 6.625em;
    }
    
     #heroWrapper.increase-top-padding {
        padding-top: 18.625em;
    }
    
    .nice-you{
        margin: 9.625em 0 0 2.375em;
    }

    .nice-you img{
        width: calc(100% - 5em);
        max-width: 586px;
    }

    .form-wrapper {
        margin-top: 2.6875em;
        padding: 2.375em;
    }
    
    .page-id-147 #heroWrapper.bg-dark-blue,
    .page-template-flex-layouts-work #heroWrapper,
    .work-modal #heroWrapper{
        padding-top: 9.375em;
    }
    
    .content-wrapper-team {
        max-height: calc(500px - 4.55em);
        padding: 4.55em 4.55em 4em;
    }
    
    ul.main-nav li a,
    .home ul.main-nav li.current_page_item a{
        font-size: 0.875rem;
    }
    
    .bg-team{
        max-width: 400px;
    }
    
     .brands-slider .glide__track{
        width:50%;
    }
    
    .brands-slider .glide__bullets {
        width: 50%;
    }
    
     .brands-image {
        margin-left: -23%;
    }
    
    .brands-slider .glide__bullet {
        font-size: 1.875rem;
    }
    
}

@media only screen and (max-width: 1180px) {
     .brands-slider .glide__bullet {
        font-size: 1.775rem;
    }
}

@media only screen and (max-width: 920px) {
     .brands-slider .glide__bullet {
        font-size: 1.575rem;
    }
    
    .page-id-147 #heroWrapper.bg-dark-blue,
    .page-template-flex-layouts-work #heroWrapper, 
    .work-modal #heroWrapper {
        padding-top: 6.55em;
    }
}

@media only screen and (max-width: 880px) {
     .brands-slider .glide__bullet {
        font-size: 1.275rem;
    }
    
    #heroWrapper {
        padding: 3em 2.375em 1.55em;
    }
    
     #navWrapper{
        display: none;
    }
    
    #mobileNav{
        display: block;
    }
    
    .top-spacer {
        display: block;
        width: 100%;
        height: 10em;
        background-color: var(--white);
    }
	
	.modal-content-wrapper:before{
         background-size: 300px 158px;
    }
}

@media only screen and (max-width: 639px) {
	html{
		height: 100%;
		width: 100%;
	}
    
    .add-bottom-margin{
        margin-bottom: 2em;
    }
    
    .brand{
        width: 100px;
        min-width: inherit;
        margin-top: 0;
        top: -2px;
    }
    
    .video-button {
        width: 40px;
        height: 40px;
        left: 1.5em;
        bottom: 1.5em;
    }
    
    #heroWrapper.increase-top-padding {
        padding-top: 6em;
    }
    
    .page-id-147 #heroWrapper.bg-dark-blue,
    .page-template-flex-layouts-work #heroWrapper, 
    .work-modal #heroWrapper{
        padding-top: 5em;
    }
    
    #heroWrapper.bg-dark-blue {
        padding-bottom: 1.75em;
    }
    
    #heroWrapper,
	#sectionWrapper,
    .content-wrapper-team {
        padding: 2.375em 1.55em 1.55em;
    }
    
    #sectionWrapper.remove-top-padding{
        padding: 0 1.55em 1.55em;
    }
    
    #sectionWrapper.remove-bottom-padding{
        padding: 2.375em 1.55em 0;
    }
    
    #footerWrapper{
        padding: 2.375em 1.55em 6em;
    }
    
    #footerWrapper input.email-newsletter{
        max-width: 100%;
        font-size: 1.25rem !important;

    }
    
    .team-wrapper{
        margin-bottom: 3em;
        max-height: inherit;
        overflow: visible;
    }
    
    .content-wrapper-team{
        max-height: inherit;
        overflow-y: visible;
    }
    
    .bg-team{
        max-width:100%;
        background-image: none !important;
        text-align: center;
    }
    
    .team-photo{
        opacity: 1;
    }
    
    .nice-header-text {
        margin: 0 -0.35em;
    }
    
    .nice-you{
        margin: 8em 0 0 2em;
    }
    
    .nice-you img{
        width: calc(100% - 4em);
    }

    .form-wrapper {
        margin-top: 2em;
        padding: 2em;
    }
    
    
    input:not([type]), input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], textarea {
        font-size: 1rem !important;
        padding: 0.55em 0.75em !important;
    }

    .nf-form-content button, 
    .nf-form-content input[type=button], 
    .nf-form-content input[type=submit], 
    input[type=button], 
    input[type=submit]{
        font-size: 1.25rem !important;
        padding: 0.55em 1em;
    }

    .column-image{
        opacity: 1;
    }

    .bg-column-image{
        background-image: none !important;
    }
    .glide__bullets {
        bottom: 10px;
    }
    
    
    .glide__bullet{
        width: 10px;
        height: 10px;
    }
    
    .vertical-align{
        display:inline-block;
    }
    
    .grid-card .vertical-align {
        display: -webkit-flex;
        display: flex !important;
        display: -ms-flexbox;
    }
    
    .nice-icon {
        -webkit-text-stroke-width: 1.25px;
    }
    
    .grid-card:hover .grid-hover-wrapper{
        opacity: 0 !important;
    }

    .grid-mobile-title{
        display: inline-block;
    }
}
