
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
font-family: Montserrat;
src: url(fonts/Montserrat-Light.otf);
}
body {
  font-family: "Montserrat", sans-serif;
  color: #263f56;
}

a {
  color: #0062cc;
}

a:hover {
 color: #0062cc;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f05146;
  border-top-color: #ffb3b3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #f05146a6;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #f05146;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
}

#header.header-scrolled {
	background: rgb(32,61,87);
	background: linear-gradient(0deg, rgba(32,61,87,1) 0%, rgba(60,82,102,1) 0%);
	height: 60px;
}


#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    height: 64px;
  }
  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color:#fff;
  padding: 10px 0 10px 25px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}


.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 25px;
  background-color: #fcc033;
  visibility: hidden;
  width: 0px;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 25px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fcc033;
  text-decoration: none;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 25px;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  border-radius: 5px;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #263f56;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #fcc033;
}

.nav-menu .drop-down > a:after {
 /* content: "\ea99";
  font-family: IcoFont;*/
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}


/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  /*bottom: 15px;*/
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #263f56;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #fcc033;
  text-decoration: none;
  font-weight:bold;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: #00000085;
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}
/*--------------------------------------------------------------
# Global styles
--------------------------------------------------------------*/
h2{
	color:#f05146;
	margin-bottom:20px;
	font-size:1.6rem;
}

h4 {
	margin-bottom: 20px;
    line-height: 30px;
    font-size: 1.1rem;
}


/*--------------------------------------------------------------
# introduction Section
--------------------------------------------------------------*/
#introduction {
  width: 100%;
  position: relative;
  padding: 150px 0 120px 0;
  /*min-height:100vh;*/
}


#introduction:before {
  content: "";
  background: rgb(32,61,87);
  background: linear-gradient(0deg, rgba(32,61,87,1) 0%, rgba(60,82,102,1) 0%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.impressionDiv h1 {
	color: #fff;
    font-size: 48px;
   
}
@media (max-width: 1200px) {
  #introduction img {
    width: 90%;
  }
}
.impression{
	background: #677888;
    border-radius: 30px;
    padding: 0px 20px 0px 20px;
}
.impressionDiv {
	padding-left:100px;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  padding: 80px 0 0px 0;
}
.aboutUsInfo{
	margin-top:50px;
}

.about img {
	display:block;
	margin: auto;
}

/*.about .aboutHeading{
	color:#f05146;
	margin-bottom:20px;
	font-size:32px
}
.about .aboutSubInfo{
	margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
}*/
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #fff;
  padding: 0px 0 40px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box img{
  transform: scale(0.8);
}

.counts .count-box span {
  display: block;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: .8rem;
}
/*---------------------------------------------------------------
#Services
-----------------------------------------------------------------*/
.services{
	padding: 100px 0;
	background-color:#f2f6fa  ;
}

/*.serviceHeading h2 {
	font-size:32px;
	line-height:36px;
	color:#f05146;
}
.serviceHeading h5 {
	font-size:20px;
	line-height:24px;
}*/


/*---------------------------------
Service desktop tab
----------------------------------*/
.serviceHeading{
	padding-bottom:30px;
}
.serviceContent{
	padding-top:50px;
}
.serviceContent .headingGap{
	margin-bottom:20px;
}
.serviceTab  {
	
    border: 5px solid white;
    border-radius: 25px;
}
.serviceTab  li a{
	background-color:#d3d8dd;
}

.nav-tabs .nav-link.active {
	color:#263f56 !important;
	background-color: #fcc033;
}

.nav-tabs .nav-link:hover {
  color:#263f56 !important;
}
.nav-tabs .nav-link{
	border:0px !important;
}
.serviceTab li:first-child a{
	border-radius:18px 0px 0px 20px;
}
.serviceTab li:last-child a{
	border-radius:0px 18px 18px 0px;
}

.serviceTab  li a{
	color:#263f56 ;
	border-radius:0px;
	text-align:center;
	font-size:15px;
}
.serviceTab  li:first-child {
	width :25%;
}
.serviceTab  li:nth-child(2) {
	width :25%;
}
.serviceTab  li:nth-child(3) {
	width :35%;
}
.serviceTab  li:last-child {
	width :15%;
}

.serviceTab li {
	
    border-right: 10px solid white;
}
.serviceTab li:last-child {
	
	border-right:0px ;
    
}

