.carousel {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  position: relative;
  /*css for navigation*/
}

.carousel .carousel-slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 400%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel .carousel-slider .slide {
  width: 25%;
  background-position: center;
  background-size: cover;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  overflow: hidden;
}

.carousel .carousel-overlay {
  width: 100%;
  height: 100%;
}

.carousel .carousel-overlay .bg-overlay {
  width: 80%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  background: -webkit-gradient(linear, left top, right top, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0) 100%);
}

.carousel .carousel-overlay .info-overlay {
  width: 40%;
  max-width: 600px;
  padding: 30px 20px;
  color: #FFFF;
  position: absolute;
  top: calc(100vh - 450px);
  left: 150px;
  z-index: 3;
}

.carousel .carousel-overlay h1 {
  font-size: 32px;
  margin: 0;
  padding: 0;
}

.carousel .carousel-overlay p {
  margin: 10px 0 30px 0;
  line-height: 1.7;
}

.carousel .carousel-overlay .learn-more-btn {
  padding: 10px;
  margin-top: 10px;
  font-size: 14px;
  color: white;
  background-color: green;
  border-radius: 5px;
}

.carousel .mouse_scroll {
  display: block;
  margin: 0 auto;
  width: 24px;
  height: 100px;
  margin-top: 125px;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 4;
}

.carousel .m_scroll_arrows {
  display: block;
  width: 5px;
  height: 5px;
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  margin: 0 0 3px 4px;
  width: 16px;
  height: 16px;
}

.carousel .one {
  margin-top: 1px;
}

.carousel .one, .carousel .two, .carousel .three {
  -webkit-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}

.carousel .one {
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-delay: alternate;
          animation-delay: alternate;
}

.carousel .two {
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  animation-delay: .2s;
  animation-direction: alternate;
  margin-top: -6px;
}

.carousel .three {
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  animation-delay: .3s;
  animation-direction: alternate;
  margin-top: -6px;
}

.carousel .mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  -webkit-transform: none;
          transform: none;
  border: 2px solid white;
  top: 170px;
}

.carousel .wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  position: relative;
  height: 4px;
  width: 4px;
  border: 2px solid #fff;
  border-radius: 8px;
}

.carousel .wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

