@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');

body{
	line-height: 1.5;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;

}
body.hidden-scrolling{
	overflow-y: hidden;
}
*{
	margin:0;
	box-sizing: border-box;
}
.container{
	/* max-width: 1170px; */
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
/*header*/
.header{
	position: absolute;
	/* width: 100%; */
	left:0;
	top:0;
	z-index: 99;
	/* padding: 15px; */
}
.header-main{
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 4px;
	width: 100%;
    position: fixed;
}
.header .logo{
	padding: 0 15px;
}
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #ff5700;
	font-weight: 600;
}
.imagelogo{
height: 60px;
width: 132px;

}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 30px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 16px;
	color: #000000;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #ff5700;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #ff5700;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #ff5700;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	/* background-color: #ffffff; */
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	/* align-items: center; */
	justify-content: center;
}
.header .close-nav-menu {
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}



/* HOME SECTION  ------------------------*/

.slider{
	position: relative;
	width:100%;
	background: #2c3e50; /* darckblue */
	color: black;
	
}
.myslide{
	height: 650px;
	display: none;
	overflow: hidden;
}

.prev, .next{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 34px;
	padding: 15px;
	cursor: pointer;
	color: #ffffff;
	transition: 0.1s;
	user-select: none;
}
.prev:hover, .next:hover{
	color: #ff5500; /* blue */
}
.next{
	right: 0;
}
.dotsbox{
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: 20px;
	cursor: pointer;
}
.dot{
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 3px solid #ffffff;
	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
}
/* /2 */

/* javascript */
.active, .dot:hover{
	border-color: #ff5500; /* blue */
}
/* /javascript */

/* muslide add fade */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}
/* /muslide add fade */

/* 3 */
.txt{
	position: absolute;
	color: #000000;
	letter-spacing: 2px;
	line-height: 35px;
	top: 40%;
	left: 15%;
	-webkit-animation-name: posi;
  	-webkit-animation-duration: 2s;
  	animation-name: posi;
  	animation-duration: 2s;
	z-index: 1;
}

@-webkit-keyframes posi {
  from {left: 25%;}
  to {left: 15%;}
}


@keyframes posi {
  from {left: 25%;}
  to {left: 15%;}
}

.txt h1{
	color: #ff5100; /* blue */
	font-size: 50px;
	margin-bottom: 20px;
	text-shadow: 2px 2px 8px rgb(0, 0, 0) ;
}
.txt p{
	font-weight: bold;
	font-size: 20px;
	color: white;
}
/* /3 */

/* 4 */
.img{
	width: 100%;
	height: 100px;
	object-fit: cover;
	object-position: center;
}

#vid{
	width: 100%;
	height: 500px;
	object-fit: cover;
	object-position: center;

}

@-webkit-keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}


@keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}
/* /4 */



/* 5 */
@media screen and (max-width: 800px){
	.myslide{
		height: 500px;
	}
	.txt{
		letter-spacing: 2px;
		line-height: 25px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-animation-name: posi2;
		-webkit-animation-duration: 2s;
		animation-name: posi2;
		animation-duration: 2s;
	}

	@-webkit-keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}


	@keyframes posi2 {
	  from {top: 35%;}
	  to {top: 50%;}
	}

	.txt h1{
		font-size: 40px;
	}
	.txt p{
		font-size: 13px;
	}

}
/* /5 */

/* 6 */
@media screen and (max-width: 520px){
	.txt h1{
		font-size: 30px;
		margin-bottom: 20px;
	}
	
}
/* /6 */

@media screen and (max-width: 985px){
.imagelogo{
	height: 38px;
	  width: 80px;;
  } }
@media screen and (max-width: 385px){
	.dot{
		margin: 0 3px;
	}

	
}


/* scroll css */

@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-30%);
    }
  }
  
  .logos {
    overflow: hidden;
    padding: 60px 0;
    background: white;
    white-space: nowrap;
    position: relative;
  }
  
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  }
  
  .logos:hover .logos-slide {
    animation-play-state: paused;
  }
  
  .logos-slide {
    display: inline-flex;
    animation: 13s slide infinite linear;
  }
  
  .logos-slide img {
    height: 80px;
    margin: 0 40px;
  }
  

  /* section about */


  .textbig {
    font-size: 23px;
}

.textsmall {
    font-size: 15px;
}


