/*
	Theme Name: Retrograde
	Theme URI: https://deeprootdesign.com
	Description: Retrograde Framework
	Version: 1.0.0-canary
	Author: Benjamin Motal (benjamin@deeprootdesign.com)
	Author URI: https://deeprootdesign.com
	Tags: HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */

body {
	font: 15px/1.6em 'gotham_htf_bookregular', Helvetica, Arial, sans-serif;
	color: #101010;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	height: auto;
	vertical-align:bottom;
}
img.alignright {
	float: right;
}
img.alignleft {
	float: left;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
.view-article {
	color: #9e005d;
}
.view-article:hover {
	color: #770046;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}
figure {
	margin: 0;
	padding: 0;
}
.graybg {
	background: #f7f7f9;
}
.whitebg {
	background: #FFFFFF;
}
.blackbg {
	background: #101010;
}

.entry-summary .stock.in-stock {
	display: none;
}

/* Mobile Deb Helper */

.mobile-dev-helper {
	/* display: none !important; */
	display: block;
	position: fixed;
	bottom: 5px;
	left: 5px;
	font-size: 10px;
	padding: 4px;
	color: #aaa;
	z-index: 99999;
}
.mobile-dev-helper span {
	display: none;
}

/* Wordpress */


img.size-full {
	width: 100%;
	height: auto;
}



/* Canary Forms */



body .gform_wrapper ul.gform_fields li.gfield {
    width: 100%;
    float: left;
}


body .gchoice_select_all, body .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label, body .gform_wrapper ul.gfield_radio li input[type=radio]:checked+label {
	font-weight: normal;
	font-family: 'gotham_htfbold';
}

body .gform_wrapper ul li.gfield {
    margin-top: 40px !important;
}
body .dark-form_wrapper ul li.gfield {
    margin-top: 20px !important;
}


.gform_wrapper .top_label .gfield_label, .gform_wrapper legend.gfield_label {
	font-size: 11px;
	font-family: 'gotham_htfbold';
	letter-spacing: 1px;
	color: #101010;
	text-transform: uppercase;
}

.gform_wrapper.dark-form_wrapper .top_label .gfield_label, .gform_wrapper.dark-form_wrapper legend.gfield_label {
	color: #FFF;
}

input.search-field {
	border: 1px solid #0D0D0D;
	padding: 15px 15px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	width: calc(100% - 160px);
	float: left;
     margin-right: 10px;
}

.woocommerce-product-search {
	display: block;
	width: 100%;
	clear: both;
}

.woocommerce-product-search input[type=submit] {
	background: #9e005d;
    border: 1px solid #9e005d;
    font-family: 'gotham_htfbold';
    font-size: 12px;
    padding: 16px 30px 17px;
    letter-spacing: 1px;
    color: #FFF;
    text-transform: uppercase;
    margin-top: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    width: 150px;
}


.woocommerce-product-search input[type=submit]:hover {
	background: #000;
	color: #FFF;
	border: 1px solid #000;
}


body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	border: 1px solid #0D0D0D;
	padding: 15px 15px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

body .gform_wrapper.dark-form_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	border: 1px solid #FFF;
	background: #101010;
	color: #FFF;
	padding: 15px 15px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):hover {
	border: 1px solid #AAA;
}

body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus {
	border: 1px solid #9e005d;
}

.gform_wrapper textarea {
	border: 1px solid #0D0D0D;
	padding: 15px 15px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.gform_wrapper.dark-form_wrapper textarea {
	border: 1px solid #FFF;
	height: 120px !important;
	background: #101010;
	color: #FFF;
}

.gform_wrapper textarea:hover {
	border: 1px solid #AAA;
}

.gform_wrapper textarea:focus {
	border: 1px solid #9e005d;
	outline: none;
}


.gform_wrapper .photo-checkbox ul.gfield_checkbox li {
	float: left;
    width: 33.33%;
    margin-bottom: 16px;
}
.photo-checkbox ul.gfield_checkbox li input {
	display: none !important;
}
.photo-checkbox ul.gfield_checkbox li label {
	position: relative;
	width: calc(100% - 16px);
	display: block;
	background-size: cover;
	background-position: center center;
	line-height: 0px;
	font-size: 0px;
	max-width: 100%;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.photo-checkbox ul.gfield_checkbox li label:after {
  content: "";
  display: block;
  padding-bottom: 80%;
}
.photo-checkbox ul.gfield_checkbox li input[type="checkbox"]:checked + label:after {
    background: rgba(255, 191, 0, .8);
}
.photo-checkbox ul.gfield_checkbox li label:hover {
    opacity: .8
}

#label_1_4_1 {
		background-image: url('img/w1.jpg');
}
#label_1_4_2 {
		background-image: url('img/w2.jpg');
}
#label_1_4_3 {
		background-image: url('img/w3.jpg');
}
#label_1_4_4 {
		background-image: url('img/w4.jpg');
}
#label_1_4_5 {
		background-image: url('img/w5.jpg');
}
#label_1_4_6 {
		background-image: url('img/w6.jpg');
}
#label_1_4_7 {
		background-image: url('img/w7.jpg');
}
#label_1_4_8 {
		background-image: url('img/w8.jpg');
}
#label_1_4_9 {
		background-image: url('img/w9.jpg');
}


.gform_wrapper .three-col-checkbox ul.gfield_checkbox li {
	float: left;
    width: 33.33%;
    margin-bottom: 16px;
}
.three-col-checkbox ul.gfield_checkbox li input {
	display: none !important;
}

.three-col-checkbox ul.gfield_checkbox li label {
	padding-left: 26px;
}

