/*=============================================
===============================================
Main stylesheet for Qazi Fakhir Jamil
===============================================
=============================================*/

/*import font css file */
@import url('fonts.css');
body {
	padding: 0;
	margin: 0;
	font-family: 'Proxima Nova', 'Raleway';
	font-weight: 400;
	color: #4a4a4a;
	font-size: 15px;
}
html, body {
	width: 100%;
	float: left;
}
 h1, h2, h3, h4, h5, h6, p {
	color: #4a4a4a;
}
a {
	color: #ff5663;
	text-decoration: none;
	cursor:pointer;
}
a:hover {
	color: #4a4a4a;
	text-decoration: none;
	cursor: pointer;
}
a:focus {
	color: #4a4a4a;
	text-decoration: none;
	transition: all 1s ease;
}
*:focus {
	outline: none !important;
}
section {
	float: left;
	width: 100%;
}
::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: #ff5764;
}

::selection {
    color: #fff;
    background: #ff5764;
}
/*============= Default css =============*/
.default-css h1 {
	text-transform: uppercase;
    font-size: 36px;
    font-weight: 400;
    color: #ff5764;
    margin: 0;
}
.default-css h2 {
	text-transform: uppercase;
    font-size: 32px;
    font-weight: 400;
    color: #ff5764;
    margin: 0;
}
.default-css h3 {
	text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
    color: #ff5764;
    margin: 0;
}
.default-css h4 {
	text-transform: uppercase;
    font-size: 26px;
    font-weight: 400;
    color: #ff5764;
    margin: 0;
}
.default-css h5 {
	text-transform: uppercase;
    font-size: 22px;
    font-weight: 400;
    color: #ff5764;
    margin: 0;
}
.default-css h6 {
	text-transform: uppercase;
    font-size: 20px;
    font-weight: 400;
    color: #ff5764;
    margin: 0;
}
.default-css h1 a, .default-css h2 a, .default-css h3 a,
.default-css h4 a, .default-css h5 a, .default-css h6 a{
	color: #b81f25;
}
.default-css h1 a:hover, .default-css h2 a:hover, .default-css h3 a:hover,
.default-css h4 a:hover, .default-css h5 a:hover, .default-css h6 a:hover{
	color: #042248;
}

.default-css iframe{
	width: 100%;
}
.alignleft {
	float: left;
	margin-right: 1.5em;
	padding-bottom: 10px;
	margin-top: 15px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 1.5em;
	padding-bottom: 10px;
	margin-top: 15px;
	margin-bottom: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10px;
	margin-top: 15px;
	margin-bottom: 20px;
}
.default-css p {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 22px;
	color: #4a4a4a;
}
.default-css ul {
	margin: 0 0 0 0px;
   /*  list-style-image: url(../images/list-style.png); */
    padding: 0 0 0 0px;
}
.default-css ol {
	margin-bottom: 10px;
    display: inline-block;
}
.default-css ul li {
	font-size: 16px;
    line-height: 22px;
    color: #4a4a4a;
    text-align: left;
    padding-left: 32px;
    background: url(../images/list-style.png) no-repeat;
    list-style: none;
    background-position: 2px 10px;
    margin-bottom: 10px;
}
.default-css ol li {
	font-size: 16px;
	line-height: 22px;
	color: #4a4a4a;
    margin-bottom: 10px;
}
.default-css small {
    font-size: 16px;
    color: #111111;
    font-family: 'Proxima Nova';
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0px;
    line-height: 20px;
}

/*====================================
============= Back to top ============
====================================*/
#back-top-wrapper {
	position: fixed;
	right: 20px;
	bottom: 20px;
	overflow: hidden;
	z-index: 99;
}
#back-top {
	display: block;
	margin-bottom: 0;
}
#back-top-wrapper #back-top a {
	width: 66px;
    height: 66px;
    opacity: 1;
    transition: 200ms all;
    color: #fff;
    text-align: center;
	line-height: 26px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 19px;
    font-family: 'FontAwesome';
    background: #ff5764;
    border-radius: 50%;
    border: none;
    display: inline-block;
	font-weight:600;
	padding-top: 5px;
}
#back-top-wrapper #back-top a span{
	font-size: 19px;
	font-family: 'Lato';
	font-weight: 500;
	display:block;
}

#back-top-wrapper #back-top a:hover{
	color: #fff;
	background: #221f1f;
}


