@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
  --primary-color: #ebc43d;
  --dark-color: #161616;
  --wheat-color:wheat;
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
html,body{
  overflow-x: hidden;
}
html{
    scroll-behavior: smooth;
}
body{
  background-color:  var(--primary-color) !important;
}

.banner-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	height: 400px;
	display: grid;
	place-items: center;
}
.banner-image::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}
  
  /* Utility Classes */

  .text-primary{
    color: var(--primary-color) !important;
  }

  .bg-primary{
    background-color: var(--primary-color) !important;
    
  }
.bg-primary-color{
	background-color: var(--primary-color) !important;
}
  .bg-dark{
    background-color: var(--dark-color) !important;
  }
  .bg-wheat{
    background-color: var(--wheat-color);
  }
.fw-boldest{
    font-weight: 800;
}
.h-max-content{
    height: max-content !important;
}
.w-130{
  width: 130px !important;
}
.text-xs{
  font-size: 9px !important;
}
.text-sm{
  font-size: 14px !important;
}
.text-italic{
  font-style: italic;
}
.creator p:not(:last-child){
  margin-bottom: 8px !important;
}
.creator p:last-child{
  margin-bottom: 0 !important;
}
.rounded-full{
  border-radius: 50%;
}
.border-white{
  border: 2px solid white;
}
.bg-mute-gray{
  background-color: #6b6e6d;
}
.tab-panel{
  display: none;
}
.tab-panel.active{
  display: block;
}
.ul ul{
  list-style-type: none;
}
.ul ul li:not(:last-of-type){
  margin-bottom: 8px;
}
/* Nav bar styles */


  .nav-link.active {
  position: relative;
}
@media screen and (min-width: 769px) {
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: black;
  transform: translateX(-50%);
  box-shadow: -10px 0 0 rgba(22, 22, 22, 0.5), 10px 0 0 rgba(22, 22, 22, 0.5);
}
}
/* Event  */

.balloon,.white-balloon{
  position: relative !important;

}

.balloon img,.white-balloon img{
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
/* Regular Classes */
.motion{
  height: auto !important;
}

.navbar-collapse.show{
  transition: all 0 ease;
  background-color: var(--primary-color) !important;
}
.navbar-collapse.show .navlink{
  padding-left: 20px !important;
}

.vision-mission{
  width: 100px;
}

.counter {
  transition: all 0.3s ease-out;
}

.even-card {
  animation: float-up-down 4s ease infinite;
}

.odd-card {
  animation: float-down-up 4s ease infinite;
}

footer{
  background-color: rgba(0,0,0,0.2);
  padding: 0;
}
.footer-image{
  width: 200px;
  height: 100%;
  margin-top: -20px;
}

.chevron-ul ul{
  list-style: none;
  padding: 0;
}
.chevron-ul ul li{
  position: relative;
  padding-left: 25px;
}

.chevron-ul ul li::after{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url('../images/chevron.svg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* EOL -2 Section */

.notebook,.shirt,.pen,.top,.right,.top-right{
  position: relative;
  }
.mascot{
  position: relative;
  height: 300px;
}
.notebook img,.shirt img,.mascot img,.top img{
  position: absolute;
  left: 0;
  bottom: 0;
  height: auto;
  width: 100%;
  object-fit: cover;
}

.pen img{
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
}
.right img{
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
}
.top-right img{
  position: absolute;
  left: 0;
  bottom: 0;
  height: auto;
  width: 100%;
  object-fit: cover;
}
/* Animation */
/* @keyframes float-up-down {
  0%{
    transform: translateY(-40px);
  }
  50%{
    transform: translateY(40px);
  } 
  100%{
    transform: translateY(-40px);
  }
}

@keyframes float-down-up{
  0%{
    transform: translateY(40px);

  }
  50%{
        transform: translateY(-40px);

  }
  100%{
    transform: translateY(40px);
    
  }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} */

.tiktok-embed{
  height: 743px !important;
  background-color: transparent;
}
.css-g03djc{
  background: transparent !important;
}
/* Media Queries */
@media screen and (max-width: 768px) {
  .navigation{
    position: relative !important;
  }
  .motion{
  height: auto;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
  .footer-image{
    width: 120px;
    height: 100%;
  }
  .footer-text{
    font-size: 12px !important;
  }
}

iframe{
  width: 100% !important;
  height: 100% !important;
}
.youtube > div{
  min-height: 250px !important;
}
.photoshoot-second-grid-container {
  display: grid;
  grid-template-rows: repeat(3, 220px);   
  gap: 10px;
}
.grid-container{
  display: grid;
  gap: 10px;
grid-auto-rows: 180px;
}
.row-span-3{
  grid-row: span 3;
}
@media  (min-width: 768px) {
  
.grid-container{
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: repeat(7,180px);
}
.row-col-span{
  grid-row: span 2;
  grid-column: span 2;
}
.col-span-2{
  grid-column: span 2;
}
.youtube .xl{
  min-height: 420px !important;
}
.photoshoot-second-grid-container {
  grid-template-columns: repeat(4, 1fr); 
}
.row-span-2{
  grid-row: span 2;
}
}
.google_map iframe{
	width: 100% !important;
	height: 100% !important;
}