*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Jost', sans-serif;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
}
:root{
  --bg-color: #ffffff;
  --text-color: #000;
  --secound-color: #a09dab;
  --main-color: #f75023;
  --big-font: 5rem;
  --h2-font: 3rem;
  --p-font: 1.1rem;
}
html,body{
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
}
body::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}
body{
  background:  linear-gradient(90deg, rgba(235,251,255,255) 0%, rgba(253,254,255,255) 35%, rgba(202,237,249,255) 160%);
  color: var(--text-color);
  /*background: url(../img/background/light-blue-1.jpg);*/
}
header{
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 30px 18%;
  transition: 3s;
}
.logo img{
  max-width: 100%;
  width: 150px;
  height: auto;
}
.navlist{
  display: flex;
  text-decoration: none;
}
.navlist li{
  position: relative;
  text-decoration: none;
}
.navlist a{
  font-size: var(--p-font);
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 27px;
  text-decoration: none;
}
.navlist a::after{
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #33c4f1;
 /*background: var(--main-color);*/
  bottom: -3px;
  left: 0;
  transition: ease .40s;
}
.navlist a:hover::after{
  width: 100%;
}
#menu-icon{
  font-size: 35px;
  color: var(--text-color);
  z-index: 10001;
  cursor: pointer;
  display: none;
}
.top-btn{
  display: inline-block;
  padding: 9px 30px;
  background: transparent;
  border: 2px solid var(--main-color);
  border-radius: 30px;
  color: var(--text-color);
  letter-spacing: 1px;
  font-size: var(--p-font);
  font-weight: 500;
  transition: ease .50s;
}
.top-btn:hover{
  transform: scale(1.1);
  background: var(--main-color);
  border: 2px solid var(--main-color);
  color: var(--bg-color);
}
section{
  padding: 80px 8%;/*100px 18% */
}
.home{
  min-height: 100vh;
  height: 100%;
  width: 100%;
  /*padding: 90px 100px 100px 100px; */ /*animated background tweaking starts below*/
  padding-top: 90px;
  padding-bottom: 10px;
  padding-left: 100px;
  padding-right: 100px;
  /*position: absolute;*/
  overflow: hidden;
  background:  linear-gradient(90deg, rgba(199,235,247,255) 0%, rgba(253,254,255,255) 35%, rgba(202,237,249,255) 160%);
  /*background: #ffffff;*/
  /* background: url(../img/logo/elitesphere-blue-logo.png); */
  /*background-size: cover;*/
  /*background-position: center;*/
  /*position: relative;*/
  /*display: grid;*/
  /*grid-template-columns: repeat(2, 1fr);*/
  text-align: center;
  /*grid-gap: 4rem;*/
}
.home-text div{
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 6px solid #e19c30; /* Original rgba(255,255,255,0.8) */
}
.home-text div:nth-child(1){
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
}
.home-text div:nth-child(2){
    top: 70%;
    left: 50%;
    animation: animate 7s linear infinite;
}
.home-text div:nth-child(3){
    top: 17%;
    left: 6%;
    animation: animate 9s linear infinite;
}
.home-text div:nth-child(4){
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
}
.home-text div:nth-child(5){
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
}
.home-text div:nth-child(6){
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}
.home-text div:nth-child(7){
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}
.home-text div:nth-child(8){
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
}
.home-text div:nth-child(9){
    top: 90%;
    left: 25%;
    animation: animate 9s linear infinite;
}
.home-text div:nth-child(10){
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
}
@keyframes animate{
    0%{
        transform: scale(0) translateY(0) rotate(0);
        opacity: 1;
    }
    100%{
        transform: scale(1.3) translateY(-90px) rotate(360deg);
        opacity: 0;
    }
}
/*End of animated background tweaking */

