﻿@charset "utf-8";
/*

BASE
MOBILE MENU
TOPBAR
HERO
ABOUT
PARTNERS
TESTIMONIALS
NEWS
TALK
COPYRIGHT
MODALBOX CONTACT
CURSOR
MEDIA QUERIES (FOR SMALL DEVICES)


/*---------------------------------------------------*/
/*	BASE
/*---------------------------------------------------*/

html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0
}
body{
	font-family: "Roboto";
	font-size: 15px;
	line-height: 30px;
	letter-spacing: 0.5px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: #fff;
	color: #767676;
}
svg{
	fill: currentcolor;
	width: 15px;
	height: 15px;
}
img.svg{
	width: 15px;
	height: 15px;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #6f6f6f;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #6f6f6f;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #6f6f6f;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #6f6f6f;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: #6f6f6f;
}

::placeholder { /* Most modern browsers support this now. */
   color: #6f6f6f;
}

.container{
	max-width: 1200px;
	width:100%;
	margin-left: auto;
	margin-right: auto;
	height:auto;
	padding:0px 40px;
	position:relative;
	clear:both;
}

h1, h2, h3, h4, h5, h6{
	font-weight:500;
	line-height: 1.4;
	font-family: "Poppins";
	color: #000;
}

h1 { font-size: 45px; }
h2 { font-size: 36px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

.wrapper{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.wrapper,
.wrapper *{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	   -moz-box-sizing: border-box; /* Firefox, other Gecko */
			box-sizing: border-box; /* Opera/IE 8+ */
}
.section{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex;
}
#preloader:before,
#preloader:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#preloader:after{
    left: auto;
    right: 0;
}
#preloader .loader_line{
    margin: auto;
    width: 1px;
    height: 250px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.loader_line:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards;
}
.loader_line:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #999999;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms;
}

@keyframes lineheight{
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}

