:root {
  --clr-primary: #592c88;
  --clr-accent: #353535;
  --clr-background: white;
  --clr-hover: #8846cf;
  --clr-gold: #c2a875;
}
p {
  margin-bottom: 15px;
}
.custom-module {
  margin-bottom: 40px;
}
.navbar {
  border-bottom: 1px #dadada solid !important;
}
/* BANNER & MINI MINU */
#top-bar {
  background-color: var(--clr-background);
  padding-left: 0;
  padding-right: 0;
  border-bottom: 12px solid var(--clr-primary);
}
#top-logo {
  padding-left: 75px;
  max-width: 50%;
}
.top-section {
  padding-left: 0;
  padding-right: 0;
}

#top-menu {
  float: right;
  padding-top: 50px;
  padding-right: 75px;
  list-style: none;
}

#top-menu > li {
  display: inline;
}

#top-menu > li > a {
  font-size: 13px;
  color: var(--clr-primary);
  font-weight: 500;
  text-decoration: none;
  padding-left: 20px;
}

#top-menu > li > a:hover,
#top-menu > li > a:focus {
  color: var(--clr-hover);
  transition: color 0.5s ease;
}

#top-menu > li > a > .fa {
  padding-right: 5px;
  color: var(--clr-accent);
}

#H_Search.max_width300 {
  margin-left: 10px;
  margin-top: 10px;
  max-width: 350px;
}

@media (max-width: 991px) {
  #top-logo {
    padding: 0;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
 max-width: 90%;
  }

  #top-menu {
    padding: 0;
    text-align: center;
    float: none;
  }

  #H_Search.max_width300 {
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
  }
}

/* END BANNER & MINI MINU */

/* NAV */
#main-nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#main-nav-ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.dropdown {
  padding-left: 75px;
}
@media (max-width: 1000px) {
  .dropdown {
    padding-left: 25px;
  }
}
@media (max-width: 767px) {
  .dropdown {
    padding-left: 0;
  }
  #main-nav-wrapper {
    flex-direction: column;
  }

  #main-nav-ul {
    flex-direction: column;
  }
}

.navbar-nav {
  width: 100%;
  text-align: center;
  margin: 0px;
}

.navbar-nav > li {
  float: none;
  display: inline-block;
}

.navbar {
  background-color: var(--clr-background);
  min-height: 50px;
  position: relative;
}

.nav > li > a,
.dropdown-menu > li > a {
  font-weight: 600;
  font-size: 16px;
  color: var(--clr-primary);
}

.nav > li > a:hover,
.nav > li > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: var(--clr-hover);
  transition: color 0.5s ease;
  background: none;
}

.dropdown-menu {
  margin-top: 0;
  background-color: var(--clr-background);
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background: none;
}

.icon-bar {
  background: var(--clr-hover);
}
/* END NAV */

/* AD ROW 1 */
.admod-item img {
  width: 80%;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: 13%;
  margin-bottom: 13%;
  transition: transform 0.3s;
}

.admod-item img:hover {
  -ms-transform: scale(1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2);
  /* Safari 3-8 */
  transform: scale(1.2);
}
/* END AD ROW 1 */

/* AD ROW 2 */

#featuredItems-wrapper {
  display: flex;
  width: 95%;
  justify-content: space-around;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 25px;
}

.featuredItems-item {
  flex-basis: calc(12.5% - 20px);
}
@media (max-width: 1120px) {
  .featuredItems-item {
    flex-basis: calc(25% - 20px);
  }
}
@media (max-width: 767px) {
  .featuredItems-item {
    flex-basis: calc(50% - 20px);
  }
}
#smallMerchRowWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}

#smallMerchRowWrapper img {
  max-width: 125px;
  margin: 15px;
}

.smallMerchSubWrapper {
  display: flex;
  width: 50%;
}

.smallMerchSubWrapper:nth-of-type(1) {
  justify-content: flex-end;
}

.smallMerchSubWrapper:nth-of-type(2) {
  justify-content: flex-start;
}

@media (max-width: 1220px) {
  .smallMerchSubWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
/* END AD ROW 2 */

/* FOOTER */

#footer {
  border-top: 12px solid var(--clr-gold);
  background-color: var(--clr-primary);
}
.footer-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
}

.footer-section {
  text-align: center;
}

.footer-section h1 {
  font-size: 20px;
}

.footer-section p,
.footer-section h1,
.footer-section a {
  color: white;
}
.footer-links a {
  display: block;
  text-decoration: none;
}