.carousel .navigation {
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.carousel .navigation .nav-btn {
  width: 40px;
  height: 10px;
  margin: 5px;
  border-radius: 5px;
  border: 2px solid var(--secondary-color);
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
}

.carousel .navigation .nav-btn:not(:last-child) {
  margin-right: 40px;
}

.carousel .navigation .nav-btn:hover {
  background: var(--secondary-color);
}

.sequence-tile-section {
  width: 100vw;
  height: 60rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-position: center;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 20vh;
}

.sequence-tile-section .container {
  width: 100%;
  max-width: 1364px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sequence-tile-section .container .sequence-tile-banner {
  width: 500px;
  height: 500px;
  margin: 50px 0;
  border-radius: 250px;
  overflow: hidden;
  border: 10px solid var(--primary-color);
  -webkit-box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
}

.sequence-tile-section .container .sequence-tile-banner .sequence-tile-banner-overlay {
  width: 102%;
  height: 102%;
  padding: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #FFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.sequence-tile-section .container .sequence-tile-banner .sequence-tile-banner-overlay h1 {
  font-size: 28px;
  font-weight: 700;
}

.sequence-tile-section .container .sequence-tile-banner .sequence-tile-banner-overlay p {
  font-size: 18px;
}

.sequence-tile-section .container .sequence-tile {
  width: 600px;
  position: relative;
}

.sequence-tile-section .container .sequence-tile .sequence-image {
  width: 105px;
  height: 105px;
  border-radius: 75px;
  border: 3px solid #FFFF;
  background-size: cover;
  -webkit-box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
  z-index: 3;
  cursor: pointer;
}

.sequence-tile-section .container .sequence-tile .sequence-title {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 3px solid rgba(94, 92, 92, 0.5);
}

.sequence-tile-section .container .sequence-tile .sequence-title h1 {
  margin: 20px 0;
  font-size: 20px;
  font-weight: 600;
}

.sequence-tile-section .container .sequence-tile .sequence-tile-unexpanded {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sequence-tile-section .container .sequence-tile .sequence-text-expanded {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 40px 10px 130px;
  border-radius: 75px;
  background-color: var(--primary-color);
  color: #FFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  width: 80%;
}

.sequence-tile-section .container .sequence-tile .sequence-text-expanded .sequence-text {
  opacity: 0%;
}

.sequence-tile-section .container .sequence-tile .sequence-text-expanded h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.sequence-tile-section .container .sequence-tile .sequence-text-expanded p {
  font-size: 14px;
  margin: 0;
}

.sequence-tile-section .container .sequence-tile .sequence-text-expanded .divider {
  width: 300px;
  margin: 5px 0;
  border-top: 1px solid #bbb;
  background-color: #bbb;
}

.sequence-tile-section .container .sequence-1 {
  margin: 20px 20px 20px 20px;
}

.sequence-tile-section .container .sequence-2 {
  margin: 20px 20px 20px 90px;
}

.sequence-tile-section .container .sequence-3 {
  margin: 20px 20px 20px 130px;
}

.sequence-tile-section .container .sequence-4 {
  margin: 20px 20px 20px 90px;
}

.sequence-tile-section .container .sequence-5 {
  margin: 20px 20px 20px 20px;
}

.sequence-tile-section .mobile-sequence-tile-banner-overlay {
  display: none;
}

.sequence-tile-section .mobile-sequence-tile-banner-overlay h1 {
  font-size: 28px;
}

.sequence-tile-section .mobile-sequence-tile-banner-overlay p {
  font-size: 18px;
}

.menu-items-display-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: center;
  background-size: cover;
}

.menu-items-display-section .text-info {
  text-align: center;
}

.menu-items-display-section .text-info h1 {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 800;
}

.menu-items-display-section .text-info p {
  margin-top: 15px;
  font-size: 20px;
}

.menu-items-display-section .menu-item-sliders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-items-display-section .menu-item-sliders .item-slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-items-display-section .menu-item-sliders .item-slider-container h1 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.menu-items-display-section .menu-item-sliders .item-slider-container .slider-overflow-hidden {
  width: 350px;
  height: 280px;
  overflow: hidden;
}

.menu-items-display-section .menu-item-sliders .item-slider-container .slider-overflow-hidden .slider .item {
  height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-items-display-section .menu-item-sliders .item-slider-container .slider-overflow-hidden .slider .item .circular-image {
  width: 225px;
  height: 225px;
  border-radius: 112.5px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.menu-items-display-section .menu-item-sliders .item-slider-container .slider-overflow-hidden .slider .item .circular-image img {
  width: 100%;
}

.menu-items-display-section .menu-item-sliders .item-slider-container .slider-overflow-hidden .slider .item h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.menu-items-display-section .menu-item-sliders .item-slider-container .slider-btn {
  cursor: pointer;
}

.menu-items-display-section .menu-item-sliders .item-slider-container .slider-btn i {
  font-size: 52px;
  font-weight: 800;
  color: grey;
}

.video-display-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-position: center;
  background-size: cover;
}

.video-display-section .container {
  width: 100%;
  max-width: 1264px;
  margin-top: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.video-display-section .container .info-text {
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  line-height: 1.5;
}

.video-display-section .container .info-text h1 {
  font-size: 30px;
  font-weight: 800;
}

.video-display-section .container .info-text p {
  font-size: 16px;
}

.video-display-section .container .vertical-divider {
  width: 2px;
  height: 250px;
  margin: 10px;
  background-color: grey;
}

.video-display-section .container .embeded-yt-video {
  width: 100vw;
  height: max-content;
  /* border: 2px solid red; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}

.video-display-section .container .embeded-yt-video div video {
  width: 40vw;
  height: 50vh;
}

@media screen and (max-width: 768px) {
  .carousel {
    /*css for carousel navigation*/
  }
  .carousel .carousel-overlay .bg-overlay {
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(black), to(rgba(0, 0, 0, 0.3)));
    background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.3) 100%);
  }
  .carousel .carousel-overlay .info-overlay {
    width: 100vw;
    padding: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .carousel .carousel-overlay h1 {
    font-size: 28px;
  }
  .carousel .carousel-overlay p {
    font-size: 14px;
    line-height: 1.5;
  }
  .carousel .navigation {
    padding: 30px;
  }
  .carousel .navigation .nav-btn {
    width: 30px;
    height: 8px;
    border-radius: 4px;
  }
  .carousel .navigation .nav-btn:not(:last-child) {
    margin-right: 30px;
  }
  .sequence-tile-section {
    position: relative;
    padding: 10px;
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
  .sequence-tile-section .mobile-sequence-tile-banner-overlay {
    width: 100vw;
    display: block;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
  }
  .sequence-tile-section .mobile-sequence-tile-banner-overlay h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
  }
  .sequence-tile-section .mobile-sequence-tile-banner-overlay p {
    font-size: 16px;
    margin: 0;
    padding: 0;
  }
  .sequence-tile-section .sequence-section .sequence-tile {
    width: 90vw;
    margin: 15px 20px !important;
  }
  .sequence-tile-section .sequence-section .sequence-tile .sequence-title {
    display: none;
  }
  .sequence-tile-section .sequence-section .sequence-tile .sequence-text-expanded {
    opacity: 100% !important;
    width: 100% !important;
  }
  .sequence-tile-section .sequence-section .sequence-tile .sequence-text-expanded .sequence-text {
    opacity: 100% !important;
  }
  .sequence-tile-section .sequence-section .sequence-tile .sequence-text-expanded h1 {
    font-size: 14px;
  }
  .sequence-tile-section .sequence-section .sequence-tile .sequence-text-expanded p {
    font-size: 10px;
  }
  .sequence-tile-section .sequence-section .sequence-tile .sequence-text-expanded .divider {
    width: 150px;
  }
  .sequence-tile-section .sequence-tile-banner {
    display: none;
  }
  .menu-items-display-section {
    padding: 10px;
    display: block;
    height: 100% !important;
  }
  .menu-items-display-section .text-info {
    margin-top: 20px;
  }
  .menu-items-display-section .text-info h1 {
    font-size: 26px;
  }
  .menu-items-display-section .text-info p {
    font-size: 16px;
  }
  .menu-items-display-section .menu-item-sliders {
    display: block;
    height: 50%;
  }
  .menu-items-display-section .menu-item-sliders .item-slider-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .video-display-section {
    height: 100% !important;
  }
  .video-display-section .container {
    width: 100vw;
    max-width: 1264px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 0;
  }
  .video-display-section .container .info-text {
    padding: 20px;
  }
  .video-display-section .container .info-text h1 {
    font-size: 30px;
    font-weight: 800;
  }
  .video-display-section .container .info-text p {
    font-size: 14px;
  }
  .video-display-section .container .vertical-divider {
    display: none;
  }
  .video-display-section .container .embeded-yt-video {
    flex-direction: column;
    margin-left: 0px;
  }
  .video-display-section .container .embeded-yt-video div video {
    width: 85vw;
    height: 50vh;
  }
}
/*# sourceMappingURL=main.css.map */