/* TABLE OF CONTENTS */

/*
1. GENERAL
2. COLORS
3. TYPOGRAPHY
4. BUTTONS
5. NAVIGATION
6. HERO
*/

/*-------------------------------*/

/* GENERAL */

.text-shadow {
  text-shadow: 0px 2px 2px rgba(75,75,75,1);
}

.text-shadow-dark {
  text-shadow: 0px 2px 2px rgba(0,0,0,1);
}

.box-shadow {
	box-shadow: 0px 10px 20px rgba(139,68,136,.15);
}

.image-overlay-grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(139,68,136,.1),rgba(139,68,136,.75));
}

.image-overlay-25 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(139,68,136,.25);
}

.image-overlay-50 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(139,68,136,.5);
}

.image-overlay-75 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(139,68,136,.75);
}

.image-overlay-text {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
  transform: translateY(-50%);
	margin: auto;
	padding: 1rem 1.5rem;
	color: #FFF;
}

.no-hover {
	color: inherit;
}

.no-hover:hover {
	text-decoration: none;
	color: inherit;
}

.centered {
	top: 50%;
	left: 0;
	right: 0;
  transform: translateY(-50%);
	text-align: center;
	margin: auto;
}

.bg-cover {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}

@media (max-width: 1199.98px) {
	.tooltip {
		display: none;
	}
}


/* COLORS

Light Purple: #8D4387;
Dark Purple: #4A4670;
Green: #39B200;

*/

.text-light-purp {
  color: #8D4387;
}

a.text-light-purp {
  color: #8D4387;
  font-weight: bold;
}

a.text-light-purp:hover {
  color: #4A4670;
  text-decoration: none;
  transition: all .3s ease;
}

.bg-light-purp {
  background-color: #8D4387;
}

.text-dark-purp {
  color: #4A4670;
}

.bg-dark-purp {
  background-color: #4A4670;
}

.text-green {
  color: #39B200;
}

.bg-green {
  background-color: #39B200;
}


/* TYPOGRAPHY

font-family: 'Montserrat', sans-serif;

*/

legend {
  font-size: calc(1rem + 0.2vw);
}

h1,
.h1 {
  font-size: calc(1rem + 1.25vw);
}

h2,
.h2 {
  font-size: calc(1.25rem + 0.45vw);
}

h3,
.h3 {
  font-size: calc(1.1rem + 0.3vw);
}

h4,
.h4 {
  font-size: calc(1.05rem + 0.15vw);
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6 .h6, .display-1, .display-2, .display-3, .display-4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.top-title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
}

p + ul {
  margin-top: -.75rem;
}

p.mb-1 + ul {
  margin-top: 0;
  margin-bottom: 0;
}

span.float-right {
  padding-left: 1rem;
}


/* BUTTONS */

.btn {
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  transition: all .3s ease;
  white-space: normal;
}

.btn-block {
  white-space: normal;
}

.btn-reg {
  padding: .6rem 1.75rem;
}

.btn-light-purp {
  background-color: #8D4387;
  color: #FFF;
}

.btn-light-purp:hover {
  border: 1px solid #4A4670;
  background-color: #4A4670;
  color: #FFF;
  box-shadow: 0 0 0 0.2rem rgba(74,70,112,.25);
}

.btn-light-purp:focus {
  box-shadow: 0 0 0 0.2rem rgba(74,70,112,.25);
}

.btn-light-purp.disabled, .btn-light-purp:disabled {
  opacity: .8;
}

.btn-light:hover {
  color: #8D4387;
}

.btn-outline-light:hover {
  color: #8D4387;
}

.btn-icon {
  font-size: .9rem;
  background-color: #8D4387;
  color: #FFF;
  padding: .6rem 1rem;
  text-align: left;
  display: block;
}

/* .btn-icon {
  font-size: .9rem;
  background-color: #FFF;
  color: #8D4387;
  border: 1px solid #8D4387;
  padding: .6rem 1rem;
  text-align: left;
  display: block;
} */

