:root {
  /* this has to be set to switch between light or dark */
  color-scheme: light dark;
  --light-bg: ghostwhite;
  --light-color: #212529;
  --light-code: #ef9a00;
  --dark-bg: #212529;
  --dark-color: ghostwhite;
  --dark-code: #ef9a00;
}

.figtree, header .logo, body {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.figtree-light {
  font-weight: 300;
}
.figtree-regular {
  font-weight: 400;
}
.figtree-medium, body {
  font-weight: 500;
}
.figtree-semi-bold {
  font-weight: 600;
}
.figtree-bold, header .logo {
  font-weight: 700;
}
.figtree-extra-bold {
  font-weight: 800;
}

.playfair-display, .highlighted {
  font-family: "Playfair Display", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.playfair-display-regular {
  font-weight: 400;
}
.playfair-display-bold, .highlighted {
  font-weight: 700;
}
.playfair-display-extra-bold {
  font-weight: 800;
}

.sarpanch {
  font-family: "Sarpanch", sans-serif;
  font-style: normal;
}
.sarpanch-bold {
  font-weight: 700;
}

.light {
  /* forces light color-scheme */
  color-scheme: light;
}

.dark {
  /* forces dark color-scheme */
  color-scheme: dark;
}

body {
  background-color: light-dark(var(--light-bg), var(--dark-bg));
  color: light-dark(var(--light-color), var(--dark-color));
  height: 100%;
  font-size: 16px;
  margin: 0;
  min-width: 320px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
body.is-fullscreen .header .header-links .enter-fullscreen {
  opacity: 0;
  width: 0;
}
body.is-fullscreen .header .header-links .exit-fullscreen {
  opacity: 1;
  width: auto;
}
@media (min-width: 768px) {
  body.is-fullscreen .header .controls-container {
    display: flex;
  }
}
body.is-fullscreen.show-controls .header .header-container,
body.is-fullscreen.show-controls .carousel-controls, body.is-fullscreen.hide-controls .header .header-container,
body.is-fullscreen.hide-controls .carousel-controls {
  opacity: 1;
}
@media (min-width: 768px) {
  body.is-fullscreen.show-controls .header .header-container, body.is-fullscreen.show-controls .carousel-controls {
    opacity: 1;
  }
  body.is-fullscreen.hide-controls .header .header-container, body.is-fullscreen.hide-controls .carousel-controls {
    opacity: 0;
  }
}

a {
  text-decoration: none;
  transition: all 0.4s ease 0s;
}

.highlighted {
  color: #ef9a00;
  font-style: italic;
}

.separator {
  border-bottom: 1px dashed rgba(148, 148, 148, 0.4);
  display: block;
  margin: 1rem auto;
  width: 50%;
}

header {
  color: ghostwhite;
  left: 0;
  opacity: 0;
  position: absolute;
  top: -100px;
  transition: all 0.6s ease 0.9s;
  z-index: 6;
}
header .header-container {
  background-color: rgba(33, 37, 41, 0.6);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.4s ease 0s;
}
@media (min-width: 768px) {
  header .header-container {
    padding: 1rem 2rem;
  }
}
header .logo {
  letter-spacing: 3px;
  text-transform: uppercase;
}
header .logo img {
  height: 50px;
  width: auto;
}
header .logo .logo-text {
  line-height: 1.2;
}
header .logo .logo-text .highlighted {
  color: #ef9a00;
  font-size: 1.6rem;
}
header .header-links a {
  color: ghostwhite;
}
header .header-links a:hover {
  color: #ef9a00;
}
header .header-links .fullscreen-btn {
  margin-right: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  header .header-links .fullscreen-btn {
    margin-right: 1.5rem;
  }
}
header .header-links .enter-fullscreen {
  opacity: 1;
  transition: all 0.4s ease 0s;
  width: auto;
}
header .header-links .exit-fullscreen {
  opacity: 0;
  transition: all 0.4s ease 0s;
  width: 0;
}
header .controls-container {
  align-items: stretch;
  background-color: rgba(33, 37, 41, 0.6);
  border-radius: 12px 0 0 12px;
  display: none;
  min-height: calc(100% - 1.5rem);
  padding: 0.5rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 6;
}
header .controls-container .controls-switch {
  display: inline-block;
  width: 30px;
  height: 100%;
  transform: rotate(0deg) translateX(0px) translateY(0px);
}
header .controls-container .controls-switch input {
  opacity: 0;
  width: 0px;
  height: 0px;
}
header .controls-container .controls-switch input:checked + .slider:before {
  transform: translateY(36px);
}
header .controls-container .controls-switch input:checked + .slider .hide-controls {
  color: #212529;
  transition: all 0.8s ease 0s;
}
header .controls-container .controls-switch input:checked + .slider .hide-controls:hover {
  animation: none;
  transform: none;
}
header .controls-container .controls-switch input:checked + .slider .show-controls {
  color: ghostwhite;
  transition: all 0.8s ease 0s;
}
header .controls-container .controls-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 40px;
  border: 1px solid #949494;
  background-color: rgba(148, 148, 148, 0.1);
  transition: all 0.4s ease 0s;
}
header .controls-container .controls-switch .slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  background-color: ghostwhite;
  left: 1px;
  top: 1px;
  box-shadow: rgba(33, 37, 41, 0.3) 0 2px 4px;
  border-radius: 50%;
  transition: all 0.4s ease 0s;
}
header .controls-container .controls-switch .icon {
  font-size: 15px;
  color: ghostwhite;
  position: absolute;
  right: 5px;
  transition: all 0.8s ease 0s;
}
header .controls-container .controls-switch .show-controls {
  color: #212529;
  top: 6px;
}
header .controls-container .controls-switch .hide-controls {
  bottom: 6px;
}

.main-container {
  min-height: 100vh;
  position: absolute;
  z-index: 5;
}

.content-container {
  overflow-y: hidden;
}

.intro__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.intro__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #212529;
  z-index: 10;
}

.social-links a {
  color: #ef9a00;
  display: block;
  padding: 0.4rem 0.7rem;
}
.social-links a:hover {
  background-color: rgba(239, 154, 0, 0.3);
  color: #212529;
}

.content-home {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 2.6s ease 0.9s;
  z-index: 1;
}
.content-home .carousel-item {
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.content-home .carousel .carousel-control-prev,
.content-home .carousel .carousel-control-next {
  background-color: rgba(248, 248, 255, 0.6);
  border-radius: 100%;
  bottom: 40px;
  color: light-dark(var(--light-color), var(--dark-color));
  filter: none;
  height: auto;
  opacity: 1;
  outline: 5px solid rgba(248, 248, 255, 0.4);
  padding: 10px;
  top: unset;
  transition: all 0.4s ease 0s;
  width: auto;
}
.content-home .carousel .carousel-control-prev:hover,
.content-home .carousel .carousel-control-next:hover {
  background-color: rgba(248, 248, 255, 0.9);
  outline: 3px solid rgba(239, 154, 0, 0.7);
}
.content-home .carousel .carousel-control-prev {
  left: 50%;
  transform: translate(-120px, -50%);
}
.content-home .carousel .carousel-control-next {
  right: 50%;
  transform: translate(120px, -50%);
}
.content-home .carousel .carousel-control-next-icon, .content-home .carousel .carousel-control-prev-icon {
  height: 1.5rem;
  filter: invert(1) grayscale(100);
  width: 1.5rem;
}

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