html,
body {
	color: #000;
	margin: 0px;
	padding: 0px;
	font-size: 14px;
	font-family: 'Raleway', sans-serif, 'Montserrat', -apple-system, BlinkMacSystemFont, segoe ui, Roboto, helvetica neue, Arial, sans-serif;
	overflow-x: hidden;
}
* {
	-webkit-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
	border-radius: 0px !important;
}
.page-container{
	min-height: 100vh;
}
.internal-page{
	/*padding-top: 70px;
	padding-bottom: 70px;*/
}
.text-lg{
	font-size: 1.35rem;
}
.wide {
	box-sizing: border-box;
	/*width: 100%;*/
	min-height: 100vh;
}
#sidebar {
	width: 250px;
	position: fixed;
	top: 0;
	left: -250px;
	height: 100vh;
	z-index: 999;
	background: #000;
	color: #fff;
	transition: all 0.3s;
	overflow: hidden;
}
.menu{
	/*margin-top: 80px !important;*/
}
.close-btn-holder{
	min-height: 60px;
}
.menu-link{
	color: #000;
}
.menu-link:hover{
	color: rgba(127,140,141 ,1);
}
#sidebar.active {
	left: 0;
}
.first-space{
	padding-right: 1px;
}
.first-space-sm{
	letter-spacing: 1px;
}
.first-space-xm{
	letter-spacing: .5px;
}
.font-semi{
	font-weight: 600;
}
.font-extra{
	font-weight: 900;
}
.font-number{
	font-family: 'Arial', 'Helvetica', sans-serif;
	color: rgba(0,0,0,.7);
}
#dismiss {
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background: #7386D5;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#dismiss:hover {
	background: #fff;
	color: #7386D5;
}

.overlay {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	z-index: 998;
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.overlay.active {
	display: block;
	opacity: 0;
}
#content {
	width: 100%;
	min-height: 100vh;
	transition: all 0.3s;
	position: absolute;
	top: 0;
	right: 0;
}
#nav-menu-btn {
	position: fixed;
	width: 50px;
	height: 40px;
	top: 15px;
	left: 25px;
	cursor: pointer;
	border-radius: 7px !important;
	border: none;
	outline: none;
	padding: 5px;
	background-color: #000;
	z-index: 997;
}
.nav-btn{
	transition: all 0.3s linear;
	left: 200px !important;
}
#nav-menu-btn span {
	position: absolute;
	width: 20px;
	height: 3px;
	top: 50%;
	left: 50%;
	background: #fff;
	border-radius: 2px;
	overflow: hidden;
	transition: all 0.3s linear;
}
#nav-menu-btn span::before {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	background: gray;
	transition: all 0.3s linear;
}
#nav-menu-btn span:nth-child(1) {
	animation: span-first-off 0.5s ease-in-out;
	animation-fill-mode: forwards;
}
#nav-menu-btn span:nth-child(2) {
	animation: span-second-off 0.5s ease-in-out;
	animation-fill-mode: forwards;
}
#nav-menu-btn span:nth-child(3) {
	animation: span-third-off 0.5s ease-in-out;
	animation-fill-mode: forwards;
}

#nav-menu-btn.on:hover span::before {
	width: 100%;
	transition: all 0.3s linear;
}
#nav-menu-btn.on span:nth-child(1) {
	animation: span-first-on 0.5s ease-in-out;
	animation-fill-mode: forwards;
}
#nav-menu-btn.on span:nth-child(2) {
	animation: span-second-on 0.5s ease-in-out;
	animation-fill-mode: forwards;
}
#nav-menu-btn.on span:nth-child(3) {
	animation: span-third-on 0.5s ease-in-out;
	animation-fill-mode: forwards;
}
.highlight-menu{
	font-weight: bold;
}
@keyframes span-first-on {
	0% {
		transform: translate(-50%, -300%);
	}
	30% {
		transform: translate(-50%, -50%);
	}
	100% {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
}
@keyframes span-first-off {
	0% {
		transform: translate(-50%, -50%) rotate(-45deg);
	}
	30% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -300%);
	}
}
@keyframes span-second-on {
	0% {
		transform: translate(-50%, -50%);
	}
	25% {
		background: gray;
	}
	50% {
		transform: translate(-50%, -50%) scale(1);
	}
	100% {
		transform: translate(-150%, -50%) scale(0);
	}
}
@keyframes span-second-off {
	0% {
		transform: translate(-150%, -50%) scale(0);
	}
	25% {
		background: gray;
	}
	50% {
		transform: translate(-50%, -50%) scale(1);
	}
	100% {
		transform: translate(-50%, -50%);
	}
}
@keyframes span-third-on {
	0% {
		transform: translate(-50%, 200%);
	}
	30% {
		transform: translate(-50%, -50%);
	}
	100% {
		transform: translate(-50%, -50%) rotate(45deg);
	}
}
@keyframes span-third-off {
	0% {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	30% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, 200%);
	}
}

