/*@import url('https://fonts.googleapis.com/css?family=Cabin:400,400i,500,500i,600,600i,700,700i|Monoton|Yellowtail');*/
@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,600,700,800,900&subset=latin-ext');

body {
  font-family: 'Quicksand';
  margin: 0;
}

.custom-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  /*background:url('https://images.unsplash.com/photo-1511227499331-25c621db940e?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=2e7e55bd948e728345b7ed558d550053&auto=format&fit=crop&w=1400&q=80');
  background-size:cover;
  background-position:50% 50%;*/
}

.custom-navbar {
  position: fixed;
  z-index: 100;
  overflow: hidden;
  margin: auto;
  /*   background-color:	#ecc9cd; */
  width: 100%;
  left: 0;
  top: 0;
}
/* nav {
  height: 8vh;
  background: transparent;
  position: fixed;
  z-index: 100;
  overflow: hidden;
  margin: auto;
  width: 100%;
  left: 0;
  top: 0;
}
.nav-div{
  display: flex; width: 100vw; justify-content: center; align-items: center; height: 10vh;
}
.nav-div p{
  font-size: 1.1rem;
  margin-left: 2%;
  color: #7461f0;
  font-weight: bold;
}
.nav-links {
  display: flex;
  margin-left: auto;
  width: 30%;
  height: 100%;
  justify-content: space-around;
  list-style: none;
  align-items: center;
}
.nav-links li a {
  font-size: 1.1rem;
  text-decoration: none;
  color: white;
}

@media screen and (max-width: 768px) {
  .hamline {
    width: 30px;
    height: 3px;
    background: white;
    margin: 5px;
  }
  nav {
    position: relative;
    background-color: rgb(2,2,2);
  }
  .hamburger {
    cursor: pointer;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
  }
  .nav-links {
    position: fixed;
    background: #5b78c7;
    flex-direction: column;
    width: 100%;
    clip-path: circle(100px at 90% -19%);
    -webkit-clip-path: circle(100px at 90% -19%);
    transition: all 1s ease-out;
    pointer-events: none;
  }
  .nav-links.open {
     clip-path: circle(200vh at 90% -19%);
    -webkit-clip-path: circle(200vh at 90% -19%);
    pointer-events: all; 
  }
} */



#linkedin-icon {
  color: #7461f0;
  margin-left: 1rem;

}
#github-icon {
  color: #7461f0;
  margin-left: 1rem;
}

.intro h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-family: 'Quicksand';
  color: rgb(225, 220, 220);
}

.gradient-purple-blue {
  background-color: rgb(2,2,2);
  /* background-image: linear-gradient(30deg, rgb(2, 2, 2), #383a3a); */
  /* background-image: linear-gradient(30deg, #8E78FF, #B9DEDB); */
}
.gradient-black-gray-2 {
  background-image: url('./assets/images/Projects.png');
  background-size: cover;
}
.gradient-black-gray-3 {
  background-image: url('./assets/images/Experiences.png');
  background-size: cover;
  display: flex;
  justify-content: start;
  min-height: 100vh;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-direction: column;
}
@media (max-width: 768px) {
  .gradient-black-gray-2 {
    max-width: 100%;
    background-image: url('./assets/images/MobileProjects.png');
    background-size: cover;
  }
  .gradient-black-gray-3 {
    max-width: 100%;
    background-image: url('./assets/images/MobileExperiences.png');
    background-size: cover;
  }
  .container-fluid{
    padding-top: 20% !important;
  }
}


.project-card {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: black;
  border: 1px solid rgb(47, 46, 46); /* Optional border */
  border-radius: 1rem;
  margin: 10px; /* Space between cards */
  font-size: 16px; /* Font size for technology names */
}

