/* ==================== 
1. resets & defaults
2. base styles
3. layout
4. components
5. content by pages
==================== */


/* ==================== 1. resets & defaults ==================== */
html,body,
h1,h2,h3,h4,h5,h6,
ul,ol,p,figure,
form,fieldset,input,textarea{
	margin:0;
	padding:0;
}

header,nav,main,article,section,aside,footer,figure{
	display:block;
}

*{box-sizing: border-box; -webkit-tap-highlight-color: transparent;}

.cl:before,
.cl:after {
  display: table;
  content: " ";
}
.cl:after{
	clear:both;
}

/* ----- */

html,body{
	width:100%;
	height:100%;
}

nav ul,.nav ul{list-style:none;}
a img,fieldset{border:0;}

.logo img{display:block;}
.img-container img,
.thumb img,
figure img{
	display:block;
	max-width:100%;
}

button,
input[type=button],
input[type=submit]{
	cursor:pointer;
	outline:none !important;
}

a,a:hover,a:focus{text-decoration:none;}
a.is-active{cursor:default;}

.disabled{opacity: 0.5; pointer-events: none;}
.disabled-click{pointer-events: none;}

/* ----- */

.no-scroll,
.no-scroll body{
	height:100% !important;
	overflow:hidden;
}

.hidden{display:none !important;}
.item-fade{opacity:0; visibility:hidden; -webkit-transition:opacity 0.3s linear; transition:opacity 0.3s linear; z-index: -1;}
.item-fade.fade-in{opacity:1; visibility:visible; z-index: 1;}

.no-padding{padding:0 !important;}
.no-margin{margin:0 !important;}

/* ----- */

.float-left{float:left !important;}
.float-right{float:right !important;}

.block-center{margin-left:auto !important;margin-right:auto !important;}

.text-l{text-align:left !important;}
.text-r{text-align:right !important;}
.text-c{text-align:center !important;}

.lowercase{text-transform:lowercase !important;}
.uppercase{text-transform:uppercase !important;}
.nocase{text-transform:none !important;}

.italic{font-style: italic;}

.underline{text-decoration: underline;}
.line-through{text-decoration: line-through;}

