/*--------Color------*/
.amarillo {
    background-color: #FDE665;
}

.marron {
    color: #4B290D;
}

.durazno {
    background-color: #EB6E42;
}

.verdec {
    background-color: #89C846;
}

.verdeo {
    background-color: #2EAB26;
}

.blanco {
    color: #f1f1f1;
}

/*--------Typo------*/
h1,
h2,
h3 {
    color: #282828;
    text-transform: uppercase;
}

h2 {
    background: #CBCBCB;
    height: 2px;
    margin-top: 15px;
    text-align: center;
}

h2 span {
    background: #fff;
    padding: 20px;
    position: relative;
    top: -20px;
    left: 00px;
}

h3 {
    background: #FBD502;
    height: 2px;
    margin-top: 15px;
    text-align: center;
    font-size: 37px !important;
}

h3 span {
    background: #FDE665;
    padding: 20px 20px 40px 20px;
    position: relative;
    top: -20px;
    left: 00px;
}

.title1 {
    /*padding-left: 20px;*/
    font-size: 65px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
}

.titlec {
    font-size: 37px;
    margin-bottom: 20px;
    color: #f1f1f1;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
}

.t24 {
    font-size: 24px;
}

.tt24 {
    font-size: 24px;
}

li {
    font-size: 24px !important;
    text-align: left;
}

.apet {
    color: #f1f1f1;
    font-size: 28px;
}

/* ---- responsive ---*/
@media (max-width: 767.98px) {
    .title1 {
        font-size: 46px;
        text-decoration: none;
        font-weight: 800;
        text-transform: uppercase;
    }

    .t24 {
        font-size: 18px;
        padding: 0 10px;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    .apet {
        font-size: 28px;
        text-align: center;
    }

    btn {
        display: block !important;
        width: 50px !important;
    }

    h2 {
        height: 0px;
        margin: 20px 0;
        text-align: center;
    }

    h2 span {
        background: transparent;
        padding: 20px;
        position: relative;
        top: -20px;
        left: 00px;
    }
}

#marron li {
    color: #4B290D !important;
}

#durazno li {
    color: #FF6535 !important;
}

#gris li {
    color: #333 !important;
    list-style: disc;
    padding-bottom: 10px;
}

#blanco li {
    color: #fff !important;
    list-style: disc;
    padding-bottom: 10px;
}

#gris2 li {
    list-style: disc inside;
}

/*---------------------------------*/
.alt80 {
    height: 80vh;
}

/* Setting fade transition and default settings */
body {
    /*color: #000;*/
    background-color: #f4f4f4;
    transition: background-color 1s ease;
}

/* back up button */
#button {
    display: inline-block;
    background-color: #282828;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #333;
}

#button:active {
    background-color: #555;
}

#button.show {
    opacity: 1;
    visibility: visible;
}

/* colours */
.color-amarillo {
    background-color: #FDE665;
}

.color-verdec {
    background-color: #89C846;
}

.color-green {
    background-color: #4DCF42;
}

.color-black {
    background-color: #282828;
}

.color-durazno {
    background-color: #EB6E42;
}

/* --------------LINKS -----------*/
.box a {
    color: #fff;
}

.box a:hover {
    color: #000;
    font-weight: bold;
}

.cb-footer2 a {
    color: #909090;
}

.cb-footer2 a:hover {
    color: #f1f1f1;
}

/* Botones */
.btn {
    background-color: #f1f1f1 !important;
    color: #282828 !important;
    border: 0px !important;
}

.btn:hover {
    background-color: #ED2B31 !important;
}

/*----------------On Hover--*/
.fino {
    overflow: hidden;
}

.fino img {
    width: 100%;

    /*height: 250;*/
    transition: all 0.5s ease-in-out;
}

.fino:hover img {
    transform: scale(1.2, 1.2);
    cursor: pointer;
}