.banner {
  padding: 60px 0;
  background: #312d89;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .heading {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.banner .heading span {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
  color: #00c2fa;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.breadcrumb li {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.breadcrumb li::before {
  color: var(--white);
  content: "/";
  position: absolute;
  left: -10px;
}

.breadcrumb li:nth-child(1):before {
  display: none;
}

.breadcrumb li a {
  color: var(--white);
  text-decoration: none;
}

.content-sec {
  padding: 60px 0;
}

.content-sec a {
  color: var(--dark);
  text-decoration: none;
}


@media (max-width: 1200px) {}

@media (max-width: 991px) {}

@media (max-width: 768px) {}