.three-col-checkbox ul.gfield_checkbox li label::before {
	content: "";
	width: 16px;
	height: 16px;
	background: url('img/check1.svg');
	line-height: 0px;
	font-size: 0px;
	max-width: 100%;
	position: absolute;
    top: 3px;
    left: 0px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.three-col-checkbox ul.gfield_checkbox li input[type="checkbox"]:checked + label::before {
	background: url('img/check2.svg');
}


.three-col-checkbox ul.gfield_checkbox li {
    margin-bottom: 7px !important;
}

body .gform_wrapper .gform_footer input.button, body .gform_wrapper .gform_footer input[type=submit] {
	background: #000;
	width: calc(100% - 16px);
	display: block;
	border: 1px solid #000;
	font-family: 'gotham_htfbold';
	font-size: 12px;
	padding: 19px;
	letter-spacing: 1px;
	color: #FFF;
	text-transform: uppercase;
	margin-top: 16px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}


body .gform_wrapper.dark-form_wrapper .gform_footer input.button, body .gform_wrapper.dark-form_wrapper .gform_footer input[type=submit] {
	background: #000;
	width: auto;
	border: 1px solid #FFF;
	margin-top: 8px;
}


body .gform_wrapper .gform_footer input.button:hover, body .gform_wrapper .gform_footer input[type=submit]:hover {
	background: #9e005d;
	color: #FFF;
	border: 1px solid #9e005d;
}


/*------------------------------------*\
    Layout & Grid
\*------------------------------------*/


/* wrapper */
.wrapper {
	float: left;
     clear: both;
     width: 100%;
     position: relative;
     overflow: hidden;
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 8%;
	position: relative;
	max-width: 1520px;
}
.container-small {
	width: 100%;
	margin: 0 auto;
	padding: 0 8%;
	position: relative;
	max-width: 1120px;
}
.container-full {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
	max-width: none;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}




.col {
  margin-right: 30px;
}
.col:last-child {
	margin-right: 0px;
}
.col-full {
  margin-right: 0px;
}

.flex-grid {
  display: flex;
}
.align-center {
	align-items: center;
}
.align-top {
	align-self: flex-start;
}
.align-bottom {
	align-self: flex-end;
}

/* Grid 12 Columns */
.span-1 		{width: 8.333%;}
.span-2 		{width: 16.66%;}
.span-3	 	{width: 25%;}
.span-4 		{width: 33.33%;}
.span-5 		{width: 41.66%;}
.span-6		{width: 49.3%;}
.span-7 		{width: 58.33%;}
.span-8 		{width: 66.66%;}
.span-9 		{width: 75%;}
.span-10 		{width: 83.33%;}
.span-11 		{width: 91.66%;}
.span-12	 	{width: 100%;}

.col-full.span-1 		{width: 8.333%;}
.col-full.span-2 		{width: 16.66%;}
.col-full.span-3	 	{width: 25%;}
.col-full.span-4 		{width: 33.33%;}
.col-full.span-5 		{width: 41.66%;}
.col-full.span-6		{width: 50%;}
.col-full.span-7 		{width: 58.33%;}
.col-full.span-8 		{width: 66.66%;}
.col-full.span-9 		{width: 75%;}
.col-full.span-10 		{width: 83.33%;}
.col-full.span-11 		{width: 91.66%;}
.col-full.span-12	 	{width: 100%;}

/* Padding Top */
.pt10		{padding-top: 10px;}
.pt20		{padding-top: 20px;}
.pt25		{padding-top: 25px;}
.pt30		{padding-top: 30px;}
.pt40		{padding-top: 40px;}
.pt50		{padding-top: 50px;}
.pt60		{padding-top: 60px;}
.pt70		{padding-top: 70px;}
.pt80		{padding-top: 80px;}
.pt90		{padding-top: 90px;}
.pt100		{padding-top: 100px;}
.pt110		{padding-top: 110px;}
.pt120		{padding-top: 120px;}
.pt130		{padding-top: 130px;}
.pt140		{padding-top: 140px;}
.pt150		{padding-top: 150px;}
.pt160		{padding-top: 160px;}

/* Padding Bottom */
.pb10		{padding-bottom: 10px;}
.pb20		{padding-bottom: 20px;}
.pb25		{padding-bottom: 25px;}
.pb30		{padding-bottom: 30px;}
.pb40		{padding-bottom: 40px;}
.pb50		{padding-bottom: 50px;}
.pb60		{padding-bottom: 60px;}
.pb70		{padding-bottom: 70px;}
.pb80		{padding-bottom: 80px;}
.pb90		{padding-bottom: 90px;}
.pb100		{padding-bottom: 100px;}
.pb110		{padding-bottom: 110px;}
.pb120		{padding-bottom: 120px;}
.pb130		{padding-bottom: 130px;}
.pb140		{padding-bottom: 140px;}
.pb150		{padding-bottom: 150px;}
.pb160		{padding-bottom: 160px;}

/* Padding left */
.pl10		{padding-left: 10px;}
.pl20		{padding-left: 20px;}
.pl25		{padding-left: 25px;}
.pl30		{padding-left: 30px;}
.pl40		{padding-left: 40px;}
.pl50		{padding-left: 50px;}
.pl60		{padding-left: 60px;}
.pl70		{padding-left: 70px;}
.pl80		{padding-left: 80px;}
.pl90		{padding-left: 90px;}
.pl100		{padding-left: 100px;}
.pl110		{padding-left: 110px;}
.pl120		{padding-left: 120px;}
.pl130		{padding-left: 130px;}
.pl140		{padding-left: 140px;}
.pl150		{padding-left: 150px;}
.pl160		{padding-left: 160px;}

/* Padding right */
.pr10		{padding-right: 10px;}
.pr20		{padding-right: 20px;}
.pr25		{padding-right: 25px;}
.pr30		{padding-right: 30px;}
.pr40		{padding-right: 40px;}
.pr50		{padding-right: 50px;}
.pr60		{padding-right: 60px;}
.pr70		{padding-right: 70px;}
.pr80		{padding-right: 80px;}
.pr90		{padding-right: 90px;}
.pr100		{padding-right: 100px;}
.pr110		{padding-right: 110px;}
.pr120		{padding-right: 120px;}
.pr130		{padding-right: 130px;}
.pr140		{padding-right: 140px;}
.pr150		{padding-right: 150px;}
.pr160		{padding-right: 160px;}





/*------------------------------------*\
    FONTS
\*------------------------------------*/


/* Gotham Font-Face Load */

@font-face {
    font-family: 'gotham_htf_lightregular';
    src: url('fonts/gothamhtf-light-webfont.eot');
    src: url('fonts/gothamhtf-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/gothamhtf-light-webfont.woff') format('woff'),
         url('fonts/gothamhtf-light-webfont.ttf') format('truetype'),
         url('fonts/gothamhtf-light-webfont.svg#gotham_htf_lightregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gotham_htf_bookregular';
    src: url('fonts/gothamhtf-book-webfont.eot');
    src: url('fonts/gothamhtf-book-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/gothamhtf-book-webfont.woff') format('woff'),
         url('fonts/gothamhtf-book-webfont.ttf') format('truetype'),
         url('fonts/gothamhtf-book-webfont.svg#gotham_htf_bookregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gotham_htf_mediumregular';
    src: url('fonts/gothamhtf-medium-webfont.eot');
    src: url('fonts/gothamhtf-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/gothamhtf-medium-webfont.woff') format('woff'),
         url('fonts/gothamhtf-medium-webfont.ttf') format('truetype'),
         url('fonts/gothamhtf-medium-webfont.svg#gotham_htf_mediumregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gotham_htfbold';
    src: url('fonts/gothamhtf-bold-webfont.eot');
    src: url('fonts/gothamhtf-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/gothamhtf-bold-webfont.woff') format('woff'),
         url('fonts/gothamhtf-bold-webfont.ttf') format('truetype'),
         url('fonts/gothamhtf-bold-webfont.svg#gotham_htfbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gotham_htf_ultraregular';
    src: url('fonts/gothamhtf-ultra-webfont.eot');
    src: url('fonts/gothamhtf-ultra-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/gothamhtf-ultra-webfont.ttf') format('truetype'),
	    url('fonts/gothamhtf-ultra-webfont.svg#gotham_htfbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fonts/fa-brands-400.eot");
  src: url("fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fonts/fa-brands-400.woff2") format("woff2"), url("fonts/fa-brands-400.woff") format("woff"), url("fonts/fa-brands-400.ttf") format("truetype"), url("fonts/fa-brands-400.svg#fontawesome") format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }




/*------------------------------------*\
    TYPOGRAPHY
\*------------------------------------*/

p {
	margin: 0px 0px 15px 0px;
}

strong {
	font-family: 'gotham_htfbold';
	font-weight: normal;
}

h1 {
	font-family: 'gotham_htf_lightregular';
	font-weight: normal;
	font-size: 55px;
	line-height: 1.1em;
	color: #101010;
	margin: 0px 0px 20px 0px;
	letter-spacing: -2px;
}
h2 {
	font-family: 'gotham_htf_lightregular';
	font-weight: normal;
	font-size: 35px;
	line-height: 1.1em;
	color: #101010;
	margin: 0px 0px 20px 0px;
	letter-spacing: -0.5px;
}
h2 strong {
	font-family: 'gotham_htf_ultraregular';
	letter-spacing: 1px;
}
h3 {
	font-family: 'gotham_htf_lightregular';
	font-weight: normal;
	font-size: 31px;
	line-height: 1.1em;
	color: #101010;
	margin: 0px 0px 20px 0px;
	letter-spacing: -0.5px;
}
h4 {
	font-family: 'gotham_htf_lightregular';
	font-weight: normal;
	font-size: 26px;
	line-height: 1.1em;
	color: #101010;
	margin: 0px 0px 20px 0px;
}
h5 {
	font-family: 'gotham_htf_lightregular';
	font-weight: normal;
	font-size: 22px;
	line-height: 1.1em;
	color: #101010;
	margin: 0px 0px 20px 0px;
}
h6 {
	font-family: 'gotham_htf_lightregular';
	font-weight: normal;
	font-size: 18px;
	line-height: 1.1em;
	color: #101010;
	margin: 0px 0px 20px 0px;
}



/*------------------------------------*\
    BUTTONS
\*------------------------------------*/

.btn1 {
	font-family: 'gotham_htfbold';
	font-size: 11px;
	letter-spacing: 1.5px;
	border: 1px solid #FFFFFF;
	padding: 10px 20px;
	display: inline-block;
	text-transform: uppercase;
	color: #FFF;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.btn1:hover {
	background: #9e005d;
	color: #FFF;
	border: 1px solid #9e005d;
}


.btn2 {
	font-family: 'gotham_htfbold';
	font-size: 11px;
	letter-spacing: 1.5px;
	border: 1px solid #000;
	padding: 10px 20px;
	display: inline-block;
	text-transform: uppercase;
	color: #000;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.btn2:hover {
	background: #9e005d;
	color: #FFF;
	border: 1px solid #9e005d;
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/


/* header */
.header {
	height: 60px;
	background: none;
	width: 100%;
	position: fixed;
	z-index: 100;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	transition-delay: 0s;
}
.header.scroll-header {
	height: 60px;
	background: #FFF;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
	transition-delay: .5s;
}

.logo {
	float: left;
	margin-top: 20px;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
	margin-left: 8%;
}
.logo:hover {
	opacity: .7;
}
.header.scroll-header .logo {
	margin-top: 20px;
}
.logo svg {
	display: block;
}
.header.scroll-header .logo {
	margin-top: 4px;
}

.header.scroll-header .logo svg {
    width: 163px;
    height: auto;
}

.header .header-logo-svg {
	fill:#FFFFFF;
	-webkit-transition: all .75s ease-in-out;
	-moz-transition: all .75s ease-in-out;
	-ms-transition: all .75s ease-in-out;
	-o-transition: all .75s ease-in-out;
	transition: all .75s ease-in-out;
}

.header.scroll-header .header-logo-svg {
	fill:#010101;
}

body.single-post .header .header-logo-svg, body.single-work .header .header-logo-svg {
	fill:#010101;
}

body.page-template-page-no-photo-header .header .header-logo-svg, body.single-work .header .header-logo-svg {
	fill:#010101;
}




.right-menu-wrapper {
	position: absolute;
    top: 48px;
    right: 5%;
    margin-right: 70px;
    cursor: pointer;
    -webkit-transition: all .75s ease-in-out;
    -moz-transition: all .75s ease-in-out;
    -ms-transition: all .75s ease-in-out;
    -o-transition: all .75s ease-in-out;
    transition: all .75s ease-in-out;
}
.right-menu-wrapper a {
	color: #FFF;
	font-size: 11px;
	font-family: 'gotham_htfbold';
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.right-menu-wrapper a:hover {
	color: #9e005d !important;
}

body.page-template-page-no-photo-header .right-menu-wrapper a, body.single-post .right-menu-wrapper a {
	color: #000;
}



.scroll-header .right-menu-wrapper {
	top: 16px;
}
.scroll-header .right-menu-wrapper a {
	color: #000;
	-webkit-transition: all .75s ease-in-out;
     -moz-transition: all .75s ease-in-out;
     -ms-transition: all .75s ease-in-out;
     -o-transition: all .75s ease-in-out;
     transition: all .75s ease-in-out;
}
.scroll-header .right-menu-wrapper a:hover {
	color: #9e005d;
}

/* logo */
.logo {

}
.logo-img {

}







/*------------------------------------*\
    DESKTOP NAV
\*------------------------------------*/

#toggle {
	display: none;
}


.primary_nav_wrap
{
	margin-top: 43px;
	position: absolute;
	right: 5%;
}
.scroll-header .primary_nav_wrap {
    margin-top: 12px;
}
.primary_nav_wrap.right {
	width: auto;
	right: 4%;
	margin-top: 33px;
}

.primary_nav_wrap ul
{
	list-style:none;
	position:relative;
	display: inline-block;
	margin: 0px 0px 0px 30px;
	padding:0
}

.primary_nav_wrap #menu-right-menu
{
	float: right;
}
.primary_nav_wrap #menu-right-menu li a {
	padding: 2px 32px;
	border: #000 1px solid;
	border-radius: 26px;
	margin-right: 0px;
}
.primary_nav_wrap #menu-right-menu li a:hover {
	border: #9e005d 1px solid;
	color: #FFF;
	background: #9e005d;
}

.primary_nav_wrap ul a
{
	font-family: 'gotham_htf_mediumregular';
	font-size: 14px;
	display:block;
	color:#FFF;
	text-transform: uppercase;
	text-decoration:none;
	line-height:35px;
	padding: 0 1px;
	margin: 0 13px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.scroll-header .primary_nav_wrap ul a {
	color:#000;
}

.primary_nav_wrap ul li.last-menu a {
	color: #FFF;
	border: 1px solid #FFF;
	padding: 0px 30px;
	text-transform: uppercase;
	display: inline-block;
	font-size: 14px;
	margin-left: 20px;
	letter-spacing: 0px;
	font-family: "gotham_htf_bookregular";
	-webkit-border-radius: 26px;
	border-radius: 26px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;

}
.primary_nav_wrap ul li.last-menu a:hover {
	background: #FFF;
	color: #000;
}

.primary_nav_wrap ul li
{
	position:relative;
	float:left;
	margin:0;
	padding:0
}

.primary_nav_wrap ul li.current-menu-item a
{
	color: #FFF;
}
.scroll-header .primary_nav_wrap ul li.current-menu-item a
{
	color: #000;
}

.primary_nav_wrap ul li.last-menu.current-menu-item a
{
	color: #FFF;
}



.primary_nav_wrap ul li.current-menu-item ul a
{
	/*background:#000;*/
}


#ihf-main-container #saveSearchButton.btn-primary {
	color: #FFF !important;
	border-color: #9e005d !important;
}

#ihf-main-container #saveSearchButton.btn-primary:hover {
	color: #FFF !important;
	background: #315a9d !important;
	border-color: #315a9d !important;

}

.primary_nav_wrap ul li.current-menu-item a:hover
{
	color: #9e005d;
}

.primary_nav_wrap ul li.current-menu-ancestor a
{
	color: #000;
	border-bottom: 1px solid #6c6d6d;
}

.primary_nav_wrap ul li.current-menu-ancestor a:hover
{
	color: #9e005d;
	border-bottom: 1px solid #6c6d6d;
}

.primary_nav_wrap ul li.current-menu-ancestor ul a {
	color: #ababab;
}

.primary_nav_wrap ul li.current-menu-ancestor ul li.current-menu-item a {
	color: #9e005d;
}

.primary_nav_wrap ul.sub-menu li.current-menu-item a
{
	color: #333;
	background:#FFF;
}

.primary_nav_wrap ul.sub-menu li.current-menu-item a:hover
{
	color: #9e005d;
}

.primary_nav_wrap ul.sub-menu li.current-menu-ancestor a
{
	color: #333;
	background:#FFF;
}

.primary_nav_wrap ul.sub-menu li.current-menu-ancestor a:hover
{
	color: #FFF;
	background:#e9e9e9;
}

.primary_nav_wrap ul li a:hover
{
	color: #9e005d;

}

.primary_nav_wrap ul ul
{
	opacity: 0;
	background: #FFF;
	visibility: hidden;
	position:absolute;
	top:100%;
	left:-20px;
	padding: 14px 0px;
	-webkit-border-radius: 6px;
     border-radius: 6px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-shadow: 0 5px 20px 0 rgba(0,0,0,.2);
	box-shadow: 0 5px 20px 0 rgba(0,0,0,.2);
	margin-top: -1px;
}

.primary_nav_wrap ul ul li
{
	float:none;
	width:230px
}

.primary_nav_wrap ul.sub-menu {
	margin-top: -1px;
	text-align: left;
}

.smaller .primary_nav_wrap ul.sub-menu {
	margin-top: 0px;
}

.primary_nav_wrap ul ul a
{
	line-height:120%;
	padding:7px 0px;
	font-size:13px;
	background:#FFF;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	color: #000;
	border-bottom: none !important;
}

.primary_nav_wrap ul ul a:hover {
	color: #9e005d;
}

.primary_nav_wrap ul ul ul
{
	top:0;
	left:100%
}

.primary_nav_wrap ul li:hover > ul
{
	opacity: 1;
	visibility: visible;
}










/*------------------------------------*\
    MOBILE NAV
\*------------------------------------*/

.button_container .menu-text {
	margin-left: -74px;
	color: #c1c1c1;
	text-transform: uppercase;
	font-family: 'gotham_htf_lightregular';
}

.button_container.active .menu-text {
	color: #FFF;
}

.button_container {
  position: absolute;
  top: 52px;
  right: 5%;
  height: 27px;
  width: 38px;
  cursor: pointer;
  z-index: 9999;
  /* transition: opacity .25s ease; */
  -webkit-transition: all .75s ease-in-out;
-moz-transition: all .75s ease-in-out;
-ms-transition: all .75s ease-in-out;
-o-transition: all .75s ease-in-out;
transition: all .75s ease-in-out;

}
.header.scroll-header .button_container {
	top: 19px;
}
.button_container:hover {
  opacity: .7;
}

.button_container .top {
  transition: all .3s ease-in-out;
}
.button_container .middle {
  transition: all .3s ease-in-out;
}
.button_container .bottom {
  transition: all .3s ease-in-out;
}

.button_container.active .top {
  transform: translateY(9px) translateX(0) rotate(45deg);
  transition: all .3s ease-in-out;
}
.button_container.active .middle {
  opacity: 0;
  transition: all .3s ease-in-out;
}
.button_container.active .bottom {
  transform: translateY(-9px) translateX(0) rotate(-45deg);
  transition: all .3s ease-in-out;
}
.button_container span {
  background: #FFF;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.header.scroll-header .button_container span {
  background: #010101;
}
body.single-post .header .button_container span, body.single-work .header .button_container span {
  background: #010101;
}
body.page-template-page-no-photo-header .header .button_container span, body.single-work .header .button_container span {
  background: #010101;
}
body.single-work .right-menu-wrapper a {
  color: #010101;
}
body.single-work .header.menu-open .right-menu-wrapper a {
    color: #FFF;
}
body.single-work .header.menu-open.scroll-header .right-menu-wrapper a {
    color:#010101;
}

body.page-template-page-no-photo-header .header.menu-open .right-menu-wrapper a {
	color: #FFF;
}
body.page-template-page-no-photo-header .header.menu-open.scroll-header .right-menu-wrapper a {
	color: #010101;
}

body.page-template-page-no-photo-header .header .button_container.active span, body.single-work .header .button_container.active span, body.single-post .header .button_container.active span {
  background: #FFF;
}
body.page-template-page-no-photo-header .header.scroll-header .button_container.active span, body.single-work .header.scroll-header .button_container.active span, body.single-post .header.scroll-header .button_container.active span {
  background: #010101;
}
body.page-template-page-no-photo-header .header.menu-open .header-logo-svg, body.single-work .header.menu-open .header-logo-svg, body.single-post .header.menu-open .header-logo-svg {
	fill: #FFF;
}
body.page-template-page-no-photo-header .header.menu-open.scroll-header .header-logo-svg, body.single-work .header.menu-open.scroll-header .header-logo-svg, body.single-post .header.menu-open.scroll-header .header-logo-svg {
	fill: #010101;
}



body.single-post .header.menu-open .right-menu-wrapper a {
	color: #FFF;
}
body.single-post .header.menu-open.scroll-header .right-menu-wrapper a {
	color: #010101;
}



.button_container span:nth-of-type(2) {
  top: 9px;
}
.button_container span:nth-of-type(3) {
  top: 18px;
}

.overlay {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
  z-index: 50;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
#overlay-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-home {
	background: #101010;
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-home.default {
	opacity: 1
}
#overlay-bg-home.active {
	opacity: 1
}
#overlay-bg-services {
	background: url('img/menu-services.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-services.default {
	opacity: 1
}
#overlay-bg-services.active {
	opacity: 1
}
#overlay-bg-work {
	background: url('img/menu-work.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-work.default {
	opacity: 1
}
#overlay-bg-work.active {
	opacity: 1
}

#overlay-bg-impact {
	background: url('img/menu-impact.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-impact.default {
	/* opacity: 1 */
}
#overlay-bg-impact.active {
	opacity: 1
}

#overlay-bg-about {
	background: url('img/menu-about.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-about.default {
	opacity: 1
}
#overlay-bg-about.active {
	opacity: 1
}