/*----------------------------------------------------------
#Showcase
------------------------------------------------------------*/
.showcase {
	background: #f2f6fa;
	 padding: 140px 0px 60px 0px;
}


.showcase .loadmore {
	background:#fcc033;
	color:#263f56;
	border-radius:10px;
	padding: 5px 20px 5px 20px;
}
.showcaseButton{
	text-align:center;
}
.showcaseFilters {
	margin-bottom:20px;
}
.showcaseFilters select {
	 color:#263f56;
	 font-size:0.9rem;
}
.verticals,.channels{
	display:inline-block;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}


.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #212529;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #eb5d1e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
	box-shadow: 0 1px 2px #5d5b5b;
	background-color: white;
	width: 350px;
    height: 230px;
	margin: 0 auto;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(48, 64, 79, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 32px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #f05146;
  margin: 0 4px;
  font-size: 18px;
  line-height: 1;
  background-color: #fff;
  padding-top: 6px;
  padding-right: 1px;
  border-radius: 50px;
  text-align: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  line-height: 1;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #f05146;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 16px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}
/* Showcase light box */
.showcaseHeaderRow {
	 padding: 15px 0px 5px 0px;
}
.headerTile {
	 font-size:1.2rem;
	 color:#f05146;
}
.headerClose {
	color:#f05146;
	
}
.close {
   opacity:1 !important;
}
.showcaseBodyRow{
	padding:8px 0px 15px 0px;
}
.showcaseBtn{
	background-color: #fcc033;
    color: #263f56 !important;
    font-size: 1.1rem;
}
/*Showcase light box */



/*---------------------------------------------------------------
Contact us form
-----------------------------------------------------------------*/
#contactUs h2 {
	color: #fff;
}

#contactUs h4 {
	/*color: #fff;*/
}

.contactUsForm .title{
	font-size:32px;
	margin-bottom:20px;
	margin-left:-15px;
	color:#fff;
}
.contactUsForm{
	 padding:80px  0px;
	background-image: url("images/contactBg.png");
	background-size:cover;
	background-position: center bottom; 
	background-repeat: no-repeat; 
    height:100vh;
    background-attachment: fixed;
	
}
@media (max-width: 1024px) {
  .contactUsForm {
	
    height:auto;
  }
}

.contactUsArea{
	background-color:rgba(255, 255, 255, 0.7);
	padding:20px 30px 0px 30px;
}
.contactForm{
	background-color:rgba(90, 173, 248, 0.2);
	//padding:30px !important;
	padding:20px 30px 0px 30px;

}
.contactForm h4 {
	color:#fff;
}

.contactForm form {
	padding-top: 20px;
	padding-bottom: 20px;
}


.contactUsArea .contactHeading{
	font-size:20px;
	
}
.contactForm .btn{
	/* border:1px solid #263f56;*/
	 color:#263f56;
	 background-color:#fcc033;
	 width: 250px;
     padding: 12px;

}
.sendArrow{
	width:25px;
}
.contactForm .form-control{
	background-color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #263f56;
	font-size: .8rem;
}


.contactForm ::-webkit-input-placeholder { /* Edge */
 color: #263f56 !important;
}

.contactForm :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #263f56 !important;
}

.contactForm ::placeholder {
  color: #263f56 !important;
}
.contactInfobox{
	padding: 10px;
    /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);*/
    transition: all ease-in-out 0.3s;
	background-color:#fff;
	margin-top: 20px;
	
}
.contactInfobox i {
	font-size: 14px;
   
    color: #263f56;
	margin-right:5px;
}
.contactInfobox p {
padding: 0 0 0 20px;
    margin-bottom: 0;
    font-size: 12px;
    text-align: left;
}
.contactInfobox h6, .contactInfobox p{
	font-size:.9rem;
	line-height: 1.2rem;
}
.contactQueryHeading{
	color:#fff;
	margin-bottom:20px;
}
/*------------------------------------------------------------
#Blog
-------------------------------------------------------------*/
.blog{
	padding:120px 0px 120px 0px;
}
.blog .blogMainHeading {
	font-size:32px;
	line-height:36px;
	color:#f05146;
}
.blogHead{
	 font-size:26px;
	 line-height:34px;
	 margin-bottom:20px;
}
.blogInfo{
	font-size:24px;
	line-height:30px;
}
.square{
	width:90%;
	height:263px;
	background-color:#b8e0d1;
	margin-bottom:20px;
}
.blogName{
	color:#48ae8a;
	font-weight:bold;
}
.blogBtn{
	background-color: #fcc033;
    color: #263f56;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 10px;
}
.blog .loadmore {
   background:#fcc033;
	color:#263f56;
	border-radius:10px;
	padding: 5px 20px 5px 20px;
	font-size:16px;
}
.blog .searchIcon img {
	width:30px;
}
.has-search .form-control {
    padding-left: 3.375rem;
}

