/*
	Theme Name: Purchil custom theme
	Description: Custom WordPress Theme
	Version: 1.0.0
	Author: Tretanto
	Author URI: https://tretanto.com/
	Tags: Blank, HTML5, CSS3
	License: MIT
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/
/* VARIABLES */
:root{
    --cta-color: #B69025;
    --base-color: #000;
    --grey-color: #576574;
    --light-grey:  #FAFAFA;
    --dark-grey: #576574;
    --light-gold: #E0B368;
    --alt-font: "cadiz";
    font-size:62.5%;
}
/*
/* global box-sizing */
*,
*:after,
*:before {
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
	margin: 0;
	padding: 0;
}

body {
	font:400 1.8rem/1.66 'Mulish', sans-serif;
	color:var(-base-color);
	background-color: var( --light-grey);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    min-height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 112px;
}

img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:var(--cta-color);
	text-decoration:none;
	transition:all .23s ease-in;
	-webkit-transition:all .23s ease-in;
	-moz-transition:all .23s ease-in;
	-ms-transition:all .23s ease-in;
	-o-transition:all .23s ease-in;
}
a:hover {
	color:var(-grey-color);
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}

/******* FORMS ********/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	font-weight: normal;
	font-size: 18px;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	font-weight: normal;
	font-size: 18px;
}
input:-moz-placeholder,
textarea:-moz-placeholder {   /* Older versions of Firefox */
	font-weight: normal;
	font-size: 18px;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder { 
	color: var(--cta-color); 
	font-weight: normal;
	text-decoration: underline;
	font-size: 1.4rem;
	font-weight: 500;
}
input:focus,
textarea:focus {
	border:2px solid var(--cta-color);
	outline:none;
}

input, textarea {
	width: 100%;
	padding: 16px 18px;
	-webkit-transition: all .23s ease-in;
	-o-transition: all .23s ease-in;
	transition: all .23s ease-in;
	font-family: 'Montserrat', sans-serif;
	border: 2px solid transparent;
	position: relative;
	z-index: 2;
	-webkit-box-shadow: 0px 12px 60px rgba(0, 18, 37, 0.05);
	box-shadow: 0px 12px 60px rgba(0, 18, 37, 0.05);
border-radius: 6px;
}

.wpcf7 .ajax-loader {
	display: none;
}


.wpcf7-not-valid-tip {
	color: var(--cta-color);
	font-size: 14px;
}
.wpcf7-form.sent .wpcf7-response-output {
	background: var(--cta-color);
    padding: 10px;
     font-size: 14px;
}
.wpcf7-form.invalid .wpcf7-response-output {
	background: var(--cta-color);
    padding: 10px;
    border: none;
    color: #fff;
    font-size: 14px;
}

.img-fit {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;	
}
.img-wrap {
	position: relative;
	overflow: hidden;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
.container,
.container-narrow,
.container-wide {
	margin: 0 auto;
}
.container-wide {
	max-width: 1564px;
	padding: 0 20px;
}
.container {
	max-width: 1268px;
}
.container-narrow {
	max-width: 830px;
}
@media only screen and (max-width:1320px) {
	.container,
	.container-narrow {
		padding: 0 20px;
	}
}
.col1,
.col2,
.col3,
.col4,
.col5,
.col6,
.col7,
.col8,
.col9,
.col10,
.col11,
.col12 {
	position: relative;
	padding: 20px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	max-width: 100%;
}
@media only screen and (min-width:480px) {
	.col3{
		-webkit-box-flex: 1;
		-ms-flex: 1 1 50%;
		flex: 1 1 50%;
		max-width: 50%;
	}
}
@media only screen and (min-width:768px) {
	.col1{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 8.33%;
	flex: 1 1 8.33%;
	max-width: 8.33%;
}
.col2{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 16.66%;
	flex: 1 1 16.66%;
	max-width: 16.66%;
}

.col4{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 33.33%;
	flex: 1 1 33.33%;
	max-width: 33.33%;
}
.col5{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 41.66%;
	flex: 1 1 41.66%;
	max-width: 41.66%;
}
.col6{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
	max-width: 50%;
}
.col7{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 58.33%;
	flex: 1 1 58.33%;
	max-width: 58.33%;
}
.col8{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 66.66%;
	flex: 1 1 66.66%;
	max-width: 66.66%;
}
.col9{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 75%;
	flex: 1 1 75%;
	max-width: 75%;
}
.col10{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 83.33%;
	flex: 1 1 83.33%;
	max-width: 83.33%;
}
.col11{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 91.63%;
	flex: 1 1 91.63%;
	max-width: 91.63%;
}
.col12{
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	max-width: 100%;
}

}
@media only screen and (min-width:1024px) {
	.col3{
		-webkit-box-flex: 1;
		-ms-flex: 1 1 25%;
		flex: 1 1 25%;
		max-width: 25%;
    }
}
.row {
	margin: 0 -20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;	
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
body::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track
{
	background-color:var(--black-color);
}
body::-webkit-scrollbar,
.modal-content::-webkit-scrollbar
{
	width: 6px;
	background-color: var(--black-color);
}

body::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb
{
	background-color: var(--cta-color);
}
/* wrapper */
.wrapper {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	position:relative;
}

/*------------------------------------*\
    FLEX
\*------------------------------------*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-vertical-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-space-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.flex-column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
/*------------------------------------*\
    HEADER
\*------------------------------------*/
.header ul {
	list-style: none;
}
.header ul li a.active {
	color: var(--cta-color);
}
.header {
	padding: 20px 0;
	background: var(--base-color);
	z-index: 2021;
	position: fixed;
	left: 0;
	right: 0;
    top: 0;
    -webkit-transition: all .23s ease-in;
    -o-transition: all .23s ease-in;
    transition: all .23s ease-in;
}
.header.sticky {
	padding: 10px 0;
}
.home .header.sticky {
	background: var(--base-color);
}

.header .logo img {
	max-width: 80px;
    -webkit-transition: all .23s ease;
    -o-transition: all .23s ease;
    transition: all .23s ease;
}

/************ DESKTOP MENU ***************/
.header nav ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
}
.header ul li {
	margin-left: 40px;
}
.header ul li a {
	cursor: pointer;
	-webkit-transition: all .23s ease-in;
	-o-transition: all .23s ease-in;
	transition: all .23s ease-in; 
	font-weight: 600;
	color:#fff;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 1.6rem;
}

.header ul li a:hover,
.header .socials i:hover,
.header ul li a.active,
.header ul .current-menu-item a {
	color: #E0B368;
}
.header ul > li {
	position: relative;
}
.header ul li a::after {
	content: "";
	width: 0;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -5px;
	background: #fff;
	-webkit-transition: all .23s ease-out;
	-o-transition: all .23s ease-out;
	transition: all .23s ease-out;
}
.header ul li a:hover::after,
.header ul .current-menu-item a::after {
	width: 100%;
	background: #E0B368;
}
.header .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
}
.header ul > li.menu-item-has-children:hover > .sub-menu {
	display: block;
}
.header .menu-item-has-children::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
}

