@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');
/* google font */
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Great+Vibes&family=Libre+Baskerville:ital@0;1&family=Poltawski+Nowy&display=swap');
* {
	margin:0;
	padding:0;
	box-sizing:border-box;
}
body {
    background-color:white;
}
/* Add a black background color to the top navigation */
.topnav {
  background-color:#67c4c3;
  overflow: hidden;

}
.home {
        margin-top: 30px;
    margin-left: 40px;
}

/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
 
}
nav{
	    height: 100px;
 position:absolute;
  top: 0;
  left: 0;
  width: 100%;
        box-shadow: 8px 2px 8px white;
  height: 80px;
  background: transparent;
 
  z-index: 99;
}
.logo {
	padding-top:10px;
}
nav .navbar{
  height: 100%;
  
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  background:#3586ff;
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }
nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background:  #068cca;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #068cca;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #068cca;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #068cca;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 250px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }
  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:   #3586ff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}
/*

.topnav a {

  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
}



.topnav a:hover {
    background-color:black;
    color:white;
}



.topnav .icon {
  display: none;
}
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
*/
@media screen and (max-width:769px) and (min-width: 468px)  {

}
/* Style the video: 100% width and height to cover the entire window */

#myVideo {
	width:100%;
}
.video {
	position:relative;
    display:flex;
}

.main_heading {
	position:absolute;
	display: flex;
       height: -webkit-fill-available; 
    justify-content: center;
    align-content: center;
    flex-wrap:wrap;
	animation:backInDown; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */

}
.welcome_subheading {
	font-size: 40px;
  color: #3586ff;
  text-shadow: 2px 1px #00fffdb3;
  background-color: #f0f8ff;
  font-family: auto;
  font-weight: 700;
  font-style: italic;
  
}

.welcome {
  color: #3586ff;
  text-shadow: 2px 4px #00fffdb3;
  background-color: #f0f8ff;
  font-family: auto;
  font-weight: 700;
  font-style: italic;
  font-size: 90px;
}
.ABOUTUS {
	display:flex;
	    MARGIN: 100PX 50PX;
      
}
#about_us_heading {
	width:50%;
    background-color: #a9a9a92b;
	padding-top: 90px;
	animation:backInLeft;
  animation-duration: 2s;
}
#about_us_picture {
	width:50%;
		animation:backInRight;
  animation-duration: 2s;
  text-align:center;
}
.introduction {
	font-family: auto;
    font-size: 55px;
    color:#3586ff;
	text-align: center;

	margin-top:40px;
	    margin-top: 150px;
}
.introduction1 {
	font-family: auto;
    font-size: 55px;
    color: #3586ff;
 MARGIN-TOP: 80PX;
	text-align: center;
}
#my {
	font-family: fangsong;
    color: black;
    font-size: 25px;
    padding: 40px;
    text-align: justify;

	}
#services_content {
		color: black;
    text-align: center;
    font-size: 20px;
    padding: 20px;
	}
h3 {
	padding-top: 20px;
    text-align: center;
    font-size: 25px;
    color: #3586ff;
}
.ser, .ser1 {
	font-family: auto;
    font-size: 50px;
    color: #3586ff;
	 padding-top: 50px;
}
.services {
	overflow:hidden;
	display:flex;
	padding-top: 60px;
}
.web_development {
	width:33%;
    box-shadow: 2px 2px 8px #3586ff;
	margin: 30px 40px;
	padding: 20px;
}
.graphic_designing {
	width:33%;
	float:right;
    box-shadow: 2px 2px 8px #3586ff;
	margin: 30px 40px;
	    padding: 20px;
}
.branding {
	width:33%;
	float:right;
    box-shadow: 2px 2px 8px #3586ff;
	margin: 30px 40px;
	    padding: 20px;
}
.pic_of_services_firstpage {
	border-radius: 50%;
    width:100%;
	
	animation:rollIn;
  animation-duration:4s;
}

