.phone-number {
    filter: brightness(0);
    color: #38f325;
    transition: 1s;
    text-decoration: none;
}

.phone-number:hover {
    filter: brightness(1);
    transition: 1s;
    cursor: pointer;
}

.phone-icon {
    width: 20px;
}

.address-section{
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}
.line-qr {
    width: 50%;
}

.maps {
    height: 500px;
}
.footer-section {
    background: white;
    height: 40px;
    text-align: center;
}

.copyrights{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.privacy-button{
    text-decoration: none;
    color: black;
    margin-left: 30px;
}

@media only screen and (max-width: 500px) {
    .address-section {
        flex-direction: column-reverse;
    }
    .line-qr {
        margin-bottom: 40px;
    }
    
    .address {
        padding: 0 25px;
    }
    .copyrights {
        flex-direction: column-reverse;
        font-size: 12px;
        padding-top: 10px;
    }
}