
    section.map {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    section.map img {
        width: 80%;
        border-radius: 20px;
    }

    section.map h2 {
        color: white;
        position: absolute;
        font-size: 37px;
        top: 25%;
    }

    section.map p {
        text-align: center;
        width: 40%;
        color: white;
        position: absolute;
        font-size: 16px;
        top: 50%;
        font-weight: 100;

    }

    .all-btn-map {
        font: 18px;
        letter-spacing: 0px;
        color: black;
        background-color: #fff;
        cursor: pointer;
        background: #FFFFFF 0% 0% no-repeat padding-box;
        border: 1px solid #FF8400;
        border-radius: 100px;
        opacity: 1;
        overflow: hidden;
        position: absolute;
        bottom: 15%;
        right: 45%;
        width: 204px;
height: 32px;
    }
    
    .all-btn-map:hover {
        border-color: transparent;
        animation: button-title 0.5s forwards;
    }
    
    @keyframes button-title {
        0% {
            color: transparent;
        }
    
        100% {
            color: #fff;
        }
    }
    
    .all-btn-map::before {
        background: #FF8400;
        content: "";
        inset: 0;
        position: absolute;
        transform: translateX(var(--progress, -100%));
        transition: transform 0.2s ease;
    }
    
    .all-btn-map:hover::before {
        --progress: 0;
    }
    
    .all-btn-map span {
        position: absolute;
        top: 5%;
        right: 20%;
    }
