/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/


*	{
	text-decoration:none;
	padding:0;
	margin:0;
	outline:none;
  	font-family: Gill Sans;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	list-style:none;
	text-rendering: optimizeLegibility;
}


select {
    margin: 0;
	padding:0;
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
	position:absolute;
	background: url("../images/icons/down-arrow.png") no-repeat;
	background-position:90%;
    background-size: 1em;
    color: white;
    z-index: 10000;
}

button{
	background: transparent;
	border:none;
}

img{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

label   {
    font-weight: 100;
}
.align-center	{
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
html{
	height: 100vh;
}
body{
	overflow-x: hidden;
}

body.open, body.open2{
	overflow-y: hidden;
}

textarea{
    resize: none;
}

p{
	line-height:2;
	font-size: 1.1em;
}

.viewport, .loading_container {
  overflow: hidden;
  position: fixed;
  width: 100%;
	height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loading_container {
	opacity: 0;
}
.scroll-container {
  position: absolute;
  overflow: hidden;
  z-index: 10;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  width: 100%;
}

:root{
    --rose:#190b0c;
    --gold:#b56350;
	--red:#e52f42;
	--green:#0c5738;
    --dark-green:#0c1914;
	--cream:#eee7da;
}

.error	{
	color: var(--red);
}

.feedback	{
	position: fixed;
	bottom: 0;
	left: 2em;
	padding: 2em;
	background: white;
	box-shadow: 0 5px 20px rgba(0,0,0,.2);
	max-width: 30em;
	z-index: 100;
	transform: translateY(100%);
	transition: all .3s cubic-bezier(.35,.755,.42,.95);
}

.feedback h4	{
	margin: 0;
	padding: 0;
}

.success	{
	border-left: 2px var(--green) solid;
}

.success h4	{
	color:var(--green);
}

.hint	{
	font-size: .9em;
	color: #606060;
	margin-top: 1em;
	float: left;
	width: 100%;
}

.feedback.open	{
	transform: translateY(-4em);
}


.intro_footer	{
	position: absolute;
	top: 65%;
	left: 50%;
	font-size: 1.2em;
	text-align: center;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
/*************Header Section********************/
.main_header	{
	position: fixed;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 90%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 10000;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	-o-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	transition: all .3s cubic-bezier(.35,.755,.42,.95);
}

.main_header.open2	{
    opacity: 0;
    visibility: hidden;
}
.main_header.sticky	{
	width: 100%;
	padding: 0 5em;
    background: white;
    -webkit-box-shadow: 0 0px 0 1px rgba(0,0,0,.1);
            box-shadow: 0 0px 0 1px rgba(0,0,0,.1);
}

.main_header.open	{
    -webkit-box-shadow: 0 0px 0 1px rgba(0,0,0,0);
            box-shadow: 0 0px 0 1px rgba(0,0,0,0);
    background: transparent;
}

.logo	{
	float: left;
	width: 12em;
	margin-top:3em;
	margin-bottom:1.5em;
	background-repeat: no-repeat;
	-webkit-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	-o-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	transition: all .3s cubic-bezier(.35,.755,.42,.95);
    position: relative;
    z-index: 100;
}

.logo img	{
    -o-object-fit: contain;
       object-fit: contain;
}


.main_navigation	{
	float: left;
	margin-top: 2.2em;
}

.main_header.sticky .main_navigation, .main_header2 .main_navigation	{
	margin-top: 1.4em;
}

.main_navigation li	{
	display: inline-block;
	margin-right: 3em;
}

.main_navigation li a	{
	display: inline-block;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
	float: left;
	padding: .5em;
	-webkit-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	-o-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	transition: all .3s cubic-bezier(.35,.755,.42,.95);
}

.main_navigation li a:hover, .social_header li a:hover	{
	color: var(--gold);
}

.main_header.sticky .main_navigation li a, .main_header2 .main_navigation li a	{
	color: #303030;
}

.alt_menu	{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.main_header.sticky .alt_menu	{
	margin-top: -.4em;
}

.social_header	{
	color: white;
	text-transform: uppercase;
	float: left;
	margin-top: 2em;
}

.social_header li 	{
	display: inline-block;
	margin-left: 1em;
}

.social_header li a 	{
	display: inline-block;
	float: left;
	padding: .5em;
	font-size: 1.2em;
	color: #e0e0e0;
	-webkit-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	-o-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	transition: all .3s cubic-bezier(.35,.755,.42,.95);
}

.main_header.sticky .social_header li a	{
	color: #606060;
}
.main_header.sticky .log_btn, .main_header2 .log_btn	{
	color: #303030;
	margin-top: 1em;
}

.main_header.open .log_btn	{
	color: white;
}

.menu_icon	{
	position: relative;
	width:4em;
	height:4em;
	right:0;
	top:1.2em;
	cursor: pointer;
	z-index: 100000000;
	display: none;
	border: none;
    
}

.main_header.sticky .menu_icon, .main_header2 .menu_icon	{
	top:.8em;
}

.top_bar, .mid_bar, .bottom_bar	{
	position:absolute;
	top:1.4em;
	left:50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	width:3em;
	height:2px;
	background:white;
	-webkit-transition:all .3s cubic-bezier(.35,.755,.42,.95);
	-o-transition:all .3s cubic-bezier(.35,.755,.42,.95);
	transition:all .3s cubic-bezier(.35,.755,.42,.95);
	-webkit-transform-origin:center;
	-ms-transform-origin:center;
	transform-origin:center;
}


.main_header.sticky .top_bar, .main_header.sticky .mid_bar, .main_header.sticky .bottom_bar 	{
	background:rgba(0,0,0,.8);
}

.main_header.open .top_bar, .main_header.open .bottom_bar	{
	background: white;
}

.bottom_bar	{
	top:2.2em;
}

.menu_icon.open	.top_bar{
    -webkit-transform: translateX(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
	top:2em;

}

    
.menu_icon.open	.bottom_bar{
	-webkit-transform: translateX(-50%) rotate(-45deg);
		-ms-transform: translateX(-50%) rotate(-45deg);
			transform: translateX(-50%) rotate(-45deg);
	top:2em;
}

.megamenu_container    {
    position: fixed;
    top: 0;
    left: 0;
	z-index: 1000;
    width:100%;
    height: 100vh;
    background: white;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	-webkit-transition: tranform 1s cubic-bezier(.35,.755,.42,.95);
	-o-transition: tranform 1s cubic-bezier(.35,.755,.42,.95);
	transition: tranform 1s cubic-bezier(.35,.755,.42,.95);
}

.megamenu_body    {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	overflow-y: scroll;
}

.mgmenu_left    {
    width: 65vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10em;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.mega_navigation li a    {
    font-size: 3em;
    color: #909090;
    display: block;
    float: left;
    clear: both;
    padding: .1em 0;
    font-weight: 700;
	-webkit-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	-o-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	transition: all .3s cubic-bezier(.35,.755,.42,.95);
}

.mega_navigation li a:hover    {
    color: var(--gold);
}

.mega_menu_section    {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-grid-columns: 70% 2em 30%;
    grid-template-columns: 70% 30%;
    grid-gap: 2em;
    position: relative;
    bottom: 0;
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%);
}

.mega_menu_content    {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0 0 0;
	margin-bottom: 1em;
}

.mega_menu_content:nth-child(2)    {
    display: block;
}

.mega_footer_menu    {
    width: 100%;
    float: left;
    display: inline-block;
}

.mega_footer_menu li    {
	display: inline-block;
}

.mega_menu_content:nth-child(1) .mega_footer_menu li    {
    margin-bottom: .5em;
    float: left;
	display: block;
	margin-right: 1em;
}

.mega_menu_content:nth-child(1) .mega_footer_menu li a   {
    color:  var(--gold);
}
.copy	{
	white-space: nowrap;
}

.mega_footer_menu .mmf_tag{
    text-transform: capitalize;
    color: #707070;
    margin-bottom: 1em;
    float: left;
    width: 100%;
    font-weight: 500;
}

.mega_menu_content:nth-child(2) .mega_footer_menu li  {
    display: inline-block;
    margin-right: 1em;
}

.mega_menu_content:nth-child(2) .mega_footer_menu li a  {
    display: inline-block;
    font-size: 1.5em;
    float: left;
    padding: .5em 0;
    color:  var(--gold);
}


/*************banner Section********************/
.banner	{
	position: relative;
	float: left;
	width: 100%;
	height: 100vh;
	left: 0;
    background-size: cover;
	overflow: hidden;
}

.slide	{
	position: relative;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	float: left;
	overflow: hidden;
}

.slide img	{
	position: relative;
}


.slide:before, .slide:after	{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: rgba(0,0,0,.7);
}

.banner_control	{
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 100%;
}

.banner_control .next, .banner_control .prev	{
	float: right;
	color: white;
	position: absolute;
	right: -1.5em;
	cursor: pointer;
	font-size:1.5em;
	width: 5em;
	height: 5em;
	line-height: 5em;
/*	text-align: center;*/
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	border: 1px dashed white;
	padding-left: 1.8em;
	opacity: .5;
	transition: all .3s cubic-bezier(0,0,0.2,1);
}

.banner_control .prev	{
	left: -1.5em;
	right: auto;
	padding-left: 2.2em;
}

.banner_control .next:hover, .banner_control .prev:hover	{
	opacity: 1;
	background: rgba(255,255,255,.2);
}

.banner_content	{
	position: absolute;
	bottom: 10em;
	left: 12vw;
	width: 40%;
	color: white;
	z-index: 100;
	text-align: left;
}

.header_tag	{
	text-transform: uppercase;
	letter-spacing: 2px;
    font-weight: 500;
	color:var(--gold);
}

.banner_content .header_tag	{
	color: white;
}

.banner_content h1	{
	font-size: 4em;
	line-height: 1.2;
	text-transform: capitalize;
	font-family: SangBleuSans;
	font-weight: 100;
	margin-bottom: 1em;
	transition: all .4s cubic-bezier(0,0,0.2,1);
}


/***********About section**************/
.stats_container	{
	float: left;
	width: 100%;
	display: flex;
	justify-content: space-between;
	grid-gap: 4em;
}

.stat_header	{
	color: var(--gold);
	font-size: 3em;
	font-family: SangBleuSans;
}

.stat span	{
	text-transform: uppercase;
	line-height: 1.5;
}

.about_brief	{
	margin-top: 0;
	float: left;
	width: 100%;
	display: grid;
	grid-template-columns: 50% 40%;
	justify-content: space-between;
	grid-gap: 10%;
}

.about_side	{
	padding: 2em;
	position: relative;
}

/********project container********/
.project_container	{
	position: relative;
	float: left;
	width: 100%;
	padding: 8em 0;
}

.header_brief, .section_header, .die_container h1	{
	font-family: SangBleuSans;
	line-height: 1.5;
}

.full_header_control	{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding-bottom: 1em;
	border-bottom: 1px #202020 solid;
	margin-bottom: 4em;
}

.full_header_control .section_header	{
	width: 100%;
}


/***********Services**********/

.intro_excerpt ul li	{
	position: relative;
	display: block;
	margin-bottom: 1em;
	float: left;
	width: 100%;
	color: black;
	padding-left: 2em;
	font-weight: 500;
}

.intro_excerpt ul li:before	{
	content: '';
	width: 1em;
	height: 2em;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	background-position: 50%;
	background-image: url("../images/icons/pat3.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	
}

.primary_btn    {
    padding: 1.2em 2.5em;
    float: left;
    text-transform: uppercase;
	letter-spacing: 1px;
    color:var(--gold);
	border:1px var(--gold) solid;
    position: relative;
    overflow: hidden;
	-webkit-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	-o-transition: all .3s cubic-bezier(.35,.755,.42,.95);
	transition: all .3s cubic-bezier(.35,.755,.42,.95);
    cursor: pointer;
	text-align: left;
	border-radius: 4px;
	font-size: .9em;
	font-weight: 500;
}

.whtThm	{
    color:white;
	border:1px white solid;
}

.primary_btn:active .primary_btn:focus    {
	color: var(--rose);
}

.primary_btn > span    {
    position: relative;
    font-weight: 500;
}

.primary_btn:before,  .whtThm:before    {
 	content: '';
	position: absolute;
	bottom:0;
	left: 0;
	width:100%;
	height:0;
	background:var(--gold) ;
	-webkit-transition: all .2s cubic-bezier(.35,.755,.42,.95);
	-o-transition: all .2s cubic-bezier(.35,.755,.42,.95);
	transition: all .2s cubic-bezier(.35,.755,.42,.95);
	z-index: -1;
}

.whtThm:before	{
	background:white ;
}
.primary_btn:hover:before	{
	height:100%;
}

.primary_btn:hover	{
	color: white;
}

.whtThm:hover	{
     color: #303030;
}

.p_contact_btn	{
	width: auto;
	margin-top: 2em;
}

.start_btn	{
	height: 4em;
	margin-top: 2em;
	margin-left: 2em;
}

/****Die container*****/
.die_container	{
	background: #231e23;
	padding: 5em 0 10em 0;
	float: left;
	width: 100%;
	color: white;
	position: relative;
}

.die_container:before, .die_container:after	{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/bg/leo.png");
	background-size: cover;
	opacity: .4;
}

.die_container .die_side	{
	margin-top: 5em;
	position: relative;
	z-index: 100;
}

.numbered_list	{
	margin-top: 2em;
}

.numbered_list li	{
	list-style: decimal inside;
	line-height: 2;
	font-size: 1.1em;
}

.box-img {
    width: 100%;
    height: 30vw;
    overflow: hidden;
    position: relative;
}

.box-img img, .image-wrap img {
  -webkit-transition: 0.1s ease-out;
  -o-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
    height: 130%;
    position: absolute;
    top: 0%;
}

.overlay_img	{
	position: absolute;
	height: 20vw;
	width: 25em;
	left: 0;
	bottom: 0;
	transform: translate(-10em, 5em);
	overflow: hidden;
}

.project_control	{
	width: 100%;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	margin-top: 1em;
}

.project_control .prev, .project_control .next	{
	width: 3em;
	height: 3em;
	line-height: 3em;
	background: white;
	border-radius: 50%;
	display: block;
	margin-left: 1em;
	text-align: center;
	transition: all .3s cubic-bezier(.35,.755,.42,.95);
}

.project_control .prev:hover, .project_control .next:hover	{
	color: black;
	box-shadow: 0 5px 50px rgba(0,0,0,.2);
}

.project_control .prev:focus, .project_control .next:focus	{
	color: black;
}

.project_slider	{
	float: left;
	width: 100%;
	position: relative;
	z-index: 100;
	margin-top: 5em;
	overflow: hidden;
	max-height:36em;
}

.project_slider .slick-slide	{
	padding: 0 1em;
}

.project_card	{
	float: left;
	width: 100%;
	background: white;
}

.project_card_img	{
	width: 100%;
	height: 20em;
	overflow: hidden;
	position: relative;
}

.project_card_content	{
	padding: 2em;
}

.project_card_content h3	{
	font-family: SangBleuSans;
	margin: 0;
	padding: 0;
	margin-bottom: 1em;
}

.project_card_flex	{
	display: flex;
	justify-content: space-between;
/*	margin-top: 2em;*/
}

.pcard_footer:nth-last-child(1)	{
	text-align: right;
}


.why_container	{
	color: white;
	position: relative;
}

.why_img_drop	{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.why_img_drop img	{
	height: 180%
}

.why_container:before	{
	content: '';
	background: rgba(0,0,0,.5);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

.why_list	{
	display: grid;
	grid-template-columns: auto auto auto;
	grid-gap: 4em;
	width: 100%;
	float: left;
	margin-top: 4em;
/*	text-align: justify;*/
}

.why_list img	{
	width: 5em;
	height: 5em;
}

.why_list h3	{
	font-family: SangBleuSans;
}

.why_container p	{
	width: 50%;
}

.why_container .full_header_control	{
	border-color: rgba(255,255,255,.5);
	color: white;
}

.why_container .stat_header	{
	color: white;
}

/*********register_section*******/
.register_section	{
	padding: 5em 0;
	float: left;
	width: 100%;
	position: relative;
}

.register_section:before	{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	background: #221414;
	z-index: -1;
}

.why_grid	{
	margin-top: 0;
	float: left;
	width: 100%;
	display: grid;
	grid-template-columns: 60% 40%;
	justify-content: space-between;
	grid-gap: 10%;
}

.register_content	{
	color: white;
	width: 80%;
}

.form_group	{
	width: 100%;
	float: left;
	margin-bottom: 1em;
}

.form_field	{
	float: left;
	width: 100%;
	padding: 1em;
	border-radius: 4px;
	border: 1px #c0c0c0 solid;
}

.form_field:focus	{
	border: 1px #303030 solid;
}

footer{
	float: left;
	background: #fff;
	width: 100%;
	padding: 4em 0;
    border-top: 1px rgba(0,0,0,.2) solid;
}