.fBtn-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;
}

.fBtn-closeBtn {
    position: absolute;
    bottom: 110px; 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;
}

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

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

.fp-text {
    display: flex;
    flex-direction: column;
    gap: 30rem;
}

.fpt-title {
    color: #222;
    font-size: 40rem;
    font-weight: 700;
}

.fp-text p,
.fp-text ul li {
    color: #333;
    font-size: 17rem;
    line-height: 1.6;
}

.fp-text ul {
    display: flex;
    flex-direction: column;
    gap: 15rem;
    padding-left: 20rem;
}

.fp-text ul li {
    list-style: circle;
}

.fp-text p b {
    display: block;
    color: #222;
    font-size: 20rem;
    margin-bottom: 10rem;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, #000);
    padding: 120rem 0;
}

.footer-wrapper {
    width: 1300rem;
    display: flex;
    flex-direction: column;
    gap: 90rem;
}

.footer-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 90rem;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.ft-menu {
    display: flex;
    flex-direction: column;
    gap: 15rem;
}

.ft-menu h5 {
    color: #fff;
    font-size: 19rem;
    margin-bottom: 10rem;
}

.ft-menu li {
    color: #ffffffa1;
    font-size: 16rem;
}
.ft-menu li:hover {
    color: #fff;
}

.ft-menu li div {
    cursor: pointer;
}

.fBtn-wrapper {
    display: flex;
    align-items: center;
    gap: 50rem;
}

.fBtn {
    color: #fff;
    font-size: 18rem;
    font-weight: 600;
    cursor: pointer;
}

.footer-mid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.fm-left {
    display: flex;
    gap: 120rem;
}

.logo-f {
    width: 220rem;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 20rem;
    margin-top: -7px;
}

.footer-text p {
    color: #ffffffa1;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0;
}

.footer-text p:last-child {
    color: #ffffff60;
}

.footer-text p a {
    letter-spacing: 0;
}


/*==================================================*/
@media (max-width: 1350px) {
    .footer-wrapper {
        width: 90%;
    }
}


@media (max-width: 1050px) {
    .fBtn-popup {
        width: 90%;
    }
}


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

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

    .fBtn-closeBtn img {
        filter: invert(100%) sepia(0%) saturate(7495%) hue-rotate(189deg) brightness(103%) contrast(102%);
    }
    
    .footer {
        padding: 60rem 20rem;
    }
    
    .footer-top {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 80rem 0;
    }
    
    .fm-left {
        gap: 70rem;
    }

    .logo-f {
        width: 150rem;
    }
    
    .fBtn-wrapper {
        display: none;
    }
}


@media (max-width: 550px) {
    .fBtn-popup {
        padding: 60rem;
    }

    .fp-text p,
    .fp-text ul li {
        font-size: 20rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .ft-menu h5 {
        font-size: 24rem;
    }
    
    .ft-menu li {
        font-size: 20rem;
    }

    .footer-text p,
    .fb-left p {
        font-size: 20rem;
    }

    .fm-left {
        flex-direction: column;
    }

    .logo-f {
        width: 200rem;
    }
}