/* Start info  */
.info-box .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.info-box .title span {
  left: 0;
  top: 0%;
  transform: translateY(-50%);
  height: 3px;
  width: 50px;
  display: block;
  background-color: #0e80f6;
  background-image: -webkit-linear-gradient(left, #0e80f6, #0ed8f6);
  margin-right: 20px;
}

.info-box .title h2 {
  font-size: 26px;
}

.info-box .info-bullets {
  margin-left: 70px;
}

@media (max-width: 991px) {
  .info-box .title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    margin: 25px 0;
  }

  .info-box .title span {
    width: 150px;
  }

  .info-box .title h2 {
    font-size: 17px;
    text-align: center;
  }

  .info-box ul>li,
  .info-box ul p {
    font-size: 15px !important;
    text-align: justify;
  }

  .info-box .info-bullets {
    margin-left: 0;
  }
}

.info-box .info-bullets>li {
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

.info-box .info-bullets>li::before {
  content: "\f101";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #000;
  font-size: 15px;
}

/* End info  */

/* Start Standards  */
.standards .title h2 {
  font-size: 70px;
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  position: relative;
  color: #555;
  width: fit-content;
  margin: auto;
}

@media (max-width: 991px) {
  .standards .title h2 {
    font-size: 50px;
    font-weight: bold;
  }
}

.standards .title h2::before {
  content: "";
  position: absolute;
  height: 7px;
  width: 100%;
  top: -8px;
  left: 0;
  background-color: #555;
}

.standards .box {
  transition: 0.5s;
}

.standards .box:hover {
  transform: scale(1.03) translateY(-7px);
}

.standards .box .img-box {
  width: 100%;
  height: 100%;
}

.standards .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.standards .box .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.standards .box:hover .content {
  opacity: 1;
}

.standards .box .content span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.standards .box .content a {
  display: block;
  padding: 15px 20px;
  width: 60%;
  text-align: center;
  height: auto;
  border-radius: 60px;
  background-image: linear-gradient(90deg, #0e80f6 0%, #0ed8f6 50%, #0e80f6);
  z-index: 3;
}

.standards .box .content .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  transition: 0.5s;
  z-index: 1;
}

/* End Standards  */

/* Start programs and certifications */
.title-label {
  background-color: #0e80f6;
  padding: 10px 20px;
  color: #fff;
  border-radius: 30px;
}

.programCard {
  position: relative;
  width: 100%;
  height: 300px;
  perspective: 1500px;
  /* cursor: pointer; */
}



.programCard .front,
.programCard .back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  transition: transform 0.8s ease;
  border-radius: 8px;
  box-shadow: 0px 0px 6px 3px rgb(178 178 178 / 37%)
}


.programCard .front {
  background: #000;
  height: 100%;
}

.programCard .front .overlay {
  opacity: .6;
}

.programCard .back {
  background: #0062d3;
  color: #fff;
  transform: rotateY(180deg);
}

.programCard:hover .front {
  transform: rotateY(180deg);
}

.programCard:hover .back {
  transform: rotateY(360deg);
}

.programCard .front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.section-img {
  top: 100px;
}

.ISO-List>li {

  transition: .3s ease;
  width: fit-content;
}

.ISO-List>li:hover {
  transform: translateX(10px);
}

.ISO-List>li:hover::before,
.ISO-List>li:hover a {
  color: #0062d3 !important;
}

/* End programs and certifications */