.title-lg{
	font-weight: 900;
	font-size: 3.5rem;
}
.title-md{
	font-weight: 900;
	font-size: 3rem;
}
.title-sm{
	font-weight: 700;
	font-size: 2.3rem;
}
.text-font-lg{
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 175%;
}
.text-font-xl{
	font-size: 1.4rem;
}
.text-font-xl li{
	font-weight: 700;
}
.top-space{
	padding-top: 100px;
}
.bottom-sapce{
	padding-bottom: 100px;
}
.side-border{
	border-top: 7px solid;
	width: 40px;
	border-color: #000;
	height: 7px;
}
.side-border-white{
	border-top: 7px solid;
	width: 40px;
	border-color: rgba(255, 255, 255, 1);
	height: 7px;
}
.misson-space{
	height: 40px;
}
.side-shift-left{
	position: relative;
	left: -25px;
}
.program-height{
	height: 200px;
}
.program-height-md, .program-height-sm{
	height: 100px;
}
.list-lineheight li{
	margin-bottom: 10px;
}
ul.dash {
	list-style: none;
	margin-left: 0;
	padding-left: 1em;
}
ul.dash > li:before {
	display: inline-block;
	content: "-";
	width: 1em;
	margin-left: -1em;
}
.anchor-text{
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, segoe ui, Roboto, helvetica neue, Arial, sans-serif;
	font-weight: 700;
	color: #000;
}
.contact-min-width{
	min-width: 150px;
	min-height: 75px;
}
.programmes-title{
	font-weight: 900;
}
.pull-up{
	position: relative;
	top: -100px;
}
.logo-text{
	position: relative;
	left: -10px;
}
.font-normal{
	font-weight: 400 !important;
}
.address-font-sm{
	font-size: 1.15rem;
}
.tagline-text{
	font-size: 1.8rem;
	position: relative;
	left: -10px;
}
.position-left-sm{
	position: relative;
	left: -10px;
}
@media (max-width: 768px) {
	.menu{
		/*margin-top: 80px !important;*/
	}
	#nav-menu-btn{
		left: 15px;
	}
	.wide, .page-container{
		min-height: auto;
	}
	#sidebar{
		/*padding-top: 50px;*/
	}
	.title-lg{
		font-size: 2.5rem;
	}
	.title-md{
		font-size: 2.2rem;
	}
	.title-md-arrange{
		font-size: 2rem;
	}
	.title-sm-arrange{
		font-size: 1.7rem;
	}
	.text-font-lg{
		font-size: 1rem;
	}
	.text-font-xl{
		font-size: 1.2rem;
	}
	.top-space-sm{
		padding-top: 100px;
	}
	.misson-space{
		/*display: none;*/
	}
	.internal-page{
		padding-top: 70px;
		/*padding-bottom: 70px;*/
	}
	.internal-page-lg{
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.andugundu-logo{
		width: 60%;
	}
	.contact-min-width{
		margin-top: 10px;
		min-width: auto;
		min-height: auto;
	}
	.radial-bg{
		background: none;
	}
	.programmes-bg{
		background-position: center bottom;
	}
	.triangle-bg{
		background-position: right bottom;
	}
	.reduce-space{
		padding-top: 30px;
	}
	.program-height, .program-height-md{
		height: 40px;
	}
	.program-height-sm{
		height: 0px;
	}
	.pull-up{
		position: static;
	}
	.design-bg-one, .design-bg-two, .design-bg-three, .design-bg-four, .design-bg-five, .design-bg-six{
		background-size: cover;
	}
	.hide-mobile{
		display: none;
	}
	.text-sm{
		font-size: 2rem;
	}
}