@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;600&display=swap');


/* POPUP */

#custom-popup{

position:fixed;

top:50%;
left:50%;

transform:translate(-50%,-50%);

width:900px;

max-width:90vw;

border-radius:35px;

overflow:hidden;

z-index:99999;

background:transparent;

}


/* OVERLAY */

#popup-overlay{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.45);

backdrop-filter:blur(4px);

z-index:99998;

}


/* IMAGE */

.popup-right{

position:relative;

}

.popup-right img{

width:100%;

display:block;

border-radius:35px;

}


/* LEFT CONTENT */

.popup-left{

position:absolute;

top:50%;

left:75px;

transform:translateY(-50%);

z-index:5;

width:280px;

display:flex;

flex-direction:column;

align-items:flex-start;

}


/* TEXTS */

.popup-texts{

display:flex;

flex-direction:column;

gap:18px;

margin-bottom:35px;

}


.popup-texts p{

margin:0;

font-size:35px;

line-height:1.05;

font-family:
"Playfair Display",
serif;

font-weight:700;

color:#119B3C;

letter-spacing:-1px;

}


/* BUTTON */

#popup-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

width:210px;

height:56px;

background:#0FA53B;

border-radius:999px;

text-decoration:none;

color:#fff;

font-family:"Poppins",sans-serif;

font-size:16px;

font-weight:500;

transition:.3s ease;

box-shadow:
0 10px 25px rgba(0,0,0,.12);

}


#popup-btn:hover{

transform:translateY(-2px);

background:#0B8B31;

}


#popup-btn svg{

width:18px;

height:18px;

}


/* CLOSE */

#close-popup{

position:absolute;

top:25px;

right:25px;

width:54px;

height:54px;

display:flex;

align-items:center;

justify-content:center;

background:white;

border-radius:50%;

font-size:30px;

cursor:pointer;

z-index:20;

transition:.3s;

}


#close-popup:hover{

transform:rotate(90deg);

}



/* MOBILE */

@media(max-width:768px){

#custom-popup{

width:320px;

border-radius:28px;

}


.popup-right img{

width:100%;

border-radius:28px;

}


.popup-left{

position:absolute;

top:50%;

left:35px;

transform:translateY(-50%);

z-index:5;

width:280px;

display:flex;

flex-direction:column;

align-items:flex-start;

}


.popup-texts{

display:flex;

flex-direction:column;

gap:22px;

margin-bottom:38px;

}


.popup-texts p{

margin:0;

font-size:15px;

line-height:1.08;

font-family:
"Playfair Display",
serif;

font-weight:700;

color:#0FA53B;

letter-spacing:-1px;

}


/* BUTTON */

#popup-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

width:50px;

height:35px;

background:#0FA53B;

border-radius:999px;

text-decoration:none;

color:#fff;

font-family:"Poppins",sans-serif;

font-size:16px;

font-weight:500;

transition:.3s ease;

}


#popup-btn:hover{

transform:translateY(-2px);

background:#0B8B31;

}


#close-popup{

top:12px;

right:12px;

width:36px;

height:36px;

font-size:18px;

}

}