.has-search .searchIcon {
    position: absolute;
    z-index: 2;
    display: block;
    width: 4rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}
.form-control{
	//padding:5px;
	//border:1px solid #000;
}
.blogIcon{
	width:75px;
	height:75px;
	background-color: #b8e0d1;
	display:inline-block;
	margin-right:10px;
}
.blogText{
	display:inline-block;
	
}
.popular{
	 text-align:center;
	// font-weight:bold;
}
.blogArrow,.blogShare{
	width:25px;
}
/*------------------------------------------------------------
Footer
-------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background-color:#000;

}
.footer-top{
    padding: 30px 0 30px 0;
	background-image: url("images/footer/footerBg.png");
	background-size:cover;
	background-position:center center;
	background-repeat: no-repeat; 
}
.submitFooterDiv{
	 width:35%;
	 margin:0 auto;
}
.footerEscapeLogo{
	padding-bottom:15px;
}
.footerAdress{
	font-size:12px;
	float:left;
}
.footerCopy{
	font-size:12px;
	float:right;
}
.footerCopyAdress{
	padding:20px 0px 20px 0px;
	
}
#footer .footer-info{
	text-align:center;
}
#footer .footer-info h4 {
	margin-bottom:5px;
}
	
#footer h6{
	font-size: .8rem;
	margin-bottom: 10px;
}

#footer .footerMB{
	font-size: .78rem;
    color: #adb5bd;
	    margin-top: 10px;
}
#footer .footerIcons img{
	display:inline-block;
	margin-right:10px;
	
}

#footer form{
	margin: 20px 0px 20px 0px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    text-align: left;
	width:100%;
	border-radius:50px;
}
#footer form input[type="email"] {
    border: 0;
    padding: 4px 4px;
    width: calc(100% - 95px);
}
#footer form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 14px;
    padding: 0 20px;
    background: #fcc033;
    color: #263f56;
    transition: 0.3s;
    border-radius: 50px;
    
	
}
#footer form ::-webkit-input-placeholder { /* Edge */
  color: #263f56 !important;
}

#footer form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #263f56 !important;
}

#footer form ::placeholder {
  color: #263f56 !important;
}

/*------------------------------------------------------------
 common
 ------------------------------------------------------------*/
.padding{
	 padding-bottom:30px;
}
.noMargin{
	margin:0px !important;
}
.noPadding{
	padding:0px !important;
}
.notMobile{
	display:none;
}






