body{
	min-height:  ;
	margin:0;
	padding:0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

	background-color:  #e4e3e3;
	background-size: cover;
	background-repeat: no-repeat;
}


nav .logo{
position: relative;
	float: left;
    top: 0;
}

nav .logo img{
	height: 80px;
	top: 0;
	transition: .3s;
    
}





@keyframes moving{
  from{transform: translateX(250px); opacity:0;}
  to{transform: translateX(0px); opacity:1;}
}





.fa-xmark{
	padding: 10px;
	margin-left: auto;
	font-size: 40px;
	color: rgb(0, 0, 0);
}



.black .fa-bars{
	color: white;
	font-size: 25px;
}

.fa-xmark:hover{
	color: rgb(209, 84, 43);
}

.fa-bars:hover{
	color: rgb(51, 206, 241);
}

.fa-bars{
	display: none !important;
	font-size: 30px;
	color: rgb(0, 0, 0);
}

@media(max-width:1200px){
	
	.navi-links a{
		display: none;
}

.fa-bars{
	display: block !important; 
}
}








/* --------------------navigation barrrrr------------------ */
 .black{
	background: rgba(24, 21, 21, 0.8);
	height: 85px;
	padding: 10px 60px;
	opacity: 0.8;
}

 .black .nav-links a{
    
    color:rgb(255, 255, 255);
	transition: .3s;

    }


.nav-links .active::after{
    width: 100%;
    
      left: 0;
	background-color: rgb(0, 137, 168);

}






nav .logo{
position: relative;
	float: left;
    top: 0;
}

nav .logo img{
	height: 80px;
	top: 0;
	transition: .3s;}
  
    nav{
      background: ;
       
          list-style: none;
    display:  ;
    position: fixed;
	top:0;
	background-color:  ;
	width:100%;
	height:  100px;
	z-index: 7;
	padding: 10px  90px;
	box-sizing:border-box;
	transition: .3s;
    margin-top: 0%;
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      float: right;
    }

    .logo {
      color: #fff;
      font-size: 1.6rem;
      font-weight: bold;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      color: black;
      text-decoration: none;
      font-size: 1.2rem;
      padding: 0.5rem;
      position: relative;
      	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #007596;
      left: 50%;
      bottom: 0;
      transition: all 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
      left: 0;
    }



    .arrow {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-right: 1px solid black;
      border-bottom: 1px solid black;
      transform: rotate(45deg);
      transition: transform 0.3s ease;
      line-height: 45px;
       margin-left: 5px
    }

       .arrow2 {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-right: 1px solid white;
      border-bottom: 1px solid white;
      transform: rotate( -45deg);
      transition: transform 0.3s ease;
      line-height: 45px;
       margin-left: 5px
    }

       .black .arrow {
      border-right: 2px solid white;
      border-bottom: 2px solid white;
    }

      .nav-links li:hover a .arrow{
      transform: rotate(225deg);
    }

    .nav-links li li:hover a .arrow2 {
  transform: rotate(145deg);
}



    /* Styled Dropdowns */

    .dropdown,
    .sub-dropdown {
      position: absolute;
      top: 150%;
      background:rgb(36, 36, 47);
      min-width:  250PX;
       max-width: 100%;
      display: none;
      flex-direction: column;
      border-radius: 8px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 999;
      padding: 0.5rem 0;
    }

    .dropdown li,
    .sub-dropdown li {
      list-style: none;
    }

      .dropdown a{
        font-size: 17px;
      }

        .sub-dropdown a{
        font-size: 15px;
      }

    .dropdown a,
    .sub-dropdown a {
      padding: 0.75rem 1.2rem;
      color: white;
      display: block;
      transition: background 0.3s;
      
    }

    .dropdown a:hover,
    .sub-dropdown a:hover {
      background:rgb(0, 0, 0);
    }

    .nav-links li:hover > .dropdown {
      display: flex;
    }

    .dropdown li {
      position: relative;
    }

    .dropdown li:hover > .sub-dropdown {
      display: flex;
      top: 0;
      right: 100%;
      left: auto;
      background:rgb(25, 27, 30);
    }

    /* Hamburger Menu */

   .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      cursor: pointer;
      width: 30px;
      height: 25px;
      gap: 5px;
    }

    .hamburger span {
      height: 3px;
      width: 100%;
      background: black;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    @media (max-width: 1168px) {
      .hamburger {
        display: flex;
      }



      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        background: #1e1e2f;
        width: 100%;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
      }

      .nav-links.open {
        max-height: 1000px;
      }

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        padding: 1rem;
        width: 100%;
        display: block;
      }

      .dropdown,
      .sub-dropdown {
        all: unset;
        display: none;
        flex-direction: column;
        background: #2e2e3e;
        width: 100%;
      }

      .nav-links li.active > .dropdown {
        display: flex;
      }

      .dropdown li.active > .sub-dropdown {
        display: flex;
      }

      .dropdown a,
      .sub-dropdown a {
        padding: 0.75rem 2rem;
      }
    }