#overlay-bg-blog {
	background: url('img/menu-services.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	transition: .5s;
}
#overlay-bg-blog.default {
	opacity: 1
}
#overlay-bg-blog.active {
	opacity: 1
}


.overlay-menu {
	position: relative;
  	top: 50%;
  	transform: translateY(-50%);
}

.overlay-menu .blog-menu {
	display: none;
}
.overlay-menu .start-a-project {
	display: none;
}


.overlay-menu ul {
  list-style-type: none;
  overflow: hidden;
  padding: 0;
}

.overlay-menu li {
  transform: translateX(-100%);
  transition: transform 0.5s, opacity 2s;
  opacity: 0;
}

.overlay-menu li a {
	font-size: 45px;
	line-height: 50px;
	color: #FFF;
	text-transform: uppercase;
	font-family: 'gotham_htfbold';
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.overlay-menu li a:hover {
	color: #9e005d;
}
.overlay-menu li.current-menu-item a {
	font-size: 45px;
	line-height: 50px;
	color: #FFF;
	text-transform: uppercase;
	font-family: 'gotham_htf_lightregular';
}
.overlay-menu li.current-menu-item a:hover {
	color: #9e005d;
}



.overlay-menu li:nth-of-type(1) {
	transition-delay: 0s;
}
.overlay-menu li:nth-of-type(2) {
	transition-delay: .1s;
}
.overlay-menu li:nth-of-type(3) {
	transition-delay: .2s;
}
.overlay-menu li:nth-of-type(4) {
	transition-delay: .3s;
}
.overlay-menu li:nth-of-type(5) {
	transition-delay: .4s;
}
.overlay-menu li:nth-of-type(6) {
	transition-delay: .5s;
}
.overlay-menu li:nth-of-type(7) {
	transition-delay: .6s;
}
.overlay-menu li:nth-of-type(8) {
	transition-delay: .7s;
}
.overlay-menu li:nth-of-type(9) {
	transition-delay: .8s;
}
.overlay-menu li:nth-of-type(10) {
	transition-delay: .9s;
}


.overlay-menu .show {
  opacity: 1;
  transform: translateX(0%);
}





/* sidebar */
.sidebar {

}
/* footer */
.footer {
	border-top: 1px solid rgba(0,0,0,.1);
}
.footer.dark {
	background: #101010;
	border-top: 1px solid rgba(255,255,255,.2);

}
.footer-wrapper {
	float: left;width:100%;clear:both;
	padding-left: 8%;
	padding-right: 8%;
}
.footer-logo {
	float: left;
	width: 163px;
}
.footer-menu {
	float: right;
	margin-top: 20px;
}
.footer-menu ul {
	list-style: none;
	margin: 0px;
}
.footer-menu ul li {
	display: inline-block;
	margin-left: 40px;
}
.footer-menu ul li a {
	font-size: 12px;
	letter-spacing: .5px;
	font-family: 'gotham_htf_bookregular';
	text-transform: uppercase;
	color: #000;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.footer-menu ul li a:hover {
	color: #9e005d;
}
.footer.dark .footer-menu ul li a {
	color: #FFF;
}
.footer.dark .footer-menu ul li a:hover {
	color: #9e005d;
}

.footer-locations {
	float: left;
	width: 100%;
	clear: both;
}
.footer-location-block {
	float: left;
	width: 100%;
	clear: both;
	margin-bottom: 18px;
	font-size: 12px;
	line-height: 20px;
	color: #0E0E0E;
	text-transform: uppercase;
}
.footer.dark .footer-location-block {
	color: #FFF;
}

.footer-location-block strong {
	font-family: 'gotham_htf_mediumregular';
}
.footer-location-block.clear {
	clear: both;
}
.footer-buttons {
	float: left;
	clear: both;
	width: 100%;
}
.footer-buttons .btn1 {
	display: none;
}
.footer-button-left {
	float:left;
}
.footer-button-right {
	float:right;
}
.footer-button-right span {
    font-size: 19px;
    top: 3px;
    position: relative;
    padding-right: 7px;
    margin-top: -10px;
    display: inline-block;
}

.copyright {
	background: #101010;
	color: #FFF;
	font-size: 11px;
	font-family: 'gotham_htf_bookregular';
	text-transform: uppercase;
	line-height: 14px;
	letter-spacing: .5px;
	float: left;
	width: 100%;
	clear:both;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	margin-top: 70px;
}
.copyright a {
	color: #FFF;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.copyright a:hover {
	color: #9e005d;
}

.footer.dark .copyright {
	background: #FFF;
	color: #101010;
}
.footer.dark .copyright a {
	color: #101010;
}
.footer.dark .copyright a:hover {
	color: #9e005d;
}
.footer-logo-white {
	display: none;
}
.footer.dark .footer-logo-black {
	display: none;
}
.footer.dark .footer-logo-white {
	display: block;
}

.footer.dark .footer-buttons .btn1 {
	display: block;
}
.footer.dark .footer-buttons .btn2 {
	display: none;
}


/* Instagram Pull */

.ig-pull {
	width: 100%;
	position: relative;
}
.ig-pull-mobile {
	display: none;
}

.ig-image {
	width: 100%;
	float: left;
	-webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
	  background-position: center center;
	  position: relative;
}
.ig-image:hover .ig-mask {
	opacity: 1;
}
.ig-mask {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255, 191, 0, .8);
	opacity: 0;
	text-align: center;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	display: flex;
	align-items: center;
}
.ig-mask img {
	width: 92px;
	height: 92px;
	margin-left: auto;
	margin-right: auto;
}