/*------------------------------------------------------------
					START OF 992PX MEDIA QUARY
-------------------------------------------------------------*/
@media (max-width:992px){
	 #introduction {
		padding-top: 80px;
	}
	
	#introduction {
	  width: 100%;
	  position: relative;
	  padding: 120px 0 50px 0;
	}
	#introduction .digital {
		width: 260px;
		margin-top: -26px;
}
	#introduction form{
		width:100%;
	}
	#introduction .subline {
		line-height: 33px;
		font-size: 20px;
		margin-bottom: 20px;
	}
	#introduction h2 {
		font-size: 28px;
		line-height: 32px;
		margin-bottom: 18px;
	}
	#introduction img{
		width:80%
	}
	
	h2 {
		font-size:1.2rem;
	}
	
	h4 {
		font-size:1rem;
	}
	
	h4 {
		font-size:.9rem;
	}
	
	p {
		font-size:.9rem;
	}
	
	.about {
	  padding: 50px 0 0px 0;
	}
	.aboutImg {
		text-align:center;
	}
	
	.about img{
		width:70%;
	}
	
	.aboutUsInfo {
		margin-top: 0px; 
	}
	
	.counts .count-box span {
		font-size: .9rem;
	}
	.counts .count-box p {
		font-size: .7rem;
	}
	/*--------------------------------------
	    Contact Us Form
	---------------------------------------*/
	.contactUsForm{
	
		height:auto;
	
	}
	.contactUsForm {
		padding:40px 0px;
	}
	.contactForm form input[type="email"],
	.contactForm form input[type="text"] ,
	.contactForm form textarea,
	.contactForm form .submit {
	   font-size:14px;
	}
	
	
	/*------------------------
	  Services
	-------------------------*/
	.services{
		padding: 30px 0;
	}
	/*.serviceHeading h2 {
		font-size: 28px;
		line-height: 36px;
	}
	.serviceHeading h5 {
		font-size: 18px;
		line-height: 24px;
	}*/
	.sericeContainerPadding{
		padding:20px ;
	}
	.servicesBox a {
		font-size: 14px;
	}
	.servicesBox p{
		margin:0px ;
		font-size:12px;
	}
	/*-------------------------
	Services
	--------------------------*/
	/*------------------------
	Service Tab For Desktop
	-------------------------*/
	
	.serviceTab li:first-child a{
		border-radius:18px 0px 0px 20px;
	}
	.serviceTab li:last-child a{
		border-radius:0px 18px 18px 0px;
	}

	.serviceTab  li a{
		font-size:.715rem;
	}
	.serviceTab  li:first-child {
		width :30%;
	}
	.serviceTab  li:nth-child(2) {
		width :20%;
	}
	.serviceTab  li:nth-child(3) {
		width :35%;
	}
	.serviceTab  li:last-child {
		width :15%;
	}
	/*------------------------
	Service Tab For Desktop
	-------------------------*/

	
	/*----------------------------------
				Showcase
	-------------------------------------*/
	.showcaseButton {
		 text-align: center;
		 margin-bottom:0px !important;
	}
	.showcase {
		padding: 120px 0px 60px 0px;
	}
	
	.showcase .loadmore {
		font-size: 18px;
	}

	/*----------------------------------
				Showcase
	-------------------------------------*/
	
	.blog .loadmore {
		margin-bottom:20px;
		font-size:14px;
	}
	.blog .searchIcon img {
		width:25px;
	}
	.blogBtn{
		font-size:14px;
	}
	.blogArrow,
	.blogShare {
		width:25px;
	}

	.blog{
		padding:100px 0px 30px 0px;
	}
	.blog .blogMainHeading {
		font-size: 28px;
		line-height: 36px;
	}
	.blogHead {
		font-size: 24px;
		line-height: 34px;
	}
	.blogInfo{
		margin-bottom:20px;
		font-size: 20px;
		font-weight: bold;
		line-height: 26px;

	}
	
	.has-search .form-control {
		padding-left: 3.375rem;
	}
	.square{
		width:100%;
		height:300px;
		margin-bottom:20px;
		margin-right:10px;
	}
	/*------------------------------
	    Footer
	-------------------------------*/
		#footer .footer-info{

			text-align:center;
		}
		#footer .footerIcons img {
			margin-bottom: 50px;
			margin-top:20px;
		}
	
		#footer form{
			padding: 3px 5px;
			width:100%;
			margin:0 auto;
		}
		
		/*#footer .footer-info h4{
			font-size:18px;
			line-height:24px;
		}
		#footer .footer-info h6{
			font-size:14px;
			line-height:20px;
		}
		#footer .footerMB{
			margin-bottom:15px;
		}*/

		#footer form input[type="email"],
		#footer form input[type="submit"] {
			font-size:14px;
		}
	    .submitFooterDiv {
			width: 50%;
			margin: 0 auto;
		}
		/*------------------------------
				Footer
		-------------------------------*/

.impressionDiv {
    padding-left: 0px;
    margin: 0 auto;
   
}


/*------------------------------------------------------------
Counts
-------------------------------------------------------------*/
.counts .count-box {
    padding: 0px 30px 0px 30px;
  
}
.mobilePadding{
		padding-bottom:30px;
	}
 
  
} 
/*------------------------------------------------------------
					END OF 992PX MEDIA QUARY
-------------------------------------------------------------*/

/*------------------------------------------------------------
					START  OF 768PX MEDIA QUERY
-------------------------------------------------------------*/


