* {
    padding: 0;
    margin: 0;
  
  }

  @keyframes lefts {
    from {
      translate: -150vw 0;
      scale: 200% 1;
    }
  
    to {
      translate: 0 0;
      scale: 100% 1;
    }
  }

  /* animation-duration: 1s;
  animation-name: rights; */

  /* animation-duration: 1s;
  animation-name: lefts;
  transition: ease-in; */

  @keyframes rights {
    from {
      translate: 150vw 0;
      scale: 200% 1;
    }
  
    to {
      translate: 0 0;
      scale: 100% 1;
    }
  }
  
  .header {
    position: relative;
    height: 732px;
    width: 100%;
    background-color: white;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.10);
  }
  
  .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: rights;
    background-color: white;
  }
  
  
  
  
  #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;
  }
  
  
  .con-tact {
    background-color: #ffffff;
    display: flex;
    position: relative;
    flex-direction: column;
    text-align: center;
    gap: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    height: auto;
    box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.10);
  }
  
  
  .contact-title {
    color: #000000;
    font-family: Inter;
    font-weight: 700;
    font-size: 35px;
    top: 18px;
    position: relative;
    animation-duration: 1s;
  animation-name: lefts;
  }
  
  .info {
    width: 50%;
    animation-duration: 1s;
  animation-name: lefts;
  }
  
  .map iframe {
    width: 400px;
    height: 400px;
    animation-duration: 1s;
  animation-name: rights;
  }
  
  .info i {
    height: 50px;
  }
  
  .address {
    display: flex;
    flex-direction: row-reverse;
    text-align: left;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
  }
  
  .mail {
    font-size: 30px;
    text-decoration: none;
    color: black;
    font-family: Inter;
    font-weight: 500;
  }
  
  .locate {
    font-size: 30px;
    text-decoration: none;
    color: black;
    font-family: Inter;
    font-weight: 500;
    line-height: 36px;
  }

  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;
  }