/*** About & Feature ***/
.about-img,
.feature-img {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-img img,
.feature-img img {
  position: absolute;
  width: 60%;
  height: 80%;
  object-fit: cover;
  border-radius: 15px;
}

.about-img img:nth-child(2),
.feature-img img:nth-child(2) {
  margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
  position: absolute;
  content: '';
  width: 60%;
  height: 80%;
  top: 10%;
  left: 20%;
  border: 5px solid var(--primary);
  border-radius: 15px;
  z-index: -1;
}

.about-img .about-img-overlay {
  position: absolute;
  width: 60%;
  height: 80%;
  margin: 20% 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.7);
}
.about-feature h2,
.about-feature h4,
.about-feature h5 {
  font-family: 'Cairo', sans-serif;
}
/*** Features Start ***/
.features .feature-item {
  position: relative;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.features .feature-item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 58, 102, 0.1);
  z-index: -1;
  transition: 0.5s;
}

.features .feature-item:hover::after {
  height: 100%;
}

.features .feature-item .feature-icon {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-light);
  transition: 0.5s;
  color: #011f40;
}

.features .feature-item:hover .feature-icon {
  border-radius: 50%;
  background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
  transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
  color: var(--primary) !important;
  transform: rotate(360deg);
  transition: all 0.5s ease;
}
.features {
  font-family: 'Cairo', sans-serif;
}
.features h5 {
  font-family: 'Cairo', sans-serif;
}
/*** Features End ***/
.page-header,
h1 {
  font-family: 'Cairo', sans-serif;
}
