/* ===== ANIMATION ===== */
.fade__in {
  animation: fadesIn 1s ease 0s 1 normal forwards;
}

@keyframes fadesIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* === LIFERAY_BANNER STYLE === */
.liferay__banner {
  position: relative;
  height: 500px;
  background-image: url("./assests/liferay_banner2.png");
  background-position: center;
  background-size: cover;
}

.liferay__banner .grd__ovl {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(49, 18, 117);
  background: linear-gradient(
    90deg,
    rgba(50, 5, 107, 1) 27%,
    rgba(50, 5, 107, 0) 100%
  );
  opacity: 0.95;
  mix-blend-mode: multiply;
}

.heading__text {
  position: relative;
  z-index: 50;
}

.sub__heading {
  width: 70%;
  margin: 0 auto;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 40px;
}

.solution__section {
  position: relative;
  background: transparent
    linear-gradient(
      19deg,
      var(--unnamed-color-d2237d) 14%,
      var(--unnamed-color-311275) 66%
    )
    0% 0% no-repeat padding-box;
  background: transparent linear-gradient(19deg, #d2237d 14%, #311275 66%) 0% 0%
    no-repeat padding-box;
  opacity: 1;
}

.nav-link {
  color: white;
}
.active {
  color: #50dbe6;
}

/* === LIFERAY BANNER STYLE === */
.recrute__banner {
  height: 500px;
  background-image: url("./assests/recrute_banner.png");
  background-position: left 15%;
  background-size: cover;
  overflow: hidden;
}

.recrute__overlay {
  height: 100%;
  background: rgb(49, 18, 117);
  background: linear-gradient(
    90deg,
    rgba(49, 18, 117, 0) 0%,
    rgba(49, 18, 117, 1) 58%
  );
}

.recrute__banner .icon {
  width: 80px;
  margin: 0 auto;
}

/* === CARD STYLE === */
.card {
  background: transparent;
  height: 300px;
  width: 300px;
  border: none;
}

.row {
  /* gap: 28px; */
}

.card-body img {
  width: 80px;
  margin: 0 auto;
}

.card-title {
  color: #ffffff;
  font-size: 24px;
}

.card-body .line {
  width: 90px;
  border: 1px solid #d2237d;
}

.overlay__popUp {
  display: none;
  position: fixed;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.1;
}

.modal__box {
  position: fixed;
  height: 500px;
  top: 60%;
  left: 50%;
  margin: 0 auto;
  display: none;
  width: 70%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 70px 50px;
  transform: translate(-50%, -50%);
  z-index: 50;
  border-radius: 10px;
}

.modal__box .icon {
  position: absolute;
  width: 40px;
  top: 14px;
  right: 14px;
  color: white;
}

.modal__box button:focus {
  outline: none;
}

.modal-content {
}

.img__box {
  gap: 30px;
}

.img__box img {
  width: 300px;
  margin: 0 auto;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  /* === LIFERAY_BANNER MOBILE STYLE === */
  .liferay__banner {
    height: 300px;
    background-image: url("./assests/liferay_banner2.png");
    background-position: center;
    background-size: cover;
  }

  /* === LIFERAY MOBILE STYLE === */
  .heading_text {
    font-size: 18px;
    margin-top: 20px;
  }

  .sub__heading {
    width: 100%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 40px;
  }

  .modal__box {
    height: max-content;
    width: 90%;
    position: absolute;
    overflow: scroll;
    margin-top: -50vh;
    padding: 40px 30px;
  }

  .modal__box .icon {
    width: 30px;
    color: white;
  }

  .modal-content {
    padding: 0px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .img__box img {
    width: 200px;
    margin: 0 auto;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .img__box img {
    width: 300px;
    margin: 0 auto;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}
