body {
    padding-top: 0px;
}

/* ______________________________________________________________________________________ */
/* ===== Hides Based on screen size ===== */
/* Use these classes to hide an element on desktop, mobile, or tablet */
 @media (max-width: 652.5px) {
	 .hiddenOnMobile {
		 display: none;
	}
}
 @media (min-width: 652.5px) and (max-width: 991.5px) {
	 .hiddenOnTablet {
		 display: none;
	}
}
 @media (min-width: 991.5px) {
	 .hiddenOnDesktop {
		 display: none;
	}
}

/* ______________________________________________________________________________________ */
/* ===== Other ===== */
 .fa {
	 padding: 20px;
	 font-size: 30px;
	 width: 60px;
	 text-align: center;
	 text-decoration: none;
	 border-radius: 50%;
}
/* Add a hover effect if you want */
 .fa:hover {
	 opacity: 0.7;
}
/* Set a specific color for each brand */
/* Facebook */
 .fa-facebook {
	 background: #3B5998;
	 color: white;
}
/* Twitter */
 .fa-twitter {
	 background: #55ACEE;
	 color: white;
}
 .fa-instagram {
	 background: #125688;
	 color: white;
}
 .cust-hide {
	 max-height: 0px;
	 overflow: hidden;
}
 .curve-it {
	 border-radius: 25px;
}
 .curve-it.px20 {
	 border-radius: 20px;
}
 .swal2-popup.swal2-toast {
	 flex-direction: row !important;
}
 .appointment-input {
	 margin-bottom: 30px;
}
 .logo {
	 width: 75px;
}
 ..carousel-item {
  height: 55vh;
}
.carousel-item .back-blurred {
  width: 100%;
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
}
.carousel-item .back-blurred img {
  width: 100%;
  height: auto;
}
.carousel-item img {
  height: inherit;
}

.carousel-item-sm {
  height: unset !important;
  min-height: unset !important;
}

.light-bg {
  background-color: rgb(255, 255, 255);
}

.carousel-caption-position.center-left {
  bottom: unset;
  top: 40%;
  right: unset;
  left: 15%;
}

.carousel-caption-position.center-right {
  bottom: unset;
  top: 40%;
  left: unset;
  right: 15%;
}

.carousel-link {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  white-space: nowrap;
  width: 100%;
  top: -61px;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 1000;
}

.carousel-link a {
  color: white;
}
 .news-block {
	/* overflow-x: auto;
	 */
	 overflow-y: scroll;
}
 .news-block .story-container {
	 padding-bottom: 15px;
}
 .news-block .story {
	 text-decoration: none;
}
 .news-block .story .story-title {
	 background-color: white;
	 padding: 10px;
	 padding-bottom: 1px !important;
	 padding-top: 5px !important;
}
 .news-block .story .story-img {
	 border: 10px solid white;
}
 .flex-items-evenly {
	/* , .partner-logos */
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
}
 .flex-items-evenly.align-baseline {
	 align-items: baseline;
}
 .flex-items-evenly.inline-flex {
	 display: inline-flex;
}
/*.partner-logos-container{
	*/
	/* min-width: 350px;
	*/
	/* overflow-x: auto;
	*/
	/*
}
*/
/*.partner-logos img{
	*/
	/* width: 100px;
	*/
	/*
}
*/
/* Photo Banner */
 .partner-logos-container {
	 width: 100%;
	 overflow: hidden;
	 margin: 10px auto;
	 background: white;
}
 .partner-logos, .partner-logos2 {
	 height: 175px;
	 width: 4000px;
	 margin-bottom: 5px;
	 font-size: 0;
}
 .partner-logos img, .partner-logos2 img {
	 margin-bottom: 10px;
	 margin-right: 127px;
	 height: 175px;
	 width: auto;
}
 .partner-logos img {
	 -webkit-transition: all 0.5s ease;
	 -moz-transition: all 0.5s ease;
	 -o-transition: all 0.5s ease;
	 -ms-transition: all 0.5s ease;
	 transition: all 0.5s ease;
}
 .partner-logos img:hover {
	 -webkit-transform: scale(1.2);
	 -moz-transform: scale(1.2);
	 -o-transform: scale(1.2);
	 -ms-transform: scale(1.2);
	 transform: scale(1.2);
	 cursor: pointer;
	 -webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	 -moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	 box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}
