* {
    box-sizing: border-box;
  }
  
  .row::after {
    content: "";
    clear: both;
    display: table;
  }
  
  [class*="col-"] {
    float: right;
    padding: 15px;
  }
  
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
  
  html {
    font-family: Agency system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  .header {
    background-color: #00BBFF;
    color: #ffffff;
    padding: 15px;
  }
  *{
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

a,button{
    cursor: pointer;
}

nav{
    position: absolute;
    top: 100px;
    right: 50px;
    width: 250px;
}

.navigation{
    position: fixed;
    right: -500px;
    width: 350px;
    height: 100%;
    background-color: #000;
    transition: .5s;
    z-index: 9999;
}

.navigation ul li {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  list-style-type: none;
  font-size: 1.5em;
  padding: 20px 30px;
  border-bottom: 1pt solid #252525;
  transition: .5s;
}
a:link { text-decoration: none; }

.navigation ul li:hover {
  color: #ff0;
}

.hamburger, .bar{
    position: fixed;
}

.hamburger{
    display: block;
    top: 5%;
    left: 95%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    border: 0;
    background: 0 0;
}

.bar{
    top: 3px;
    background: #000;
    width: 100%;
    height: 4px;
    transition: all .3s ease-in;
}

#bar2{
    top: 11px;
}

#bar3{
    top: 19px;
}

.navigation.active{
    right: 0;
}

.hamburger.open #bar1{
    background-color: #fff;
    transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.open #bar2{
    background-color: transparent;
}

.hamburger.open #bar3{
    background-color: #fff;
    transform: rotate(-45deg) translate(6px, -5px);
}
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "top top top top top top"
    "info photo photo photo photo photo"
    "info info-2 photo-2 photo-2 photo-2 photo-2"
    "info info-2 photo-2 photo-2 photo-2 photo-2"
    "info info-2 photo-2 photo-2 photo-2 photo-2"
    "photo-3 photo-3 info-3 info-3 info-3 info-3";
}
.top { grid-area: top; }

.info { grid-area: info; }

.photo { grid-area: photo; }

.info-2 { grid-area: info-2; }

.photo-2 { grid-area: photo-2; }

