/* CSS Document */

/* media sizing */

// Extra small devices (portrait phones) @media (max-width: 575.99px) {

}
 // Small devices (landscape phones) @media (max-width: 767.99px) {

}
 // Medium devices (tablets) @media (max-width: 991.99px) {

}
 // Large devices (desktops) @media (max-width: 1199.99px) {

}

// SASS 

@include media-breakpoint-down(xs) {

}
 @include media-breakpoint-down(sm) {

}
@include media-breakpoint-down(md) {

}
 
 @include media-breakpoint-down(lg) {
...
}


.footer{
	margin-top:112px;
	color:#ddd !important;
	background-color:#0E8688 !important;
	}
	
.footer-bottom{
	color:#ddd !important;
	background-color:#999 !important;
	}
	
.footer-text{
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
	}

a.footer-link{
	color:#ddd;
	text-decoration:none;
}
	
a.footer-link:hover{
	color:#ddd !important;
	text-decoration:underline;
	/*background-color:#666 !important;*/
	}