/* 
nav ul li a:hover{
	background-color: #d98383;
	  	
} */
/* 
@media(max-width:1200px){

	nav .logo img{
		height: 80px;
	}

	nav ul li a{
		padding: 1px 12px;
		transition: .5s;
		font-size:16px;
		letter-spacing: .1px;
	}





}




@media(max-width:910px){

	nav .logo img{
		height: 65px;
	}

	nav ul{
		display:none;
	}
	

} */

.main.sec1{
	width:100%;
	height:100%;
	position: absolute;
	
	 ;
}



.sec1 .wrapper {
	position:  ;
	margin: 0;
}

	
.wrapper, .slide{
	/*overflow: hidden;*/
	width: 800px;
	height:100% ;
	margin-left:30px;
}	

.slide{
	overflow: hidden;
}

.slide .image{
	position:absolute;
	width: 750px;
	height:100% ;
	margin-left:30px;
	top:30%;
}	

.slide .image-data{
	position:absolute;
	top:50%;
	left:30%;
	transform:translate(-50%, -50%);
}

.image-data span.text{
	font-size: ;
	font-weight: 400;
	color: rgb(14, 247, 146);
}

.image-data h2{

}


a.l-button{
	display: inline-block;
	padding: 10px 20px;
	background: #fff;
	border-radius: 25px;
	color:#333;
	text-decoration: none;
	font-weight: bolder;
	text-transform: uppercase;
	 
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
a.l-button:hover{
	background:rgb(2, 151, 210);
	color: whitesmoke;
}






footer{
    background-color: #111;
	position: relative;
	display:block;
}
.footerContainer{
    width: 100%;
    padding: 70px 0px 20px ;
}


.socialIcons{
    display: flex;
    justify-content: center;
}
.socialIcons a{
    text-decoration: none;
    padding:  10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.socialIcons a i{
    font-size: 2em;
    color: black;
    opacity: 0,9;
}
/* Hover affect on social media icon */
.socialIcons a:hover{
    background-color: #111;
    transition: 0.5s;
}
.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}
.footerNav{
    margin: 30px 0;
}

.footerNav ul{
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.footerNav ul li a{
    color:white;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;

}
.footerNav ul li a:hover{
    opacity: 1;
}
.footerBottom{
    background-color: #000;
    padding: 5px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}




/*ABOUT US Page */



.abt-head {
	position: relative;
	width: 100%;
	background-imahe:#1aa3ff;
	background-image:linear-gradient(180deg, whitesmoke,  rgb(46, 116, 191));
	height: 400px;
	margin-top: 0;
	padding-top: 50px;
	 
	}
	
	.abt-head .us-txt{
		text-align: center;
		margin-top: 100px;
		font-size: 40px;
		font-family:  Verdana;
		font-weight: bold;
		 
	}
	
	
	.abt-head .cty-img{
		height: 400px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	
	.abt-us-txt-class{
		margin-top: 260px;
		margin-left: auto;
		margin-right: auto;
		width: 795px;
		text-align: center;
	}
	
	.abt-us-txt-class p{
		margin-left: 5px;
		font-size: 16px;
		font-family: Verdana  ;
		line-height: 1.5;
		text-align: center;
	
	}
	
	
	.vision{
		position: relative;
		margin-top:  60px;
		margin-left: auto;
		margin-right: auto;
		width: 795px;
		height:  fit-content;
		display: flex;
		/* background-color: #007289;
		background-size: 10%; */
 border-left:5px solid rgb(46, 106, 191);

		padding: 10px 10 10px;
		
	}
	
	
	
	
	  .vision-txt{
		margin-left: 20px;
	
	  }
	
	  .vision h1{
		color: rgb(46, 106, 191);
		
		font-family:Verdana;
		font-size:  20px;
		line-height: 2px;
	  } 
	
	  .vision p{
		line-height: 1.4;
		font-size: 17px;
		color: #555555;
	  }

	  @media(max-width:700px){
		.vision p{
			font-size: 5px;
	  }

	  .abt-us-txt-class{
		font-size: 2px;
	  }
	}
	
	
	
	
	
	  .vision-txt ul  {
	   margin-left: 30px;
		line-height: 25px;
		color: #555555;
	  }
	  
	  .Abt-sec2
	  {
		position: relative;
	display:block;
	  }
	




/* contact us*/

	  .cnt-sec1{
	 
	}
	
	.cnt-sec1 img{
	  height: 320px;
	  width: 680px;
	   
	}
	
	.blocks{
		position: absolute;
		
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 3;
		left: 0;
		right: 0;
	}
	
	.cnt-sec2{
		margin-top: -20px ; 
		
	}
	
	 
	
	.block{
		height: 200px;
		width: 230px;
		background-color: rgb(255, 255, 255);
		margin-left: 15px;
		text-align: center;
		
	}
	
	.cont-form{
		height: 580px;
	  width: 700px;
	  background-color: rgb(146, 168, 248);
	  position: absolute;
	  margin-top: 140px; 
	  z-index: 2;
	  left: 50%;
	  transform: translate(-50%, 0%);
	  
	}
	.cont-form form{
		text-align: center;
		margin-top: 140px;
	}
	
	.cont-form form p{
		font-size: 40px;
		font-weight: bolder;
		color: #0028b9;
font-family: inter;	}
	
	.cont-form form input{
	 width: 500px;
	 height: 40px;
	 margin-bottom: 25px;
	 border-radius: 3px;
	 border: none;
	 font-size: 15px;
	 padding: 5px 10px;
	}
	
	.cont-form form textarea{
		
	   }
	
	   .cont-form form [type="submit"]{
		width: 200px;
		background-color:#5a76c4 ;
		cursor: pointer;
		margin-top: 25px;
	   }
	   .cont-form form [type="submit"]:hover{
		background-color: #0273c4;
		color: white;
	   }
	   .cont-form form textarea{
		width: 500px;
	   height: 120px;
	   padding: 5px 10px;
	   box-sizing: border-box;
	   border: 2px solid #ccc;
	   border-radius: 4px;
	   background-color: #f8f8f8;
	   font-size: 16px;
	   resize: none;
	   font-family: inter;	
	   }
	
	   .block img{
		margin-top:15px ;
		width:50px;
	   }
	
	   .block h1{
		text-transform: uppercase;
		font-size: 17px;
		font-weight: bolder;
		 color: #333;
	
	   }
	
	   .block p{
		font-size: 14px;
		 line-height: 22px;
	
	   }
	
	

	   /* consult page */

	   .consult_head{
		 

		/* background-image:linear-gradient(180deg, rgb(231, 231, 231), #f1f1f1,#0586dc); */
	
		background-image: url("/images/ .png");
		width: 100%;
		 
		margin-top: 0;
		position: relative; 

	   }
     .consult_image{
		/* min-height: 540px;
		max-height:550px ;
		 min-width:900px; */

	 }




	   .exp-all-btn{
		display: block;
		position:relative;
          margin-top: 100px;
		  text-align: center;
		  margin-bottom: 5px;
	   }


	   

	   .consult_body{
		background-color: #e49bd2;
		height:1905px;
		width: 100%;
		 margin-top: 0%;
		 position: relative;
		 display: table;
		 
	   }

	   @media(max-width:1000px){
		.right img{
			display: none;
		}

		.containa .left{
			display: none;
					}

		.right h1{
			font-size: 40px;
		}

		.containa{
			width: 100%;
			align-items: center;
			text-align: center;
			justify-content: center;
		}

	
	
		 }

		 @media(max-width:1100px){
			.right h1{
				font-size: 15px;
			}
.
			.serve_content P{
				font-size: 10px;
			}
		 }
		 

		 @media(max-width:500px){
			
	
			.right h1{
				font-size: 5px;
			}

			.serve_content P{
				font-size: 3px;
				line-height: -30px;}

		 

		.consult_head img{
			display: none;
			
		}

		.call-form-sec{
			display: flex;
		}
	
			 }
	   

	   

	   .right img{
		width: 300px;
		height: 200px;
		 margin-top: 60;
	   }

	   .dttrm img{
		image-rendering: smooth;
		border: 10px solid transparent;
	   }

	   .right h1{
		color:  rgb(60, 136, 241);
		font-family:Verdana;
	   }

	   .right P{
		color:  rgb(37, 38, 40);
		font-family: ;
		line-height: 1.5;
	   }

	   #l5si, #dttrm, #cmt, #pio{
        background-color: ;
          box-shadow: 5px 5px 5px lightblue;
		  padding: 10px;

	   }
	   .serve_content:last-child{
		
	   }


	
	   .serve_content .apply-btn{
		justify-content: center;
		align-self: center;
		text-align: center;
	   display: inline-block;
	   text-transform: uppercase;
		padding: 10px 25px;
		background: rgb(78, 183, 193);
		border-radius: 5px;
		color:rgb(250, 247, 247);
		text-decoration: none;
		width: 250px;
		 margin-left:  300px;
  
		font-weight: bold;
		transition: .3s;
	   }
	
	   .apply-btn span{
		position: absolute;
		margin-left: 5px;
		width: 10px;
		height: 10px;
		border-top: 4px solid;
		border-right: 4px solid;
		transform: rotate(45deg);
		opacity:0;
		transition: .4s;
	
	   }
	
	   .apply-btn:hover span{
		opacity:1;
	   }
	
	   .serve_content .apply-btn:hover{
		align-self: center;
	   display: inline-block;
	   text-transform: uppercase;
	   padding: 10px 25px;
		background: rgb(5, 149, 232);
		border-radius: 5px;
		color:rgb(250, 247, 247);
		text-decoration: none;
		 
		font-weight: bold;
		padding-right:  ;
	   }

	   html{
		scroll-behavior: smooth ;
		scroll-snap-align: center;
	   }

	   @font-face{
		font-family: myfont;
		src:url(Simple.ttf);
	}


	  .header-text{
		position: absolute;
		margin-left: 120px;
		margin-top:  170;
		align-items: center;
		width: fit-content;
	  }

		.header-text h1{
		font-size: 50;
		font-family:     ;
	    
		
		
		 font-weight: 450;
		 color: #0175b4;
		font-family:  myfont;
		font-family: 'Inter', sans-serif;
		text-align: center;
		position: relative;
	}


	    .header-text p{
		   position: relative;
		font-size: larger;
		font-family: Verdana, Geneva, Tahoma, sans-serif;
	   
		text-align: center;
		color: #ffffff;
		
	}


	
	@media(max-width:1407px){
		.header-text h1{
			font-size: 30;

		}

		.header-text p{
			font-size: medium;
		}

	}

	@media(max-width:1088px){
		.header-text h1{
			font-size: 20;

		}

		.header-text p{
			font-size: small;
		}

	}



	/* training */


.span-arrow{

}
#span-arrow{
	display: block;
	position:   absolute;
	z-index: 5;
	width: 20px;
	height: 50px;
	 margin-left: 50%;
	 margin-top: 350px;
	animation: move 1.1s infinite ease-in-out;
	align-items:  ;
  }
  
   
  
  @keyframes move{
	0%{margin-top:0;}
	50%{margin-top:40px;}
	100%{margin-top:0;}
  }



.card-container{
     text-decoration: none;
	display: flex; 
	padding: 20px 0px;
	background-color: #bbbbbb;
	justify-content: left;
	flex-wrap: wrap;
	padding: 40px;
	gap: 25px;
	margin-top: 20px;
	margin-bottom: 60px;
	margin-left: 100px;
	margin-right: 50px;
	flex-flow: row; 
	overflow-x: auto;
	overflow:  ;
	touch-action: none; /* Add also this */
	user-select: none; /* Prevent text highlighting */
}
.card-container::-webkit-scrollbar{
display:  ;
}

.card-container a{
	text-decoration: none;

}


.card{
	/* height: 400px; */
	width: 300px;
	min-width: 300px;
	background-color: #97b2fe;
	border-radius: 10px;
	box-shadow: 3px 3px 2px 2px #00215b;
	overflow: hidden;
	transition: transform 0.5s ease;;
}

.card:hover{
	transform: translateY(-25px);
 	  
	
}

.card:hover img{
	opacity: 0.6;
	
}

.card img{
	width: 100%;
	height: auto;
	object-fit: cover;
	opacity:  ;
}

.card-content{
	padding: 20px;

}

.card-content h1{
	font-size: 20px;
	margin-bottom: 10px;
}

.card-content p{
font-size:15px;
color: #383838;
margin-bottom: 15px;
}

.card-button{
	display: inline-block;
	background-color: #1096ee;
	color: #ffffff;
	text-decoration: none;
	border-radius: 5px;
	padding: 8px 16px;
}

.card-button:hover{
	background-color: #0f38f0;
	color: #ffffff;
}


.train-title{
	font-size: 40px;
	margin-left: 130;
	margin-top:  ;
	display: block;
}



/* trainings */

.train-welcome-text {
	position: absolute;
	margin-left: 100px;
	margin-top:  200;
}

.train-welcome-text h1{
	 
	/* position: absolute; */
	font-size: 50;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
     line-height: 70px;
	
	word-spacing: ;
	font-weight: 20px;
	color: #ffffff;
	font: bolder;
}


   .train-welcome-text p{
	/* position: absolute; */
	font-size: larger;
	font-family: Verdana, Geneva, Tahoma, sans-serif;

	color: #ffffff;
	
}

#enrol-btn{
	align-self: center;
   display: inline-block;
   text-transform: uppercase;
	padding: 15px 20px;
	background: rgb(52, 125, 171);
	border-radius: 15px;
	color:rgb(250, 247, 247);
	text-decoration: none;
	margin-top: 30px;
	font-size: large;
	font-weight:  bold;
	position: absolute;
	transition: .4s;
	margin-top:  ;
	border: none;
   }

   #enrol-btn span{
	position: absolute;
	margin-left: 5px;
	width: 10px;
	height: 10px;
	border-top: 4px solid;
	border-right: 4px solid;
	transform: rotate(45deg);
	opacity:0;
	transition: .3s;
	

   }

   #enrol-btn:hover span{
	opacity:1;
   }

 #enrol-btn:hover{
	font-size: large;
	font-weight:  bold;
	align-self: center;
   display: inline-block;
   text-transform: uppercase;
   padding-right:  30px;
	background: rgb(0, 90, 143);
	border-radius: 15px;
	color:rgb(250, 247, 247);
	text-decoration: none;
	
	padding-right: 30px;
   }