.section {
   /* height: 100vh; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 80%;
    margin: auto;
	background-image: url(https://img.freepik.com/free-vector/white-technology-background_23-2148390327.jpg?size=626&ext=jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.leftt {
    flex-direction: row-reverse;
background-color: rgba(255, 194, 101, 0.66);
}

.para {
    padding: 0 65px;
}

.sectag {
    padding: 5px 0;
	text-align: center;
	font-weight: 900px;
	font-size: 186%;
}
.secsubtag {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-transform: capitalize;
}

.imgggg {
    width: 350px !important;
}
.notail{
	all:unset
}
.btnabout{
	padding: 8px 23px;
	border: none;
	border-radius: 16px;
	background-color: orangered;
	margin: 15px 15px;
	margin-top: 30px;
	top: 50%;
    position: relative;
    left: 50%;
    transform: translate(-68px, -13px);
	transition: 0.5s;
	font-weight: 600;
}
.btnabout:hover{
	scale: 1.25;
	background-color: orangered;
	font-weight: 700;
}

@media only screen and (max-width:1140px) {
.section{
	flex-direction: column-reverse;

}
.para{
	padding: 0px;
}}


@media only screen and (max-width:540px) {

	.imgggg {
		width: 250px !important;
	}

}



/* contact form  */

.formc {
	min-height: 100vh;
	width: 100%;
	background: url(https://img.freepik.com/free-vector/stylish-line-pattern-background_361591-1176.jpg?w=1060&t=st=1709358529~exp=1709359129~hmac=15ccac499843a8a96d1601bab15e172a69688eae5bea45b132e2dc2a38258086);
	background-repeat: no-repeat;
	background-size: cover;

	display: flex;
	align-items: center;
	justify-content: center;
  }

.container2 {
	max-width: 1100px;
	width: 100%;
	background: #fff;
	border-radius: 6px;
	padding: 20px 60px 30px 40px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .container2 .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  .container2 .content .left-side {
	width: 25%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
	position: relative;
  }
  .content .left-side::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 2px;
	right: -15px;
	top: 50%;
	transform: translateY(-50%);
	background: #afafb6;
  }
  .content .left-side .details {
	margin: 14px;
	text-align: center;
  }
  .content .left-side .details i {
	font-size: 30px;
	color: orangered;
	margin-bottom: 10px;
  }
  .content .left-side .details .topic {
	font-size: 18px;
	font-weight: 500;
  }
  .content .left-side .details .text-one,
  .content .left-side .details .text-two {
	font-size: 14px;
	color: #afafb6;
  }
  
  .container2 .content .right-side {
	width: 75%;
	margin-left: 75px;
  }
  .content .right-side .topic-text {
	font-size: 23px;
	font-weight: 600;
	color: orangered;
  }
  .right-side .input-box {
	height: 55px;
	width: 100%;
	margin: 12px 0;
  }
  .right-side .input-box input,
  .right-side .input-box textarea {
	height: 100%;
	width: 100%;
	border: none;
	outline: none;
	font-size: 16px;
	background: #f0f1f8;
	border-radius: 6px;
	padding: 0 15px;
	resize: none;
  }
  .right-side .message-box {
	min-height: 110px;
  }
  .right-side .input-box textarea {
	padding-top: 6px;
  }
  .right-side .button {
	display: inline-block;
	margin-top: 12px;
  }
  .right-side .button input[type="button"] {
	color: #fff;
	font-size: 18px;
	outline: none;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	background: orangered;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  .button input[type="button"]:hover {
	background: #bc4b29;
  }
  
  @media (max-width: 950px) {
	.container2 {
	  width: 90%;
	  padding: 30px 40px 40px 35px;
	}
	.container2 .content .right-side {
	  width: 75%;
	  margin-left: 55px;
	}
  }
  @media (max-width: 820px) {
	.container2 {
	  margin: 40px 0;
	  height: 100%;
	}
	.container2 .content {
	  flex-direction: column-reverse;
	}
	.container2 .content .left-side {
	  width: 100%;
	  flex-direction: row;
	  margin-top: 40px;
	  justify-content: center;
	  flex-wrap: wrap;
	}
	.container2 .content .left-side::before {
	  display: none;
	}
	.container2 .content .right-side {
	  width: 100%;
	  margin-left: 0;
	}
  }
  
  /* /// */
  
/* card css */

.cardsec{
	margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #ff622dd0;
    background-image: linear-gradient(to right, #ff9959d0 0%, #ff622dd0 100%) , url(https://img.freepik.com/free-vector/stylish-hexagonal-line-pattern-background_1017-19742.jpg?w=1060&t=st=1709372566~exp=1709373166~hmac=54da3ad8f1e02817acb2be01f9b1e09aa1f2c45fe4089065ea8a12d814afa619);
}
.cardwhole{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px 35px;
    padding: 100px 0px ;
}

.cardwhole .card{ 
 position: relative;
 width: 260px;
 height: 280px;
 display: flex;
 justify-content: center;
 align-items: flex-start;
 background: linear-gradient(to bottom, #ffffff 0%, #ffcbaf 100%);
 border-radius: 20px;
 box-shadow: 0px 35px 80px rgba(0,0,0,0.15);
 transition: 0.5s;
}


@media screen and (max-width:615px) and (min-width:555px) {
    

.cardwhole .card{ 
    width: 230px;  
}

}
@media screen and (max-width:750px){
.colum1 p{
    font-size: 10px !important;
    padding: 12px 12px !important;
    }

    .colum1 h2{
        font-weight: bolder;
        font-size: 18px !important;
        }
}


.cardwhole:hover{
gap: 103px 35px;}
.cardwhole .card:hover{ 
height: 320px;

}

.cardwhole .card .imgbx{ 
    position: absolute;
    height: 220px;
    width: 220px;
    background: black;
border-radius: 50%;
border: 2px solid rgb(0, 0, 0);
top: -20px;
transition: 0.5s;
overflow: hidden;
box-shadow: 0px 35px 80px rgba(255, 132, 0, 0.15);

}

.cardwhole .card:hover .imgbx{ 

    top: -100px;
    scale: 0.88;
    box-shadow: 0px 35px 80px rgba(0,0,0,0.15);

}

.cardwhole .card .imgbx img{ 

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cardwhole .card .contentcard{
    position: absolute;
    width: 100%;
    padding: 0 25px;
    text-align: center;
    top: 225px;
    height: 30px;
    overflow: hidden;
    transition: 0.5s;
}

.cardwhole .card:hover .contentcard{
    height: 234px;
    top: 150px;
}
.cardwhole .card .contentcard h2 {
color: var(--clr);
    font-size: 1.3em;
    font-weight: 700;
}
.cardwhole .card .contentcard p {
    padding: 0 15px;
    color: #292929;
    margin-top: 10px;
}

.cardwhole .card .contentcard a{
position: relative;
top: 15px;
display: inline-block;
padding: 12px 25px;
background: var(--clr);
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: 500;
}

.headingcard{
    height: 190px;
    width: 100%;
    top: 0;
    display: flex;
    flex-direction: row;
}
.strokecus{
    color: #ffffff00 !important;
    -webkit-text-stroke: 2px #ff5100;
    font-size: 6vw;
    line-height: 1.2;
    user-select: none;
    margin-bottom: -60px;

}
.colum1{
    width: 64.666%;
    top: 0;
    text-align: center;
    margin: 10px 10px;
    padding: 10px 10px;
}
.colum2{
    width: 31.333%;
}
.colum1 p{
    padding: 22px 32px;
    font-size: 16px;
}
.colum1 h2{
font-weight: bolder;
font-size: 26px;
}
@media screen and (max-width:330px){
	.cardwhole{
        margin-top: 40px;
    }
}

/* donut css  */
.donut{
	background-image: url(https://img.freepik.com/free-vector/futuristic-white-technology-background_23-2148390336.jpg?w=900&t=st=1709316844~exp=1709317444~hmac=16d9700dae4a022254311838b4a2ac1eda186b00e0ad58927c1419e9e8de34de) ;
	background-repeat: no-repeat;
	background-size: cover;
}
.chart-heading {
	font-family: "Rubik", sans-serif;
	color: #023047;
	text-transform: uppercase;
	font-size: 24px;
	text-align: center;
  }
  
  .chart-container {
	width: 200px;
	background-image: url(https://img.freepik.com/free-vector/futuristic-white-technology-background_23-2148390336.jpg?w=900&t=st=1709316844~exp=1709317444~hmac=16d9700dae4a022254311838b4a2ac1eda186b00e0ad58927c1419e9e8de34de) ;
	background-repeat: no-repeat;
	background-size: cover;
  }
  
  .programming-stats {
	font-family: "Rubik", sans-serif;
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0 auto;
	width: fit-content;
	box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	padding: 8px 32px;
	top: -40px;
	position: relative;
	background: white;
	color: #023047;
	transition: all 400ms ease;
  }
  
  .programming-stats:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 16px -7px rgba(0, 0, 0, 0.3);
  }
  
  .programming-stats .details ul {
	list-style: none;
	padding: 0;
  }
  
  .programming-stats .details ul li {
	font-size: 16px;
	margin: 12px 0;
	text-transform: uppercase;
  }
  
  .programming-stats .details .percentage {
	font-weight: 700;
	color: #ff4400;
  }
  
  @media screen and (max-width:420px){
	.chart-container {
		width: 130px !important;}

		.programming-stats {
			padding: 8px 0 !important;
		}
  }
  /* counter css */

  :root {
	--container: 112rem;
	--m-auto: 0 auto;
	--white: #fff;
	--bg-hero: #e27d46 ;
	--bg-counter: #714923;
	--bg-item: #ff5a13;
  }
 

  #section_counter {
	padding: 5rem 0;
	/* background-color: rgb(176, 176, 174); */
  }

  /* .bgcuuu{
	background-image: url(https://img.freepik.com/free-vector/futuristic-white-technology-background_23-2148390336.jpg?w=900&t=st=1709316844~exp=1709317444~hmac=16d9700dae4a022254311838b4a2ac1eda186b00e0ad58927c1419e9e8de34de) ;
	background-repeat: no-repeat;
	background-size: cover;
  } */
  #section_counter .section-heading {
	padding-bottom: 5rem;
	text-align: center;
	letter-spacing: 0.1rem;
  }
  .counter-grid {
	display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
	gap: 20px;
	
  }
  
  .counter-item {
	background: var(--bg-item);
	padding: 0.4rem 1.4rem;
	text-align: center;
	border-radius: 1rem;
	transition: all 0.5s ease-in-out;
	transform: translateY(6rem);
	width: 260px
  }
  .counter-img {
	width: 7rem;
	height: 7rem;
	object-fit: contain;
	filter: drop-shadow(0 0 0.2rem var(--bg-hero));
  }
  .counter-img:nth-child(1) {
	width: 5rem;
	height: auto;
  }
  .counter-item:hover {
	background: var(--bg-hero);
	cursor: pointer;
	transition: all 0.5s ease-in-out;
  }
  .counter-item .counter {
	font-size: 4.5rem;
	color: transparent;
	color: transparent;
	letter-spacing: 0.5rem;
	-webkit-text-stroke-width: 0.15rem;
	-moz-text-stroke-width: 0.15rem;
	-ms-text-stroke-width: 0.15rem;
	-o-text-stroke-width: 0.15rem;
	-webkit-text-stroke-color: var(--white);
	-moz-text-stroke-color: var(--white);
	-ms-text-stroke-color: var(--white);
	-o-text-stroke-color: var(--white);
  }
  
  @keyframes slide-up {
	0% {
	  transform: translateY(6rem);
	}
	100% {
	  transform: translateY(0rem);
	}
  }

/* map css  */




.txttt{
    text-align: center;
    color: rgb(0, 0, 0);
    /* text-shadow: 2px 0 #fff , -2px 0 #fff , 0 2px  #fff , 0 -2px #fff,
    1px 1px #fff , -1px -1px #fff , 1px -1px #fff  , -1px 1px #fff  ; */
    /* -webkit-text-stroke: #000000 0.2px; */
}

.stroke{
    color: #ffffff00 !important;
    -webkit-text-stroke: 1px #f68206;
    font-size: 6vw;
    line-height: 1.5;
    user-select: none;
    margin-bottom: -63px;
    margin-top: 0;
    text-align: center;
}
.bold{
    text-align: center;
	font-weight: bolder;
}

@media screen and (max-width: 340px) {
    .stroke{
        margin-bottom: -27px;
    }
}


.india{
    width: 100%;    
    max-width: 1100px;
    margin: 0 auto;
    padding: 1em;
    position: relative;
    
}

.india img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: -10%;
    filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.668));
}


.pin{
    background: #ffffff;
    position: absolute;
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
}

.pin::before{
    content: '';
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 1.3s ease-in-out infinite;

}

.pin span{
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 0.5em;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.59);
    border-radius: 3em;
    padding: 0.3em 0.6em;
    font-size: 1em;
    font-weight: bolder;
}

.cg{
    top: 49%;
    left: 49%;
}


.ng{
    top: 57%;
    left: 23%;
}

.ind{
    top: 48%;
    left: 28%;
}
.odi{
    top: 56%;
    left: 57%;
}
.jh{
    top: 44%;
    left: 58%;
}
.upmp{
    top: 38%;
    left: 40%;
}
.bh{
    top: 36%;
    left: 58%;
}
.bho{
    top: 45%;
    left: 39%;
}
.and{
    top: 71%;
    left: 39%;
}
.rjn{
    top: 52%;
    left: 45%;
}

.gg{
    top: 56%;
    left: 46%;
}
.bi{
    top: 41%;
    left: 36%;
}
.ko{
    top: 46%;
    left: 52%;
}
.viz{
	top: 64%;
    left: 48%;
}
.jhar{
	top: 51%;
    left: 56%;
}
.tuni{
    top: 67%;
    left: 45%;
}
@keyframes pulse{
    100%{
        opacity: 0;
        transform:
            translate(-50% , -50%)
            scale(2.5);
		color: #000000;        
    }
}

@media screen and (max-width: 600px) {
    .india{
        font-size: 8px;
    }
}






/* footer css  */

footer{
	position: relative;
	bottom: 0px;
	width: 100%;
	background: #000000;
	color: white;
  }
  .main-content{
	display: flex;
  }
  .main-content .box{
	flex-basis: 50%;
	padding: 10px 20px;
  }
  .box h2{
	font-size: 1.125rem;
	font-weight: 600;
	text-transform: uppercase;
  }
  .box .content{
	margin: 20px 0 0 0;
	position: relative;
  }
  .box .content:before{
	position: absolute;
	content: '';
	top: -10px;
	height: 2px;
	width: 100%;
	background: #ff4800;
	;
  }
  .box .content:after{
	position: absolute;
	content: '';
	height: 2px;
	width: 15%;
	background: #ff9552;
	top: -10px;
  }
  .left .content p{
	text-align: justify;
  }
  .left .content .social{
	margin: 20px 0 0 0;
  }
  .left .content .social a{
	padding: 0 2px;
  }
  .left .content .social a span{
	height: 40px;
	width: 40px;
	background: #1a1a1a;
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	border-radius: 5px;
	transition: 0.3s;
  }
  .left .content .social a span:hover{
	background: #f12020;
  }
  .center .content .fas{
	font-size: 1.4375rem;
	background: #ffffff;
	height: 45px;
	width: 45px;
	line-height: 45px;
	text-align: center;
	border-radius: 50%;
	transition: 0.3s;
	cursor: pointer;
	color: black;
  }
  .center .content .fas:hover{
	background: #f12020;
  }
  .center .content .text{
	font-size: 1.0625rem;
	font-weight: 500;
	padding-left: 10px;
  }
  .center .content .phone{
	margin: 15px 0;
  }
  .right form .text{
	font-size: 1.0625rem;
	margin-bottom: 2px;
	color: #ffffff;
  }
  .right form .msg{
	margin-top: 10px;
  }
  .right form input, .right form textarea{
	width: 100%;
	font-size: 1.0625rem;
	background: white;
	padding-left: 10px;
	border: 1px solid #222222;
  }
  .right form input:focus,
  .right form textarea:focus{
	outline-color: #db6c34;
  }
  .right form input{
	height: 35px;
  }
  .right form .btn{
	margin-top: 10px;
  }
  .right form .btn button{
	height: 40px;
	width: 100%;
	border: none;
	outline: none;
	background: #ff4d00;
	font-size: 1.0625rem;
	font-weight: 500;
	cursor: pointer;
	color: #ffffff;
	transition: .3s;
  }
  .right form .btn button:hover{
	background: #8b3100;
  }
  .bottom center{
	padding: 5px;
	font-size: 0.9375rem;
	background: #151515;
  }
  .bottom center span{
	color: #656565;
  }
  .bottom center a{
	color: #6f72ff;
	text-decoration: none;
  }
  .bottom center a:hover{
	text-decoration: underline;
  }


  .right .content a{
color: white;
text-decoration: none;
  }
  @media screen and (max-width: 900px) {
	footer{
	  position: relative;
	  bottom: 0px;
	}
	.main-content{
	  flex-wrap: wrap;
	  flex-direction: column;
	}
	.main-content .box{
	  margin: 5px 0;
	}
  }