@media (max-width: 768px){
	
	#introduction .digital {
		width: 260px;
		margin-top: -26px;
}
	#introduction form{
		width:100%;
	}
	#introduction .subline {
		line-height: 33px;
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	#introduction img{
		width:90%;
		height:auto;
	}
	.impressionDiv h1 {
    color: #fff;
    font-size: 42px;
}
	.about {
	  padding: 50px 0 0px 0;
	}
	.aboutImg {
		text-align:center;
	}
	.aboutImg img{
		width:50%;
		margin-top: 50px;
	}
	.aboutUsInfo {
    margin-top: 50px;
	}
	
	
	
	
	/*--------------------------------
	   ContactUs Form
	---------------------------------*/
	.contactUsForm {
		padding:40px 0px;
	}
	.contactForm form input[type="email"],
	.contactForm form input[type="text"] ,
	.contactForm form textarea,
	.contactForm form .submit {
	   font-size:14px;
	}
	
	.contactUsForm{
		height:auto;
	}
	.disablemobilecontact{
		display:none;
	}
	.contactMail{
		margin-bottom:5px;
	}
	
	/*------------------------------
	         Services
	-------------------------------*/
	.services{
		padding: 30px 0;
	}
	/*.serviceHeading h2 {
		font-size: 28px;
		line-height: 36px;
	}
	.serviceHeading h5 {
		font-size: 18px;
		line-height: 24px;
	}*/
	.tabMenuNotInMobile {
		display: none;
	}
	.mobile{
		display:block !important;
	}
	/*---Services lightbox ---*/
	
	#creativeServices .modal-header ,
	#campaignManagement .modal-header ,
	#creativeServices .modal-header ,
	#dynamicCreativeOptimization .modal-header ,
	#analytics .modal-header {
		border-bottom:none !important;
	}
	#creativeServices .modal-body ,
	#campaignManagement .modal-body ,
	#creativeServices .modal-body ,
	#dynamicCreativeOptimization .modal-body ,
	#analytics .modal-body {
		text-align:center;
		padding:0 1rem 1rem 1rem;
	}
	#creativeServices .modal-body p,
	#campaignManagement .modal-body p ,
	#creativeServices .modal-body ul li,
	#dynamicCreativeOptimization .modal-body p,
	#analytics .modal-body p {
	 
		font-size:14px;
	}
	.modalCreativeMT {
		margin-top:-10px;
	}
	.modalCampainMT{
		margin-top:30px;
	}
	.moadlDCOMT{
		margin-top:-30px;
	}
	.modalAnaltyicsMT{
		margin-top:-60px;
	}
	.modalCreativeMT  h6,
	.modalCampainMT h6,
	.moadlDCOMT h6,
	.modalAnaltyicsMT h6{
		font-size:18px;
	}
	.counts1 .count-box1 {
		padding: 15px;
		width: 100%;
		position: relative;
		text-align: center;
		background: #fff;
		box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
		height:100%;
	}
	
	.counts1 h5 {
		font-size:.9rem;
	}
	
	/*---Services lightbox ---*/
	
	/*------------------------------
	         Services
	-------------------------------*/
	
	
	/*---------------------------
			showcase
	-----------------------------*/
	
	.showcaseButton {
		 text-align: center;
		 margin-bottom:0px !important;
	}
	.showcase {
		padding: 120px 0px 60px 0px;
	}
	
	.showcase .loadmore {
		font-size: 18px;
	}
	/*---------------------------
			showcase
	-----------------------------*/
	
	.blog .loadmore {
		margin-bottom:20px;
		font-size:14px;
	}
	.blog .searchIcon img {
		width:25px;
	}
	.blogBtn{
		font-size:14px;
	}
	.blogArrow,
	.blogShare {
		width:25px;
	}

	.blog{
		padding:100px 0px 30px 0px;
	}
	 .blog .blogMainHeading {
		font-size: 28px;
		line-height: 36px;
}
	.blogHead {
		font-size: 22px;
		line-height: 28px;
	}
	.blogInfo{
		margin-bottom:20px;
		font-size: 20px;
		font-weight: bold;
		line-height: 26px;

	}
	
	.has-search .form-control {
		padding-left: 3.375rem;
	}
	.square{
		width:100%;
		height:300px;
		margin-bottom:20px;
		margin-right:10px;
	}
	/*--------------------------
	     Footer
	----------------------------*/
		#footer .footer-info{
		text-align:center;
		}
		#footer .footerIcons img {
			margin-bottom: 20px;
			margin-top:20px;
			
		}
	
		#footer form{
			padding: 3px 5px;
			width:60%;
			margin:0 auto;
		}
	
	/*#footer .footer-info h4{
		font-size:18px;
		line-height:24px;
	}
	#footer .footer-info h6{
		font-size:14px;
		line-height:20px;
	}*/

	#footer form input[type="email"],
	#footer form input[type="submit"] {
		font-size:14px;
	}
	.submitFooterDiv {
		width: 100%;
		margin: 0 auto;
	}
	.footerAdress {
		text-align:center !important;
		font-size:12px;
		float:none;
	}
	.footerCopy  {
		text-align:center !important;
		font-size:12px;
		float:none;
		padding-top:20px;
	}

