.banner {
  padding: 60px 0;
  background: #312d89;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .heading {
    color: #fff;
  font-size: 35px;
  margin-bottom: 20px;
  text-align: center;
}
.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);
}
.content-sec .smallhead{
    color: var(--blue);
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 1200px) {
}
@media (max-width: 991px) {
}
@media (max-width: 768px) {
}