.home-text h1{
  margin: 10px 0px 25px;
  font-size: var(--big-font);
  line-height: 0.5;
  font-weight: 500;
}
.home-text h2{
    padding: 10px 6%;
}
.home-text h5{
  margin-bottom: 23px;
  font-size: 19px;
  font-weight: 500;
 }
 span{
   /*color: var(--main-color);*/
   color: #33c4f1; /*#e19c30*/
}
.hidden{
    display: none;
    visibility: hidden;
    
}
.home-text h3{
  color: var(--main-color);
  font-size: 20px;
  font-weight: 500;
}
.home-text p{
font-size: var(--p-font);
color: var(--secound-color);
line-height: 28px;
margin-bottom: 0px;/* oroginaly 20px */
padding: 10px 6%;
}
.social a{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*background: rgba(128,103,240,1);*/
  /*background: #e19c30;*/
  background: #33c4f1;
  font-size: 17px;
  /*color: var(--bg-color);*/
  color: #ffffff;
  margin-right: 0;
  margin-bottom: 0; /* original 30px */
  text-decoration: none;
}
.social a:hover{
  transform: scale(1.1);
  background: #fff; /*var(--main-color); */
  transition: .5s;
}
.bttn{
  display:inline-block;
  color: var(--bg-color);
  /*background: var(--main-color);*/
  background: #33c4f1;
  font-size: var(--p-font);
  padding: 10px 40px;/* original 10px 40px */
  font-weight: 500;
  line-height: 24px;
  border-radius: 30px;
  transition: ease .40s;
  text-decoration: none;
}
.bttn:hover{
  transform: scale(1.1);
}
.home-img img{
  max-width: 100%;
  width: 440px;/*original is 540px */
  height: auto;
}
header.sticky{
  background: var(--bg-color);
  padding: 13px 18%;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}
/* Blog section */
.container-1{
	width: 100%;
}
.container-1 .row-1{
	width: 80%;
	margin: auto;
}
.container-1 .row-1 .header-1{
	width: 80%;/*initialy 60% */
	text-align: center;
	margin: auto;
}
.container-1 .row-1 .header-1 h1{
	padding-top: 30px;
	font-size: 45px;
	color: #33c4f1;
}
.container-1 .row-1 .header-1 p{
    text-align: center; /*digo addedd*/
	margin-top: 15px;
	font-size: 18px;
	line-height: 1.5;
	color: #6e6e6e;
}
.content{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}
.content .card{
	flex: 1;
	margin: 50px 20px;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
	background-color: #fff;
}
.container-1 .card img{
	width: 80px; /*original 100% */
	height: auto;
	margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.container-1 .card h4{
	margin-top: 10px;
	margin-left: 10px;
	font-size: 18px;
}
.content .card p{
	font-size: 15px;
	color: #6e6e6e;
	line-height: 1.5;
	padding: 10px;
}
.wrapper {
  position: relative;
  width: 80vw;
  transform:  translate(-50%, -50%);
  top:50%;
  left: 50%;
  display: flex;
  justify-content: space-around;
  gap: 10px;
  padding-top: 0;
}

.container-0 {
  width: 28vmin;
  height: 28vmin;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1em 0;
  position: relative;
  font-size: 18px;
  border-radius: 0.5em;
  background-color: #21242b;
  border-bottom: 10px solid #33c4f1;
}

.wrapper i{
  color: #188cf9;
  font-size: 2.5em;
  text-align: center;

}

span.num {
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
}

span.text {
  color: #e0e0e0;
  font-size: 1.1em;
  text-align: center;
  pad: 0.7em 0;
  font-weight: 400;
  line-height: 0;
}

/* Core value section */

.main{
    width:100%;
    height: auto;
    text-align: center;
    position: relative;
    cursor: pointer;
    margin-bottom: 50px;
    background: #fff;
}
.service{
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    /*position: absolute;*/
    bottom: 0;
    z-index: 1;
    box-shadow: 0 0 20px -15px #030380;
    transition: transform .8s;
}
.service-logo{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: -90px auto 0;
    background: #fff;
    border: 18px solid rgba(235, 251, 255, 255);
}
.service-logo img{
    width: 50px;
    margin-top: 20px;
    transition: transform 1s;
}
.service h4{
    height: 35px;
    width: 80%;
    background: #fff;
    margin: 50px auto;
    position: relative;
}
.service h4::after{
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, #fff, #007bff);
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: -1;
}
.service h4::before{
    content: '';
    width: 40px;
    height: 30px;
    background: linear-gradient(to right, #007bff, #fff);
    position: absolute;
    left: -5px;
    bottom: -5px;
    z-index: -1;
}
.shadowOne{
    height: 200px;
    width: 80%;
    background: #fff;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 10%;
    z-index: -1;
    box-shadow: 0 0 20px -15px #030380;
    transition: transform .8s;
}
.shadowTwo{
    height: 200px;
    width: 64%;
    background: #fff;
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    left: 18%;
    z-index: -2;
}
.main:hover .service{
    transform: translateY(-50px);
}
.main:hover .shadowOne{
    transform: translateY(-25px);
}
.main:hover img{
    transform: rotate(360deg);
}

.items{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, auto));
  grid-gap: 2rem;
  align-items: center;
  text-align: center;
}
.sub-box{
  padding: 45px 4px 45px 45px;
  transition: ease .50s;
  cursor: pointer;
}
.sub-img img{
  max-width: 100%;
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}
.sub-box h3{
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
}
.sub-box p{
  font-size: var(--p-font);
  color: var(--secound-color);
  line-height: 29px;
}
.sub-box:hover{
  background: #ffffff;
  box-shadow: 18px 0px 87px 0px  rgb(10 15 70 / 7%);
  border-radius: 12px;
  will-change: transform;
  transform: perspective(1000px) rotateX(4.80deg) rotateY(10.23deg) scale3d(1.05,1.05,1.05);
}