.footer-section a .fa {
  color: white;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-section a .fa:hover,
.footer-section a .fa:focus {
  color: var(--clr-gold);
  transition: color 0.5s ease;
}

.footer-social a + a {
  padding-left: 20px;
}

/* END FOOTER */

/* CUSTOM PAGES */

.custom-module a,
.custom-module p {
  font-size: 14px;
}

.custom-module a:hover,
.custom-module a:focus {
  text-decoration: none;
  color: var(--clr-hover);
  transition: color 0.5s ease;
}
.custom-module h1 {
  font-size: 36px;
  text-align: center;
  padding-bottom: 12px;
  margin-top: 40px;
  color: var(--clr-primary);
}

.custom-module h4 {
  font-weight: bold;
  font-size: 21px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--clr-hover);
}

.custom-module h4 > a {
  font-weight: bold;
  font-size: 21px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--clr-hover);
}

.custom-module hr {
  color: var(--clr-primary);
  background-color: var(--clr-primary);
  margin-top: 5px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border: 0 none;
  height: 2px;
  display: block;
}

.custom-module p > .fa {
  padding-right: 10px;
}

.custom-module > .btn-primary {
  font-size: 16px;
  padding: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#fr-pricing > li > span {
  margin-left: 20px;
  background-color: var(--clr-primary);
}

/* Accordian */

#accordian a {
  font-size: 15px;
}
#accordian a:hover,
#accordian a:focus {
  color: var(--clr-hover);
  text-decoration: none;
  transition: color 0.5s ease;
}

.accordian-item-title {
  border: 0px solid var(--clr-primary);
  border-radius: 4px;
  margin-bottom: 4px;
  padding-top: 6px;
  padding-bottom: 6px;
}

#accordian > .panel-collapse {
  margin-top: -5px;
  margin-bottom: 5px;
  padding: 5px;
}

#accordian > .panel-collapse a {
  font-size: 14px;
}

/* END Accordian */

/* END CUSTOM PAGES */

/* inSite Styling */

.card-header,
.btn-primary,
 {
  background-color: var(--clr-primary) !important;
  color: #ffffff !important;
}

.card-header  {
  border-bottom: 0 !important;
}

.card,
.btn-primary {
  border-color: transparent !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--clr-hover) !important;
  transition: background-color 0.5s ease;
}

.page_header {
  color: var(--clr-primary) !important;
}

#ContainDiv {
  min-height: 485px;
  padding-bottom: 30px;
}
/* END inSite Styling */

/* MBS Branding */
#div_privacy {
  display: none;
}

#Server {
  display: none;
}
/* END MBS Branding */

/* MERCHANDISE LANDING PAGES */
#merch-landing-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

#merch-landing-wrapper h3 {
  color: var(--clr-primary);
  font-weight: bold;
  font-size: 30px;
  margin-top: 70px;
}

#merch-landing {
  display: flex;
  gap: 30px;
}

/* please note: you will need to override the flex basis on this one depending on the amount of items on the page. do so under Scripts/Style for the specific page */
#merch-landing > .item {
  flex-basis: 20%;
}

@media (max-width: 991px) {
  #merch-landing {
    flex-direction: column;
    gap: 15px;
  }

  #merch-landing > .item {
    flex-basis: 100%;
  }
}
/* END MERCHANDISE LANDING PAGES */


.navbar-nav{
background-color: #ffffff;
display: flex;
justify-content: center;
gap: 20px;
}

.admod{
display: flex;
justify-content: center;
gap: 30px;
flex-direction: row;
}

.admod-item{
text-align: center;
}
#featuredItems{
display: flex;
justify-content: center;
flex-direction: row;
gap: 20px;
margin-bottom: 30px;
}
.featuredItems-item{
text-align: center;
}
#Mycarousel{
padding: 0;
}

#contentSection{
padding: 0;
}
.navbar-nav > li > a{

font-size: 16px;
color: #6427a0;
font-weight: bold;
}

@media (max-width: 768px){
.dropdown-item{
text-align: center;
}
.admod{
display: flex;
justify-content: center;
gap: 30px;
flex-direction: column;
}
#featuredItems{
display: flex;
justify-content: center;
flex-direction: column;
gap: 20px;
margin-bottom: 30px;
}
}

/***** BS5 ADDITIONS 10.4.23 ****/
.bg-light {
background-color: #fff !important;
}