
*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      user-select: none;
  }
  
  html,body{
  
      height: 100%;
      width:100%;
  
  }
  ::-webkit-scrollbar{
      display: none;
  }
  .highlight {
      fill: rgb(228, 107, 51)
  }
  
  .tab-box .tab-btn.active{
    color:rgba(228, 107, 51, 0.688)
  }
  .line{
    position: absolute;
    top: 2.9rem;
    left: 17px;
    height:.6vh;
    width: 6.3vw;
    background-color: rgb(228, 107, 51);
    border-radius: 1vw;
    transition: all .3s;
  }
  .content-box .content.active{
    display: block;
  }
  ::-webkit-scrollbar{
    display: none;
  }
  
  /* aditi Css */
  .timeline-section{
    background-size: contain;
	min-height: 100vh;
	padding: 100px 15px;
}
#time-h{
    text-align: center;
    font-size: 2em;
}
#time-p{
    text-align: center;
    font-size: 1em;
    margin-top: .5rem;
    margin-bottom: 4rem;
}
.timeline-items{
	max-width: 1000px;
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.timeline-items:hover{
    cursor: pointer;
}
.timeline-items::before{
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: #2f363e;
    
	left: calc(50% - 1px);
}
.timeline-item{
	margin-bottom: 40px;
	width: 100%;
	position: relative;
}
.timeline-item:last-child{
	margin-bottom: 0;
}
.timeline-item:nth-child(odd){
    padding-right: calc(50% + 30px);
	text-align: right;
}
.timeline-item:nth-child(even){
    padding-left: calc(50% + 30px);
}
.timeline-dot{
	height: 16px;
	width: 16px;
	background-color:rgb(228, 107, 51);
	position: absolute;
	left: calc(50% - 8px);
	border-radius: 50%;
	top:10px;
}
.timeline-date{
	font-size: 18px;
	color:rgb(228, 107, 51);
	margin:6px 0 15px;
}
.timeline-content{
    background-color: rgba(129, 128, 128, 0.15);  
    backdrop-filter: blur(5px);
    border: rgb(54, 51, 51) 1px solid;
    border-radius: 10px;
	padding: 30px;
	border-radius: 5px;
}
.timeline-content i{
    color:#c8c8c8;
    font-size: 1.3rem;
}
.timeline-content:hover{
    transform: scale(1.05);
    transition: all 0.4s ease;
    border: 1px solid #fff;
}
.timeline-content h3{
    font-size: 20px;
	color: #ffffff;
	margin:0 0 10px;
	text-transform: capitalize;
	font-weight: 500;
}
.timeline-content p{
    color: #c8c8c8;
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
}

/* responsive */
@media(max-width: 767px){
	.timeline-items::before{
		left: 7px;
	}
	.timeline-item:nth-child(odd){
		padding-right: 0;
		text-align: left;
	}
	.timeline-item:nth-child(odd),
	.timeline-item:nth-child(even){
		padding-left: 37px;
	}
	.timeline-dot{
		left:0;
	}
}
  
  .top-l{
     
      position: relative;
      z-index: 1000;
      color: #fff;
  }
  /* carousel */
  
  .carousel{
      width: 100vw;
      height: 100vh;
      margin-top: -50px;
      overflow: hidden;
      position: relative;
  }
  
  .carousel .list .item{
      width: 180px;
      height: 250px;
      position: absolute;
      top: 80%;
      transform: translateY(-70%);
      left: 70%;
      border-radius: 20px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
      background-position: 50% 50%;
      background-size: cover;
      z-index: 100;
      transition: 1s;
  }
  
  .carousel .list .item:nth-child(1),
  .carousel .list .item:nth-child(2){
      top: 0;
      left: 0;
      transform: translate(0, 0);
      border-radius: 0;
      width: 100%;
      height: 100%;
  }
  
  .carousel .list .item:nth-child(3){
      left: 67%;
  }
  
  .carousel .list .item:nth-child(4){
      left: calc(67% + 200px);
  }
  
  .carousel .list .item:nth-child(5){
      left: calc(67% + 400px);
  }
  
  .carousel .list .item:nth-child(6){
      left: calc(67% + 600px);
  }
  
  .carousel .list .item:nth-child(n+7){
      left: calc(67% + 800px);
      opacity: 0;
  }
  
  .list .item .contente{
      position: absolute;
      top: 50%;
      left: 100px;
      transform: translateY(-50%);
      width: 400px;
      text-align: left;
      color: rgb(255, 255, 255);
      display: none;
  }
  
  .list .item:nth-child(2) .contente{
      display: block;
  }
  
  .contente .title{
      font-size: 100px;
      text-transform: uppercase;
      color: rgb(228, 107, 51);
      font-weight: bold;
      line-height: 1;
  
      opacity: 0;
      animation: animate 1s ease-in-out 0.3s 1 forwards;
  }
  
  .contente .name{
      font-size: 100px;
      text-transform: uppercase;
      font-weight: bold;
      line-height: 1;
      text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);
  
      opacity: 0;
      animation: animate 1s ease-in-out 0.6s 1 forwards;
  }
  
  .contente .des{
      margin-top: 10px;
      margin-bottom: 20px;
      font-size: 18px;
      margin-left: 5px;
  
      opacity: 0;
      animation: animate 1s ease-in-out 0.9s 1 forwards;
  }
  
  .contente .btn{
      margin-left: 5px;
  
      opacity: 0;
      animation: animate 1s ease-in-out 1.2s 1 forwards;
  }
  
  .contente .btn button{
      padding: 10px 20px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      border: 2px solid #fff;
  }
  
  .contente .btn button:nth-child(1){
      margin-right: 15px;
  }
  
  .contente .btn button:nth-child(2){
      background: transparent;
      color: rgb(228, 107, 51);
      border: 2px solid #fff;
      transition: 0.3s;
  }
  
  .contente .btn button:nth-child(2):hover{
      background-color: rgb(228, 107, 51);
      color: #fff;
      border-color: rgb(228, 107, 51);
  }
  
  
  @keyframes animate {
      
      from{
          opacity: 0;
          transform: translate(0, 100px);
          filter: blur(33px);
      }
  
      to{
          opacity: 1;
          transform: translate(0);
          filter: blur(0);
      }
  }
  /* next prev arrows */
  
  .arrows{
      position: absolute;
      top: 80%;
      right: 52%;
      z-index: 100;
      width: 300px;
      max-width: 30%;
      display: flex;
      gap: 10px;
      align-items: center;
  }
  
  .arrows button{
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: rgb(228, 107, 51);
      color: #fff;
      border: none;
      outline: none;
      font-size: 16px;
      font-family: monospace;
      font-weight: bold;
      transition: .5s;
      cursor: pointer;
  }
  
  .arrows button:hover{
      background: #fff;
      color: #000;
  }
  
  /* time running */
  .carousel .timeRunning{
      position: absolute;
      z-index: 1000;
      width: 0%;
      height: 4px;
      background-color: rgb(228, 107, 51);
      left: 0;
      top: 0;
      animation: runningTime 7s linear 1 forwards;
  }
  
  @keyframes runningTime {
      
      from{width: 0%;}
      to{width: 100%;}
  
  }
  
  .portal{
      height:fit-content;
      width: 100%;
      padding: 4rem 3rem 3rem 3rem ;
  }
  .portal-head{
      height: fit-content;
      width: 100%;
      color: #fff;
      padding: 0 0 0 5.5rem;
     
  }
  .portal-head p{
      margin-top: .5rem;
  }
  
  .por-div{
    
      height: 80vh;
      width: 100%;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      padding: 1rem 3rem 0 3rem;
  }
  .por-div1{
      height: 100%;
      width:30%;
  }
  .por-div2{
      height: 100%;
      width: 30%;  
  }
  .por-div3{
      height: 100%;
      width: 30%;    
  }
  
  .po-info-t{
      height: 30%;
      width: 100%;
      margin-top: .5rem;
      margin-bottom: .5rem;
      display: flex;
      flex: 0 0 auto;
  }
  figure{
      margin: 0;
      padding: 0;
      border: 0;
      font-size: 100%;
      display: block;
  }
  
  .po-div{
      border-radius: 15px;
      background-color: rgba(129, 128, 128, 0.15);  
      backdrop-filter: blur(5px);
      color: #fff;
      padding:1rem 0 0 2rem;
      transition: all 0.4s ease;
      width: 100%;
      border: rgb(54, 51, 51) 1px solid;
  }
  
  .po-info-t div:hover{
      transform: scale(1.05);
      transition: all 0.4s ease;
  }
  .po-info-t .figure_img1{
      height: 50px;
      width: 70px;
  }
  .po-info-t h4{
      width: 146px;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      margin-top: .5rem;
  }
  .po-info-t p{
      font-size: .8rem;
  }
  .small-portal{
      height: 52vh;
      width: 100%;
      position: relative;
      z-index: 0;
      display: none;
  }
  .top-p{
     
      position: absolute;
      top: 22%;
      height: 80%;
      width: 100%;
      white-space: nowrap;
      overflow-x: auto;
      padding: 1rem 0 0 2rem;
  }
  .top-p::-webkit-scrollbar{
      display: none;
  }
  .top-p-elem{
  
      position: relative;
      top: 5%;
      height: 10rem;
      width:15rem;
      background-color: rgba(129, 128, 128, 0.15); 
      backdrop-filter: blur(5px);
      border: rgb(54, 51, 51) 1px solid;
      border-radius: 10px;
      display: inline-block;
      margin-right: 1rem;
      overflow: hidden;
     padding: 1rem 1rem 1rem 1rem;
  
  }
  
  .top-p-elem img{
      height: 5rem;
      width: 7rem;
      object-fit: cover;
      border-radius: .2rem;
  }
  .top-p-elem h4{
      width: 130px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: .3rem;
  }
  .top-p-elem  p{
      margin-top: 0.2rem;
      font-size: .7rem;
  }
  .sp-head{
      height: fit-content;
      padding: 2rem 0 0 2.1rem;
      color: #fff;
  }
  .sp-head p{
      margin-top: .1rem;
      font-size: .7rem;
  }
  /* Responsive Design */
  @media screen and (max-width: 999px){
      
      .list .item .content{
          left: 50px;
      }
  
      .content .title, .content .name{
          font-size: 70px;
      }
  
      .content .des{
          font-size: 16px;
      }
      .portal{
          padding: 0;
          
      }
      .portal-head{
          height: fit-content;
          padding: 2rem 0 0 3rem;
      }
      .portal-head p{
          margin-top: .2rem;
      }
      
      .por-div{
  
          height: 85vh;
          padding: 1rem 1.5rem 0 1.5rem;
      }
      .po-info-t{
          height: 31%;
      }
      .po-info-t .figure_img1{
          height: 40px;
          width: 60px;
      }
      .po-info-t h4{
          width: 146px;
          letter-spacing: 1.1px;
          text-transform: uppercase;
          margin-top: .3rem;
      }
      .po-info-t p{
          font-size: .7rem;
      }
          
  }
  @media screen and (max-width: 690px){
  
      .list .item .content{
          top: 40%;
      }
  
      .content .title, .content .name{
          font-size: 45px;
      }
  
      .content .btn button{
          padding: 10px 15px;
          font-size: 14px;
      }
      
      .por-div{
       
          height: 90vh;
          padding: 1rem 1.5rem 0 1.5rem;
      }
      .po-info-t{
          height: 32%;
      }
      .po-info-t .figure_img1{
          height: 35px;
          width: 50px;
      }
      .po-info-t h4{
     
          width: 130px;
          letter-spacing: 1px;
          text-transform: uppercase;
          margin-top: .3rem;
      }
      .po-info-t p{
          margin-top: 0.2rem;
          font-size: .6rem;
      }
  }
  @media screen and (max-width: 500px){
      .portal{
          display: none;
      }
      .small-portal{
          display: block;
       }
       #time-h{
          text-align: center;
          font-size: 2em;
      }
      #time-p{
          text-align: center;
          font-size: .5em;
          margin-top: .5rem;
          margin-bottom: 3rem;
      }
  }
   