.about{
    justify-content: center;
    align-items: center;
	background: #fff;
	display: grid;
	grid-template-columns: repeat(2, 2fr);
	align-items: center;
	grid-gap: 2rem;
	margin: 40px 40px;
	border-radius: 15px;
}
.br-color{
    background:  linear-gradient(90deg, rgba(235,251,255,255) 0%, rgba(253,254,255,255) 35%, rgba(202,237,249,255) 160%);
}
.about-img img{
	max-width: 100%;
	width: 540px;
	height: auto;
	border-radius: 50%;
	background: #33c4f1;
}
.about-text h2{
	font-size: var(--h2-font);
	font-weight: 500;
	margin: 8px 0px 25px;
	line-height: 1.1;
}
.about-text h3{
	color: var(--main-color);
	font-size: 20px;
	font-weight: 500;	
}
.about-text p{
	max-width: 550px;
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 28px;
	margin-bottom: 45px;
}

.heading{
	text-align: center;
}
.heading h2{
	font-size: var(--h2-font);
	font-weight: 500;
	margin: 7px 0px 20px;
	line-height: 1.1;
}
.heading h3{
	color: var(--main-color);
	font-size: 20px;
	font-weight: 500;
}
.heading p{
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 28px;
}
.portfolio-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, auto));
	grid-gap: 2rem;
	align-items: center;
	margin-top: 5rem;
	text-align: center;
	cursor: pointer;
}
.col{
	position: relative;
}
.col img{
	max-width: 100%;
	width: 550px;
	height: auto;
	object-fit: cover;
	border-radius: 12px;	
}
.layer{
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 12px;
	transition: all .40s;
}
.layer:hover{
	background: linear-gradient(rgba(0,0,0,0.5) 0%, #191919);
}
.layer h3{
	position: absolute;
	width: 100%;
	font-size: 25px;
	font-weight: 500;
	color: var(--bg-color);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: all .40s;
}
.layer:hover h3{
	bottom: 52%;
	opacity: 1;
}
.layer h5{
	position: absolute;
	width: 100%;
	font-size: 17px;
	font-weight: 500;
	color: var(--bg-color);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: all .40s;
}
.layer:hover h5{
	bottom: 48%;
	opacity: 1;
}
.service-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, auto));
	grid-gap: 2rem;
	align-items: center;
	margin-top: 5rem;
}
.row-3{
	background: #ffffff;
	box-shadow: 18px 0px 87px 0px rgb(10 15 70 / 7%);
	border-radius: 12px;
	padding: 45px 45px 45px 45px;
	transition: ease .45s;
	cursor: pointer;
}
.s img{
	height: 65px;
	width: 65px;
	background: #f75124;
	padding: 15px;
	border-radius: 50%;
	margin-bottom: 20px;
}
.s.s-two img{
	background: #baebcd;
}
.s.s-three img{
	background: #d9d1fa;
}
.s.s-four img{
	background: #faedce;
}
.s.s-five img{
	background: #f7f7f7;
}
.row-3 h3{
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 2px;
}
.row-3 h5{
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 19px;
}
.row-3 p{
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 28px;
	padding-right: 15px;
}
.row-3:hover{
	will-change: transform;
	transform: perspective(1000px) rotateX(4.80deg) rotateY(10.23deg) scale3d(1.05,1.05,1.05);
}
.cta-box{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, auto));
	grid-gap: 2rem;
	align-items: center;
	margin-top: 5rem;
	text-align: center;
}
.wrap{
	background: #ffffff;
	box-shadow: 18px 0px 87px 0px rgb(10 15 70 / 7%);
	border-radius: 12px;
	padding: 50px 50px 50px 50px;
	transition: ease .40s;
	cursor: ponter;
}
.one{
	background: #e19c30;
}
.two{
	background: #B2BEB5; /*#d9d1fa original color code */
}
.three{
	background: #F0DC82;
}
.wrap h3{
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 2px;
}
.wrap p{
	font-size: var(--p-font);
}
.contact{
	background: #1B1E23;
	width: 100%;/*initialy 64%*/
	/*margin: 100px auto;*/
	/*padding: 70px 150px;*/
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	/*border-radius: 12px;*/
	/*background-image: url(../img/background/background.png);*/
	background-size: cover;
}
.center h3{
	font-size: 30px;
	font-weight: 500;
	margin-bottom: 3px;
	color: var(--bg-color);
}
.center p{
	font-size: var(--p-font);
	color: var(--bg-color);
	line-height: 26px;
	margin-bottom: 25px;
}
.contact .action form input[type="email"] {
	max-width: 100%;
	width: 370px;/* reasonable width 300px; */
	padding: 12px 15px;
	background: var(--bg-color);
	color: var(--text-color);
	border: none;
	outline: none;
	margin: 0 10px 20px 0;
	border-radius: 10px;
}
.contact .action form input[type="submit"] {
	padding: 12px 40px;
	/*background: var(--main-color); */
	background: #33c4f1;
	color: var(--bg-color);
	border: none;
	outline: none;
	margin: 0 10px 20px 0;
	border-radius: 30px;
	cursor: pointer;
}
/* ---Tewaking --- */
.contact .action form input[type="text"] {
	max-width: 100%;
	width: 175px; /* reasonable width 300px; */
	padding: 12px 15px;
	background: var(--bg-color);
	color: var(--text-color);
	border: none;
	outline: none;
	margin: 0 10px 20px 0;
	border-radius: 10px;
}
.contact .action form textarea {
	max-width: 100%;
	width: 370px;
	padding: 12px 15px;
	background: var(--bg-color);
	color: var(--text-color);
	border: none;
	outline: none;
	margin: 0 10px 20px 0;
	border-radius: 10px;
}
.color-this p{
	color: #ffffff;
	text-align: center;
	justify-content: center;
	padding: 0;
	margin: 0;
}
.color-this a{
    text-decoration: none;
    padding: 0;
    margin: 0;
}
/* --- End of tweaking --- */