/************ MOB MENU ***************/
.mob-menu-bar {
    cursor: pointer;
    position: relative;
    z-index: 2021;
    margin-left: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.bar1 {
    width: 30px;
}
.bar2 {
    width: 21px;
}
.bar3 {
    width: 30px;
}
.bar1, .bar2, .bar3 {
    height: 2px;
    margin: 5px auto 5px 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: #fff;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
    -ms-transform: rotate(-45deg) translate(-5px, 6px);
        transform: rotate(-45deg) translate(-5px, 6px);
    width: 30px;
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-4px,-5px);
    -ms-transform: rotate(45deg) translate(-4px,-5px);
        transform: rotate(45deg) translate(-4px,-5px);
    width: 30px;
}
.mob-menu-bar.change > span {
	display: none;
}
.mobile-header nav.open {
	-webkit-transform: translateX(0);
    -ms-transform: translateX(0);
	    transform: translateX(0);	
}
.mobile-header nav {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		z-index: 2023;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		background: var(--base-color);
		padding: 5rem 2rem;
		-webkit-transition: all .43s ease-in-out;
		-o-transition: all .43s ease-in-out;
		transition: all .43s ease-in-out;
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		min-width: 70%;
}
.mobile-header nav ul {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.mobile-header nav ul li {
	margin:1rem 0;
}
.mobile-header nav ul a {
	color: #fff;
}
/**** end of mobile menu ***/

/*------------------------------------*\
    FOOTER
\*------------------------------------*/

.footer {
	color: #fff;
	background-color: var(--base-color);
	position: relative;
	padding: 50px 0 10px;
	font-size: 1.6rem;
}
.footer-bottom a {
	color: #999;

}
.footer-bottom a:hover {
	color: #fff;
}
.footer ul {
	list-style-type: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;

}
.footer ul li:not(:last-child)::after {
	content: "";
	display: inline-block;
	background: #fff;
	border-radius: 100%;
	width: 3px;
	height: 3px;
	margin: 0 10px;
	position: relative;
	top: -3px;
	opacity: .5;
}
.footer .menu li a {
	text-decoration: none;
	color: #999;
}
.footer .menu li a:hover,
footer .current-menu-item a {
	color: #fff;
	text-decoration: none;
	opacity: 1;
}
.footer .wp-block-button {
	margin: 0 auto !important;
}
.footer-bottom div:first-child,
.footer-bottom ul:last-child,
.footer-top div:first-child,
.footer-top div:last-child {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.footer-top div:first-child {
	text-align: left;
}
.footer-top div:last-child {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    text-align: left;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
	color: #999;
}
.footer-top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom:20px;
	margin-bottom: 30px;
	font-size: 18px;
}
.footer-top .socials a {
	margin: 8px;
	width: 40px;
	height: 40px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 100%;
	border: 2px solid #E0B368;
}
.footer-top .socials a:hover {
	background-color: #fff;
}
.footer-bottom {
	color: #999;
}
.footer-bottom div:first-child {
	text-align: left;
}
.footer-bottom ul {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
@font-face {
  font-family: "cadiz";
  src: url("assets/fonts/Cadiz-ExtraBold.woff") format("woff"),
    url("assets/fonts/Cadiz-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

p, h1, h2, h3, h5, h6 {
	margin-bottom: 2rem;
}
h1, h2, h3 {
	line-height: 1.3;
    font-family: var(--alt-font);
    color: var(--cta-color);
    
}
h4, h5, h6 {
	line-height: 1.3;
	font-weight: 700;
}
h1 {
	font-size: 6rem;
    font-weight: 700;
    letter-spacing: 0.1875px;
    color: var(--cta-color);
}
h2 {
	font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.26;
    text-transform: uppercase;
    margin-bottom: 35px;
}
h3 {
	font-size: 3rem;
    font-weight: 700;
}
h4 {
	font-size: 2.2rem;
     font-weight: 700;
    line-height: 1.25;
    margin-bottom: 7px;
}
h5 {
	font-size: 2rem;
    letter-spacing: 0.1875px;
    font-weight: 700;
    font-family: var(--alt-font);
}
h6 {
	font-size: 14px;
    line-height: 1.3;
    color: var(--grey-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.gutenberg ol,
.gutenberg ul {
    margin-bottom: 20px;
}
.gutenberg ol,
.gutenberg ul {
    padding-left: 20px;
}
.gutenberg ol li,
.gutenberg ul li {
    margin-bottom: 2rem;
}

.btn,
.wp-block-button__link,
body .wpcf7 .wpcf7-submit {
	color: #fff;
	padding: 20px 40px;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.4rem;
	-webkit-transition: all .23s ease-in;
	-o-transition: all .23s ease-in;
	transition: all .23s ease-in;
	background-color:transparent;
	border: 1px solid #FFFFFF;
	cursor: pointer;
	border-radius:0;
	width: auto;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.28;
    text-align: center;
}
 
.btn:hover,
.btn:active,
.wp-block-button__link:hover,
.wp-block-button__link:active,
body .wpcf7 .wpcf7-submit:hover,
body .wpcf7 .wpcf7-submit:active {
	background-color: #fff;
	color: var(--cta-color);
    border-color: var(--cta-color);
}

.btn.gold {
	border-color: var(--cta-color);
	color: var(--base-color);
	font-weight: 600;
}

.btn.gold:hover,
.btn.gold:active {
	background-color: var(--cta-color);
	color: #fff;
    border-color: var(--cta-color);
}

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

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

}
@media only screen and (max-width:480px) {
	.hero-section .gutenberg .wp-block-columns {
		max-width: 80%!important;
	}
	.hero-section .gutenberg {
		    background: -webkit-gradient(linear, left top, right top, color-stop(70%, #FFFFFF), to(rgba(255, 255, 255, 0)));
		    background: -o-linear-gradient(left, #FFFFFF 70%, rgba(255, 255, 255, 0) 100%);
		    background: linear-gradient(90deg, #FFFFFF 70%, rgba(255, 255, 255, 0) 100%);
	}
	.swiper-slide-active h4 {
		font-size: 1.8rem!important;
	}
    .swiper-wrapper {
        margin-top: 20px!important;
    }
    .slider-section {
        padding: 60px 0!important;
    }
    .bottom-text {
        border-left: 0!important;
        margin-left: 0!important;
        padding-left: 0!important;
        border-top: 2px solid #fff;
        padding-top: 20px;
    }

    .home-hero h3 {
        font-size: 1.8rem!important;
    }
    .home-hero p br {
        display: none;
    }
    .contact-section .col5 a {
        font-size: 1.8rem;
    }
    .contact-section .white-block {
        min-width: 280px;
        width: 100%;
    }
    .contact-section .col7 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
	body h1 {
		font-size: 3.3rem!important;
	}
	body h2 {
		font-size: 2.8rem!important;
	}
	body h4 {
		font-size: 1.9rem!important;
	}

	.contact-section {
		padding: 50px 0!important;
	}
}
@media only screen and (max-width:767px) {
	#stations .marker {
    	height: 42px!important;
	}
	.portfolio-item {
		-webkit-box-orient: vertical!important;
		-webkit-box-direction: reverse!important;
		-ms-flex-direction: column-reverse!important;
		flex-direction: column-reverse!important;
	}
	.portfolio-item > div {
		max-width: 100%!important;
	}
	.block-cover-section::before {
		display: none;
	}
	.block-cover-section h2 {
		margin-bottom: 15px;
	}
	body {
		padding-top: 92px;
	}
	.portfolio-text {
		padding: 20px 20px 30px!important;
	}
	.block-counters-section .value-item {
		margin-left: auto;
    	margin-right: auto;
	}
	.value-items {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.home-hero {
		margin-bottom: 0!important;
	}
	.block-text-img-section .text-block {
		padding-right: 0!important;
	}
	.mob-hide {
		display: none;
	}
	.block-cover-section {
		padding: 0 0 20px!important;
		background: #000;
	}
	.block-cover-section img {
		position: relative!important;
		max-width: 100vw!important;
	}
}
@media only screen and (max-width:768px) {
	.portfolio-metas {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.portfolio-metas > div {
		margin: 0 30px 30px 0;
	}
	.footer-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
    .footer-top div:last-child {
    	text-align: center!important;
    }
}
@media only screen and (max-width:840px) {

}
@media only screen and (max-width:1023px) {
	#stations {
		overflow: auto;
	}
	.map-block .col8, .map-block .col4 {
		max-width: 100%!important;
-webkit-box-flex:1!important;
    -ms-flex:1 1 100%!important;
        flex:1 1 100%!important;

	}
    .swiper-slide {
        padding: 0 20px;
    }
    .swiper-slide-active h4 {
        min-width: 95%!important;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none!important;
    }
    .slider-section .swiper-coverflow {
        width: 100%!important;
        left: 0!important;
    }
    
    .footer-bottom ul {
    	margin-bottom: 20px;
    }
    .footer-bottom div:first-child {
    	text-align: center;
    }
    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        
    }
    .footer ul li:not(:last-child)::after {
        display: none;
    }
	.about-section {
		padding: 50px 0!important;
	}
	.home-hero {
		height: auto!important;
	}
	
	.container-wide {
		padding: 0 20px!important;
	}
	

	body h1 {
		font-size: 3.7rem;
	}
	body h2 {
		font-size: 3.2rem;
	}

	.footer ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	body .footer .footer-text ul li::after {
		    top: 6px;
		    display: block;
		    margin: 6px auto 11px;
		    -webkit-transform: rotate(90deg);
		    -ms-transform: rotate(90deg);
		        transform: rotate(90deg);
		    height: 11px;
	}
	.footer .menu li {
		margin: 7px!important;
	}
	body .header .logo img {
		max-width: 223px;
	}
	.header {
		padding: 1rem 0!important;
	}
}
@media only screen and (max-width:1024px) {

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

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

}



/*------------------------------------*\
    ANIMATIONS
\*------------------------------------*/
@-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  
  .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
  @-webkit-keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
  .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .delay1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .delay2 {
    -webkit-animation-delay: 1.84s;
    animation-delay: 1.84s;
  }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
/*------------------------------------*\
    Page blocks
\*------------------------------------*/
.page-builder {
	overflow: hidden;
}
/* MAIN HERO */
.main-hero {
	position: relative;
	/*max-height: 484px;*/
	max-height: calc(100vh - 106px);
	overflow: hidden;
}
.main-hero img,
.main-hero picture {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.main-hero-inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.main-hero-data {	
	color: #fff;
	max-width: 1060px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	padding:50px 40px;
	position: relative;
}
.main-hero-data * {
	z-index: 2;
	position: relative;
}
.main-hero-inner::before {
	content: "";
	
}
.main-hero-inner-overlay {
	position: absolute;
	top: 30px;
	right:30px;
	bottom: 30px;
	left: 30px;
	background: var(--cta-color);
	mix-blend-mode: multiply;
	z-index: 1;
}
.hero-animation {
	-webkit-animation-name: hero;
    animation-name: hero;
}
/* end of MAIN HERO */




/****** ANIMATIONS *******/

@-webkit-keyframes slide-in {
  from {
    -webkit-transform: translateY(-1em) rotate(-.5turn) scale(0.5);
    transform: translateY(-1em) rotate(-.5turn) scale(0.5);
    opacity: 0;
  }
}

@keyframes slide-in {
  from {
    -webkit-transform: translateY(-1em) rotate(-.5turn) scale(0.5);
    transform: translateY(-1em) rotate(-.5turn) scale(0.5);
    opacity: 0;
  }
}


@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
      transform-origin: left bottom;
}

@-webkit-keyframes zoomIn {
  from {
   /* opacity: 0;*/
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    /*opacity: 0;*/
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}




/***********  BLOCKS  *********/
/*** BLOCK COUNTERS ***/
.block-counters-section {
	position: relative;
	padding: 90px 0;
}
.block-counters-section .container-narrow {
	padding-top: 0;
}
.counter-circle {
	font-family: 'Marcellus', serif;
	color: var(--cta-color);
	font-size: 3.6rem;
	letter-spacing: 0.05em;
	border: 3px solid #E3E3E3;
	width: 163px;
	height: 163px;
	border-radius: 100%;
	margin: 15px auto 0;
}
.counter-circle > div::after {
	content: "";
	display: block;
	background-color: #A3A3A3;
	width: 48px;
	height: 3px;
	margin: 0 auto;
}
.counter-title {
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0.08em;
	font-size: 1.4rem;
	font-weight: 600;
}
.counter-metric.counter-metric-labeled {
	margin-left: 10px;
}
.counter-metric-label {
	font-size: 2.4rem;
	margin-left: -10px;
}

/*** BLOCK SLIDER ***/
.slider-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.swiper-slide h4,
.swiper-slide-shadow-right,
.swiper-slide-shadow-left {
    display: none!important;
}
.swiper-slide-active h4 {
    display: block!important;
        margin-bottom: 0;
    position: absolute;
    bottom: -100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    min-width: 90%;
    color: var(--green-color);
}
.swiper-slide img {
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
    max-width: 100%;
    border-radius: 16px;
}
.swiper-slide-active img {
      -webkit-filter: grayscale(0); /* Safari 6.0 - 9.0 */
  filter: grayscale(0);
    margin: 0 auto;
}
.swiper-wrapper {
    margin-top: 60px;
    position: relative;
    padding-bottom: 160px!important;
}
.slider-section .swiper-coverflow {
    width: 110vw;
    left: -5vw;
}
.swiper-button-next {
    background: url(assets/images/right-arrow.svg) no-repeat;
    width: 21px;
    height: 33px;
    cursor: pointer;
    position: absolute;
    right: 35vw;
    top: 45%;
    z-index: 11;
}
.swiper-button-prev {
    background: url(assets/images/left-arrow.svg) no-repeat;
    width: 21px;
    height: 33px;
    cursor: pointer;
    position: absolute;
    left: 35vw;
    top: 45%;
    z-index: 11;
}
.swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    min-width: 200px;
    text-align: center;
    bottom: 108px;
}
.swiper-pagination-bullet {
    background-color: var(--cta-color);
    width: 12px;
    height: 12px;
    border-radius: 100%;
    display: inline-block;
    margin: 0 5px;
    opacity: .7;
    cursor: pointer;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}


/*** BLOCK COVER ***/
.block-cover-section {
	position: relative;
	color: #ffff;
	padding: 100px 0;
}
.block-cover-section::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.3)), color-stop(60%, #000000));
	background: -o-linear-gradient(left, rgba(0, 0, 0, 0.3) 0%, #000000 60%);
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, #000000 60%);
}
.block-cover-section .container {
	position: relative;
	z-index: 3;
}
.block-cover-section img {
	-o-object-fit: cover;
	object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 60%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    -o-object-position: left;
    object-position: left;
}
.block-cover-section h4::before {
	content: "";
	background: #fff;
	width: 8px;
	height: 8px;
	display: inline-block;
	margin-right: 16px;
	position: relative;
	top: -2px;

}
.block-cover-section .text {
	color: #E3E3E3;
	padding-left: 24px;
	margin-bottom: 35px;
}
.block-cover-section p:last-child {
	margin-bottom: 0;
}
.block-cover-section ul {
	padding-left: 23px;
	margin: 35px 0 50px;
}
.block-cover-section h2 {
	color: var(--light-gold);
}

@media only screen and (max-width:767px) {
	.block-cover-section img {
		width: 100%;
	}
}

/***** BLOCK TEXT IMAGE RIGHT *****/
.block-text-img-section {
	position: relative;
	padding: 80px 0;
}

.block-text-img-section .text-block {
	padding-right: 60px;
}

/***** BLOCK VALUES SECTION ****/
.block-values-section {
	padding: 100px 0;
}
.block-values-section h2 {
	text-align: center;
}
.value-item {
	max-width: 217px;
	font-size: 1.6rem;
	margin-bottom: 40px;
}
.value-item svg {
	max-width: 26px;
    position: relative;
    top: 5px;
}
.values-text {
	margin: 0 auto;
	max-width: 816px;
}
/*** HOME HERO ***/
.home-hero {
    color: #fff;
}

.home-hero::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0.83;
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%), -o-linear-gradient(342.44deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(107.56deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}


.wp-block-image img {
	height: auto;
}


body .vbox-overlay {
    z-index: 2022;
}
.hero-section {
	background-color: #fff;
	padding: 100px 0;
	position: relative;
}
.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: -webkit-gradient(linear, left top, right top, color-stop(40%, #FFFFFF), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(left, #FFFFFF 40%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(90deg, #FFFFFF 40%, rgba(255, 255, 255, 0) 100%);
	z-index: 3;
}
.page-id-18 .hero-section,
.page-id-18 .gutenberg,
.page-id-18 .gutenberg .wp-block-columns {
	position: relative;
	min-height: calc(100vh - 385px);
}
.right-img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 60%;
}
.right-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.hero-section .gutenberg {
	z-index: 3;
	position: relative;
}
.hero-section .gutenberg .wp-block-columns {
	height: 100%;
	max-width: 560px;
	margin-bottom: 0!important;
	/*padding: 50px 0;*/
}
.gutenberg .email a {
	background: url(assets/images/mail-icon.svg) no-repeat;
	background-position: left center;
	padding-left: 32px;
	display: inline-block;
	color: var(--cta-color)!important;
	text-decoration: none!important;
	letter-spacing: normal!important;
    font-weight: 700!important;
}
.gutenberg .email a::after {
	display: none;
}

.container-narrow  .gutenberg {
	min-height: 100%;
}
.hero-section .gutenberg a {
	color: #009CE3;
	position: relative;
	letter-spacing: 0.08em;
    font-weight: 600;
}

.hero-section .gutenberg a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	background: #009CE3;
	height: 1px;
	-webkit-transition: all .23s ease-out;
	-o-transition: all .23s ease-out;
	transition: all .23s ease-out;
	width: 100%;
}
.hero-section .gutenberg a:hover::after {
	width: 0;
}

/***** HOME *****/
.page-template-page-tpl-home {
	padding-top: 0;
}
.page-template-page-tpl-home .header {
	background-color: transparent;
}
.home-hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
	padding: 100px 0;
	margin-bottom: 0;
}
.home-hero h1 {
	font-size: 34px;
	color: #fff;
	text-transform: uppercase;
	line-height: 1.52;
}
.home-hero picture {
	    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    padding: 0;
    border: 0;
    -webkit-animation: kenburns 110s infinite linear;
    animation: kenburns 110s infinite linear;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.home-hero img {
	-o-object-fit: cover;
	object-fit: cover;
    width: 100%;
    height: 100%;
}
/* Rotate is needed for IE, otherwise it is jumpy */
@-webkit-keyframes kenburns {
  50% {
    -webkit-transform: scale(1.3) rotate(0.04deg);
    transform: scale(1.3) rotate(0.04deg);
  }
}
@keyframes kenburns {
  50% {
    -webkit-transform: scale(1.3) rotate(0.04deg);
    transform: scale(1.3) rotate(0.04deg);
  }
}



/**** portfolio ***/
.portfolio-item {
	margin-bottom: 80px;
}
.portfolio-item:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.portfolio-item > div {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 50%;
}
.portfolio-img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.portfolio-text {
	background: var(--base-color);
	color: #fff;
	padding: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.portfolio-text  h2 {
	color: var(--light-gold);
	font-size: 3.4rem;
	margin-bottom: 15px;
}
.portfolio-metas {
	margin-top: 40px;
	margin-bottom: 20px;
}
.brochure {
	margin-top: auto;
	margin-bottom: 10px;
	color: #fff;
	font-weight: 600;
	font-size: 1.4rem;
}
.brochure a {
	color: #fff;
	position: relative;
	letter-spacing: 0.08em;
}
.brochure a::after {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -5px;
	background: #fff;
	-webkit-transition: all .23s ease-out;
	-o-transition: all .23s ease-out;
	transition: all .23s ease-out;
}
.brochure a:hover::after {
	width: 0;
}
.portfolio-meta {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.portfolio-meta > span {
	color: var(--light-gold);
	letter-spacing: 0.08em;
	font-weight: 600;
	font-size: 1.4rem;
	font-family:'Mulish', sans-serif;
	margin-top: 15px;
	margin-top: auto;
}
.portfolio-meta {
	font-family: 'Marcellus', serif;
	font-size: 3.2rem;
	letter-spacing: 0.05em;
	line-height: 1.25;
	min-height: 150px;
}
.portfolio-meta.tube-station {
	font-size: 18px;
	line-height: 1.27;
}
.portfolio-meta.tube-station svg {
	margin-bottom: 25px;
}
.portfolio-meta svg {
	height: 40px;
	margin-bottom: 23px;
}


/**** Map block ****/
#stations {
	position: relative;
}
.marker {
	position: absolute;
	width: 42px;
    height: 62px;
	background: url(assets/images/marker.svg) no-repeat;
	background-position: center;
    background-size: contain;
    cursor: pointer;
}
.clicked .marker {
	opacity: 0.65;
}
.clicked .marker.active {
	opacity: 1;
}
.map-notice {
	color: #fff;
	font-size: 2.2rem;
	font-weight: bold;
}
.map-block {
	background-color: var(--base-color);
	padding: 70px 0;
	margin-bottom: 100px;
}
.map-block img {
	border: 8px solid var(--cta-color);
}

.station-block {
	border: 8px solid var(--cta-color);
	margin-bottom: 40px;
	padding: 25px;
}
.station-block h3 {
	color: #fff;
	font-size: 2.8rem;
	line-height: 1;
	margin-bottom: 5px;
}
.station-block .desc {
	color: var(--light-gold);
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 10px;
}
.station-block a {
	color: #fff;
	letter-spacing: 0.08em;
	font-size: 1.4rem;
	position: relative;
}
.station-block a::after {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -5px;
	background: #fff;
	-webkit-transition: all .23s ease-out;
	-o-transition: all .23s ease-out;
	transition: all .23s ease-out;
}
.station-block a:hover::after {
	width: 0;
}
.portfolio-metas .percent {
	font-size: 2.4rem;
}
.portfolio-meta:nth-child(4) > div {
	min-height: 45px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

/** Legal pages **/
.legal-content {
	padding: 40px 32px;
	border: 2px solid var(--cta-color);
}
