@font-face {
	font-family: 'Cerebri Medium';
	src: url('/fonts/cerebri-sans-medium.eot');
	src: url('/fonts/cerebri-sans-medium.eot?#iefix') format('embedded-opentype'),
		url('/fonts/cerebri-sans-medium.woff2') format('woff2'),
		url('/fonts/cerebri-sans-medium.woff') format('woff'),
		url('/fonts/cerebri-sans-medium.ttf') format('truetype'),
		url('/fonts/cerebri-sans-medium.svg#cerebri-sans-medium') format('svg');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Cerebri Light';
	src: url('/fonts/cerebri-sans-light.eot');
	src: url('/fonts/cerebri-sans-light.eot?#iefix') format('embedded-opentype'),
		url('/fonts/cerebri-sans-light.woff2') format('woff2'),
		url('/fonts/cerebri-sans-light.woff') format('woff'),
		url('/fonts/cerebri-sans-light.ttf') format('truetype'),
		url('/fonts/cerebri-sans-light.svg#cerebri-sans-light') format('svg');
	font-weight: 300;
	font-style: normal;
}

@font-face {
    font-family: 'CanelaWeb-Thin';
    src: url('/fonts/CanelaWeb-Thin.eot');
    src: url('/fonts/CanelaWeb-Thin.eot?#iefix') format('embedded-opentype'),
        url('/fonts/CanelaWeb-Thin.woff2') format('woff2'),
        url('/fonts/CanelaWeb-Thin.woff') format('woff'),
        url('/fonts/CanelaWeb-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

a{
	text-decoration: none!important;
	color: inherit!important;
}

body{
	margin: 0px;
	padding: 0px;
	background: #1e2f38;
	opacity: 0;
	-webkit-transition: all 3000ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 3000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.leftData{
	display: none!important;
}

.rightData{
	display: none!important;
}

.container{
    width: 100%;
    height: 100vh;
}

.pageContainer{
	display: flex;
    flex-wrap: wrap;
    background: #000;
}

.pageBlock{
	width: 50vw;
    flex-basis: 50vw;
    height: 100vh;
    position: relative;
}

.pageBlock.calendar{
	z-index: 999999999;
}

.fullWidth{
	width: 100vw;
    flex-basis: 100vw;
    position: relative;
    padding: 4vw 0;
}

.textWrapper{
    position: absolute;
    text-align: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 59%;
    font-size: 0.9vw;
    letter-spacing: 0.01em;
    line-height: 1.3vw;
    font-family: 'CanelaWeb-Thin';
    max-width: 730px;
}

.textWrapper h2{
	font-family: 'CanelaWeb-Thin';
    text-align: center;
    margin-bottom: 4vw;
    letter-spacing: 0.2em;
    font-size: 1.5vw;
    line-height: 1.9vw;
    font-weight: 100;
}

.fullWidth h2{
	font-family: 'CanelaWeb-Thin';
    text-align: center;
    margin: 0;
    letter-spacing: 0.2em;
    font-size: 1.5vw;
    line-height: 1.9vw;
    font-weight: 100;
}

.ctaButton{
	font-family: 'CanelaWeb-Thin';
	background: #000;
    color: #FFF;
    text-align: center;
    width: 9vw;
    padding: 0.5vw;
    border-radius: 10vw;
    margin: auto;
    margin-top: 5vw;
    letter-spacing: 0.2em;
    font-size: 0.8vw;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s linear;
    border: 1px solid #000;
}

.ctaButton:hover{
	background: none;
    color: #000;
    border: 1px solid #000;
}

.ctaButton.inverted{
	background: #FFF;
	color: #000;
}

.ctaButton.inverted:hover{
	background: #000000;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.checkContainer {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: color 0.5s linear;
    height: 0px!important;
    padding: 0;
}

input[type="checkbox"] {
    margin-right: 10px;
}

.checkContainer .checkmark:after {
    left: 5px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkContainer input:checked ~ .checkmark:before{
    display: block;
    opacity: 1;
}

.checkmark {
    position: absolute;
    top: -2.7vw;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #FFF;
}

.checkmark:before {
	opacity: 0;
    content: '';
    background-color: #000;
    position: absolute;
    left: 4px;
    top: 4px;
    width: 8px;
    height: 8px;
    transition: opacity 0.35s linear;
}

.checkMessage{
    margin-left: 3vw;
    letter-spacing: 0.2em;
    font-size: 0.7vw;
    line-height: 1vw;
    padding-bottom: 1vw;
}

input[type="checkbox"]{
	display: none;
}

.fullWidth .ctaButton{
    margin-top: 3vw;
}

body.fadeIn{
	opacity: 1;
}

.leftContainer{
	left: 0px;
    width: 50%;
    height: 100vh;
    position: absolute;
    overflow: hidden;
}

.rightContainer{
	right: 0px;
    width: 50%;
    height: 100vh;
    position: absolute;
    overflow: hidden;
}

.image{
	position: absolute;
	width: 50vw;
	height: 100vh;
	background-position: center center;
	background-size: cover;
	-webkit-transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
	transition:         all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.leftContainer .nextImage{
	transform:translateY(100%);
}

.leftContainer .currentImage{
	transform:translateY(0%);
}

.leftContainer .prevImage{
	transform:translateY(-100%);
}

.rightContainer .nextImage{
	transform:translateY(-100%);
}

.rightContainer .currentImage{
	transform:translateY(0%);
}

.rightContainer .prevImage{
	transform:translateY(100%);
}

.logo{
	position: absolute;
	z-index: 1;
	top: 50%;
    width: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav{
	position: fixed;
	z-index: 999;
	top: 30px;
	right: 50px;
    width: 35px;
    height: 35px;
	cursor: pointer;
}

.cal{
	position: fixed;
	z-index: 999;
	top: 30px;
	right: 100px;
    width: 35px;
    height: 35px;
	cursor: pointer;
}

.close{
	position: fixed;
	z-index: 999;
	top: 30px;
	right: 50px;
	width: 35px;
    height: 35px;
	display: none;
}

.calClose{
	position: fixed;
	z-index: 999;
	top: 30px;
	right: 100px;
	width: 35px;
    height: 35px;
	display: none;
}

h1{
	font-family: "CanelaWeb-Thin";
    font-weight: normal;
    cursor: pointer;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    z-index: 1;
    color: #000;
    font-weight: 100;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    font-size: 2vw;
    line-height: 2.8vw;
}

.overlay{
	width: 100vw;
	height: 100vh;
	background: #d8dee9;
	position: absolute;
	z-index: 3;
	top: 0px;
	opacity: 0;
	transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.calOverlay{
	width: 100vw;
	height: 100vh;
	background: #545861;
	position: absolute;
	z-index: 3;
	top: 0px;
	opacity: 0;
	transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.overlay .overlayRight svg{
    position: absolute;
    height: 80%;
    left: 50%;
    top: 50%;
    max-width: 70%;
    transform: translate(-50%,-50%);
    max-height: 700px;
}

.overlay .overlayLeft svg{
    position: absolute;
    height: 50%;
    left: 25%;
    top: 50%;
    max-width: 50%;
    transform: translate(-50%,-50%);
}

.overlay.open{
	opacity: 1;
    pointer-events: all;
    z-index: 99;
}

.calOverlay.open{
	opacity: 1;
    pointer-events: all;
}

#burger{
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

#burger .icon{
	width: 22px;
	height: 6px;
	border: 2px solid #FFF;
	border-radius: 10px;
	transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

#burger:hover .icon{
	background: #FFF;
}

#burger.open .icon{
	width: 6px;
	height: 22px;
}

#burger.open:hover .icon{
	background: #FFF;
}

nav{
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 2;
	top: 0px;
	left: 0px;
	background: #000;
	transition: opacity 0.5s linear;
	opacity: 0;
	pointer-events: none;
}

nav.open{
	opacity: 1;
	pointer-events: all;
}

nav .logo{
	position: fixed;
    z-index: 1;
    top: 38px;
    width: 14%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.page-template-our-story .logo{
	position: fixed;
    z-index: 1;
    top: 38px;
    width: 14%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
}

.page-template-our-story .logo .cocochiFill{
	fill: #000;
}

.menuItems{
	color: #FFF;
}

.menuItems ul{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

nav ul{
	margin: 0px;
	padding: 0px;
    z-index: 999;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    min-width: 90%;
    list-style: none;
    overflow: hidden;
    text-align: center;
}

nav li {
    position: relative;
    width: 100%;
    font-size: 1.8vw;
    line-height: 3.6vw;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0px;
    font-family: "CanelaWeb-Thin";
    font-weight: normal;
    cursor: pointer;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
}

nav li+li{
	padding-top: 30px;
}


nav li a{
	text-decoration: none;
	color: inherit;
}

nav .socialIcons{
	display: flex;
	bottom: 40px;
}

nav .socialIcons .socialIcon{
	margin: 0px 10px;
}

/* ------------------------------------ CALENDAR ------------------------------------ */

.bigCalendarWrap{
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    height: 100vh;
    width: 28vw;
    max-width: 500px;
}

#bigCalendar .clndr-table{
    padding: 20px;
    color: #FFF;
    width: 100%;
    bottom: 0px;
    height: 337px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
}

#bigCalendar .clndr-table .header-day{
	width: 45px;
	margin-right: 4px;
	text-align: center;
    height: 45px;
    font-family: 'Cerebri Medium';
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 100;
}

#bigCalendar .clndr-table .day{
	width: 45px;
	margin-right: 4px;
	text-align: center;
	font-family: 'Cerebri Light';
    font-size: 15px;
    line-height: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 100;
}

#bigCalendar .clndr-table .past{
	color:#bfbfbf;
}

#bigCalendar .clndr-table .day-contents{
    width: 46px;
    height: 31px;
    border-radius: 50px;
    margin: auto;
    padding-top: 19px;
    padding-left: 4px;
    margin-top: 10px;
}

#bigCalendar .clndr-table .header-day:nth-child(7){
	margin-right: 0px;
}

#bigCalendar .month{
    color: #FFF;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Cerebri Light';
    font-size: 17px;
    line-height: 14px;
    letter-spacing: 0.2em;
    float: left;
    width: 100%;
    margin-top: -30px;
}