/*--------------------------
	     Footer
	----------------------------*/


#introduction {
  width: 100%;
  position: relative;
  padding: 96px 0 80px 0;
  

  
}
#introduction h2 {
		font-size: 28px;
		line-height: 32px;
		width:60%;
}

.impressionDiv {
	padding-left:0px;
	margin:0 auto;
	padding-bottom:40px;
}




.mobileViewNone{
	display:none ;
}

/*---------------------
		# Counts
-----------------------*/
.counts {
  padding: 0px 0 30px;
}

.counts .count-box {
  padding: 0px 30px 20px 30px;
 
}
/*---------------------
		# Counts
-----------------------*/





.mobilePadding{
		padding-bottom:30px;
	}


}
/*------------------------------------------------------------
					END  OF 768PX MEDIA QUERY
-------------------------------------------------------------*/
/*------------------------------------------------------------
					START  OF 576PX MEDIA QUERY
-------------------------------------------------------------*/
@media (max-width:576px){
	
	#introduction .digital {
		width: 160px;
		margin-top: -15px;
	}
	#introduction img{
		width:100%;
		height:auto;
		padding-top:30px;
		
	}
	#introduction form{
		width:100%;
	}
	#introduction .subline {
		line-height: 28px;
		font-size: 16px;
		margin-bottom: 20px;
	}
	
	 #introduction .introduction-img img {
		width: 100%;
    }
	.about {
	  padding: 50px 0 0px 0;
	}
	.about .aboutHeading {
		font-size: 28px;
	}
	.about .aboutSubInfo {
		margin-bottom: 20px;
		font-size: 18px;
		line-height: 30px;
	}
	.aboutImg {
		text-align: center;
    /* margin-left: 30px; */
    //width: 70%;
    margin: 0 auto;
	}
	.aboutImg img{
		width:70%;
	}
	.aboutUsInfo {
		margin-top: 40px;
	}
	.about .learnmore {
		font-size: 15px;
	}
	/*------------------------------------
	    Contact Us Form
	-------------------------------------*/
	.contactUsForm {
		padding:40px 0px;
	}
	.contactUsForm{
		height:auto;
	
	}
	.contactMail{
		margin-bottom:5px;
	}
	/*--------------------------
	     Services
	---------------------------*/
	.services{
		padding: 25px 0;
	}
	/*.serviceHeading h2 {
		font-size: 26px;
		line-height: 34px;
	}
	.serviceHeading h5 {
		font-size: 18px;
		line-height: 24px;
	}*/
	.mobileViewNone{
		display:none ;
	}
	.serviceImage{
		width:40%;
	}
	.tabMenuNotInMobile{
		display:none;
	}
	
	
	
	/*------------ Service light box --------*/
	
#creativeServices .modal-header ,
#campaignManagement .modal-header ,
#creativeServices .modal-header ,
#dynamicCreativeOptimization .modal-header ,
#analytics .modal-header {
	border-bottom:none !important;
}



#creativeServices .modal-body ,
#campaignManagement .modal-body ,
#creativeServices .modal-body ,
#dynamicCreativeOptimization .modal-body ,
#analytics .modal-body {
	text-align:center;
	padding:0 1rem 1rem 1rem;
}
#creativeServices .modal-body p,
#campaignManagement .modal-body p ,
#creativeServices .modal-body ul li,
#dynamicCreativeOptimization .modal-body p,
#analytics .modal-body p {
 
	font-size:12px;
}

	#creativeServices .modal-dialog ,
#campaignManagement .modal-dialog ,
#creativeServices .modal-dialog ,
#dynamicCreativeOptimization .modal-dialog ,
#analytics .modal-dialog {
    
    margin: 2rem;
    
}
.modalCreativeMT {
	margin-top:10px;
}
.modalCampainMT{
	margin-top:20px;
}
.moadlDCOMT{
	margin-top:-10px;
}
.modalAnaltyicsMT{
	margin-top:-20px;
}
.mobile{
	display:block !important;
}

.counts1 .count-box1 {
    padding: 15px;
    text-align: center;
    background: #fff;
     box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}