/*====== Homepage ======*/
.main-header{
    width: 100%;
    float: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 20px 0;
    
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}
.main-header.sticky {
    background: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.main_navigation {
    width: 80%;
    float: left;
}
.main_navigation .navbar-expand-md{
    padding: 15px;
}
.main_navigation .navbar-expand-md .navbar-collapse{
    justify-content: flex-end;
}
.main_navigation .navbar-expand-md .navbar-nav a{
    padding: 0 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: 18px;
    
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
	float: left;
}
.main_navigation .navbar-expand-md .navbar-nav .menu-item + .menu-item {
    border-left: solid 1.5px #000;
}
.main_navigation .navbar-expand-md .navbar-nav a:hover{
    color: #ff5764;
}
.header-inner .main_navigation .navbar-expand-md .navbar-nav .menu-item + .menu-item{
	border-left: solid 1.5px #ff5764;
}
.header-inner .main_navigation .navbar-expand-md .navbar-nav .menu-item + .menu-item{
	
}
.top-social {
    float: right;
    width: 20%;
    text-align: right;
    padding: 12px 0;
}
.top-social a{
    width: 25px;
    height: 25px;
    display: inline-block;
    border-radius: 50%;
	line-height: 25px;
    text-align: center;
    background: #ff5764;
    color: #fff;
    font-size: 14px;
    
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}
.top-social a + a{
    margin-left: 11px;
}
.top-social a:hover{
    color: #fff;
    background: #221f1f;
}
.home-banner{
    width: 100%;
    float: left;
    position: relative;
}
.home-banner > img{
    width: 100%;
}
.home-banner .banner-caption{
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}
.banner-caption .caption-data {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}
.caption-data h1{
    font-weight: 700;
    font-size: 56px;
    text-transform: uppercase;
    line-height: 55px;
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
}
.caption-data p{
    font-size: 40px;
    line-height: normal;
    color: #000;
    margin-bottom: 30px;
}
.banner-caption .banner-avatar{
    position: relative;
    right: 150px;
}
.btn-default{
    font-size: 16px;
    font-family: 'Raleway';
    font-weight: 600;
    color: #111111;
    background: transparent;
    border-radius: 0;
    border: solid 1px #ff5764;
    padding: 10px 30px;
         text-transform: uppercase;   
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}
.btn-default:hover{
    color: #fff;
    background: #ff5764;
}
.btn-red{
    color: #ff5764;
}
.btn-default:focus{
    outline: none;
    box-shadow: none;
}

.home-aboutMe{
    padding: 70px 0;
}
.my-pic{
    width: 100%;
    float: left;
	overflow: hidden;
	 position: relative;
	 text-align: center;
	
}
.my-pic img{
	display: block;
  position: relative;
  max-width: none;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-15px,0,0);
  transform: translate3d(-15px,0,0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  
}
.my-pic:hover img{
/*	 opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);*/
}
.my-pic .pic-overlay {
  width: auto;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background: rgba(255, 87, 100, 0.51);
  opacity:0;
}
.my-pic:hover .pic-overlay{/* opacity:1;*/}
.aboutMe-excerpt.default-css {
    height: 771px;
    vertical-align: middle;
    display: table-cell;
}
.aboutMe-excerpt h2{
    text-transform: none;
    font-size: 26px;
    color: #000;
    margin: 0;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 25px;
}
.aboutMe-excerpt h2 big{
    font-size: 70px;
    font-weight: 700;
    color: #ff5764;
}
.digital-media-management{
    padding: 40px 0;
}
.heading{
    width: 100%;
    float: left;
    margin-bottom: 34px;
}
.heading h3{
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
    color: #ff5764;
    margin: 0;
}
.heading p{
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 20px;
	color:#4a4a4a;
}
.heading p:first-of-type{
    margin-top: 20px;
}
.digital-media-management .media-partners{
    width: 100%;
    float: left;
    padding-bottom: 70px;
    position: relative;
}
.digital-media-management .media-partners:after{
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../images/saperator.png) left bottom;
}
.media-partners ul{
    width: 100%;
    float: left;
    padding: 0;
    list-style: none;
    text-align: center;
}
.media-partners ul li {
    display: inline-block;
    padding: 0 10px;
    margin: 20px auto;
    border-right: solid 1px #d9d9d9;
    min-width: 232px;
}
.media-partners ul li:nth-child(5n), 
.media-partners ul li:last-child{
    border: none;
}
.startup-companies{
    padding: 70px 0;
}
.startup-companies .heading .btn-default{
    margin-top: 20px;
}
#startupCompanyCarousel{
    margin-top: 30px;
}
#startupCompanyCarousel .carousel-item > img{
    margin: 0 auto;
    display: block;
}
.company-description{
    width: 100%;
    display: block;
    text-align: center;
    max-width: 720px;
    margin:  40px auto;
}
#startupCompanyCarousel ul.carousel-indicators{
    bottom: -20px;
}
#startupCompanyCarousel ul.carousel-indicators li{
    width: 11px;
    height: 11px;
    background: #8b8b8b;
}
#startupCompanyCarousel ul.carousel-indicators li.active{
    width: 11px;
    height: 11px;
    background: #ff5764;
}
.carousel-control-next, .carousel-control-prev{
    top: 30%;
    bottom: initial;
}
.carousel-control-next-icon, .carousel-control-prev-icon{
    width: 32px;
    height: 32px;
}
.carousel-control-prev-icon {
    background-image: url(../images/prev.png);
}
.carousel-control-next-icon {
    background-image: url(../images/next.png);
}
#startupCompanyCarousel .carousel-incate {
    width: 100%;
    float: left;
    margin: 40px 0;
    text-align: center;
	position: absolute;
   top: 614px;
   z-index: 1;
   bottom: auto;
}
#startupCompanyCarousel .carousel-inner { 
    padding-bottom: 150px;
}
#startupCompanyCarousel .carousel-incate li {
    list-style: none;
    display: inline-block;
    padding: 0 20px;
    border-right: solid 1px #d9d9d9;
	text-indent: initial;
	width: auto;
	height: auto;
	cursor: pointer;
	margin-bottom:26px;
}
#startupCompanyCarousel .carousel-incate li:last-child{
    border: none;
}
#startupCompanyCarousel .carousel-incate li > img{
    filter: gray;
    -webkit-filter: grayscale(1);
}
#startupCompanyCarousel .carousel-incate li.active > img, #startupCompanyCarousel .carousel-incate li > img:hover{
    filter: none;
    -webkit-filter: grayscale(0);
}
.home-quote{
    padding: 150px 0;
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
    text-align: center;
}
.home-quote:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.61;
    z-index: -1;
}
.home-quote p{
    color: #fff;
    font-size: 29px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 25px;
}
.home-quote span{
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 36px;
    font-style: italic;
}
.our-blog{
    padding: 70px 0;
}
.our-blog .heading h3{
    color: #000;
}