#bigCalendar .clndr-controls {
    margin: auto;
    margin-top: 55px;
}

#bigCalendar .clndr-control-button{
	width: 50px;
    height: 50px;
    border-radius: 40px;
    margin-left: 35px;
}

#bigCalendar .clndr-previous-button{
	background: url('/images/leftNavArrow.svg');
    top: 7px;
    left: 5px;
    width: 36px;
    height: 36px;
    background-size: contain;
    position: relative;
}

#bigCalendar .clndr-next-button{
	background: url('/images/rightNavArrow.svg');
    top: 7px;
    left: 9px;
    width: 36px;
    height: 36px;
    background-size: contain;
    position: relative;
}

#bigCalendar .clndr-control-button.rightalign {
    right: 35px;
    margin-top: -50px;
    float: right;
    margin-right: 35px;
}

#bigCalendar .event .day-contents {
    background: #ffffff;
    color: #545761;
    cursor: pointer;
}

#bigCalendar .past.event .day-contents{
	background: #bfbfbf;
}

#bigCalendar .event.selected .day-contents{
	background: #FFF;
	color:#0724fb;
}

#bigCalendar .day-event{
	display: none;
    position: absolute;
    z-index: 9999;
    background: #fff;
    width: 312px;
    height: 140px;
    color: #545861;
    margin-top: -16px;
    margin-left: 33px;
}

#bigCalendar .day-event .event-day{
    position: absolute;
    margin-top: -34px;
    margin-left: -31px;
    color: #545861;
    width: 50px;
    padding-top: 5px;
    height: 45px;
    border-radius: 30px;
    background: #FFF;
}

#bigCalendar .day-event .event-day .inner{
    margin-top: 14px;
    margin-left: 3px;
}

#bigCalendar .day-event .event-day-holder{
    position: absolute;
    margin-top: -6px;
    margin-left: -7px;
}

#bigCalendar .day-event .event-type{
    font-size: 12px;
    text-align: left;
    padding-top: 17px;
    padding-left: 17px;
    letter-spacing: 0.2em;
}

#bigCalendar .event-title{
	text-transform: uppercase;
	padding-left: 17px;
    padding-right: 17px;
    text-align: left;
    position: absolute;
    bottom: 17px;
    font-size: 19px;
    line-height: 23px;
}

#bigCalendar .event-link{
    color: #1034f7;
	text-decoration: none;
}

/* ------------------------------------ CALENDAR END ------------------------------------ */


.overlay p{
	position: absolute;
	color:#FFF;
	text-align: center;
	width: 80%;
	left: 10%;
	top: 50%;
	transform: translateY(-50%);
	font-family: 'Cerebri Light';
    -webkit-font-smoothing: antialiased;
	font-size: 25px;
	line-height: 34px;
}

.union{
	font-family: 'UnionRegular';
    -webkit-font-smoothing: antialiased;
}

.socialIcons{
	position: absolute;
	z-index: 3;
	bottom: 50px;
    left: 50%;
    transform: translate(-50%);
}

.social{
	float: left;
    width: 25px;
    height: 25px;
}

.dataIntro .title{
	font-family: 'Cerebri Light';
	font-size: 15px;
    line-height: 50px;
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
}

.dataIntro .description{
    font-family: 'Cerebri Light';
    font-size: 8px;
    line-height: 14px;
    letter-spacing: 0.2em;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 35px;
}

.overlayLeftMobile{
	height: 50%;
    text-align: center;
    width: 100%;
    display: none;
    border-bottom: 1px solid #FFF;
    width: 80%;
    margin: auto;
}

.overlayLeftMobile img{
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    text-align: center;
}

@media screen and ( max-height: 730px ){

	.overlay p{
	    font-size: 20px;
	    line-height: 28px;
	}

}


