@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat;
}

.logo {
  width: 120px;
}

.nav-text {
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  color: #333333;

}
.nav li {
 
  margin-right: 24px;
}
.container-fluid .hero-img {
  padding: 0 5%;
  padding-top: 120px;
  padding-bottom: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("./imgs/1.jpeg");
  background-image: linear-gradient(
      to left,
      rgba(0, 0, 255, 0),
      rgba(20, 142, 213, 0.504)
    ),
    url("./imgs/1.jpeg");
  border-bottom-left-radius: 150% 7%;
  border-bottom-right-radius: 150% 7%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-fluid .hero-text {
  width: 70%;
  transform: translateY(50%);
  /* background-color: red; */
}
.container-fluid .hero-text p{
    color: white;
    border-bottom: 1px solid#08b337;
    width: max-content;
  }

.container-fluid .hero-text h5 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  font-weight: 700;
}

.container-fluid .hero-text h1 {
  color: rgb(255, 255, 255);
  width: 50%;
  font-size: 40px;
  font-weight: 700;
}

.bgr-img {
  background-size: 12%;
  background-repeat: no-repeat;
  background-image: url("imgs/3.png");
}

.about-us {
  /* background-color: green; */
  padding: 0 7%;
  padding-top: 50px;
  padding-bottom: 80px;
  /* height: 35vh; */
}

.about-us .about-img h1 {
  color: #148fd5;
  font-size: 39px;
  font-weight:200;
}

.about-us .about-text p {
  font-size: 14px;
  color: #666666;
  font-weight:500;
}

.datatable-con {
  width: 100%;
  padding: 5px 5%;
  /* background-color: lightcoral; */
}

.datatable-con h1 {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
  color: #08b337;
}

.table-info {
  display: flex;
  justify-content: space-between;
  padding: 5px 5%;
  align-items: center;
}

.table-info .info {
  padding: 15px;
}

.table-info .info p {
  font-size: 13px;
  font-weight: 600;
}

.table-info .info input {
  padding: 7px 17px;
  border: none;
  box-shadow: 0 0 5px black;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
}

.table-info .info span {
  font-weight: 700;
  font-size: 18px;
}

.func-table {
  padding: 5px 5%;
}

.pagination {
  display: flex;
  margin: 30px 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  cursor: pointer;
}

.left {
  justify-content: flex-start;
}

.right {
  justify-content: flex-end;
}

.pages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.number {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.number.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}
  

footer {
  /* background-color: #148fd5; */
  /* clip-path: polygon(50% 85%, 100% 80%, 100% 100%, 0 100%, 0 80%); */
}

.f_img {
  background-image: url("imgs/footer.png");
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%); */
  height: 47vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #148fd5;
  margin-bottom: -45px;
}
.f_text {
  display: flex;
  justify-content: space-around;
  color: white;
  /*text-transform: uppercase;*/
  word-spacing: 3px;
  font-family: "Montserrat";
  background-color: #148fd5;
  height: 100px;
  align-items: center;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 43%, 0 0);
}

.f_img {
  margin-bottom: -40px;
}

.f_text {
  /* display: block; */
  /* text-align: center; */
  margin-top: 20px;
  /* margin-bottom: 20px; */
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 20%, 0 0);
}


@media only screend and (max-width:959px) { 

.container-fluid .hero-text {
  width: 30%;
  transform: translateY(50%);
  /* background-color: red; */
}
.container-fluid .hero-text p{
    color: white;
    border-bottom: 1px solid#08b337;
    width: max-content;
  }

.container-fluid .hero-text h5 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  font-weight: 700;
}

.container-fluid .hero-text h1 {
  color: rgb(255, 255, 255);
  width: 50%;
  font-size: 40px;
  font-weight: 700;
}
}