#project-1{
background: linear-gradient(to right, #FFF2DB, #FFDDC0);
}
#project-2{
background: linear-gradient(to right, #EFD4FD, #B7E3F9);
}
#project-3{
background: linear-gradient(to right, #FFE7AB, #FEDAEA);
}
#project-4{
background: linear-gradient(to right, #BAFCDF, #F4ECAF);
}
#project-5{
background: linear-gradient(to right, #FCE5F6, #CDBBFF);
}
#project-6{
background: linear-gradient(to right, #FBE7F5, #D6F2FD);
}
/* Modify project-card titles */
.project-card span {
  font-size: 14px;
  color: gray; /* Color for the technology names */
}

@media (max-width: 768px) {
  .project-card {
      height: 250px; /* Smaller height on smaller screens */
  }
}

.project-title{
font-size: 1.5rem;
font-weight: bold;
}

.project-tech{
width: 100%;
font-size: 0.8rem;
display: flex;
justify-content: space-evenly;
}

.project-icons{
width: 100%;
display: flex;
justify-content: end;
}

.icon {
font-size: 1.2rem; /* Increase the size of the icon */
color: black; /* Set the color of the icon to black */
margin-right: 15px; /* Add spacing to the right of the icon */
margin-top: 10px;
}

.icon:hover {
color: grey; /* Change color on hover to grey */
}

.project-card:hover {
color: white; /* Changes text color to white for better contrast */
cursor: pointer;
}

.project-card:hover .project-title {
display: none;
}

.project-card:hover .icon{
color: white;
}

.project-card:hover .icon:hover{
color: grey;
}

#project-1:hover{
  background: #020202;
  background-color: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(8,7,16,0.3);
}

#project-2:hover{
  background: #020202;
  background-color: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(8,7,16,0.3);
}
#project-3:hover{
  background: #020202;
  background-color: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(8,7,16,0.3);
}
#project-4:hover{
  background: #020202;
  background-color: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(8,7,16,0.3);
}
#project-5:hover{
  background: #020202;
  background-color: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(8,7,16,0.3);
}
#project-6:hover{
  background: #020202;
  background-color: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(8,7,16,0.3);
}

.project-description {
display: none; /* Initially hides the description */
font-size: 0.8rem; /* Sets the font size of the description */
padding: 1rem; /* Adds some padding for the text */
text-align: center; /* Centers the text */
}

.project-card:hover .project-description {
display: block; /* Shows the description on hover */
}

.under-container {
  width: 100vw;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.under-container img {
  z-index: 4;
  margin-left: 25%;
  margin-top: 13%;
  width: 25%;
  height: auto;
}

.tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


@media (max-width: 768px) {
  .under-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .under-container img {
    width: 80%;
    height: auto;
    margin-top: 0%;
    bottom: 0;
    margin-left: 0%;
    left: 0;
  }

  .tagline {
    order: -1 !important;
  }

  .square {
    font-size: 2rem !important;
  }

  .bubble::before {
    width: 70vw !important;
    height: 70vw !important;
  }

  .bubble::after {
    width: 40vw !important;
    height: 35vw !important;
    top: 28% !important;
  }
}

.line {
  display: flex;
  position: relative;
  z-index: 3;
}

.square {
  font-size: 4rem;
  font-weight: 900;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  cursor: default;
  transition: all 0.3s;
  color: #fff;
}

.square:hover {
  color: #08FDD8;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1)
  }

  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    -ms-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1)
  }

  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    -ms-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    -ms-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    -ms-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand
}

.mouse {
  display: flex;
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 30px;
}

.molette {
  margin: 12px auto auto auto;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 90px;
  animation: scroll 2s ease infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
    margin: 10px auto auto auto;
  }

  10% {
    opacity: 1;
  }

  50% {
    margin: 10px auto auto auto;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    margin: 18px auto auto auto;
  }
}

.mousetext {
  color: #fff;
  font-weight: 500;
}

/* bubble inspired by Mattia Astorino https://codepen.io/equinusocio/pen/jezBdZ*/

.bubble {
  position: relative;
}