@media screen and ( max-width: 640px ){
	
	.container{
	    height: 100%;
	}

	.leftContainer{
		left: 0px;
	    width: 100%;
	    height: 50%;
	    position: absolute;
	    overflow: hidden;
	}
	
	.rightContainer{
		top: 50%;
	    width: 100%;
	    height: 50%;
	    position: absolute;
	    overflow: hidden;
	}
	
	.image{
		position: absolute;
		width: 100%;
		height: 100%;
		background-position: center center;
		background-size: cover;
		-webkit-transition: all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
		transition:         all 1000ms cubic-bezier(0.23, 1, 0.32, 1);
		-webkit-perspective: 1000;
		-webkit-backface-visibility: hidden;
	}
	
	.leftContainer .nextImage{
		transform:translateX(99.9999%);
		-webkit-transform:translateX(99.9999%);
	}
	
	.leftContainer .currentImage{
		transform:translateX(0%);
		-webkit-transform:translateX(0%);
	}
	
	.leftContainer .prevImage{
		transform:translateX(-100%);
		-webkit-transform:translateX(-100%);
	}
	
	.rightContainer .nextImage{
		transform:translateX(-99.9999%);
		-webkit-transform:translateX(-99.9999%);
	}
	
	.rightContainer .currentImage{
		transform:translateX(0%);
		-webkit-transform:translateX(0%);
	}
	
	.rightContainer .prevImage{
		transform:translateX(100%);
		-webkit-transform:translateX(100%);
	}
	
		
	.overlay p{
	    font-size: 16px;
	    line-height: 24px;
	}

	
	.nav{
	    top: 37px;
		right: 25px;
	}
	
	.close{
	    top: 37px;
		right: 25px;
	}
	
	.nav{
		background: none;
	}
	
	.overlay p{
		margin-top: -30px;	
	}
	
	.socialIcons{
		bottom: 100px;
	}

}


.pulse {
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(255,255,255,0.4);
  animation: pulse 2s infinite;
}
.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
    box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
      box-shadow: 0 0 0 10px rgba(255,255,255, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
      box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}


a.svg {
  position: relative;
  display: inline-block; 
  z-index: 1;
}
a.svg:after {
  content: ""; 
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left:0;
}

svg {
   pointer-events: all;
}

.ceribri{
	font-family: 'cerebriSansRegular';
	-webkit-font-smoothing: antialiased;
    font-size: 0.9em;
}

.ceribri a{
	color: inherit;
}

.ceribri strong{
	font-family: 'cerebriSansMedium';
	font-weight: 100;
    font-size: 0.9em;
}

.ceribriMedium{
	font-family: 'cerebriSansMedium';
	-webkit-font-smoothing: antialiased;
    font-size: 0.9em;
}

/* @import must be at top of file, otherwise CSS will not work */
@import url("//hello.myfonts.net/count/37a32c");

@font-face {font-family: 'NewCenturySchlbkLTStd-Roman';src: url('../fonts/37A32C_0_0.eot');src: url('../fonts/37A32C_0_0.eot?#iefix') format('embedded-opentype'),url('../fonts/37A32C_0_0.woff2') format('woff2'),url('../fonts/37A32C_0_0.woff') format('woff'),url('../fonts/37A32C_0_0.ttf') format('truetype');}

/* Change the white to any color ;) */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #FFF inset;
}

/*Change text in autofill textbox*/
input:-webkit-autofill {
    -webkit-text-fill-color: #000 !important;
}

body{
    background: #000;
    opacity: 0;
    transition: opacity linear 1s;
}

body.fadeIn{
	opacity: 1;
}

p{
    font-size: calc(14px + 0.006 * ( 100vmin - 320px ) );
}

.primaryTypeface{
    font-family:'NewCenturySchlbkLTStd-Roman';
    -webkit-font-smoothing: antialiased;
}
.italic{
    font-family:'NewCenturySchlbkLTStd-Roman';
}
.wrapEverything{
    background-color:inherit;
    overflow: hidden;
}

.grid{
	width: 100%;
	position: absolute;
	top:100vh;
	z-index: 3;
    background: #000;
}

.homeGrid{
    margin-top: 100vh;
    padding: 0px 7.5px 7.5px;
    background: #FFF;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.homeGridBlock{
	position: relative;
    width: calc(50% - 15px);
    float: left;
    background: #000;
    padding-bottom: 28%;
    margin: 7.5px;
    background-size: 100%;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    border: none;
    overflow: hidden;
}
.homeGridBlock:focus{
    outline-color: #fff;    
}

.homeGridBlock .tint{
    position: absolute;
	width: 100%;
	height: 100%;
    background: rgba(0,0,0,0.2);
    left:0;
}

.homeGridBlock.nohover .textOverlay{
	opacity: 1;
}

.homeGridBlock.nohover .tint{
	opacity: 1;
}

.blockBg{
    position: absolute;
    width: 101%;
    height: 101%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    transition: opacity 600ms cubic-bezier(0.23, 1, 0.32, 1);
}

.homeGridBlock:hover .blockBg{
	opacity: 0.6;
}

.blockFg{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.popupContent{
    position: fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background:rgba(0,0,0,0.9);
    display:none;
    z-index: 3;
}
.popupContent .inner{
    text-align: center;
    color:#fff;
    font-family:'NewCenturySchlbkLTStd-Roman';
    -webkit-font-smoothing: antialiased;
    max-width: 60ch;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.popupContent h2{
    font-family: "bebas-neue";
    letter-spacing: 0.6em;
    font-size: 1.8vw;
    font-size:calc(16px + 0.014 * ( 100vmax - 480px ) );
    font-size:-webkit-calc(16px + 0.014 * ( 100vmax - 480px ) );
    line-height: 1.8;
    margin-bottom: 15vmin;
    font-weight: 400;
}
.popupContent p{
    font-size: 1em;
}

.popupContent .wrapper{
	max-height: 50vh;
	overflow-y: scroll;
}

.popupContent .wrapper p{
	padding: 1em;
}

.textOverlay{
    text-align: center;
    width: 80%;
    left: 10%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: "bebas-neue";
    letter-spacing: 0.6em;
    line-height: 1.8;
    color: #FFF;
    -webkit-font-smoothing: antialiased;
    font-size: 1.8vw;
    font-size:calc(16px + 0.014 * ( 100vmax - 480px ) );
    font-size:-webkit-calc(16px + 0.014 * ( 100vmax - 480px ) );
    opacity: 0;
    transition: all 250ms linear;
}

#contactDetails{
    display: flex;
    font-family:'NewCenturySchlbkLTStd-Roman';
    align-items: center;
    justify-content: space-around;
    width:100%;
    padding:10vmin 0;
    text-align: left;
    line-height: 1.3;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
}

#contactDetails .contact{
    margin: 2.5vmax 0;
}

#contactDetails .notItalic{
    font-family:'NewCenturySchlbkLTStd-Roman';
}

#contactDetails .notItalic {
    font-family: 'NewCenturySchlbkLTStd-Roman';
    font-size: 12px;
    margin-bottom: 16px;
}

.contact a{
	color: #000;
}

.landing{
	position: absolute;
	width: 100%;
    top: 0px;
    z-index: 2;
    background: #000;
    overflow: hidden;
    height: 100%;
}

.dataCapture{
	width: 100%;
    height: 100px;
    top: calc(100% - 140px);
    position: absolute;
    z-index: 2;
}

.block{
    position: relative;
	background-position: center;
	float: left;
	width: 33.33333%;
    padding-top: 20%;
    overflow: hidden;
    /* cursor: pointer; 
    I've turned this off to help distinguish between linked and non-linked grid items, feel free to turn it back on though -- SC*/
}

.block .inner{
	position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: all 500ms linear;
    left: 0px;
    top: 0px;
    padding: 0px;
    transform: translateZ(0);
}

.block .title{
	font-size: 22px;
	line-height: 22px;
	position: absolute;
    left: 20px;
    top: 20px;
    color: #FFF;
    font-family: 'CerebriSans-Light';
    opacity: 1;
    transition: all 500ms linear;
    -webkit-font-smoothing: antialiased;
}

.colorBlock .title{
	opacity: 1;
}

.showTitle .title{
	opacity: 1;
}

.block:hover .title, .homeGridBlock:hover .textOverlay, .block:focus .title, .block a:focus .title, .block:hover .category{
	opacity: 1;
}