/*keyframe animations*/
 .partner-logos-first {
	 -webkit-animation: bannermove 30s linear infinite;
	 -moz-animation: bannermove 30s linear infinite;
	 -ms-animation: bannermove 30s linear infinite;
	 -o-animation: bannermove 30s linear infinite;
	 animation: bannermove 30s linear infinite;
}
 @keyframes "bannermove" {
	 0% {
		margin-left: 0px;
	}
	 100% {
		margin-left: -2130px;
	}
}
 @-moz-keyframes bannermove {
	 0% {
		margin-left: 0px;
	}
	 100% {
		margin-left: -2130px;
	}
}
 @-webkit-keyframes "bannermove" {
	 0% {
		margin-left: 0px;
	}
	 100% {
		margin-left: -2130px;
	}
}
 @-ms-keyframes "bannermove" {
	 0% {
		margin-left: 0px;
	}
	 100% {
		margin-left: -2130px;
	}
}
 @-o-keyframes "bannermove" {
	 0% {
		margin-left: 0px;
	}
	 100% {
		margin-left: -2130px;
	}
}
 .partner-logos-second {
	 -webkit-animation: bannermoves 30s linear infinite;
	 -moz-animation: bannermoves 30s linear infinite;
	 -ms-animation: bannermoves 30s linear infinite;
	 -o-animation: bannermoves 30s linear infinite;
	 animation: bannermoves 30s linear infinite;
}
 @keyframes "bannermoves" {
	 0% {
		margin-left: -2130px;
	}
	 100% {
		margin-left: 0px;
	}
}
 @-moz-keyframes bannermoves {
	 0% {
		margin-left: -2130px;
	}
	 100% {
		margin-left: 0px;
	}
}
 @-webkit-keyframes "bannermoves" {
	 0% {
		margin-left: -2130px;
	}
	 100% {
		margin-left: 0px;
	}
}
 @-ms-keyframes "bannermoves" {
	 0% {
		margin-left: -2130px;
	}
	 100% {
		margin-left: 0px;
	}
}
 @-o-keyframes "bannermoves" {
	 0% {
		margin-left: -2130px;
	}
	 100% {
		margin-left: 0px;
	}
}
 @media only screen and (min-width: 991px) {
	 .navbar-1 {
		 margin-top: -40px;
		 margin-right: 16%;
	}
	 .navbar-2 {
		 margin-top: 40px;
	}
	 .navbar-3 {
		 margin-left: auto;
	}
	
    .mobile-appointment-call{
        display: none !important;
    }
}

 @media only screen and (max-width: 314px){
     .mobile-appointment-call .call-us-box {
        width: 120px !important;
     }
     .mobile-appointment-call .call-us-box .text {
	    font-size: 0.5rem;
     }
     .mobile-appointment-call .call-us-box .number {
	    font-size: 0.7rem;
     }
 }
 @media only screen and (max-width: 351px){
     .mobile-appointment-call .call-us-box {
        width: 120px !important;
     }
     .mobile-appointment-call .call-us-box .text {
	    font-size: 0.5rem;
     }
     .mobile-appointment-call .call-us-box .number {
	    font-size: 0.7rem;
     }
 }
