/*** 

====================================================================
			Fonts
====================================================================

***/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

@import url('fontawesome-all.css');
@import url('owl.css');
@import url('flaticon.css');

/*** 

====================================================================
		Reset
====================================================================

 ***/

*{
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
	font-size: 100%;
}


/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
	
	font:16px/1 sans-serif;
	line-height: 28px;
	font-weight:400;
	color: #626262;
	font-size: 1rem;
	line-height: 1.5rem;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	background-color: #312F2F;
	font-family: 'Montserrat', sans-serif;
}

a{
	text-decoration:none;
	cursor:pointer;
	color: inherit;
}

a:hover,
a:focus,
a:visited{
	text-decoration:none;
	outline:none;
}


h1,h2,h3,h4,h5,h6 {
	position:relative;
	margin:0px;
	background:none;
	line-height:1.2em;
	color: #ffffff;
	letter-spacing: .02em;
	font-family: 'Montserrat', sans-serif;
}

textarea{
	overflow:hidden;	
	resize: none;
}

button{
	outline: none !important;
	cursor: pointer;
	background: none;
	border: 0;
}

p,.text{
	color: #ffffff;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	letter-spacing: .02em;
	margin: 0;
}

::-webkit-input-placeholder{color: rgba(255,255,255,.40);}
::-moz-input-placeholder{color: rgba(255,255,255,.40);}
::-ms-input-placeholder{color: rgba(255,255,255,.40);}

::-webkit-scrollbar {width: 2px; }
::-webkit-scrollbar-track {background: transparent; }
::-webkit-scrollbar-thumb {background-color: rgba(112,112,112,.50); border-radius: 10px; }

.auto-container{
	position:static;
	max-width:1200px;
	padding:0px 15px;
	margin:0 auto;
	width: 100%;
}

.small-container{
	position:static;
	max-width:1000px;
	padding:0px 15px;
	margin:0 auto;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
	overflow: hidden;
	z-index: 99;
	padding-bottom: 54px;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

.mobile,
.desktop{
	position: relative;
	margin-bottom: 0;
}

.mobile img,
.desktop img{
	display: block;
	width: 100%;
}

.mobile{
	display: none;
}

img{
	pointer-events: none;
}


/* toggle-button  */


.button {
	border-radius: 5px;
    position: relative;
	width: 106px;
	height: 48px;
    overflow: hidden;
}


.button-cover, .knobs, .layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


.checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
    border-radius: 5px;
}

.knobs {
    z-index: 2;
}

.layer {
    width: 100%;
    background-color: #E3262F;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    z-index: 1;
}


.toggle-button .knobs:before, 
.toggle-button .knobs:after, 
.toggle-button .knobs span {
    position: absolute;
    top: 5px;
    width: 20px;
    height: 10px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    border-radius: 2px;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}

.toggle-button .knobs:before, 
.toggle-button .knobs:after {
    color: #4e4e4e;
    z-index: 1;
}

.toggle-button .knobs:before {
    height: 25px;
    width: 25px;
    background-image: url(../images/icons/tick.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
    left: 15px;
    top: 10px;
}

.toggle-button .knobs:after {
    height: 25px;
    width: 25px;
    background-image: url(../images/icons/cross.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
    right: 15px;
    top: 12px;
}

.toggle-button .knobs span {
    left: 63px;
    width: 38px;
    height: 38px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 4px;
    z-index: 2;
}

.toggle-button .checkbox:checked + .knobs span {
    left: 5px;

}

.toggle-button .checkbox:checked ~ .layer {
	background-color: #707070;
}


/*=== THeme Buttons ===*/

.theme-btn{
	text-align: center;
	color: inherit;
	display: inline-block;
	-webkit-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
}

.theme-btn.large{
	padding: 20px 50px;
	line-height: 30px;
	font-size: 24px;
	letter-spacing: 2px;
}

.theme-btn .icon{
	margin-left: 10px;
	display: inline-block;
}

/*Btn Style One*/

.btn-style-one{
	position:relative;
	min-width: 150px;
	padding: 10px 30px;
	font-size: 14px;
	line-height: 21px;
	overflow: hidden;
	border-radius: 50px;
	border: 2px solid #FECD07;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	color: #222222;
	background: #FECD07;
	overflow: hidden;
}

.btn-style-one:hover{
	color: #222222;
	background: #FECD07;
}


/*Btn Style Two*/

.btn-style-two{
	position:relative;
	min-width: 200px;
	padding: 20px 27px;
	font-size: 22px;
	line-height: 25px;
	color: #F74034;
	font-weight: 700;
	overflow: hidden;
	border-radius: 5px;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	background: #ffffff;
	overflow: hidden;
	-webkit-box-shadow: 0 14px 30px rgba(163,48,53,.25);
    box-shadow: 0 14px 30px rgba(163,48,53,.25);
}

.btn-style-two:hover{
	background-color: #ffffff;
	color: #F74034;
	-webkit-box-shadow: 0 0px 30px rgba(163,48,53,.15);
    box-shadow: 0 0px 30px rgba(163,48,53,.15);
}



/*Btn Style Three*/

.btn-style-three{
	position:relative;
	min-width: 200px;
	padding: 20px 27px;
	font-size: 22px;
	line-height: 25px;
	color: #3E3E3E;
	overflow: hidden;
	border-radius: 5px;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	background: #ffffff;
	overflow: hidden;
}

.btn-style-three:hover{
	background-color: #ffffff;
	color: #3E3E3E;
}

.theme_color{
	color:#5550C4;
}

.yellow_color{
	color: #FEC517;
}

.pull-right{
	float: right;
}

.pull-left{
	float: left;
}

/*.preloader{ 
	position:fixed; 
	left:0px; 
	top:0px; 
	width:100%; 
	height:100%; 
	z-index:999999; 
	background-color:#312F2F; 
	background-position:center center; 
	background-repeat:no-repeat; 
	background-size: 100px;
	background-image:url(../images/logo-light.png);
}

.preloader.active{
	height:100%;
} 
*/

.scroll-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #1b2032;
  background-color: #ffffff;
  line-height: 40px;
  border-radius: 50px 50px 0 0;
  text-align: center;
  display: none;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.10);
  box-shadow: 0 3px 10px rgba(0,0,0,0.10);
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}