.btn-icon:hover {
  border: 1px solid #4A4670;
  background-color: #4A4670;
  color: #FFF;
  box-shadow: 0 0 0 0.2rem rgba(74,70,112,.25);
}

.btn-icon:focus {
  box-shadow: 0 0 0 0.2rem rgba(74,70,112,.25);
}

.btn-icon + .btn-icon {
  margin-top: .5rem;
}

.btn-icon:last-child {
  margin-bottom: 1rem;
}

.btn-icon + p {
  margin-top: 1rem;
}

.btn-icon + .expand-btn {
  margin-top: 1rem;
}

.btn-directions {
  padding: .25rem .4rem;
  font-size: .75rem;
  border: 1px solid #DEE2E6;
  text-transform: capitalize;
}


/* TOP BAR */

#topBar {
    padding-top: .25rem;
    padding-bottom: .25rem;
}

@media (max-width: 1199.98px) {
    #topBar a {
        font-size: .9rem;
    }
}

@media (max-width: 575.98px) {
    #topBar a {
        font-size: .8rem;
    }
}

ul.sm-nav {
	padding: 0;
	margin: 0;
}

.sm-nav li {
	list-style-type: none;
	padding: 0 .2rem;
	display: inline-block;
}

.sm-nav li a {
	font-size: 1.65rem;
	color: #FFF;
}

.sm-nav li a:hover {
	color: #FFF;
  text-decoration: none;
}

ul.sm-nav-mobile {
	padding: 0;
  margin-top: .75rem;
  margin-bottom: 0;
}

.sm-nav-mobile li {
	list-style-type: none;
	padding: 0 .5rem;
	display: inline-block;
}

.sm-nav-mobile li a {
	font-size: 2rem;
	color: #8D4387;
}

.sm-nav-mobile li a:hover {
	color: #4A4670;
  text-decoration: none;
}

.mayor-link {
  color: #FFF;
  font-weight: bold;
}

.mayor-link:hover {
  color: #FFF;
  text-decoration: none;
}


/* NAVIGATION */

.navbar {
    padding: 0;
  background-color: #FFF;
  border-bottom: 1px solid #DEE2E6;
}

a.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: 300px;
  height: 92px;
}

@media (max-width: 1199.98px) {
  .navbar-brand img {
    width: 200px;
    height: 61px;
  }
}

.navbar-expand-xl .navbar-nav a.main.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: block;
  position: relative;
  color: #000;
  text-transform: uppercase;
  padding: .25rem .75rem .25rem .75rem;
  text-decoration: none;
  border: 1px solid #FFF;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
}

.navbar-expand-xl .navbar-nav a.main.nav-link:hover {
  color: #8D4387;
  background-color: #F8F9FA;
  border: 1px solid #DEE2E6;
  border-bottom: 1px solid #F8F9FA;
}

a.main:hover {
  color: #8D4387;
  background-color: #F8F9FA;
  border: 1px solid #DEE2E6;
  border-bottom: 1px solid #F8F9FA;
}

.navbar-nav .nav .nav-item a.nav-link {
  color: #8D4387;
  line-height: 1.3;
  font-size: .85rem;
}

.navbar-nav .nav .nav-item a.nav-link:hover {
  color: #4A4670;
  background-color: #FFF;
  border-radius: .25rem;
}

.nav-link {
  padding: .15rem 1rem;
}

.dropdown-toggle::after {
  display: none;
  border: 0;
}

a.dropdown-arrow::after {
  content: "\f107";
  font: var(--fa-font-solid);
  font-size: .9rem;
  position: relative;
  display: inline-block !important;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  transition: all .2s ease;
}

.navbar .dropdown-menu div[class*="col"] {
  margin-bottom: .5rem;
}

.navbar .dropdown-menu {
  background-color: #F8F9FA !important;
  border: 1px solid #DEE2E6 !important;
  border-radius: 0;
  padding: .25rem 0;
}

