.fd-popup-wrapper {
    position: relative;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .6);
    z-index: 999;
    display: none;
}

.fd-closeBtn {
    position: absolute;
    bottom: 150rem; left: 50%;
    transform: translate(-50%, 0);
    width: 70rem;
    height: 70rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 30rem rgba(0, 0, 0, .2);
    cursor: pointer;
}

.fd-closeBtn img {
    width: 40%;
}

.fd-popup {
    width: 900rem;
    max-height: 70vh;
    padding: 60rem;
    background-color: #fff;
    overflow-y: auto;
}

.fd-p-text h5 {
    color: #222;
    font-size: 40rem;
    margin-bottom: 30rem;
}

.fd-p-text p {
    color: #333;
    font-size: 19rem;
    line-height: 1.6;
}

.fd-p-text ul {
    padding: 40rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 30rem;
    padding-left: 60rem;
    background-color: #f2f2f2;
}

.fd-p-text ul b {
    font-size: 19rem;
    margin-bottom: 10rem;
    margin-left: -20rem;
}

.fd-p-text ul li {
    color: #333;
    font-size: 17rem;
    line-height: 1.6;
    list-style: circle;
}

.fd-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50rem;
}

.fd-box {
    padding: 25rem 40rem;
    color: #222;
    font-size: 30rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 7rem;
    box-shadow: 0 15rem 50rem 0 rgba(80, 86, 131, .2);
    transition: all .3s;
    white-space: nowrap;
    cursor: pointer;
}
.fd-box i {
    color: #ccc;
    font-weight: lighter;
    transition: all .3s;
}
.fd-box:hover {
    box-shadow: 0 15rem 10rem 0 rgba(80, 86, 131, .1);
}
.fd-box:hover i {
    transform: rotate(180deg);
}


/*==================================================*/
@media (max-width: 1050px) {
    .fd-popup {
        width: 90%;
    }
}


@media (max-width: 768px) {
    .fd-popup {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
    }

    .fd-closeBtn {
        bottom: 15%;
        box-shadow: none;
        background-color: #000;
    }

    .fd-closeBtn img {
        filter: invert(100%) sepia(0%) saturate(7495%) hue-rotate(189deg) brightness(103%) contrast(102%);
    }

    .fd-box-wrapper {
        gap: 30rem;
    }
    
    .fd-box {
        padding: 15rem 20rem;
        font-size: 20rem;
    }
}


@media (max-width: 550px) {
    .fd-popup {
        padding: 60rem;
    }
    
    .fd-p-text ul b {
        font-size: 28rem;
        margin-bottom: 20rem;
    }
    
    .fd-p-text p,
    .fd-p-text ul li {
        font-size: 24rem;
    }

    .fd-box-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .fd-box {
        padding: 25rem 30rem;
        font-size: 28rem;
    }
}