.tabs-box{
	position: relative;
}

.tabs-box .tab{
	display: none;
}

.tabs-box .active-tab{
	display: block;
}


/* Gradient Layers ===*/
.gradient-layer{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.gradient-layer:after{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	content: "";
	background: transparent -o-linear-gradient(top, #000000 0%, #FF0000 100%) 0% 0% no-repeat padding-box;
	background: transparent -webkit-gradient(linear, left top, left bottom, from(#000000), to(#FF0000)) 0% 0% no-repeat padding-box;
	background: transparent linear-gradient(180deg, #000000 0%, #FF0000 100%) 0% 0% no-repeat padding-box;
	-webkit-transform: matrix(-1, 0, 0, -1, 0, 0);
    -ms-transform: matrix(-1, 0, 0, -1, 0, 0);
    transform: matrix(-1, 0, 0, -1, 0, 0);
	opacity: 0.19;
}

/*** 

====================================================================
	Icons
====================================================================

***/

.anim-icons{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	max-width: 1090px;
	margin: 0 auto;
}

.anim-icons .icon{
	position: absolute;
	right: 100%;
	top: 0;
}


.icon{
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.icon_smile{
	width: 131px;
	height: 77px;
	background-image: url(../images/icons/icon_smile.svg) ;
}

.icon_smile_red{
	width: 121px;
	height: 72px;
	background-image: url(../images/icons/icon_smile_red.png) ;
}

.icon_prev{
	width: 12px;
	height: 17px;
	background-image: url(../images/icons/icon_prev.svg) ;
}

.icon_next{
	width: 12px;
	height: 17px;
	background-image: url(../images/icons/icon_next.svg) ;
}

.icon_plus{
	width: 10px;
	height: 10px;
	background-image: url(../images/icons/icon_plus.svg) ;
}

.icon_cross{
	width: 25px;
	height: 25px;
	background-image: url(../images/icons/icon_cross.png) ;
	-webkit-animation: fa-spin 10s infinite;
	animation: fa-spin 10s infinite;
}

.icon_hexagon{
	width: 10px;
	height: 10px;
	background-image: url(../images/icons/icon_hexagon.png) ;
}

.icon_decorative_1{
	width: 190px;
	height: 97px;
	background-image: url(../images/icons/icon_decorative_1.png) ;
}

.icon_decorative_2{
	width: 261px;
	height: 125px;
	background-image: url(../images/icons/icon_decorative_2.png) ;
}

.icon_decorative_3{
	width: 192px;
	height: 192px;
	background-image: url(../images/icons/icon_decorative_3.png) ;
	-webkit-animation: fa-spin 10s infinite;
	animation: fa-spin 10s infinite;
}

.icon_decorative_3{
	width: 192px;
	height: 192px;
	background-image: url(../images/icons/icon_decorative_3.png) ;
}

.icon_decorative_4{
	width: 328px;
	height: 465px;
	background-image: url(../images/icons/icon_decorative_4.png) ;
}

.icon_decorative_5{
	width: 367px;
	height: 313px;
	background-image: url(../images/icons/icon_decorative_5.png) ;
}

.icon_championship{
	width: 201px;
	height: 97px;
	background-image: url(../images/icons/icon_championship.png) ;
}

.icon_instagram_red{
	width: 45px;
	height: 45px;
	background-image: url(../images/icons/icon_instagram_red.svg) ;
}

.icon_arrow_up{
	width: 16px;
	height: 16px;
	background-image: url(../images/icons/icon_arrow_up.svg) ;
}

.icon_instagram{
	width: 16px;
	height: 16px;
	background-image: url(../images/icons/icon_instagram.svg) ;
}

.icon_facebook{
	width: 16px;
	height: 16px;
	background-image: url(../images/icons/icon_facebook.svg) ;
}

.icon_youtube{
	width: 16px;
	height: 16px;
	background-image: url(../images/icons/icon_youtube.svg) ;
}

.icon_login{
	width: 18px;
	height: 16px;
	background-image: url(../images/icons/icon_login.svg) ;
}

.icon_detail{
	width: 16px;
	height: 14px;
	background-image: url(../images/icons/icon_detail.svg) ;
}

.icon_map{
	width: 18px;
	height: 17px;
	background-image: url(../images/icons/icon_map.svg) ;
}

/*** 

====================================================================
	Main Header style
====================================================================

***/

.header-span{
	position: relative;
	display: block;
	width: 100%;
}

header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 99;
	padding: 40px 55px 30px;
}

header.dark-bg{
	background-color: #312f2f;
}

header.light-bg{
	background: #F5F4EF;
}

.hide-desktop{
	display: none !important;
}

header .logo-box{
	position: relative;
}


header .logo{
    position: relative;
    display: inline-flex;
}

header .logo a{
	display: inline-block;
}

header .logo img{
	display: block;
	width: 120px;
}

/*** 

====================================================================
	Banner Section
====================================================================

***/

.banner-section{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: calc(100vh - 46px);
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
}

.banner-section .content-box{
	position: relative;
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
	top: 80px;
}

.banner-section .logo{
	position: relative;
	margin-bottom: 35px;
}

.banner-section .logo img{
	width: 140px;
	margin-top: 20px;
}

.banner-section .text{
	font-size: 18px;
	color: #FFFFFF;
	margin-bottom: 35px;
	letter-spacing: .03em;
}

.banner-section .downloads{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	margin-bottom: 40px;
}

.banner-section .downloads .download-btn{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	height: 45px;
	background-color: #ffffff;
	margin: 0 12px 24px;
	min-width: 150px;
	border-radius: 50px;
}

.banner-section .bottom-text{
	position: relative;
}

.banner-section .bottom-text .text{
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 22px;
	color: #6A6A6A;
	font-weight: 400;
	margin-bottom: 9px;
}


.banner-section .bottom-text .learn-more{
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 16px;
	color: #ffffff;
	letter-spacing: .03em;
}

.banner-section .bottom-text .learn-more:before{
	position: absolute;
    left: 0;
    bottom: -8px;
    border-bottom: 1px solid #FECD07;
    width: 100%;
    content: "";
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.banner-section .bottom-text .learn-more:hover:before{
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
}


/*
.banner-section .bottom-text .learn-more{
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 16px;
	color: #ffffff;
}

.banner-section .bottom-text .learn-more:before{
	position: absolute;
    left: 0;
    bottom: -5px;
    border-bottom: 2px solid #FECD07;
    width: 100%;
    content: "";
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.banner-section .bottom-text .learn-more:hover:before{
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;

}*/


/*** 

====================================================================
	About Section
====================================================================

***/

.about-section{
	position: relative;
	display: flex;
    flex-direction: column;
	height: calc(100vh - 52px);
    overflow: auto;
}


.about-section .image-box{
	position: fixed;
	left: 0;
	top: 0;
	height: calc(100vh - 52px);
	width: 39.1%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.about-section .image-box .image{
	position: relative;
	margin-bottom: 0;
	display: none;
}

.about-section .image-box .image img{
	display: block;
	width: 100%;
}


.about-section .content-box{
	position: relative;
	padding: 100px 95px 120px;
	width: 100%;
}

.about-section .text-box{
	position: relative;
	margin-bottom: 35px;
}

.about-section .text-box:last-child{
	margin-bottom: 0;
}

.about-section .content-box .inner-box{
	position: relative;
}

.about-section .text-box .sticky-wrapper{
	margin-bottom: 24px;
}

.about-section .text-box a{
	color: #FECD07;
}

.about-section .text-box a:hover{

}

.about-section .text-box p,
.about-section .text-box .text{
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    letter-spacing: .05em;
    font-weight: 400;
	margin-bottom: 15px;
}


.about-section .content-box h4{
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
	margin-bottom: 24px;
}

.about-section .content-box h5{
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    margin-top: 26px;
    line-height: 26px;
	margin-bottom: 15px;
}

.about-section .content-box ul{
	position: relative;
	max-width: 60%;
	padding-left: 12px;
}

.about-section .content-box ul li{
	position: relative;
	padding-left: 25px;
    font-size: 17px;
    line-height: 27px;
    color: #ffffff;
    letter-spacing: .05em;
    font-weight: 400;
    margin-bottom: 15px;
}

.about-section .content-box ul li span{
	color: #FECD07;
}


.about-section .content-box ul li:before{
	position: absolute;
	left: 0;
	top: 10px;
	height: 7px;
	width: 7px;
	background: #dddddd;
	border-radius: 50%;
/*	content: "";*/
}


.about-section.style-two{
	justify-content: center;
}

.about-section.style-two .content-box .inner-box{
	top: -36px;
}

.about-section.style-two .content-box h4{
	margin-bottom: 36px;
}


/*** 

====================================================================
	Blog Section
====================================================================

***/

.blog-section{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: calc(100vh - 46px);
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    overflow: auto;
}

.blog-section .auto-container{
	max-width: 1240px;
}

.blog-section .content-box{
	position: relative;
	text-align: center;
	padding: 90px 0;
}

.blog-section .content-box .title{
	position: relative;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 35px;
}

.news-tab .tabs-header{
	position:relative;
}

.news-tab .news-tab-btns{
	position:relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	margin-bottom: 35px;
}

.news-tab .news-tab-btns .p-tab-btn{
	position: relative;
    font-size: 17px;
    line-height: 24px;
    color: #FFFFFF;
    cursor: pointer;
    margin: 0 16px 20px;
    text-align: center;
    border-bottom: 2px solid transparent;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.news-tab .news-tab-btns .p-tab-btn.active-btn{
	color: #F0EFF6;

}

.news-tab .news-tab-btns .p-tab-btn:before{
	position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    content: "";
    border-bottom:1px solid #FECD07;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.news-tab .news-tab-btns .p-tab-btn.active-btn:before,
.news-tab .news-tab-btns .p-tab-btn:hover:before{
    bottom: -4px;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

.news-tab .carouse-outer{
	position: relative;
	padding: 0 15px;
}

.news-tab{
	position:relative;	
}

.news-tab .project-carousel .owl-dots{
	display:none;
}

.news-carousel .owl-nav{
    position: absolute;
    top: 50%;
    width: 100%;
    height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news-carousel .owl-next,
.news-carousel .owl-prev{
	position: relative;
	left: -27px;
	height: 50px;
	width: 50px;
	background-color: #FECD07;
	line-height: 50px;
	text-align: center;
	font-size: 14px;
	color: #312F2F;
	border-radius: 50%;
	font-weight: 700;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.news-carousel .owl-prev{
	-webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.news-carousel .owl-next.disabled,
.news-carousel .owl-prev.disabled{
	opacity: 0;
	visibility: hidden;
}

.news-carousel .owl-next:hover,
.news-carousel .owl-prev:hover{
	color: #7c06e4;
	border-color: #7c06e4;
}

.news-carousel .owl-next{
	left: auto;
	right: -27px;
}



.news-tab .p-tabs-content{
	position:relative;
	display:block;	
}

.news-tab .p-tab{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:auto;
	visibility:hidden;	
}

.news-tab .p-tab.active-tab{
	position:relative;
	visibility:visible;
	z-index:5;
}

.p-tab.active-tab .news-block{
	opacity: 1;
}

.p-tab .news-block{
	transition:all 0.1s ease;
	-moz-transition:all 0.1s ease;
	-webkit-transition:all 0.1s ease;
	-ms-transition:all 0.1s ease;
	-o-transition:all 0.1s ease;	
	opacity: 0;
}

.news-block{
	position:relative;
}

.news-block .inner-box{
	position: relative;
	background-color: #ffffff;
}

.news-block .image-box{
	position: relative;
}

.news-block .image-box .image{
	position: relative;
	margin-bottom: 0;
	overflow: hidden;
}

.news-block .image img{
	display: block;
	width: 100%;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.news-block .caption-box{
	position: relative;
	padding: 20px 20px 30px;
}

.news-block .caption-box .cat{
	position: relative;
	font-size: 13px;
	color: #AAA8A8;
	line-height: 1em;
	margin-bottom: 10px;
	display: block;
}

.news-block .caption-box h4{
	display: block;
	font-size: 15px;
	line-height: 28px;
	color: #000000;
	margin-bottom: 15px;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.news-block .caption-box h4 a{
	color: #000000;
}

.news-block .caption-box h4 a:hover{
	text-decoration: underline;
}

.news-block .caption-box .date{
	position: relative;
	display: inline-block;
	font-size: 12px;
	color: #000000;
	margin-top: 40px;
	line-height: 1em;
}


/*** 

====================================================================
	Blog Detail
====================================================================

***/

.blog-detail{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: calc(100vh - 55px);

    overflow: auto;
}

.blog-detail .image-box{
	position: fixed;
	left: 0;
	top: 0;
	min-height: calc(100vh - 55px);
	width: 39.1%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.blog-detail .image-box .image{
	position: relative;
	margin-bottom: 0;
	display: none;
}

.blog-detail .image-box .image img{
	display: block;
	width: 100%;
}

.blog-detail .content-box{
	position: relative;
	padding: 7% 0 5%;
	margin-left: 41.4%;
	width: 47%;
}

.blog-detail .content-box .inner-box{
	padding-left: 100px;
}

.blog-detail .content-box h4{
	font-size: 20px;
	margin-bottom: 40px;
}

.blog-detail .content-box p{
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    letter-spacing: .05em;
    font-weight: 400;
    margin-bottom: 25px;
}

.blog-detail .prev-post-link{
	position: fixed;
	left: 39.1%;
	top: 35px;
	margin-left: 35px;
	z-index: 999;
	font-size: 12px;
	color: #ffffff;
	letter-spacing: .1em;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.blog-detail .prev-post-link span{
	margin-right: 5px;
}

.blog-detail .prev-post-link:hover{
	color: #FECD07;
}

.blog-detail .next-post-link{
	position: fixed;
	left: 39.1%;
	top: 50%;
	height: 50px;
	width: 50px;
	margin-left: -25px;
	margin-top: -25px;
	background-color: #FECD07;
	border-radius: 50%;
	line-height: 50px;
	font-size: 14px;
	color: #222222;
	font-weight: 700;
	text-align: center;
	padding-left: 4px;
}

.blog-detail .cat{
	display: block;
	font-size: 12px;
	color: #AAA8A8;
	letter-spacing: .1em;
	margin-bottom: 12px;
}

.blog-detail h3{
	font-size: 26px;
	color: #FFFFFF;
	font-weight: 400;
	margin-bottom: 30px;
}



/*** 

====================================================================
	Contact Section
====================================================================

***/

.contact-section{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: calc(100vh - 55px);
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    overflow: auto;
}

.contact-section .image-box{
	position: fixed;
	right: 0;
	top: 0;
	height: calc(100vh - 46px);
	width: 43.5%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.contact-section .image-box .image{
	position: relative;
	margin-bottom: 0;
	display: none;
}

.contact-section .image-box .image img{
	display: block;
	width: 100%;
}


.contact-section .content-box{
	position: relative;
	padding: 5% 0;
	margin-right: 40%;
	width: 60%;
}

.contact-section .content-box .inner-box{
	max-width: 390px;
}

.contact-section .content-box h4{
	font-size: 26px;
	margin-bottom: 40px;
}

.contact-info-block{
	position: relative;
	margin-bottom: 35px;
}

.contact-info-block h5{
	position: relative;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
}

.contact-info-block .info-list{
	position: relative;
}

.contact-info-block .info-list li{
	position: relative;
	font-size: 15px;
	line-height: 26px;
	color: #FFFFFF;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.contact-info-block .info-list li a{
	color: #FECD07;
}

.contact-section .bottom-text a:hover,
.contact-info-block .info-list li a:hover{
	text-decoration: underline;
}

.contact-section .bottom-text{
	font-size: 16px;
	line-height: 24px;
	color: #FECD07;
	letter-spacing: .04em;
}

.contact-section .bottom-text a{
	color: #FECD07;
}


/*** 

====================================================================
	Agency Section
====================================================================

***/

.agency-section{
	position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(100vh - 55px);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: auto;
    flex-direction: column;
}

.agency-section .image-box{
	position: fixed;
	right: 0;
	top: 0;
	min-height: calc(100vh - 55px);
	width: 43.5%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


.agency-section .image-box .image{
	position: relative;
	margin-bottom: 0;
	display: none;
}

.agency-section .image-box .image img{
	display: block;
	width: 100%;
}


.agency-section .content-box{
	position: relative;
	padding: 3% 0;
	width: 56.5%;
	padding-right: 15px;
}

.agency-section .content-box .inner-box{
	max-width: 600px;
	margin: 0 auto;
}

.agency-section .content-box .upper-box{
	position: relative;
	margin-bottom: 40px;
}

.agency-section .content-box .upper-box h4{
	font-size: 26px;
}

.agency-section .content-box .upper-box p{
	margin-top: 25px;
	font-size: 15px;
}

.agency-section .bottom-text{
	font-size: 14px;
	color: #FFFFFF;
	font-weight: 400;
	letter-spacing: .1em;
	margin-top: 30px;
	text-align: center;
}

.agency-section .bottom-text a{
	color: #FECD07;
}

.agency-section .bottom-text a:hover{
	text-decoration: underline;
}

/*=== Default Form ===*/

.default-form {
  position: relative;
  border-bottom: 1px solid #707070; 
}

.default-form .form-group {
  position: relative;
  margin-bottom: 30px;
}

.default-form .form-group:last-child {
  margin-bottom: 0;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="number"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="url"],
.default-form .form-group textarea,
.default-form .form-group select {
  position: relative;
  width: 100%;
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 25px;
  padding: 10px 15px;
  height: 45px;
  background-color: transparent;
  letter-spacing: .01em;
  transition: none !important;
  border: 1px solid #707070;
}

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group input[type="url"]:focus,
.default-form .form-group select:focus,
.default-form .form-group textarea:focus {
  border-color: #ffffff;
}

.default-form .form-group textarea {
  height: 215px;
  resize: none;
}

.default-form .form-group input[type="submit"],
.default-form .form-group button {
  position: relative;
  margin-top: 12px;
  margin-bottom: 30px;
  font-size: 16px;
  padding: 12px 30px;
}

.default-form input.error:focus,
.default-form select.error:focus,
.default-form textarea.error:focus {
  border-color: #FF3A46;
}

.default-form label.error {
  display: block;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  line-height: 24px;
  color: #ff0000;
  margin-bottom: 0;
}

input::placeholder,
textarea::placeholder,
select::placeholder{
  color: rgba(255,255,255,.90);
}

/* with the :focus here, we would show grey when not using the element */
select {
  color: black;
}
/* with the :focus here, we show grey when using the element */
select:focus {
  color: #9e9e9e;
}
option {
  color: black;
}
option:first-of-type {
  color: #9e9e9e;
}

.default-form .form-group select{
	background-image:url(../images/icons/icon-select.png);
	background-repeat: no-repeat;
	background-position: right center;
	-webkit-appearance: none;
}


.default-form .form-group .icon{
  position: absolute;
  right: 20px;
  bottom: 0;
  color: #9fa9b8;
  font-size: 14px;
  line-height: 54px;
}

#email-form .form-group:first-child{
  margin-bottom: 0;
}

#email-form .response {
  position: relative;
  text-align: center;
}

#email-form .response .success {
  background: #35c2a5;
  color: #ffffff;
  padding: 0 10px;
  margin-bottom: 10px;
}

#email-form .response .failed {
  background-color: #f74848;
  color: #ffffff;
  padding: 0 10px;
  margin-bottom: 20px;
}

#email-form .response .text-info {
  background-color: #ffa737;
  color: #222222 !important;
  padding: 0 10px;
  margin-bottom: 10px;
}



/*** 

====================================================================
	Legal Section
====================================================================

***/

.legal-section{
	position: relative;
	padding: 70px 0;
}

.legal-section .image-box{
	position: fixed;
	right: 0;
	top: 0;
	min-height: calc(100vh - 46px);
	width: 43.5%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.legal-section .image-box .image{
	position: relative;
	margin-bottom: 0;
	display: none;
}

.legal-section .image-box .image img{
	display: block;
	width: 100%;
}


.legal-section .content-box{
	position: relative;
	margin-right: 40%;
	width: 60%;
}

.legal-section .content-box .inner-box{
	max-width: 600px;
	margin-left: 100px;
}

.legal-section .content-box h4{
	font-size: 26px;
	margin-bottom: 40px;
}

.legal-section .tab-buttons{
	position: relative;
}

.legal-section .tab-buttons .tab-btns-span{
	position: relative;
	display: block;
	min-height: 25px;
	margin-bottom: 45px;
}

.legal-section .tab-buttons .tab-btns{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99;
}

.legal-section .tab-buttons .tab-btns.fixed{
	position: fixed;
	background-color: #312F2F;
	padding: 15px 0 35px;
	padding-left: 115px;
	width: 54%;
}


.legal-section .tab-buttons .tab-btn{
	position: relative;
	display: inline-block;
	font-size: 20px;
	line-height: 30px;
	color: #FFFFFF;
	letter-spacing: .02em;
	margin-right: 30px;
	cursor: pointer;
}

.legal-section .tab-buttons .tab-btn:before{
	position: absolute;
    left: 0;
    bottom: -5px;
    border-bottom: 1px solid #FECD07;
    width: 100%;
    content: "";
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.legal-section .tab-buttons .tab-btn.active-btn:before{
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}



.legal-section .content-box h6{
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 400;
}

.legal-section .content-box p{
	font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    letter-spacing: .05em;
    font-weight: 400;
    margin-bottom: 35px;
}


/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer{
	position: fixed;
	left: 0;
	bottom: 0;
	background: #FECD07;
	width: 100%;
	z-index: 99;
}

.main-footer .main-box{
	position:relative;
	left:0px;
	top:0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.main-footer .copyright-text{
	position: absolute;
	top: 0px;
	left: 5px;
    font-size: 12px;
    color: #000000;
    font-weight: 400;
    line-height: 55px;
}

.main-footer .copyright-text span {
    font-size: 14px;
    position: relative;
    top: 0px;
    margin-right: 1px;
}


.main-footer .nav-outer{
    position: relative;
    padding: 0;
}

.main-menu{
	position:relative;
}

.main-menu .navbar-header{
	display: none;
}

.main-menu .navbar-collapse{
	padding:0px;	
}

.main-menu .navigation{
	position:relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin:0px;
}

.main-menu .navigation > li{
	position:relative;
	padding: 8px 0;
	margin:0 50px;
}

.main-menu .navigation > li > a{
	position:relative;
	display:block;
	text-align:center;
	opacity:1;
	color:#000000;
	font-size:17px;
	line-height: 23px;
	padding: 8px 0px;
	border-radius: 20px;
/*	-webkit-transition:color, background-color 300ms ease;
	-o-transition:color, background-color 300ms ease;
	transition:color, background-color 300ms ease;*/
}

.main-menu .navigation > li.active > a{
	color: #FECD07;
	background-color: #312F2F;
	padding: 8px 20px;
}


.main-menu .navigation > li.active.current > a:before{
	display: none;
}

.main-menu .navigation > li > a:before{
	position: absolute;
    left: 0;
    bottom: 4px;
    border-bottom: 1px solid #312F2F;
    width: 100%;
    content: "";
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000), -webkit-transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.main-menu .navigation > li > a:hover:before,
.main-menu .navigation > li.current > a:before{
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
}

.main-menu .navigation > li:first-child > a:hover:before{
	display: none;
}

.main-menu .navigation > li > ul {
    position: absolute;
    left: 0px;
    bottom: 100%;
    width: 220px;
    z-index: 100;
    padding: 5px 25px 5px;
    background-color: #000000;
    opacity: 0;
    display: none;
    -webkit-box-shadow: 0 0 3px rgb(0 0 0 / 10%);
    box-shadow: 0 0 3px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 2px 2px 5px 1px rgb(0 0 0 / 5%), -2px 0px 5px 1px rgb(0 0 0 / 5%);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
    box-shadow: 2px 2px 5px 1px rgb(0 0 0 / 5%), -2px 0px 5px 1px rgb(0 0 0 / 5%);
}


.main-menu .navigation > li > ul > li > a{
	position:relative;
	display:block;
	padding:10px 0px;
	line-height:29px;
	font-weight:400;
	font-size:16px;
	color:#ffffff;
	text-align:left;
	border-bottom: 1px solid #333333;
	text-transform:capitalize;
	transition:all 200ms ease;
	-moz-transition:all 200ms ease;
	-webkit-transition:all 200ms ease;
	-ms-transition:all 200ms ease;
	-o-transition:all 200ms ease;
}

.main-menu .navigation > li > ul > li:last-child > a{
	border-bottom: 0;
}


.main-menu .navigation > li > ul > li:hover > a{
	color:#FECD07;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
	font-family: 'Font Awesome 5 Free';
	content: "\f105";
	position:absolute;
	right:0;
	top:11px;
	display:block;
	line-height:24px;
	font-size:16px;
	font-weight:900;
	z-index:5;	
}

.main-menu .navigation > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	bottom:100%;
    -webkit-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}


.main-footer .social-links{
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	right: 5px;
	bottom: 0;
	height: 100%;
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-footer .social-links a{
	position: relative;
	height: 23px;
	width: 23px;
	color: #312F2F;
	font-size: 12px;
	border: 1px solid #C9A203;
	margin-left: 16px;
	border-radius: 50px;
	text-align: center;
	line-height: 21px;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.social-links a .fa-instagram{
	font-weight: 700;
}


.main-footer .social-links a:hover{
	background-color: #312F2F;
	color: #FECD07;
}


/*** 

====================================================================
			Mobile Menu
====================================================================

***/

.mobile-nav-toggler{
	position: relative;
	font-size: 28px;
	line-height: 36px;
	cursor: pointer;
	color:#FF3A46;
	padding:10px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	display: none;
}

.mobile-nav-toggler{
	font-size: 0;
	color: #312F2F;
	font-weight: 400;
}

.mobile-nav-toggler .icon-menu{
	position: relative;
	display: inline-block;
	width: 30px;
	height: 12px;
	margin-right: 15px;
}

.mobile-nav-toggler .icon-menu:before,
.mobile-nav-toggler .icon-menu:after{
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	border-bottom:2px solid #312F2F;
	content: "";
	border-radius: 2px;
}

.mobile-nav-toggler .icon-menu:after{
	top: auto;
	bottom: 0;
}

.mobile-nav-toggler .icon{
	display: none;
}

.mobile-menu{
	position: fixed;
	left: 0;
	top: 0;
	max-width:100%;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow-y: auto;
	z-index: 9990;
	-webkit-box-shadow: 0 0 30px rgba(0,0,0,0.15);
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
	opacity: 0;
	visibility: hidden;
	display: none;
}


.mobile-menu-visible{
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
	opacity: 1;
	visibility: visible;
}


.menu-backdrop{
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 1000%;
	opacity: .30;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .nav-logo{
	position:relative;
	padding:10px 20px;
	text-align:left;	
}

.mobile-menu .nav-logo svg{
	max-width:87px;
}

.mobile-menu .menu-box{
	position: relative;
	left: 0px;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-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;
	bottom: 0;
	width: 100%;
	padding: 0px 0px;
	z-index: 9;
	min-height: 100vh;
	-webkit-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.mobile-menu .logo img{
	height: 40px;
}

.mobile-menu .close-btn{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	font-size: 17px;
}


.mobile-menu .close-btn .icon-close{
	position: relative;
	display: inline-block;
	width: 30px;
	height: 12px;
	margin-right: 15px;
}

.mobile-menu .close-btn .icon-close:before,
.mobile-menu .close-btn .icon-close:after{
	position: absolute;
	left: 0;
	top: 0;
	width: 30px;
	border-bottom:3px solid #312F2F;
	content: "";
	border-radius: 2px;
	-webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
	-webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.mobile-menu .close-btn .icon-close:after{
	-webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
	-webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
}

.mobile-menu-visible .mobile-menu .close-btn{
	-webkit-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .close-btn:hover{
	opacity: 0.50;
}

.mobile-upper{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	padding: 24px 25px 0;
	font-size: 24px;
	color: #222222;
	line-height: 1em;
	z-index: 9;
}

.mobile-menu .navigation{
	position: relative;
	display: block;
	padding: 60px 0 40px;
	width: 100%;
	margin-bottom: auto;
	margin-top: auto;
}

.mobile-menu .navigation > li{
	position: relative;
	display: block;
	padding: 14px 55px;
}

.mobile-menu .navigation li > a{
	position: relative;
	display: block;
	line-height: 1em;
	padding: 10px 0px;
	font-size: 22px;
	color: #312F2F;
	font-weight: 400;
	letter-spacing: .1em;
	border-bottom: 2px solid transparent;
}

.mobile-menu .navigation li.current:hover > a,
.mobile-menu .navigation li.current > a{
	border-bottom: 2px solid #312F2F;
}

.mobile-menu .navigation li.current > a{
	font-weight: 500;
}

.mobile-menu .navigation li li a{
	padding: 5px 20px;
	margin-left: 20px;
}


.mobile-menu .navigation li.dropdown .dropdown-btn{
	position:absolute;
	right:5px;
	top:2.5px;
	width:40px;
	height:40px;
	text-align:center;
	font-size:12px;
	line-height:40px;
	color:#222222;
	cursor:pointer;
	z-index:5;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.active .fa:before{
	display: inline-block;
	position: relative;
	content: "\f068";
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul{
	display: none;
	border-top: 1px solid rgba(0,0,0,.10);
}

.mobile-menu .social-links{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
	margin-bottom: 20px;
	display: none;
}

.mobile-menu .social-links a{
	position: relative;
	display: inline-block;
	height: 45px;
	width: 45px;
	color: #312F2F;
	font-size: 18px;
	border: 1px solid #C9A203;
	margin:0 13px;
	border-radius: 50px;
	text-align: center;
	line-height: 44px;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.mobile-menu .social-links a:hover{
	background-color: #312F2F;
	color: #FECD07;
}

.mobile-menu .copyright-text{
	display: block;
    font-size: 12px;
    color: #000000;
    font-weight: 400;
    line-height: 15px;
    margin-bottom: 30px;
}

.mobile-menu .copyright-text span {
    font-size: 14px;
    position: relative;
    top: 0px;
    margin-right: 1px;
}





/*** 

====================================================================
	About Apricab
====================================================================

***/

.about-apricab{
	position: relative;
	background-color: #F5F4EF;
    overflow: auto;
}

.about-apricab .main-image{
	position: fixed;
	left: 0;
	top: 0;
	min-height: calc(100vh - 52px);
	width: 39.1%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.about-apricab .main-image .image{
	position: relative;
	margin-bottom: 0;
	display: none;
}

.about-apricab .main-image .image img{
	display: block;
	width: 100%;
}

.about-apricab .content-box{
	position: relative;
	padding: 140px 95px 0px;
	width: 100%;
}

.about-apricab.alt .content-box{
	padding: 127px 95px 0px;
}


/* project Desciption */

.project-desciption{
	position: relative;
	padding: 0px 0 70px;
	background-color: #F5F4EF;
}

.project-desciption .desciption-outer{
	position: relative;
	padding-left: 330px;
}

.project-desciption h4{
    font-size: 25px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 22px;
}

.project-desciption h5{
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 22px;
}

.project-desciption p{
    font-size: 17px;
    line-height: 27px;
    color: #000;
    letter-spacing: .05em;
    font-weight: 400;
	margin-bottom: 20px;
}

.project-desciption p span{
	font-weight: 600;
}

.project-desciption p:last-child{
	margin-bottom: 0;
}


/* project Features */

.portfolio-detail .project-features{
	position: relative;
}

.project-features .float-text{
	position: absolute;
	left: 33px;
	top: 35%;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .3em;
	z-index: 9;
	color: #FFC000;
	-webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
	text-transform: uppercase;
}

/*Feature Block*/

.feature-block{
	position: relative;
	background-color: #F5F4EF;
	margin-bottom: 70px;
}

.feature-block .outer-box{
	position: relative;
	margin: 0 auto;
}

.feature-block .content-column{
	position: relative;
}

.feature-block .content-column .inner-column{
	position: relative;
	padding-bottom: 40px;
	padding-right: 60px;
}

.feature-block h4{
	font-size: 25px;
	line-height: 1.2em;
	color: #4E4C4C;
	margin-bottom: 20px;
	font-weight: 700;
	letter-spacing: .01em;
}

.feature-block h5{
	font-size: 17px;
	color: #4E4C4C;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: .10em;
	text-transform: uppercase;
	margin-bottom: 24px;
	opacity: .6;
}

.feature-block p{
	font-size: 17px;
	line-height: 27px;
	color: #000;
	margin-bottom: 15px;
	letter-spacing: .05em;
	font-weight: 400;
}

.feature-block p strong{
	font-weight: 600;
}


.feature-block .image-column{
	position: relative;
	z-index: 3;
}

.feature-block .image-column .image-box{
	position: relative;
	text-align: center;
}



.feature-block .image-column .image{
	position: relative;
	display: inline-block;
	margin-bottom: 0;
	margin-top: 42px;
	margin-left: -30px;
	margin-right: -30px;

}

.feature-block .image-column .image img{
	width: 100%;
}


/*Feature Block Two*/

.feature-block-two{
	position: relative;
	margin-bottom: 70px;
}

.project-features .feature-block-two:last-child{
	margin-bottom: 35px;
}

.feature-block-two .outer-box{
	position: relative;
}

.feature-block-two .content-column{
	position: relative;
}

.feature-block-two .content-column .inner-column{
	position: relative;
	padding-left: 60px;
}

.feature-block-two h4{
	font-size: 25px;
    line-height: 1.2em;
    color: #4E4C4C;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: .01em;
}

.feature-block-two h5{
    font-size: 17px;
    color: #4E4C4C;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: .10em;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: .6;
}

.feature-block-two p{
	font-size: 17px;
    line-height: 27px;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: .05em;
    font-weight: 400;
}

.feature-block-two .image-column{
	position: relative;
	z-index: 3;
}

.feature-block-two .image-column .image-box{
	position: relative;
	text-align: center;
}

.feature-block-two .image-column .image {
    position: relative;
    margin-top: 42px;
    margin-left: -30px;
    margin-right: -30px;
}

.feature-block-two .image-column img{
	width: 100%;
}

.project-features{
	position: relative;
}

/*Feature Block*/

.step-block{
	position: relative;
	margin-bottom: 100px;
}

.step-block .outer-box{
	position: relative;
}

.step-block .content-column{
	position: relative;
}

.step-block .content-column .inner-column{
	position: relative;
	padding-right: 40px;
}

.step-block .icon{
	position: relative;
	display: block;
	margin-bottom: 18px;
}

.step-block .icon svg{
	height: 30px;
	width: auto;
}

.step-block h3{
	font-size: 25px;
    line-height: 1.2em;
    color: #000000;
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: .01em;
}

.step-block p{
    font-size: 17px;
    line-height: 27px;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: .05em;
    font-weight: 400;
}

.step-block .image-column{
	position: relative;
	z-index: 3;
}

.step-block .image-column .image-box{
	position: relative;
	margin-top: 70px;
/*	margin-right: -50px;*/
}

.step-block .image-column .image{
	position: relative;
	margin-bottom: 0;
}

.step-block .image-column .image img{
	width: 100%;
}

.step-block.alt .image-column .image-box{
	margin-right: 0;
/*	margin-left: -35px;*/
}

.step-block.alt .content-column .inner-column{
	padding-left: 40px;
	padding-right: 0;
}

/*Feature Block Two*/

.step-block-two{
	background-color: #000000;
	padding: 50px 0 50px;
	margin-bottom: 100px;
}

.step-block-two .outer-box{
	position: relative;
}

.step-block-two .content-column{
	position: relative;
}

.step-block-two .content-column .inner-column{
	position: relative;
	padding-right: 45px;
	padding-left: 45px;
}

.step-block-two .icon{
	position: relative;
	display: block;
	margin-bottom: 18px;
}

.step-block-two .icon svg{
	height: 35px;
	width: auto;
}

.step-block-two h3{
	font-size: 25px;
    line-height: 1.2em;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: .01em;
}

.step-block-two p{
     font-size: 17px;
    line-height: 27px;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: .05em;
    font-weight: 400;
}

.step-block-two .image-column{
	position: relative;
	z-index: 3;
}

.step-block-two .image-column .image-box{
	position: relative;
}

.step-block-two .image-column .image{
	position: relative;
	margin-bottom: 0;
	padding-right: 0px;
	padding-left: 10px;
	margin-top: 87px;
	text-align: right;
}

.step-block-two .image-column .image img{
	width: auto;
	max-width: 380px;
}


.step-block.style-three{
	margin-bottom: 50px;
}

.step-block.style-three .content-column .inner-column{
	margin-right: -30px;
	padding-right: 32px;
}

.step-block.style-three .image-column .image-box{
	padding-left: 40px;
}

.step-block.style-three .image-column .image-box img{
	max-width: 320px;
}

.api-section{
	position: relative;
}

.api-section .feature-block{
	margin: 0;
	padding: 30px 90px 50px;
}

.api-section .feature-block .outer-box{
	padding: 50px 50px 50px;
	background: #ffffff;
	max-width: 1150px;
}


/*.api-section .feature-block .image-column .image-box:before{
	position: absolute;
    left: 0;
    top: -30px;
    right: -70px;
    bottom: -30px;
    background: #F5F4EF;
    content: "";
}*/

.api-section .feature-block .image-column .image{
	margin: 0;
}

.api-section .feature-block .image-column .image-box{
	text-align: right;
	margin-right: -15px;
}

.api-section .feature-block .content-column .inner-column{
	padding: 0;
	margin-right: -60px;
}


















/* Next Case Outer */

.next-case-outer{
	position: relative;
	padding: 0 60px;
	background: #F5F4EF;
	display: flex;
	justify-content: flex-end;
	min-height: 110px;
}
/*
.next-case{
	position: relative;
	padding: 0px 50px 30px;
	z-index: 9;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: flex-end;
}

.next-case h5{
	display: block;
	font-size: 12px;
	color: #4E4C4C;
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 30px;
}

.next-case .logo-box{
	position: relative;
	top:-15px;
}

.next-case .logo-box a{
	position: relative;
	display: inline-block;
	padding: 0 66px;
	padding-left: 0;
	margin-left: 66px;
}

.next-case .logo-box .icon-next{
	position: absolute;
	right: 16px;
	top: 50%;
	margin-top: -10px;
	width: 22px;
}*/

.next-case-outer .prev-case{
	position: absolute;
	left: 110px;
	top: 50%;
	margin-top: -25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	font-size: 12px;
	line-height: 30px;
	padding: 10px 0;
	color: rgba(78,76,76,.50);
	font-weight: 400;
	letter-spacing: .2em;
	z-index: 3;
}

.next-case-outer .prev-case .arrow-left{
	position: relative;
	display: block;
	height: 10px;
	width: 22px;
	background-image: url(../images/icons/arrow-left-2x.png);
	margin-right: 20px;
}



.post-control{
	position: relative;
	padding: 0 110px 50px;
	background: #F5F4EF;
	display: flex;
	justify-content: space-between;
}

.post-control .next-case,
.post-control .prev-case{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	font-size: 12px;
	line-height: 30px;
	color: rgba(78,76,76,.50);
	font-weight: 400;
	letter-spacing: .2em;
	z-index: 3;
}

.post-control .prev-case .arrow-left{
	position: relative;
	display: block;
	height: 10px;
	width: 22px;
	background-image: url(../images/icons/arrow-left-2x.png);
	margin-right: 20px;
}

.post-control .next-case .arrow-left{
	position: relative;
	display: block;
	height: 10px;
	width: 22px;
	background-image: url(../images/icons/arrow-left-2x.png);
	margin-left: 20px;
	margin-right: 0;
	transform: scaleX(-1);
}
