/* Start custom CSS for html, class: .elementor-element-f0a534f */.popup-template{
    width:900px;
    max-width:100%;
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    display:flex;
    box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

/* IMAGE SIDE */

.popup-template .popup-image{
    width:50%;
}

.popup-template .popup-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* CONTENT SIDE */

.popup-template .popup-content{
    width:50%;
    padding:50px 45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.popup-template .tag{
    display:inline-block;
    background:#f1f1f1;
    color:#111;
    font-size:13px;
    font-weight:600;
    padding:8px 16px;
    border-radius:50px;
    margin-bottom:20px;
    width:fit-content;
    letter-spacing:1px;
}

.popup-template h2{
    font-size:36px;
    color:#111;
    line-height:1.2;
    margin-bottom:20px;
}

.popup-template p{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.popup-template .popup-btn{
    display:inline-block;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:8px;
    transition:0.3s;
    width:fit-content;
    font-weight:600;
}

.popup-template .popup-btn:hover{
    background:#444;
}

/* MOBILE */

@media(max-width:768px){

    .popup-template{
        flex-direction:column;
    }

    .popup-template .popup-image,
    .popup-template .popup-content{
        width:100%;
    }

    .popup-template .popup-image{
        height:280px;
    }

    .popup-template .popup-content{
        padding:35px 25px;
    }

    .popup-template h2{
        font-size:30px;
    }
}/* End custom CSS */