/* Body */

html {
    font-size: 16px;
}

body {
    font-family: sans-serif;
}

a, a:hover, a:focus, a:visited {
    text-decoration:none;
}

/* Textos */

h3 {
    color: #264BA8;
}

/* Header */

header {
    border-bottom:1px solid #ccc;
    margin: 1rem 0;
}

/* Contenido */

.zona {
    border-radius: 2rem;
    color: white;
    margin-bottom: 1rem;
    opacity: .85;
    padding:1rem 0;
}

.zona1 {
    background-color: #666666;
}

.zona h3 {
    color:inherit;
}

.zona h6 {
    margin-bottom: 1rem;
}

/* Buttons */

.btn-large {
    border-radius: 3rem !important;
    box-shadow: none;
}

.zona .btn-large {
    background-color: white !important;
    color: #264BA8 !important;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    padding:.3rem 0;
    margin: 0 .5rem;
}

.zona .btn-large:hover {
    color:#F7423D !important;
}

.zona .outline {
    background-color: transparent !important;
    border:2px solid white !important;
    color: white !important;
}

.outline svg {
    fill:white;
}

.zona .outline:hover {
    border-color: #F7423D !important;
}

/* Footer */

footer {
    background-color: white;
    border-top:1px solid #ccc;
    bottom: 0;
    margin:2rem 0 0;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
}

/* Responsive */

@media screen and (max-width:990px) {
    .container {
        width: 100% !important;
    }
    .btn-large {
        margin-bottom: 1rem;
    }
}