.service-popup-1 {
    position: fixed;
    z-index: 3;
    width: 60%;
    margin: auto;
    left: 0;
    right: 0;
    top: 130px;
    background-color: #ffffff;
    padding: 32px;
    background: #ffffff;
    border: 1px solid rgba(3, 13, 32, 0.1);
    border-radius: 20px;
    transition-timing-function: ease;
    transition-duration: 0.65s;
    transition-delay: 0.0575342s;
    opacity: 0;
    transform: scale(0.1);
}

.flex-pop {
    display: flex;
    justify-content: space-between;
}

.flex-pop-txt {
    display: flex;
    gap: 24px;
    text-align: center;
    justify-content: center;
}

#popup-txt li {
    list-style: disc;
}

.service-popup-1 a {
    color: #fff;
    padding: 12px;
    background: #dc3545;
    border-radius: 10px;
}

.cut-icon {
    font-size: 37px;
    color: gray;
    width: 50px;
    cursor: pointer;
    margin-top: -12px;
}

.popup-txt-service {
    margin-top: 15px;
}

.flex-pop-txt div {
    text-align: center;
    align-items: center;
    margin: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-transform: capitalize;
    color: #030d20;
    /* margin-left: 20px; */
}

@media only screen and (max-width: 777px) {
    .service-popup-1 {
        width: 90%;
        top: 70px;
        overflow: scroll;
        height: 80vh;
        overflow-y: auto;
        padding: 20px;
    }
}