#icon_of_services {
	margin: auto;
    width: 24%;
}
.services0 {
	overflow:hidden;
	display:flex;
	
}   
.web_designing {
	width:33%;
    box-shadow: 2px 2px 8px #3586ff;
	margin: 30px 40px;
	    padding: 20px;
}
.digital_marketing {
	width:33%;
	float:right;
    box-shadow: 2px 2px 8px #3586ff;
	margin: 30px 40px;
	    padding: 20px;
}
.seo {
	width:33%;
	float:right;
    box-shadow: 2px 2px 8px #3586ff;
	margin: 30px 40px;
	    padding: 20px;
}
.pic1 {
	width:110px;
	height:104px;
	border-radius:50%;
}
.subheading_projects {
	color: black;
    font-family: fangsong;
}


.slider {
	position:relative;
	width:250px;
	height:250px;
	transform-style:preserve-3d;
	animation:rotate 30s linear infinite;
	margin:80px auto;
	
}
@keyframes rotate {
	0% {
		transform:perspective(1000px) rotateY(0deg);
	}
	100% {
		transform:perspective(1000px) rotateY(360deg);
	}
}
.slider span {
	position:absolute;
	width:100%;
	height:100%;
	transform-origin:center;
	transform-style:preserve-3d;
}
.slider span img {
	position:absolute;
	width:100%;
	height:100%;	
	object-fit:cover;
	border-radius:10px;
	transition:2s;
	transform:rotateY(calc(var(--i)*45deg)) translateZ(350px);
}	

/*testimonial slider */

.icon15 {
	height:30px; 
	
	margin-right:10px;
}
.contact_wrap {
	display:flex;
	margin:50px;
	background-color: #a9a9a92b;
}
.address {
	width:50%;
	padding:20px;
}
.boardline {
	width:50%;
	padding:20px;
}
.contact_wrap h2 {
	text-align:left;
	font-size:40px;
    font-family: auto;
}
.contact_wrap p{
	margin:20px 0px;
	font-size:20px;
    font-family: auto;
}
.footer {
    margin-top:150px;
    position: relative;
    width: 100%;
    background: #3586ff;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .social-icon,
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .social-icon__item,
  .menu__item {
    list-style: none;
  }
  
  .social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon__link:hover {
    transform: translateY(-10px);
  }
  
  .menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
  }
  
  .menu__link:hover {
    opacity: 1;
  }
  
  .footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
  }
  
  .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("https://i.ibb.co/wQZVxxk/wave.png");
    background-size: 1000px 100px;
  }
  
  .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
  }
  
  .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
  }
  
  .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
  }
  
  .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
  }
  
  @keyframes animateWaves {
    0% {
      background-position-x: 1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }
  
  @keyframes animate {
    0% {
      background-position-x: -1000px;
    }
    100% {
      background-positon-x: 0px;
    }
  }
  

/*.para1 {
	overflow:hidden;
	display:flex;
	
}
#logo1 {
	width:50%;
	padding: 30px;
    padding-left:150px;
}
#heading1 {
	width:50%;
	float:right;
	padding: 30px;
	
}
#main  {
	color:black;
    font-size:20px;
	padding-right:150px;
	text-align: justify;
}
/* second para */
/*
.para2 {
	overflow:hidden;
	display:flex;
	
}
#moto {
	color: #3586ff;
    font-size:25px;
	padding-top:20px;
}

#paragraph1 {
	    font-size: 20px;
    color: black;
	
}
#heading2 {
	width:50%;
	float:right;
	padding: 30px;
	padding-left: 100px;
}


#logo11 {
	width:50%;
	padding: 30px;
    
}
/* third para */
/*
.para3 {
	overflow:hidden;
	display:flex;
	
}
#paragraph {
	    font-size: 20px;
    color: black;
	padding-right: 150px;
}
#logo3 {
	width:50%;
	padding: 30px;
	padding-left:150px;
    
} */
.Promoters {
	display:flex;
	text-align:center;
	justify-content:center;
	margin:60px;
	background-color: #a9a9a92b;
}
.promoter_img img {
	width:100%;
}
.promoter_content {
	
	width:33%
}
.promoter_para p {
	font-size: 18px;
  text-align: justify;
	line-height: 1.5;
    font-family: math;
}
.promoter_para h1 {
	margin: 20px;
  font-family: 'FontAwesome';
}

.promoter_para {
	padding:30px;
}
#heading3 {
	width:50%;
	float:right;
	padding: 30px;
}
h4 {
        color: #3586ff;
    margin: 80px;
    font-size: 60px;
    text-align: center;
    font-family: 'boxicons';
	}