.ig-block-1 {
	float: left;
	width: calc(32% - 20px);
	margin-right: 26px;
}
.ig-block-2 {
	float: left;
	width: calc(18% - 10px);
	margin-right: 13px;
	margin-top: -2.4%;
}
.ig-block-3 {
	float: left;
	width: calc(18% - 10px);
	margin-left: 13px;
	margin-bottom: -2.4%;
}
.ig-block-4 {
	float: left;
	width: calc(32% - 20px);
	margin-left: 26px;
}

.ig3 {
	width: calc(100% - 50px);
	margin-top: 26px;
	margin-left: 50px;
}
.ig4 {
	width: calc(100% - 50px);
	margin-bottom: 26px;
	margin-right: 50px;
}


.ig-image-1 {
	float: left;
	width: 25%;
	-webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
}
.ig-image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.ig-image-2 {
	float: left;
	width: 12.5%;
}
.ig-image-3 {
	float: left;
	width: 12.5%;
}
.ig-image-4 {
	float: left;
	width: 12.5%;
	clear: left;
}
.ig-image-5 {
	float: left;
	width: 12.5%;
}
.ig-image-6 {
	float: left;
	width: 25%;
}


/*------------------------------------*\
    Team
\*------------------------------------*/

.team-post-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	/* cursor: pointer; */
	float: left;
	width: 25%;
}