.block .category{
    width: 100%;
    float: left;
    font-size: 12px;
    opacity: 0;
    transition: all 500ms linear;
}

video#bgvid { 
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover; 
}

.showreel video#bgvid{
	width: 100%;
}

.videoBlock .inner video{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.menuIcon{
    position: fixed;
    top: 30px;
    width: 40px;
    height: 60px;
    z-index: 9;
    right: 30px;
    cursor: pointer;
}


#burger{
    position: fixed;
    cursor: pointer;
    width: 34px;
    height: 34px;
    margin: auto;
    top: 38px;
    right: calc(40px + 2px);
    right: -webkit-calc(40px + 2px);
    z-index: 999;
}

#closeIcon{
    position: fixed;
    display: block;
    cursor: pointer;
    width: 34px;
    height: 34px;
    margin: auto;
    top: 38px;
    right: calc(40px + 2px);
    right: -webkit-calc(40px + 2px);
    pointer-events: none;
    z-index: 99;
}

.insta{
    height: 34px;
    width: 34px;
    position: fixed;
    top: 38px;
    right: calc(40px + 42px);
    right: -webkit-calc(40px + 42px);
    cursor: pointer;
    z-index: 9999;
}

.twitter{
    height: 34px;
    width: 34px;
    position: fixed;
    top: 38px;
    right: calc(40px + 82px);
    right: -webkit-calc(40px + 82px);
    cursor: pointer;
    z-index: 9999;
    transition: opacity 0.35 linear;
}
.twitter a:hover, .twitter a:focus, .insta a:hover, .insta a:focus{
    opacity:0.6;
}

.thoughtfully-logo{
	width: 70%;
	max-width: 1600px;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.navBg{
	width: 100%;
	height: 64px;
	position: fixed;
	top:0px;
	z-index: 99;
	background: #000;
	opacity: 0;
}

.scroll-anim{
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 20px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.5s linear, transform 0.5s ease-in-out;
    z-index:5;
}

.scroll-anim:hover, .scroll-anim:focus{
	transform: translateX(-50%) scale(1.2);
}

.scroll-anim svg path {
    fill: currentColor
}

nav.main{
	position: fixed;
	z-index: 99;
	width: 100vw;
	height: 100vw;
	pointer-events: none;
}



nav li.animateIn{
	opacity: 1;
}

.navInner{
	position: absolute;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    width: 100%;
    overflow: hidden;
    margin-top: -100px;
    opacity: 0;
}

.animateIn .navInner{
	margin-top: 0px;
	opacity: 1;
}

.navLink:nth-child(1) .navInner{
	transition-delay: 1s;
}
.navLink:nth-child(2) .navInner{
	transition-delay: 1.2s;
}
.navLink:nth-child(3) .navInner{
	transition-delay: 1.4s;
}
.navLink:nth-child(4) .navInner{
	transition-delay: 1.6s;
}
.navLink:nth-child(5) .navInner{
	transition-delay: 1.8s;
}
.navLink:nth-child(6) .navInner{
	transition-delay: 2s;
}

#navBg{
	width: 100%;
	height: 100vh;
	background-color: #555bfb;
	position: fixed;
	z-index: 5;
	display: none;
	transition: all 0.7s linear;
}

.fadeOut{
	opacity: 0;
}

.tint{
	position: absolute;
	top:0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 0;
	opacity: 0;
	transition: all 0.25s ease-in;
}

.homeGridBlock:hover .tint, .block:hover .tint, .block:focus .tint, .block a:focus .tint{
	opacity: 1;
}

.clientLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height:100px;
    max-width:200px;
}
.clientLogo img{
    width: auto;
    height:auto;
    max-height:100px;
    max-width:200px;
}
.slick-dots {
    bottom: 25px!important;
}

.slick-dots li {
    width: 10px!important;
    height: 10px!important;
    margin: 0 6px!important;
}

.slick-dots li.slick-active button:before {
    opacity: 1!important;
    color: #cdfece!important;
}

.slick-dots li button:before {
    opacity: .25!important;
    color: #FFFFFF!important;
    font-size: 10px!important
}

.homeSlider{
	height: 100%!important;
}

.slick-list{
	height: 100%!important;
}

.slick-track{
	height: 100%!important;
}

.slick-slide{
	height: 100%!important;
}

.homeSlider .imageSlide{
	height: 100%;
	background-size: cover;
	background-position: center center;
}

.imageSlide img{
	opacity: 1;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 1;
    object-fit: cover;
}

.logoImage{
	position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0px;
}

.homeSlider .topImage{
	position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.homeSlider .videoSlide{
	height: 100%;
}

.homeSlider .textHolder{
	position: absolute;
    width: 80%;
    left: 10%;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.5s linear;
    z-index: 999999;
}

.videoSlide{
	transition: opacity 0.5s linear;
}

.showreelPlaying .homeSlider .textHolder{
	opacity: 0;
}

.showreelPaused .homeSlider .textHolder{
	opacity: 1;
	z-index: 9;
}

.showreelPlaying .videoSlide{
	opacity: 0;
}

.videoSlide video{
	transition: 0.5s opacity linear;
}

.showreelPlaying .videoSlide video{
	opacity: 0;
}

.showreelPaused .videoSlide{
	opacity: 1;
}

.showreel{
	opacity: 0;
}

.showreelPlaying .showreel{
	opacity: 1;
	transition-delay: 0.5s;
	transition: opacity 0.5s linear;
}

.showreelPaused .showreel{
	opacity: 0.1;
}

.homeSlider h2{
	font-size: 17px;
    line-height: 36px;
    color: #FFF;
    font-family: 'CerebriSans-Light';
    -webkit-font-smoothing: antialiased;
    font-weight: 100;
    letter-spacing: -0.03em;
}

.homeSlider p{
    font-size: 2.6vw;
    font-size:calc(30px + 0.025 * (100vmin - 320px)) -webkit-calc(30px + 0.025 * (100vmin - 320px));
    line-height: 1.3;
	color: #FFF;
    font-family: 'NewCenturySchlbkLTStd-Roman';
    -webkit-font-smoothing: antialiased;
    font-weight: 100;
}

.homeSlider p a{
    color: #FFF;
    text-decoration: none;
    position: relative;
}

.homeSlider p a::after{
    content: '';
    position: absolute;
    border-bottom: 2px solid #FFF;
    width: 100%;
    left: 0px;
    bottom: 0.2vw;
}

.navItemsMenu {
    position: fixed;
    display: none;
    height: 100%;
    background-color: #555bfb;
    z-index: 5;
    width: 100%;
}

.pageContainer{
	margin-bottom: 120px;
}

.shareLink{
    font-size: 0.9vw;
    letter-spacing: 0.01em;
    line-height: 1.3vw;
    font-family: 'CanelaWeb-Thin';
    text-align: center;
    /* position: absolute; */
    width: 100%;
    /* bottom: 6vw; */
    margin-top: 6vw;
}
	
.thankYou{
	display: none;
	text-align: center;
}

footer{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  height:120px;
  background:#000;
  color:#fff;
  z-index:-1;
}

footer .socialIcons {
    display: flex;
    bottom: 40px;
}

footer .socialIcons .socialIcon {
    margin: 0px 10px;
}

.footerInner{
	position: fixed;
    z-index: 1;
    bottom: 0px;
    width: 100%;
    height: auto;
    background: #161f1b;
}

.footerColumns {
    width: 75%;
    left: 12.5%;
    margin: 3vw auto 4vw auto;
    max-width: 1400px;
}

.footerColumns .services{
    font-family: 'CerebriSans-Light';
}

.footerColumns .row.social{
    margin: auto;
    display: flex;
    width: 70%;
    flex-wrap: wrap;
}

.footerColumns .column{
    flex-basis: 33.3%;
}

.footerColumns .column .socialIcon{
	width: 30px;
	margin: auto;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
}

.footerColumns .column:hover .socialIcon{
	transform: translateX(0);
}

.footerColumns .servicesRow{
	display: flex;
}

.footerColumns .servicesRow .column{
	flex-basis: 25%;
	text-align: center;
}

.footerColumns .services{
    font-size: 1vw;
    font-size:calc(12px + 0.01 * ( 100vmin - 320px ));
    font-size:-webkit-calc(12px + 0.01 * ( 100vmin - 320px ));
    padding-top: 40px;
    -webkit-font-smoothing: antialiased;
    line-height: 1.4;
}

.bottomFooter{
    font-size: 0.8vw;
    width: calc(100% - 60px);
    margin-bottom: 3vw;
    margin-left: 30px;
    border-top: 1px solid;
    padding-top: 8px;
    -webkit-font-smoothing: antialiased;
}

.bottomFooter .leftCol{
	width: 50%;
	float: left;
	font-family: 'CerebriSans-Light';
}

.bottomFooter .rightCol{
	width: 50%;
	float: right;
	text-align: right;
	font-family: 'CerebriSans-Light';
}

#newsletterPopup{
    background-color:#ffed00;
    width:100%;
    position: relative;
    z-index: 4;
    text-align: center;
    padding:5vmin 0;
    position: fixed;
    bottom: -100%;
    transition: all 0.5s ease-out;
}  

