.Content-section {
  background: #ffffff;
  padding: 50px 0px !important;
}
.Content-section .contaner-section {
  display: flex;
  gap: 12px;
}
.Content-section .left-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px !important;
}
.Content-section .desktop-only {
  display: block;
}
.Content-section .mobile-only {
  display: none;
}
.Content-section .sidebar-block {
  margin-bottom: 20px;
}

.custom-close-btn {
  background: #09558f;
  color: #fff;
  border: none;
  font-size: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}
.custom-close-btn:hover {
  background: #073f6b;
}

@media (max-width: 991px) {
  .Content-section .desktop-only {
    display: none;
  }
  .Content-section .mobile-top-bar {
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
  }
  .Content-section {
    padding: 20px 0px !important;
  }
  .Content-section .mobile-top-bar .mobile-btn {
    background: #09558f;
    border: none;
    font-size: 14px;
  }
  .Content-section .mobile-only {
    display: block;
  }
  .Content-section .contaner-section {
    flex-direction: column;
    padding: 6px;
  }

  .Content-section .left-sidebar {
    order: 2;
    width: 100%;
  }
  .Content-section .col-lg-9 {
    order: 1;
    width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 575.98px) {
  .Content-section .mobile-top-bar {
    padding: 0 3px;
  }
  .Content-section .contaner-section {
    gap: 5px;
  }
  .Content-section .mobile-bottom-section {
    margin: 0 6px;
  }
}
