:root {
  --main: #7E287D;
  --red: #E57676;
  --grey: #eaeaea;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: var(--main) #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #8f54a0;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }

body {
  margin: 0;
  padding: 0;
  font-family: 'Varela Round', sans-serif;
}
button {
  font-family: 'Varela Round', sans-serif;
}
a {
  color: inherit;
}
h2 {
  font-size: 50px;
  margin: 0;
  padding: 0;
}
h3 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  color: var(--main);
}
h4 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  color: var(--main);
}
h5 {
  font-size: 20px;
  color: var(--main);
}
p {
  font-size: 18px;
  margin-bottom: 0px;
}
button {
  font-family: 'Varela Round', sans-serif;
}
.headerContainer {
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  opacity: 0.9;
}
.headerInner {
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1001;
}
.headerInner .logo {
  margin: 0 auto;
  height: 80px;
  margin-top: 5px;

}
.navigation {
  height: 100px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--main);
  table-layout: fixed;
}
.navigation tr td {
  cursor: pointer;
}
.navigation tr td:hover {

  transition: 0.5s;
}
.hero {
  overflow: hidden;
  position: relative;
  height: calc(100vh);
}
.backgroundContainer {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.videoBackground {
  min-width: 100%;
  min-height: 100vh;
}
.heroOverlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1;
  opacity: 0.7;
}
.heroContent {
  position: absolute;
  left: 100px;
  top: 75px;
  z-index: 4;
  width: calc(100% - 200px);
}
.heroTitle {
  display: flex;
  align-items: center;
  height: calc(100vh - 100px);
  float: left;
  width: calc(50%);
}
.heroTitleInner {
  display: block;
}
.heroImage {
  display: flex;
  align-items: flex-end;
  height: calc(100vh);
  float: right;
  width: calc(50%);
}
.heroImage img {
  height: 95vh;
}
.featuresBenefits {
  width: 100%;
  table-layout: fixed;
  font-size: 16px;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  vertical-align: text-top;
}
.featuresBenefits tr {
  vertical-align: text-top;
}
.bookNow {
  font-size: 20px;
  color: white;
  background: var(--main);
  border: none;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  margin-top: 20px;
}
.highlight {
  color: var(--main);
}
.whiteContainer {
  background: white;
  position: relative;
  z-index: 1;
}
.container {
  position: relative;
  z-index: 1;
}
.inner {
  padding-left: 100px;
  width: calc(100% - 200px);
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: auto;
}
.left {
  float: left;
  width: calc(50% - 50px);
}
.right {
  float: right;
  width: calc(50% - 50px);
}
.full {
  text-align: center;
}
.appointedd {
  border: solid 2px var(--main);
  border-radius: 20px;
  width: calc(100% - 4px);
}
strong {
  color: var(--main);
}
.footer {
  background: var(--main);
  padding: 100px;
  position: relative;
  z-index: 1;
  color: white;
  overflow: auto;
}
.testimonial {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: solid 2px var(--grey);
}
.testimonial .text {
  font-size: 16px;
  font-style: oblique;
}
.testimonial .author {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: var(--main);
}
hr {
  width: 100px;
  float: left;
  margin-left: 20px;
}
.fullWidth {
  width: 100%;
  border-radius: 50%;
}
.roundle {
  width: 90%;
  border-radius: 50%;
  padding-top: 90%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#modalBg {
  background: var(--main);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0.8;
  display: none;
}
#modal {
  position: fixed;
  left: 50px;
  top: 50px;
  width: calc(100% - 140px);
  height: calc(100vh - 140px);
  background: white;
  overflow-y: scroll;
  z-index: 10000;
  display: none;
  padding: 20px;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.75);

}
.highlightButton {
  background: var(--main);
  margin: 0 auto;
  color: white;
  height: 70px;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  line-height: 70px;
  text-align: center;
  width: auto;
}
.bookingIcon {
  height: 30px;
  float: left;
  margin: 0 auto;
}
.image-button {
  display: inline-flex;
  height: 70px;
  line-height: 80px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  background-color: var(--main);
  color: #fff;
  padding: 10px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.image-button img {
  height: 30px;
  margin-right: 10px;
}
.feature {
  float: left;
  width: calc(100% / 3);
}
.features {
  height: auto;
  overflow: auto;
  margin-top: 20px;
}



.mobileHeader {
  display: none;
}
#mobileNavigation {
  display: none;
}
.halfLeft {
  width: calc(50% - 10px);
  float: left;
  margin-bottom: 20px;
}
.halfLeft p {
  margin-left: 10px;
}
.halfRight p {
  margin-right: 10px;
}
.halfRight {
  float: right;
  width: calc(50% - 10px);
  margin-bottom: 20px;
}
.mobileOnly {
  display: none;
}
.desktopOnly {
  display: block;
}
.textRight {
  text-align: right;
}
.social {
  height: 40px;
  margin-left: 10px;
  float: left;
}
.socialContainer {
  color: white;
}
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