.our-blog .col-4{
    text-align: center;
}
.blog-item{
    width: 100%;
    max-width: 379px;
    display: inline-block;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    text-align: lefy;
}
.our-blog .col-4:nth-of-type(1n){
    text-align: left;
}
.our-blog .col-4:nth-of-type .blog-item{
    float: left;
}
.our-blog .col-4:nth-of-type(3n){
    text-align: left;
}
.our-blog .col-4:nth-of-type(3n) .blog-item{
    float: right;
}
.blog-item figure{
    width: 100%;
    float: left;
    overflow: hidden;
}
.blog-item figure img{
    width: 100%;
    
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.blog-item figure img:hover{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}
.blog-item figcaption{
    width: 100%;
    float: left;
    padding: 0 50px 30px 20px;
}
.blog-item .posting-date{
    padding: 15px 25px;
    background: #ff5764;
    color: #fff;
    width: 89px;
    font-size: 20px;
    line-height: 24px;
    margin-top: -70px;
    margin-bottom: 20px;
    position: relative;
}
.blog-title{
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #3b3b3b;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: capitalize;
	min-height: 75px;
}
.blog-title a{
   color: #3b3b3b; 
}
.blog-title a:hover{
    color: #ff5764;
}
.blog-data{
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.blog-data > div{
    display: inline-block;
    padding-left: 30px;
    margin-right: 25px;
}
.blog-data > div:last-child{
    margin-right: 0;
}
.blog-data > div a{
    font-size: 15px;
    color: #000;
}
.blog-data > div a:hover{
    color: #ff5764;
}
.blog-data .author{
    background: url(../images/author-icon.png) no-repeat center left;
}
.blog-data .blog-cat{
    background: url(../images/cat-icon.png) no-repeat center left;
}
.blog-item p{
    font-size: 17px;
    line-height: 22px;
    color: #4b4a4a;
}
.btn-blog{
    padding: 10px 30px;
    background: #ff5764;
    text-transform: uppercase;
    color: #fff;
    border-color: #f12837;
}
.btn-blog:hover{
    background: #fff;
    border-color: #ff5764;
    color: #ff5764;
}
.main-footer{
    width: 100%;
    float: left;
    padding: 70px 0;
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
    text-align: center;
}
.main-footer:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.78;
    z-index: -1;
}
.footer-contact-form{
    width: 100%;
    float: left;
}
.footer-contact-form .form-group{
    margin-bottom: 20px;
}
.footer-contact-form .form-control{
    border-radius: 0;
    box-shadow: none;
    outline: none;
    height: 60px;
    font-size: 16px;
    color: #7a7a7a;
	    text-align: left;
}
.footer-contact-form textarea.form-control{
    height: 120px;
    resize: none;
}
.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #7a7a7a;
}
.form-control::-moz-placeholder { /* Firefox 19+ */
	color: #7a7a7a;
	opacity: 1;
}
.form-control:-ms-input-placeholder { /* IE 10+ */
	color: #7a7a7a;
	opacity: 1;
}
.form-control:-moz-placeholder { /* Firefox 18- */
	color: #7a7a7a;
}
.footer-contact-form .btn-default{
    color: #fff;
}
.main-footer .col-2, .main-footer .col-4{
    display: table;
}
.footer-info{
    width: 100%;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    height: 312px;
}
.footer-logo{
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
.footer-info p{
    color: #fff;
    font-size: 12px;
}
.footer-social {
    width: 100%;
    float: left;
}
.footer-social  a{
    color: #fff;
    font-size: 20px;
    margin: 0 10px;
}
.footer-social  a:hover{
    color: #ff5764;
}
.footer-links{
    width: 100%;
    text-align: right;
    display: table-cell;
    vertical-align: middle;
    height: 312px;
}
.footer-links a{
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 30px;
}
.footer-links a:hover{
    color: #ff5764;
}





/*=========== Inner Page =========*/


.header-inner{
	background:#121316;
}
.main-header.header-inner.sticky{
	background:#121316;
}
.header-inner .main_navigation .navbar-expand-md .navbar-nav a{
	color:#ff5764;
}
.header-inner .main_navigation .navbar-expand-md .navbar-nav a:hover{
	color:#fff;
}

.header-inner .main_navigation .navbar-expand-md .navbar-nav .nav-item + .nav-item{
	    border-left: solid 1.5px #ff5764;
}

.header-inner .top-social a:hover {
    color: #ff5764;
    background: #fff;
}

.inner-banner {
    width: 100%;
    float: left;
    position: relative;
}
.inner-banner img {
   width: 100%;
}

.in-banner-content {
    text-align: center;
    position: absolute;
	top: 65%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}
.in-banner-content{
	text-align:center;
}


.in-banner-content h1{
	font-size:70px;
	color:#ff5764;
	font-weight: 700;
	font-family: 'Proxima Nova';
	text-shadow:0;
	line-height: 52px;
	text-transform: uppercase;
}
.in-banner-content span{
	font-size:26px;
	color:#fff;
	font-family: 'Proxima Nova';
	font-weight: 400;
	text-shadow:none;
}
.in-banner-content span p{
	color:#fff;
	margin: 0;
    line-height: 20px;
}

.breadcrumb{
	background:transparent;
	padding:0;
	width:100%;
	text-align:center;
	margin: 0;
	display: inline-block;
}
.breadcrumb ul{
	padding:0;
	margin:0;
}
.breadcrumb ul li{
	list-style:none;
	display:inline-block;
	color:#fff;
	font-size:16px;
}
.breadcrumb ul li a{
	color:#fff;
	font-size:16px;
	font-family: 'Proxima Nova';
	font-weight: 400;
}
.breadcrumb ul li a:hover{
	color:#ff5764;
}

.inner-aboutMe{
	padding: 85px 0;
}
a#nmbtn:active,  a#nmbtn:focus{
    color: #ff5663;
}
.inner-aboutMe .heading h3{
	color:#000;
	font-family: 'Proxima Nova';
	font-weight: 400; 
}
.inner-aboutMe .heading h3 span{
	font-size:16px;
	color:#111111;
	font-weight: 400;
	text-transform:capitalize;
}
.inner-aboutMe .default-css p{
	color:#111111;
}
.achievementMy{
	background:#ebeff3; 
	padding: 150px 0;
}

