#bottom {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 45px !important;
    background-position: 50%;
    background-size: 50%;
    font-family: Lato, sans-serif;
}

#bottom .container {
    display: grid;
    grid-template-columns: 100%;
    position: absolute;
    inset: 0 0 0 0;
    background-image: linear-gradient(#383838, #383838);
    color: #fff;
}

#bottom .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#bottom .left .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#bottom .left .logo {
    padding-top: 20px;
    font-family: arista;
    font-size: clamp(0px, 15vw, 70px);
}

#bottom .left .address {
    padding-top: 20px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0px, 4vw, 17px);
    font-weight: 100;
}

#bottom .left .address p {
    margin-top: 5px;
}

#bottom .left .www {
    padding-top: 20px;
    font-size: clamp(0px, 3.5vw, 15px);
}

#bottom .right {
    padding: 5% 20%;
}

#bottom .right .contact {
    margin-top: 3%;
    padding: 5px;
    text-align: center;
    letter-spacing: clamp(0px, .6vw, 2.5px);
    font-size: clamp(0px, 4vw, 17px);
}

#bottom .right a {
    text-decoration: none;
}

#bottom .right .f_button {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(2, 80px);
    grid-template-areas:
        "goZap goInsta goFace"
        "goEmail waze maps";
    gap: 10px;

    margin-top: 10px;
    justify-content: center;
    align-items: center;
}

#bottom .right .button {
    width: 100%;
    height: 100%;
}

#bottom .right .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid #ffffff2c;
    border-radius: 10px;
    cursor: pointer;
}

#bottom .right .content i {
    font-size: 30px;
    color: #fff;
}

#bottom .right .content p {
    margin-top: 10px;
    font-size: 12px;
    color: #fff;
}

#bottom .right .goZap {
    grid-area: goZap;
}

#bottom .right .goInsta {
    grid-area: goInsta;
}

#bottom .right .goFace {
    grid-area: goFace;
}

#bottom .right .goEmail {
    grid-area: goEmail;
}

#bottom .right .waze {
    grid-area: waze;
}

#bottom .right .maps {
    grid-area: maps;
}

#bottom .right .phone {
    grid-area: phone;
    display: none;
}


@media (max-width: 350px) {
    #bottom .right .f_button {
        grid-template-columns: repeat(3, 90px);
        grid-template-rows: repeat(2, 70px);
    }

    #bottom .right .content i {
        font-size: 25px;
    }
}