#newsletterPopup.open{
	bottom: 0px;
}  

#newsletterPopup h4{
    margin-bottom:1em;
    font-weight:100;
}
#newsletterPopup .inner{
    width:60%;
    margin:auto;
    position: relative
}

#newsletterPopup fieldset{
    display: block;
    margin-bottom: 1em;
}

#emailContainer{
    background-color: transparent;
    border: 1px solid rgba(0,0,0,0.4);
    width:80%;
    margin:auto;
    position: relative;
    padding:8px 10px;
    max-width: 700px;
}
input[type="email"]{
    background:transparent;
    width:100%;
    border:none;
    padding-left: 50px;
}
input:focus{
    outline: none;
}

label[for="fieldEmail"]{
    position: absolute;
    left:10px;
    top:9px;
}
#newsletterPopup input[type="checkbox"]{
    -webkit-appearance: none;
    border:none;
    width:1px;
    height:1px;
}

.privacyPopup a{
	color: #FFF;
}

#cm-privacy-consent{
    position: relative;
}
#cm-privacy-consent + label{
    cursor: pointer;
}
#cm-privacy-consent:before {
    content: "";
    width: 13px;
    height: 13px;
    margin-left: -15px;
    font-size: 14px;
    position: absolute;
    top: -8px;
    opacity: 0.8;
    border: 1px solid rgba(0,0,0,0.8);
    transition: background-color 0.35s linear;
    background-color: transparent;
    border-radius: 10px;
}
#cm-privacy-consent:checked:before{
    background-color: #000;
}

#interests input[type="checkbox"] + label{
    border-bottom: 1px solid transparent;
    padding:2px 3px;
    cursor: pointer;
    transition: border-color 0.35s ease-in-out;
}
#newsletterPopup input[type="checkbox"]:focus, 
#newsletterPopup input[type="checkbox"]:checked{
    outline:none;
}
#interests input[type="checkbox"]:checked + label,
#interests input[type="checkbox"]:focus + label{
    border-color: #000;
}
#newsletterPopup button[type="submit"]{
    background-color: transparent;
    border: none;
    width: 28px;
    height: 28px;
    position: absolute;
    right: 10px;
    top: 4px;
    cursor: pointer;
    padding:0;
}


#newsletterPopup button .st_rect{
    transition: stroke-dashoffset .3s ease;
    stroke-dasharray: 95;
    stroke-dashoffset: 95;
}
#newsletterPopup button[type="submit"]:hover,
#newsletterPopup button[type="submit"]:focus{
    outline:none;
}
#newsletterPopup button[type="submit"]:hover .st_rect,
#newsletterPopup button[type="submit"]:focus .st_rect{
    stroke-dashoffset: 0;
}
#closeNewsletter{
    width:20px;
    height:20px;
    position: absolute;
    top:0px;
    right:0px;
    background-color:transparent;
    border:none;
    padding:0;
}
#closeNewsletter img{
    width:100%;
    height:100%;
}

/* //Alternate Styling */

label[for="fieldswuut-3"]{
    background-color:#ffed00;
    color:#000;
    transition: all 0.35s ease-in-out!important;
    border:none;
    padding:3px 6px!important; 
}
#fieldswuut-3:checked + label{
    background-color: #000;
    color:#ffed00;
    border:none;
}

label[for="fieldswuut-2"]{
    background-color:#ffed00;
    color:#000;
    transition: all 0.35s ease-in-out!important;
    border:none!important;
    padding:3px 6px!important; 
    border-radius: 10px;
}
#fieldswuut-2:checked + label{
    background-color: rgba(0,0,0,0.6);
    color:#ffed00;
    border:none;
}

label[for="fieldswuut-1"]{
    background-color:#ffed00;
    color:#000;
    border:1px solid transparent;
    padding:3px 6px!important; 
    border-radius: 10px;
}
#fieldswuut-1:checked + label{
    border-color:#000;
}

label[for="fieldswuut-4"]{
    background-color:#ffed00;
    color:#000;
    border:1px solid #000!important;
    padding:3px 6px!important; 
    border-radius: 10px;
    transition: all 0.35s ease-in-out!important;
}
#fieldswuut-4:checked + label{
    border-color:#000;
    background-color: rgba(0,0,0,1);
    color:#ffed00;
}

.privacy-policy{
	float: right;
	margin-left: 10px;
	cursor: pointer;
}

.privacyPopup{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
}

.bottomFooter {
	font-size: 12px;
}

.smiler{
    position: absolute;
    z-index: 99999;
    width: 45px;
    bottom: 30px;
    right: 45px;
    transition: transform 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(0px);
}

.showreelPlaying .smiler{
	transform: translateX(145px);
}

.showreelPaused .smiler{
	transform: translateX(0px);
}

#videoPlay{
	position: absolute;
	z-index: 99999;
    bottom: 48px;
    color: #FFF;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

#videoPlay .animationHolder{
	position: absolute;
	transform: translate(-50%, -20px);
    left: 50%;
    width: 100px;
    height: 50px;
}

#videoPlay .animationHolder:hover{
	transition: transform 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
	transform: translate(-50%, -30px);
}

.showreelPlaying #videoPlay {
    opacity: 0;
}

.showreelPaused #videoPlay{
	opacity: 0;
}

#videoOptions{
    position: absolute;
    z-index: 99999;
    bottom: 48px;
    color: #FFF;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    display: flex;
}

.showreelPaused #videoOptions{
	opacity: 1;
    pointer-events: all;
}

.videoResume{
    padding: 0 10px;
}

.videoRestart {
    padding: 0 10px;
}

