:root {
  --primary-color: #22124B;
  --secondary-color: #ef920d;
  /* --primary-color: #ef920d; */
  /* --secondary-color: #22124B; */
  --hover-color: #d56472;
  --hover-secondary-color: #778434;
  --text-white: #fff;
  /* --hover-secondary-color: #96A548; */
}


body {
  background: #1a1851;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ed6d1a !important;
}

h1:hover,
h2:hover,
h3:hover,
h4:hover,
h5:hover,
h6:hover {
  color: #ed6d1a !important;
}

p,
a,
th,
td {
  color: white !important;
}

.box-content>p {
  color: black !important;
}

a:hover,
th:hover,
td:hover {
  color: #ed6d1a;
}

li>a {
  color: #ed6d1a !important;
}

/* nav */
.sticky-active {
  background: rgb(111, 52, 91);
  background: linear-gradient(180deg, rgba(111, 52, 91, 1) 0%, rgba(26, 24, 81, 1) 89%);
}

/* end nav */

/* halloween colors */

.halloween {
  background: rgb(26, 24, 81);
  background: -moz-linear-gradient(180deg, rgba(26, 24, 81, 1) 0%, rgba(111, 52, 91, 1) 37%);
  background: -webkit-linear-gradient(180deg, rgba(26, 24, 81, 1) 0%, rgba(111, 52, 91, 1) 37%);
  background: linear-gradient(180deg, rgba(26, 24, 81, 1) 0%, rgba(111, 52, 91, 1) 37%);
}

.halloween2 {
  background: rgb(111, 52, 91);
  background: -moz-linear-gradient(180deg, rgba(111, 52, 91, 1) 0%, rgba(26, 24, 81, 1) 54%);
  background: -webkit-linear-gradient(180deg, rgba(111, 52, 91, 1) 0%, rgba(26, 24, 81, 1) 54%);
  background: linear-gradient(180deg, rgba(111, 52, 91, 1) 0%, rgba(26, 24, 81, 1) 54%);
}

.vs-accordion .accordion-button {
  border: none;
  padding: 25px 0 22px 0;
  font-size: 20px;
  font-family: var(--title-font);
  font-weight: 300;
  text-align: left;
  color: orange;
}

.testimonial-wrapper {
  background: rgb(222, 85, 46);
  background: -moz-linear-gradient(205deg, rgba(222, 85, 46, 1) 0%, #1a1851 80%);
  background: -webkit-linear-gradient(205deg, rgba(222, 85, 46, 1) 0%, #1a1851 80%);
  background: linear-gradient(205deg, rgba(222, 85, 46, 1) 0%, #1a1851 80%);
  border-radius: 50px;
}



/* cta */
/* .vs-btn.outline{
  border: 1px solid var(--hover-color) !important;
  color: var(--secondary-color) !important;
}
.vs-btn.outline:hover{
  border: 1px solid var(--hover-secondary-color) !important;
} */


.vs-btn {
  border: 1px solid #ed6d1a !important;
  background: #ed6d1a !important;
}

.vs-btn:after, .vs-btn:before {
  background-color: #d31a2d;
}

/* end cta */


.brand-img img {
  width: 200px;
  object-fit: contain;
}






/* switch */

.switch-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* this ensures the child can be centered vertically */
}


#langSwitch {
  padding-top: .5vw;
}

.langSwitch {
  position: relative;
  width: 180px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.langSwitch-checkbox {
  display: none;
}

.langSwitch-label {
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #999999;
  border-radius: 30px;
  padding-left: 0px !important;
}

input[type="checkbox"]:checked~label:before {
  z-index: -1;
}

input[type="checkbox"]~label:before {
  z-index: -1;
}

.langSwitch-inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  -moz-transition: margin 0.3s ease-in 0s;
  -webkit-transition: margin 0.3s ease-in 0s;
  -o-transition: margin 0.3s ease-in 0s;
  transition: margin 0.3s ease-in 0s;
}

.langSwitch-inner:before,
.langSwitch-inner:after {
  display: block;
  float: left;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: white;
  font-family: Trebuchet, Arial, sans-serif;
  font-weight: bold;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 30px;
  box-shadow: 0px 15px 0px rgba(0, 0, 0, 0.08) inset;
}

.langSwitch-inner:before {
  content: "English";
  padding-left: 10px;
  background-color: #96A548;
  color: #FFFFFF;
  border-radius: 30px 0 0 30px;
}

.langSwitch-inner:after {
  content: "Español";
  padding-right: 10px;
  background-color: #E2725B;
  color: #fff;
  text-align: right;
  border-radius: 0 30px 30px 0;
}

.langSwitch-switch {
  display: block;
  width: 90px;
  margin: 0px;
  background: #FFFFFF;
  border: 2px solid #999999;
  border-radius: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 90px;
  -moz-transition: all 0.3s ease-in 0s;
  -webkit-transition: all 0.3s ease-in 0s;
  -o-transition: all 0.3s ease-in 0s;
  transition: all 0.3s ease-in 0s;
  background-image: -moz-linear-gradient(center top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 80%);
  background-image: -webkit-linear-gradient(center top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 80%);
  background-image: -o-linear-gradient(center top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 80%);
  background-image: linear-gradient(center top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 80%);
  box-shadow: 0 1px 1px white inset;
}

.langSwitch-checkbox:checked+.langSwitch-label .langSwitch-inner {
  margin-left: 0;
}

.langSwitch-checkbox:checked+.langSwitch-label .langSwitch-switch {
  right: 0px;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  #langSwitch {
    left: 67vw;
    bottom: 18vw;
    padding-top: 0vw;
  }
}

@media screen and (max-width: 767px) {

  #landingPage {
    height: 1000px;
    background: url("../img/page/landing.png") top 35% left 30% !important;
  }

  #landingPageTitle {
    padding: 0px 5vw 0px 10vw !important;
  }

  #nav-top {
    display: none;
  }

  #langSwitch {
    left: 35vw;
    bottom: 60vw;
  }
}

/* end switch */