.inner-heading{
	margin-bottom:25px;
}
.inner-heading h3{
	font-size:30px;
	color:#fff;
	margin:0;
	font-family: 'Proxima Nova';
	font-weight: 400;
	text-transform: uppercase;
	line-height: 26px;
}

.yourOnlineID img{
	margin: 0 0 6px;
}
.yourOnlineID {
    padding-right: 70px;
}
.yourOnlineID p{
	padding-bottom: 0px;
	color:#111111;
}
.achievment-detail.default-css p{
	font-style:italic;
	color:#fff;
}
#onlineIDCarousel .carousel-indicators {
    right: 0px;
    left: 0px;
    bottom: -20px;
}
#onlineIDCarousel .carousel-indicators li.active {
    width: 15px;
    height: 15px;
    background: #ff5764;
}
#onlineIDCarousel .carousel-indicators li {
    width: 15px;
    height: 15px;
    background: #8b8b8b;
	margin: 0 6px;
}
.achievment-detail p {
    font-style: italic;
	margin: 0;
    padding-bottom: 0;
}
.imgScreens img {
    max-width: 100%;
	margin-bottom: 20px;
}
.about-lifeHistory{
	padding:80px 0;
}
.default-css span{
	font-size:16px;
	color:#111111;
	font-family: 'Proxima Nova';
	font-weight: 700;
}
.about-lifeHistory .default-css small {
    font-size: 16px;
    color: #111111;
    font-family: 'Proxima Nova';
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0px;
    line-height: 20px;
}
.about-lifeHistory hr {
    border-color: #ff5764;
    margin: 4px 0 8px;
}
.about-lifeHistory .inner-heading h3{
	color:#111111;
}
.about-lifeHistory .default-css p{
	color:#111111;
}
.life-pic{
	float:right;
	overflow: hidden;
	 position: relative;
	 text-align: center;
}
.life-pic img{
	display: block;
  position: relative;
  max-width: none;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(15px,0,0);
  transform: translate3d(15px,0,0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  
}
.life-pic:hover img{
/*	 opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);*/
}
.life-pic .pic-overlay {
  width: auto;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background: rgba(255, 87, 100, 0.51);
  opacity:0;
}
.life-pic:hover .pic-overlay{ /*opacity:1;*/}
.btn-exp {
	padding: 10px 22px;
    background: #ff5764;
    text-transform: uppercase;
    color: #fff;
    border-color: #ff5764;
}
.btn-exp:hover {
    background: #fff;
    color: #ff5764;
}
.about-quote{
	padding: 120px 0 75px;
}
.about-quote p{
	margin-bottom: 10px;
}
.about-passion{
	background:#f8f8f8;
	padding:65px 0 50px;
	border-bottom:1px solid #ededed;
}
.yourOnlineID.default-css h3 {
    font-size: 30px;
    color: #111111;
	margin: 0 0 20px;
    font-family: 'Proxima Nova';
    font-weight: 400;
    text-transform: uppercase;
    line-height: 26px;
}
.passion-detail figcaption{
	text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
    color: #ff5764;
	margin: 0 0 5px;
	font-family: 'Proxima Nova';
}
.passion-detail .inner-heading h3{
	color:#000000;
}
.passion-detail .inner-heading {
    margin-bottom: 15px;
}
.passion-detail.default-css p {
    font-style: italic;
	color:#111111;
}
.passion-detail.default-css {
    padding-right: 58px;
}
.passion-right {
    float: right;
    margin-top: 95px;
}
.passion-right ul{
	padding:0;
	margin:0;
}
.passion-right ul li{
	list-style:none;
	display:inline-block;
	margin-left: 4px;
	overflow:hidden;
}
.passion-right ul li img{
	width: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.passion-right ul li img:hover{
	-webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}

.startUp-innerPage{
	padding:85px 0;
}

.startUp-innerPage .about-lifeHistory {
    padding: 30px 0 0;
}

.heading.inerB p {
    font-size: 16px;
}
.work-specialts{
	padding:30px 0 0 62px;
	clear: both;
}
.work-specialts .inner-heading {
    margin-bottom: 15px;
}
.startUp-innerPage .life-pic {
    margin-bottom: 32px;
}

.companys-inner-startUp{
	padding: 85px 0 60px;
	text-align:center;
}
.startUp-itemIn {
       margin: 40px 0 20px;
    padding: 0 40px;
}
.startUp-itemIn figure{
	margin-bottom:20px;
	text-align:center;
}
.startUp-itemIn h3{
	font-size:20px;
	color:#4a4a4a;
	font-family: 'Proxima Nova';
	font-weight: 600;
	margin:0 0 10px;
	text-transform: uppercase;
}
.startUp-itemIn h3 a{
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
	color:#4a4a4a;
}
.startUp-itemIn h3 a:hover{
	color:#ff5764;
}
.startUp-itemIn p{
	font-size:16px;
	color:#4a4a4a;
	line-height:20px;
	font-family: 'Proxima Nova';
	font-weight: 400;
	margin-bottom: 22px;
}

.ecanuks-innerPage{
	padding: 85px 0 30px;
}
.ecanuks-innerPage .heading {
    margin-bottom: 20px;
}

/* .companyTab ul{
	padding:0;
	margin:0;
} */
.companyTab {
    width: 100%;
    float: left;
    text-align: center;
	position:relative;
	padding-bottom:30px;
}
.companyTab:after{
	content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../images/saperator.png) left bottom;
}
.companyTab li{
	list-style: none;
    display: inline-block;
    padding: 0 20px;
    border-right: solid 1px #d9d9d9;
	cursor:pointer;
	    margin-bottom: 26px;
}
.companyTab ul{
  padding:0;
  margin:0;
}
.companyTab li img {
    filter: gray;
    -webkit-filter: grayscale(1);
}
.companyTab li.active img, .companyTab li img:hover{
	  filter: none;
    -webkit-filter: grayscale(0);
 }
/* .companyTab li.active img, .companyTab li img:hover {
    filter: none;
    -webkit-filter: grayscale(0);
}
 */
.globalDetail{
	text-align:center;
}
.globalDetail .inner-heading {
    margin-bottom: 11px;
}
.inner-heading h4{
	font-size:20px;
	color:#4a4a4a;
	font-family: 'Proxima Nova';
	font-weight: 600;
	margin:0 0 0px;
	text-transform: uppercase;
}
.efficitur-aenean .inner-heading {
    margin-bottom: 11px;
}
.ecanuGlobal {
    float: left;
    width: 100%;
    text-align: center;
    margin: 30px 0;
	
}

.ecanuGlobal> img {
    margin: 30px 0 40px;
}
.midImg {
	width: 100%;
	float: left;
	text-align: center;
}
.midImg>img{
	max-width: 100%;
}

.efficitur-aenean-right {
    text-align: center;
}
.ecanMainDiv {
   margin:20px 0 20px;
    float: left;
    width: 100%;
}
.ecanuGlobal-bottom {
    float: left;
    width: 100%;
	position: relative;
	margin: 10px 0 0;
    padding-top: 44px;
}
.ecanuGlobal-bottom:before{
	    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/saperator.png) left top;
}
.ecanuGlobal-bottom .col-8.offset-2 {
    -ms-flex: 0 0 71.666667%;
    flex: 0 0 71.666667%;
    max-width: 71.666667%;
}