.team-post-wrap img {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.team-post-wrap:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.team-post-wrap-mask {
	z-index: 10;
	background: rgba(233, 193, 77, 0);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
  align-items: center;
  justify-content: center;

	text-align: center;
	opacity: 0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.team-post-wrap:hover .team-post-wrap-mask {
	background: rgba(255, 192, 0, 0.6);
	opacity: 1;
}

.team-post-mame {
	font-size: 15px;
	line-height: 19px;
	color: #FFF;
	font-family: 'gotham_htf_mediumregular';
	text-transform: uppercase;
}
.team-post-job-title {
	font-size: 13px;
	line-height: 19px;
	color: #FFF;
	text-transform: uppercase;
}
.team-post-spacer {
	border-bottom: 1px solid #FFF;
	height: 1px;
	margin-top: 12px;
	margin-bottom: 13px;
}
.team-post-wrap-mask .fab {
	color: #FFF;
	font-size: 17px;
	padding-left: 3px;
	padding-right: 3px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.team-post-wrap-mask .fab:hover {
	color: #000;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}



/*------------------------------------*\
    HERO
\*------------------------------------*/

.hero {
	min-height: 100vh;
	background: url('https://www.bozemanwinegallery.com/wp-content/uploads/2020/06/hero1.jpg');
	background-size: cover;
	background-position: center center;
}
.hero-left {
	min-height: 100vh;
	display: flex;
     align-items: center;
	padding-left: 8%;
	padding-right: 8%;
}
.hero-right {
	/* min-height: 100vh;
	position: relative; */
}
.hero h1 {
	color: #FFF;
	font-size: 35px;
	line-height: 36px;
}
.hero h1 strong {
	font-family: 'gotham_htf_ultraregular';
	letter-spacing: 1px;
}
.hero-mask {
	/* background: rgba(0, 0, 0, 0.1); */
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10;
}




.hero .btn1 {
	margin-top: 12px;
}


.slick-hero {
	height: 100vh;
	position: relative;
}
.slick-hero .slick-list {
	height: 100vh !important;
}
.slick-hero .slick-list .slick-track {
	height: 100vh !important;
}

.slick-hero-slide {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	display: flex !important;
	align-items: center;
  	justify-content: center;
	-webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
     background-size: cover;
     background-position: top center;
     background-repeat: no-repeat;
	font-size: 80vh;
	font-family: 'gotham_htf_ultraregular';
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

/* PAGE/POST Banner */


.tax-product_cat .page-banner {
	margin-top: 0px;
}
.post-type-archive .page-banner {
	margin-top: 0px;
}

.page-banner {
    height: 480px;
    margin-top: 60px;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-bottom: 10px;
    /* overflow: visible;
    backgrouncolor: rgba(0, 0, 0, 0.2);
    background-blend-mode: darken; */
}
body.single-post .page-banner, body.single-work .page-banner {
	height: 280px;
	padding-top: 100px;
}

body.page-template-page-no-photo-header .page-banner {
	margin-bottom: -80px;
}

.page-banner.tall {
	height: 720px;
}


.page-title-wrap {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #FFF;
}
.page-title-wrap h1 {
	font-size: 55px;
	line-height: 55px;
	color: #FFF;
	font-family: 'gotham_htf_lightregular';
	text-transform: uppercase;
}
.page-title-wrap h1 strong {
	font-family: 'gotham_htf_ultraregular';
	letter-spacing: 2px;
}
body.single-post .page-title-wrap, body.single-work .page-title-wrap {
	color: #0B0B0B;
}
body.single-post .page-title-wrap h1, body.single-work .page-title-wrap h1 {
	color: #101010;
	font-size: 35px;
	line-height: 37px;
}


body.page-template-page-no-photo-header .page-title-wrap, body.single-work .page-title-wrap {
	color: #0B0B0B;
}
body.page-template-page-no-photo-header .page-title-wrap h1, body.single-work .page-title-wrap h1 {
	color: #101010;
}



.page-title-wrap p {
	text-transform: uppercase;
}
.page-sub-headline {
	padding-left: 25%;
	padding-right: 25%;
}
.post-date {
	color: #0B0B0B;
}

.back-to {
	color: #9e005d;
	font-size: 11px;
	line-height: 13px;
	font-family: 'gotham_htfbold';
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	margin-right: -20px;
	margin-bottom: 18px;
	display: inline-block;
}
.back-to:hover {
	opacity: .8;
}
.back-to::after {
	content: "";
	height: 9px;
	width: 10px;
	background: url('img/arrow-yl.svg');
	position: absolute;
	left: -20px;
	top: 2px;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.back-to:hover::after {
	left: -24px;
}




.forward-to {
	color: #010101;
	font-size: 11px;
	line-height: 13px;
	font-family: 'gotham_htfbold';
	text-transform: uppercase;
	letter-spacing: 2px;
	position: relative;
	margin-right: -20px;
	margin-bottom: 18px;
	display: inline-block;
}
.forward-to:hover {
	opacity: .8;
}
.forward-to::after {
	content: "";
	height: 9px;
	width: 10px;
	background: url('img/aarow-yr.svg');
	position: absolute;
	right: -20px;
	top: 2px;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.forward-to:hover::after {
	right: -24px;
}



body.single-post .back-to, body.single-work .back-to {
	color: #101010;
}
body.post-type-archive-team .back-to:hover {
	color: #FFF;
}




/* About Page */


.the-bird-box {
	min-height: 500px;
	float: left;
	width: 100%;
	margin-top: 60px;
	position: relative;
}

#countdown {
  position: absolute;
  height: 40px;
  width: 40px;
  text-align: center;
  right: 0px;
  top: 0px;
  margin-bottom: -100px;
}

#countdown-number {
  color: white;
  display: inline-block;
  line-height: 40px;
}

#countdown svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}

#countdown svg circle {
  stroke-dasharray: 113px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: black;
  fill: none;
  animation: countdown 10s linear infinite forwards;
}

@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 113px;
  }
}







.misha_loadmore{
	background-color: #ddd;
	border-radius: 2px;
	display: block;
	text-align: center;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing:1px;
	cursor:pointer;
	text-transform: uppercase;
	padding: 10px 0;
	transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
	display: block;
	float: left;
	display: none;
}
.misha_loadmore:hover{
	background-color: #767676;
	color: #fff;
}

.random-bird-wrapper {
	width: 100%;
	clear: both;
	float: left;
}

.random-bird-block:first-of-type {
	margin-left: 0px;
}

.random-bird-block {
	float: left;
	width: 21%;
	margin-left: -7.84%;
	position: relative;
}
.bird-1, .bird-3, .bird-5, .bird-7 {
	margin-top: 18%;
	z-index: 10
}

.fly-bird {
	opacity: 0;
}

.bird-mask {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #9e005d;
	opacity: 0;
}

/*
.bird-2 .fade-in {
	-webkit-animation-delay: 1s;
}
.bird-3 .fade-in {
	-webkit-animation-delay: 2s;
}
.bird-4 .fade-in {
	-webkit-animation-delay: 3s;
}
.bird-5 .fade-in {
	-webkit-animation-delay: 4s;
}
.bird-6 .fade-in {
	-webkit-animation-delay: 5s;
}
.bird-7 .fade-in {
	-webkit-animation-delay: 6s;
} */


.fade-in {
  animation: fadeIn ease .2s;
  -webkit-animation: fadeIn ease .2s;
  -moz-animation: fadeIn ease .2s;
  -o-animation: fadeIn ease .2s;
  -ms-animation: fadeIn ease .2s;
  opacity: 1;
}

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

  }
}

.fade-in2 {
  animation: fadeIn2 ease .2s;
  -webkit-animation: fadeIn2 ease .2s;
  -moz-animation: fadeIn2 ease .2s;
  -o-animation: fadeIn2 ease .2s;
  -ms-animation: fadeIn2 ease .2s;
  opacity: 1;
  position: relative;
  z-index: 2;
}

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

  }
}







.location-block {
	text-align: center;
	color: #FFF;
}

.location-block h3 {
	font-size: 100px;
	letter-spacing: -3px;
	font-family: 'gotham_htf_ultraregular';
	color: #FFF;
	margin-bottom: 8px;
}



/* CONTACT PAGE */

