h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000e52;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  margin-bottom: 0;
  margin-top: 10px;
  line-height: 1.3;
  font-weight: 700;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  letter-spacing: 0px;
}
h2 {
  font-size: 38px;
}

.dreamit-button {
  position: relative;
}
.dreamit-button a {
  font-size: 18px;
  color: #fff;
  padding: 14px 32px;
  margin-right: 10px;
  border-radius: 5px 20px 5px 20px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  background: #09aff4 !important;
  text-decoration: none;
  transition: ease 0.3s;
}
.dreamit-button a:hover {
  color: #fff;
  background: var(--sesat-blue) !important;
  transition: ease 0.3s;
}
.dreamit-button a:before {
  border-bottom-left-radius: 1rem !important;
  border-top-right-radius: 1rem;
  background: #09aff4 !important;
}
.dreamit-button a i {
  font-size: 10px;
  background: #fff;
  height: 22px;
  width: 22px;
  color: #000;
  line-height: 22px;
  display: inline-block;
  border-radius: 50%;
  font-weight: 600;
  margin-left: 12px;
  text-align: center;
}
.flaticon-right-arrow:before {
  content: "\f105";
}

.navbar-toggler {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 40px;
  outline: none;
  border: none !important;
}
.navbar-toggler-icon {
  background-image: unset !important;
  border: 1px solid #fff;
  height: 1px;
}
.offcanvas-header {
  background-color: var(--footer-bg-blue);
}
.offcanvas-header img {
  height: 50px;
  text-align: center;
}
.offcanvas-body {
  background-color: var(--footer-bg-blue);
}
@media (min-width: 992px) {
  .offcanvas-body {
    background-color: transparent;
  }
}
.btn-close {
  background-color: #fff;
}

.text-blue {
  color: #2f6aff;
}
.text-white {
  color: #fff;
}
.light-gray-bg {
  background-color: #f7f9fb;
}
.z-index-2 {
  z-index: 2;
}

.custom-col {
  flex: 0 0 20%; /* 20% width for each column */
  max-width: 20%; /* Ensure it does not exceed 20% width */
}

@media (max-width: 991px) {
  .custom-col {
    flex: 0 0 33.333%; /* 33.333% width for each column on medium screens */
    max-width: 33.333%;
  }
}

@media (max-width: 767px) {
  .custom-col {
    flex: 0 0 100%; /* Full width for each column on small screens */
    max-width: 100%;
  }
}
