@keyframes lefts {
    from {
      translate: -150vw 0;
      scale: 200% 1;
    }
  
    to {
      translate: 0 0;
      scale: 100% 1;
    }
  }

  @keyframes rights {
    from {
      translate: 150vw 0;
      scale: 200% 1;
    }
  
    to {
      translate: 0 0;
      scale: 100% 1;
    }
  }

*{
    margin: 0;
    padding: 0;
}

.logo-left img {
  position: absolute;
  max-width: 109px;
  left: 118px;
  top: 0px;
  mix-blend-mode: multiply;
}


li {
  list-style: none;
  
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 145px;
  z-index: 10;
  position: relative;
box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.10);
animation-duration: 1s;
animation-name: lefts;
}

#actives {
  color: #D29F09;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 46px;
}

.nav-links a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  font-family: Inter;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #f09a24;
  border-radius: 5px;
  transition: 0.3s;
}


.about-us-information {
  background-color: #F9F9FF;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  text-align: justify;
  flex-direction: row;
  justify-content: center;
  padding: 19px 0px;
  align-items: center;
}

.about-context {
  padding: 0px 144px 0px 79px;
  margin: 61px 0px 0px 0px;
}

.about-heading {
  color: #000000;
  font-family: Inter;
  font-weight: 700;
  font-size: 35px;
  position: absolute;
  top: 19px;
}

.about-detail {
  color: #000000;
  font-family: Inter;
  font-size: 16px;
  margin-top: 17px;
  line-height: 48px;
  animation-duration: 1s;
  animation-name: lefts;
}

.about-img {
  position: relative;
  padding-right: 61px;
  width: 100%;
  margin-top: 41px;
  animation-duration: 1s;
  animation-name: rights;
}

.about-img img {
  width: 430px;
  border-radius: 15px;
}

.about-us-more {
  background-color: #F9F9FF;
  height: auto;
}

.second{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
}


.sec-img {
    position: relative;
    padding-right: 61px;
    width: 100%;
    margin-top: 41px;
    animation-duration: 1s;
    animation-name: rights;
  }

.sec-img img{
  width: 430px;
  border-radius: 15px;
  position: relative;
  left: 10%;
}

.sec-p{
    color: #000000;
    font-family: Inter;
    font-size: 16px;
    margin-top: 17px;
    line-height: 48px;
    animation-duration: 1s;
    animation-name: lefts;
}

.sec-p :nth-child(1){
    padding: 0px 144px 0px 79px;
    margin: 61px 0px 0px 0px;
  }

    
  
.third{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 31px;
}


.third-img {
    position: relative;
    width: 100%;
    margin-top: 41px;
    animation-duration: 1s;
    animation-name: rights;
  }

.third-img img{
  width: 430px;
  border-radius: 15px;
  
}

.third-p{
    color: #000000;
    font-family: Inter;
    font-size: 16px;
    margin-top: 17px;
    line-height: 48px;
    animation-duration: 1s;
    animation-name: lefts;
}

.third-p :nth-child(1){
    padding: 0px 144px 0px 79px;
    margin: 61px 0px 0px 0px;
  }

  footer{
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 50px 0px;
  align-items: center;
  background-color:#f7f7f7 ; 
  flex-direction: column;
  gap: 20px;
  }
  
  .our-info{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: row;
    gap: 30px;
  }
  
  .our-info a {
    text-decoration: none;
    font-size: 12px;
    font-family: Inter;
    color: black;
    font-weight: 600;
}
  
  .copyright p{
    color: #000000;
    font-family: Inter;
    font-size: 15px;
    font-weight: 600;
  }