/* ------------------------------------------------------------eagles start------------------------------------------------------------ */
.section-eagles {
  padding: 75px 0px 50px 0px;
  background-color: rgb(255, 255, 255);
}

.eagles-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.eagles-main-wrapper {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.eagles-value {
  height: 550px;
  border-radius: 20px;
  border: solid 1px rgb(225, 225, 225);
  background-size: cover;
  background-position: 5% center;
  box-shadow: 5px 5px 5px rgba(78, 78, 78, 0.278);
  overflow: hidden;
	position: relative;
}

.eagles-value::before {
  content: '';
  height: 0%;
	width: 100%;
	bottom: 0;
	left: 0;
  background-color: rgb(4, 35, 86);
  border-radius: 350px 350px 0px 0px;
  position: absolute;
	transition: 0.65s;
}

.eagles-value:hover::before {
  height: 100%;
  border-radius: 0px;
}

.eagles-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 60px;
  background-color: rgb(4, 35, 86);
  border-radius: 100%;
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 50px;
  transition: 1.5s;
  img {
    position: absolute;
    height: 40px;
    width: 40px;
    z-index: 2;
  }
}

.eagles-value:hover .eagles-icon {
  background-color: rgb(255, 255, 255);
  img {
    filter: invert(100%);
  }
}

.eagles-text {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 50px;
  h3 {
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    transition: 1.25s;
  }
  p {
    color: rgb(0, 0, 0);
    transition: 1.25s;
  }
  ul {
    color: rgb(0, 0, 0);
    transition: 1.25s;
  }
}

.eagles-value:hover .eagles-text {
  h3 {
    color: rgb(255, 255, 255);
  }
  p {
    color: rgb(255, 255, 255);
  }
  ul {
    color: rgb(255, 255, 255);
  }
}

.eagles-paragraph {
  width: 100%;
  height: 175px;
  position: relative;
}

.eagles-paragraph::before {
  content: '';
  width: 50%;
  height: 1.5px;
  bottom: 15px;
  left: 0;
  background-color: rgb(225, 225, 225);
  position: absolute;
}
/* ------------------------------------------------------------eagles end------------------------------------------------------------ */