.dropdown:hover a.main.nav-link {
  color: #8D4387;
  background-color: #F8F9FA;
  border: 1px solid #DEE2E6;
  border-bottom: 1px solid #F8F9FA;
}

.dropdown.show a.main.nav-link {
  color: #8D4387;
  background-color: #F8F9FA;
  border: 1px solid #DEE2E6;
  border-bottom: 1px solid #F8F9FA;
}

a.top-level {
  font-size: .9rem;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
}

a.top-level:hover {
  color: #8D4387;
  text-decoration: none;
  transition: all .3s ease;
}

.dropdown.show .dropdown-arrow::after {
	transform: rotate(-180deg);
	transition: all .1s ease-in-out;
}

@media (min-width: 1200px) {
  .navbar .dropdown {
    position: static;
  }

  .navbar .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 0;
    transition: all .3s ease;
  }

  .navbar .dropdown:hover .dropdown-menu,
  .navbar .dropdown .dropdown-menu:hover {
    display: block;
    transition: all .3s ease;
  }

  .navbar .dropdown-menu {
    border: 1px solid rgba(0,0,0,.15);
    background-color: #fff;
  }

  .navbar .dropdown-menu {
    box-shadow: 0px 10px 20px rgba(139,68,136,.15);
  }

  ul.navbar-nav li.nav-item:hover a.dropdown-arrow::after {
    transform: rotate(-180deg);
    transition: all .2s ease;
  }
}

@media (max-width: 1199.98px) {
    .navbar {
        padding-left: 0;
        padding-right: 0;
    }

  .navbar-nav {
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-top: 1px solid #DEE2E6;
  }

  .navbar-expand-xl .navbar-nav a.main.nav-link {
    padding: .5rem .75rem;
  }

  .navbar .dropdown-menu {
    margin-top: 0;
    border-bottom-left-radius: .3rem;
    border-bottom-right-radius: .3rem;
  }

  a.dropdown-arrow::after {
    font-size: 1rem;
    position: absolute;
    right: 1rem;
  }

  .dropdown.show a.dropdown-arrow::after {
		transform: rotate(-180deg);
		transition: all .1s ease-in-out;
	}

  .navbar-nav .nav-link {
    padding: .3rem 0 .3rem .75rem;
  }

  .navbar-nav {
    border-bottom: 1px solid #DEE2E6;
  }
}

.nav-link-active a.main {
  color: #8D4387 !important;
}

.nav-link-active a.main:hover {
  color: #8D4387 !important;
}


/* MOBILE ANIMATION */

#mobile-menu {
	width: 26px;
	height: 20px;
	top: 20px;
	right: 0px;
	float: right;
	position: relative;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	cursor: pointer;
}

@media (min-width: 1200px) {
	#mobile-menu {
		display: none;
	}
}

#mobile-menu span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #000;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

#mobile-menu span:nth-child(1) {
	top: 0px;
}

#mobile-menu span:nth-child(2), #mobile-menu span:nth-child(3) {
	top: 9px;
}

#mobile-menu span:nth-child(4) {
	top: 18px;
}

#mobile-menu.open span:nth-child(1) {
	top: 15px;
  width: 0%;
  left: 50%;
}

#mobile-menu.open span:nth-child(2) {
	transform: rotate(45deg);
  background-color: #DC3545;
}

#mobile-menu.open span:nth-child(3) {
	transform: rotate(-45deg);
  background-color: #DC3545;
}

#mobile-menu.open span:nth-child(4) {
	top: 15px;
	width: 0%;
	left: 50%;
}

#alerts-slider a {
    color: #FFF !important;
    font-weight: bold;
}


/* HERO */

#hero {
  position: relative;
}

#hero .carousel-item {
  overflow: hidden;
}

.bg-hero {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  min-height: 625px;
}

@media (max-width: 1499.98px) {
  .bg-hero {
    min-height: 525px;
  }
}