input[type="email"] {
    font-family: 'Cerebri Light';
    font-size: 12px;
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
    background: none;
    border: 1px solid rgba(0,0,0,0.6);
    width: 350px;
    color: #000;
    padding: 0px 10px;
    height: 30px;
    transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 0px;
    text-align: center;
    box-sizing: border-box;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.dataCapture{
	font-family: 'Cerebri Medium';
	font-size: 15px;
    line-height: 36px;
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
    z-index: 9;
}

.dataIntro{
	font-family: 'BasisGrotesqueTrial-Regular', Helvetica, sans-serif;
    position: absolute;
    z-index: 1;
    color: #000;
    text-align: center;
    bottom: 100px;
    width: 100%;
    font-size: 12px;
    line-height: 26px;
    width: 30%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 400px;
    max-width: 550px;
    z-index: 2;
}

.dataTitle{
	font-size: 16px;
    letter-spacing: 0.04em;
}

.dataSmallprint{
	letter-spacing: 0.04em;
}

.submitted input[type="email"] {
    width: 0px;
    padding: 0px;
    border: 0px;
}

.contactPopup{
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity linear 0.6s;
}

.contactPopup.open{
	opacity: 1;
	pointer-events: all;
}

.contactPopup svg{
	max-height: 65vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.contactWrapper{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	color: #FFF;
	font-family: 'BasisGrotesqueTrial-Regular', Helvetica, sans-serif;
	font-size: 36px;
	letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.contactHolder{
	padding: 20px 0px;
}

.contactHeading{
	font-size: 18px;
	padding-bottom: 20px;
}

#nlSignup{
	display: flex;
	transition: right 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow: hidden;
}

#submitNl{
	display: none;
    position: relative;
    height: 30px;
    width: 45px;
    background: #000;
    border: 0px;
    margin-left: -1px;
    cursor: pointer;
    transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

#submitNl:focus {
	outline: 0;
}

#submitNl img{
	width: 30px;
    position: absolute;
    top: 0px;
    right: 10px;
    transition: right 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

#submitNl:hover img{
    right: 5px;
}

.submitted #submitNl img{
	right: -50px!important;
	transition: right 600ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
	transition-delay: 400ms!important;
}

.submitted #submitNl{
	width: 0px;
	padding: 0px;
	transition-delay: 1s!important;
}

.dataCapture .inner{
    align-items: center;
	display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.dataCapture .inner .label{
    margin-right: 20px;
}

.dataCapture .thanks{
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s linear;
	transition-delay: 2.1s;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    color: #000;
    width: 100%;
    text-align: center;
    font-family: 'Cerebri Light';
    font-size: 15px;
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
}

.dataCapture.submitted .inner .label{
	animation-name: fadeOut;
    animation-duration: 600ms;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

/* The element to apply the animation to */
.dataCapture.submitted .thanks{
   opacity: 1;
}

#bigCalendar .month{
	pointer-events: none!important;	
}

.dataBg{
    background: #FFF;
    position: absolute;
    bottom: 40px;
    width: 500px;
    height: 210px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
}

/* Page Builder */

.imageBackground{
	background-size: cover;
    background-position: top;
}

.mobile{
	display: none;
}

.question{
    text-align: center;
    letter-spacing: 0.2em;
    font-size: 1vw;
    line-height: 1.3vw;
    text-transform: uppercase;
    margin-bottom: 1vw;
    cursor: pointer;
}

.answer{
	display: none;
	padding: 2vw 0px 3vw;
}

#contactForm input{
	width: 100%;
    border: 0px;
    padding: 1vw;
    text-align: center;
	font-family: 'CanelaWeb-Thin';
    text-align: center;
    margin-bottom: 1vw;
    letter-spacing: 0.2em;
    font-size: 1vw;
    line-height: 1.4vw;
    font-weight: 100;
    text-transform: uppercase;
    width: calc(100% - 2vw);
}

#contactForm #message{
    border: 0px;
    padding: 1vw;
    text-align: center;
    font-family: 'CanelaWeb-Thin';
    text-align: center;
    margin-bottom: 2vw;
    letter-spacing: 0.2em;
    font-size: 1vw;
    line-height: 1.4vw;
    font-weight: 100;
    text-transform: uppercase;
    width: calc(100% - 2vw);
    height: 4vw;
}

@keyframes fadeOut {
    0%   {opacity: 1; display: block;}
    99%   {opacity: 0; display: block;}
    100% {opacity: 0; display: none;}
}

input:-webkit-autofill, input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  -webkit-text-fill-color: #333;
}

.logoBg{
	display: none;
}

/* SUPER LARGE SCREENS */
@media all and (min-width:2000px) {
    
    .footerColumns .services{
	    font-size: 20px;
    }
    
    .bottomFooter{
	    margin-bottom: 2vw;
    }
    
    input[type="email"] {
    	font-size: 14px;
    }
    
}

/* LARGE SCREENS */
@media all and (min-width:1600px) {

    #contactDetails .contact {
    	margin: auto;
	}
    
}
/* TABLETS */

@media all and (max-width: 1200px) {

    .block .title {
        font-size: 11px;
        line-height: 15px;
        
    }
    
    #contactDetails{
        width: 50%;
    }
    
    #contactDetails .contact {
        flex-basis: 50%;
    }

}

@media all and (max-width: 1024px) {
	
	.block .title {
	    font-size: 20px;
	    line-height: 22px;
    }
	
	.block{
		float: left;
		width: 50%;
        padding-top: 29%;
    }
    
    .clientLogo img, .clientLogo{
        max-height: 75px;
        max-width: 150px;
    }
        
    .homeSlider h2 {
    	font-size: 13px;
    	line-height: 36px;
    }
    .footerColumns .column{
        flex-basis:50%;
    }
    
    #contactDetails {
		width: 70%;
		margin: auto;
		text-align: center;
	}

	
}

