
.contact_popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 27rem;
    max-width: 89vw;
    /* max-height: 25rem; */
    background-color: #ffffff;
    border-radius: 7px;
    /* box-shadow: 0 0 20px 1px var(--clr2); */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(153, 194, 241);
    /* transform: scale(0); */
    opacity: 0; /* Fully transparent */
    transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transition */
    z-index: 1000;
}
.contact_popup.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1; 
}
  


  






.line1{
    font-size: 1.4rem;
    padding: 1.2rem;
    color: rgb(138, 138, 138);
    text-align: center;
}
.line2{
    padding: 2.1rem 0rem 1rem 2rem;
    font-size: 1.3rem;
    color: #1681fc;
    background:none;
    border: none;
    
}
.item_box_wrapper{
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    margin-top: 2rem;
    padding-bottom: 1.7rem;
    margin: auto;
    
}
.item_box{
    width: 22rem;
    max-width: 85%;
    border: 1px solid rgb(175, 175, 175);
    margin: auto;
    border-radius: 7px;
    margin-top: 1.2rem;
    display: flex;
    flex-direction: row;
}

.icon i{
    padding: .75rem;
    color: #16d636;
    font-size: 1.32rem;
}

.txt_1{
    padding: .85rem 0rem 0.7rem 0rem;
    font-size: 1.1rem;
    font-weight: 900;
}
.txt_2{
    padding: 0rem 0rem 0.7rem 0rem;
    font-size: 1rem;
    font-weight: 400;
    user-select: text;
}
.txt_2a{
    padding: 0rem 0rem .7rem 0rem;
    font-size: 1rem;
    font-weight: 400;
    user-select: text;
}
.txt_2b{
    padding: 0rem 0rem 0.7rem 0rem;
    font-size: 1rem;
    font-weight: 400;
    user-select: text;
}
.txt_links{
    text-decoration: none;
    color: #000000;
}