:root {
  --primary: #5089df;
  --light: #f1f8ff;
}

/*** Section Title ***/

.text-main {
  color: #5089df !important;
}

.bg-main {
    background-color: #5089df !important;
}

.section-title {
  position: relative;
  display: inline-block;
  color: #5089df;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}