@keyframes lineround{
    0%{
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100%{
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
}

/*hiding all*/
.preloaded .loader_line:after{
    opacity: 0;
}
.preloaded  .loader_line{
    opacity: 0;
    height: 100%!important;
}
.preloaded:before,
.preloaded:after{
    -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    animation: preloadedzero 300ms ease-in-out 500ms forwards;
}
@keyframes preloadedzero{
    0%{
        width: 50%;
    }
    100%{
        width: 0%;
    }
}

/*---------------------------------------------------*/
/*	MOBILE MENU
/*---------------------------------------------------*/

.mobile_menu{
	width: 100%;
	height: auto;
	position: relative;
	top: 0px;
	left: 0px;
	display: none;
	z-index: 10;
}
.mobile_menu .topbar_inner{
	width: 100%;
	height: auto;
	float: left;
	clear: both;
	background-color: #fff;
	padding: 20px 0px;
	border-bottom: 1px solid rgba(0,0,0,.2);
}
.mobile_menu .topbar_in{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.my_trigger .hamburger{
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.my_trigger .hamburger-box{
    width: 30px;
    height: 18px;
    display: inline-block;
    position: relative;
}
.my_trigger .hamburger-inner{
    display: block;
    top: 50%;
    margin-top: -2px;
}
.my_trigger .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after{
    width: 30px;
    height: 2px;
    background-color: #333333;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
	
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}
.my_trigger .hamburger-inner::before,
.my_trigger .hamburger-inner::after{
    content: "";
    display: block;
}
.my_trigger .hamburger-inner::before{top: -8px;}
.my_trigger .hamburger-inner::after{ bottom: -10px;}
.my_trigger .hamburger--collapse-r .hamburger-inner{
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.my_trigger .hamburger--collapse-r .hamburger-inner::after{
    top: -16px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.my_trigger .hamburger--collapse-r .hamburger-inner::before{
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.my_trigger .hamburger--collapse-r.is-active .hamburger-inner{
    transform: translate3d(0, -10px, 0) rotate(45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.my_trigger .hamburger--collapse-r.is-active .hamburger-inner::after{
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.my_trigger .hamburger--collapse-r.is-active .hamburger-inner::before{
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.my_trigger .hamburger{
	padding: 0px;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}
.my_trigger .hamburger .hamburger-inner::before,
.my_trigger .hamburger .hamburger-inner::after,
.my_trigger .hamburger .hamburger-inner{
	background-color: #000;
	width: 30px;
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.mobile_menu .dropdown{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #fff;
	border-bottom: 1px solid rgba(0,0,0,.2);
	display: none;
}
.mobile_menu .dropdown .dropdown_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 25px 0px;
}
.mobile_menu .dropdown .dropdown_inner ul{
	margin: 0;
	list-style-type: none;
}
.mobile_menu .dropdown .dropdown_inner ul li{
	margin: 0;
	float: left;
	width: 100%;
}
.mobile_menu .dropdown .dropdown_inner ul li a{
	text-decoration: none;
	color: #000;
	display: inline-block;
	padding: 4px 0px;
	font-family: "Montserrat";
	font-weight: 500;
}
.mobile_menu .logo {
    font-family: "brush-script-regular";
    font-size: 26px;
    font-weight: bold;
    color: #000;
    
}

/*---------------------------------------------------*/
/*	TOPBAR
/*---------------------------------------------------*/

.topbar{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
	transition: all .3s ease;
	transform: translateY(-100%);
}
.topbar.loaded{transform: translateY(0);}
    .topbar .topbar_inner {
        width: 100%;
        height: auto;
        clear: both;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 25px 50px;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        background-color: rgba(255,255,255,.6);
    }
.topbar .topbar_inner.opened{
	background-color: #fff;
	padding: 20px 50px;
	box-shadow: 0px 0px 30px rgba(0,0,0,.1);
}
    .topbar .topbar_inner .logo  {
        display: inline-block;
        font-family: "brush-script-regular";
        font-size: 26px;
        font-weight: bold;
        color: #000;
    }
.topbar .menu ul{
	margin: 0;
	list-style-type: none;
}
.topbar .menu ul li{
	margin: 0;
	display: inline-block;
}
.topbar .menu ul li{
	margin: 0 25px 0px 0px;
	display: inline-block;
}
.topbar .menu ul li:last-child{margin-right: 0px;}
.topbar .menu ul li a{
	text-decoration: none;
	color: #000;
	font-weight: 500;
	font-family: "Poppins";
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.topbar .menu ul li.current a{color: #000;}
.topbar .menu ul li a:hover{color: #000;}


/*---------------------------------------------------*/
/*	HERO
/*---------------------------------------------------*/

.hero{
	width: 100%;
	height: 100vh;
	float: left;
	clear: both;
	position: relative;
}
    .hero.sub-page {
        height: 30vh;
    }
.hero .background{
	position: absolute;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 50%;
}
.hero .image{
	position: absolute;
	right: 0px;
	top: 0px;
	bottom: 0px;
	left: 0px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.hero[data-style="one"] .background{clip-path: polygon(0% 100%, 21% 0%, 100% 0%, 100% 100%);}
.hero[data-style="two"] .background{clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);}
.hero[data-style="three"] .background{clip-path: ellipse(70% 80% at 70% 50%);}
.hero .container{height: 100%;}
.hero .content{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding-right: 20px;
}
.hero .name_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-bottom: 6px;
}
.hero .job_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
    .hero .content h3 {
        position: relative;
        font-size: 120px;
        font-family: "brush-script-regular";
        /*text-transform: uppercase;*/
        color: #000;
        line-height: 1.2;
        display: inline-block;
        overflow: hidden;
    }
.hero .content h3 span{
	color: transparent;
	-webkit-text-stroke: 1px #000;
	padding-left: 2px;
}
    .hero .content .job {
        font-weight: 500;
        font-size: 17px;
        font-family: "Roboto";
        margin-bottom: 30px;
        float: left;
        position: relative;
        overflow: hidden;
    }
.overlay_effect{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 3;
}
.overlay_effect:after{
	position: absolute;
	content: "";
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: #fff;
	z-index: 1;
}
.overlay_effect:before{
	position: absolute;
	content: "";
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}
body.loaded .overlay_effect:before{
	z-index: 2;
  	background-color: #000;
  	animation: anim 2s cubic-bezier(0.77, 0, 0.175, 1) both;
}
body.loaded .overlay_effect:after{
 	animation: anim2 2s cubic-bezier(0.77, 0, 0.175, 1) both;
}

@keyframes anim{
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes anim2{
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.down{
	position: absolute;
	z-index: 7;
	bottom: 50px;
	display: none;
}
.down.loaded{display: block;}
.down[data-position="left"]{left: 0px;}
.down[data-position="right"]{right: 0px;}
.down[data-position="center"]{
	left:50%;
	transform: translateX(-50%);
}
.down .line_wrapper{
	position: absolute;
    width: 1px;
    height: 100%;
    left: 0;
    right: 0;
   	margin: 0 auto;
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
	
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -ms-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s;
}
.down .line_wrapper{
    width: 1px;
    height: 50px;
    background: none;
	display: block;
}
.down .line_wrapper:before{
	content: "";
	background-color: #000;
	width: 1px;
    height: 50%;
    display: block;
    top: 0;
	
    -webkit-animation: scroll-down 2s ease-in-out infinite;
    -ms-animation: scroll-down 2s ease-in-out infinite;
    animation: scroll-down 2s ease-in-out infinite;;
}

@-webkit-keyframes scroll-down {
  0% {
    height: 0;
  }
  50% {
    height: 100%;
  }
  70% {
    height: 100%;
    transform: scaleY(0.5);
    transform-origin: bottom;
  }
  100% {
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.down[data-skin="light"] .line_wrapper:before{background-color: #fff;}

/*---------------------------------------------------*/
/*	ABOUT
/*---------------------------------------------------*/

.about{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 150px 0px;
}
.about .about_inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
}
.about .left{
	width: 50%;
	padding-right: 50px;
}
    .about .left .image,
    .about .right .image {
        position: relative;
    }
        .about .left .image img,
        .about .right .image img {
            min-width: 100%;
            opacity: 0;
        }
    .about .left .main,
    .about .right .main {
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        box-shadow: 0px 0px 40px rgb(0 0 0 / 20%);
    }
.about .experience span{display: block;}
.about .experience .year{
	font-size: 80px;
	font-weight: 800;
	font-family: "Poppins";
	color: #fff;
	margin-bottom: 3px;
	line-height: 1;
	font-style:italic; 
}
.about .experience .text{
	color: #fff;
	font-style: italic;
	font-family: "Poppins";
	opacity: .7;
}
.about .right{
	width: 50%;
	padding-left: 50px;
}
.title{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.title h3{
	font-weight: 800;
	font-family: "Poppins";
} 
.title span{
	display: inline-block;
	background-color: rgba(0,0,0,.05);
	text-transform: uppercase;
	padding: 4px 10px;
	font-weight: 600;
	font-size: 12px;
	color: #333;
	font-family: "Poppins";
	letter-spacing: 0px;
	margin-bottom: 15px;
}
.about .right .text,
.about .left .text {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    margin-bottom: 40px;
    padding-top: 27px;
}
.button{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.button a{
	text-decoration: none;
	color: #fff;
	background-color: #000;
	display: inline-block;
	padding: 13px 48px;
	border: 2px solid #000;
	font-family: "Poppins";
	
	-webkit-transition: all .3s ease;
	   -moz-transition: all .3s ease;
	    -ms-transition: all .3s ease;
	     -o-transition: all .3s ease;
	        transition: all .3s ease;
}
.button a:hover{
	color: #000;
	background-color: transparent;
}


/*---------------------------------------------------*/
/*	TESTIMONIALS
/*---------------------------------------------------*/

.testimonials{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #f9f9f9;
	padding: 150px 0px;
}
.testimonials .testimonials_inner{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	justify-content: space-between;
}
.testimonials .left{
	width: 50%;
	padding-right: 50px;
}
.testimonials .right{
	width: 50%;
	padding-left: 50px;
}
.testimonials .right ul{
	margin: 0;
	list-style-type: none;
}
.testimonials .right ul li{margin: 0;}
.testimonials .right .texts p{margin-bottom: 40px;}
.testimonials .right .author{
	width: 100%;
	height: auto;
	clear: both;
	display: flex;
	align-items: center;
}
.testimonials .right .author .image{
	width: 65px;
	height: 65px;
	border-radius: 100%;
	position: relative;
	overflow: hidden;
}
.testimonials .right .author .main{
	position: absolute;
	top: -4px;
	bottom: -4px;
	left: -4px;
	right: -4px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 100%;
	opacity: 0;
	
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
	        transition: all 1s ease;
	
	transform: scale(1.5) translateZ(0);
}
.testimonials .right .owl-carousel .owl-item.active .author .main{
	opacity: 1;
	transition: all 1s .3s ease;
	transform: scale(1) translateZ(0);
}
.testimonials .right .short{padding-left: 25px;}
.testimonials .right .short h3{
	overflow: hidden;
	margin: 0;
	padding: 0px;
	line-height: 1;
	position: relative;
}
.testimonials .right .short .author{
	font-family: "Montserrat";
	font-size: 18px;
	color: #000;
	font-weight: 600;
	margin-bottom: 0px;
	margin-bottom: 5px;
}
.testimonials .right .short .job{
	font-weight: 400;
	display: block;
	font-size: 15px;
}
.testimonials .right .short .author span,
.testimonials .right .short .job span{
	position: relative;
	display: block;
	padding: 2px 0px;
	transform: translateY(102%);
	
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
	        transition: all 1s ease;
}
.testimonials .right .owl-carousel .owl-item.active .short .author span{
	transform: translateY(0px);
	transition-delay: 0.3s;
}
.testimonials .right .owl-carousel .owl-item.active .short .job span{
	transform: translateY(0px);
	transition-delay: 0.6s;
}


/*---------------------------------------------------*/
/*	COPYRIGHT
/*---------------------------------------------------*/

.copyright{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	background-color: #000;
	padding: 90px 0px;
}
.copyright .inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	text-align: center;
}
    .copyright .left {
        float: left;
        width: 50%;
        padding-right: 50px;
        text-align: left;
    }

    .copyright .right {
        float: left;
        width: 50%;
        padding-left: 50px;
    }
        .copyright .right .text,
        .copyright .left .text {
            width: 100%;
            height: auto;
            clear: both;
            float: left;
            margin-bottom: 40px;
            padding-top: 27px;
        }
        .copyright .right ul li { list-style-type: none; display: inline;}
        .copyright .right ul li:after {
            content: ' / ';
        }

        .copyright .right ul li:last-child:after {
            content: '';
        }
.copyright p{
	font-family: "Poppins";
	color: #fff;
}
.copyright a{
	text-decoration: none;
	color: #fff;
}


/*---------------------------------------------------*/
/*	CURSOR
/*---------------------------------------------------*/

.mouse-cursor{
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 100;
  background-color: #000;
  -webkit-transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
  transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}
.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: #000;
  opacity: .3;
}
.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
  opacity: .5;
  -webkit-transition: all .08s ease-out;
  transition: all .08s ease-out;
}
.cursor-outer.cursor-hover{opacity: 0;}
.wrapper[data-magic-cursor="hide"] .mouse-cursor{
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1111;
}

/*---------------------------------------------------*/
/*	MEDIA QUERIES (FOR SMALL DEVIVES)
/*---------------------------------------------------*/

@media (max-width: 1040px) {
	.topbar{display: none;}
	.mobile_menu{display: block;}
	.hero .content h3{font-size: 50px;}
	.about .about_inner{flex-direction: column;}
	.about .left{padding-right: 0px;width: 100%;margin-bottom: 50px;}
	.about .right{padding-left: 0px;width: 100%;}
	.title .title_flex{flex-direction: column;align-items: flex-start;}
	.skills .skills_inner{flex-direction: column;}
	.skills .left{padding-right: 0px;width: 100%;margin-bottom: 20px;}
	.skills .right{padding-left: 0px;width: 100%;}
	.testimonials .testimonials_inner{flex-direction: column;}
	.testimonials .left{padding-right: 0px;width: 100%;margin-bottom: 50px;}
	.testimonials .right{padding-left: 0px;width: 100%;}
}
@media (max-width: 768px) {
	.hero .content{padding-right: 0px;width: 100%;}
}

/* ----------------------------- Navigation ----------------------------- */

.main-menu {
    padding-left: 0;
}

    .main-menu li {
        display: inline;
        margin-left: 2px;
        position: relative;
        margin-bottom: 0;
    }

        .main-menu li:first-of-type {
            margin-left: 5px;
        }

    .main-menu a {
        color: #000;
        font-weight: 500;
        font-family: "Poppins";
        text-decoration: none;
        padding: 9px 13px;
    }

.main-menu li.top-level {
    margin-bottom: 0;
}

    .main-menu li.top-level a:hover,
    .main-menu li.top-level:hover a,
    .main-menu li.top-level.active a {
        color: #fff;
        background: #F52225;
        transition: color 0.5s;
        -moz-transition: color 0.5s;
        -webkit-transition: color 0.5s;
        -o-transition: color 0.5s;
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        border-radius: 1px;
    }

    .main-menu li.top-level:hover ul li a {
        background: none;
        padding: 10px 0;
    }

    .main-menu li.top-level ul li a:hover {
        color: #fff;
        background: none;
    }

ul#nav {
    margin-bottom: 0;
}

#nav li.active a {
    color: #000;
    font-weight: bold;
}

#nav ul {
    display: none;
    position: absolute;
    left: -190px;
    padding: 5px;
    list-style-type: none;
    width: 450px;
    background: #000;
    background: rgba(0,0,0,.7);
    z-index: 12;
    margin: 0;
}

#nav ul {
    top: 33px;
}

#nav li:hover > ul {
    display: block;
    z-index: 12;
    width: 450px;
    background: #000;
    background: rgba(0,0,0,.7);
    list-style: none;
}

    #nav li:hover > ul li:hover {
        background: #F52225;
        font-weight: bold;
        cursor: pointer;
    }

#nav ul li {
    float: none;
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 10px 0;
    z-index: 13;
    list-style: none;
    width: 49%;
    text-align: center;
}

    #nav ul li:nth-of-type(2n) {
        margin-left: 1%;
    }

#nav li.top-level > a:after {
    content: ' ▽';
}

#nav li.top-level > a:only-child:after {
    content: '';
}

.top-30px { margin-top: 30px;}

/*---------------------------------------------------*/
/*	SERVICES
/*---------------------------------------------------*/

.services, .service {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding: 150px 0px;
    background-color: #f9f9f9;
}
.no-space { padding: 100px 0 10px 0;}
.ft-item img {
    display: inline-block;
    margin: 25px 35px 50px 0;
    padding: 4px;
    width: 85px;
    height: 85px;
    float: left;
    text-align: center;
    vertical-align: top;
    border: 10px solid #f4f4f4;
    border-radius: 50%;
}
.col-md-4, .col-md-12 {
    position: relative;
    min-height: 1px;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.ws-sm {
    padding-bottom: 85px;
}

.no-gap {
    padding-left: 0;
    padding-right: 0;
}
@media (min-width: 360px) {
    .col-md-4 {
        float: left;
        width: 50%;
    }
    .ft-item img {
        float: none;
        display: block;
    }

}
@media (min-width: 992px) {
    .col-md-4 {
        float: left;
        width: 33.33333333%;
    }
    .col-md-12 {
        float: left;
        width: 100%;
    }

}

input { padding: 6px; width: 100%}
input#contact-email { margin-right: 0;}
.addinfo { display: none;}
#map {
    width: 540px;
    max-width: 90%;
    max-height: 600px;
    height: 540px;
    background: #000;
    border: solid 1px black;
}

.map-container {
    position: relative;
    width: 100%
}


.marker {
    background-image: url('/graphics/icon-map-pin.png');
    background-size: cover;
    width: 32px;
    height: 37px;
    border-radius: 50%;
    cursor: pointer;
}

.mapboxgl-popup {
    max-width: 200px;
}

.mapboxgl-popup-content {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.contact .left {
    width: 50%;
    padding-right: 50px;
    float: left;
    margin-bottom: 20px;
}

.contact .right {
    width: 50%;
    padding-left: 50px;
    float: left;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    input {
        width: auto;width: 39.9%;
    }
    input#contact-name {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
        input#contact-email { float: right;}
}


@media (max-width: 860px) {
    input {
        display: inline-block;
        width: 100%;
    }
    .contact .left,
    .contact .right {
        width: 100%;
        padding: 0;
        float: none;
    }
    #map {
        display: block;
        width: 90%;
        margin: 20px 5%;
    }    
}
