.card_bx_container1{
    position: relative;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    
}
.card_bx_container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card_bx{
    position: relative;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 40px;
    border-radius:20px;
    background-color: var(--orphichub-black);
    transition: 0.5s;
    height:100%;
    margin:20px 0px;
}
.card_bx:hover{
    background-color:var(--orphichub-base);
    color: var(--orphichub-black);
    box-shadow:25px 25px 75px rgba(0,0,0,0.25),
                10px 10px 70px rgba(0,0,0,0.25),
                inset 5px 5px 20px rgba(255,255,255,0.25), 
                inset -5px -5px 15px rgba(0,0,0,0.75);
    transform:translateY(-20px);
}

.card_bx .box{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.card_bx .box .icon{
    position: relative;
    width:80px;
    height:80px;
    /* background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);;
    border-radius:50%; */
    display:flex;
    justify-content: center;
    align-items:center;
    text-align:center;
    color:#fff;
}
/* .card_bx:hover .box .icon{
    background-color:var(--orphichub-black);
} */
 .card_bx .box .icon img{
    height:100px;
    margin-bottom:25px;
 }
.card_bx .content{
    margin-top:20px;
}

.card_bx .content h2{
    color:#fff;
    font-size:1.25rem;
    text-transform:uppercase;
}
.card_bx .content p{
    margin-top:10px;
    color:#fff;
    font-size:1.25rem;
    font-weight:500;
    
}
.card_bx:hover .content h2{
  color:var(--orphichub-black);
}
.card_bx:hover .content p{
  color:var(--orphichub-black);
}
/* ------------ Real Estate Services Card ------------*/

 .card__Box {
    position: relative;
    border-radius: 10px;
}

 .card__Box .icon {
    position: relative;
    width:80px;
    height:80px;
    background: linear-gradient(270deg, #5CB0E9 0%, #3D72FC 100%);;
    border-radius:50%;
    display:flex;
    justify-content: center;
    align-items:center;
    text-align:center;
    color:#fff;
}

 .card__Box:nth-child(1) .icon {
    background: linear-gradient(270deg, #FA5674 0%, #6065D4 100%);
}

 .card__Box:nth-child(2) .icon {
    background: #6eadd4;
}

 .card__Box:nth-child(3) .icon {
    background: #4aada9;
}


 .card__Box .face {
    width: 300px;
    height: 200px;
    transition: 0.5s;
}

 .card__Box .face.face1 {
    position: relative;
    background: var(--orphichub-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
}

 .card__Box:hover .face.face1{
    background: #ff0057;
    transform: translateY(0px);
}

 .card__Box .face.face1 .content {
    opacity: 1;
    transition: 0.5s;
}

 .card__Box:hover .face.face1 .content {
    opacity: 1;
}

 .card__Box .face.face1 .content i{
    max-width: 100px;
}

 .card__Box .face.face2 {
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: translateY(-100px);
}

 .card__Box:hover .face.face2{
    transform: translateY(0);
}

 .card__Box .face.face2 .content p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #414141;
}

 .card__Box .face.face2 .content h3 {
    margin: 0 0 10px 0;
    padding: 0;
    color: #fff;
    font-size: 24px;
    text-align: center;
    color: #414141;
} 