body{

  overflow-x:hidden;
}

/* ================= STACK CONTAINER ================= */

.stack-container{
  width:100%;
  position:relative;
}

/* ================= CARD STYLE ================= */
span.west{
    font-size: 19px!important;
    letter-spacing: 1px!important;
	color:#fff!important;
}
.omala-project{
  position:relative;
  height:650px;
  width:90%;
  margin:0 auto;
  border-radius:30px;
  overflow:hidden;
  display:flex;
  align-items:center;
  padding:0 6%;
  background:#0e3f75;
  box-shadow:0 40px 100px rgba(0,0,0,0.2);
  color:#fff;
}

/* second card overlap */
.omala-project:nth-child(2){
  margin-top:-650px;
  z-index:2;
}

/* ================= IMAGE ================= */

.image-wrapper{
  position:absolute;
  right:0;
  bottom:0;
  height:100%;
  display:flex;
  align-items:center;
  z-index:1;
}

.image-wrapper img{
  height:100%;
  width:auto;
  object-fit:contain;
  transform:scale(1.05);
}

/* ================= OVERLAY ================= */

.omala-overlay{
  position:absolute;
  inset:0;
	background: linear-gradient(90deg, rgb(54 54 54 / 95%) 0%, rgb(54 54 54 / 75%) 17%, rgba(14, 63, 117, 0.2) 49%);
/*   background:linear-gradient(
    90deg,
    rgba(14,63,117,0.95) 0%,
    rgba(14,63,117,0.75) 40%,
    rgba(14,63,117,0.2) 70%
  ); */
  z-index:2;
}

/* ================= CONTENT ================= */

.omala-content{
  position:relative;
  z-index:3;
  max-width:550px;
}

.omala-content span{
  font-size:13px;
  letter-spacing:4px;
  color:#FFD54F;
}

.omala-content h2{
  font-size:36px;
  margin:20px 0;
  position:relative;
	color:#fff;
}

/* Gold animated underline */
.omala-content h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0%;
  height:3px;
  background:#FFD54F;
  transition:0.6s ease;
}

.omala-project.active h2::after{
  width:120px;
}

.omala-content p{
  font-size:16px;
  line-height:1.8;
  margin:30px 0;
  color:#e3f2fd;
}

.omala-content a{
  display:inline-block;
  padding:14px 35px;
  background:#FFD54F;
  color:#0e3f75;
  text-decoration:none;
  border-radius:50px;
  font-weight:600;
  transition:0.3s;
}

.omala-content a:hover{
  background:#ffffff;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .omala-project{
    height:550px;
  }
  .omala-content h2{
    font-size: 25px;
        line-height: 31px;
  }
}
@media(max-width:768px){
  .omala-project{
    flex-direction:column;
    padding:40px;
    height:auto;
  }
  .image-wrapper{
    position:relative;
    height:300px;
    width:100%;
    justify-content:center;
  }
  .image-wrapper img{
    height:auto;
    width:100%;
  }
  .omala-overlay{
    background:rgb(14 63 117 / 0%);
  }
.omala-content p {
    font-size: 15px;
    margin: 18px 0;
}	
}