#screen-navbar {
    width: 100vm;
    margin-inline: auto;
    padding: 16px;
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  @media all and (max-width: 480px) {
    #screen-navbar {
      display: none;
    }
  
    .search-view {
      width: 280px;
      height: 40px;
    }
  
    .input input {
      width: 240px;
    }
  
    #mobile-navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1001;
      width: 94vm;
      padding: 10px 20px;
    }
  
    .nav-icon {
      position: relative;
      height: 3rem;
      width: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      cursor: pointer;
      z-index: 1001;
    }
  
    .nav-icon div {
      width: 2.5rem;
      height: 0.3rem;
      background: #eae6f2;
      transition: all 0.3s linear;
      position: relative;
      transform-origin: 1px;
    }
  
    .overlay {
      height: 0%;
      width: 100%;
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
      background-color: #366d9d;
      overflow-y: hidden;
      transition: 0.5s;
    }
  
    .overlay-content {
      position: relative;
      top: 25%;
      width: 100%;
      text-align: center;
      margin-top: 30px;
    }
  
    .overlay-content a {
      padding: 8px;
      text-decoration: none;
      font-size: 36px;
      color: white;
      display: block;
      transition: 0.3s;
    }
  }
  .logo img {
    width: 200px;
    height: auto;
    transition: transform 0.1s ease-in-out;
  }
  
  .logo:hover img {
    transform: scale(1.1);
  }
    
.container{
    width: 100%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

form ::placeholder {
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

form {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 2vw 4vw;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
}

form h3{
    color: #4f4b92;
    font-weight: 800;
    margin-bottom: 20px;
}

form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #4f4b92;
    font-size: 16px;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
}
form button {
    padding: 15px;
    background: #4f4b92;
    color: #fff;
    font-size: 18px;
    border: 0;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;
}

.contactus-section {
    display: flex;
    flex-direction: column;
    width: 50%;
    text-align: center;
    justify-content: space-between;
    opacity: 0;
    animation: scaleIn 0.5s ease-in-out forwards;
}
  
@keyframes scaleIn {
    from {
      transform: matrix3d(0);
      opacity: 0;
    }
  
    to {
      transform: scale(1);
      opacity: 1;
    }
}
  
.contactus-section h1 {
    font-size: 50px;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
    color: #4f4b92;
}
  
.contactus-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-self: center;
    width: 60%;
    justify-content: space-evenly;
    gap: 20px;
}

@media all and (min-width: 2000px) {
    .contactus-section {
      width: 60%;
    }
  
    .contactus-container {
      width: 65%;
    }
}
  
@media all and (max-width: 2000px) {
    .contactus-section {
      width: 90%;
    }
  
    .contactus-container {
      width: 65%;
    }
}