*{
	margin: 0;
	padding: 0;
    font-family: 'Poppins', sans-serif;
}

#body1{
    width: 100%;
    height: 100px;
    display: block;
    background-color: #ffddff;
    background-size: contain;
}
.slider{
    width:100%;
    height:600px;
    position: relative;
    background-size: cover;
   overflow:hidden;
  
}

.slides{
  width: 500%;
  height: 500px;
  display: flex;
	
}

.slides input{
  display: none;
	background: blue;
}
.slide{
  width: 20%;
  transition: 2s;
}

.slide img{
  width: 100%;
  height: 620px;

}


/*css for manual slide navigation*/

.navigation-manual{
  position: absolute;
 width: 1320px;
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.manual-btn{
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}

.manual-btn:not(:last-child){
  margin-right: 40px;
}

.manual-btn:hover{
  background: #40D3DC;
}

#radio1:checked ~ .first{
  margin-left: 0;
}

#radio2:checked ~ .first{
  margin-left: -20%;
}

#radio3:checked ~ .first{
  margin-left: -40%;
}

#radio4:checked ~ .first{
  margin-left: -60%;
}

/*css for automatic navigation*/

.navigation-auto{
  position: absolute;
  display: flex;
  width: 1320px;
  justify-content: center;
  margin-top: 579px;
}

.navigation-auto div{
  border: 2px solid #40D3DC;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
}

.navigation-auto div:not(:last-child){
  margin-right: 40px;
}

#radio1:checked ~ .navigation-auto .auto-btn1{
  background: #40D3DC;
}

#radio2:checked ~ .navigation-auto .auto-btn2{
  background: #40D3DC;
}

#radio3:checked ~ .navigation-auto .auto-btn3{
  background: #40D3DC;
}

#radio4:checked ~ .navigation-auto .auto-btn4{
  background: #40D3DC;
}

.header{
	min-height: 100vh;
	width: 100%;
   background-position: center;
	background-size: cover;
	position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    
}
nav img{
    width: 250px;
	
}
nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 4px 12px;
    position:relative;
     
    
}


.nav-links ul li a{
    color: yellowgreen;
    text-decoration:  none;
    font-size: 13px;
	font-family: 'Urbanist', sans-serif;
	font-weight: bold;
    
}
.nav-links ul ul{
	position: absolute;
	top:85px;
	border-top: 3px solid #23dbdb;
	opacity: 0;
	visibility: hidden;
}
.dropbtn {
   list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
	 color: yellowgreen;
	font-family: 'Urbanist', sans-serif;
	font-weight: bold;
	border: none;
 
}
.dropdown button.dropbtn{
	background:none;
	outline:none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: yellowgreen;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {
		color:black;
	top:70px;
	opacity: 1;
	visibility: visible;
	transition:  .3s linear;}
body .nav-links a:hover{
  color:black;
	top:70px;
	opacity: 1;
	visibility: visible;
	transition:  .3s linear;
}
.nav ul ul li{
	width: 150px;
	display: list-item;
	position: relative;
	border: 1px solid ;
	border-top: none;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box1{
    width: 90%;
    color: black;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
font-family: 'Gentium Plus', serif;

	color:ghostwhite;
    
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 14px;
    color: #fff;
   font-family: 'Georgia', serif; 
}
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    
}
.hero-btn:hover{
    border: 1px solid #9900cc;
    background: #9900cc;
    transition:1s;
}
nav .fa{
    display: none;
}
nav i{
  font-size: 2.5rem;
  color:#000066;
  cursor: pointer;
  margin-right: 2rem;
}

nav layer{
	font-size: 15px;
	font-family: 'PT Sans Narrow', sans-serif;
}

nav i:hover{
  color:black;
}

@media (max-width: 700px){
    .test-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
.nav-links{
    position: absolute;
        background:#ffddff;
    height:100vh;
    width: 200px;
    top:0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
}
nav .fa{
    display: block;
    color: black;
    margin:10px;
    font-size: 22px;
    cursor: pointer;   
}
.nav-links ul{
    padding: 30px;
}
}


.course{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}
h1{
	font-size: 36px;
	font-weight:600;
}
p{
	color:yellowgreen;
	font-size: 14px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}
p1{
	color:#009933;
	font-size: 12px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
	font-family: 'Patua One', cursive;
}
p2{
	color:#009933;
	font-size: 12px;
	font-weight: 300;
	line-height: 12px;
	padding: 10px;
font-family: 'Patua One', cursive;
	
}
p3{
	color:#009933;
	font-size: 12px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
	font-family: 'Patua One', cursive;
}
.row{
	margin-top:7%;
    display:flex;
	justify-content: space-between;
}
.course-col{
	flex-basis: 31%;
	background: #fff3f3;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing:border-box;
}

h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}
.course-col:hover{
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
	.row{
		flex-direction: column;
	}
}
.course-col1{
	flex-basis: 31%;
	background: #fff3f3;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing:border-box;

}

h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}
.course-col1:hover{
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width: 700px){
	.row{
		flex-direction: column;
	}
}
@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.campus{
	width: 90%;
		margin:auto;
	text-align: center;
	padding-top: 50px;
	
}