@media (max-width: 1199.98px) {
  .bg-hero {
    min-height: 525px;
  }
}

@media (max-width: 991.98px) {
  .bg-hero {
    min-height: 525px;
  }
}

@media (max-width: 767.98px) {
  .bg-hero {
    min-height: 500px;
  }
}

@media (max-width: 575.98px) {
  .bg-hero {
    min-height: 475px;
  }
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding-top: 15px;
  padding-bottom: 15px;
}

.hover-card {
  background-color: rgba(255,255,255,.85);
}

.hover-card:hover {
  background-color: rgba(255,255,255,1);
  transition: all .3s ease;
}

#hero ol.carousel-indicators {
  bottom: 2rem;
  margin-bottom: 0;
}

#hero .carousel-indicators li {
  border-radius: 100%;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  margin-right: 5px;
}

ol.carousel-indicators {
  bottom: 2.5rem;
  margin-bottom: 0;
}

.carousel-indicators li {
  background-color: #F8F9FA;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  margin-left: 3px;
  margin-right: 3px;
  border: 1px solid #DEE2E6;
}

.carousel-indicators .active {
  background-color: #8D4387;
}

.carousel-control-prev,
.carousel-control-next {
  color: #000;
  width: 35px;
  opacity: 1;
  transition: all .3s ease;
}

@media (max-width: 767.98px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    display: none;
  }
}

.purp-icon {
  color: #8D4387;
  display: block;
}

.purp-icon .icon {
  font-size: 2.5rem;
}

.purp-icon:hover {
  color: #4A4670;
  text-decoration: none;
  transition: all .3s ease;
  background-color: #FFF;
  border-radius: .25rem;
}

@media (max-width: 767.98px) {
  .contact-icon-box {
    margin-top: 1rem;
  }

  .purp-icon .icon {
    font-size: 2rem;
  }
}


/* SWIPER CAROUSEL */

.swiper-container.swiper-image-cards {
  padding-left: 0rem;
  padding-right: 30px;
  padding-top: .5rem;
  padding-bottom: .5rem;
  margin-left: -15px;
}

.swiper-wrapper {
  margin-bottom: 2rem;
}

.swiper-slide {
  text-align: center;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: #8B4488;
  border-radius: 100%;
  padding: 1.25rem;
  border: 1px solid #FFF;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.swiper-button-next, .swiper-button-prev {
  width: 13.5px;
  height: 22px;
  background-size: 13.5px 22px;
  margin-top: -30px;
}

.swiper-pagination-bullet {
  background-color: #F8F9FA;
  border: 1px solid #DEE2E6;
  opacity: 1;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: #8D4387;
  border: 1px solid #8D4387;
}


/* LINKS */