/* PHONES */
@media only screen and (max-width: 900px) {
	
	.overlay {
    	width: 100%;
		height: 100%;
    }
	
	#contactDetails .contact {
    	flex-basis: 100%;
	}
	
	#contactDetails {
	    width: 70%;
	    text-align: center;
	}
    
    #navBg{
	  	display:none;
	  	z-index: 9;
    }
    
    .bottomFooter {
    	font-size: 10px;
    }
    
    .homeSlider .logoImage{
	    background-size: contain;
    }
    
    .dataSmallprint {
	    letter-spacing: 0.04em;
	    width: 60%;
	    margin: auto;
	    line-height: 16px;
	}
	
	.overlay .overlayRight svg{
        position: absolute;
	    left: 50%;
	    top: 50%;
	    max-width: 90%;
	    transform: translate(-50%,-50%);
        height: 65%;
	}
	
	.overlay .overlayLeft{
	    display: none!important;
	}
	
	.overlayLeftMobile{
		display: block;
	}
    
	.bigCalendarWrap {
	    width: 60%;
	}
    
    #bigCalendar .clndr-controls {
    	width: 100%;
        margin-top: 150px;
    }
    
    #bigCalendar .month {
	    color: #FFF;
	    text-align: center;
	    text-transform: uppercase;
	    font-size: 14px;
	    line-height: 24px;
	    float: left;
	    width: 100%;
	    margin-top: -37px;
	}
	
	#bigCalendar .day-event .event-day{
		display: none;
	}
	
	#bigCalendar .clndr-table {
	    top: 60%;
	}
	
	#bigCalendar .clndr-table .day-contents {
	    width: 34px;
	    height: 23px;
	    border-radius: 50px;
	    margin: auto;
	    padding-top: 11px;
	    margin-top: 10px;
	}
	
	#bigCalendar .day-event {
	    display: none;
	    position: absolute;
	    z-index: 9999;
	    background: #fff;
	    width: 312px;
	    height: 140px;
	    color: #545861;
	    margin-top: 0px;
	    margin-left: 0px;
	    top: 50%;
	    left: 50%;
	    transform: translate(-50%,-50%);
	}
	
	#bigCalendar .event.selected .day-contents {
	    background: #FFF;
	    color: #545861;
	}
	
	#bigCalendar .event.selected .day-contents {
		display: none;
	}
	
	.pageBlock {
    	width: 100vw;
		flex-basis: 100vw;
		min-height: 0vh;
		height: auto;
		position: relative;
		display: flex;
	    justify-content: center;
	    align-content: center;
        padding: 10vw 0;
        flex-wrap: wrap;
	}
	
	.shareLink {
        position: relative;
	    flex-basis: 100%;
	    margin-top: 11vw;
	}
	
	.imageBackground{
		min-height: 50vh;
	}
	
	h1{
	    font-size: 3.5vw;
	    line-height: 5vw;
	}
	
	.textWrapper{
		font-size: 2vw;
		line-height: 2.6vw;
	}
	
	nav li{
	    font-size: 3.6vw;
	    line-height: 7.2vw;
	}
	
	.page-template-our-story .logo {
	    top: 26px;
        width: 120px;
	}
	
	.logoBg{
		display: block;
	    background: #000;
	    width: 100%;
	    height: 60px;
	    position: fixed;
	    top: 0px;
        border-bottom: 1px solid #FFF;
        z-index: 99;
	}
	
	#navCalendar{
	    height: 70vh;
    }
	
	#burger{
	    top: 13px;
	}
	
	#burger .icon {
	    border: 1px solid #FFF!important;
	}
	
	.logo {
    	top: 18px!important;
    }
    
    .home .logo{
	    top: 50%!important;
    }
   
    .home nav .logo {
	    top: 18px!important;
	    width: 120px;
	}
    
    .textWrapper h2{
	    font-size: 3vw;
	    line-height: 4vw;
        margin-bottom: 6vw;
    }
    
    .fullWidth h2{
        font-size: 3vw;
	    line-height: 4vw;
    }
    
    .question {
	    font-size: 2vw;
	    line-height: 2.6vw;
    }
    
    .shareLink {
	    font-size: 2vw;
	    line-height: 2.6vw;
    }
    
    .faqs{
        padding-bottom: 20vw;
    }
    
    .pageContainer{
        margin-top: 61px;
    }
    
    .ctaButton{
        font-family: 'CanelaWeb-Thin';
	    width: 100px;
	    padding: 8px;
	    border-radius: 50px;
	    margin-top: 5vw;
	    letter-spacing: 0.2em;
	    font-size: 8px;
	    text-transform: uppercase;
	    cursor: pointer;
    }
    
    .textWrapper{
	    position:relative;
	    top: inherit;
	    left: inherit;
	    transform: none; 
    }
    
    #contactForm input{
	   	padding: 2vw;
	    margin-bottom: 2vw;
	    font-size: 2vw;
	    line-height: 2.8vw;
	    width: calc(100% - 4vw);
	    border-radius: 0px;
	    
    }
        
    #contactForm #message{
	    padding: 2vw;
	    margin-bottom: 2vw;
	    font-size: 2vw;
	    line-height: 2.8vw;
	    width: calc(100% - 4vw);
        height: 8vw;
    }
    
    .checkMessage {
	    margin-left: 5vw;
	    letter-spacing: 0.2em;
	    font-size: 1.4vw;
	    line-height: 2vw;
	    padding-bottom: 2vw;
	}
	
	.checkmark{
	    top: -5.5vw;
	}
	
	.fullWidth {
	    padding: 8vw 0;
	}
	
	.fullWidth .ctaButton {
    	margin-top: 5vw;
	}
	
	.page-id-975 .colourBackground{
		order: 2;
	}
	
	.page-id-952 .pageBlock:nth-child(1){
		order: 1;
	}
	
	.page-id-952 .pageBlock:nth-child(2){
		order: 2;
	}
	
	.page-id-952 .pageBlock:nth-child(3){
		order: 4;
	}
	
	.page-id-952 .pageBlock:nth-child(4){
		order: 3;
	}
	
	.page-id-952 .pageBlock:nth-child(5){
		order: 5;
	}
	
	.page-id-952 .pageBlock:nth-child(6){
		order: 6;
	}
	
	
	.page-id-932 .pageBlock:nth-child(1){
		order: 1;
	}
	
	.page-id-932 .pageBlock:nth-child(2){
		order: 2;
	}
	
	.page-id-932 .pageBlock:nth-child(3){
		order: 4;
	}
	
	.page-id-932 .pageBlock:nth-child(4){
		order: 3;
	}
	
	.page-id-932 .pageBlock:nth-child(5){
		order: 5;
	}
	
	.page-id-932 .pageBlock:nth-child(6){
		order: 7;
	}
	
	.page-id-932 .pageBlock:nth-child(7){
		order: 6;
	}
	
	.page-id-932 .pageBlock:nth-child(8){
		order: 8;
	}
	
	.page-id-932 .pageBlock:nth-child(9){
		order: 9;
	}
	
	.page-id-932 .pageBlock:nth-child(10){
		order: 10;
	}
	
	.page-id-932 .fullWidth{
		order: 11;
	}
	
	#burger{
		right: 20px;
	}
	
	.answer{
	    padding: 4vw 0px 5vw;
	}
	
	.socials{
		pointer-events: none;
	    width: 100%;
	    height: 120px;
	    position: absolute;
	    top: 100%;
	}


}