.train-container{
	width: 65%;
	margin: auto;
	margin-top: 7%;
}

.train-container h1{
margin-top: 50px;

}

.train-container p{
	margin: 0;
	line-height: 25px;
}



.modal {
	
  }


 
  .modal{
    display: none ; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1000; /* Sit on top */
	
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  
  

  }
 








  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

  body {
    font-family: 'Inter', sans-serif;
  }
  .formbold-mb-3 {
    margin-bottom: 15px;
  }
  .formbold-relative {
    position: relative;
  }
  .formbold-opacity-0 {
    opacity: 0;
  }
  .formbold-stroke-current {
    stroke: currentColor;
  }
  #supportCheckbox:checked ~ div span {
    opacity: 1;
  }
  .modal{
    display: none;
  }


  .formbold-main-wrapper {
    display: flex;
    align-items:  ;
    justify-content:  ;
    padding: 48px;
  }

  .formbold-form-wrapper {
	display: flex;
    margin: 5% auto;
    width: fit-content ; 
    min-width:  ;
	height: fit-content;
    background: white;
    border-radius: 15px;
	position:relative;
  }


  .formbold-form-wrapper form{
	position: relative;
	padding:20px;
	text-align: center;
  }

  .formbold-form-wrapper .close-btn{
	position: absolute ;
	float:  right;
	right: 0;
	padding: 10px;
	padding-right: 20;
	font-size: xx-large;
	cursor: pointer;

  }


  .formbold-form-wrapper .close-btn:hover{
     color: #ff4e2a;
	font-size: xx-large;

  }


  .formbold-form-wrapper img {
	 float: right;
	 right: 0;
	position: relative;
    height: 580px;
	border-radius: 0px 15px 15px 0px;
  }

  .formbold-form-title {
    margin-bottom: ;
	padding: 0;
	margin: 0 auto;
  }
  .formbold-form-title h2 {
	margin-top: 0;
    font-weight:  ;
    font-size: 28px;
    line-height:  ;
    color: #1ea8f3;
	text-align: center;
  }
  .formbold-form-title p {
    font-size: 17px;
    line-height:;
    color: #1f232d;
    margin-top: 0 ;
text-align: center;
  }

  .formbold-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  .formbold-input-flex > div {
    width: 50%;
  }
  .formbold-form-input {
     width: 100%;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #67b0cd;
    background: #ffffff;
    font-weight: 500;
    font-size: 16px;
    color: #536387;
    outline: none;
    resize: none;
	height: 40px;
  }
  .formbold-form-input:focus {
    border-color: #6a64f1;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }
  .formbold-form-label {
    color: #536387;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-bottom: 5px;
	text-align: left;
  }

  
  .formbold-btn {
    font-size: 16px;
    border-radius: 10px;
    padding: 14px 25px;
    border: none;
    font-weight: 500;
    background-color: #238325;
    color: white;
    cursor: pointer;
    margin-top: 25px;
    margin-left:0;
	margin-right:0 ;
	 transition: all 0.3s ease;
  }
  .formbold-btn:hover {
	background-color: #41b82c;
  
	transform: scale(1.1) ;
  }



   /* tabs */

.tab-container{
	background-color: whitesmoke;
	width: 100%;
border-radius: 10px;
overflow: hidden;
margin-top: 50px;
border-color:rgb(1, 86, 114) ;


 }

 .tab-box{
  width:100% ;
  height: 50px;
  display: flex;
  justify-content: ;
  border-top-right-radius:;
  overflow: hidden;
 }


.tab-content-box .tab-content{
  display: none;
  animation: moving .5s  ease;
  padding: 20px;
  border-radius: 0px 0px 10px 10px;
  background-color:rgb(204, 204, 204);
}

@keyframes moving{
  from{transform: translateX(50px); opacity:0;}
  to{transform: translateX(0px); opacity:1;}
}

.tab-content-box .tab-content.active{
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal-width columns */
  row-gap:30x;
}

 .tab-box .tab-btn{
  height: 100%;
   width: 100%;
  justify-content: space-evenly;
  font-size: 15px;
  font-weight: 500;
  background: none;
  border-color: #305dff;
  
 }
  .tab-box .tab-btn:hover{
    background-color:rgb(124, 202, 254);
  }
.tab-box .tab-btn:first-child{

  border-radius: 10px 0px 0px 0px;
}
.tab-box .tab-btn:nth-child(3){

  border-radius: 0px 10px 0px 0px;
}



 
 .tab-box .tab-btn.active{
font-size:  ;
font-weight: bold;
color: #fff;
  background: #305dff;
  transition: all .5s ease-in-out;
  
 }




  .content-group{

	display: flex;
  }




  .content-group{
width: 100%;
	display: flex;
  gap: 70px;
  align-items: center;
  align-content: center;
  }

    .tab-container img{
      font-size: 10px;
      width: 30px;
      height: 30px;
      margin-right: -40px;
    }

    .tab-content h2{
     line-height:5px ;
     color:rgb(17, 119, 178);
     font-family: inter;
    }

     .tab-content p{
     font-family: inter;
     color: #333;
     font-size: 14px;
    }

  

    .content-group ul li{
       font-family: inter;
     color: #333;
     font-size: 14px;
     margin-left: -10;
     list-style-type: circle;
     
    }


       .content-group ul li{


       }
    .b-register{
        display: block;
  width: 450px;              /* Set a fixed width */
  margin: 0 auto;   
  background-color: #4CAF50;  /* Green background */
    color: white;               /* White text */
    font-size: 20px;            /* Medium size */
    padding: 15px 30px;         /* Space around text */
    border: none;               /* No border */
    border-radius: 40px;        /* Rounded corners */
    cursor: pointer;           /* Pointer on hover */
    transition: all 0.3s ease;  /* Smooth transition */
    font-weight: bold;
    align-items: center;
    align-content: center;
    }