ul.link-columns {
  columns: 1;
  -webkit-columns: 1;
  -moz-columns: 1;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  ul.link-columns {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}

@media (min-width: 1200px) {
  ul.link-columns {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
  }
}

.link-columns li {
  list-style-type: none;
}

.link-columns li a {
  text-align: left;
  transition: all .3s ease;
  white-space: normal;
  padding: .75rem 2rem .75rem 1rem;
  display: block;
  color: #000;
  margin-bottom: .75rem;
  position: relative;
}

.link-columns li a::after {
  content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	right: .75rem;
  top: .75rem;
	position: absolute;
  color: #000;
	display: inline-block !important;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transition: all .3s ease;
}


/* CARDS */

.card {
  border: 1px solid #DEE2E6;
}

.card:hover {
  transition: all .3s ease;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.card-body ul:last-child {
  margin-bottom: 0;
}

.card-body address:last-child {
  margin-bottom: 0;
}

.card-body .btn-icon:last-child {
  margin-bottom: 0;
}

.card-body ul {
  padding-left: 1.75rem;
}

.card-body ol {
  padding-left: 1.75rem;
}

.card-header {
  background-color: #F8F9FA;
}

.card-img-top {
  border-bottom: 1px solid #DEE2E6;
}

.card-footer {
  background-color: #F8F9FA;
}

.card-footer:last-child {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.card-footer .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.link-card {
  color: inherit;
}

.link-card:hover {
  text-decoration: none;
	color: inherit;
}

.link-card:hover .card-footer p {
	color: #8D4387;
  transition: all .3s ease;
}

.link-card .card-footer p {
  margin-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: .9rem;
}

.card-columns {
  column-gap: 1.5rem;
}

@media (min-width: 576px) {
  .card-columns {
    column-count: 1;
  }
}

@media (min-width: 768px) {
  .card-columns {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .card-columns {
    column-count: 2;
  }
}

.purp-img-overlay {
	background: linear-gradient(rgba(139,68,136,0), rgba(139,68,136,.45),rgba(139,68,136,.9));
}

.purp-img-overlay {
  color: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 0;
  padding: 5rem 1rem 1.5rem 1rem;
}

.purp-img-overlay .top-title {
  text-shadow: 0px 0px 10px rgba(139,68,136,1);
}

.purp-img-overlay h2 {
  text-shadow: 0px 0px 10px rgba(139,68,136,1);
}

@media (max-width: 1199.98px) {
  .purp-img-overlay {
    padding: 1rem .5rem 15px .5rem;
  }

  .purp-img-overlay h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .purp-img-overlay .top-title {
    font-size: .9rem;
  }

  .purp-img-overlay h2 {
    font-size: 1.25rem;
  }
}


/* SUB PAGE */

.bg-subpage {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  height: 325px;
  border-bottom: 1px solid #DEE2E6;
  background-color: #4A4670 !important;
}

.subpage-header {
  background-color: #8D4387;
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.subpage-header h1 {
  color: #FFF;
  font-size: 1.75rem;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .bg-subpage {
    height: 325px;
  }

  .subpage-header h1 {
		font-size: 1.6rem;
	}
}

@media (max-width: 991.98px) {
  .bg-subpage {
    height: 275px;
  }

  .subpage-header h1 {
		font-size: 1.45rem;
	}
}

@media (max-width: 767.98px) {
  .bg-subpage {
    height: 225px;
  }

  .subpage-header h1 {
		font-size: 1.4rem;
	}
}

@media (max-width: 575.98px) {
  .bg-subpage {
    height: 175px;
  }

  .subpage-header h1 {
		font-size: 1.35rem;
	}
}


/* SIDEBAR */

#sidebar-mobile {
  background-color: #F8F9FA;
}

.sidebar-logo {
  width: 237;
  height: 72px;
}

ul.subpage-nav {
  text-decoration: none;
  margin: 0;
	padding: 0;
  background-color: #F8F9FA;
}

.subpage-nav li {
  background-color: #F8F9FA;
  padding: 0;
  list-style-type: none;
}

.subpage-nav li a {
  font-size: .9rem;
  background-color: #F8F9FA;
  color: #8D4387;
  text-decoration: none;
	display: block;
  padding: .45rem 1rem;
  transition: all .3s ease;
  line-height: 1.3;
}

.subpage-nav li a:hover {
  color: #4A4670;
  background-color: #FFF;
  transition: all .3s ease;
}

.subpage-nav li:first-of-type {
  margin-top: .5rem;
}

.subpage-nav li:last-of-type {
  margin-bottom: .5rem;
}

.subnav-active {
  background-color: #FFF !important;
	color: #4A4670 !important;
  font-weight: bold;
}

.subnav-active:hover {
  background-color: #FFF !important;
	color: #4A4670 !important;
  font-weight: bold;
}


/* SIDEBAR MENU ANIMATION */

#sidebar-menu {
	width: 22px;
	height: 14px;
	top: 12px;
	right: 12px;
	float: right;
	position: absolute;
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	cursor: pointer;
}

#sidebar-menu span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #000;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

#sidebar-menu span:nth-child(1) {
	top: 0px;
}

#sidebar-menu span:nth-child(2), #sidebar-menu span:nth-child(3) {
	top: 7px;
}

#sidebar-menu span:nth-child(4) {
	top: 14px;
}

