/* Top menu */
.top-menu-container {
  display: flex;
  position: fixed;
  top: 90px;
  z-index: 9;
  background-color: #fff;
  width: 100%;
  height: 380px;
  justify-content: space-between;
  padding: 0px 30px;
  padding-top: 48px;
  left: 0;
}
.top-menu-list-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 55%;
}
.top-menu-wrap {
  display: flex;
  justify-content: space-between;
}
.top-menu-list-section p {
  font-size: 14px;
  line-height: 31px;
  color: #5a5a5a;
  margin-bottom: 33px;
}
.top-menu-list-section p label {
  color: #000000;
}
.top-menu-list li {
  display: block !important;
  margin-right: 0px !important;
  padding: 0px 0px !important;
}
.top-menu-list li h5 {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  line-height: 31px;
  margin-bottom: 20px;
}
.top-menu-list li a {
  color: #5a5a5a !important;
  font-size: 14px !important;
  line-height: 29px !important;
  padding: initial !important;
  cursor: pointer;
  font-weight: 500 !important;
}

.top-menu-img-wrap {
  flex-basis: 30%;
  margin-left: 150px;
}
.top-menu-img {
  height: 332px;
}
.top-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-menu-mob {
  display: none;
}
.top-menu-web {
  transition: 0.5s ease;
}
/* Responsive */
@media only screen and (max-width: 1250px) {
  .top-menu-wrap {
    flex-basis: 70%;
  }
  .top-menu-img-wrap {
    flex-basis: 30%;
    margin-left: 30px;
  }
  .top-menu-web {
    display: none;
  }
  /* Top menu mob */
  .top-menu-mob {
    width: 100%;
    padding: 0px 16px;
    height: calc(100vh - 60px);
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    z-index: 99;
    top: 60px;
    transform: translateY(-100vh);
    -webkit-transition: transform 0.5s ease;
    /* height: 0; */
  }
  .top-menu-mob.active {
    transform: translateY(0);
    /* height: 100px;   */
  }
  .top-menu-heading-mob {
    border-bottom: 1px solid #d6d6d6;
    padding-bottom: 18px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .top-menu-heading-mob h5 {
    color: #000000;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
  }
  .top-menu-heading-mob span {
    width: 14px;
    transform: rotate(180deg);
  }
  .top-menu-heading-mob span img {
    width: 100%;
  }
  .top-menu-mob-conatiner {
    height: 70vh;
    overflow: auto;
    padding-bottom: 50px;
  }
  .top-menu-list {
    padding-top: 14px;
  }
  .top-menu-list li a {
    font-size: 16px !important;
  }
  /* Top menu History */
  .top-menu-history {
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 18px 16px;
    left: 0;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
  }
  .top-menu-history a {
    display: flex;
    align-items: center;
    color: #5a5a5a;
  }
  .top-menu-history a span {
    width: 10px;
    transform: rotate(90deg);
  }
  .top-menu-history a span img {
    width: 100%;
  }
  .top-menu-history a label {
    padding-left: 10px;
    color: #5a5a5a;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }
  .top-menu-history p {
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    width: 179px;
    text-align: end;
  }
  .mob-first-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .mob-first-menu-list li a {
    font-size: 18px;
    line-height: 19px;
    font-weight: 500;
    color: #000000;
    padding-bottom: 20px;
    display: flex;
  }
  .mob-first-menu-list li a span {
    margin-left: 10px;
    width: 14px;
    transform: rotate(270deg);
  }
  .mob-first-menu-list li a span img {
    width: 100%;
  }
  .top-menu-heading-mob span {
    transform: rotate(0deg);
  }
  .top-menu-heading-mob[aria-expanded='true'] span {
    transform: rotate(-180deg);
  }
  .top-menu-heading-mob[data-toggle='collapse'].collapsed span {
    transform: rotate(360deg);
  }
}