.contact-wrapper-top-left {
	background: #101010;
     align-items: center;
	padding-left: 8%;
	padding-right: 8%;
	padding-top: 160px;
	padding-bottom: 100px;
}
.contact-wrapper-top-right {
	background: url('https://wordpress-389218-1225773.cloudwaysapps.com/wp-content/uploads/2020/05/contact-banner.jpg');
	background-size: cover;
	background-position: center right;
}
.contact-wrapper-top-left h2 {
	color: #FFF;
}


/* WooCommerce */

.wpmenucart-contents {
	color: #9e005d !important;
}


#menu-shop-menu {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
#menu-shop-menu .sub-menu {
	padding-left: 20px;
	list-style: none;
}

#menu-shop-menu li li {
	margin-bottom: 0px;
}
#menu-shop-menu li li li {
	margin-bottom: 0px;
}
#menu-shop-menu a:hover {
	color: #9e005d;
}
body .bellows.bellows-skin-vanilla .bellows-nav .bellows-submenu .bellows-current-menu-item > .bellows-target {
	background: #9e005d !important;
	color: #FFF;
}
body .bellows.bellows-skin-vanilla .bellows-nav .bellows-submenu .bellows-current-menu-item > .bellows-target:hover {
	color: #FFF !important;
}
body .bellows .bellows-nav .bellows-target {
	padding: 12px 20px;
}

.ginput_recaptcha {
transform:scale(0.77);
-webkit-transform:scal(0.77);
transform-origin:0 0;
-webkit-transform-origin:0 0;
}

body .woocommerce-message {
    border-top-color: #9e005d;
}
body .woocommerce-message::before {
    content: "\e015";
    color: #9e005d;
}

#order_review_heading {
	margin-top: 40px;
}


.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	text-align: center;
}

.woocommerce .quantity .qty {
    height: 34px;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #9e005d;
    color: #fff;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #9e005d !important;
}
.sku_wrapper {
	display: none;
}
.tagged_as {
	display: none;
}
#coupon_code {
	width: 132px;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    padding: 12px 10px;
    border: 1px solid;
}
li.product .button {
	display: none !important;
}
.woocommerce ul.products li.product .price {
	color: #9e005d !important;
}

/* HOME PAGE */

.featued-wine-title {
	margin-top: 20px;
}

.home-event-wrapper img.size-full {
	width: 731px;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.home-event-date {
	font-family: 'gotham_htfbold';
	text-transform: uppercase;
	margin-bottom: 10px;
}

.home-event-title {
	font-size: 26px;
	font-family: 'gotham_htf_lightregular';
	line-height: 1.3em;
}

.wine-block {
	text-align: center;
	text-transform: uppercase;
}

.wine-block img.size-full {
	width: 263px;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
	clear: both;
}

.home-intro-wrapper {
	font-size: 33px;
	text-transform: uppercase;
	font-family: 'gotham_htf_lightregular';
	line-height: 1.35em;
	text-align: center;
	letter-spacing: -1px;
}


.our-clients {
	background: #f7f7f9;
}
.our-clients .clients-headline {
	color: #707070;
	font-size: 11px;
	font-family: 'gotham_htfbold';
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding-top: 15px;
}

.location-home-main {
	color: #FFF;
}


.home-large-text {
	font-size: 14px;
	padding-bottom: 26px;
	padding-top: 10px;
	text-transform: uppercase;
	font-family: 'gotham_htf_lightregular';
}

.vertical-rule {
	height: 64px;
	width: 1px;
	margin-left: auto;
	margin-right: auto;
	background: #000;
	margin-top: 80px;
	margin-bottom: 28px;
}

.canary-global {
	background: #292A29;
}

.canary-global-bg {
	-webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
     background-size: cover;
     background-position: center center;
	margin-left: 15%;
}
.canary-global-content {
	margin-left: -30%;
}
.canary-global-content h2, .canary-global-content p {
	color: #FFF;
}

.canary-word-salad {
	font-size: 100px;
	line-height: 80px;
	letter-spacing: -3px;
	font-family: 'gotham_htf_ultraregular';
	color: #000;
	text-transform: uppercase;
}

.word-salad-1 {
 	opacity: 0;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
	padding-left: 11%;
     position: relative;
}
.word-salad-2 {
 	opacity: 0;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
	padding-right: 24%;
     position: relative;
	text-align: right;
}
.word-salad-3 {
 	opacity: 0;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
	color: #9e005d;
	padding-left: 17%;
     position: relative;
}
.word-salad-4 {
 	opacity: 0;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
	color: #9e005d;
	padding-right: 12%;
     position: relative;
	text-align: right;
}
.word-salad-5 {
 	opacity: 0;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
	padding-left: 27%;
     position: relative;
}

.word-salad-1.show {
 	opacity: 1;
}
.word-salad-2.show {
 	opacity: 1;
}
.word-salad-3.show {
 	opacity: 1;
}
.word-salad-4.show {
 	opacity: 1;
}
.word-salad-5.show {
 	opacity: 1;
}





/* Services Page */

.block-services-wrapper {
	/* min-height: 100vh; */
	background: url('https://www.bozemanwinegallery.com/wp-content/uploads/2020/06/wine-club-bg.jpg');
	background-size: cover;
	background-position: center center;
	color: #FFF;
	padding-top: 200px;
	padding-bottom: 200px;
}
.block-services-wrapper h2 {
	color: #FFF;
	text-transform: uppercase;
}
.metro-box-wrapper {
	min-height: 350px;
	display: flex;
	font-size: 11px;
	font-family: 'gotham_htf_bookregular';
	color: #F0F0F0;
	border: 1px solid #FFF;
	padding-left: 11%;
	padding-right: 11%;
	padding-bottom: 40px;
	position: relative;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
	bottom: 0px;
}
.metro-box-wrapper:hover {
	background: #9e005d;
	border: 1px solid #9e005d;
	color: #FFF;
	bottom: 20px;
}
.metro-box-wrapper p {
	margin-bottom: 8px;
    line-height: 18px;
}
.metro-box-wrapper strong {
	font-size: 14px;
	font-family: 'gotham_htfbold';
}


.metro-box-arrow-left {
	content: "";
	height: 9px;
	width: 10px;
	background: url('img/arrow-wr.svg');
	position: absolute;
	right: 32px;
	bottom: 24px;
	-webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}
.metro-box-wrapper:hover .metro-box-arrow-left {
	right: 26px;
}





#overlay-bg-service-design {
	background: url('img/design1.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .5s;
}
#overlay-bg-service-design.active {
	opacity: 1
}
#overlay-bg-service-merch {
	background: url('img/merch1.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .5s;
}
#overlay-bg-service-merch.active {
	opacity: 1
}
#overlay-bg-service-activation {
	background: url('img/activation1.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .5s;
}
#overlay-bg-service-activation.active {
	opacity: 1
}
#overlay-bg-service-digital {
	background: url('img/digital1.jpg');
	background-size: cover;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .5s;
}
#overlay-bg-service-digital.active {
	opacity: 1
}




/*------------------------------------*\
    BLOG
\*------------------------------------*/

.category-events .blog-menu-wrapper {
	visibility: hidden;
}