.startUp-itemIn .btn.btn-default {
    text-transform: uppercase;
}

.ecanukDetail-in .tab-pane > .row {
   display: block;
}
.about-lifeHistory .row {
    flex-direction: row-reverse;
}
.about-lifeHistory-dtail .row{
	flex-direction: row;
}
.section-right .row {
flex-direction: row-reverse;
}
.ecanMainDiv.invert .row {
    flex-direction: row;
}
.ecanukDetail-in {
    float: left;
    width: 100%;
}

.companyImage {
    text-align: center;
    height: 604px;
    overflow: hidden;
	display:table;
	width: 100%;
	padding-bottom: 100px;
}
.companyImage>div{
	display:table-cell;
	vertical-align: middle;
	height: 604px;
	width: 100%;
}
.companyImage>div img{
	max-height:604px;	
}
.breadcrumb span {
    color: #fff;
    font-size: 16px;
    font-family: 'Proxima Nova';
    font-weight: 400;
}
.breadcrumb span:hover{ color: #ff5663;}
/*======= contact page ========*/

.inner-ContactP{
	padding: 85px 0 50px;
}
.contactTitle{
	text-align:center;
}
.contactTitle h2{
	font-size:20px;
	color:#ff5764;
	font-family: 'Proxima Nova';
	text-transform:uppercase;
	margin:0 0 10px;
}
.contactTitle p{
	font-size:18px;
	color:#000000;
	line-height:24px;
}
.main-FormDiv .form-group{
	margin-bottom:14px;
}
.main-FormDiv .form-control{
	font-size:16px;
	color:#525252;
	font-family: 'Proxima Nova';
	height:40px;
	background:transparent;
	border-radius:5px;
	border:1px solid #ff5764;
}
.main-FormDiv textarea.form-control{
	height:180px !important;
}
.innerContact-form {
    padding-top: 13px;
}
.btn-submit{
	padding: 10px 30px;
    background: #ff5764;
    text-transform: uppercase;
    color: #fff;
   border: 1px solid #f12837;
	font-size: 16px;
    font-family: 'Raleway';
    font-weight: 600;
	border-radius: 0;
	-webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
	float: right;
    margin-top: 13px;
	cursor: pointer;
}
.btn-submit:hover {
    background: #fff;
    border-color: #ff5764;
    color: #ff5764;
}
.checkbox label {
    font-size: 16px;
	    line-height: 24px;

    margin: 0px;
}
input[type="checkbox"] {
    height: 25px;
    width: 25px;
    background: transparent;
    float: left;
	margin-right: 10px;
}
.checkbox {
    margin-top: 13px;
}
.or-title {
    margin-bottom: 20px;
    position: relative;
}
.or-title:after {
    content: "";
    background: #ff5764;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
}
.contactDetail-bottom span{
	font-size:36px;
	color:#ff5764;
	font-family: 'Proxima Nova';
	text-transform:uppercase;
	text-align:center;
	margin-bottom: 0;
    display: inline-block;
	    background: #fff;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
.contactDetail-bottom {
    text-align: center;
	padding: 20px 0;
}
.phone-nu{
	font-size:24px;
	color:#ff5764;
	text-transform:uppercase;
}
.phone-nu a{
	color:#263238;
	text-transform:capitalize;
}
.email{
	font-size:24px;
	color:#ff5764;
	text-transform:uppercase;
	margin-top: 13px;
}
.email a{
	color:#263238;
	text-transform:capitalize;
}
.email a:hover, .phone-nu a:hover{
	color:#ff5764;
}


.inner-blog-page{
	padding: 82px 0 40px;
}


.blog-in-item{
	background:#fff;
	padding:20px 0;
	margin-bottom:50px;
	box-shadow: 4px 0px 4px rgba(0, 0, 0, 0.1);
}
.blog-in-item .blog-title{
	padding-left:20px;
	margin-bottom: 25px;
	min-height: auto;
}
.blog-data .calender {
    background: url(../images/date-icon.png) no-repeat center left;
}
.blog-data .share {
    background: url(../images/share-icon.png) no-repeat center left;
}
.blog-in-item .blog-data{
	margin-bottom: 10px;
	padding-left:20px;
	padding-right: 20px;

}
.blog-in-item figure{
	overflow:hidden;
	width: 100%;
    float: left;
}
.blog-in-item figure img{
	width:100%;
	-webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.blog-in-item figure img:hover{
	-webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
}
.blog-in-item .blog-data > div{ margin-right: 45px; }
.blog-in-item .blog-data > div:last-child{margin:0;}
.blog-in-item .share.text-right {
    float: right;
}
.blog-in-item p {
    font-size: 16px;
	font-family: 'Proxima Nova';
	line-height: 22px;
}
.in-blog-content {
    padding-left: 20px;
	padding-right: 20px;
}
.blog-sidebar-item{
	padding-bottom:36px;
}
.blog-sidebar-item h3{
	font-size:20px;
	font-family: 'Proxima Nova';
	text-transform:uppercase;
	color:#1e1e1e;
	font-weight: 600;
	margin:0 0 10px;
}
.blog-sidebar-item> p{
	font-size:14px;
	color:#656565;
	line-height:21px;
	font-family: 'Proxima Nova';
	margin: 0 0 9px;
}
.inner-blog-page .col-sm-4 {
    padding-left: 60px;
}
img.text-right {
    float: right;
    margin-top: 4px;
}
.blog-sidebar-item ul{
	padding:0;
	margin:0;
}
.blog-sidebar-item ul li{
	list-style:none;
	line-height:32px;
	padding: 0 20px 0 10px;
}
.blog-sidebar-item ul li+li{
	border-top:1px dashed #dbdbdb;
}
.blog-sidebar-item ul li a{
	font-size:15px;
	color:#000000;
	font-family: 'Proxima Nova';
	font-weight: 600;
	text-transform: uppercase;
}
.blog-sidebar-item ul li a span{
	text-align: right;
    float: right;
}
.blog-sidebar-item ul li a:hover{
	color:#ff5764;
}
.blog-sidebar-item h4{
	font-size:20px;
	color:#14233c;
	line-height:22px;
	font-family: 'Proxima Nova';
	font-weight: 600;
	margin: 8px 0 15px;
    padding-right: 100px;
    display: inline-block;
}
.blog-sidebar-item figure{
	border:3px solid #e9e9e9;
	    margin-bottom: 10px;
}
.side-feat-blog> p{
	font-size:16px;
	color:#212121;
	line-height:20px;
}
.btnin-side {
    font-size: 16px;
    font-family: 'Proxima Nova';
    color: #000;
}
.btnin-side a {
    color: #ff5764;
	float: right;
}
.recent-postIn ul{
	padding: 6px 0 0;
	margin:0;
}
.recent-postIn ul li{
	list-style:none;
	position:relative;
	line-height: 21px;
	padding-left: 16px;
	padding-top: 8px;
    padding-bottom: 15px;
}
.recent-postIn ul li+li{
	border-top:1px dashed #dbdbdb;
}
.recent-postIn ul li:before {
    content: '';
    background: url(../images/list-icon.png);
    position: absolute;
    left: 0px;
    width: 9px;
    height: 9px;
	top: 14px;
}
.recent-postIn ul li a{
	font-size:14px;
	color:#656565;
	line-height:21px;
	font-family: 'Proxima Nova';
}
.recent-postIn ul li span{
	color:#bababa;
	display:block;
}
.padignation-bottom {
    text-align: center;
	margin: 10px auto 0;
}
.pagination {
    display: inline-flex;
}
.page-link {
    border: none;
    font-size: 20px;
    color: #222222;
   font-family: 'Proxima Nova';
    border-radius: 0;
    padding-bottom: 0;
}
.page-link:hover {
    z-index: 2;
    color: #ff5764;
    text-decoration: none;
    background-color:transparent;
    border-color:none;
}
.in-blog-content h4{
	font-size:20px;
	color:#4b4a4a;
	margin: 0 0 2px;
	line-height:22px;
	font-family: 'Proxima Nova';
	font-weight: 600;
}
.binner-cont p{
	margin-bottom: 20px;
}
.blog-ulDesign ul{
	padding:0;
	margin: 0 0 20px;
}
.blog-ulDesign ul li{
	list-style:none;
	font-size:20px;
	line-height:29px;
	color:#4b4a4a;
	font-family: 'Proxima Nova';
	position:relative;
	padding-left: 26px;
}
.blog-ulDesign ul li:before{
	 content: '';
    background: url(../images/list-icon.png);
    position: absolute;
    left: 0px;
    width: 9px;
    height: 9px;
	top: 9px;
}
.innerClient-review {
	padding: 70px 0 18px;
    float: left;
    width: 100%;
}
.topin-detl {
    margin-bottom: 13px;
}
.inabout-mayard p {
    font-size: 16px;
    color: #515151;
    font-family: 'Proxima Nova';
    line-height: 20px;
}
.topin-detl {
    margin-bottom: 13px;
}
.topin-detl span {
    font-size: 16px;
    color: #515151;
   font-family: 'Proxima Nova';
   line-height: 44px;
}
.topin-detl span big {
    font-size: 18px;
    color: #14233c;
    text-transform: uppercase;
    font-family: 'Proxima Nova';
    padding-left: 36px;
}
.topin-detl img {
    float: left;
    margin-right: 20px;
}
h3.comment-reply-title {
    font-size: 20px;
    color: #515151;
   font-family: 'Proxima Nova';
}
.comment-notes {
    color: #515151;
    font-size: 14px;
    font-family: 'Proxima Nova';
    margin-bottom: 24px;
}
.comment-form .form-group {
    margin-bottom: 20px;
}
.comment-form label {
    font-size: 14px;
    color: #515151;
   font-family: 'Proxima Nova';
}
.comment-form .form-control {
    border: 1px solid #cecece;
    background: #fff;
    border-radius: 5px;
    box-shadow: none;
    height: 40px;
    padding: 5px 15px;
	font-family: 'Proxima Nova';
}
.comment-form .btn-default{
	padding: 10px 30px;
    background: #ff5764;
    text-transform: uppercase;
    color: #fff;
    border-color: #f12837;
	margin-top:10px;
	float: right;
}
.comment-form .btn-default:hover {
    background: #fff;
    border-color: #ff5764;
    color: #ff5764;
}
.comment-form .form-group img {
    margin-top: 10px;
}
.comment-form textarea.form-control {
    height: 92px;
    resize: none;
}
.blogDtl-in{
	    padding-bottom: 70px;
}
.inner-blog-page .col-sm-8 {
    padding-right: 30px;
}
.blog-sidebar-item h3 img {

    float: right;
    margin-top: 4px;
}
.post-template-default.single .in-banner-content h1{line-height: 75px;}

.in-blog-content ul{
	padding: 0 23px 0;
    margin: 0 0 20px;
}
.in-blog-content ul li {
    list-style: none;
	font-size: 16px;
    line-height: 22px;
    color: #4b4a4a;
    font-family: 'Proxima Nova';
    position: relative;
    padding-left: 16px;
	margin-bottom: 10px;
}
.in-blog-content ol li {
	font-size: 16px;
    line-height: 22px;
    color: #4b4a4a;
    font-family: 'Proxima Nova';
	margin-bottom: 10px;
}
.in-blog-content ul li:before {
    content: '';
    background: url(../images/list-icon.png);
    position: absolute;
    left: 0px;
    width: 9px;
    height: 9px;
    top: 9px;
}
.in-blog-content h1{
	font-size: 30px;
    color: #4b4a4a;
    margin: 0 0 2px;
    line-height: 22px;
    font-family: 'Proxima Nova';
    font-weight: 600;
}
.in-blog-content h2{
	font-size: 26px;
    color: #4b4a4a;
    margin: 0 0 2px;
    line-height: 22px;
    font-family: 'Proxima Nova';
    font-weight: 600;
}
.in-blog-content h3{
	font-size: 24px;
    color: #4b4a4a;
    margin: 0 0 2px;
    line-height: 22px;
    font-family: 'Proxima Nova';
    font-weight: 600;
}
.in-blog-content h5{
	font-size: 18px;
    color: #4b4a4a;
    margin: 0 0 2px;
    line-height: 22px;
    font-family: 'Proxima Nova';
    font-weight: 600;
}
.in-blog-content h6{
	font-size: 18px;
    color: #4b4a4a;
    margin: 0 0 2px;
    line-height: 22px;
    font-family: 'Proxima Nova';
    font-weight: 600;
}
.ecanukDetail-in .midImg {
    margin-bottom: 40px;
}
.footer-contact-form p {
    text-align: left;
}
.ecanMainDiv .row{
	align-items: center;
}
.mtext{display:none}