/* ------------------------------------------------------------sub banner about start------------------------------------------------------------ */
.sub-banner {
  height: 457.5px;
  background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
  position: relative;
}

.sub-banner::before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(135deg,rgba(8, 21, 44, 0.8) 27.5%, rgba(8, 21, 44, 0.15) 100%);
}

.title-wrapper {
  height: 100px;
  width: 100%;
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translate(-50%, -10%);
  h1 {
    text-align: center;
    font-weight: bold;
    color: rgb(255, 255, 255);
  }
}

.sub-title {
  display: inline-flex;
  text-align: center;
  font-weight: 800;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  a {
    font-family: "Quicksand", sans-serif;
    color: rgb(255, 255, 255);
  }
  p {
    margin-left: 7px;
    margin-bottom: 0;
    color: rgb(255, 255, 255);
  }
}

.marquee-banner {
  text-align: center;
}

.marquee-wrapper {
  background-color: rgb(4, 35, 86);
  padding-top: 9.75px;
  padding-bottom: 9.75px;
}

.marquee-text {
  font-weight: bold;
  color: rgb(255, 255, 255);
  padding-bottom: 10px;
  span {
    color: rgb(209, 0, 0);
  }
}
/* ------------------------------------------------------------sub banner about end------------------------------------------------------------ */

/* ------------------------------------------------------------history start------------------------------------------------------------ */
.section-history {
  padding: 75px 0px 50px 0px;
  background-color: rgb(255, 255, 255);
}

.history-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.history-text-wrapper {
  margin-bottom: 25px;
}

.history-sub-title {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  h3 {
    font-weight: 700;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
  }
}

.history-tab {
  width: 90%;
  background-color: rgb(245, 245, 245);
  border-radius: 15px;
  position: relative;
  margin: 50px 0px 25px 0px;
  padding: 20px 12.5% 20px 20px;
  h2 {
    font-weight: 700;
    color: rgb(150, 150, 150);
    text-transform: uppercase;
  }
  p {
    margin-top: 25px;
  }
}

.history-logo {
  position: absolute;
  top: 40%;
  right: 10px;
  img {
    width: 150px;
    height: auto;
    opacity: 0.5;
  }
}
/* ------------------------------------------------------------history end------------------------------------------------------------ */

/* ------------------------------------------------------------members start------------------------------------------------------------ */
.section-members {
  position: relative;
  background-size: cover;
  padding: 75px 0px 50px 0px;
}

.section-members::before {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0.95) 25%, rgba(255, 255, 255, 0.9) 100%);
}

.members-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.members-text-wrapper {
  margin-bottom: 25px;
}

.members-sub-title {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  h3 {
    font-weight: 700;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
  }
}

.members-main-wrapper {
  margin-top: 40px;
}

.members-slick .slick-slide {
  margin-left: 10px;
  margin-right: 10px;
}

.members-profile {
  height: 550px;
  border-radius: 20px;
  border: solid 1px rgb(225, 225, 225);
  background-color: rgba(255, 255, 255, 0.65);
  overflow: hidden;
	position: relative;
}

.members-profile::before {
  content: '';
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  background-color: rgb(4, 35, 86);
  border-radius: 350px 350px 0px 0px;
  position: absolute;
  transition: 1s;
}

.members-profile:hover::before {
  height: 100%;
  border-radius: 0px;
}

.members-picture {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 350px;
  background-color: rgb(161, 161, 161);
  margin-bottom: 50px;
  transition: 1.5s;
  img {
    position: absolute;
    height: 100px;
    width: 100px;
    z-index: 2;
  }
}

.members-info {
  position: relative;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 50px;
  h3 {
    color: rgb(0, 0, 0);
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: 1.5s;
  }
  p {
    color: rgb(0, 0, 0);
    opacity: 0.75;
    text-transform: uppercase;
    transition: 1.5s;
  }
}

.members-profile:hover .members-info {
  h3 {
    color: rgb(255, 255, 255);
  }
  p {
    color: rgb(255, 255, 255);
  }
}
/* ------------------------------------------------------------members end------------------------------------------------------------ */