.info {
  flex-basis: 50%;
  padding: 100px 700px 100px 50px;
  animation-name: slide-in-left;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  font-size: 16px;
}
.info-2 {
  grid-area: info;
  padding: 10px 50px 300px 700px;
  animation-name: slide-in-right;
  justify-content: right;
  align-items: center;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

*{
  margin: 0;
  padding: 0;
  font-size: 'poppins, sans-serif';
  box-sizing: border-box;
}
body{
  overflow-x: hidden; /* Hide horizontal scrollbar */
  font-family: 'poppins', sans-serif;
  background: rgb(102,102,102);
  background: linear-gradient(0deg, rgba(102,102,102,1) 7%, rgba(230,230,230,1) 23%);
  animation: gradientAnimation 10s ease infinite;}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.timeline-3{
  position: relative;
  max-width: 1200px;
  margin: 100px auto;
  z-index: -1;
}

.container-3{
  padding: 10px 50px;
  position: relative;
  width: 50%;
  animation: movedown 1s linear forwards;
  opacity: 0;
} 

@keyframes movedown {
  0%{
      opacity: 1;
      transform: translateY(-30px);
  }
  100%{
      opacity: 1;
      transform: translateY(0px);
  }
}
.container-3:nth-child(1){
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}
.container-3:nth-child(2){
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
.container-3:nth-child(3){
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
.container-3:nth-child(4){
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
   }
} 
.text-box-3{
  padding: 20px 30px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  font-size: 15px;
  line-height: 24px;
  color: #333; 

}
.left-container-3{
  left: 0;
}

.right-container-3{
  left: 50%;
}

.container-3 img{
  position: absolute;
  width: 40px;
  border-radius: 50%;
  right: -20px;
  top: 32px;
  z-index: 10;
}

.right-container-3 img{
  left: -20px; 
}

.timeline-3::after{
  content: '';
  position: absolute;
  width: 6px;
  height: 100%;background: #fff;
  top: 0;
  left: 50%;
  margin: -3px;
  z-index: -1;
  animation: moveline 6s linear forwards;
}
@keyframes moveline {
  0%{
      height: 0;
  }
  100%{
      height: 100%;
  }
}
.text-box-3 h2{
  font-weight: 600;
  color: #00BBFF;
  margin-bottom: 10px;
}
.text-box-3 small{
  display: inline-block;
  margin-bottom: 15px;
}
.left-container-arrow-3{
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid white;
  right: -15px;
}
.right-container-arrow-3{
  height: 0;
  width: 0;
  position: absolute;
  top: 28px;
  z-index: 1;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid white;
  left: -15px;
}


.container-3 {
	padding: 2rem;
}

.slider-wrapper {
	position: relative;
	max-width: 48rem;
	margin: 0 auto;
}

.slider {
	display: flex;
	aspect-ratio: 16 / 9;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.75);
	border-radius: 0.5rem;
	-ms-overflow-style: none; /* Hide scrollbar IE and Edge */
	scrollbar-width: none; /* Hide scrollbar Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.slider::-webkit-scrollbar {
	display: none;
}

.slider img {
	flex: 1 0 100%;
	scroll-snap-align: start;
	object-fit: cover;
}

.slider-nav {
	display: flex;
	column-gap: 1rem;
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.slider-nav a {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.75;
	transition: opacity ease 250ms;
}

.slider-nav a:hover {
	opacity: 1;
}



@media screen and (max-width: 600px){
  .timeline-3{
      margin: 50px auto;
  }
  .timeline-3::after{
      left: 31px;
  }
  .container-3{
      width: 100%;
      padding-left: 80px;
      padding-right: 25px;
  }
  .text-box{
      font-size: 13px;
  }
  .text-box small{
      margin-bottom: 10px;
  }
  .right-container-3{
      left: 0;
  }
  .left-container-3 img, .right-container-3 img{
      left: 10px;
  }
  .left-container-arrow-3, .right-container-arrow-3{
      border-right: 15px solid #fff;
      border-left: 0;
      left: -15px;
  }
}
/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background-color: hsl(0, 0%, 65%);
}

::-webkit-scrollbar-thumb{
  border-radius: .5rem;
  background-color: hsl(0, 0%, 55%);
}

::-webkit-scrollbar-thumb:hover{
  background-color: hsl(0, 0%, 45%);
}
html{
  scroll-behavior: smooth;
}
.info-3{
  padding: 30px;
  margin: 10px 0;
  position: relative;
  color: rgb(187, 182, 182); 
  top: 0; 
  left: 0; 
  z-index: 1; 
  max-width: 1200px;
}

.info-3 h1{
  text-transform: bold;
  background-image: linear-gradient(
    220deg,
    #00DAFF 25%,
    #00a6ff 50%,
    #00d0ff 75%,
    #007bff 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 100% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 125px;
  animation: textclip 10s linear infinite;
}

@keyframes textclip {
  from {
    background-position: 0% center;
  }
  to {
    background-position: 100% right;
  }
}
.text-box-4{
  padding: 20px ;
  background: #fff;
  position: relative;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  font-size: 15px;
  line-height: 24px;
  color: #333; 
}


.container-5 {
  float: left;
  padding: 30px;
  margin: 10px 0;
  position: relative;
  color: rgb(187, 182, 182); 
  z-index: 1;
  max-width: 1200px;
  padding-top: 10rem;
}

.container-6 {
  float: right;
  padding: 30px;
  margin: 10px 0;
  position: relative;
  color: rgb(187, 182, 182); 
  z-index: 1; 
  max-width: 1200px;
} 

@keyframes movedown {
  0%{
      opacity: 1;
      transform: translateY(-30px);
  }
  100%{
      opacity: 1;
      transform: translateY(0px);
  }
}

.text-box-5{
  padding: 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  font-size: 15px;
  line-height: 24px;
  color: #333; 
}
.container-7 {
  float: left;
  padding: 30px;
  margin: 10px 0;
  position: relative;
  color: rgb(187, 182, 182); 
  z-index: 1; 
  max-width: 1200px;
} 

@keyframes movedown {
  0%{
      opacity: 1;
      transform: translateY(-30px);
  }
  100%{
      opacity: 1;
      transform: translateY(0px);
  }
}

.text-box-6{
  padding: 20px;
  background: #fff;
  position: relative;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  font-size: 15px;
  line-height: 24px;
  color: #333; 
  margin-bottom: 50px;
}

.scroll-button {
  z-index: 999;
  text-align: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00bbff5c;
  color: white;
  font-size: 25px;
  line-height: 50px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: bottom .4s, transform .4s, background-color .4s;
}

.scroll-button:hover {
  background-color: #00bbff;
}
.scroll-button:hover{
  transform: translateY(-.5rem);
} 
.scrollup{
  right: 3rem;
}
.small, .big {
  transition: transform 0.1s ease-out, background-color 0.2s ease-out;
}
/*
.small {
  position: fixed;
  z-index: 9999;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  margin: -2.5px;
}

.big {
  position: fixed;
  z-index: 9999;
  width: 25px;
  height: 25px;
  border: 2px solid #000000;
  border-radius: 50%;
  margin-bottom: 20rem;
  background-color: transparent;
}

.section-1 {
  height: 0px;
  width: 0px;
}
*/
.footer{
  background-color: transparent;
}

.footer__container{
  padding: 3rem 2rem;
  row-gap: 2.5rem;
  padding-block: 4rem;
  text-align: left;
  justify-content: space-between;
  padding-left: 10rempporn;
}

.footer__links{
  display: flex;
  justify-content: center;
  column-gap: 2rem;
  flex-wrap: wrap;
  text-align: right;
  column-gap: 4rem;
  order: 1;
  padding-left: 40rem;
}

.footer__link{
  color: white;
  transition: color .4s;
}

.footer__link:hover{
  color: lightslategray;
}

.footer__copy{
  color: rgb(190, 190, 190);
  font-size: small;
  text-align: center;
}

.footer__copy a{
  color: white;
  font-weight: bold;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media (max-width: 500px){
.info-3{
  padding: 30px;
  margin: 10px 0;
  position: relative;
  color: rgb(187, 182, 182); 
  top: 0; 
  left: 0; 
  z-index: 1; 
  max-width: 1200px;
  padding-bottom: 100px;
}
.info-3 h1{
  text-transform: bold;
  background-image: linear-gradient(
    220deg,
    #00DAFF 25%,
    #00a6ff 50%,
    #00d0ff 75%,
    #007bff 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 100% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 60px;
  animation: textclip 10s linear infinite;
}
.info-3 h2{
  padding-bottom: 350px;
}

}