@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Work+Sans:ital,wght@0,500;0,600;1,400;1,700&display=swap');
*{
	margin: 0; padding: 0;
	box-sizing: border-box;
	 /*font-family: 'Poppins', sans-serif;*/
	font-family: 'Work Sans', sans-serif;
}
:root {
	--heading: rgb(0 10 45);
	--para: #5c5e5e;
	--para-tint: #e4e4e4;
	--btnbg: linear-gradient(45deg, #02c8b3, #bf047a);
	--white: #fff;
	--black: #212529;
	--helper: #8490ff;
	--overlay: #3e64ff;
	--helper-tint: #f3f4ff;
	--bg: rgb(249 249 255);
	--icons-bg: rgba(144, 172, 209, 0.2);
	--gradient: linear-gradient(0deg, rgb(132 144 250) 0%, rgb(98 189 252) 100%);
	--gradientSupport: -webkit-linear-gradient(0deg, rgb(132 144 155) 0%,
		rgb(98 189 252) 100%		
	);
	--btn-color: linear-gradient(45deg, #07d7df, #6e026a);
	--shadow:  0px 0px 20px 0px rgb(132 144 255 / 30%);
	--shadowSupport: 0px 20px 20px 0px rgb(132 144 255 / 40%);
}
html{
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
body{
	overflow-x: hidden;
}
h1, h2, h3, h4,{
	font-family: 'Poppins', sans-serif;
}
h1{
	/* color: var(--heading); */
	color: #463842;
	font-size: 6rem;
	font-weight: 600;
}
h3{
	font-size: 1.8rem;
	font-weight: 400;
}
p{
	color: var(--para);
	/*color: var(--para1st);*/
	line-height: 2rem;
	font-size: 1.7rem;
}
a{
	text-decoration: none;
}
li{
	list-style: none;
}

/*.section-hero h2{
	display: flex;
	justify-content: center;
	margin: 2rem 0 1rem 0;
	font-size: 2.2rem; font-weight: 600;
	text-shadow: 2px 1px 5px black;
	color: white;
	text-transform: uppercase;	
}*/

/*==============================
		Header Section Start
===============================*/
.header{
	position: fixed;
	width: 100%;
	padding: 0 6rem;
	height: 9rem;
	background: linear-gradient(45deg, #6ed8d9, #fff);
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 999;
}
.header .logo{
	height: 6rem; z-index: 1000;
}
.navbar-lists{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
}
.navbar-link:link,
.navbar-link:visited{
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--black);
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	text-shadow: 1px 2px 2px white;
	transition: all .4s linear;
}
.navbar-link:hover,
.navbar-link:active{
	/*color: var(--helper);*/
	color: #800b7d;
	transform: scale3d(1.1, 1.1, 1.1);
}
.mobile-navbar-btn{
	display: none;
	background-color: transparent;
	cursor: pointer;
	border: none;
}
.mobile-nav-icon[name="close-outline"] {
	display: none;
}
.section-top{
	width: 100%; height: 85%;
	background: linear-gradient(160deg, #deefef 45%, #daf0e8 55%);
	display: flex;
	justify-content: center;
	align-items: center; text-align: center;
	color: #7b0b65;
	text-shadow: 2px 1px 2px black;
	font-size: 2.2rem;
	padding-top: 11rem; left: 0%;
}
.change_content{
	font-size: 4.5rem;
	text-shadow: 2px 1px 3px black;
}
/* =============================
		Re-usable Code
================================ */
.section{
	padding: 9rem 8%;
}
.section-hero{
	padding: 2rem 8%;
}
.container{
	max-width: 140rem;
	margin: 0 9rem;
}
.grid{
	display: grid;
	gap: 9rem;
	/* justify-content: space-between; */
}
.grid-two-column{
	grid-template-columns: repeat(2, 1fr);
}
.grid-three-column{
	grid-template-columns: repeat(3, 1fr);
}
.grid-four-column{
	grid-template-columns: repeat(4, 1fr);
}
.btn{
	background: var(--btnbg);
	padding: 1.6rem 3.2rem;
	border: none;
	border-radius: .5rem;
	color: var(--helper-tint);
	display: inline-block;
	text-transform: uppercase;
	font-size: 1.8rem;
	font-weight: 500;
	cursor: pointer;
	text-shadow: 1px 1px 1px black;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3 ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.4s ease .2s;
}
.btn:hover, btn:active{
	transform: scale3d(1.05, 1.05, 1.05);
	color: #00fed7;
	box-shadow: var(--shadowSupport);
}
.common-heading{
	background: linear-gradient(to right, #02c8b3, #d20284 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 4.8rem;
	font-weight: 600;
	margin-bottom: 6rem;
	text-transform: capitalize;
	position: relative;
}
.common-heading::before{
	content: "";
	position: absolute;
	top: 120%; left: 0;
	width: 1.5rem; height: 1.5rem;
	background: linear-gradient(30deg, steelblue, purple);
	/*background-color: var(--helper);*/
	border-radius: 50%;
}
.common-heading::after{
	content: "";
	position: absolute;
	top: 130%; left: 1.5rem;
	min-width: 25rem; height: .3rem;
	background: linear-gradient(30deg, steelblue, purple);
	/*background-color: var(--helper);*/
}
/*==============================
		Hero Section Start
===============================*/
.section-hero{
	background: linear-gradient(160deg, #deefef 45%, #daf0e8 55%);
	height: 86vh; width: 100%;
	padding: 10rem 8%;
}
.section-hero .grid-two-column{
	width: 97%;
	height: 45rem;
}
.section-hero-data{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.hero-top-data{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.5rem;
	color: #6e026a; /*var(--helper);*/
}
.hero-heading{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 5rem;
}
.hero-heading h1{
	line-height: 5rem;
}
.hero-heading span{
	color: #800b7d;
	font-size: 7rem;
}
.hero-heading{
	background: linear-gradient(to right, #02c8b3, #d20284);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding: 1rem 0rem;
}
.hero-para{
	margin-top: 1.5rem;
	margin-bottom: 3rem;
	max-width: 60rem;
}
.section-hero-image{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 6rem;
}
.hero-img{
	max-width: 85%;
	margin-left: 2rem;
	border-top-left-radius: 3rem;
	border-bottom-left-radius: 8rem;
	border-bottom-right-radius: 3rem;
	border-top-right-radius: 9rem;
	border-left: 1.3rem solid #cbcbda;
	border-bottom: 1.3rem solid #babac2;
	transition: all 1.5s linear;
}
.hero-img:hover{
	transform: scale3d(1.2, 1.2, 1.2);
}
/*==============================
		Biodata Section Start
===============================*/
.section-biodata{
	background: linear-gradient(210deg, #e1ecec 47%, #daf0e8 53%);
}
.bio-image{
	display: flex;
	justify-content: center;
	align-items: center;
}
.bio-image img{
	width: 80%;
	box-shadow: -1.5rem -1.5rem 0 0 var(--helper);
	display: inline-block;
}
.bio-data-stats{
	display: flex;
	padding: 6.4rem 0;
	flex-direction: column;
	gap: 3rem;
}
.bio-stats h3{
	margin-bottom: 1rem;
}
.bio-progress-bar{
	width: 90%;
	height: 0.8rem;
	background-color: #c0c2c2;
	/*background-color: var(--para-tint);*/
	border-radius: 10rem;
	box-shadow: var(--shadow);
	position: relative;
}
.bio-progress-bar::before{
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 80%;
	height: inherit;
	background: linear-gradient(30deg, steelblue, purple);
	border-radius: 10rem;
}
.bio-progress-2::before{
	width: 99%;
}
.bio-progress-3::before{
	width: 95%;
}
.bio-progress-4::before{
	width: 75%;
}
.bio-progress-5::before{
	width: 65%;
}
.bio-progress-bar span{
	position: absolute;
	top: 1.8rem; width: 4rem;
	height: 2rem;
	background: var(--helper);
	color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	border: 0; outline: none;
}
.bio-progress-bar span{
	left: 76%;
}
.bio-progress-2 span{
	left: 95%;
}
.bio-progress-3 span{
	left: 91%;
}
.bio-progress-4 span{
	left: 71%;
}
.bio-progress-5 span{
	left: 61%;
}
/* To Create a Caret */
.bio-progress-bar span::after{
	content: "";
	position: absolute;
	width: 0; height: 0;
	border: 0.8rem solid var(--helper);
	border-color: transparent;
	border-bottom-color: var(--helper);
	top: -1.6rem;
}
.section-portfolio .common-heading::after{
	content: "";
	position: absolute;
	top: 130%; left: 1.5rem;
	min-width: 34rem; height: .3rem;
	background-color: var(--helper);
}
.section-portfolio{
	background: var(--bg);
	transition: all 0.7s linear;
}
.section-portfolio p{
	max-width: 60rem;
}
.p-btns{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3.2rem;
	margin-top: 6.4rem;
	margin: 6.4rem;
}
.portfolio-images{
	gap: 3.2rem;
}
.portfolio-images img{
	width: 100%;
	border-radius: 7px;
	position: relative;
	overflow: hidden;
}
.img-overlay{
	position: relative;
	overflow: hidden;
}
.img-overlay .overlay{
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradientSupport);
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(100%);
	transition: all 0.3s linear;
	border-radius: 7px;
}
.img-overlay:hover > .overlay{
	transform: translateY(0);
	opacity: 0.7;
	cursor: pointer;
}
.img-overlay .common-heading{
	margin: 0;
	color: var(--white);
	text-decoration: none;
}
.p-btn:hover{
	transform: translateY(-1rem);
}
.p-btn-active{
	transform: translateY(-1rem);
}
.p-image-not-active{
	display: none;
}
/*==============================
		Work-Data Section Start
===============================*/
.section-work-data{
	background: var(--btn-color);
	text-align: center;
	transition: all 0.8s linear;
	color: var(--white);
}
.counter-numbers{
	font-size: 4.8rem;
}
.section-work-data p{
	font-size: 1.6rem;
	color: var(--white);
	text-transform: capitalize;
}
/*==============================
		Services Section Start
===============================*/
.section-services{
	transition: all 0.7s linear;
	background: linear-gradient(45deg, #e4f9e1 48%, #e2fcf7 52%);
}
.section-services .common-heading::after{
	content: "";
	position: absolute;
	top: 130%; left: 1.5rem;
	min-width: 39rem; height: .3rem;
	background-color: var(--helper);
}
.section-services h3{
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem 0;
}
.section-services p{
	max-width: 60rem;
	margin-bottom: 4rem;
}
.section-services .grig{
	margin-top: 10rem;
	gap: 10rem;
}
.service-box{
	text-align: center;
	box-shadow: var(--shadow);
	border-radius: 5px;
	padding: 5.4rem 3.4rem;
	transition: all 0.3s linear;
}
.service-box p{
	text-align: justify;
}
.service-box:hover,
.service-box:active{
	/*transform: translateY(-3rem);*/
	transform: scale3d(1.1, 1.1, 1.1);
}
.service-box:hover h3,
.service-box:active h3{
	background: #edf7f6;
}
.service-icon{
	width: 8rem; height: 8rem;
	background: linear-gradient(30deg, #cdd2d2, #bdecea);
	/*background-color: var(--icons-bg);*/
	display: inline-block;
	border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
	padding: 1.4rem 1.8rem;
	position: relative;
	color: 898d8d; /*var(--heading);*/
	animation: water-wave 3s linear infinite;
}
.service-icon::after{
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 90%; height: 90%;
	border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
	background: transparent;
	border: 1px solid var(--black);
	animation: water-wave 3s linear infinite;
}
@keyframes water-wave{
	0%{
		border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%;
	}
	50%{
		border-radius:3% 97% 15% 85% / 72% 0% 100% 28%;
	}
	100%{
		border-radius: 56% 44% 70% 30% / 30% 54% 46% 70%
	}
}
.service-box h3{
	text-transform: capitalize;
	margin-top: 3rem;
	margin-bottom: 1rem;
}
/*==============================
		Sweaper Section Start
===============================*/
.section-testimonial .common-heading::after{
	content: "";
	position: absolute;
	top: 130%; left: 1.5rem;
	min-width: 47rem; height: .3rem;
	background-color: var(--helper);
}
.section-testimonial{
	background: linear-gradient(45deg, #d8fdd1 48%, #cbfac7 52%);
}

 .swiper-slide img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
      ==============================
.swiper {
	width: 100%;
	height: 100%;
	margin-top: 3.9rem;
  }

  .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
  }
/*.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }*/

  /* .swiper-slide {
	width: 80%;
  }

  .swiper-slide:nth-child(2n) {
	width: 60%;
  }

  .swiper-slide:nth-child(3n) {
	width: 40%;
  } */
  .swiper-client-msg{
	padding: 5rem 8rem;
	background: var(--white);
	border-radius: 1rem;
	text-align: left;
	box-shadow: var(--shadow);
	position: relative;
  }
  .swiper-client-msg::before{
	content: "";
	position: absolute;
	bottom: -10rem;
	left: 50%;
	transform: translateX(-50%);
	border: 5rem solid var(--white);
	border-color: transparent;
	border-top-color: var(--helper-tint);
  }
  .swiper-client-msg p::before{
	content: "\f10d";
	position: absolute;
	top: 1.5rem;
	left: 2rem;
	font-size: 5rem;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #ced3ff;
  }
  .swiper-client-msg p::after{
	content: "\f10e";
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	font-size: 5rem;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #ced3ff;
  }
  .swiper-client-data{
	align-items: center;
	margin-top: 3.2rem;
	gap: 3.2rem;
  }
  .swiper-slide img{
	max-width: 10rem;
	height: 10rem;
	border-radius: 50%;
	border: .5rem solid var(--helper-tint);
  }
 /*================*/
 .section-freelanching{
 	background-image: url("images/test.jpg");
 	background-repeat: no-repeat;
 	background-size: 100%;
 	background-attachment: fixed;
 	position: relative;
 	transition: all 0.57s linear;
 	text-align: center;
 }
 .section-freelanching .overlay{
 	position: absolute;
 	top: 0; left: 0;
 	width: 100%; height: 100%;
 	background: linear-gradient(210deg, #e1ecec 47%, #daf0e8 53%);
 	opacity: 0.6;
 }
.section-freelanching .container{
	position: relative;
}
.section-freelanching h2{
	font-size: 5.4rem;
}
.section-freelanching span{
	color: #440246;
}
.section-freelanching h2,
.section-freelanching p{
	color: #28322f;
	margin-bottom: 1.8rem;
}
/*=============================
			section-contact start
==============================*/
.section-contact{
	background: linear-gradient(45deg, #d8fdd1 48%, #cbfac7 52%);
}
.section-contact-main{
	max-width: 70rem;
	margin: 0 auto;
	margin-top: 9rem;
	transition: all 0.3s linear;
}
.section-contact-main .grid{
	grid-gap: 3.2rem;
}
.section-contact-main form{
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
}
.section-contact-main input, .section-contact-main textarea{
	padding: 1.5rem 2rem;
	border: 0.1rem solid #c9c9c9;
	border-radius: .5rem;
	font-size: 1.6rem; color: #fff;
	font-family: 'work sans-serif';
	width: 100%; letter-spacing: 1px;
}
.section-contact-main input[type="submit"]{
	max-width: 30%;
	border: none;
}
.section-footer{
	/*background: var(--heading);*/
	background: linear-gradient(158deg, #1e245e 49%, #131951 51%);
	transition: all 0.5s linear;
}
.section-footer h3{
	color: var(--white);
	margin-bottom: 4rem;
}
.f-about p{
	color: #d2d6d6;
	text-align: justify-all;
}
.f-links ul, .f-services ul, .f-address ul{
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
	justify-content: center;
}
.f-links li,
.f-links a,
.f-services li,
.f-services a{
	font-size: 1.8rem;
	color: #d2d6d6;
	text-transform: capitalize;
}
.f-links span,
.f-services span,
.f-address span{
	margin-right: 1rem;
}
.f-address p,
.f-address a{
	font-style: normal;
	color: #d2d6d6;
	margin-bottom: 1.4rem;
}
.f-address .e-address a{
	font-size: 1.4rem;
}
.f-social-icons{
	margin: 5rem 0;
	text-align: center;
	color: #d2d6d6;
}
.f-social-icons .icons{
	width: 4rem;
	height: 4rem;
	background: linear-gradient(30deg, #8ef9fd, purple);
	/*background-color: var(--icons-bg);*/
	display: inline-block;
	padding: 1.4rem 1.6rem;
	position: relative;
	color: var(--white);
	animation: water-wave 3s linear infinite;
}
.f-credits p{
	text-align: center;
	color: #d2d6d6;
}
.section-footer a:hover,
.section-footer a:active{
	color: var(--white);
}
.scroollTop-style{
	position: fixed;
	right: 2%;
	bottom: 5%;
	z-index: 1;
}
.scscroollTop{
	width: 4rem;
	height: 4rem;
	background: linear-gradient(30deg, #8ef9fd, purple); 
	display: inline-block;
	padding: 1.4rem 1.8rem;
	position: relative;
	color: var(--white);
	animation: water-wave 3s linear infinite;
	cursor: pointer;
}

.section-top .change_content:after{
	content: '';
	animation: changetext 10s infinite linear;
	color: #10d5c9;
	-webkit-transition: all 0.3 ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.4s ease 0s;
}
@keyframes changetext{
	0%{content:" Grephics Design";}
	20%{content:" Web Design";}
	40%{content:" Web Development";}
	60%{content:" App Development";}
	80%{content:" Logo Design";}
	100%{content:" Data Analisis";}
}
/* Media Queries */

@media (max-width: 95em){
	.container{
		max-width: 1300px;
		padding: 0 32px;
	}
	.navbar-lists{
		gap: 34px;
	}
}
@media (max-width: 75em){
	html{
		font-size: 56.25%;
	}
	.container{
		max-width: 110rem;
	}
	.grid{
		gap: 4.8rem;
	}
}

@media (max-width: 980px) {
	html{
		font-size: 50%;
	}
	.header{
		position: relative;
	}
	.mobile-navbar-btn {
		display: block;
		z-index: 9999;
		border: 3px solid var(--black);
		color: var(--black);
	}
	.mobile-nav-icon{
		width: 5rem;
		height: 5rem;
		color: var(--black);
	}
	/*.header .logo{
		width: 40%;
	}*/
	.navbar{
		width: 100%;
		height: 100vh;
		position: absolute;
		top: 0;
		left: 0;
		background: linear-gradient(40deg, #cde3c9 45%, #b1e3e3 55%);
		display: flex;
		justify-content: center;
		align-items: center;
		transform: translateX(100%);
		transition: all 0.5s linear;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;	
		z-index: 999;	
	}
	.navbar-lists{
		flex-direction: column;
		align-items: center;
	}
	.navbar .navbar-lists .navbar-link:link,
	.navbar .navbar-lists .navbar-link:visited{
		color: #212529;
		font-size: 3.2rem;
	}
	.active .navbar{
		transform: translateX(0%);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.active .mobile-navbar-btn .mobile-nav-icon[name="menu-outline"]{
		display: none;
	}
	.active .mobile-navbar-btn .mobile-nav-icon[name="close-outline"]{
		display: block;
	}
	/* Hero Section */
.section-hero h1{
	line-height: 1.0;
	}
	.section-services .grid{
		gap: 60px;
	}
	.section-services .grid-three-column{
		grid-template-columns: repeat(2, 1fr);
	}
	.section-portfolio .grid-three-column{
		grid-template-columns: repeat(2, 1fr);
	}
	.section-footer .grid-four-column{
		grid-template-columns: repeat(2, 1fr);
	}
	.img-overlay .common-heading{
		font-size: 3.2rem;
	}
	.img-overlay .common-heading::before,
	.img-overlay .common-heading::after{
		content: "";
		width: 0;
		height: 0;
	}
}
@media (max-width: 790px){
	.section-hero .grid-two-column{
		grid-template-columns: 1fr;
		margin-bottom: 5rem;
	}
	.section-hero-data{
		align-items: center;
	}
	.hero-heading{
		align-items: center;
	}
	.hero-para{
		text-align: center;
		margin-top: 20px;
	}
	.section-hero-image img{
		max-width: 75%;
	}
	.section-work-data .grid-four-column{
		grid-template-columns: repeat(2, 1fr);
	}
	.section-biodata .grid-two-column{
		grid-template-columns: 1fr;
	}
	.section-biodata .bio-image{
		grid-row: 2;
		margin-top: 36px;
	}
	.section-biodata .bio-image img{
		width: 65%;
	}
}
@media (max-width: 35em){
	.container{
		padding: 2rem 0;
		margin: 0 2rem;
	}
	.header{
		padding: 0 25px;
	}
	.hero-top-data{
		font-size: 2rem;
		color: var(--black);
		margin-bottom: 2rem;
	}
	.hero-heading{
		text-align: center;
		letter-spacing: .2rem;
		font-size: 5rem;
		justify-content: center;
		align-items: center;
	}
	.hero-para{
		font-size: 2rem;
	}
	.section-hero-image img{
		max-width: 40rem;
		margin-left: 0;
	}
	.section-services .common-heading {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 6rem;
    text-transform: capitalize;
    position: relative;
}
.section-portfolio .common-heading::after{
		min-width: 32rem; height: .3rem;
	}
.section-services .common-heading::after{
		min-width: 32rem; height: .3rem;
	}
	.section-testimonial .common-heading::after{
		min-width: 30rem; height: .3rem;
	}
.section-testimonial .common-heading{
		font-size:3.2rem;
	}
	.contact-container{
		padding: 0 3.2rem;
	}
	.contact-container .grid-two-column{
		grid-template-columns: 1fr;
	}
	.section-contact-main input[type="submit"]{
		max-width: 40%;
	}
	.section-footer .f-about,
	.section-footer .f-address{
		grid-column: 1/-1;
	}
	.p-btns{
		gap:  2.2rem;
	}
	.btn{
		padding: 1rem 2.3rem;
	}
	.section-services .grid-three-column{
		grid-template-columns: 1fr;
	}
	.section-freelanching h2{
		font-size: 4.5rem;
	}
}

@media (max-width: 30em){
	.section-hero{
		padding: 0;
}
	.change_content:after{
	content: '';
	animation: changetext 10s infinite linear;
	color: #00b894;
}
.section-top{
	padding-top: 3rem;
	visibility: inherit;
	font-size: 1.4rem;
	text-shadow: none;
}
.change_content{
		font-size: 2.6rem;
		text-shadow: 1px 1px 1px black;
	}
.section-hero .grid-two-column{
	width: 97%;
	height: 52rem;
}
.section {
    padding: 5rem 0;
  }
  .section-hero{
  	padding-right: 2.5rem;
  }
  .hero-top-data{
  	margin-bottom: .8rem;
  	color: #000;
  }
  .section-hero-data span{
  	font-size: 6.6rem;
  	font-family: 'Poppins';
  }
  .section-hero-data h1{
  	font-size: 3rem;
  	letter-spacing: .1rem;
  }
  .hero-para{
  	text-align: justify;
  }
  .section-hero-image img{
  	max-width: 100%;
		margin: 6rem 0;
  }
	.container{
		padding: 2rem;
	}
	.grid {
    gap: 3rem;
    margin-right: 2.6rem;
	}
	.swiper-slide {
	text-align: center;
	font-size: 16px;
	background: #fff;

	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: inline-block;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	text-align: center;
  }
	.swiper-client-msg{
		padding: 2rem 2rem;
		background: var(--white);
		border-radius: 1rem;
		text-align: left;
		box-shadow: var(--shadow);
		position: relative;
  }
}