*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	scroll-behavior: smooth;
}
section{
	padding-bottom: 100px;
	justify-content: center;
}
body{
	background-color: #adc4ff;
}

@media (max-width: 700px){
	body{
		width: 100%;
	}
}
/*-------- Introduction Section --------*/
.about-us{
	position: relative;
	width: 100%;
}
.about-us h1{
	text-align: center;
	padding-top: 250px;
	color: white;
	font-size: 60px;
	text-decoration: underline;
	text-shadow: rgb(0, 0, 0);
	height: 500px;
	width: 100%;
	background: url('images/banner-aboutus.jpg');
}

.introduction{
	margin-top: -50px;
	padding-top: 0;
	padding-left: 100px;
	padding-right: 100px;
}
.introduction h1{
	font-size: 40px;
}

.introduction p{
	padding-top: 20px;
	font-size: 18px;
	text-align: justify;
}
.introduction strong{
	border-bottom: 2px solid #000;

}

@media (max-width: 700px){
	.about-us h1{
		background: url('images/banner-aboutus-mobile.jpg');
	}
	.introduction h1{
		font-size: 30px;
	}
	.introduction p{
		font-size: 15px;
	}
	.introduction{
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*-------- Vision Section --------*/
.vision{
	padding-left: 100px;
	padding-right: 100px;
}
.vision h1{
	font-size: 40px;
}
.vision p{
	padding-top: 20px;
	font-size: 20px;
}
.vision ul{
	padding-top: 15px;
}
.vision ul li{
	font-size: 18px;
}


@media (max-width: 700px){
	.vision h1{
		font-size: 30px;
	}
	.vision p{
		font-size: 18px;
	}
	.vision ul li{
		font-size: 15px;
	}
	.vision{
		padding-left: 15px;
		padding-right: 15px;
	}
}
/*-------- Motto Section --------*/
.motto{
	padding-left: 100px;
	padding-right: 100px;
}
.motto h1{
	font-size: 40px;
}
.motto p{
	padding-top: 20px;
	font-size: 18px;
	text-align: justify;
}


@media (max-width: 700px){
	.motto h1{
		font-size: 30px;
	}
	.motto p{
		font-size: 15px;
	}
	.motto{
		padding-left: 15px;
		padding-right: 15px;
	}
}

/*-------- Memberships Section --------*/
.memberships{
	padding-left: 100px;
	padding-right: 100px;
}
.memberships h1{
	font-size: 40px;
}
.memberships p{
	padding-top: 20px;
	font-size: 20px;
	text-align: justify;
}
.memberships ul{
	padding-left: 30px;
	list-style: disc;
	padding-top: 15px;
}
.memberships ul li{
	padding-left: 10px;
	font-size: 18px;
	padding-bottom: 10px;
	display: list-item;
}


@media (max-width: 700px){
	.memberships h1{
		font-size: 25px;
	}
	.memberships p{
		font-size: 17px;
	}
	.memberships ul li{
		font-size: 15px;
	}
	.memberships{
		padding-left: 15px;
		padding-right: 15px;
	}
}
/*-------- Attachments Section --------*/
.attachments{
	padding-left: 100px;
	padding-right: 100px;
}
.attachments h1{
	font-size: 40px;
}
.attachments p{
	padding-top: 20px;
	font-size: 20px;
	text-align: justify;
}
.attachments ol{
	padding-left: 50px;
	padding-top: 15px;
}
.attachments ol li{
	padding-left: 10px;
	font-size: 18px;
	padding-bottom: 10px;
	display: list-item;
}


@media (max-width: 700px){
	.attachments h1{
		font-size: 30px;
	}
	.attachments ol li{
		font-size: 15px;
	}
	.attachments{
		padding-left: 15px;
		padding-right: 15px;
	}
}
/*-------- PHILOSOPHY Section --------*/
.philosophy{
	padding-left: 100px;
	padding-right: 100px;
	text-align: center;
}
.philosophy h1{
	font-size: 40px;
	padding-bottom: 15px;
}
.philosophy p{
	font-size: 20px;
	padding-top: 50px;
}


@media (max-width: 700px){
	.philosophy{
		padding-left: 15px;
		padding-right: 15px;
	}
	.philosophy h1{
		font-size: 30px;
		padding-bottom: 15px;
	}
	.philosophy h3{
		font-size: 18px;
	}
	.philosophy p{
		font-size: 17px;
		padding-top: 25px;
	}
}
/*-------- Sticky Navbar Section --------*/
.sticky-navbar{
	background: none;
	width: 100%;
	height: 80px;
}
header {
	z-index: 999;
	display: flex;
	padding: 30px;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transition: 500ms;
}
#openBtn{
	display: none;
}
nav {
	margin-left: 625px;
}
nav a {
	display: inline-block;
	margin-left: 10px;
	font-size: 15px;
	text-decoration: none;
	font-family: sans-serif;
	color: white;
	text-transform: uppercase;
	border-bottom:  3px solid transparent;
	padding: 10px 1px;
	transition: 200ms;
}
.overlay-navbar{
	display: none;
}
nav a:hover {
	border-color: #fff;
}
.logo img{
	width: 80px;
	flex: 1;
	margin-left: 40px;
}
.bgc {
	height: auto;
	background: #6f93ff;
	padding: 10px;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}
.bgc .logo img {
	width: 80px;
	margin-left: 10px;
}
.bgc nav{
	margin-left: 55%;
}
.bgc nav a {
	color: #222;
}

@media (max-width: 700px){
	header{
		width: 100%;
	}
	.mobile-navbar{
		position: absolute;
		align-items: right;
		right: 20px;
	}
	#openBtn{
		display: inline-block;
		text-decoration: none;
		color: white;
		position: relative;
		top: -5px;
		font-size: 20px;
		cursor: pointer;
	}
	header nav{
		display: none;
	}
	header .logo img{
		width: 80px;
		margin-left: 0;
	}
	.sticky-navbar{
		display: flex;
	}

	.overlay-navbar{
		position: fixed;
		display: block;
		background-color: #6f93ff;
		box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
		height: auto;
		width: 100%;
		z-index: 9999;
		text-align: center;
		padding: 50px;
		top: -300px;
		transition: 0.5s;
		
	}
	.overlay-navbar ul{
		top: 50px;
	}
	.overlay-navbar .fa{
		position: absolute;
		font-size: 20px;
		color: white;
		align-items: right;
		right: 20px;
		top: 30px;
		cursor: pointer;


	}
	.overlay-navbar ul li a{
		color: white;
		line-height: 30px;
		text-decoration: none;
	
	}

}	