/* message alert styling 
.alert-success{
    z-index: 1;
    Background: #D4edda;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 40px;
    width: 95%;
    border-left: 8px solid #3ad66e;
    border-radius: 15px;
}
.alert-error{
    z-index: 1;
    Background: #fff3cd;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 40px;
    width: 95%;
    border-left: 8px solid #ffa502;
    border-radius: 15px;
}
 end of message alert stylin */

/*.ends{
	text-align: center;
	padding: 40px;
	background: #baebcd;
}
.ends p{
	font-size: var(--p-font);
	letter-spacing: 1px;
}*/
/*
.popup{
    width: 400px;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}
.open-popup{
    visibility: visible;
    top: 50%;
    transform: translate(-50%,-50%) scale(1);
}
.popup img{
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.popup h2{
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
}
.popup button{
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background: #6fd649;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}
*/
.to-top{
    background: #fff;
    position: fixed;
    button: 16px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1f1f1f;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all .4s;
}
.to-top.active{
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

@media (max-width: 1425px){
	header{
		padding: 16px 3%;
		transition: .3s;
	}
	header.sticky{
		padding: 10px 3%;
		transition: .3s;
	}
	section{
		padding: 70px 3%;
		transition: .3s;
	}
	.contact{
		width: 100%; /*original was 95% */
		transition: .3s;
	}
	:root{
		--big-font: 4rem;
		--h2-font: 2.3rem;
		--p-font: 1rem;
		transition: .3s;
	}
	.service-content .row-3 p{
	    padding-right: 55px;
	}
	.service-content .row-3 h3{
	    padding-right: 45px;
	}
}
@media (max-width: 970px){
	#menu-icon{
		display: block;
	}
	.home{
		padding: 50px 30px 20px 20px;
		/*min-height: 80vh;*/
	}
	.navlist{
		position: absolute;
		top: -600px;
		left: 0;
		right: 0;
		flex-direction: column;
		/*background: var(--main-color);*/
		background-color: rgba(255,255,255,0.7);
		text-align: right;
		transition: all .40s;
	}
	.navlist a{
		display: block;
		padding: 0.2rem;/* original 1.2re */
		margin: 0.3rem; /* original 1.5 */
		border-right: 2px solid var(--bg-color);
		color: var(--bg-colr);
		font-size: 1.5rem;
	}
	.navlist a:hover{
		background-color: rgba(255,255,255,0.5);
		color: #33c4f1;
	}
	.navlist a::after{
		display: none;
	}
	.navlist.active{
		top: 100%;
	}
}