.team_content h2 {
	color:#3586ff;
	font-size:30px;
	margin:10px;
  font-family: 'FontAwesome';
}
.team_photo img {
	width:100px;
	border-radius:50%;
}
.team_wrap {
	display:flex;
	text-align:center;
	justify-content: space-around;
}
.team_person {
	padding:30px;
	
	border:5px ridge #3586ff;
	width:30%;
	border-radius:15px;
}	
.team_content h6 {
	color: black;
    font-size: 20px;
    font-family: 'FontAwesome';
    margin: 0px;
    font-family: monospace;
}
.team_content p {
	color: black;
    font-size: 20px;
    margin: 7px;
    text-align: left;
	margin-top: 25px;
}
/* project */
.heading_projects {
	padding-top:40px;
	color: black;
    font-family: math;
    font-size: 30px;
	border-bottom: 2px solid white;
	text-align: center;
}
iframe {
	width:300px;
    height:300px;
    margin:40px;
   
}
.map {
    margin:0px;
    
}
/* services */
.servics_provide {
	display:flex;
	    margin: 50px;
	border-radius:10px;
	justify-content:center;
	position:relative;
	overflow:hidden;
}
.webdevelopment_services {
	display:inline-block;
	
	
	margin:10px;
	border:2px solid #3586ff;
	width:32%;
}
.pic_of_services {
	width: 100%;
   
}

.graphic_services {
	width:32%;
	display:inline-block;
	
	
	margin:10px;
	border:2px solid #3586ff;
}
.branding_services {
	width:32%;
	display:inline-block;
	
	
	margin:10px;
	border:2px solid #3586ff;
}
 
.servics_provide1 {
	display:flex;
	    margin: 50px;
	border-radius:10px;
	justify-content:center;
	position:relative;
	overflow:hidden;
}
.websitedesign_services {
	display:inline-block;
	

	margin:10px;
	border:2px solid #3586ff;
	width:32%;
}
.digitalmarket_services {
	width:32%;
	display:inline-block;
	
	
	margin:10px;
	border:2px solid #3586ff;
}
.seo_services {
	width:32%;
	display:inline-block;
	
	
	margin:10px;
	border:2px solid #3586ff;
}
.websitedesign_services:hover , .digitalmarket_services:hover , .seo_services:hover , .webdevelopment_services:hover , .graphic_services:hover , .branding_services:hover  {
	border:3px solid #3586ff;
	box-shadow: 2px 2px 8px #3586ff;
}

.para_for_services {
	font-size: 18px;
    text-align: center;
	color:#000000;
padding: 10px;	
}

.editing_pics_services {
	    width: 100%;
    height: 250px;
    padding: 10px;;
}
.heading_for_services{
	font-size: 25px;
    color: #3586ff;
    font-family: math;
	text-align:center;
}
/* projects */
.projects_link {
	text-align:center;
	justify-content:center;
	display:flex;
	overflow:hidden;
}


.pamphlet {
	margin: 30px;	
}
.pamphlet_grid {
	display:flex;
	overflow:hidden;
	padding-top:20px;
}
.pamphlet_grid {
	 display: flex;
   
    justify-content: center;
    text-align: center;
	
}
.pamplet1 {
	width:33%;

}
.pamplet2 {
	width:33%;
	float:right;
}
.pamplet3 {
	width:33%;
	float:right;
}

.pamplet4 {
	width:33%;

}
.pamplet5 {
	width:33%;
	float:right;
}
.pamplet6 {
	width:33%;
	float:right;
} 
	
.editing_pamplet {
	width: 100%;
	    padding: 40px;
}

