
.pop-cant-sctn {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;    
}

.pop-cant-lftsctn {
    width: 40%;    
} 

.pop-cant-rgtsctn {
    width: 50%;
    padding-left: 10%;      
} 

.logo-heading {
    width: 100%;
    display: flex;
    flex-wrap: nowrap; 
}

.cont-img {
    margin-right:20px;
}

.cont-head {
    text-align: left;
}

/* ------------------------------------------------------------------------------------- */

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    opacity: 0;
    visibility: hidden;
    transform: rotateY(180deg);
    transition: 0.6s;
	transform-style: preserve-3d; 
    /* transform: scale(1.1); */
    /* transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s; */
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    background-color: #ebebeb;
    padding: 5rem 5rem;
    width: 96rem;
    border-radius: 0rem;
    border: 1px solid #c7c7c7;
    
}

.close-button {
    float: left;
    width: 3.5rem;
    font-size: 4rem;
    line-height: 3.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    margin-top: -5rem;
    margin-left: -5rem;
    background-color: #333333;

    
}

.close-button:hover {
    background-color: #0c9ed9;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg);
    /* transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s; */
}