.mobile-appointment-call{
    display: block;
    padding: 0px;
    margin: 0px;
}
.mobile-appointment-call .call-us-box{
    display: block !important;
    width: 157px;
}
.mobile-appointment-call .call-us-box .text {
    width: 100% !important;
}
 .call-us-box {
	 width: 225px;
	 margin: auto;
	 border: 3px solid green;
	 border-radius: 25px;
	 padding: 10px;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
}
 .call-us-box .text {
	 width: 40%;
	 font-size: 0.7rem;
}
 .categories {
	 background-image: url("../../_images/universe.jpg");
	 min-width: 40vw;
	 padding-top: 20px;
	 padding-bottom: 40px;
}
 .categories .row .col-lg-3 {
	 padding-left: 30px;
	 padding-right: 30px;
}
 @media only screen and (max-width: 1075px) {
	 .categories .row .col-lg-3 {
		 padding-left: 10px;
		 padding-right: 10px;
	}
}
 @media only screen and (max-width: 800px) {
	 .categories .row .col-lg-3 {
		 padding-left: 5px;
		 padding-right: 5px;
	}
}
 @media only screen and (max-width: 767px) {
	 .categories .row .col-lg-3 {
		 padding-left: 30px;
		 padding-right: 30px;
	}
}
 .categories .row img {
	 max-width: 100%;
}
 .featured-story {
	 background-color: rgb(75, 75, 75);
	 min-width: 40vw;
	 padding-top: 75px;
	 padding-bottom: 60px;
}
 .featured-story .row img {
	 max-width: 30%;
}
 @media only screen and (max-width: 1075px) {
	 .featured-story .row img {
		 max-width: 50%;
	}
}
 @media only screen and (max-width: 767px) {
	 .featured-story .row img {
		 max-width: 100%;
	}
}
 .featured-story h3 {
	 color: white;
}
 .featured-story p {
	 color: white;
}
.service-types {
  display: flex;
  justify-content: space-evenly;
  overflow: hidden;
  height: 500px;
  box-sizing: border-box;
}

