* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
    outline: none;
}

html, body {
    height: 100%;
    text-align: center;
}

ul {
    list-style: none;
}

.font1, h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}
h1 {
    line-height: 34px;
    font-size: 28px;
    letter-spacing: 4px;

}

.font2, h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
}

h2 {
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 700;
    font-family: quicksand, sans-serif;
    line-height: 22px;
}

.bold {
    font-weight: 700;
}

.cell {
    display: table-cell;
    vertical-align: middle;
}

.animate {
    -webkit-transition: all 0.8s ease; 
    transition: all 0.8s ease ;
}

.tcenter {
    text-align: center;
}

.button {
    display: table;
    width: auto !important;
    padding: 10px 25px;
    border: 1px solid #BA9B48;
    font-weight: 700;
    margin: 0px auto;
    font-size: 14px;
    border-radius: 3px;
    background: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    color: #BA9B48;
}

.button:hover {
    background: #BA9B48;
    color: #fff;
}


.sombra {
    box-shadow: 6px 6px 25px rgba(0,0,0,0.3)
}

.row {
    display: table;
    position: relative;
    text-align: center;
    vertical-align: top;
    width: 98%;
    margin: 0px auto;
    max-width: 1200px;
    vertical-align: top;
}
.col-6, .col-4, .col-3  {
    display: inline-block;
    text-align: left;
    vertical-align: top;
    position: relative;
    z-index: 5;
    padding: 40px 60px;
}

.col-6 {
    width: 49%;
}

.col-4 {
    width: 24%;
}

.col-3 {
    width: 33%;
}


.flutuante {
    position: absolute;
    z-index: 10;
    display: block;
}

.block {
    display: block;
    width: 100%;
    text-align: center;
}

footer {
    background: #1d1d1d;
    display: table;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 100px;
}


footer a { 
    color: #fff;
    margin: 10px;
    font-size: 20px;

}

footer a:last-child::after {
    content: " ";
    display: block;
    clear: both;
    width: 100%;
    margin-bottom: 10px;
}

footer p {
    margin-top: 10px;
}