.bubble::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 25%;
  transform: translate(-50%, -50%);
  display: block;
  width: 30vw;
  height: 30vw;
  background: linear-gradient(270deg,
      #43e97b,
      #38f9d7,
      #e0c3fc,
      #8ec5fc,
      #4facfe,
      #00f2fe,
      #a8edea,
      #fed6e3);
  background-size: 1600% 1600%;
  box-shadow: inset 0px -20px 100px 0px rgba(255, 255, 255, 0.48);
  animation:
    transform 20s linear infinite alternate,
    movement 40s linear infinite alternate,
    shade 60s linear infinite alternate;
}

.bubble::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 20vw;
  height: 15vw;
  background: linear-gradient(270deg,
      #00f2fe,
      #8ec5fc,
      #38f9d7,
      #4facfe,
      #a8edea,
      #43e97b,
      #e0c3fc,
      #fed6e3);
  background-size: 1600% 1600%;
  box-shadow: inset 0px -20px 100px 0px rgba(255, 255, 255, 0.48);
  animation:
    transform2 20s linear infinite alternate-reverse,
    movement 40s linear infinite alternate-reverse,
    shade 60s linear infinite alternate-reverse;
}

@keyframes transform {

  0%,
  100% {
    border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%;
  }

  20% {
    border-radius: 37% 63% 51% 49% / 37% 65% 35% 63%;
  }

  40% {
    border-radius: 36% 64% 64% 36% / 64% 48% 52% 36%;
  }

  60% {
    border-radius: 37% 63% 51% 49% / 30% 30% 70% 70%;
  }

  80% {
    border-radius: 40% 60% 42% 58% / 41% 51% 49% 59%;
  }
}

@keyframes transform2 {
  0% {
    border-radius: 42% 58% 60% 40% / 32% 54% 46% 68%
  }

  20% {
    border-radius: 59% 41% 36% 64% / 32% 64% 36% 68%
  }

  40% {
    border-radius: 48% 52% 52% 48% / 54% 53% 47% 46%
  }

  60% {
    border-radius: 42% 58% 51% 49% / 63% 64% 36% 37%
  }

  80% {
    border-radius: 32% 68% 33% 67% / 63% 35% 65% 37%
  }

  100% {
    border-radius: 34% 66% 52% 48% / 34% 53% 47% 66%
  }
}

