
@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;
  }
}

* {
    padding: 0;
    margin: 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;
    margin-bottom: 20px;
    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;
  }
  
  
  form {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 40px 0px;
    animation-duration: 1s;
    animation-name: rights;
  }
  
  .help-heading {
    color: #000000;
    font-family: Inter;
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 35px;
  }
  
  .contact-sub-heading {
    color: #000000;
    font-family: Inter;
    font-weight: 800;
    font-size: 35px;
    margin-bottom: 35px;
  }
  
  textarea {
    max-width: 50%;
    min-width: 50%;
    min-height: 140px;
    padding: 8px;
    margin-bottom: 24px;
    border: 2px solid black;
    border-radius: 3px;
    font-family: Inter;
  }
  
  input {
    width: 50%;
    padding: 8px;
    margin-bottom: 24px;
    border: 2px solid black;
    border-radius: 3px;
    font-family: Inter;
  }
  
  select {
    width: 51.5%;
    padding: 8px;
    margin-bottom: 24px;
    border: 2px solid black;
    border-radius: 3px;
    cursor: pointer;
    font-family: Inter;
  }
  
  
  #submit {
    width: 25%;
    border: 2px solid black;
    padding: 14px 0px;
    background-color: #D29F09;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }
  
  #submit:hover {
    color: white;
    background-color: black;
    transition: all 0.5s ease-in-out;
  }
  
  ::placeholder {
    color: #000000;
  }

  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;
  }

  