@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif !important;
}
html{
  overflow: hidden;
}
body {
  background: #66f;
  z-index: 100;
  margin: 0;
  padding: 0;
  height: 100vh !important;
  overflow: hidden !important;
}

#loading {
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading img {
  height: 240px;
  width: 240px;
  animation: Loader 2s ease infinite;
  transition: 0.5s ease;
}
@keyframes Loader {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.root {
  display: none;
}
.videoBg {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.section {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

/* AAROHAN NAVBAR => ARNAV*/
.arnav {
  position: fixed;
  top: 0;
  width: 100%;
  right: 0;
  left: 0;
  z-index: 100000000000000000000000000000000000000000000000000000000000000000000;
  margin-top: 0.75rem;
  padding-right: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width:600px){
  .arnav{
    margin-top: 0;
    padding-right: 0;
  }   
}
.arnav .left-navbar img {
  height: 90px;
  width: 90px;
}

.arnav .right-navbar {
  display: flex;
  align-items: center;
}
.arnav .right-navbar img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.arnav a {
  position: relative;
  color: #f1f1f1;
  text-decoration: none;
  display: block;
  font-size: 1.3rem;
  margin: 0 1.6rem;
  animation: navAnime 0.7s ease;
  transition: 0.7s;
}
.arnav .botHover:hover {
  color: aqua;
  transition: 0.5s all;
}
.arnav .botHover::after {
  transition: 0.5s all;
}
.arnav .botHover:hover::after {
  content: '';
  position: absolute;
  height: 2px;
  border-radius: 50px;
  background: aqua;
  transition: 0.5s;
  margin: auto auto;
  left: 0;
  right: 0;
  bottom: -2px;
  animation: navHover 0.25s ease;
}
@keyframes navHover {
  from{
    width: 15%;
    opacity: 0.1;
  }to{
    width: 100%;
    opacity: 1;
  }
}
/* Bottom Content */
@keyframes bounce {
  0%{
    transform: translateY(0px);
  }
  100%{
    transform: translateY(-8px);
  }
}
.content {
  position: fixed;
  left: 5.5%;
  bottom: 4%;
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
  animation: navAnime 1s ease;
  transition: 0.7s;
}
.content h1 {
  font-size: 4.5rem;
  margin: 0;
  font-weight: 600;
  animation: bounce 0.8s ease-in-out alternate-reverse infinite;
}
.content p {
  font-size: 2rem;
  line-height: 1.3;
  animation: bounce 0.8s ease-in-out alternate-reverse infinite;
}

.arrow {
  animation: bounce 0.8s ease-in-out alternate-reverse infinite;
  width: 50px;
  height: 50px;
}

@media (max-width: 991px) {
  .arrow {
    width: 30px;
    height: 30px;
  }
}

/* OFFCANVAS CSS */
@keyframes OffEnd {
	from {
	  opacity: 1;
	}
	to {
	  opacity: 0;
	}
  }
  @keyframes OffShow {
	0% {
	  opacity: 0.5;
	}
	100% {
	  opacity: 1;
	}
  }

.offcanvas-end {
  animation: OffEnd 0.8s !important;
  transition: 0.8s ease !important;
}
.offcanvas.show {
  animation: OffShow 1s !important;
  transition: 1s ease !important;
  overflow-y: scroll !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.offcanvas.show::-webkit-scrollbar {
  display: none;
}

.offcanvas .profile {
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
}
.offcanvas .profile img {
  height: 90px;
  width: 90px;
  border-radius: 50%;
}
.offcanvas .profile .names {
  flex: 1;
  display: block;
  padding-left: 2rem;
  animation: fadeZoom 0.8s ease 1s;
  transition: 0.8s ease;
}
.offcanvas .profile h4 {
  line-height: 0;
}
.offcanvas .profile h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 3rem;
  margin-bottom: -20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.offcanvas .profile button {
  font-size: 5rem;
  border: none;
  outline: none;
  background: transparent;
}
.offcanvas-end {
  width: 50vw !important;
  border-left: none !important;
  padding: 3rem;
}
/* Options Offcanvas */
.offcanvas .options {
  margin-top: 3rem;
  padding: 0 1.5rem;
}
.offcanvas .options a {
  display: block;
  background: #e4feff;
  text-decoration: none;
  color: #333;
  font-size: 1.75rem;
  font-weight: 500;
  margin: 1.5rem;
  padding: 1.25rem 3rem;
  border-radius: 8px;
  border: 3px solid transparent;
  transition: 0.5s;
}
.offcanvas .options a:hover {
  border: 3px solid aqua;
  transition: 0.5s;
}

/* Responsive CSS */
@media (max-width: 991px) {
  .offcanvas-end {
    width: 85vw !important;
  }
  .arnav a {
    margin: 0;
  }
  .arnav .right-navbar a {
    display: none;
  }
  .arnav .right-navbar a:last-child {
    display: block;
  }
  .arnav .left-navbar img {
    margin-left: -0.05rem;
  }
  .arnav .right-navbar img {
    height: 55px;
    width: 55px;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
  }
}
@media (max-width: 600px) {
  
  .offcanvas.show {
    animation: OffShow 0.5s !important;
    transition: 0.5s !important;
    min-height: 100vh;
    padding-bottom: 100px !important;
    overflow-y: scroll !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .offcanvas.show::-webkit-scrollbar {
    display: none;
  }
  .offcanvas-end {
    width: 100vw !important;
    padding: 1rem;
  }
  .content {
    left: 0 !important;
    bottom: 0 !important;
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
    text-align: center;
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.0) 0%,
      rgba(0, 0, 0, 0.5) 30%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.7) 90%,
      rgba(0, 0, 0, 0.9) 100%
    );
  }
  .content h1 {
    font-size: 3rem;
  }
  .content p {
      font-size: 1.2rem;
  }

  .offcanvas .profile img {
    height: 70px;
    width:  70px;
    border-radius: 50%;
  }
  .offcanvas .profile .names {
    flex: 1;
    display: block;
    padding-left: 1rem;
  }
  .offcanvas .profile h4 {
    line-height: 0;
  }
  .offcanvas .profile h2 {
    font-size: 3rem;
    margin-bottom: -20px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .offcanvas .profile button {
    font-size: 4rem;
  }
  .offcanvas .options {
    margin-top: 1.5rem;
    padding: 0 0;
  }
  .offcanvas .options a {
    margin: 1rem 0;
    padding: 14px 0;
    text-align: center;
    font-size: 1.25rem;
  }
}
@keyframes navAnime {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* workshops styles */
#section2 {
  background: #010936;
  background: -webkit-linear-gradient(top, #010936, #3C0136);
  background: -moz-linear-gradient(top, #010936, #3C0136);
  background: linear-gradient(to bottom, #010936, #3C0136);  
}

.workshop {
  width: 100%;
  height: 100%;
}

.title {
  width: 100%;
  text-align: left;
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 130px;
  padding-left: 100px;
}

.workshop-wrap {
  width: 100%;
  height: calc(100vh - 130px);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding-top: 50px;
  overscroll-behavior: contain;
  overflow-x: scroll !important;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.workshop-wrap::-webkit-scrollbar {
  display: none;
}

.workshop-wrap > :first-child {
  margin-left: 150px;
}

.workshop-wrap a {
  margin: 0 40px;
  height: 310px;
  width: 300px;
  position: relative;
  border: none;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.4);
  z-index: 3;
  border-radius: 10px;
  transition: transform 0.8s ease-in-out;
  text-decoration: none;
  animation: bounce 0.8s ease-in-out alternate-reverse infinite;
}

.workshop-wrap a:hover {
  transform: scale(1.1);
  animation: none;
}

.workshop-wrap a img {
  height: 300px;
  width: 300px;
  object-fit: contain;
  border: none;
  border-radius: 10px 10px;
}
.workshop-name {
  z-index: 100;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 14px;
  width: 100%;
  height: 50px;
  color: #ffffff;
  text-align: center;
  border-radius: 0px 0px 10px 10px;
  background-image: linear-gradient(
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(0, 0, 0, 0.8) 50%,
      rgba(0, 0, 0, 0.9) 80%,
      rgba(0, 0, 0, 1) 100%
    );
}
.workshop-name p {
  position: absolute;
  top: 20px;
  width: 100%;
  left: 0;
}

@media (max-width: 991px) {
  .workshop-wrap > :first-child {
    margin-left: 30px;
  }
  .title{
    text-align: center;
    padding-left: 0;
  }
  .workshop-wrap a {
    margin-left: 20px;
  }
}