/*.counts1 img {
	width:60%;
}*/

.counts1 h5 {
	font-size: .6rem;
	padding-top:0px;
}

.serviceHeading{
	padding:0px;
}
	/*--------------------------
	     Services
	---------------------------*/
	/*.contactUsArea{
		padding: 30px;
	}*/
	.contactUsForm .title {
		font-size: 26px;
		margin-left:15px;
		
	}
	
	.contactUsArea .contactHeading{
		font-size:15px;
		font-weight:bold;
		line-height:20px;
	}
	.contactForm form input[type="email"],
	.contactForm form input[type="text"] ,
	.contactForm form textarea,
	.contactForm form .submit {
	   font-size:12px;
	}
	.disablemobilecontact{
		display:none;
	}


	/*-----------------------------------
	             Showcase
	-----------------------------------*/

	.showcase {
		padding: 100px 0px 60px 0px;
	}

	.showcase .loadmore {
		font-size: 15px;
	}
	.showcaseButton {
		 text-align: center;
		 margin-bottom:0px !important;
	}
	.showcaseFilters select {
		width:108px;
		font-size:0.8rem;
	}
	.showcaseFilters span{
		font-size:0.8rem;
	}
	/*------------------------
	    showcase
	-------------------------*/
	.blog .loadmore {
		margin-bottom:20px;
		font-size:12px;
	}
	.blog{
		padding:100px 0px 30px 0px;
	}
	.blogHead {
		font-size: 20px;
  
		line-height: 36px;
		margin-bottom: 15px;
	}
	.blog .blogMainHeading {
		font-size: 26px;
		line-height: 34px;
}
	.blogInfo{
		margin-bottom:20px;
		font-size:20px;
		font-weight:bold;
		line-height:26px;
	
	}
	.blogArrow,
	.blogShare {
		width:20px;
	}
	.blogBtn{
		font-size:12px;
	}
	.blog .has-search input[type="text"]{
		font-size:14px;
	}
	.has-search .searchIcon {
   
		width: 3rem;
		height: 3.375rem;
		line-height: 1.705rem;
		text-align: center;
		pointer-events: none;
	  
	}

	.popular{
		 text-align:center;
		 font-weight:bold;
		 font-size:18px;
	}
	.square{
		width:100%;
		height:300px;
		margin-bottom:20px;
	}
	/*--------------------------------
	    Footer
	---------------------------------*/
	#footer .footer-info{
		text-align:center;
	}
	#footer .footerIcons img {
		margin-bottom: 20px
	}
	
	#footer form{
		padding: 3px 5px;
		width:100%;
	}
	#footer form input[type="email"],
	#footer form input[type="submit"] {
		font-size:12px;
	}
	
	/*#footer .footer-info h4 {
		font-size:16px;
		line-height:22px;
	}
	#footer .footer-info h6{
		font-size:12px;
		line-height:18px;
	}*/
	.submitFooterDiv {
		width: 80%;
		margin: 0 auto;
	}
	.footerAdress {
		text-align:center !important;
		font-size:12px;
		float:none;
	}
	.footerCopy  {
		text-align:center !important;
		font-size:12px;
		float:none;
		padding-top:20px;
	}
	/*--------------------------------
	    Footer
	---------------------------------*/
	
		

	#introduction {
	  width: 100%;
	  position: relative;
	  padding: 50px 0px 50px 0px;
	}
	#introduction h2 {
		font-size: 23px;
		line-height: 30px;
		width:80%
	   
	}
		
	.impressionDiv {
		padding-left:0px;
		margin:0 auto;
		/*padding-top:30px;*/
	}
	.impressionDiv h1{
		
		font-size:38px;
	}




	/*---------------------
			# Counts
	-----------------------*/
	#AboutIconSec
	{
		width: 50%;
	   
	}
	.counts {
	  padding: 0px 0 40px;
	}
	.counts .count-box img {
		transform: scale(0.7);
	}
	.counts .count-box {
	  padding: 0px;
	}
	.count-box img {
		margin-top:-10px;
	}
	.counts .count-box span {
		margin-top:-10px !important;
		font-size: 18px;
	}
	/*---------------------
			# Counts
	-----------------------*/

	.mobilePadding{
		padding-bottom:30px;
	}


}

/*------------------------------------------------------------
					END  OF 576PX MEDIA QUERY
-------------------------------------------------------------*/

	