@media (max-width: 800px){
	.home{
		/*grid-template-columns: 1fr;*/
		/*min-height: 130vh;*/
		/*grid-gap: 1rem;*/
	}
	.home-text{
	    padding-top: 55px;
		/*padding: 55px; original is 55px */
	}
	.home-img{
		text-align: center;
	}
	.home-img img{
		width: 440px;
		height: auto;
	}
	.about{
		grid-template-columns: 1fr;
		margin: 30px 10px;
	}
	.about-img{
		text-align: center;
		margin-bottom: 30px;
	}
	:root{
		--big-font: 3.4rem;
		--h2-font: 2rem;
	}
	section{
		padding: 65px 3%;
		transition: .3s;
	}
}

@media screen and (max-width: 768px){
	.content{
		flex-direction: column;
	}
	.content-1{
		flex-direction: column;
	}
}

@media (max-width: 540px){
	.contact .action form input[type="email"] {
		width: 300px;
	}
	.contact .action form input[type="text"] {
		width: 300px;
	}
	.contact .action form textarea {
		width: 300px;
}
}






@media screen and (max-width:1024px) {
  .wrapper {
    width: 85vw;
  }
  .container-0{
    height: 26vmin;
    width: 26vmin;
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper{
    width: 90vw;
    flex-wrap: wrap;
    gap: 30px;
  }

  .container-0 {
    width: calc(50% -40px);
    height: 30vmin;
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .wrapper{
    gap: 15px;
  }

  .container-0 {
    width: 100%;
    height: 25vmin;
    font-size: 8px;
  }
}



  
  