.photo2 {
	width:33%;
	float:right;
}
.photo3 {
	width:33%;
	float:right;
}

.photo11 {
	width:33%;

}
.photo21 {
	width:33%;
	float:right;
}
.photo31 {
	width:33%;
	float:right;
}



.icon_of_branding {
	display:flex;
	overflow:hidden;
}
.branding_icon1 {
	width:33%;
	 
}
.branding_icon2 {
	width:33%;
	float:right;
	
}
.branding_icon3 {
	width:33%;
	float:right;
}
.editing_branding {
	margin-left:150px;
    width:100px;
}	


/* contact us page */
.form_input input {
  background: transparent;
    border: none;
    border-bottom: 2px solid black;
    width: 90%;
    padding: 5px;
    margin: 20px;
}
.form_input input[type="submit"]
{
width: 132px;
padding: 4px;
background-color: black;
color: white;
box-shadow: 2px 2px 6px 8px;
border-radius: 7px;
}
.contact_right h3 {
  color: white;
  font-family: 'boxicons';
  font-size: xxx-large;
}
.contact_box {
  display:flex;
  margin:170px 100px;
  text-align: center;
  box-shadow: 2px 2px 8px;
}
.contact_left {
  width:50%;
  color:black;
  padding:50px;
  background-color: #cccccc47;
}
.contact_right {
  width:50%;
  color:white;
  padding:50px;
  background-color:#3586ff;
}
/*
input {
	width: 250px;
    height: 50px;
	margin: 20px;
	border:2px solid grey;
	background-color: transparent;
	padding-left:20px;
	color:white;
		box-shadow:3px 3px 10px #67c4c3;
}
input:hover {
	box-shadow:2px 2px 8px #67c4c3;
	
	color:white;
}
input[type=text1]:hover {
	box-shadow:2px 2px 8px #67c4c3;
	color:white;
}
input[type=submit]:hover {
	box-shadow:2px 2px 8px #67c4c3;
	color:white;
}
input[type=text1] {
	text-align:top;
    WIDTH: 73%;
	margin-left: 20px;
	border:2px solid grey;
	background-color: transparent;
	margin-top:20px;
	height:100px;
}
input[type=submit] {
	color: white;
    font-size: 20px;
    margin-left: 150px;
    background-color: #67c4c3;
    border: 1px solid black;
    font-weight: bold;
}
.love_to_hear {
	    color:black;
    margin-top: 20px;
}
.advertisers {
	color: #3586ff;
	font-size:40px;
	float:left;
	margin-top:80px;
}
.question {
	    color: black;
    font-size: 20px;
    margin-top: 120px;
}*/
.right_conatct_social_icon{
  background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
}
.contact_us{
 background-color: #f1f1f1;
 padding: 120px 0px;
}

.contact_inner{
 background-color: #fff;
 position: relative;
 box-shadow: 20px 22px 44px #cccc;
 border-radius: 25px;
}
.contact_field{
 padding: 60px 340px 90px 100px;
}
.right_conatct_social_icon{
 height: 100%;
}

.contact_field h3{
color: #000;
 font-size: 40px;
 letter-spacing: 1px;
 font-weight: 600;
 margin-bottom: 10px
}
.contact_field p{
 color: #000;
 font-size: 13px;
 font-weight: 400;
 letter-spacing: 1px;
 margin-bottom: 35px;
}
.contact_field .form-control{
 border-radius: 0px;
 border: none;
 border-bottom: 1px solid #ccc;
}
.contact_field .form-control:focus{
 box-shadow: none;
 outline: none;
 border-bottom: 2px solid #1325e8;
}
.contact_field .form-control::placeholder{
 font-size: 13px;
 letter-spacing: 1px;
}

.contact_info_sec {
 position: absolute;
 background-color: #2d2d2d;
 right: 1px;
 top: 18%;
 height: 340px;
 width: 340px;
 padding: 40px;
 border-radius: 25px 0 0 25px;
}
.contact_info_sec h4{
 letter-spacing: 1px;
 padding-bottom: 15px;
}