@keyframes movement {
  from {
    -webkit-transform: rotate(-1turn) translateY(-50px);
    transform: rotate(-1turn) translateY(-50px);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes shade {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}


.image-container {
  position: relative;
  display: inline-block;
  /* Adjust as needed */
}

.image-container img {
  width: 100%;
  display: block;
  /* Removes bottom margin/gap */
}

.image-container .image-text {
  position: absolute;
  color: white;
  /* Text color */
  padding: 10px;
  /* Padding around text */
  bottom: 20%;
  /* Default to bottom for small and medium screens */
  right: 0;
  /* Align text to the right */
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
}

@media (min-width: 768px) {

  /* Adjust for larger screens */
  .image-container .image-text {
    bottom: initial;
    /* Remove bottom positioning */
    top: 50%;
    /* Center vertically */

    transform: translateY(-50%);
    /* Adjust vertical alignment */
  }
}


/* Experiences */

.timeline {
  position: relative;
  width: 80%;
  height: 2px;
  transform: rotate(-20deg);
}

.timeline-heading {
  color: white;
  width: 80%;
  margin-bottom: 20%; /* Adjust the margin as needed */
  padding-top: 8%;
}

.ex-line {
  position: absolute;
  width: 66%;
  height: 1px;
  background-color: gray;
  top: 10%;
  left: 17%;
  z-index: -2;
}

.company-heading{
  margin-top: 3%;
}

.events {
  display: flex;
  justify-content: space-around;
  position: relative;
  height: 100%;
}

.event {
  text-align: center;
  position: relative;
  width: 20%;
  transform: rotate(20deg);
}

.point {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  border: 0.5px solid white;
  transform: translate(-50%, -50%);
}

.content {
  position: absolute;
  bottom: 70%;
  color: white;
  transform: translateX(-50%) translateY(-20px);
  border-radius: 4px;
  z-index: 3;
}

.duration {
  /* background-color: green; */
  border-radius: 2rem;
  color: black;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px; 
}

.duration p {
  margin: 0;
  padding: 0;
}

.duration-1{
  background: linear-gradient(to right, #FCE5F6, #CDBBFF);

}
.duration-2{
  background: linear-gradient(to right, #FBE7F5, #D6F2FD);
}
.duration-3{
  background: linear-gradient(to right, #EFD4FD, #B7E3F9);
}
.duration p {
  font-size: 0.8rem;
}

/* Media Query for Small Screens */
@media screen and (max-width: 875px) {
  .timeline {
    width: 200px;
    height: 100vh;
    left: 20%;
    transform: rotate(0deg); /* No rotation */
  }

  .ex-line {
    width: 1px;
    height: 66%;
    z-index: -1;
    left: 0%;
    top: 17%; /* Reset top to 0 */
  }

  .events {
    flex-direction: column;
    align-items: center; /* Center align the events */
    height: 100%;
  }

  .event {
    width: 100%;
    transform: rotate(0deg); /* No rotation */
  }

  .point {
    top: 50%; /* Adjust positioning for vertical alignment */
    left: 0.1%;
  }

  .content {
    transform: translateX(-50%) translateY(-10px);
    bottom: 50%; /* Adjust for vertical timeline */
    width: 100%;
  }
}

 .scroll-to-top {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  color: #7461f0;
  text-decoration: none;
  background-color: #020202; /* Background color of the circle */
  border-radius: 50%; /* Makes it circular */
  width: 60px; /* Diameter of the circle */
  height: 60px; /* Diameter of the circle */
  display: flex;
  border: solid 2px #504B4B;
  justify-content: center;
  align-items: center;
  z-index: 1; /* Make sure it's above other content but below the arrow */
}

.scroll-to-top i {
  z-index: 2; /* Ensures the arrow is above the background circle */
  font-size: 1.5rem;
}

 .custom-footer {
  background-image: url('./assets/images/Footer3.png');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 0% 0;
  font-family: 'Quicksand', sans-serif;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  position: relative;
  box-shadow: 0 -15px 30px -10px rgba(131, 129, 129, 0.3);
  margin-top: -45px;
}

.footer {
  background-color: #a32e20; /* Adjust the color to match the red background */
  padding: 20px 0;
}

.footer p, .footer a {
  font-size: 0.9rem;
  color: white; /* Ensures the text is white */
  margin-bottom: 5px;
}

.footer strong {
  font-size: 1.2rem;
}

.footer a:hover {
  color: #ccc; /* Lighter grey on hover */
}

.footer-content{
  margin-top: 5%;
  text-align: left;
}
.footer-content p {
  margin: 10px 0;
  font-size: 1rem;
}

.footer-content a {
  font-size: 3rem;
  font-weight: bold;
  color: #7461f0;
  text-decoration: none;
}

.footer-content a:hover {
  color: #5643fa;
}

@media (max-width: 875px) {
  .custom-footer{
    background-image: url('.//assets/images/MobileFooter.png');
    background-size: cover;
  }
  .footer-content a {
    font-size: 1rem;
    font-weight: bold;
    color: #7461f0;
    text-decoration: none;
  }
}


/* Add this to your existing CSS */
.main-header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8vh;
  width: 100vw;
  width: calc(100vw - 0vw); /* Subtracting the margin from the width */
  top:0vh;
  left: 00vw; /* Adding margin on the left */
  right: 0vw; /* Adding margin on the right */
  padding: 0 5vw;
  /* background-color: transparent; */
  /* background: rgba(255, 255, 255, 0.2); */
  background-color: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(8,7,16,0.3);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  /* background-color: transparent; */
  color: white;
  z-index: 100;
  transition: 0.4s ease-out;
}
.logo{
  font-weight: bold;
  color: #7461f0
}
.main-header a {
  text-decoration: none;
  color: inherit;
}

.main-header .nav-links {
  display: flex;
  list-style: none;
  padding-top: 2vh;
}

.main-header .nav-links .nav-link a {
  margin: 0.2rem;
  padding: 1rem 0.5rem;
}

.main-header .nav-links .nav-link a:hover {
  /* background: rgba(255, 255, 255, 0.2); */
  color:#7461f0;
  text-decoration: none;
}

.main-header .menu-icon {
  position: relative;
  padding: 26px 10px;
  cursor: pointer;
  z-index: 1;
  display: none;
}

.main-header .menu-icon__line {
  display: block;
  position: relative;
  background: white;
  height: 2px;
  width: 20px;
  border-radius: 4px;
}

.main-header .menu-icon__line::before,
.main-header .menu-icon__line::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: white;
  transition: background 0.8s ease;
}

.main-header .menu-icon__line::before {
  transform: translateY(-5px);
}

.main-header .menu-icon__line::after {
  transform: translateY(5px);
}

.main-header .menu-btn {
  display: none;
}

.main-header.scrolled {
  color: white;
}

.main-header.scrolled .menu-icon__line,
.main-header.scrolled .menu-icon__line::before,
.main-header.scrolled .menu-icon__line::after {
  background: white;
}

@media screen and (max-width: 767px) {
  .main-header .menu-icon {
    display: block;
  }

  .main-header .menu-icon__line {
    animation: closedMid 0.8s backwards;
    animation-direction: reverse;
  }

  .main-header .menu-icon__line::before {
    animation: closedTop 0.8s backwards;
    animation-direction: reverse;
  }

  .main-header .menu-icon__line::after {
    animation: closedBtm 0.8s backwards;
    animation-direction: reverse;
  }

  .main-header .nav-links {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10rem 0;
    width: 100vw;
    height: 100vh;
    font-size: 2rem;
    color: #fff;
    background: rgb(2, 2, 2)  ;
    transition: opacity 0.8s 0.5s, clip-path 1s 0.5s;
    clip-path: circle(200px at top right);
  }

  .main-header .nav-links .nav-link {
    opacity: 0;
    transform: translateX(100%);
    width: 80%;
    text-align: right;
  }

  .main-header .nav-links .nav-link a {
    display: block;
    padding: 2rem 0;
  }

  .main-header .menu-btn:checked ~ .nav-links {
    opacity: 1;
    clip-path: circle(100% at center);
  }

  .main-header .menu-btn:checked ~ .nav-links .nav-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.175, 0.085, 0.32, 1.275);
  }

  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(1) {
    transition-delay: 0.7s;
  }

  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(2) {
    transition-delay: 0.8s;
  }

  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(3) {
    transition-delay: 0.9s;
  }

  .main-header .menu-btn:checked ~ .nav-links .nav-link:nth-of-type(4) {
    transition-delay: 1s;
  }

  .main-header .menu-btn:checked ~ .menu-icon {
    border-radius: 50%;
    animation: pulse 1s;
  }

  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line {
    background: #fff;
    animation: openMid 0.8s forwards;
  }

  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::before {
    background: white;
    animation: openTop 0.8s forwards;
  }

  .main-header .menu-btn:checked ~ .menu-icon .menu-icon__line::after {
    background: white;
    animation: openBtm 0.8s forwards;
  }
}


@keyframes pulse {
  from {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
  }
  to {
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
    background: rgba(255, 255, 255, 0);
  }
}

@keyframes openTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedTop {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

@keyframes openMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@keyframes closedMid {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@keyframes openBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

@keyframes closedBtm {
  0% {
    transform: translateY(5px) rotate(0deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(90deg);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

.intro {
  height: 100vh;
}

.intro video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.intro h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: white;
}

section {
  height: 100vh;
  color: black;
}

section h1 {
  padding-top: 300px;
  text-align: center;
  font-size: 80px;
}