#sidebar-menu.open span:nth-child(1) {
	top: 7px;
  width: 0%;
  left: 50%;
}

#sidebar-menu.open span:nth-child(2) {
	transform: rotate(45deg);
  background-color: #DC3545;
}

#sidebar-menu.open span:nth-child(3) {
	transform: rotate(-45deg);
  background-color: #DC3545;
}

#sidebar-menu.open span:nth-child(4) {
	top: 14px;
	width: 0%;
	left: 50%;
}


/* COLLAPSE */

.expand-btn.collapsed {
  color: #212529;
  background-color: #F8F9FA;
}

.expand-btn {
  background-color: #F8F9FA;
  color: #8D4387;
	text-align: left;
	padding: .5rem 2.25rem .5rem 1rem;
	white-space: normal;
}

.expand-btn:focus, .expand-btn:hover {
  color: #8D4387;
}

.expand-btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(142,67,136,.25);
  color: #8D4387;
}

.expand-btn::after {
  font-size: 1rem;
	content: "\f107";
	font-family: "Font Awesome 6 Pro";
	font-weight: var(--fa-solid);
	right: .75rem;
  top: .9rem;
	position: absolute;
  color: #8D4387;
	display: inline-block !important;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
  transform: rotate(-180deg);
	-webkit-font-smoothing: antialiased;
	transition: all .3s ease;
}

.expand-btn.collapsed::after {
  font-size: 1rem;
	content: "\f107";
	font-family: "Font Awesome 6 Pro";
	font-weight: var(--fa-solid);
  right: .75rem;
  top: .9rem;
	position: absolute;
  color: #8D4387;
	display: inline-block !important;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transform: rotate(0deg);
	transition: all .3s ease;
}

.mobile-nav-btn {
  background-color: #F8F9FA;
  color: #8D4387;
	padding: .6rem 1rem;
}

.mobile-nav-btn.collapsed {
  color: #212529;
  background-color: #F8F9FA;
}

.mobile-nav-btn:hover,
.mobile-nav-btn:focus,
.mobile-nav-btn:target,
.mobile-nav-btn:active {
  background-color: #DAE0E5;
  box-shadow: none;
}

ul.link-list {
  padding: 0;
  margin: 0;
}

.link-list li {
  list-style-type: none;
  padding: .5rem 1rem;
  border-bottom: 1px solid #F5F1E9;
}

.link-list li:last-child {
  border-bottom: none;
}

.link-list li a {
  color: #424649;
  font-weight: bold;
  display: block;
  width: 100%;
  font-size: .9rem;
  text-transform: capitalize;
}

.link-list li small {
  font-size: .7rem;
}

.sm-nav-blog {
  color: #FFF;
}


/* SOCIAL FOOTER BAR */

ul.sm-nav-footer {
	padding: 0;
	margin: 0;
}

.sm-nav-footer li {
	list-style-type: none;
	padding: 0 .2rem;
	display: inline-block;
}

.sm-nav-footer li a {
	font-size: 1.65rem;
	color: #8D4387;
}

.sm-nav-footer li a:hover {
	color: #4A4670;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .sm-nav-footer li {
  	padding: 0 .5rem;
  }

  .sm-nav-footer li a {
  	font-size: 2rem;
    color: #8D4387;
  }
}


/* FOOTER */

.footer-logo {
  width: 300px;
  height: 92px;
}

.footer-title {
	color: #FFF;
}

ul.footer-links {
	padding: 0;
  margin: 0;
}

.footer-links li {
	list-style-type: none;
}

.footer-links li a {
  padding: .55rem 0;
	color: #8D4387;
  display: block;
  font-weight: 600;
  border-bottom: 1px solid #DEE2E6;
}

.footer-links li:last-child a {
  border-bottom: 0;
}

