:root{
  --primary-color: #F7F6ED;
  --secondary-color: #FFF;
  --hover-color: #d56472;
  --hover-secondary-color: #778434;
  /* --hover-secondary-color: #96A548; */
} 

section:nth-child(even) {
  background: var(--primary-color);
}
section:nth-child(odd) {
  background: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
  text-transform: capitalize;
}


/* nav */
#topNav {
  background: #F7F6ED;
}

.sticky-wrapper {
  background: #F7F6ED;
  
}

/* end nav */


/* services */

#servicesPackages:nth-child(odd) {
  background-color: var(--hover-color)  !important;
}
#servicesPackages:nth-child(even) {
  background-color: var(--hover-secondary-color-color)  !important;
}

#servicesPackages:nth-child(odd):hover {
  background-color: var(--hover-secondary-color) !important;
}
#servicesPackages:nth-child(even):hover {
  background-color: var(--hover-color) !important;
}

/* end services */


/* landing page */

.landingImg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

#casa-img {
  opacity: 1;
  background-image: url('/documents/hacienda/img/about/casa_hacienda.jpg');
}

#reyes-img {
  opacity: 0;
  background-image: url('/documents/hacienda/img/about/reyes_marietta.jpg');
}

.about-content {
  position: relative;
  height: 100vh; /* or whatever height you'd like */
}

.center-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  /* adjust these values as needed */
  width: 80%;
  max-width: 800px;
  z-index: 2;
}

.center-content > h1 {
  text-shadow: 2px 2px 2px black;
}

.flex-container {
  display: flex;
  align-items: center; /* optional, in case you want to align items vertically */
}

/* 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 */

/* about */
section.vs-about-wrapper.space-top.space-md-bottom {
  height: 900px;
}
#teamContainer {
  height: 1300px;
}

#aboutP{
  height: 600px;
  overflow: scroll;
}
#aboutP::-webkit-scrollbar{
  display: none;
}





/* 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;
}

/* end cta */



/* services */

.contact-info-box.bg-theme:hover{
  background: var(--hover-secondary-color) !important;
}
/* .contact-info-box.bg-theme:hover {
  background: green !important;
} */
/* end services */





.brand-img img {
  width: 200px; /* Or whatever width you want */
  /* height: 100%; Or whatever height you want */
  object-fit:contain;

}