*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@font-face {
    font-family: my-heading;
    src: url(../Fonts/Open_Sans/static/OpenSans-Bold.ttf);
}
@font-face {
    font-family: my-text;
    src: url(../Fonts/PT_Sans/PTSans-Regular.ttf);
}
.bg-gradient{
	background-color: #838587;
}
.my-heading{
    font-family:my-heading ;
}

.my-text{
    font-family: my-text;
}

.bg-light-gray{
	background-color:#D7D9D7;
}

.bg-orange{
	background-color: #d99a25;
}

.bg-dark-gray{
	background-color: #474F59;
}

.txt-light-gray{
	color:#D7D9D7;
}

.txt-orange{
	color:#d99a25; 
}

.txt-dark-gray{
	 color:#474F59; 
}

.btn-outline-orange{
	border:1px solid #d99a25;
}

.btn-menu:hover{
	background-color: #d99a25;
}
.btn-menu.active{
	background-color: #d99a25 !important;
}


@media(max-width:479px){
	.navbar-brand{
		font-size: 14px;
	}
	.navbar-brand img{
		width: 35px !important;
	}
	.my-heading{
		font-size: 16px;
		font-weight: normal;
	}
	.my-text li{
		display: block !important;
		margin-top: 30px;
	}
}
@media(min-width:480px) and (max-width:574px){
}
@media(min-width:575px) and (max-width:767px){
}
@media(min-width:768px) and (max-width:991px){
}
@media(min-width:992px){
}