/*-------- Whatsapp Floating Button --------*/
.float{
	position:fixed;
	width:50px;
	height:50px;
	bottom:30px;
	right: 30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:10px;
	text-align:center;
	justify-content: center;
  	z-index:9999;
}
.float i{
	font-size: 30px;
	margin-top: 10px;
}

.float:hover{
	background-color: white;
	color: #25d366;
}

@media(max-width: 700px){
	.float{
		z-index: 99999;
		bottom: 30px;
		right: 15px;
		width: 40px;
		height: 40px;
	}
	.float i{
		font-size: 25px;
		margin-top: 7.5px;
	}
}

/*-------- Back to Top Floating Button --------*/
.back-to-top {
	display: none;
	position: fixed; /* Fixed/sticky position */
	bottom: 90px; /* Place the button at the bottom of the page */
	right: 30px; /* Place the button 30px from the right */
	z-index: 9999; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	background-color: rgb(117, 117, 117); /* Set a background color */
	cursor: pointer; /* Add a mouse pointer on hover */
	border-radius: 10px; /* Rounded corners */
	width: 50px;
	height: 50px;
  }

.back-to-top i{
	color: #000;
	font-size: 30px;
	margin-bottom: 5px;
}
  
.back-to-top:hover {
	background-color: #555; /* Add a dark-grey background on hover */
  }

@media(max-width: 700px){
	.back-to-top{
		display: none;
		z-index: 99999;
		bottom: 90px;
		right: 15px;
		width: 40px;
		height: 40px;
	}
}

/*-------- Footer Section--------*/
.hiasan img{
	margin-bottom: -4px;
	height: 50px;
	width: 100%;
}

.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #24262b;
    padding: 20px 0;
}
.footer-horizontal{
	width: 25%;
	padding: 0 15px;
}
	
.footer-horizontal .logo-kan{
	margin-bottom: 25px;
	width: 200px;
}
.footer-horizontal .logo-footer{
	margin-bottom: 0;
	width: 200px;
}

.footer-col{
	width: 25%;
	padding: 0 15px;
 }
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h5{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	position: relative;
}
.footer-col h6{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	position: relative;
	margin-left: 50px;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col h2{
  color: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: -10px;
}
.footer-col .social-links a{
	display: inline-flex;
	margin-top: 25px;
	text-align: center;
	line-height: 40px;
	
}
.footer-col img{
	margin-top: -20px;
	width: 60px;
}
.down-mobile{
	display: none;
}

/*responsive*/
@media(max-width: 700px){
	.hiasan img{
		height: 18px;
	}
	.container{
		display: none;
	}


	.down-mobile{
		z-index: 1;
		display: block;
		align-content: center;
		background-color: #24262b;
    	padding: 20px 0;
	}
	.down-horizontal{
		display: grid;
		justify-content: left;
		grid-template-columns: repeat(auto-fit, 150px);
		padding-left: 20px;

	}
	.logo-footer{
		width: 100px;
		
	}
	.logo-kan{
		width: 100px;
		margin-top: -7px;
	}
	.down-col{
		width: 100%;
		padding: 0 20px;
	}
	.down-col h4{
		font-size: 18px;
		color: #ffffff;
		text-transform: capitalize;
		margin-bottom: 10px;
		font-weight: 500;
		position: relative;
		padding-top: 20px;
	}
	.down-col h5{
		font-family: Arial, Helvetica, sans-serif;
		font-size: 12px;
		color: #ffffff;
		font-weight: 500;
		position: relative;
	}
	.down-col h6{
		font-family: Arial, Helvetica, sans-serif;
		font-size: 12px;
		color: #ffffff;
		font-weight: 500;
		position: relative;
		margin-left: 50px;
	}
	.down-col h4::before{
		content: '';
		position: absolute;
		left:0;
		bottom: -3px;
		background-color: #e91e63;
		height: 2px;
		box-sizing: border-box;
		width: 50px;
	}
	.down-col h2{
		color: white;
		  font-family: Arial, Helvetica, sans-serif;
		  font-size: 12px;
		  margin-top: 0px;
	  }
	  .down-col .social-links a{
		display: inline-flex;
		margin-top: 25px;
		text-align: center;
		line-height: 40px;
		
	}
	.down-col img{
		margin-top: -20px;
		width: 60px;
	}
}