.blog-post-standard {
	display: block;
	background: #FFF;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}
.blog-post-standard-content {
	padding: 24px 20px 30px;
	margin-bottom: 32px;
}

.blog-post-standard-event-date {
	text-transform: uppercase;
	color: #9e005d;
	margin-bottom: 4px;
}

.blog-post-standard-title {
	text-transform: uppercase;
	font-family: 'gotham_htfbold';
	margin-bottom: 8px;
}
.blog-post-standard-title a {
	color: #000;
	line-height: 1.3em;
    display: inline-block;
}
.blog-post-standard-title a:hover {
	color: #9e005d;
}
.blog-post-standard img {
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}
.blog-post-standard img:hover {
	opacity: .8;
}
.blog-post-standard-exceprt {
	color: #999999;
	font-size: 13px;
	line-height: 1.5em;
}

/* Blog Categoty Menu */

.blog-menu-wrapper .menu {
	list-style: none;
	font-size: 14px;
	line-height: 16px;
	font-family: 'gotham_htf_bookregular';
	text-transform: uppercase;
	margin-top: 40px;
     margin-bottom: 40px;
	text-align: center;
	padding-left: 0px;
}
.blog-menu-wrapper .menu li {
	display: inline-block;
	margin-left: 25px;
	margin-right: 25px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.blog-menu-wrapper .menu li a {
	color: #0B0B0B;
	-webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
     -ms-transition: all .2s ease-in-out;
     -o-transition: all .2s ease-in-out;
     transition: all .2s ease-in-out;
}

.blog-menu-wrapper .menu li a:hover {
	color: #9e005d;
}

.blog-menu-wrapper .menu li.current-menu-item a, .blog-menu-wrapper .menu li.current_page_item a {
	font-family: 'gotham_htfbold';
}


/* Blog Tiles */

.blog-post-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	/* cursor: pointer; */
	float: left;
	width: 33.33%;
}
.blog-post-wrap.wide {
	width: 66.66%;
}

.blog-post-wrap img {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	width: 100%;
	height: auto;
}

.blog-post-wrap:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.blog-post-wrap-mask {
	z-index: 10;
	background: rgba(233, 193, 77, 0);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
     align-items: flex-end;

	text-align: left;
	opacity: 0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.blog-post-wrap:hover .blog-post-wrap-mask {
	background: rgba(255, 192, 0, 0.6);
	opacity: 1;
}

.blog-post-title {
	font-size: 25px;
	line-height: 27px;
	color: #FFF;
	font-family: 'gotham_htf_ultraregular';
	text-transform: uppercase;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
}




/* Masonry */


.grid {

}

/* clearfix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- grid-item ---- */

.grid-sizer,
.grid-item {
  width: 33.33%;
}

.grid-item {
  float: left;
}

.grid-item--wide { width:  40%; }




/* WORK */



.work-post-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	/* cursor: pointer; */
	float: left;
	width: 33.333333333333333%;
}
.work-post-wrap.wide {
	width: 66.666666666666667%;
}

.work-post-wrap img {
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	width: 100%;
	height: auto;
}

.work-post-wrap:hover img {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.work-post-wrap-mask {
	z-index: 10;
	background: rgba(233, 193, 77, 0);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	display: flex;
  	align-items: center;
  	justify-content: center;

	text-align: center;
	opacity: 0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.work-post-wrap:hover .work-post-wrap-mask {
	background: rgba(255, 192, 0, 0.6);
	opacity: 1;
}

.work-post-title {
	font-size: 15px;
	line-height: 19px;
	color: #FFF;
	font-family: 'gotham_htf_mediumregular';
	text-transform: uppercase;
}






/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

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

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

/* MENU  */
@media only screen and (max-width:1010px) {
	#toggle {
		display: block;
	}
	#menu-desktop-menu {
		display: none;
	}
}


/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 767px) {

	.mobile-dev-helper span.help-all-mobile {
		display: block;
	}
	.page-banner {
	    height: 300px;
	    margin-top: 0px;
	}


	input.search-field {
		width: calc(100%);
	     margin-right: 0px;
	}


	.woocommerce-product-search input[type=submit] {
		width: 100%;
		clear: both;
		margin-top: 8px;
	}



	/* .col {  margin: 1% 0 1% 0%; } */

	.col { margin-right: 0px;
	}
	.flex-grid {flex-flow: row wrap;}

	.flex-grid.mobile-wrap-reverse {
		flex-flow: wrap-reverse;
	}

	.span-1, .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-9, .span-10, .span-11, .span-12 {
		width: 100%;
	}

	.col-full.span-1, .col-full.span-2, .col-full.span-3, .col-full.span-4, .col-full.span-5, .col-full.span-6, .col-full.span-7, .col-full.span-8, .col-full.span-9, .col-full.span-10, .col-full.span-11, .col-full.span-12 {
		width: 100%;
	}

	/* Padding Top */
	.mpt0		{padding-top: 0px;}
	.mpt10		{padding-top: 10px;}
	.mpt20		{padding-top: 20px;}
	.mpt25		{padding-top: 25px;}
	.mpt30		{padding-top: 30px;}
	.mpt40		{padding-top: 40px;}
	.mpt50		{padding-top: 50px;}
	.mpt60		{padding-top: 60px;}
	.mpt70		{padding-top: 70px;}
	.mpt80		{padding-top: 80px;}
	.mpt90		{padding-top: 90px;}
	.mpt100		{padding-top: 100px;}
	.mpt110		{padding-top: 110px;}
	.mpt120		{padding-top: 120px;}
	.mpt130		{padding-top: 130px;}
	.mpt140		{padding-top: 140px;}
	.mpt150		{padding-top: 150px;}
	.mpt160		{padding-top: 160px;}

	/* Padding Bottom */
	.mpb0		{padding-bottom: 0px;}
	.mpb10		{padding-bottom: 10px;}
	.mpb20		{padding-bottom: 20px;}
	.mpb25		{padding-bottom: 25px;}
	.mpb30		{padding-bottom: 30px;}
	.mpb40		{padding-bottom: 40px;}
	.mpb50		{padding-bottom: 50px;}
	.mpb60		{padding-bottom: 60px;}
	.mpb70		{padding-bottom: 70px;}
	.mpb80		{padding-bottom: 80px;}
	.mpb90		{padding-bottom: 90px;}
	.mpb100		{padding-bottom: 100px;}
	.mpb110		{padding-bottom: 110px;}
	.mpb120		{padding-bottom: 120px;}
	.mpb130		{padding-bottom: 130px;}
	.mpb140		{padding-bottom: 140px;}
	.mpb150		{padding-bottom: 150px;}
	.mpb160		{padding-bottom: 160px;}

	/* Padding left */
	.mpl0		{padding-left: 0px;}
	.mpl10		{padding-left: 10px;}
	.mpl20		{padding-left: 20px;}
	.mpl25		{padding-left: 25px;}
	.mpl30		{padding-left: 30px;}
	.mpl40		{padding-left: 40px;}
	.mpl50		{padding-left: 50px;}
	.mpl60		{padding-left: 60px;}
	.mpl70		{padding-left: 70px;}
	.mpl80		{padding-left: 80px;}
	.mpl90		{padding-left: 90px;}
	.mpl100		{padding-left: 100px;}
	.mpl110		{padding-left: 110px;}
	.mpl120		{padding-left: 120px;}
	.mpl130		{padding-left: 130px;}
	.mpl140		{padding-left: 140px;}
	.mpl150		{padding-left: 150px;}
	.mpl160		{padding-left: 160px;}

	/* Padding right */
	.mpr0		{padding-right: 0px;}
	.mpr10		{padding-right: 10px;}
	.mpr20		{padding-right: 20px;}
	.mpr25		{padding-right: 25px;}
	.mpr30		{padding-right: 30px;}
	.mpr40		{padding-right: 40px;}
	.mpr50		{padding-right: 50px;}
	.mpr60		{padding-right: 60px;}
	.mpr70		{padding-right: 70px;}
	.mpr80		{padding-right: 80px;}
	.mpr90		{padding-right: 90px;}
	.mpr100		{padding-right: 100px;}
	.mpr110		{padding-right: 110px;}
	.mpr120		{padding-right: 120px;}
	.mpr130		{padding-right: 130px;}
	.mpr140		{padding-right: 140px;}
	.mpr150		{padding-right: 150px;}
	.mpr160		{padding-right: 160px;}


	.logo svg {
		width: 163px;
		height: auto;
	}


	/* header */

	.header .logo {
	    margin-top: 4px;
	    margin-left: 5%;
	}
	.right-menu-wrapper {
	    top: 16px;
	}
	.header .button_container {
	    top: 19px;
	}
	.right-menu-wrapper a {
		display: none;
	}
	.overlay-menu li a {
	    font-size: 30px;
	    line-height: 40px;
	}
	.overlay-menu li.current-menu-item a {
	    font-size: 30px;
 	    line-height: 38px;
	}
	.overlay-menu .blog-menu {
		display: block;
	}
	.overlay-menu .start-a-project {
		display: block;
	}




	/* Typography */

	h1 {
		font-size: 27px;
		line-height: 30px;
	}
	h2 {
		font-size: 27px;
		line-height: 21px;
	}
	.page-title-wrap h1 {
		font-size: 35px;
    		line-height: 38px;
	}
	.page-sub-headline {
		padding-left: 0px;
		padding-right: 0px;
	}


	/* home */

	.slick-hero-slide {
		font-size: 60vh;
	}
	.hero h1 {
		font-size: 27px;
		line-height: 32px;
	}
	.vertical-rule {
		margin-top: 40px;
	}
	.canary-word-salad {
	    font-size: 50px;
	    line-height: 50px;
	}
	.word-salad-1 {
		padding-left: 18%;
	}
	.word-salad-5 {
		padding-left: 10%;
	}
	.word-salad-3 {
		padding-left: 25%;
	}
	.word-salad-4 {
		padding-right: 23%;
	}
	.word-salad-5 {
		padding-left: 22%;
	}
	.home-large-text {
	    padding-bottom: 20px;
	    padding-top: 0px;
	}
	.canary-global-bg {
		margin-left: 0px;
		padding-bottom: 55vh;
		padding-top: 0px;
	}
	.canary-global-content {
		margin-left: 0px;
	}
	.ig-image {
		width: 33.33%;
	}
	.ig-pull-mobile {
		display: block;
	}
	.ig-pull {
		display: none;
	}
	.hero .flex-grid {
		flex-flow: wrap-reverse;
	}



	/* services */

	.block-services-wrapper {
		padding-top: 120px;
		padding-bottom: 80px;
	}
	.metro-box-wrapper {
		margin-bottom: 30px;
		min-height: 230px;
	}


	/* forms */


	body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	    padding: 8px 11px;
	}
	body .gform_wrapper ul li.gfield {
	    margin-top: 20px !important;
	}
	body.start-a-project .gform_wrapper {
		margin-top: 50px;
	}
	.photo-checkbox ul.gfield_checkbox {
		width: 103.5%;
	}
	.gform_wrapper .photo-checkbox ul.gfield_checkbox li {
		width: 33.33%;
	}
	.gform_wrapper .photo-checkbox ul.gfield_checkbox li label, .gform_wrapper ul.gfield_radio li label {
		width: 90%;
	}
	.gform_wrapper .three-col-checkbox ul.gfield_checkbox li {
		width: 100%;
	}
	body .gform_wrapper .gform_footer input.button, body .gform_wrapper .gform_footer input[type=submit] {
		width: 100%;
		padding: 13px;
	}



	.footer-menu {
		display: none;
	}
	.footer-location-block {
		width: 50%;
	}
	.footer-button-left, .footer-button-right {
		width: 100%;
	}
	.footer-button-left .btn1, .footer-button-left .btn2, .footer-button-right .btn1, .footer-button-right .btn2 {
		width: 100%;
		text-align: center;
		margin-bottom: 16px;
	}
	.copyright {
		font-size: 9px;
		padding-left: 8%;
		padding-right: 8%;
	}


	/* Post & blog */

	.blog-post-wrap {
		width: 50%;
	}
	.work-post-wrap {
		width: 50%;
	}
	.related-post-wrapper .work-post-wrap {
		width: 100%;
	}
	.work-post-wrap.wide {
		width: 100%;
	}
	.grid-sizer, .grid-item {
	    width: 50%;
	}
	.grid-item--wide {
		width: 100%;
	}

	.home-intro-wrapper {
		font-size: 21px;
	    line-height: 1.5em;
	}

}