html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: none;
  }

.state {
    fill: #5c5a5ab4;
    stroke: #000000;
    stroke-width: 1px;
}
.highlight {
    fill: rgb(228, 107, 51)
}

.tab-box .tab-btn.active{
  color:rgba(228, 107, 51, 0.688)
}
.line{
  position: absolute;
  top: 2.9rem;
  left: 17px;
  height:.6vh;
  width: 6.3vw;
  background-color: rgb(228, 107, 51);
  border-radius: 1vw;
  transition: all .3s;
}
.content-box .content.active{
  display: block;
}
::-webkit-scrollbar{
  display: none;
}

/* nav css */



@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

:root {
  --header-height: 3.5rem;

  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 14%, 30%);

  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  --font-medium: 500;
  --font-semi-bold: 600;

  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}


.header {
  top: 0;
  left: 0;
  width: 100%;
 color:white;
 position: absolute;
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}
.nav__logo img {
  width: 5.25rem;
}
.nav__logo:hover {
  color: var(--first-color);
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 1.25rem;
  color:white;
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: var(--first-color-lighten);
  color:orange
}

.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}


.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}


.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
}
.dropdown__container {
  
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}

.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: var(--title-color);
}


.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}


@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}

@media screen and (min-width: 1118px) {

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
  }
 
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child, .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: var(--first-color);
  }
  .dropdown__item {
    cursor: pointer;
  }
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  .dropdown__item:hover > .dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}
@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}