.info_single{
 margin: 30px 0px;
}
.info_single i{
 margin-right: 15px;
}
.info_single span{
 font-size: 14px;
 letter-spacing: 1px;
}

button.contact_form_submit {
 background: linear-gradient(to top right, #1325e8 -5%, #8f10b7 100%);
 border: none;
 color: #fff;
 padding: 10px 15px;
 width: 100%;
 margin-top: 25px;
 border-radius: 35px;
 cursor: pointer;
 font-size: 14px;
 letter-spacing: 2px;
}
.socil_item_inner li{
 list-style: none;
}
.socil_item_inner li a{
 color: #fff;
 margin: 0px 15px;
 font-size: 14px;
}
.socil_item_inner{
 padding-bottom: 10px;
}

.map_sec{
 padding: 50px 0px;
}
.map_inner h4, .map_inner p{
 color: #000;
 text-align: center
}
.map_inner p{
 font-size: 13px;
}
.map_bind{
margin-top: 50px;
 border-radius: 30px;
 overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .left-container{
    display: none;
  }
  .lg-view {
    display:none;  
  }
}

@media only screen and (min-width: 600px) {
  .sm-view {
    display:none;  
  }
}

form p {
  text-align:left;
}
.map {
	width:100%;
}
.pamplet1 , .pamplet2 , .pamplet3 ,  .pamplet4 , .pamplet5 , .pamplet6  {
        margin-bottom: 30px;
        margin:auto;
}
@media screen and (max-width:1400px) and (min-width: 1024px) {

}
@media screen and (max-width:1100px) and (min-width: 700px) {
.ABOUTUS {
    display:grid;
}
#about_us_heading {
    width:100%;
    padding-top:0px;

}
#about_us_picture {
    width:100%;
    text-align: center;
}
.introduction {
    font-size:37px;
  
}
.introduction1 {
    margin-top: 10px;
    font-size: 37px;
}

#about_us_picture {
    width:300px;
    
}
    .para1 {
    display:grid;
}
.para2 {
    display:grid;
        margin-top: 30px;

}
#heading3 {
    width:100%;
    padding:10px;
        margin: 20px 0px;
}
#paragraph {
    padding:0px;
        text-align: justify;
    font-size:15px;
}
#logo1 {
    width: 100%;
    padding: 0px;
    text-align: center;
}
.para3 {
    display:grid;
}
#moto {
    text-align:center;
}
#heading1 {
    width:100%;
   padding:10px;
    margin:auto;
}
#paragraph1 {
    font-size: 15px;
    color: white;
    padding: 10px;
    text-align: justify;
}
#logo3 {
    width:100%;
    justify-content:center;
    text-align:center;
    padding:0px;
    margin-top: 40px;
}
#heading2 {
    width:100%;
   margin-bottom: 30px;
    text-align:center;
    padding:0px;
    grid-row: 1;
}
.about_pics {
    width:200px;
}
#main {
    text-align:justify;
    font-size:15px;
    padding:0px;
    }
.welcome  {
    font-size:50px;
}
.welcome_subheading {
    font-size:30px;
}

.ABOUTUS {
    display:grid;
}
#about_us_heading {
    width:100%;

}
#about_us_picture {
    width:100%;
    text-align: center;
}
.introduction {
    font-size:40px;
    margin-top:90px;
}
h3 {
    font-size:20px;
}
#services_content {
    padding:3px;
    font-size:12px;
}
.aboutlogo {
    width:300px;
    height:300px;
}
}  
.slider span img {
	position:absolute;
	width:100%;
	height:100%;	
	object-fit:cover;
	border-radius:10px;
	transition:2s;
	transform:rotateY(calc(var(--i)*45deg)) translateZ(250px);
}
.slider {
    width: 180px;
    height: 180px;
   
   
}

.icon15 {
   width: 35px;
    height: 35px;
    margin-right: 20px;
}



