@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&display=swap');

::-webkit-scrollbar {
    border-radius: 10px;
    height: 3px;
    width: 3px;
}
  
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
   
::-webkit-scrollbar-thumb {
    background: #888; 
}
  
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-image: url('img/bg.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    user-select: none;
    overflow-x: hidden;
}

html {
    height: -webkit-fill-available;
}

.phone-quick {
    display: none;
}

@media screen and (max-width: 800px) {
    .phone-quick {
        display: flex;
        position: sticky;
        margin: auto;
        padding-bottom: 10px;
    }

    .phone-quick button {
        padding: 2vh 8vw;
        outline: none;
        border: none;
    }

    .phone-quick button a {
        font-size: 18px;
        color: white;
        text-decoration: none;
    }

    .phone-quick #call {
        background-color: #63c858;
        border-radius: 20px 0px 0px 20px;
    }

    .phone-quick #map {
        background-color: #02b494;
    }

    .phone-quick #facebook {
        background-color: #3b5994;
        border-radius: 0px 20px 20px 0px;
    }
}