/* Vars */
/* Mixins */
/* Bootstrap Overrides */
.container-xl {
  max-width: 1250px;
}

.btn-primary {
  background-color: #a81b8d;
  border-color: #a81b8d;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #670b4a;
  border-color: #670b4a;
}

.btn-light {
  color: #670b4a;
}
.btn-light:hover {
  background-color: #670b4a;
  color: #FFFFFF;
  border-color: #670b4a;
}

.btn-dark {
  background-color: #670b4a;
  border-color: #670b4a;
  color: #FFFFFF;
}
.btn-dark:hover {
  background-color: #FFFFFF;
  color: #670b4a;
  border-color: #FFFFFF;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
}

a {
  color: #a81b8d;
}
a:hover {
  color: #670b4a;
}

/* Bootstrap Extensions */
a.links-white,
.links-white a {
  color: #FFFFFF;
  text-decoration: none;
}
a.links-white:hover,
.links-white a:hover {
  text-decoration: none;
  opacity: 0.7;
}

a.links-grey-e,
.links-grey-e a {
  color: #E6E6E6;
  text-decoration: none;
}
a.links-grey-e:hover,
.links-grey-e a:hover {
  text-decoration: none;
  color: #b11783;
}

.text-grey-e {
  color: #E6E6E6;
}

.text-purple {
  color: #a81b8d;
}

.bg-purple-gradient {
  background: rgb(177, 23, 131);
  background: radial-gradient(circle, rgb(177, 23, 131) 33%, rgb(103, 11, 74) 100%);
}

.bg-grey-3 {
  background-color: #333;
}

.bg-purple {
  background-color: #a81b8d;
}

.indicators-purple li {
  background-color: #a81b8d;
}

@media screen and (min-width: 768px) {
  .mt-md-n6 {
    margin-top: -6rem;
  }
}

@media screen and (min-width: 1200px) {
  .mt-xl-n2 {
    margin-top: -1.5rem;
  }
}

/* Custom Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Asap", sans-serif;
  text-rendering: optimizeLegibility;
  background-color: #333;
}

a {
  transition-property: opacity, color;
  transition-duration: 0.2s;
}

.underline {
  position: relative;
  margin-bottom: 3rem;
}
.underline:after {
  content: " ";
  width: 52px;
  height: 0;
  border: 2px solid #a81b8d;
  position: absolute;
  bottom: -20px;
  left: 0;
  border-radius: 4px;
}
.underline.underline-center:after {
  left: 50%;
  transform: translateX(-50%);
}
.underline.underline-white:after {
  border-color: #FFFFFF;
}

.awaken {
  transform: translateY(50px);
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  opacity: 0;
}
.awaken.in-viewport {
  transform: translateY(0);
  opacity: 1;
}

#desktop-menu {
  font-size: 0.9rem;
}
#desktop-menu > li {
  margin-left: 1rem;
  padding: 0.5rem 0;
  position: relative;
}
#desktop-menu > li:hover > .sub-menu {
  display: block;
}
#desktop-menu > li a {
  color: #000000;
  padding: 1rem 0;
  text-decoration: none;
}
#desktop-menu > li a:hover {
  color: #a81b8d;
  text-decoration: none;
}
#desktop-menu > li .sub-menu {
  padding: 0;
  list-style: none;
}
#desktop-menu > li > .sub-menu {
  display: none;
  position: absolute;
  z-index: 5;
  background-color: #333;
  width: 200px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  overflow: hidden;
}
#desktop-menu > li > .sub-menu li {
  padding: 0;
  margin: 0;
}
#desktop-menu > li > .sub-menu li a {
  padding: 1rem;
  color: #FFFFFF;
  display: block;
}
#desktop-menu > li > .sub-menu li a:hover {
  color: #a81b8d;
  background-color: #000000;
}
#desktop-menu > li > .sub-menu > li > .sub-menu {
  font-size: 0.8rem;
}
#desktop-menu > li > .sub-menu > li > .sub-menu a {
  padding-left: 1.5rem;
}
#desktop-menu > li > .sub-menu > li > .sub-menu .sub-menu {
  display: none;
}

#mobile-menu-wrap {
  position: fixed;
  z-index: 1040;
  top: 0;
  right: 0;
  transform: translateX(100%);
  max-width: 300px;
  height: 100vh;
  font-size: 1.25rem;
  transition-property: all;
  transition-duration: 0.2s;
  overflow: auto;
}
#mobile-menu-wrap #mobile-menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 61px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
#mobile-menu-wrap #mobile-menu li a {
  display: block;
  padding: 1rem 1.5rem;
}
#mobile-menu-wrap #mobile-menu li a:hover {
  background-color: #000000;
  color: #a81b8d;
  opacity: 1;
}
#mobile-menu-wrap #mobile-menu li .sub-menu {
  list-style: none;
  padding: 0;
}
#mobile-menu-wrap #mobile-menu li .sub-menu a {
  padding: 0.5rem 1rem 0.5rem 2rem;
  font-size: 85%;
  line-height: 100%;
}

body.mobile-menu-active #mobile-menu-wrap {
  transform: translateX(0);
  box-shadow: 0 0 40px 20px rgba(0, 0, 0, 0.5);
}

section.banner_rotator .carousel-item img {
  max-height: 500px;
  object-fit: cover;
}
section.banner_rotator .carousel-control-next,
section.banner_rotator .carousel-control-prev {
  bottom: unset;
  height: 33vw;
}
@media screen and (min-width: 992px) {
  section.banner_rotator .carousel-control-next,
  section.banner_rotator .carousel-control-prev {
    bottom: 0;
    height: 100%;
  }
}
section.banner_rotator .content {
  background-color: rgba(168, 27, 141, 0.6);
}
@media screen and (min-width: 992px) {
  section.banner_rotator .content {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
  }
  section.banner_rotator .content .p-3 {
    background-color: rgba(168, 27, 141, 0.6);
  }
}

.user-content h1, .user-content h2, .user-content h3, .user-content h3, .user-content h4, .user-content h5, .user-content h6,
.user-content .h1, .user-content .h2, .user-content .h3, .user-content .h4, .user-content .h5, .user-content .h6 {
  color: #a81b8d;
}
.user-content img {
  max-width: 100%;
  height: auto;
}
.user-content .alignleft {
  float: left;
  margin: 0 1rem 1rem 0;
}
.user-content .alignright {
  float: right;
  margin: 0 0 1rem 1rem;
}
.user-content .aligncenter {
  margin: 0 auto 1rem auto;
}
.user-content table {
  --bs-table-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  min-width: 576px;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.user-content table > th {
  vertical-align: middle;
}
.user-content table td, .user-content table th {
  border: 2px solid #FFFFFF;
}
.user-content table th {
  background-color: #a81b8d;
  color: #FFFFFF;
  vertical-align: middle;
}
.user-content table td {
  background-color: #E6E6E6;
  vertical-align: top;
}
.user-content table > :not(caption) > * > * {
  padding: 0.5em;
}

#back-to-top {
  bottom: 1rem;
  left: 1rem;
  background-color: #a81b8d;
  color: #FFFFFF;
  display: flex;
  opacity: 0;
  pointer-events: none;
  width: 50px;
  height: 50px;
  transition-property: opacity;
  transition-duration: 0.7s;
}
#back-to-top:hover {
  background-color: #FFFFFF;
  color: #a81b8d;
  cursor: pointer;
}
#back-to-top.active {
  opacity: 1;
  pointer-events: all;
}

/*# sourceMappingURL=base.css.map */