@media screen and (max-width:769px) and (min-width: 500px) {
    .welcome  {
    font-size:35px;
}
.welcome_subheading {
    font-size:20px;
    
}
.ABOUTUS {
    display: grid;
}
#about_us_heading , #about_us_picture{
    width: 100%;
    padding-top: 10px;
    
}
.services , .services0{
    display:grid;
}
.web_development , .graphic_designing , .branding , .web_designing , .digital_marketing , .seo{
    margin-bottom:10px;
    width:90%;
    margin:auto;
}
}

@media screen and (max-width:480px) and (min-width: 320px)
{

    .pamplet1, .pamplet2 , .pamplet3 {
        width:95%;
    }
    .introduction {
        margin-top:20px;
    }
}
@media screen and (max-width:700px) and (min-width: 320px) {
  .testimonial {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .testimonial4_slide p { 
    font-size: 15px !important;
    margin:10px !important;
    }  
.pamplet4 , .pamplet5 , .pamplet6 {
    width: 100%;
}
.testimonial4_slide img {
  width:65px !important;
  height:65px !important;
}
.testimonial4_slide h4 {
  font-size:14px !important;
}
.contact_box {
  display:block;
  margin:0px;
}
.contact_left,  .contact_right {
  width:100%;
}
.contact_right img {
  width:100%;
  height:auto;
}

  .Promoters {
    margin:20px;
    display:block;
  }
  .promoter_content {
    width:100%;
  }
.promoter_para {
  padding:15px;

}
.promoter_para p {
  font-size: 15px;
}
  .contact_wrap {
    display:block;
    margin:0px;
margin-bottom: 90px;
  }
  .address, .boardline {
    width:100%;

  }
.contact_wrap h2 {
  font-size: 19px;
    font-weight: 800;
}
    nav {
    
    position: initial;
    }
.topnav a:hover {
    background-color:transparent;
}
.icon15 {
    width:19px;
    height:19px;
}  
.slider span img {
	position:absolute;
	width:100%;
	height:100%;	
	object-fit:cover;
	border-radius:10px;
	transition:2s;
	transform:rotateY(calc(var(--i)*45deg)) translateZ(150px);
}
.slider {
    width: 100px;
    height: 100px;
   
   
}
.subfoot {
    font-size:18px;
}
.useful_links , .contact_us{
    font-size:25px;
    color:#67c4c3;
}
.headfoot {
    font-size: 15px;
}
.address {
    font-size: 15px;
}
.main_heading {
	position:absolute;
	display: flex;
       height: -webkit-fill-available; 
    justify-content: center;
    align-content: center;
    flex-wrap:wrap;
	animation:backInDown; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */

}
.welcome {
    font-size:28px;
    text-shadow: 2px 1px #00fffdb3;
}
#my {
    font-size:15px;
    padding: 10px;
        text-align: center;
}
.welcome_subheading {
    font-size:22px;
}
.main_heading {
        margin-top: 70px;
}

.ABOUTUS {
    display:grid;
    margin:0px;
}
#about_us_heading {
    width:100%;
    padding-top:0px;

}
#about_us_picture {
    width:100%;
    text-align: center;
}
.introduction {
    font-size:37px;
  
}
.introduction1 {
    margin-top: 10px;
    font-size: 28px;
}
h3 {
    font-size:20px;
}
#services_content {
    padding:3px;
    font-size:10px;
}
.aboutlogo {
    width:250px;
    height:250px;
}
.footer {
    display:grid;
 
   padding:10px;
}
.footer_contact {
    width:100%;
      margin: 20px 0px;
}
.footer_links {
    width:100%;
        margin: 20px 0px;
}
.footer_icons {
    width:100%;
       margin: 20px 0px;
}
.services {
    display:grid;
    padding-top:10px;
}
.services0 {
    display:grid;
}
.web_designing {
    width:90%;
    margin:auto;
    text-align: center;
    border:1px solid #ddd;
    justify-content: center;
    margin-bottom: 20px;
}
.web_development {
  width:90%;
  margin:auto;
  text-align: center;
  border:1px solid #ddd;
  justify-content: center;
  margin-bottom: 20px;
}
.digital_marketing {
  width:90%;
  margin:auto;
  text-align: center;
  border:1px solid #ddd;
  justify-content: center;
  margin-bottom: 20px;
}
.seo {
  width:90%;
  margin:auto;
  text-align: center;
  border:1px solid #ddd;
  justify-content: center;
  margin-bottom: 20px;
}
.graphic_designing {
  width:90%;
  margin:auto;
  text-align: center;
  border:1px solid #ddd;
  justify-content: center;
  margin-bottom: 20px;
}
.branding {
  width:90%;
  margin:auto;
  text-align: center;
  border:1px solid #ddd;
  justify-content: center;
  margin-bottom: 20px;
}

