* {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}

html{
	scroll-behavior: smooth;
	background-color: #FFFBFB;
}

.header{
	min-height: 100vh;
	width: 100%;
	background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url(images/banner3.png);
	background-position: center;
	background-size: cover;
	position: relative;
}

nav {
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
	background-color: #FFAB99;
	position: fixed;
	height: 85px;
	width: 100%;
}
.stars i{
	color: #f44336;
	padding-bottom: 30px;
}
nav img{
	width: 100px;
	height: 100px;
}
.nav-links{
	flex: 1;
	text-align: right;
}

.nav-links ul li {
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
}

.nav-links ul li a{
	color:#fff ;
	text-decoration: none;
	font-size: 13px;
}

.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #24BAD5 ;
	display: block;
	margin: auto;
}

.nav-links ul li:hover::after{
	width: 100%;
}

.text-box{
	width: 90%;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.about{
	min-height: 40vh;
	padding-top: 10vh;
	background-color: #f7dbcd;
	color: #000;
	text-align: center;
}
.about p{
	font-weight: 600;
	color: #000;
}

.text-box h1{
	font-size: 62px;
}

.text-box p{
	margin: 10px 0 40px;
	font-size: 14px;
	color: #fff;
}

.hero-btn{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	padding: 12px 34px;
	font-size: 13 px;
	background: transparent;
	position: relative;
	cursor: pointer;
}

.hero-btn:hover{
	border: 1 px solid #f44336;
	background: #f44336;
	transition: 1s;
}

nav .fa-solid{
	display: none;
}


@media(max-width: 700px){
	.text-box h1{
		font-size: 20px;
	}
	.nav-links ul li {
		display: block;
	}
	.nav-links {
		position: fixed;
		background: #0A0A0A;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -300px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav .fa-solid{
		display: block;
		color: #fff;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
	.nav-links{
		padding: 30px;
	}

}

/*-----------dropdown--------------*/
/* Dropdown Button */
.dropbtn {
  color: black;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  color: #000;
}


/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFAB99 ;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: ;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;} 


/* Change the background color of the dropdown button when the dropdown content is shown */
/*.dropdown:hover .dropbtn {background-color: #3e8e41;}*/


/* ------------ course ------------ */

.course {
	width: 80%;
	margin: auto;
	text-align: left;
	padding-top: 100px;
	/*background-color: #FF5733;*/
	
}
.course h1{
	text-align: center;
    }

h1 {
	font-size: 36px;
	font-weight: 600;
}

p{
	color: #777;
	font-size: 14px;
	font-weight: 300;
	font-height: 22px;
	padding: 10px;
}

.row {
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}

.course-col{
	flex-basis: 23%;
	background: #FDBEB0;
	border-radius: 10px;
	margin-bottom: 5%;
	padding: 20px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}


.course h3 {
	text-align: left;
	font-weight: 600;
	margin: 10px 0;
	font-family: Times New Roman;
}

h2 {
	color: blue;
	font-family: Times New Roman;
}

.course-col:hover { 
	box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media(max-width: 700px){
	.row{
		flex-direction: column;
	}
}

/* ------------Campus-----------*/
.campus {
	width: 80%;
	margin: auto;
	text-align: left;
	padding-top: 10px;
}
.campus h1{
	text-align: center;
	margin-top: 100px;
    }

.campus-col {
	flex-basis: 22%;
	border-radius: 10px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}

.campus-col img{
	width: 100%;
	display: block;
}

.layer{
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
}

.layer h3 {
	width: 100%;
	font-weight: 500;
	color: #fff;
	font-size: 26px;
	bottom: 0;
	left: 15%;
	transform: translateX(-50px);
	position: absolute;
	transition: 0.5s;
}

.layer:hover h3{
	background-color: rgba(0, 0, 0, 0.8);
	bottom: 49%;
	opacity: 1;
}

/* ------------ facilities ------------ */
 
.facilities{
    width: 80%;
    margin: auto;
    text-align: left;
    padding-top: 100px;
}
 

.facilities h1{
	text-align: center;
    }
.facilities-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
 
.facilities-col img {
    width: 100%;
    border-radius: 10px;
}
 
.facilities-col p{
    padding: 0;
}
 
.facilities-col h3 {
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
h3{
	text-align: left;
	font-size: 20px;
	margin-top: 0px;
}
 
/* -------------- testimonials ----------------- */
 
/*.testimonials {
    width: 80%;
    margin: auto;
    padding-top: 10px;
    text-align: center;
}
 
.testimonials-col {
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
 
.testimonials-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50px;
}
 
.testimonials-col p {
    padding: 0;
}
 
.testimonials-col h3 {
    margin-top: 15px;
    text-align: left;
}
 
.testimonials-col .fa-solid, .fa-regular {
    color: #f44336;
}
 
@media(max-width: 700px){
    .testimonials-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}*/
 
/* -------------- cta ---------------- */
 
/*.cta {
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(images/.png);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
 
.cta h1 {
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}
 
@media(max-width: 700px){
    .cta h1 {
        color: #fff;
        font-size: 20px;
        padding: 10px;
    }
}*/

<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #fbcce7;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #6495ed;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color:  #fff3f3;
  color: black;
}

.container {
  border-radius: 5px;
  background-color: #fbcce7 ;
  padding: 20px;
  margin: 30px 200px 100px 200px;
}
.contact2 h3{
	text-align: center;
	font-size: 40px;
	margin-top: 100px;
}
@media(max-width: 700px){
	.contact2{
		flex: 100%;
		max-width: 100%;
	}
 }

/* ------------ contact---------------- */

/*body{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.main{
	position: absolute;
	border-radius: 5px;
	top: 50%;
	left: 50%;
	transform: translate(-50, -50);
	width: 400px;
	background: #fff;
	padding: 40px;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, .1);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

.main h2{
	margin: 0 40px;
    padding: 15px;
    color: #0092e6;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
}

.main .border{
	width: 70px;
	height: 3px;
	background: #00b8e6;
	margin: 1px auto;
}

.main input{
	padding: 10px 0;
	margin-bottom: 30px;
}

.main textarea{
	height: 80px;
	padding: 10px 0;
	margin-bottom: 40px;
}

.main input,
.main textarea{
	width: 100%;
	box-sizing: border-box;
	box-shadow: none;
	outline: none;
	border: none;
	border-bottom: 2px solid #999;
}

.main textarea{
	margin-bottom: 20px;
}

.main input[type="submit"]{
	border-bottom: none;
	cursor: pointer;
	background: #0092e6;
	color: #fff;
	margin-bottom: 0;
	text-transform: uppercase;
}

.main from div{
	position: relative;
}

.main input[type="submit"]:hover{
	background: #00b8e6;
}*/

/*------------kotak-------------------*/


 
/* ------------ footer ---------------- */
 
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-color: #FFAB99;
}
.footer p{
	text-align: center;

}
 
.footer h4 {
    margin-bottom: 25px;
    margin-top: 20px;
    
}
 
.footer .fa-brands, .fa-solid{ 
    color: #f44336;
    margin: 0px 13px;
    cursor: pointer;
    padding: 18px 0;
   
}