/* PHONE (portrait and landscape)  */
@media only screen and (max-width:480px) {
	.mobile-dev-helper span.help-mobile {
		display: block;
	}
}


/* TABLET */
@media only screen and (min-width : 768px) and (max-width : 1024px) {
	.mobile-dev-helper span.help-tablet {
		display: block;
	}
	.tablet-hide {
		display: none;
	}


	.span-1.tablet-100, .span-2.tablet-100, .span-3.tablet-100, .span-4.tablet-100, .span-5.tablet-100, .span-6.tablet-100, .span-7.tablet-100, .span-8.tablet-100, .span-9.tablet-100, .span-10.tablet-100, .span-11.tablet-100, .span-12.tablet-100 {
		width: 100%;
	}
	.tablet-wrap {
		flex-wrap: wrap;
	}

	.hero h1 {
	    font-size: 24px;
	    line-height: 31px;
	}
	/* Padding Top */
	.mpt0		{padding-top: 0px;}
	.mpt10		{padding-top: 10px;}
	.mpt20		{padding-top: 20px;}
	.mpt25		{padding-top: 25px;}
	.mpt30		{padding-top: 30px;}
	.mpt40		{padding-top: 40px;}
	.mpt50		{padding-top: 50px;}
	.mpt60		{padding-top: 60px;}
	.mpt70		{padding-top: 70px;}
	.mpt80		{padding-top: 80px;}
	.mpt90		{padding-top: 90px;}
	.mpt100		{padding-top: 100px;}
	.mpt110		{padding-top: 110px;}
	.mpt120		{padding-top: 120px;}
	.mpt130		{padding-top: 130px;}
	.mpt140		{padding-top: 140px;}
	.mpt150		{padding-top: 150px;}
	.mpt160		{padding-top: 160px;}

	/* Padding Bottom */
	.mpb0		{padding-bottom: 0px;}
	.mpb10		{padding-bottom: 10px;}
	.mpb20		{padding-bottom: 20px;}
	.mpb25		{padding-bottom: 25px;}
	.mpb30		{padding-bottom: 30px;}
	.mpb40		{padding-bottom: 40px;}
	.mpb50		{padding-bottom: 50px;}
	.mpb60		{padding-bottom: 60px;}
	.mpb70		{padding-bottom: 70px;}
	.mpb80		{padding-bottom: 80px;}
	.mpb90		{padding-bottom: 90px;}
	.mpb100		{padding-bottom: 100px;}
	.mpb110		{padding-bottom: 110px;}
	.mpb120		{padding-bottom: 120px;}
	.mpb130		{padding-bottom: 130px;}
	.mpb140		{padding-bottom: 140px;}
	.mpb150		{padding-bottom: 150px;}
	.mpb160		{padding-bottom: 160px;}

	/* Padding left */
	.mpl0		{padding-left: 0px;}
	.mpl10		{padding-left: 10px;}
	.mpl20		{padding-left: 20px;}
	.mpl25		{padding-left: 25px;}
	.mpl30		{padding-left: 30px;}
	.mpl40		{padding-left: 40px;}
	.mpl50		{padding-left: 50px;}
	.mpl60		{padding-left: 60px;}
	.mpl70		{padding-left: 70px;}
	.mpl80		{padding-left: 80px;}
	.mpl90		{padding-left: 90px;}
	.mpl100		{padding-left: 100px;}
	.mpl110		{padding-left: 110px;}
	.mpl120		{padding-left: 120px;}
	.mpl130		{padding-left: 130px;}
	.mpl140		{padding-left: 140px;}
	.mpl150		{padding-left: 150px;}
	.mpl160		{padding-left: 160px;}

	/* Padding right */
	.mpr0		{padding-right: 0px;}
	.mpr10		{padding-right: 10px;}
	.mpr20		{padding-right: 20px;}
	.mpr25		{padding-right: 25px;}
	.mpr30		{padding-right: 30px;}
	.mpr40		{padding-right: 40px;}
	.mpr50		{padding-right: 50px;}
	.mpr60		{padding-right: 60px;}
	.mpr70		{padding-right: 70px;}
	.mpr80		{padding-right: 80px;}
	.mpr90		{padding-right: 90px;}
	.mpr100		{padding-right: 100px;}
	.mpr110		{padding-right: 110px;}
	.mpr120		{padding-right: 120px;}
	.mpr130		{padding-right: 130px;}
	.mpr140		{padding-right: 140px;}
	.mpr150		{padding-right: 150px;}
	.mpr160		{padding-right: 160px;}


	.slick-hero-slide {
		font-size: 60vh;
	}

	.home-large-text {
	    font-size: 13px;
	    line-height: 1.45em;
	}
	.canary-word-salad {
		font-size: 80px;
		line-height: 74px;
	}
	.location-block h3 {
	    font-size: 88px;
	}
	.page-title-wrap h1 {
	    font-size: 48px;
	}

	.metro-box-wrapper {
	    min-height: 275px;
	}
	.home-large-text {
	    padding-top: 0px;
	}
	.slick-slide img {
	    padding-left: 5px;
	    padding-right: 5px;
	}
	.our-clients .clients-headline {
	    padding-top: 6px;
	    line-height: 16px;
	}

	.footer-menu ul li {
	    margin-left: 20px;
	}

	.home-intro-wrapper {
		font-size: 21px;
	    line-height: 1.5em;
	}


}


/* DESKTOP SMALL */
@media only screen and (min-width : 1025px) and (max-width : 1280px) {
	.mobile-dev-helper span.help-small-desktop {
		display: block;
	}
	body {
		font: 14px/1.5em 'gotham_htf_bookregular', Helvetica, Arial, sans-serif;
	}
	h2 {
	    font-size: 33px;
	}

	.hero h1 {
	    font-size: 31px;
	    line-height: 38px;
	}
	.home-large-text {
	    font-size: 13px;
	    line-height: 1.45em;
	}
	.canary-word-salad {
		font-size: 90px;
		line-height: 74px;
	}
	.location-block h3 {
	    font-size: 88px;
	}
	.page-title-wrap h1 {
	    font-size: 48px;
	}

	.metro-box-wrapper {
	    min-height: 275px;
	}
	.home-large-text {
	    padding-top: 0px;
	}
	.slick-slide img {
	    padding-left: 5px;
	    padding-right: 5px;
	}
	.our-clients .clients-headline {
	    padding-top: 6px;
	    line-height: 16px;
	}
}


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

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

/* .alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
} */
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}









/*------------------------------------*\
    SLICK SLIDER JS
\*------------------------------------*/


.slick-slide:focus {
    outline: none !important;
}

.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}











[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}