.pic_of_services_firstpage {
    height:50px;
    width:50px
}
#services_content {
    font-size:13px;
}
.para1 {
    display:grid;
}
.para2 {
    display:grid;
        margin-top: 30px;

}
#heading3 {
    width:100%;
    padding:10px;
        margin: 20px 0px;
}
#paragraph {
    padding:0px;
        text-align: justify;
    font-size:15px;
}
#logo1 {
    width: 100%;
    padding: 0px;
    text-align: center;
}
.para3 {
    display:grid;
}
#moto {
    text-align:center;
}
#heading1 {
    width:100%;
   padding:10px;
    margin:auto;
}
#paragraph1 {
    font-size: 15px;
    color: white;
    padding: 10px;
    text-align: justify;
}
#logo3 {
    width:100%;
    justify-content:center;
    text-align:center;
    padding:0px;
    margin-top: 40px;
}
#heading2 {
    width:100%;
   margin-bottom: 30px;
    text-align:center;
    padding:0px;
    grid-row: 1;
}
.about_pics {
    width:200px;
}
#main {
    text-align:justify;
    font-size:15px;
    padding:0px;
    }
.team_wrap {
    display:grid;
    justify-content:center;
    margin-bottom: 90px;
}
.team_person {
    padding: 10px;

    width: 90%;
    margin:auto;
    margin-bottom:20px;
}
.team_content h2 {

    font-size: 22px;
    margin: 5px;
}
.team_content h6 {
  
    font-size: 18px;
    margin: 0px;
    font-family: monospace;
}
.team_content p {

    font-size: 15px;
    margin: 7px;
    text-align: left;
    margin-top: 15px;
}
.editing_pics_services {
    width: 100%;
    height: 180px;
}
.pic_of_services {
    width: 100%;

}
.servics_provide {
    display:grid;
        margin: 10px;

}
.servics_provide1 {
    display:grid;
        margin: 10px;
}
.webdevelopment_services {
    width:95%;
}
.websitedesign_services {
    width:95%;
}
.branding_services{
    width:95%;
}
.seo_services {
    width:95%;
    margin-bottom: 90px;
}
.digitalmarket_services {
    width:95%;
}
.graphic_services {
    width:95%;
}
.projects_link {
    display: grid;
}
.link1{
    text-align:center;
}
.link2 {
    text-align:center;
}
.link3 {
    text-align:center;
}

.icon_of_branding {
    display:grid;
   
    text-align:center;
}

.form {
    flex-wrap:wrap;
}
.form_input{
    width:100%;
}
input {
       width: 95%;
    margin: 10px;
}
input[type=text1] {
    width:95%;
    height:90px;
    margin: 10px;
}
input[type=submit] {
    width:40%;
    margin:10px;

}
.para_for_services {
    font-size:13px;
}
.paragarph_for_contact {
    width:100%;
    margin-left:0px;
}
.love_to_hear {
    margin:0;
    font-size:17px;
}
.pamphlet_grid {
	display:grid;
}
.branding_grid {
	display:grid;
	width:100%;
  margin-bottom: 90px;
}

.branding_icon1 {
    width:100%;
}
.editing_branding {
	margin-left:0px;
    width: 100px;
}
.advertisers {
  
    font-size: 30px;
    float: left;
  
    text-align: inherit;
}
}

