* {
	margin: 0px;
	padding: 0px;
	scroll-behavior: smooth;
	box-sizing: border-box;
	font-family:Arial, Helvetica, sans-serif;
}
body{
	overflow-x: hidden;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
	background: rgb(172, 172, 172);
	border-radius: 10px;
}


/* Start of Header */

.logo {
	width: 50px;
	height: 50px;
	margin: 0 5px;
	border-radius: 50%;
}

.bg-custom {
	background-color: rgba(0, 0, 0, 0.39);
	z-index: 999;
}

.go-top {
	background: none repeat scroll 0 0 padding-box #1099dd;
	bottom: 20px;
	border: 1px solid #1099dd;
	border-radius: 4px;
	color: #eee;
	display: none;
	font-size: 12px;
	opacity: 0.8;
	padding: 10px;
	position: fixed;
	right: 20px;
	text-decoration: none;
	z-index: 999;
}

.go-top:hover,
.go-top:focus,
.go-top:active,
.go-top:visited {
	color: #fff;
	outline: 0;
	text-decoration: none;
}

#home-section {
	min-height: 100vh;
	background-color: rgb(53, 36, 36);
	display: grid;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

#home-section video {
	position: absolute;
	top: -76px;
	object-fit: cover;
	width: 100vw;
	height: calc(100vh + 76px);
	opacity: 0.7;
}

/* End of Header */

/* Start of Our Vision */

#our-vision {
	min-height: 80vh;
	background-color: #1f2428;
	display: grid;
	justify-content: center;
	align-items: center;
}

.heading {
	text-align: center;
	padding: 4rem;
}

.head {
	font-family: "Oleo Script", sans-serif;
	color: #fff;
	display: inline;
	font-size:300%;
	/* border-top: 5px solid; */
	/* border-bottom: 5px solid; */
}

.contents {
	background-color: #80808033;
	border-radius: 20px;
}

.points {
	color: white;
	padding: 50px;
	border-radius: 10px;
	display: grid;
	align-items: center;
}

.art {
	display: grid;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.contents {
		border-radius: 0;
	}
}

/* End of Our Vision */

/* Start of Our Team Section */

#our-team {
	background-color: #1a1c1f;
}

.team {
	background: #1a1c1f;
}

.team-grp {
	display: flexbox;
	justify-content: center;
}

.team .team-1 {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
}

.team .team-1 .pic {
	border-radius: 4px;
	overflow: hidden;
}

.team .team-1 img {
	transition: all ease-in-out 0.4s;
}

.team .team-1:hover img {
	transform: scale(1.1);
}

.team .team-1 .team-info {
	position: absolute;
	bottom: -48px;
	left: 20px;
	right: 20px;
	background: linear-gradient(360deg, #b3f19b 0%, rgba(187, 240, 152, 0.9) 35%, rgba(0, 59, 37, 0.8) 100%);
	padding: 15px 0;
	border-radius: 4px;
}

.team .team-1 h4 {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 16px;
	color: #fff;
	position: relative;
	padding-bottom: 10px;
}

.team .team-1 h4:after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 1px;
	background: #1d3501;
	bottom: 0;
	left: calc(50% - 25px);
}

.team .team-1 span {
	font-style: italic;
	display: block;
	font-size: 13px;
	color: #fff;
}

.team .team-1 .social {
	margin-top: 15px;
}

.team .team-1 .social a {
	transition: color 0.3s;
	color: #01290d;
}

.team .team-1 .social a:hover {
	color: #fff;
}

.team .team-1 .social i {
	font-size: 16px;
	margin: 0 2px;
}

/* End of Our Team Section */

/* Start of Footer */

.logo-footer {
	width: 500px;
	height: 500px;
	border-radius: 50%;
}

.logo-footer2 {
	height: 500px;
}

#footer {
	min-height: 15vh;
	background-color: #161717;
	color: #fff;
	font-size: 90%;
	display: grid;
	justify-content: center;
	align-items: center;
	padding: 40px 0px 0px 0px;
}
.logos{
	margin: 10px 0px 20px 0px;
}
.social-icon{
	font-size:280%;
}
.copy{
	width:100vw;
	background-color: #0f0f0f;
	padding: 20px 0px 20px 0px;
}

/* End of Footer */