.highlight {background-color: #ffff00;}

/* ----- */

body{
	background: #fff;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
/*.desktop body{
    min-height: 590px;
    overflow: hidden;
    position: relative;
}*/


/* ==================== 2. base styles ==================== */


/* ----------- preloader ----------- */
.preloader{
	width: 100%;
	height: 100%;
	background: #fff;
	
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.preloader::before{
	content: "";
	background: url(../images/icons/preloader.svg) center no-repeat;
	background-size: 32px 32px;
	
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
/* ----------- /preloader ----------- */


/* ----------- fonts ----------- */
body,input,textarea,button{
	font-family:'63Fonts', 'Roboto', sans-serif;
}
.uppercase{
	font-family:'63Fonts UP', 'Roboto', sans-serif;
}
/* ----------- /fonts ----------- */


/* ----------- container ----------- */
.container{
	width:100%;
	max-width:1200px;
	margin:0 auto;
}
/* ----------- /container ----------- */


/* ----------- row ----------- */
.row-sm{
	margin-left: -10px;
	margin-right: -10px;
}
.row-sm .col,
.row-sm [class*=col-] {
	padding-left: 10px;
	padding-right: 10px;
}

.row-xs{
	margin-left: -5px;
	margin-right: -5px;
}
.row-xs .col,
.row-xs [class*=col-] {
	padding-left: -5px;
	padding-right: -5px;
}
/* ----------- /row ----------- */


/* ----------- colors ----------- */
.color-white{
	color: #fff !important;
}
.color-red{
	color: #ed5019  !important;
}
/* ----------- /colors ----------- */



/* ==================== 3. layout ==================== */


.app{
    width: 100%;
    min-height: 100vh;
    position: relative;
}
@media (max-width: 991px){
    .nav-opened .app{
        height: 100vh;
        overflow: hidden;
    }
}


header.app-header,
nav.app-nav,
footer.app-footer{
	width: 100%;
	position: absolute;
	left: 0;
	z-index: 300;
}

/* ---------- header ---------- */
header.app-header{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 32px 48px 0;
	top: 0;
}

header.app-header .logo img{
	height: 60px;
}
.nav-opened header.app-header .logo{
	background: url("../images/logo_green_white.svg") 0 0 no-repeat;
	background-size: contain;
}
.nav-opened header.app-header .logo img{
	opacity: 0;
}

header.app-header > div,
header.app-header .secondary-nav,
header.app-header .lang-wrap{
	display: flex;
	align-items: center;
	line-height: 1;
}

header.app-header > div{
	padding-top: 27px;
}

header.app-header .secondary-nav li + li{
	margin-left: 18px;
}

header.app-header .lang-wrap{
	position: relative;
	margin-right: 32px;
}
header.app-header .lang-wrap::before{
	content: "";
	width: 1px;
	height: 18px;
	background-color: #acb2bf;
	margin: 0 20px 0;
}
header.app-header .lang-wrap a{
	display: block;
	padding-top: 1px;
	/*color: #414040;*/
	color: #acb2bf;
	font-size: 16px;
	font-weight: bold;
	
	transition: all 0.3s ease;
}
header.app-header .lang-wrap a:hover,
header.app-header .lang-wrap a.active{
	color: #D1EC03;
}
header.app-header .lang-wrap a.active{
	pointer-events: none;
}
header.app-header .lang-wrap a + a{
	margin-left: 14px;
}

@media (max-height: 850px), (max-width: 1370px){
    header.app-header{
        padding: 18px 26px 0;
    }
    header.app-header .logo img{
        height: 40px;
    }
    header.app-header > div {
        padding-top: 16px;
    }
    header.app-header .lang-wrap a{
        font-size: 14px;
    }
    header.app-header .hamburger{
        top: 1px;
    }
}

@media (max-width: 767px){
    header.app-header{
        padding-left: 20px;
        padding-right: 20px;
    }
    header.app-header .logo img{
        height: 28px;
    }
    header.app-header > div {
        align-items: flex-start;
        padding-top: 8px;
    }
    header.app-header .lang-wrap{
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .nav-opened header.app-header .lang-wrap{
        opacity: 1;
        visibility: visible;
    }
    header.app-header .lang-wrap::before{
        display: none;
    }
    header.app-header .lang-wrap a{
        padding-top: 2px;
    }
}
/* ---------- /header ---------- */


/* ---------- nav ---------- */
nav.app-nav{
	display: flex;
	height: 100%;
    background: url("../images/bg/nav.jpg") center no-repeat;
	background-size: cover;
    padding: 0 60px;
	top: 0;
	z-index: 250;
	
	opacity: 0;
	visibility: hidden;
	
	transition: all 0.2s ease;
}

/*nav.app-nav::after{
	content: "";
	width: 38%;
	max-width: 730px;
	height: 100%;
	background: url("../images/bg/nav2.jpg") center no-repeat;
	background-size: cover;
	opacity: 0.4;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}*/

.nav-opened nav.app-nav{
	visibility: visible;
	opacity: 1;
}

.nav-opened .strategy-online-btn{
	display: none;
}

nav.app-nav .nav-container{
	display: flex;
	width: 100%;
    max-width: 1460px;
	margin: auto;
	
	position: relative;
	z-index: 5;
}
nav.app-nav ul + ul{
	margin-left: 140px;
}
nav.app-nav li a {
    display: flex;
    align-items: center;
    padding: 11px 0 10px;
	position: relative;
    
	color: #acb2bf;
    font-family: 'ALK BebasNeue', 'Roboto', sans-serif;
    font-size: 60px;
    font-weight: bold;
	
    transition: all 0.3s ease;
}
nav.app-nav li a::before{
	content: "";
	width: 0;
	height: 2px;
	background: #fff;
	margin: -1px 14px 0 0;
	position: absolute;
	right: 100%;
	top: 50%;
}
nav.app-nav li a:hover,
nav.app-nav li a.active{
	color: #fff;
}
nav.app-nav li a.active::before{
	width: 30px;
}

nav.app-nav .foo{
	display: flex;
	justify-content: space-between;
	
	width: 100%;
	max-width: 496px;
	position: absolute;
	bottom: 40px;
	right: 56px;
	z-index: 5;
}
nav.app-nav .foo p{
	color: #acb2bf;
	font-size: 13px;
}
nav.app-nav .foo .sixtythreebits{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	
	color: #acb2bf;
	font-size: 13px;
}
nav.app-nav .foo .sixtythreebits a{
	margin-left: 8px;
	color: inherit;
}
nav.app-nav .foo .sixtythreebits svg{
	display: block;
	height: 14px;
}
nav.app-nav .foo .sixtythreebits .st0{
	fill:#fdfdfd;
}
nav.app-nav .foo .sixtythreebits .st1{
	opacity:0.5;
	fill:#fff;
}

@media (max-height: 850px), (max-width: 1370px){
    nav.app-nav li a {
        font-size: 40px;
    }
    nav.app-nav li a::before{
        margin-right: 10px;
    }
    nav.app-nav li a.active::before{
        width: 20px;
    }
	
	nav.app-nav .foo{
		right: 32px;
		bottom: 22px;
	}
}

@media (max-width: 991px){
    nav.app-nav::after{
        display: none;
    }
    nav.app-nav .nav-container{
        width: auto;
    }
	
	nav.app-nav .foo{
		max-width: 100%;
		padding: 0 32px 0 26px;
		right: 0;
		bottom: 22px;
	}
}

@media (max-width: 767px){
    nav.app-nav{
        padding: 60px 0 40px;
        position: fixed;
    }
    nav.app-nav .nav-container{
        display: block;
        width: 100%;
        max-height: calc(100vh - 60px - 40px);
        padding-left: 60px;
        padding-right: 26px;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
    nav.app-nav ul + ul {
        margin-left: 0;
    }
    nav.app-nav li a{
        font-size: 22px;
    }
    
	nav.app-nav .foo{
		padding: 0 20px;
		bottom: 15px;
	}
    nav.app-nav .foo p,
	nav.app-nav .foo .sixtythreebits{
        font-size: 10px;
    }
}

@media (max-width: 374px){
	nav.app-nav .foo .sixtythreebits span{
		display: none;
	}
}

.mobile nav.app-nav{
	padding: 60px 0 40px;
	position: fixed;
}
.mobile nav.app-nav .nav-container{
	display: block;
	width: 100%;
	max-height: calc(100vh - 60px - 40px);
	padding-left: 60px;
	padding-right: 26px;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.mobile nav.app-nav ul + ul {
	margin-left: 0;
}
.mobile nav.app-nav li a{
	font-size: 22px;
}

.mobile nav.app-nav .foo{
	padding: 0 20px;
	bottom: 15px;
}
.mobile nav.app-nav .foo p,
.mobile nav.app-nav .foo .sixtythreebits{
	font-size: 10px;
}
/* ---------- /nav main ---------- */


/* ---------- nav secondary ---------- */
.secondary-nav{
	list-style: none;
}
.secondary-nav a{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-top: 2px;
	position: relative;
	
	color: #acb2bf;
	font-family: 'ALK BebasNeue', 'Roboto', sans-serif;
	font-size: 22px;
	font-weight: bold;
	
	transition: all 0.3s ease;
}
.secondary-nav a::before{
	content: "";
	width: 0;
	height: 2px;
	background: #fff;
}
@media (min-width: 992px){
	.secondary-nav a:hover{
		color: #fff;
	}
}
.secondary-nav a.active{
	color: #fff;
}
.secondary-nav a.active::before{
	width: 20px;
	margin-right: 14px;
}
.secondary-nav a.active{
	pointer-events: none;
}

@media (max-height: 850px), (max-width: 1370px){
    .secondary-nav a{
        font-size: 16px;
        padding-top: 0;
    }
    .secondary-nav a.active::before {
        width: 14px;
        margin-right: 8px;
    }
}

.page .secondary-nav-container{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 50%;
	padding-right: 48px;
	
	position: absolute;
	top: 130px;
	right: 0;
	z-index: 10;
}
.page .secondary-nav-container .secondary-nav{
	position: relative;
	top: -5px;
}
@media (max-height: 850px), (max-width: 1370px){
    .page .secondary-nav-container{
        top: 85px;
        padding-right: 26px;
    }
}
@media (max-width: 991px){
    .secondary-nav a.active{
        color: #000;
    }
    .secondary-nav a.active::before{
        background-color: #000;
    }
    .page .secondary-nav-container{
        width: auto;
        padding-right: 26px;
    }
    .page-how-it-works .secondary-nav a.active{
        color: #fff;
    }
    .page-how-it-works .secondary-nav a.active::before{
        background-color: #fff;
    }
}
@media (max-width: 767px){
    .secondary-nav-container,
    .secondary-nav{
        display: none !important;
    }
}
/* ---------- /nav secondary ---------- */


/* ---------- page ---------- */
.page{
	display: flex;
	width:100%;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}
.page > .left-col,
.page > .right-col{
	display: flex;
    width: 50%;
	height: 100vh;
    /*min-height: 590px;*/
	padding-top: 142px;
	padding-bottom: 122px;
	position: relative;
}
.page > .left-col{
	/*padding-left: 48px;*/
	z-index: 2;
}
.page > .right-col{
	/*padding-right: 48px;*/
    padding-left: 140px;
	z-index: 5;
}

.page.before-load:not(.page-home){
	opacity: 0;
}

.ie .page > .left-col{
	align-items: center;
}
@media (max-height: 850px), (max-width: 1500px){
    .page > .right-col{
        padding-left: 77px;
    }
}
@media (max-height: 850px), (max-width: 1370px){
    .page > .left-col,
    .page > .right-col{
        padding-top: 85px;
        padding-bottom: 80px;
    }
}

@media (max-width: 991px){
    .page{
        display: block;
    }
    .page > .left-col,
    .page > .right-col{
        width: 100%;
        height: auto;
    }
    .page > .left-col{
        padding: 126px 0 30px;
    }
    .page > .right-col{
        padding: 40px 0 80px;
    }
}
@media (max-width: 767px){
    .page > .left-col{
        padding: 80px 0 30px;
    }
    .page > .right-col{
        padding: 30px 0 80px;
    }
}
/* ---------- /page ---------- */


/* ---------- footer ---------- */
footer.app-footer{
	padding: 0 48px 40px;
	bottom: 0;
}
footer.app-footer > div{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	/*max-width: 1460px;*/
	margin: 0 auto;
}

footer.app-footer .social-wrap{
	display: flex;
}

footer.app-footer .social-wrap a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #c3c8d1;
	margin-right: 5px;
}
footer.app-footer .social-wrap a svg{
	display: block;
	width: 20px;
	height: 20px;
	fill: #686c75;
}
footer.app-footer .social-wrap a,
footer.app-footer .social-wrap a svg{
	transition:all 0.3s ease;
}
footer.app-footer .social-wrap a:hover{
	border-color: #e1ff01 !important;
}
footer.app-footer .social-wrap a:hover svg{
	fill: #e1ff01 !important;
}
.nav-opened footer.app-footer{
	width: auto;
}
.nav-opened footer.app-footer .social-wrap a:not(:hover){
	border-color: #fff;
}
.nav-opened footer.app-footer .social-wrap a:not(:hover) svg{
	fill: #fff;
}

footer.app-footer .strategy-online-btn{
	min-width: 254px;
}
footer.app-footer .strategy-online-btn,
footer.app-footer .strategy-online-btn::before,
footer.app-footer .strategy-online-btn::after{
	border-color: #e1ff01 !important;
}

@media (max-height: 850px), (max-width: 1370px){
    footer.app-footer{
        padding: 0 26px 22px;
    }
    footer.app-footer .social-wrap a{
        width: 30px;
        height: 30px;
    }
    footer.app-footer .strategy-online-btn {
        min-width: 164px;
    }   
}

@media (max-width: 991px){
    footer.app-footer .social-wrap a{
        border-color: #fff !important;
        margin-right: 8px;
    }
    footer.app-footer .social-wrap a svg{
        fill: #fff !important;
    }
    .nav-opened footer.app-footer{
        display: none;
    }
}
@media (max-width: 767px){
    footer.app-footer{
        padding-left: 20px;
        padding-right: 20px;
    }
    footer.app-footer .strategy-online-btn {
        min-width: 0;
    }
}
/* ---------- /footer ---------- */



/* ==================== 4. components ==================== */


/* ----------- hamburger ----------- */
.hamburger{
	display: block;
	width: 43px;
	height: 23px;
	background-color: transparent;
	border: 0;
	outline: none !important;
	cursor: pointer;
	padding: 0;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	overflow: visible;
	position:relative;
	z-index: 50;
	flex-shrink: 0;
}
.hamburger span,
.hamburger span::before{
	display: block;
	width: 43px;
	height: 3px;
	background-color: #D1EC03;
	border-radius: 3px;
	position: absolute;
	right: 0;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger span{
	top: 0;
}
.hamburger span::before {
	content: "";
	display: block;
	width: 28px;
	top: 20px;
}
.hamburger.is-active span,
.nav-opened .hamburger span{
	transform: translate3d(-5px, 10px, 0) rotate(45deg);
}
.hamburger.is-active span::before,
.nav-opened .hamburger span::before {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}
.hamburger.is-active span,
.hamburger.is-active span::before,
.nav-opened .hamburger span,
.nav-opened .hamburger span::before{
	width: 36px;
}

@media (max-height: 850px), (max-width: 1370px){
    .hamburger{
        height: 20px;
    }
    .hamburger,
    .hamburger span{
        width: 33px;
    }
    .hamburger span::before{
        width: 21px;
        top: 15px;
    }
    .hamburger.is-active span,
    .hamburger.is-active span::before,
    .nav-opened .hamburger span,
    .nav-opened .hamburger span::before{
        width: 30px;
    }
    .hamburger.is-active span,
    .nav-opened .hamburger span {
        transform: translate3d(-5px, 9px, 0) rotate(45deg);
    }
    .hamburger.is-active span::before,
    .nav-opened .hamburger span::before {
        transform: translate3d(0, -16px, 0) rotate(-90deg);
    }
}
@media (max-width: 991px){
    .hamburger{
        height: 14px;
    }
    .hamburger,
    .hamburger span{
        width: 25px;
    }
    .hamburger span,
    .hamburger span::before{
        height: 2px;
    }
    .hamburger span::before{
        width: 16px;
        top: 12px;
    }
    .hamburger.is-active span,
    .hamburger.is-active span::before,
    .nav-opened .hamburger span,
    .nav-opened .hamburger span::before{
        width: 23px;
    }
    .hamburger.is-active span,
    .nav-opened .hamburger span {
        transform: translate3d(-5px, 6px, 0) rotate(45deg);
    }
    .hamburger.is-active span::before,
    .nav-opened .hamburger span::before {
        transform: translate3d(0, -12px, 0) rotate(-90deg);
    }
}
/* ----------- /hamburger ----------- */


/* ----------- page-name ----------- */
.page-name{
	width: 143px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}
.page-name span{
	display: block;
	width: 100vh;
	padding-top: 10px;
    opacity: 0.55;
	
    position: absolute;
    top: 100%;
    left: 0;
    transform: rotate(270deg);
    transform-origin: top left;
	
    color: #717171;
    font-family: 'ALK BebasNeue', 'Roboto', sans-serif;
    font-size: 200px;
    font-weight: bold;
    line-height: 133px;
	text-align: center;
	text-transform: uppercase;
}
@media (max-height: 850px), (max-width: 1500px){
    .page-name{
        width: 77px;
    }
    .page-name span{
        padding-top: 5px;
        font-size: 110px;
        line-height: 72px;
    }
}

@media (max-width: 991px){
    .page-name{
        display: none;
    }
}
/* ----------- /page-name ----------- */


/* ---------- title,text ---------- */
.title{
	display:block;
	color:#000;
    font-family:'ALK BebasNeue', 'Roboto', sans-serif;
	font-weight:bold;
	text-transform: uppercase;
    line-height:1;
}

.title *{
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.title a{
	color: inherit;
}
.title-sm{
	font-size: 30px;
}
.title-md{
	font-size: 60px;
}
.title-lg{
	font-size: 90px;
}


.text,
.text-wrap{
	color:#2e333d;
	font-size:16px;
	font-weight: normal;
}

.text-wrap > *{margin-bottom:20px;}
.text-wrap > *:last-child{margin-bottom:0;}
.text-wrap ul,.text-wrap ol{padding-left: 20px;}
.text-wrap li + li{margin-top:10px;}

.link,
.link:hover,
.text-wrap a,
.text-wrap a:hover{
	color: #2e333d;
}
.link,
.text-wrap a{
	text-decoration:underline;
}
.link:hover,
.text-wrap a:hover{
	text-decoration:none;
}

@media (max-height: 850px), (max-width: 1370px){
    .title-md{
        font-size: 38px;
    }
    .title-lg{
        font-size: 60px;
    }
    .text,
    .text-wrap{
        font-size: 14px;
    }
}
@media (max-width: 991px){
    .title-md{
        font-size: 40px;
    }
    .text,
    .text-wrap{
        font-size: 16px;
    }
}
@media (max-width: 767px){
    .title-lg{
        font-size: 40px;
    }
}
/* ---------- /title,text ---------- */


/* ---------- buttons ---------- */
.btn{
	min-width: 200px;
	height: auto;
	background-color: transparent !important;
	border: 1px solid transparent;
	border-radius: 0;
	box-shadow: none !important;
	outline: none;
	padding: 11px 20px 9px;
	position: relative;
	
	color: #fff !important;
	font-family: 'ALK BebasNeue', 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 28px;
	text-align: center;
	
	transition:all 0.3s ease;
}
.btn::before,
.btn::after{
	content: "";
	display: block;
	width: 21px;
	border-top: 1px solid transparent;
	position: absolute;
	top: 50%;
	
	transition:all 0.3s ease;
    transform: translateY(-50%);
}
.btn::before{
	left: 0;
	opacity: 0;
}
.btn::after{
	right: -11px;
}

.btn:hover{
	letter-spacing: 0.4px;
}
.btn:hover::before{
	opacity: 1;
}
.btn:hover::after{
	right: 0
}

.btn-lg{
	font-size: 26px;
}

/* white */
.btn.btn-outline-white,
.btn.btn-outline-white::before,
.btn.btn-outline-white::after{
	border-color: #fff;
}

/* default */
.btn.btn-outline-gray,
.btn.btn-outline-gray::before,
.btn.btn-outline-gray::after{
	border-color: #acb2bf;
}
.btn.btn-outline-gray.is-active,
.btn.btn-outline-gray.is-active::before,
.btn.btn-outline-gray.is-active::after{
	border-color: #f26938;
	pointer-events: none;
}

/* primary */
.btn.btn-outline-primary,
.btn.btn-outline-primary::before,
.btn.btn-outline-primary::after{
	border-color: #e1ff01 !important;
}

/* secondary */
.btn.btn-outline-secondary,
.btn.btn-outline-secondary::before,
.btn.btn-outline-secondary::after{
	border-color: #f26938 !important;
}
.btn.btn-outline-secondary.is-active,
.btn.btn-outline-secondary.is-active::before,
.btn.btn-outline-secondary.is-active::after{
	border-color: #acb2bf !important;
	pointer-events: none;
}

@media (max-height: 850px), (max-width: 1370px){
    .btn{
        min-width: 118px;
        padding: 1px 20px 0;
        font-size: 16px;
    }
    .btn::before,
    .btn::after{
        width: 15px;
    }
    .btn::after {
        right: -8px;
    }
    .btn-lg{
        font-size: 16px;
    }
}
/* ---------- /buttons ---------- */


/* ---------- form ---------- */
.form{
	display: block;
	min-height: 36px;
	max-width: 540px;
	padding-top: 25px;
}
.form-group{
	border-bottom: 2px solid #515050;
	position: relative;
	margin-bottom: 20px;
}

.form-label,
.form-control{
	display: block;
	padding: 7px 10px 8px;
	color: #fff !important;
	font-size: 13px;
	font-weight: normal;
}

.form-label{
	margin: 0;
	position: relative;
	z-index: 1;
	
	transition: all 0.3s ease;
	
	cursor: text;
}
.form-label em{
	color: #000;
	font-style: normal;
}
.form-control{
	height: 0 !important;
	background: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	margin-top: -15px;
	overflow: hidden;
	position: relative;
	z-index: 0;
	
	transition: all 0.2s ease;
	
	-webkit-appearance: value;
	-moz-appearance: value;
	appearance: value;
}
/*input.form-control{
	position: absolute;
	bottom: 0;
	left: 0;
}*/
textarea.form-control{
	resize: none;
}

.field--focused .form-control,
.field--filled .form-control{
	overflow: visible;
}

.field--focused input.form-control,
.field--filled input.form-control{
	height: 34px !important;
}
.field--focused textarea.form-control,
.field--filled textarea.form-control{
	height: 100px !important;
}

.field--focused .form-label,
.field--filled .form-label{
	transform: translateY(-10px);
	opacity: 0.6;
}

.form-group.has-error{
	border-bottom-color: #e30c0c;
}
.form-group.has-error .form-label{
	color: #e30c0c !important;
}
.page-contact .form-group.has-error{
	border-bottom-color: #000;
}
.page-contact .form-group.has-error .form-label{
	color: #000 !important;
}

.submit-btn-wrap{
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.submit-btn-wrap .icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	position: relative;
	margin-left: 20px;
}
.submit-btn-wrap .icon::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
}
.submit-btn-wrap .i-mail-success,
.submit-btn-wrap .i-mail-fail{
	position: relative;
	top: -3px;
}

.submit-btn-wrap .i-preloader--white::before{
	background-image: url("../images/icons/preloader_white.svg");
	background-size: 24px 24px;
}
.submit-btn-wrap .i-mail-success::before{
	background-image: url("../images/icons/mail_success.svg");
}
.submit-btn-wrap .i-mail-fail::before{
	background-image: url("../images/icons/mail_fail.svg");
}
/* ---------- form ---------- */


/* ---------- img, bg-img ---------- */
.bg-img{
	display: block;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}
.bg-img::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.bg-img--cover{
	background-size: cover;
}
.bg-img--contain{
	background-size: contain;
}

.bg-img.fit-container{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.img-21by9 {
    padding-top: 42.857143%;
}
.img-16by9 {
    padding-top: 56.25%;
}
.img-4by3 {
    padding-top: 75%;
}
.img-1by1 {
    padding-top: 100%;
}
/* ---------- /img, bg-img ---------- */


/* ---------- slick slider ---------- */
/*.slick-arrow{
    display: block;
    width: 32px;
    height: 32px;
    background: transparent url(../images/icons/arrow_right.svg) center no-repeat !important;
    background-size: 32px 32px !important;
    border: 0;
    outline: 0;
    overflow: hidden;
    text-indent: -9999px;
    position: absolute;
    top: 50%;
    z-index: 10;
    
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slick-prev{
    left: 10px;
    -webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.slick-next{
    right: 10px;
}*/
/* ---------- /slick slider ---------- */


/* ---------- box ---------- */
.box{
	width: 568px;
	/*position: relative;*/
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 5;
	transform: translateY(-50%);
}
.box::before{
	content: "";
	width: 100%;
	height: 100%;
	background-color: #e1ff01;
	opacity: 0.78;
	position: absolute;
	top: -68px;
	left: -76px;
	z-index: 1;
}
.box::after{
	content: "";
	/*width: 793px;*/
	/*height: 190px;*/
	width: 139.615%;
	height: 40.426%;
	background: url("../images/boxes/shadow.png") 0 0 no-repeat;
	background-size: contain;
	position: absolute;
	/*bottom: -77px;*/
	/*right: -59px;*/
	bottom: 0;
	right: 0;
	z-index: 0;
	
	transform: translate(7.44%, 40.53%);
}
.box img{
	display: block;
	width: 100%;
	position: relative;
	z-index: 2;
}

@media (max-width: 1500px), (max-height: 850px){
	.box{
		max-width: 460px;
	}
	.box::before{
		top: -44px;
		left: -48px;
	}
}
@media (max-width: 1375px), (max-height: 740px){
	.box{
		max-width: 364px;
	}
    .box::before{
		top: -34px;
		left: -38px;
	}
}
@media (max-width: 991px){
	.box::after{
		transform: translate(13.5%, 40.53%);
	}
}
@media (max-width: 767px){
	.box{
		display: none !important;
	}
}
/* ---------- /box ---------- */


/* ---------- hr ---------- */
hr{
	display: block;
	width: 100%;
	max-width: 230px;
	height: 2px;
	background-color: #e1ff01;
	border: 0;
	margin: 3px 0 30px;
	position: relative;
	text-align: left !important;
}
hr::before{
	content: "";
	display: block;
	width: 50%;
	height: 8px;
	background-color: #e1ff01;
	opacity: 0.73;
	position: absolute;
	top: -3px;
	left: 0;
}

@media (max-height: 850px), (max-width: 1370px){
    hr{
        max-width: 128px;
    }
    hr::before{
        width: 45%;
        height: 6px;
        top: -2px;
    }
}
/* ---------- /hr ---------- */


/* ---------- content ---------- */
.content,
.scrollable-content{
	margin: auto;
	position: relative;
	z-index: 10;
}

.content{
    padding: 0 48px;
}

.content .text-wrap{
	max-width: 500px;
}
.content .text-wrap{
	margin: 30px 0 40px;
}
.content .text-wrap:last-child{
	margin-bottom: 0;
}

.content a,
.content a:hover{
	color: inherit;
}

.scrollable-content{
	display: flex;
    width: 100%;
	height: calc(100vh - 264px);
	overflow: hidden;
    margin-right: 0;
}
.tablet .scrollable-content{
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.desktop .mCustomScrollBox{
	display: flex;
	width: 100%;
}
.desktop .mCSB_inside>.mCSB_container {
	display: flex;
	width: 100%;
	min-height: 100%;
    margin: auto 0 !important;
}

@media (max-height: 850px), (max-width: 1370px){
    .content{
        padding: 0 26px;
    }
    .content .text-wrap{
        margin: 20px 0 30px;
    }
    .scrollable-content{
        height: calc(100vh - 165px);
    }
}

@media (max-width: 991px){
    .content{
        width: 100%;
        padding: 0 60px;
    }
    .content .text-wrap{
        max-width: 100%;
    }
	.scrollable-content{
        height: auto;
    }
}

@media (max-width: 767px){
	.content{
        padding: 0 26px;
    }
}
/* ---------- /content ---------- */


/* ---------- branding elements ---------- */
.branding-element{
	display: block;
	position: absolute;
	z-index: 1;
}
.branding-element::before{
	content: "";
	display: block;
	width: 100%;
}

.branding-element.elem1{
	width: 520px;
	right: 0;
	top: 50%;
	transform: translateY(-45%);
}
.branding-element.elem1::before{
	background: url("../images/branding_elements/01.svg") right -20px center no-repeat;
	background-size: 100% auto;
	padding-top: 135.8%;
}

.branding-element.elem2{
	width: 52.7%;
	max-width: 460px;
	right: 0;
	bottom: 0;
}
.branding-element.elem2::before{
	background: url("../images/branding_elements/02.svg") right -6px top no-repeat;
	background-size: 100% auto;
	padding-top: 115%;
}

.branding-element.elem3,
.branding-element.elem3--red{
    width: 56.5%;
	max-width: 400px;
	right: 0;
	bottom: 28px;
}
.branding-element.elem3::before,
.branding-element.elem3--red::before{
	background: url("../images/branding_elements/03.svg") right -2px top no-repeat;
	background-size: 100% auto;
	padding-top: 142%;
}
.branding-element.elem3--red::before{
	background-image: url("../images/branding_elements/03_red.svg");
}

@media (max-height: 940px){
    .branding-element.elem1{
        width: 460px;
    }
}

@media (max-height: 850px){
    .branding-element.elem1{
        width: 400px;
    }
    .branding-element.elem2{
        max-width: 340px;
    }
    .branding-element.elem3,
    .branding-element.elem3--red{
        max-width: 280px;
    }
}

@media (max-width: 991px){
    .branding-element.elem1 {
        width: 340px;
        top: auto;
        bottom: 100%;
        transform: translateY(50%);
    }
    .branding-element.elem2 {
        width: 390px;
        top: 100%;
        bottom: auto;
        transform: translateY(-42%);
    }
    .branding-element.elem2::before {
        padding-top: 135%;
    }
    .branding-element.elem3,
    .branding-element.elem3--red{
        width: 338px;
        top: 100%;
        bottom: auto;
        transform: translateY(-158px);
    }
}
@media (max-width: 767px){
    .branding-element.elem2 {
        width: 170px;
    }
}
/* ---------- /branding elements ---------- */


/* ---------- pagination ---------- */
@media (min-width: 992px){
    .pagination{
        align-items: stretch;
        border-radius: 0;
        padding-left: 40px;
    }
    .pagination a{
        display: flex;
        align-items: center;
    }
    .pagination a svg{
        display: block;
        width: 31px;
        height: 11px;
    }
    .pagination a svg path{
        fill:none;
        stroke:#fff;
        stroke-width:2;
        stroke-linecap:square;
    }
    .pagination a svg .st1{
        stroke-linejoin:round;
    }
    .pagination a:hover svg path{
        stroke:#E3F901;
    }

    .pagination div{
        display: flex;
        align-items: center;
        padding-top: 2px;
        margin: 0 14px;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
    }
    .pagination div span:last-child{
        color: #E3F901;
    }
    .pagination div i{
        color: #acacac;
        font-style: normal;
        margin: 0 6px;
    }
}

@media (max-width: 991px){
    .pagination{
        display: none;
    }
}
/* ---------- /pagination ---------- */


/* ---------- grid item ---------- */
.grid-item{
	display: flex;
	flex-direction: column;
	width: 100%;
	/*-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	background-color: rgba(255,255,255,0.6);*/
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	
	padding: 30px 0 40px 40px;
	position: relative;
	overflow: hidden;
}
.chrome .grid-item,
.edge .grid-item{
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	background-color: rgba(255,255,255,0.6);
}

.grid-item::before{
	content: "";
	width: 100%;
	height: 100%;
	background: url("../images/bg/grid_item.png");
	background-size: cover;
	opacity: 0.8;
	
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	
	pointer-events: none;
}
.chrome .grid-item::before,
.edge .grid-item::before{
	display: none;
}

.grid-item .title{
	overflow: hidden;
	padding-right: 10px;
	margin-bottom: 20px;
	font-size: 30px;
}
.grid-item .title::after{
	content: "";
	display: block;
	width: 63px;
	height: 4px;
	background-color: #e1ff01;
	margin-top: 10px;
}

.grid-item > div{
	position: relative;
	margin-top: auto;
}

.grid-item img{
	display: block;
	max-width: 100%;
}

.grid-item .text-wrap{
	opacity: 0;
	padding: 0 14px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	
	color: #000;
	font-size: 14px;
}
.grid-item .text-wrap > h5{
	font-size: 20px;
	font-weight: normal;
}

.grid-item img,
.grid-item .text-wrap{
	transition: all 0.3s ease;
}
.grid-item:hover img{
	opacity: 0;
}
.grid-item:hover .text-wrap{
	opacity: 1;
}
/* ---------- /grid item ---------- */



/* ==================== 5. content by pages ==================== */


/* ---------- home ---------- */
.page-home{
	overflow: hidden;
}
.page-home .left-col{
	background: url("../images/bg/home.jpg") 0 0 no-repeat;
	background-size: cover;
	z-index: 1;
}
.page-home .left-col::before{
	content: "";
	width: 100%;
	height: 0;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 15;
}
.page-home .content .text{
	margin: 12px 0 30px;
}
.page-home .content .btn.btn-outline-white:hover,
.page-home .content .btn.btn-outline-white:hover::before,
.page-home .content .btn.btn-outline-white:hover::after{
	border-color: #e1ff01;
}

.page-home .right-col::before{
	content: "";
	width: 100%;
	height: 68%;
	background-color: #E3F901;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.page-home .right-col::after{
	content: "";
	width: 62.92%;
	height: 75.84%;
	background: url("../images/branding_elements/01.svg") right center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 2;
	
	transform: translateY(-44%);
}
.page-home .box{
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 5;
	transform: translateY(-50%);
}
.page-home .box::before{
	display: none;
}

.page-home .page-name{
	left: auto;
	right: 100%;
}

/* animations */
@media (min-width: 992px){
    .page-home .left-col::before,
    .page-home .left-col .content,
    .page-home .right-col::before,
    .page-home .right-col .box,
    .page-home .page-name{
        transition: all 0.6s ease-out;
    }

    .page-home .left-col .content{
        transition-delay: 0.1s;
    }
    .page-home.before-load .left-col::before{
        height: calc(100vh - 124px);
    }
    .page-home.before-load .left-col .content{
        opacity: 0;
        transform: translateY(50px);
    }
    .page-home.before-load .right-col::before{
        height: 158px;
    }
    .page-home.before-load .box{
        left: calc(100% - 568px);
    }
    .page-home.before-load .page-name{
        opacity: 0;
        top: 40%;
    }
}

@media (max-width: 1500px), (max-height: 850px){
	.page-home .box{
		max-width: 500px;
	}
}
@media (max-width: 1270px), (max-height: 678px){
	.page-home .box{
		max-width: 375px;
	}
}
@media (max-width: 1270px) and (min-height: 638px){
    .page-home .right-col::before{
        height: 62%;
    }
}

@media (max-width: 1370px), (max-height: 850px){
    .page-home .content .text{
        margin: 12px 0 30px;
    }
    .page-home .content .btn{
        min-width: 160px;
        padding: 6px 20px 5px;
        font-size: 20px;
    }
}

@media (max-width: 991px){
    .page-home .left-col{
        min-height: calc(100vh - 475px);
        padding-bottom: 104px;
    }
    .page-home .right-col{
        height: 475px;
        padding: 0;
    }
    .page-home .right-col::before{
        height: 100%;
    }
    .page-home .right-col::after{
        width: 364px;
        height: 490px;
        top: auto;
        bottom: 100%;
        transform: translateY(35%);
    }
    .page-home .right-col .box{
        width: 364px;
        top: -50px;
        left: 60px;
        transform: translateY(0);
    }
}

@media (max-width: 767px){
    .page-home .left-col{
        min-height: calc(100vh - 120px);
        padding-bottom: 30px;
    }
    .page-home .right-col{
        height: 120px;
        padding: 0;
    }
    .page-home .right-col::after{
        width: 220px;
        height: 300px;
        top: auto;
        bottom: 100%;
        transform: translate(6%, 45%);
    }
}
/* ---------- /home ---------- */


/* ---------- what we offer ---------- */
.page-what-we-offer .left-col{
    padding-right: 20px;
}
.page-what-we-offer .right-col{
	background: url("../images/bg/what_we_offer.jpg") 0 0 no-repeat;
	background-size: cover;
}

.page-what-we-offer .right-col .box{
	transform: translateY(-40%);
}
@media (max-height: 850px){
	.page-what-we-offer .right-col .box{
        transform: translateY(-35%);
    }
}
@media (max-width: 991px){
    .page-what-we-offer .left-col{
        min-height: calc(100vh - 358px);
        padding-bottom: 104px;
        padding-right: 0;
    }
    .page-what-we-offer .right-col{
        height: 358px;
    }
    .page-what-we-offer .right-col .box{
        width: 364px;
        top: -60px;
        left: 92px;
        transform: translateY(0);
    }
    .page-what-we-offer .right-col .box::before{
        top: -32px;
        left: -32px;
    }
}
@media (max-width: 767px){
    .page-what-we-offer .left-col{
        min-height: calc(100vh - 120px);
        padding-bottom: 30px;
    }
    .page-what-we-offer .right-col{
        height: 120px;
        z-index: inherit;
    }
    .page-what-we-offer .branding-element{
        z-index: -1;
    }
}
/* ---------- /what we offer ---------- */


/* ---------- what we do ---------- */
.page-what-we-do .left-col{
    padding-right: 20px;
}
.page-what-we-do .right-col{
	background: url("../images/bg/what_we_do.jpg") 0 0 no-repeat;
	background-size: cover;
}

.page-what-we-do .right-col .box{
	transform: translateY(-40%);
}
@media (max-height: 850px){
	.page-what-we-do .right-col .box{
        transform: translateY(-35%);
    }
}
@media (max-width: 991px){
    .page-what-we-do .left-col{
        min-height: calc(100vh - 358px);
        padding-bottom: 104px;
        padding-right: 0;
    }
    .page-what-we-do .right-col{
        height: 358px;
        padding: 0;
    }
    .page-what-we-do .right-col .box{
        width: 364px;
        top: -60px;
        left: 92px;
        transform: translateY(0);
    }
    .page-what-we-do .right-col .box::before{
        top: -32px;
        left: -32px;
    }
}

@media (max-width: 767px){
    .page-what-we-do .left-col{
        min-height: calc(100vh - 120px);
        padding-bottom: 30px;
    }
    .page-what-we-do .right-col{
        height: 120px;
        z-index: inherit;
    }
    .page-what-we-do .branding-element{
        z-index: -1;
    }
}
/* ---------- /what we do ---------- */


/* ---------- why ---------- */
.page-why .right-col{
	background: url("../images/bg/why.jpg") 0 0 no-repeat;
	background-size: cover;
}    

@media (max-width: 991px){
    .page-why .left-col{
        min-height: calc(100vh - 430px);
        padding-bottom: 30px;
    }
    .page-why .right-col{
        height: 430px;
        background-position: bottom;
        padding: 40px 0 80px;
        z-index: 1;
    }
    .page-why .right-col  .content{
        display: block !important;
    }
    .page-why .right-col .text-wrap{
        max-width: 360px;
    }
}
@media (max-width: 767px){
    .page-why .left-col{
        min-height: calc(100vh - 492px);
    }
    .page-why .right-col{
        height: 492px;
        background-position: bottom;
        padding: 30px 0 70px;
    }
}
/* ---------- /why ---------- */


/* ---------- how-it-works ---------- */
.page-how-it-works{
	background-color: #2c2c2c;
}
.page-how-it-works .right-col{
	background: url("../images/bg/why.jpg") 0 0 no-repeat;
	background-size: cover;
}
.page-how-it-works .left-col .text-wrap{
	color: #aeaeae;
}

.page-how-it-works .org-structure{
	display: block;
	width: 72.91%;
	max-width: 700px;
	position: absolute;
	left: 0;
	bottom: 132px;
}

@media (max-height: 850px), (max-width: 1370px){
    .page-how-it-works .org-structure{
        bottom: 80px;
    }
}
@media (max-height: 850px){
    .page-how-it-works .org-structure{
        max-width: 490px;
        bottom: 60px;
    }
}

@media (max-width: 991px){
    .page-how-it-works .left-col{
        min-height: calc(100vh - 515px);
        padding-bottom: 30px;
    }
    .page-how-it-works .left-col .text-wrap{
        max-width: 460px;
    }
    .page-how-it-works .right-col{
        height: 515px;
        background-position: bottom;
        padding: 40px 60px 80px;
        z-index: 1;
    }
    .page-how-it-works .org-structure{
        width: 100%;
        max-width: 500px;
        position: relative;
        bottom: 0;
    }
}
@media (max-width: 767px){
    .page-how-it-works .left-col{
        min-height: calc(100vh - 420px);
    }
    .page-how-it-works .right-col{
        height: 420px;
        padding: 30px 0 70px;
    }
}
/* ---------- /what how-it-works ---------- */


/* ---------- services ---------- */
.page-services .left-col{
	width: 36.875%;
}
.page-services .left-col .content{
	margin: 0 0 0 auto;
}
.page-services .left-col .content .text-wrap{
	margin: 20px 0 25px;
}
.page-services .left-col .btn-row{
	display: flex;
	margin: 0 -10px;
}
.page-services .left-col .btn-row .btn{
	min-width: 170px;
	margin: 0 10px;
	color: #717171 !important;
}

.page-services .right-col{
	width: 63.125%;
	background: url("../images/bg/team.jpg") 0 0 no-repeat;
	background-size: cover;
	z-index: 5;
}

.page-services .left-col .branding-element.elem3--red{
	bottom: -30px;
}

.services-container{
	width: 100vw;
	padding-left: 60px;
	position: absolute;
	right: 0;
	bottom: 122px;
}
.services-container ul{
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	position: relative;
    right: -8px;
}
.services-container li{
	width: 20%;
	max-width: 316px;
	padding: 0 8px;
}
/*.services-container li:first-child{
	padding-left: 0;
}
.services-container li:last-child{
	padding-right: 0;
}*/
.services-container .grid-item{
	min-height: 100%;
    padding: 20px 0 30px 30px;
}
.services-container .grid-item .title{
	font-size: 24px;
}

@media (max-height: 850px), (max-width: 1370px) {
	.page-services .left-col .btn-row .btn{
		min-width: 118px;
	}
}

@media (max-width: 1360px) {
	.services-container{
		padding-left: 26px;
	}
}

@media (max-height: 790px) {
	.page-services .left-col,
    .page-services .right-col{
        width: 50%;
    }
	.services-container{
		bottom: 80px;
	}
}
@media (max-height: 690px) {
	.page-services .left-col .content .text-wrap{
        margin: 10px 0 15px;
    }
	.services-container li{
        max-width: 240px;
    }
    .services-container .grid-item{
        padding: 15px 0 20px 20px;
    }
    .services-container .grid-item .title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .services-container .grid-item .text-wrap{
        font-size: 12px;
    }
}
@media (max-height: 620px) {
	.services-container li{
        max-width: 200px;
    }
}

@media (max-width: 991px) {
	.page-services .left-col,
    .page-services .right-col{
        width: 100%;
    }
	.page-services .left-col{
		min-height: calc(100vh - 440px);
		padding-bottom: 94px;
	}
	.page-services .right-col{
		height: 440px;
	}
	.page-services .left-col .content .text-wrap{
		max-width: 600px;
	}
	
	.services-container{
		width: auto;
		overflow: hidden;
		padding: 0;
		left: 60px;
		bottom: 80px;
	}
	.services-container ul{
		justify-content: flex-start;
		width: 100%;
		overflow: auto;
	}
	.services-container li{
		flex-shrink: 0;
		width: 280px;
		max-width: none;
	}
	.services-container .grid-item{
		height: 418px;
	}
	.services-container .grid-item > div {
		position: static;
		margin-top: 0;
	}
	.services-container .grid-item .title {
		font-size: 20px;
	}
	.services-container .grid-item .text-wrap,
	.services-container .grid-item img{
		opacity: 1 !important;
	}
	.services-container .grid-item .text-wrap{
		position: relative;
		margin-bottom: 20px;
	}
	.services-container .grid-item img {
		width: calc(100% - 30px);
		position: absolute;
		bottom: 30px;
		right: 0;
	}
}
@media (max-width: 767px) {
	.page-services .left-col{
		min-height: calc(100vh - 390px);
	}
	.page-services .right-col{
		height: 390px;
	}
	.services-container{
		left: 20px;
	}
	.services-container li{
		width: 240px;
	}
	.services-container .grid-item{
		height: 375px;
		padding: 15px 0 20px 20px;
	}
	.services-container .grid-item .title {
		font-size: 18px;
	}
	.services-container .grid-item .text-wrap {
		font-size: 12px;
	}
	.services-container .grid-item img {
		width: calc(100% - 20px);
		bottom: 20px;
	}
}

/* ---------- /services ---------- */


/* ---------- team ---------- */
.page-team .left-col{
	width: 36.875%;
}
.page-team .left-col .content{
	margin: 0 0 0 auto;
}

.page-team .right-col{
	width: 63.125%;
	background: url("../images/bg/team.jpg") 0 0 no-repeat;
	background-size: cover;
	z-index: 5;
}

.page-team .slick-carousel-container{
	position: absolute;
	left: -70px;
	right: -8px;
	bottom: 102px;
}

.page-team .slick-arrows-custom{
	display: flex;
	position: absolute;
	bottom: 100%;
	right: 26px;
}
.page-team .slick-arrows-custom button{
	display: block;
	background-color: transparent;
	border: 0;
	padding: 0;
	margin-left: 15px;
}
.page-team .slick-arrows-custom button svg {
    display: block;
    width: 31px;
    height: 11px;
}
.page-team .slick-arrows-custom button svg path{
	fill:none;
	stroke:#fff;
	stroke-width:2;
	stroke-linecap:square;
}
.page-team .slick-arrows-custom button svg .st1{
	stroke-linejoin:round;
}
.page-team .slick-arrows-custom button:hover svg path{
	stroke:#e1ff01;
}

.page-team .slick-carousel{
	width: 100%;
}
.page-team .slick-carousel .slick-slide{
	padding: 20px 8px 20px;
	outline: none !important;
}
.page-team .slick-slide.slick-cloned .grid-item{
	box-shadow: none;
}

.page-team .slick-carousel .grid-item .title{
	word-spacing: 1000px;
}

@media (min-width: 1921px){
    .page-team .slick-carousel-container{
        width: 1290px;
        left: auto;
    }
}

@media (max-width: 1590px){
    .page-team .slick-carousel-container{
        left: -35px;
    }
}

@media (max-height: 678px) and (min-width: 1591px){
	.page-team .slick-arrows-custom{
		left: 96px;
	}
}

@media (max-height: 850px), (max-width: 1370px){
    .page-team .slick-carousel-container{
        bottom: 60px;
    }
}

@media (max-height: 678px){
	.page-team .grid-item{
        padding: 20px 0 25px 30px;
    }
}

@media (max-height: 678px) and (min-width: 1700px){
	.page-team .grid-item .title {
        word-spacing: normal !important;
        margin-bottom: 15px;
    }
}

@media (max-height: 678px), (max-width: 1440px){
	.page-team .grid-item .text-wrap > h5{
        font-size: 16px;
        margin-bottom: 10px;
    }
	.page-team .grid-item .text-wrap{
        font-size: 13px;
    }
}

@media (max-height: 678px) and (max-width: 1278px), (max-height: 768px) and (max-width: 1150px){
	.page-team .left-col,
	.page-team .right-col{
		width: 50%;
	}
	
	.page-team .left-col .text-wrap{
        margin-top: 10px;
    }
	
	.page-team .slick-carousel-container{
        width: 780px;
        bottom: 50px;
        left: auto;
    }
	
	.page-team .grid-item{
        padding: 15px 0 15px 20px;
    }
	.page-team .grid-item .title {
        font-size: 18px;
        word-spacing: normal !important;
        margin-bottom: 15px;
    }
    .page-team .grid-item .title::after {
        height: 2px;
        margin-top: 5px;
    }
	.page-team .grid-item .text-wrap{
        font-size: 12px;
    }
}

@media (min-height: 679px) and (max-width: 1370px){
	.page-team .slick-carousel-container{
        width: 991px;
        left: auto;
    }
}


@media (max-width: 991px){
	.page-team .left-col,
	.page-team .right-col{
		width: 100%;
	}
	.page-team .left-col{
		min-height: calc(100vh - 622px);
		padding-bottom: 120px;
	}
	.page-team .right-col{
		height: 622px;
	}
	.page-team .slick-carousel-container{
		width: 100%;
		padding-left: 40px;
	}
	.page-team .slick-arrows-custom{
		right: 20px;
	}
	.page-team .slick-arrows-custom button svg path{
		stroke: #e1ff01;
	}
	.page-team .grid-item{
		align-items: stretch;
		height: 610px;
		padding-bottom: 40px;
	}
	.page-team .grid-item > div{
		position: static;
		margin-top: 0;
	}
	.page-team .grid-item img,
	.page-team .grid-item .text-wrap{
		opacity: 1 !important;
	}
	.page-team .grid-item .text-wrap{
		margin-bottom: 20px;
		position: relative;
	}
	.page-team .grid-item img{
		width: calc(100% - 40px);
		position: absolute;
		right: 0;
		bottom: 40px;
	}
}

@media (max-width: 767px){
	.page-team .left-col{
		min-height: calc(100vh - 574px);
	}
	.page-team .right-col{
		height: 574px;
	}
	.page-team .slick-carousel-container{
		padding-left: 10px;
	}
	.page-team .grid-item{
		height: 562px;
		padding: 15px 0 20px 20px;
	}
	.page-team .slick-carousel .grid-item .title {
		font-size: 30px;
		word-spacing: normal;
		margin-bottom: 20px;
	}
	.page-team .grid-item .text-wrap{
		font-size: 13px;
	}
	.page-team .grid-item img{
		width: calc(100% - 20px);
		bottom: 20px;
	}
}


@media (max-width: 667px){
	.page-team .slick-carousel-container{
		max-width: 400px;
	}
}

@media (max-width: 400px){
	.page-team .left-col {
		min-height: calc(100vh - 536px);
	}
	.page-team .right-col {
		height: 536px;
	}
	.page-team .grid-item{
		height: 530px;
	}
	.page-team .grid-item img{
		max-height: 270px;
		object-fit: cover;
	}
}

@media (max-width: 374px){
	.page-team .left-col{
		min-height: calc(100vh - 530px);
	}
	.page-team .right-col{
		height: 530px;
	}

	.page-team .grid-item{
		height: 510px;
	}
}
/* ---------- /team ---------- */


/* ---------- contact ---------- */
.page-contact .left-col{
	background-color: #f26938;
}
.page-contact .left-col .content{
    width: 100%;
    max-width: 496px;
}
.page-contact .right-col{
	background: url("../images/bg/contact.jpg") 0 0 no-repeat;
	background-size: cover;
}

.page-contact .right-col .text-wrap > *:not(:last-child){
	margin-bottom: 10px;
}

@media (max-width: 1370px), (max-height: 850px){
    .page-contact .left-col .content{
        width: 100%;
        max-width: 452px;
    }
}

@media (max-width: 991px){
    .page-contact .content {
        max-width: 520px !important;
    }
    .page-contact .left-col{
        min-height: calc(100vh - 448px);
        padding-bottom: 60px;
    }
    .page-contact .left-col .title{
        text-align: center;
    }
    .page-contact .right-col{
        height: 448px;
        padding: 40px 0 80px;
    }
    .page-contact .right-col .content{
        display: block !important;
    }
    .page-contact .right-col .title{
        margin-bottom: 40px;
    }
}
@media (max-width: 767px){
    .page-contact .left-col{
        min-height: calc(100vh - 320px);
        padding-bottom: 30px;
    }
    .page-contact .right-col{
        height: 320px;
        padding: 30px 0 70px;
    }
    .page-contact .right-col .title{
        margin-bottom: 20px;
    }
}
/* ---------- /contact ---------- */


/* ---------- online strategy ---------- */
.page-online-strategy .left-col{
	background-color: #2c2c2c;
}
.page-online-strategy .left-col .content{
    width: 100%;
    max-width: 636px;
	margin: auto;
}
.page-online-strategy .right-col{
	background: url("../images/bg/online_strategy.jpg") 0 0 no-repeat;
	background-size: cover;
}


.page-online-strategy .form-group{
	border-bottom: 1px solid rgba(81,80,80,0.8);
}
.page-online-strategy .form-label em{
	color: #ed5019;
}
.page-online-strategy .form-label,
.page-online-strategy .form-control{
	color: rgba(255,255,255,0.8) !important;
	font-size: 12px;
}

@media (max-width: 1370px), (max-height: 850px){
    .page-online-strategy .left-col .content{
        max-width: 592px;
    }
}

@media (max-width: 991px){
    .page-online-strategy{
        display: flex;
        flex-direction: column;
    }
    .page-online-strategy .left-col{
        order: 2;
        padding: 50px 0 100px;
    }
    .page-online-strategy .left-col .content {
        max-width: 660px;
    }
    .page-online-strategy .branding-element.elem2 {
        top: auto;
        bottom: 100%;
        transform: translateY(66%);
    }
    .page-online-strategy .right-col{
        order: 1;
        padding: 126px 0 30px;
    }
}
@media (max-width: 991px){
    .page-online-strategy .left-col{
        padding: 30px 0 90px;
    }
    .page-online-strategy .left-col .content {
        max-width: 660px;
    }
    .page-online-strategy .branding-element.elem2 {
        top: auto;
        bottom: 100%;
        transform: translateY(66%);
    }
    .page-online-strategy .right-col{
        padding: 80px 0 30px;
    }
}
@media (max-width: 400px){
	.page-online-strategy .left-col .content > .title{
        max-width: 200px;
    }
}
/* ---------- /online strategy ---------- */


/* ---------- section ---------- */
/* ---------- /section ---------- */
