

.landing_PopupWrapper {
    position: fixed;
    top: 0;
    left:0;
    right:0;
    bottom:0;
    background-color: rgba(0,0,0,0.8);
    z-index: 10000;
    justify-content:center;
    align-items:center;
    padding: 30px 0;
}
.mobile .landing_PopupWrapper {
    padding: 60px 0;
}

.landing_PopupWrapper.popUp_zoomIn {
    display: flex;
}
.landing_Popup img {
    max-width: 100%;
    object-fit: cover;
}
.for-homepage .landing_Popup {
    position: relative;
    max-width: 1024px;
    width: 100%;
    padding: 5%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.mobile.for-homepage .landing_Popup {
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    padding: 20px;
}

.for-homepage .landing_Popup .text-content {
    background: white;
    width: 50%;
    position: relative;
}
.mobile.for-homepage .landing_Popup .text-content {
    position: unset;
}

.mobile.for-homepage .landing_Popup .text-content,
.mobile.for-homepage .landing_Popup .image-content-wrapper {
    width: 100%;
}

.for-homepage .landing_Popup .text-content-wrapper {
    text-align: center;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.for-homepage .landing_Popup .text-content-wrapper h2,
.for-homepage .landing_Popup .text-content-wrapper p,
.for-homepage .landing_Popup .text-content-wrapper a {
    visibility: visible;
}

.for-homepage .landing_Popup .image-content-wrapper {
    width: 50%;
    min-width: 300px;
    display: flex;
}

.for-homepage .landing_Popup .text-content-wrapper p:last-of-type{
   padding-top:4%;
}

.mobile.for-homepage .landing_Popup .image-content-wrapper {
    position: relative;
}

.imgforPopup {
    max-width:100%;
    display:block;
}

.for-homepage .landing_Popup .text-content-wrapper h2 {
    text-transform: capitalize;
}

.for-homepage .landing_Popup .text-content-wrapper a {
    margin-top: 10px;
}

.for-homepage .landing_Popup .popUp_Close {
    position: absolute;
    top: -40px;
    right: 0px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 100;
    cursor: pointer;
    background: white;
    border: 2px solid white;
    border-radius: 50%;
    color: black;
}
.mobile.for-homepage .landing_Popup .popUp_Close {
    top: 30px;
    right: 30px;
}

.mobile.for-homepage  .landing_Popup .text-content-wrapper p:last-of-type{
  padding-top:10px;
}

@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(0.3,0.3);
    }
    50% {
        transform: scale(1.1,1.1);
    }
    100% {
        transform: scale(1,1);
    }
}
.landing_Popup{
    animation: zoominoutsinglefeatured 1s ease-in-out;
}





