/* CSS Document */

/* Page Banner */

.page-banner{

background:linear-gradient(rgba(13,110,253,.80),
rgba(25,135,84,.80)),
url('../images/contact_banner.jpg');

background-size:cover;
background-position:center;

padding:100px 0;

}

/* Card */

.card{

border-radius:15px;
transition:.4s;

}

.card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.15);

}

/* Form */

.form-control{

border-radius:10px;
padding:12px;

}

textarea{

resize:none;

}

/* Buttons */

.btn{

border-radius:30px;

}

/* WhatsApp */

.whatsapp{

position:fixed;

right:20px;

bottom:20px;

width:60px;

height:60px;

background:#25D366;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

text-decoration:none;

box-shadow:0 5px 15px rgba(0,0,0,.30);

z-index:9999;

transition:.3s;

}

.whatsapp:hover{

transform:scale(1.10);

color:#fff;

}