.column-col{
	flex-basis:   31%;
	border-radius: 10px;
	margin-bottom: 5%;
		text-align: left;
	overflow: hidden;
	position: relative;
}
.column-col img{
	width: 100%;
	border-radius: px;
}
.layer{
	
	height: 100%;
	width: 100%;
	position: absolute;
	top:0;
	left: 0;
	transition: 0.5s;
}
.column-col:hover{
		box-shadow: 0 0 20px 0px grey;
}
.layer h3{
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 26px;
	bottom: 0;
	left:50%;
	transform: translateX(-50%);
	position: absolute;
}
.cta{
	margin: 100px auto;
	width: 80%;
	background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(pic/consult.jpg);
	background-position: center;
	background-size: cover;
	border-radius: 10px;
	text-align: center;
	padding: 100px 0;
}
.cta h5{
	color:#fff;
	margin-bottom: 40px;
	padding: 0;
}
@media(max-width:700px){
	.cta h1{
		font-size: 24px;
	}
}
.footer{
	width:100%;
	text-align: center;
	padding: 30px 0;
}
.footer h4{
	width: 90%;
		margin:auto;
	text-align: center;
	padding-top: 50px;
}
	
p1{
	color:grey
}
.testi{
	width: 90%;
		margin:auto;
	text-align: center;
	padding-top: 50px;
}
h10{
	color: black;
		font-size: 36px;
	font-weight:600;
}
/*--------form fill up -------*/
.reg-form {
  background: #fff;
  box-sizing: border-box;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 23px auto;
  padding: 77px;
  width: 1000px;
}

.form-heading {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 36px;
  font-weight: bold;
  margin: 5px;
}
 
.helper-text {
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
	font-family: 'Fugaz One', cursive;
font-family: 'Lato', sans-serif;
	color: #0978e0;
	text-decoration-line: underline;
}
.field-row {
  position: relative;
  width: 120%;
}
 
.form-label {
   font-size: 150%;
margin: 1px 55px 2px 0px;
  width: 100px;
	align-items: center;
}
 
.field {
  
 border: 1px solid #ddd;
  box-sizing: border-box;
  display: inline-block;
  font-size: 17px;
  padding:10px;
  margin-bottom: 16px;
	margin-top:41px;
  width: 451px;
	align-items: center;
}
.field.field-short {
  width: 70px;
}
.message {
  display: inline-block;
}
  @media screen and (max-width: 600px) {
  .field-row, .field, .reg-form {
    width: 100%;
    margin-top: 0;
  }
}
:required + .message::before {
  content: "* ";
}		
.text-field:focus:required:valid {
  outline: green solid 2px;
}
.text-field:focus:required:invalid {
  outline: orange solid 2px;
}
.date-field:focus:in-range {
  outline: green solid 2px;
}
.date-field:focus:out-of-range {
  outline: orange solid 2px;
}
 
.website-field:focus:valid {
  outline: green solid 2px;
}
.website-field:focus:invalid {
  outline: orange solid 2px;
}
.form-button {
   background-color: darkcyan;
  color: white;
  cursor: pointer;
  float: left;
  border: none;
  border-radius: 0;
  color: white;
  display: inline-block;
  padding: 10px;
  font-size: 16px;
}
.form-button:hover {
  background-color: green;
}
.first-name-field:focus:invalid + .message::after {
  color: orange;
  content:"Required Student Name";
}
 
.last-name-field:focus:invalid + .message::after {
  color: orange;
  content: "Required Mobile Number";
}
 
.dob-field:focus:out-of-range + .message::after {
  color: orange;
  content: "Date is out of range";
}
 
.email-field:focus:invalid + .message::after {
  color: orange;
  content: "Required email address";
}
 
.address-field:focus:invalid + .message::after {
  color: orange;
  content: "Required permanent address";
}
 
.website-field:focus:invalid + .message::after {
  color: orange;
  content: "Required valid URL";
}
/*------------contact us page--------*/
.location{
	width: 80%;
	margin: auto;
	padding: 80px 0px;
}
.location iframe{
	width: 100%;
}
.Reach-us{
	width: 80%;
	margin: auto;
}
.Reach-col{
	flex-basis: 48%;
	margin-bottom: 30px;
}
.Reach-col div{
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.Reach-col div .fa{
	font-size: 28px;
	color: #f44336;
margin: 10px;
	margin-right: 30px;
}
.Reach-col div h90{
	font-size:20px;
	margin-bottom: 5px;
	color: #555;
	font-weight: 400;
}
.Reach-col input, .Reach-col textarea{
	width: 100%;
	padding: 15px;
	margin-bottom: 17px;
	outline: none;
	border :1px solid #ccc;
}
.Reach-col button.hero-btn{
	color: white;
	 background-color: darkcyan;
	border: 1px;
	border-style: solid;
}
.Reach-col button.hero-btn:hover{
	background-color: purple;
}
.reg-form2 {

  box-sizing: border-box;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  margin: 23px auto;
  padding: 77px;
  width: 1000px;
	
}

.helper-text2 {
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
	font-family: 'Fugaz One', cursive;
font-family: 'Lato', sans-serif;
	color: darkgreen;
	text-decoration-line: underline;
}
.reg-form2 p77{
	font-family: 'Fugaz One', cursive;
font-family: 'Lato', sans-serif;
font-family: 'Roboto Slab', serif;
	color: black;
	font-weight: bold;
}
@media screen and (max-width: 600px) {
   .reg-form2 {
    width: 100%;
    margin-top: 0;
  }
p77{
	text-align: center;
		font-family: 'Fugaz One', cursive;
font-family: 'Lato', sans-serif;
font-family: 'Roboto Slab', serif;
	color: black;
	font-weight: bold;
	box-sizing: content-box;
	
}
	.layer1{
		height: 100%;
	width: 100%;
	position: absolute;
	top:0;
	left: 0;
	transition: 0.5s;
		padding: 1px;
		
	}
	