.footer-links li:first-child {
  margin-top: -.55rem;
}

@media (max-width: 1199.98px) {
  .footer-links li a {
    padding: .43rem 0;
  	color: #8D4387;
    font-size: .9rem;
  }
}

@media (max-width: 991.98px) {
  .footer-links li a {
    padding: .55rem 0;
    font-size: 1rem;
  }
}

.footer-links li a:hover {
	color: #4A4670;
  text-decoration: none;
}


/* MODALS */

.modal-body p:last-child {
	margin-bottom: 0;
}

.modal .close {
  font-size: 2rem;
  opacity: 1;
  color: #DC3545;
}


/* ALERTS */

.alert-green .close {
  font-size: 2rem;
  opacity: 1;
  padding: .45rem 1rem;
  transition: all .3s ease;
}

.alert-green .close:not(:disabled):not(.disabled):focus, .alert-green .close:not(:disabled):not(.disabled):hover {
  color: #FFF;
  transition: all .3s ease;
}

.alert-green {
  background-color: #39B200;
  color: #FFF;
  text-align: center;
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .alert-green {
    text-align: left;
  }
}


/* FORMS */

label {
  font-size: .8rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-control {
  background-color: #F8F9FA;
  border: 1px solid #DEE2E6;
}

.form-control::placeholder {
  color: #555;
}

.form-control.flush {
  border: 1px solid #FFF;
}

.form-control.flush:focus {
  background-color: #FFF;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  border-right: 1px solid #DEE2E6;
  border-bottom: 1px solid #FFF;
}

.form-control:focus {
  border: 1px solid #8D4387;
  box-shadow: none;
  outline: none;
}


/* EMBEDS */

.embed-responsive {
  border: 1px solid #DEE2E6;
  border-radius: .25rem;
}


/* TO TOP */

.scroll-top {
  position: fixed;
  opacity: 0;
  visibility: hidden;
	text-align: center;
	z-index: 9;
  background-color: #8D4387;
	color: #FFF;
	width: 40px;
	height: 40px;
	line-height: 40px;
  border-radius: 100%;
	right: 1rem;
	bottom: 1rem;
  border: 1px solid #DEE2E6 !important;
	transition: all .3s ease-in-out;
	box-shadow: 0px 10px 20px rgba(139,68,136,.15);
}

@media (max-width: 575.98px) {
  .scroll-top {
  	right: .75rem;
  	bottom: .75rem;
  }
}

.scroll-top.show {
  visibility: visible;
  cursor: pointer;
	opacity: 1;
	box-shadow: 0px 10px 20px rgba(139,68,136,.15);
}

.scroll-top.show:hover {
  color: #FFF;
  background-color: #4A4670;
	box-shadow: 0 0 0 0.2rem rgba(74,70,112,.25);
}

.img-fluid {
  min-height: 1px;
}

.card-img-top {
  min-height: 1px;
}

.grecaptcha-badge {
	display: none !important;
}

/* File Uploader */
.qq-uploader {
    position: relative;
    width: 100%;
}
.qq-upload-button:hover,.qq-upload-button:focus,.qq-upload-button:target,.qq-upload-button:active {
    cursor: pointer;
}
.qq-upload-drop-area {
    display: none !important;
}
.qq-upload-list {
    margin: 0;
    padding: 0 !important;
    list-style: none;
}
.qq-upload-list li {
    margin: 0;
    padding: 0;
    font-size: 1rem;
}
.qq-upload-list li.qq-upload-success {
    display: none;
}
.qq-upload-file, .qq-upload-spinner, .qq-upload-size, .qq-upload-cancel, .qq-upload-failed-text {
    margin-right: 10px;
}

.qq-upload-spinner {
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: text-bottom;
}

.qq-upload-size,
.qq-upload-cancel {
    font-size: 1rem;
}
.qq-upload-failed-text {
    display: none;
}
.qq-upload-fail .qq-upload-failed-text {
    display: inline;
}