.heading {
  text-align: center;
  color: #454343;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
  z-index: 999;
}
.white-heading{
  color: #ffffff;
}
.heading:after {
  content: ' ';
  position: absolute;
  top: 100%;
  left: 50%;
  height: 40px;
  width: 180px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: url(img/heading-line.png);
  background-repeat: no-repeat;
  background-position: center;
}
.white-heading:after {
  background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
  background-repeat: no-repeat;
  background-position: center;
}

.heading span {
  font-size: 18px;
  display: block;
  font-weight: 500;
}
.white-heading span {
  color: #ffffff;
}
/*-----Testimonial-------*/

.testimonial:after {
  position: absolute;
  top: -0 !important;
  left: 0;
  content: " ";
  background: url(img/testimonial.bg-top.png);
  background-size: 100% 100px;
  width: 100%;
  height: 100px;
  float: left;
  z-index: 99;
}

.testimonial {
  min-height: 375px;
  position: relative;
  background: url(pics/back_test.png);
  padding-top: 50px;
  padding-bottom: 50px;
  background-position: center;
      background-size: cover;
}
#testimonial4 .carousel-inner:hover{
cursor: -moz-grab;
cursor: -webkit-grab;
}
#testimonial4 .carousel-inner:active{
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
#testimonial4 .carousel-inner .item{
overflow: hidden;
}

.testimonial4_indicators .carousel-indicators{
left: 0;
margin: 0;
width: 100%;
font-size: 0;
height: 20px;
bottom: 15px;
padding: 0 5px;
cursor: e-resize;
overflow-x: auto;
overflow-y: hidden;
position: absolute;
text-align: center;
white-space: nowrap;
}
.testimonial4_indicators .carousel-indicators li{
padding: 0;
width: 14px;
height: 14px;
border: none;
text-indent: 0;
margin: 2px 3px;
cursor: pointer;
display: inline-block;
background: #ffffff;
-webkit-border-radius: 100%;
border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators .active{
padding: 0;
width: 14px;
height: 14px;
border: none;
margin: 2px 3px;
background-color: #9dd3af;
-webkit-border-radius: 100%;
border-radius: 100%;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar{
height: 3px;
}
.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb{
background: #eeeeee;
-webkit-border-radius: 0;
border-radius: 0;
}

.testimonial4_control_button .carousel-control{
top: 175px;
opacity: 1;
width: 40px;
bottom: auto;
height: 40px;
font-size: 10px;
cursor: pointer;
font-weight: 700;
overflow: hidden;
line-height: 38px;
text-shadow: none;
text-align: center;
position: absolute;
background: transparent;
border: 2px solid #ffffff;
text-transform: uppercase;
-webkit-border-radius: 100%;
border-radius: 100%;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.6s cubic-bezier(0.3,1,0,1);
transition: all 0.6s cubic-bezier(0.3,1,0,1);
}
.testimonial4_control_button .carousel-control.left{
left: 7%;
top: 50%;
right: auto;
}
.testimonial4_control_button .carousel-control.right{
right: 7%;
top: 50%;
left: auto;
}
.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover{
color: #000;
background: #fff;
border: 2px solid #fff;
}

.testimonial4_header{
top: 0;
left: 0;
bottom: 0;
width: 550px;
display: block;
margin: 30px auto;
text-align: center;
position: relative;
}
.testimonial4_header h4{
color: #ffffff;
font-size: 30px;
font-weight: 600;
position: relative;
letter-spacing: 1px;
text-transform: uppercase;
}

.testimonial4_slide{
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 70%;
margin: auto;
padding: 20px;
position: relative;
text-align: center;
}
.testimonial4_slide img {
  top: 0;
  left: 0;
  right: 0;
  width: 136px;
  height: 136px;
  margin: auto;
  display: block;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  position: relative;
  border-radius: 50%;
  box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}
.testimonial4_slide p {
  color: #000000;
    font-size: 20px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
    font-family: auto;
}
.testimonial4_slide h4 {
color: #000000;
font-size: 22px;
font-family: auto;
}

.testimonial .carousel {
padding-bottom:50px;
}
.testimonial .carousel-control-next-icon, .testimonial .carousel-control-prev-icon {
  width: 35px;
  height: 35px;
}