/*Editor Settings*/

#editor .wp-block-acf-sjm-blocks-section .acf-block-body{
	width: 100%;
}

#editor .wp-block-acf-sjm-blocks-section{
    max-width: 1600px;
}

/*Styling for text area*/

.sjm-multi-block{
    max-width: 2300px;
    padding: 100px 50px 100px 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-image: url("https://garyb79.sg-host.com/wp-content/uploads/2022/05/Union-1.png");
    background-repeat: no-repeat;
    background-position: -150% 50%;
}

.sjm-multi-block .inner-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 75px;
    width: 1122px;
}

.sjm-multi-block .block{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #A3195C;
    color: #fff;
    text-align: center;
}

.sjm-multi-block .block h3{
    padding: 110px 50px 0px 50px;
    font-family: 'Helvetica';
    font-size: 2rem;
    margin-bottom: 0px;
    font-weight: 600;
}

.sjm-multi-block .block p{
    padding: 0 50px 35px 50px;
    color: #ffffff;
    font-family: Helvetica, "Helvetica-Light", Arial, "Lucida Grande", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.7rem;
}

.sjm-multi-block .block .image-wrapper{
    background-color: #C26294;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    height: 150px;
}

.sjm-multi-block .block img{
    position: absolute;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-top: 50px;
}

/*Mobile View*/
@media(max-width: 767px){
    .sjm-multi-block{
        width: 100%;
        padding: 50px 20px;
    }
    .sjm-multi-block .inner-wrapper{
        grid-template-columns: 1fr;
    }
    .sjm-multi-block .block p{
        padding: 0 20px;
    }
    .sjm-multi-block .popup .wrapper{
        width: 100vw;
        height: 100vh;
        overflow-y: scroll;
        overflow-x: hidden;
    }
}

.sjm-multi-block .popup {
	background: rgba(100, 100, 100, 0.6);
	position: fixed;
	display: none;
	z-index: 9999;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.sjm-multi-block .popup .wrapper{
    max-width: 1000px;
    width: 100%;
    display: flex;
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background: #FFFFFF;
    border-radius: 10px;
    color: #000;
    box-shadow: 2px 2px 10px 0px rgba(#000000, 0.4);
}

.sjm-multi-block .popup .col.right{
    padding: 30px;
    width: 100%;
}

.sjm-multi-block .popup #closePopup{
    position: absolute;
    right: 12px;
    top: 10px;
    cursor: pointer;
    font-size: 22px;
}

.sjm-multi-block .popup p{
    font-family: Helvetica, "Helvetica-Light", Arial, "Lucida Grande", sans-serif;
    font-weight: 400;
    font-size: 17px;
    padding: 0px;
    text-align: left;
}

.sjm-multi-block .inner-wrapper .popup img.popupImage{
    width: 100%;
    height: 50%;
}

.sjm-multi-block .block.cpt{
    cursor: pointer;
}