/* BUTTON TELEFON */

.button-tel {
    background-color: #0057fa; 
    border-radius: 100px;
    color: #ffffff;
    padding: 30px 30px;
    text-align: center;
    display: flex;
    font-weight: 800;
    font-size: 18px;
    width: 60px;
    height: 60px;
    margin: 0px 0px;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
    background-image: url('../img/tel.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
}

a.button-tel {
    transition: all 500ms;
}

a.button-tel:hover {
    background-color: #4898ff;
    padding: 30px 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

/* BUTTON EMAIL */

.button-mail {
    background-color: #0057fa; 
    border-radius: 100px;
    color: #ffffff;
    padding: 30px 30px;
    text-align: center;
    display: flex;
    font-weight: 800;
    font-size: 18px;
    width: 60px;
    height: 60px;
    margin: 0px 0px;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
    background-image: url('../img/mail.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
}

a.button-mail {
    transition: all 500ms;
}

a.button-mail:hover {
    background-color: #4898ff;
    padding: 30px 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

/* BUTTON TOP */

.button2 {
    background-color: #04c40e; 
    border-radius: 30px;
    color: #ffffff;
    padding: 10px 10px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    width: 200px;
    height: 50px;
    margin: 4px 2px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

a.button2 {
    transition: all 500ms;
}

a.button2:hover {
    background-color: #4898ff;
    padding: 10px 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}


/* BUTTON SLUŽBY */

.button3 {
    background-color: #0a70f7; 
    border-radius: 30px;
    color: #ffffff;
    padding: 8px 10px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    width: 120px;
    height: 40px;
    margin: 4px 2px;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
}

a.button3 {
    transition: all 500ms;
}

a.button3:hover {
    background-color: #340fb9;
    padding: 8px 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}