@media only screen and (max-width: 800px) {
  .service-types {
      flex-direction: column;
  }
}
.service-types .service-type-panel {
  background-color: black;
  background-repeat: no-repeat;
  /*background-size: auto 100%;*/
  background-position: center;
  width: 100%;
  overflow: hidden;
  transition: flex 0.5s ease;
  flex: 1;
}
.service-types .service-type-panel a {
  text-decoration: none;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-types .service-type-panel:hover {
  flex: 3;
}
.service-types .service-type-panel .centerer {
  flex: 1;
}
.service-types .service-type-panel .service-type-text-holder {
  background-color: rgba(255, 255, 255, 0);
  background: rgba(66, 66, 66, 0.25);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  background-size: cover;
  
  backdrop-filter: blur(10.5px);
  -webkit-backdrop-filter: blur(10.5px);
  border-radius: 5px;
  transition: flex 0.5s ease;
  flex: 1;
}
.service-types .service-type-panel .service-type-text-holder .service-type-text {
  margin: auto;
  min-width: 200px;
  padding: 10px 20px;
  color: #fff;
  font-size: 20pt;
  text-align: center;
}
.service-types .service-type-panel .service-type-text-holder p {
  transition: display 0.5s 0;
  display: none;
  position: absolute;
}
 .service-type-image-div {
	 height: 71%;
	 border-radius: 25px;
	 box-shadow: 5px 10px #888888;
	 transition: 100ms linear;
	 overflow: hidden;
}
 .services {
	 background-image: url("../../_images/milky-way.jpg");
	 min-width: 40vw;
	 padding-top: 20px;
	 padding-bottom: 40px;
}
 .services .services-header {
	 padding-left: 50px;
}
 .services-card-holder .services-card {
	 padding-bottom: 10px;
	 -webkit-clip-path: inset(-5px 0px -5px -5px);
	 clip-path: inset(-5px 0px -5px -5px);
}
 .services-card-holder .services-card .services-card-img {
	 width: 100%;
}
 .services-card-holder .services-card .services-card-img .services-card-text {
	 position: absolute;
	 color: #fff;
	 top: 60%;
	 right: 13px;
	 padding: 5px 10px;
	 background: rgba(66, 66, 66, 0.25);
	 box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
	 backdrop-filter: blur(10.5px);
	 -webkit-backdrop-filter: blur(10.5px);
	 border-radius: 5px 0px 0px 5px;
}
 .services-card-holder .services-card .services-card-img .services-card-text h5 {
	 text-shadow: 0 8px 32px 0 rgb(0, 0, 0);
	 font-weight: 100;
	 text-align: center;
	 width: 99%;
}

 .services2{
     background: rgba( 255, 255, 255, 0.6 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 18px );
    -webkit-backdrop-filter: blur( 18px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.services2 .services-header2{
    color: #fff;
    padding-left: 50px;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.services-card-group{
    width: 100%;
    margin: 0px !important;
}
 .services-card-group2{
	 padding-left: 35px;
	 padding-right: 35px;
}
 .services-card-group2 .main-col{
	 padding-top: 20px;
	 padding-right: 35px;
	 padding-left: 35px;
}
 .services-card-lg-col2 {
	 padding-bottom: 35px; 
}
 .services-card-holder2:hover .services-card2{
}

.services-card-holder2 {
    padding-bottom: 20px;
}
 .services-card2{
	overflow-x: hidden;
	overflow-y: hidden;
	background: rgba( 255, 255, 255, 0.25 );
    background-size:     cover;                      /* <------ */
    background-repeat:   no-repeat;
    background-position: center center; 
    
}
 .services-card-flex2{
	 display: flex;
	 justify-content: space-around;
	 height: 200px;
}
 .services-card-flex2.__short2{
	 height: 100px;
}
 .services-card2.__fixed-height2{
	 height: 262px;
}
 .services-card2 .services-card-img2{
	 width: 33%;
	 margin: auto;
}
 .services-card2 img{
	 width: 100%;
	 max-height: 100px;
	 border-radius: 20px;
}
 .services-card2 .services-card-text2{
	 width: 67%;
	/*text-align: center;
	*/
	 margin: auto;
	 padding-left: 10px;
}
.services-card2 .services-card-text-header2{
     
    color: #fff;
    background: rgba(66, 66, 66, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10.5px);
    -webkit-backdrop-filter: blur(10.5px);
	text-align: center;

}

.services-card2 .services-card-description2::-webkit-scrollbar {
  width: 20px;
}

.services-card2 .services-card-description2::-webkit-scrollbar-track {
  background-color: transparent;
}

.services-card2 .services-card-description2::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 20px;
  border: 8px solid transparent;
  background-clip: content-box;
  height: 40px;
}

.services-card2 .services-card-description2::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}
.services-card2 .services-card-description2{
    

    overflow-x: auto;
    overflow-y: auto;
    max-height: 200px;
    font-size: 1rem;
    
    border-radius: 10px;
    padding: 5px;
	 
	color:#fff;
    background: rgba(66, 66, 66, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10.5px);
    -webkit-backdrop-filter: blur(10.5px);
    /*border: 1px solid rgba( 255, 255, 255, 0.18 );*/
}
 .services-card2 .services-card-description2 h1, .services-card2 .services-card-description2 h2, .services-card2 .services-card-description2 h3, .services-card2 .services-card-description2 h4, .services-card2 .services-card-description2 h5, .services-card2 .services-card-description2 h6{
	 font-size: 1rem;
}


 .team-member-card {
	 color: black !important;
	 text-decoration: none !important;
	 transition: 100ms linear;
}
 .team-member-card:hover .team-member-card-content .tmcc-image {
	 margin-top: -400px;
}
 .team-member-card-content {
	 height: 400px;
	 overflow: hidden;
	 border-radius: 25px;
	 border: 3px solid rgb(96, 96, 96);
}
 .team-member-card-content .tmcc-image {
	 transition: 250ms linear;
}
 .team-member-card-content .tmcc-text {
	 max-height: 400px;
	 overflow: auto;
	 padding: 15px;
}
 @media only screen and (max-width: 1200px) {
	 .team-member-card-content {
		 height: 430px;
	}
	 .team-member-card:hover .team-member-card-content .tmcc-image {
		 margin-top: -430px;
	}
	 .team-member-card-content .tmcc-text {
		 max-height: 430px;
	}
}
 @media only screen and (max-width: 991px) {
	 .team-member-card-content {
		 height: 490px;
	}
	 .team-member-card:hover .team-member-card-content .tmcc-image {
		 margin-top: -490px;
	}
	 .team-member-card-content .tmcc-text {
		 max-height: 490px;
	}
}
 .teams {
	 padding-bottom: 60px;
}
 .teams .member-col {
	 padding-top: 30px;
}
 .teams .member-holder {
	 background-color: #ede3f7;
	 padding: 15px;
	 overflow: auto;
}
 .teams .member-holder .button-holder {
	 position: absolute;
	 max-width: 85%;
	 bottom: 10px;
}
 @media only screen and (max-width: 1199px) {
	 .button-holder {
		 max-width: 81% !important;
	}
}
 @media only screen and (max-width: 991px) {
	 .button-holder {
		 max-width: 76% !important;
	}
}
 @media only screen and (max-width: 767px) {
	 .teams .member-holder {
		 height: unset !important;
	}
	 .teams .bio-text {
		 padding-bottom: 50px;
	}
	 .button-holder {
		 max-width: 89% !important;
	}
}
 @media only screen and (max-width: 500px) {
	 .button-holder {
		 max-width: 87% !important;
	}
}
 @media only screen and (max-width: 420px) {
	 .button-holder {
		 max-width: 85% !important;
	}
}
 @media only screen and (max-width: 360px) {
	 .button-holder {
		 max-width: 83% !important;
	}
}
 .team-member {
	 padding-bottom: 20px;
}
 .team-member .member-img {
	 width: 100%;
	 height: auto;
}
 .team-member .positions-titles {
	 padding-bottom: 10px;
	 border-bottom: 1px solid #106553;
}
 .team-member .services-list {
	 display: grid;
	 grid-template-columns: 1fr 1fr 1fr;
}
 @media only screen and (max-width: 991px) {
	 .team-member .services-list {
		 grid-template-columns: 1fr 1fr;
	}
}
 @media only screen and (max-width: 467px) {
	 .team-member .services-list {
		 grid-template-columns: 1fr;
	}
}
 hr.branded {
	 width: 25%;
	 border-width: 0.5rem;
	 border-color: #0db14b;
}
 hr.branded--left {
	 margin-left: 0;
}
 @media only screen and (max-width: 991px) {
	 .ba-slider .container {
		 width: 768px !important;
		 height: 512px !important;
	}
	 .ba-slider .container .img {
		 background-size: 768px 100% !important;
	}
	 .ba-slider .container .slider::-webkit-slider-thumb {
		 height: 512px !important;
	}
	 .ba-slider .container .slider::-moz-range-thumb {
		 height: 512px !important;
	}
}
 @media only screen and (max-width: 810px) {
	 .ba-slider .container {
		 width: 600px !important;
		 height: 400px !important;
	}
	 .ba-slider .container .img {
		 background-size: 600px 100% !important;
	}
	 .ba-slider .container .slider::-webkit-slider-thumb {
		 height: 400px !important;
	}
	 .ba-slider .container .slider::-moz-range-thumb {
		 height: 400px !important;
	}
}
 @media only screen and (max-width: 625px) {
	 .ba-slider .container {
		 width: 480px !important;
		 height: 320px !important;
	}
	 .ba-slider .container .img {
		 background-size: 480px 100% !important;
	}
	 .ba-slider .container .slider::-webkit-slider-thumb {
		 height: 320px !important;
	}
	 .ba-slider .container .slider::-moz-range-thumb {
		 height: 320px !important;
	}
}
 @media only screen and (max-width: 535px) {
	 .ba-slider .container {
		 width: 360px !important;
		 height: 240px !important;
	}
	 .ba-slider .container .img {
		 background-size: 360px 100% !important;
	}
	 .ba-slider .container .slider::-webkit-slider-thumb {
		 height: 240px !important;
	}
	 .ba-slider .container .slider::-moz-range-thumb {
		 height: 240px !important;
	}
}
 @media only screen and (max-width: 420px) {
	 .ba-slider .container {
		 width: 240px !important;
		 height: 160px !important;
	}
	 .ba-slider .container .img {
		 background-size: 240px 100% !important;
	}
	 .ba-slider .container .slider::-webkit-slider-thumb {
		 height: 160px !important;
	}
	 .ba-slider .container .slider::-moz-range-thumb {
		 height: 160px !important;
	}
}
 .ba-slider .container {
	 position: relative;
	 width: 900px;
	 height: 600px;
	/*border: 2px solid white;
	*/
}
 .ba-slider .container .img {
	 position: absolute;
	 top: 0;
	 left: 15px;
	 width: 100%;
	 height: 100%;
	 background-size: 900px 100%;
}
 .ba-slider .container .background-img {
	/*background-image: url("https://i.imgur.com/s08MkXC.jpg");
	*/
}
 .ba-slider .container .foreground-img {
	/*background-image: url("https://i.imgur.com/PfIWek4.jpg");
	*/
	 width: 50%;
}
 .ba-slider .container .slider {
	 position: absolute;
	 -webkit-appearance: none;
	 -moz-appearance: none;
	 appearance: none;
	 width: 100%;
	 height: 100%;
	 background: rgba(242, 242, 242, 0.3);
	 outline: none;
	 margin: 0;
	 transition: all 0.2s;
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
 .ba-slider .container .slider:hover {
	 background: rgba(242, 242, 242, 0.1);
}
 .ba-slider .container .slider::-webkit-slider-thumb {
	 -webkit-appearance: none;
	 appearance: none;
	 width: 8px;
	 height: 600px;
	 background: white;
	 cursor: pointer;
}
 .ba-slider .container .slider::-moz-range-thumb {
	 width: 8px;
	 height: 600px;
	 background: white;
	 cursor: pointer;
}
 .ba-slider .container .slider-button {
	 pointer-events: none;
	 position: absolute;
	 width: 30px;
	 height: 30px;
	 border-radius: 50%;
	 background-color: white;
	 left: calc(50% - 5px);
	 top: calc(50% - 18px);
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
 .ba-slider .container .slider-button:after {
	 content: "";
	 padding: 3px;
	 display: inline-block;
	 border: solid #5d5d5d;
	 border-width: 0 2px 2px 0;
	 transform: rotate(-45deg);
}
 .ba-slider .container .slider-button:before {
	 content: "";
	 padding: 3px;
	 display: inline-block;
	 border: solid #5d5d5d;
	 border-width: 0 2px 2px 0;
	 transform: rotate(135deg);
}
 .msu-accordion {
	 margin-top: 1rem;
	 margin-bottom: 1rem;
	 height: -moz-fit-content;
	 height: fit-content;
}
 .msu-accordion ._head {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 color: #18453b;
	 cursor: pointer;
	 border: 1px solid rgb(153, 162, 162);
	 padding: 1rem;
	 font-size: 18px;
	 text-decoration: none;
}
 .msu-accordion ._head:hover, .msu-accordion ._head:focus {
	 background: #e6e6e6;
}
 .msu-accordion ._head.collapsed {
	 font-weight: normal !important;
}
 .msu-accordion ._head {
	 font-weight: bold;
}
 .msu-accordion ._head.collapsed ._icon::before {
	 content: "+" !important;
}
 .msu-accordion ._head ._icon::before {
	 content: "-";
}
 .msu-accordion .--no-padding {
	 padding: 0;
}
 .msu-accordion ._body {
	 border: 1px solid rgb(153, 162, 162);
	 padding: 1rem;
	 border-top: none;
}
 .aocg {
	 border: 1px solid rgb(19, 133, 82);
	 padding: 15px;
}
 footer a {
	 color: #18453b;
	 outline: 0;
	 text-decoration: underline;
}
 footer .SocialLinks a {
	 font-size: 2rem;
	 display: inline-block;
	 margin: 1rem;
	 color: rgb(83, 80, 84);
	 background-color: white;
	 width: 50px;
	 height: 50px;
	 text-align: center;
	 border-radius: 25px;
	 transition: all 0.25s linear;
}
 footer .SocialLinks a:hover {
	 background-color: #8de9d4;
}
 footer .MSUFooter {
	 padding: 30px;
}
 footer .MSUFooter .__links {
	 margin-bottom: 5px;
}
 footer .MSUFooter .__links--top {
	 border-bottom: 1px dotted rgb(83, 80, 84);
	 padding-bottom: 3px;
	 margin-bottom: 2px;
	 font-size: 0.8rem;
}
 footer .MSUFooter .__links--middle {
	 font-size: 0.6rem;
	 color: rgb(153, 162, 162);
	 margin-top: 3px;
}
 footer .MSUFooter .__links--bottom {
	 font-size: 0.7rem;
}
 footer .MSUFooter .__links a {
	 text-decoration: none;
}
 footer .MSUFooter .__links a:hover {
	 color: rgb(13, 177, 75);
	 text-decoration: underline;
}
 footer .MSUFooter .__links div {
	 border-right: 1px solid rgb(153, 162, 162);
}
 footer .MSUFooter .__links div:first-child {
	 padding-left: 0;
}
 footer .MSUFooter .__links div:last-child {
	 border-right: none;
}
 @media (max-width: 768px) {
	 footer .MSUFooter .__links--top {
		 padding-bottom: 5px;
		 margin-bottom: 5px;
	}
	 footer .MSUFooter .__links--middle {
		 font-size: 1rem;
		 border-bottom: 1px dotted rgb(83, 80, 84);
		 padding-bottom: 5px;
		 margin-bottom: 5px;
	}
	 footer .MSUFooter .__links--bottom {
		 font-size: 1rem;
	}
	 footer .MSUFooter .__links div {
		 padding-left: 0;
		 margin-top: 1rem;
		 border-right: none;
	}
}
 footer .MSUFooter .__wordmark {
	 width: 100%;
	 height: auto;
	 display: block;
}
 footer .MSUFooter .__wordmark img {
	 width: 100%;
	 height: auto;
	 display: block;
}
 footer .social-footer {
	 background-color: #cdafd4;
	 color: white;
}
 footer .social-footer .newsCarousel {
	 min-height: 225px;
}
 @media only screen and (max-width: 1850px) {
	 .navbar-1 {
		 margin-right: 15%;
	}
}
 @media only screen and (max-width: 1800px) {
	 .navbar-1 {
		 margin-right: 14%;
	}
}
 @media only screen and (max-width: 1750px) {
	 .navbar-1 {
		 margin-right: 13%;
	}
}
 @media only screen and (max-width: 1700px) {
	 .navbar-1 {
		 margin-right: 12%;
	}
}
 @media only screen and (max-width: 1650px) {
	 .navbar-1 {
		 margin-right: 11%;
	}
}
 @media only screen and (max-width: 1600px) {
	 .navbar-1 {
		 margin-right: 10%;
	}
}
 @media only screen and (max-width: 1550px) {
	 .navbar-1 {
		 margin-right: 8%;
	}
}
 @media only screen and (max-width: 1500px) {
	 .navbar-1 {
		 margin-right: 7%;
	}
	 .service-type-image-div {
		 height: 70%;
	}
}
 @media only screen and (max-width: 1450px) {
	 .navbar-1 {
		 margin-right: 5%;
	}
}
 @media only screen and (max-width: 1400px) {
	 .navbar-1 {
		 margin-right: 3%;
	}
}
 @media only screen and (max-width: 1350px) {
	 .navbar-1 {
		 margin-right: 1%;
	}
}
 @media only screen and (max-width: 1300px) {
	 .navbar-1 {
		 margin-right: -1%;
	}
}
 @media only screen and (max-width: 1250px) {
	 .navbar-1 {
		 margin-right: -3%;
	}
	 .service-type-image-div {
		 height: 69%;
	}
}
 @media only screen and (max-width: 1200px) {
	 .navbar-1 {
		 margin-right: -5%;
	}
}
 @media only screen and (max-width: 1150px) {
	 .navbar-1 {
		 margin-right: -9%;
	}
	 .navbar-3 {
		 margin-left: unset;
	}
}
 @media only screen and (max-width: 1100px) {
	 .navbar-1 {
		 margin-right: -11%;
	}
}
 @media only screen and (max-width: 1050px) {
	 .navbar-1 {
		 margin-right: -28%;
	}
}
 @media only screen and (max-width: 1000px) {
	 .navbar-1 {
		 margin-right: -30%;
	}
}
 @media only screen and (max-width: 991px) {
	 .navbar-2 {
		 margin-top: unset;
	}
}
 @media only screen and (max-width: 950px) {
	 .service-type-image-div {
		 height: 68%;
	}
}
 @media only screen and (max-width: 767px) {
	 .service-type-image-div {
		 height: 87%;
	}
}
 @media only screen and (max-width: 650px) {
	 .service-type-image-div {
		 height: 86%;
	}
}
 @media only screen and (max-width: 578px) {
	 .service-type-image-div {
		 height: 94%;
	}
}
 @media only screen and (max-width: 550px) {
	 .service-type-image-div {
		 height: 93%;
	}
}
 @media only screen and (max-width: 450px) {
	 .service-type-image-div {
		 height: 92%;
	}
}
 @media only screen and (max-width: 400px) {
	 .service-type-image-div {
		 height: 91%;
	}
}
/*# sourceMappingURL=app.css.map */