@media all and (max-width: 600px) {
	
	nav li {
    	font-size: 5vw;
    	line-height: 12vw;
	}
	
	.mobile{
		display: block;
	}
	
	.desktop{
		display: none;
	}
	
	.dataCapture .inner{
		flex-wrap: wrap;
		width: 92%;
	}
	
	.dataIntro .title{
		font-size: 12px;
	}
	
	.dataIntro .description{
		font-size: 5px;
		line-height: 10px;
	}
	
	#nlSignup{
		margin-top: 10px;
	}
	
	.footerColumns .servicesRow{
		display: none;
	}
	
	.footerInner {
	    position: absolute;
	    z-index: 1;
	    bottom: inherit;
	    width: 100%;
	    height: auto;
	    background: #161f1b;
	}
	
	.footerColumns .column {
	    flex-basis: 100%;
	    padding: 15px 0px;
	}
	
	.block .title {
	    font-size: 12px;
	    line-height: 15px;
	}
	
	.block{
		float: left;
		width: 100%;
	    padding-top: 60%;
    }
	
	.menuIcon{
		position: fixed;
	    top: 20px;
	    width: 40px;
	    height: 60px;
	    z-index: 9;
	    right: 15px;
	    cursor: pointer;
	}
	.homeSlider .textHolder {
	    position: absolute;
	    width: 80%;
	    left: 10%;
	    text-align: center;
	    top: 50%;
	    transform: translateY(-50%);
	}
	
	.dataSmallprint{
		letter-spacing: 0.04em;
	    font-size: 10px;
	    line-height: 14px;
	    width: 80%;
	    margin: auto;
    }
    
    .dataTitle {
		line-height: 26px;
    }
    
    .dataIntro{
        bottom: 55px;
    }
   
    .homeSlider p br{
	    display: none;
    }
    
   
    #closeIcon{
        top:20px;
        right:20px;
    }
    .twitter{
        right:100px; top:20px;
    }
    .insta{
        top:20px;
        right:60px;
    }
    .Hero{
        padding-bottom:68%;
    }

    .homeSlider p{
        /* font-size: 5vw; */
        width: 90%;
	    margin-left: 5%;
    }
    .videoSlide video#bgvid{
        width:auto;
        height:100%;
    }
    
    .homeGridBlock {
	    padding-bottom: 56%;
        width: calc(100% - 15px);
        background: #000;
	}
	
	.bottomFooter .leftCol {
	    width: 100%;
	    float: left;
	}
	
	.bottomFooter .rightCol {
        width: 100%;
	    float: left;
	    text-align: left;
	    margin-top: 2vw;
	    margin-bottom: 5vw;
	}
	
	.footerColumns {
	    margin: 3vw auto 10vw auto;
	}
	
	.bottomFooter {
    	font-size: 10px;
    }
    
    #newsletterPopup{
        padding: 5vmin 0 1vmin;
    }
    
    #newsletterPopup .inner {
    	width: 90%;
    }
    
    #newsletterPopup h4 {
	    font-size: 12px;
	}
    
    #cm-privacy-consent + label {
  	 	font-size: 12px;
	}
	
	#emailContainer {
	    padding: 5px 10px;
	}
	
	label[for="fieldEmail"] {
	    font-size: 12px;
	}
	
	#closeNewsletter {
	    width: 15px;
	    height: 15px;
	    position: absolute;
	    top: -8px;
	    right: -8px;
	    background-color: transparent;
	    border: none;
	    padding: 0;
	}
	
	#cm-privacy-consent:before {
	    width: 10px;
	    height: 10px;
	    top: -6px;
	}
	
	.showreel video#bgvid {
    	max-width: 100%!important;
    }
    
    .popupContent .inner {
	    width: 70%;
	}
	
	.dataIntro{
	    width: 100%;
	    max-width: 400px;
        left: 50%;
	    transform: translateX(-50%);
	}
	
	.contactPopup svg {
    	max-height: 60vh;
    }
    
    .calClose{
	    position: fixed;
	    z-index: 999;
	    top: 38px;
	    right: 70px;
	    width: 35px;
	    height: 35px;
    }
    
    .cal{
        top: 37px;
	    right: 70px;
    }
    
    .bigCalendarWrap{
	    top: 45%;
    }
    
    .dataBg{
        height: 190px;
        bottom: 0px;
    }
    
    .dataCapture{
	    width: 90%;
	    left: 5%;
	    height: 100px;
	    top: calc(100% - 104px);
	    position: absolute;
	    z-index: 2;
    }
    
    .pageBlock{
        padding: 15vw 0;
    }
    
    h1 {
	    font-size: 4.1vw;
	    line-height: 5.5vw;
	}
    
    .textWrapper {
        font-size: 2.7vw;
	    line-height: 3.6vw;
	}
	
	.ctaButton {
    margin-top: 8vw;
    }
    
    .question {
    	font-size: 3vw;
    	line-height: 3.6vw;
    	margin-bottom: 4vw;
	}
	
	.textWrapper h2 {
    	font-size: 4vw;
    	line-height: 5vw;
    }
    
    #contactForm input{
    	padding: 2vw;
		margin-bottom: 3vw;
		font-size: 3vw;
		line-height: 4vw;
		width: calc(100% - 4vw);
		border-radius: 0;
	}
	
	#contactForm #message{
		font-size: 3vw;
		line-height: 4vw;
		border-radius: 0;
		height: 15vw;
	}
	
	.checkMessage{
		margin-left: 6vw;
		letter-spacing: 0.2em;
	    font-size: 1.6vw;
	    line-height: 2.4vw;
	    padding-bottom: 2vw;
	}
	
	.answer {
	    padding: 4vw 0px 10vw;
	}
	
	.shareLink{
	    font-size: 2.7vw;
	    line-height: 3.6vw;
	}
	
}
@media all and (max-width:450px) {
        .homeSlider p {
            font-size: 21px;
			line-height: 28px;
        }
        .footerColumns{
            width:85%;
            left:7.5%;
        }
        
        .textWrapper h2 {
		    font-size: 6vw;
		    line-height: 7.5vw;
	        margin-bottom: 10vw;
		}
		
		.textWrapper {
		    font-size: 4vw;
		    line-height: 5.6vw;
	        width: 66%;
		}
		
		.ctaButton {
		    margin-top: 10vw;
		}
		
		h1 {
	        font-size: 5.2vw;
		    line-height: 7vw;
		    
		}
		
		.question {
		    font-size: 4vw;
		    line-height: 5.6vw;
	    }
	    
	    .shareLink {
		    font-size: 3vw;
		    line-height: 4.6vw;
		    bottom: 0;
		    margin-top: 12vw;
		}
		
		.fullWidth h2 {
			font-size: 4.2vw;
    		line-height: 7vw;
    	}
    	
    	.fullWidth {
			padding: 12vw 0;
		}
		
		#bigCalendar .clndr-control-button.rightalign {
		    margin-right: 0px;
		}
		
		#bigCalendar .clndr-control-button{
			margin-left: 0px;
		}
}

@media screen and (-ms-high-contrast:active) and (-ms-high-contrast:none){
    .videoBlock .inner video{
        width:auto;
        height: 100%;
    }
}
@supports (-ms-ime-align: auto) {
    .videoBlock .inner video{
        width:auto;
        height: 100%;
    }
  }
  
@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 812px) 
and (-webkit-device-pixel-ratio : 3)
and (orientation : landscape) {
	
	.logo{
		width: 50%;
		top: 38%;
	}
	
	.dataIntro .description {
		font-family: 'Cerebri Medium';
		font-size: 4px;
		line-height: 8px;
		letter-spacing: 0.2em;
		-webkit-font-smoothing: antialiased;
		margin-bottom: 21px;
	}
	
	.dataIntro .title {
		font-family: 'Cerebri Medium';
		font-size: 12px;
		line-height: 30px;
		letter-spacing: 0.1em;
		-webkit-font-smoothing: antialiased;
	}
	
	.nav {
		position: fixed;
		z-index: 999;
		top: 20px;
		right: 20px;
		width: 35px;
		height: 35px;
		cursor: pointer;
	}
	
	.close {
		position: fixed;
		z-index: 999;
		top: 20px;
		right: 20px;
		width: 35px;
		height: 35px;
	}
	
}

@media only screen and (min-width : 2200px){
	
	.textWrapper{
		font-size: 21px;
		line-height: 28px;
    }
    	
}

@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : landscape) {
	
	.logo{
		width: 50%;
		top: 38%;
	}
	
	.dataIntro .description {
		font-family: 'Cerebri Medium';
		font-size: 4px;
		line-height: 8px;
		letter-spacing: 0.2em;
		-webkit-font-smoothing: antialiased;
		margin-bottom: 21px;
	}
	
	.dataIntro .title {
		font-family: 'Cerebri Medium';
		font-size: 12px;
		line-height: 30px;
		letter-spacing: 0.1em;
		-webkit-font-smoothing: antialiased;
	}
	
	.nav {
		position: fixed;
		z-index: 999;
		top: 20px;
		right: 20px;
		width: 35px;
		height: 35px;
		cursor: pointer;
	}
	
	.close {
		position: fixed;
		z-index: 999;
		top: 20px;
		right: 20px;
		width: 35px;
		height: 35px;
	}
	
}