html {
    box-sizing: border-box;
    font-size: 62.5%;
    /*Reset para REMS - 62.5% = 10px de 16px*/
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 2rem;
    text-align: justify;
}


/*Global*/

img {
    max-width: 100%;
}

.contenedor {
    max-width: 120rem;
    /* = 1200px */
    margin: 0 auto;
}

h1 {
    font-size: 3.8rem;
    text-align: center;
}

h2 {
    font-size: 3.4rem;
    text-align: center;
}

h3 {
    font-size: 3rem;
    text-align: center;
}

h4 {
    font-size: 2.6rem;
    text-align: center;
}

p {
    font-size: 2rem
}

p.incisos {
    color: #761805;
    font-weight: bold;
}

p.parrafo {
    margin-top: 15px;
}


/*Utilidades*/

.seccion {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.fw-300 {
    font-weight: 300;
}

.centrar-texto {
    text-align: center;
}

.d-block {
    display: block!important;
}

.contenido-centrado {
    max-width: 80rem;
}

.box-white {
    margin: 0 0 0;
    overflow: hidden;
    padding: 15px;
    background-color: #ffffff;
    text-align: right;
    /*border:1px solid #afcde3;*/
    -webkit-border-radius: 0px;
    border-radius: 0px;
}


/*Alertas*/

.swal2-title {
    font-family: arial;
    font-style: bold;
    color: #000040 !important;
}

.swal2-content {
    color: #000040 !important;
}

button.swal2-confirm.swal2-styled {
    border-left-color: #ff0080 !important;
}

.swal2-styled:hover {
    background-color: #214a5f !important;
}


/*Botones*/

.boton {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.8rem;
    padding: 1rem 3rem;
    margin-top: 3rem;
    display: inline-block;
    text-align: center;
    border: none;
}

.boton:hover {
    cursor: pointer;
}

.boton-amarillo {
    background-color: #e08709;
}

.boton-verde {
    background-color: #71b100;
}

.boton-azul {
    background-color: #154064;
}

.boton-rojo {
    background-color: #610B0B;
}

.boton-gris {
    background-color: #1C1C1C;
}

.boton-admin {
    background-color: rgb(47, 59, 79);
}

.boton-anaranjado {
    background-color: #FF7734;
}
span.boton2 {
    color: white;
}


/*Header*/

.site-header {
    /*background-color: #FE7A03;*/
    background-color: #ed985b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='32' viewBox='0 0 16 32'%3E%3Cg fill='%23fe7a03' fill-opacity='0.4'%3E%3Cpath fill-rule='evenodd' d='M0 24h4v2H0v-2zm0 4h6v2H0v-2zm0-8h2v2H0v-2zM0 0h4v2H0V0zm0 4h2v2H0V4zm16 20h-6v2h6v-2zm0 4H8v2h8v-2zm0-8h-4v2h4v-2zm0-20h-6v2h6V0zm0 4h-4v2h4V4zm-2 12h2v2h-2v-2zm0-8h2v2h-2V8zM2 8h10v2H2V8zm0 8h10v2H2v-2zm-2-4h14v2H0v-2zm4-8h6v2H4V4zm0 16h6v2H4v-2zM6 0h2v2H6V0zm0 24h2v2H6v-2z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 1rem 0 3rem 0;
}

.site-header.inicio {
    background-image: url(../img/header.jpg);
    background-position: center center;
    background-size: cover;
    height: 100vh;
    min-height: 60rem;
    /* = 600px */
}

.contenido-header {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contenido-header h1 {
    color: white;
    padding-bottom: 2rem;
    max-width: 70rem;
    line-height: 5rem;
}

.entrada {
    display: flex;
    justify-content: space-between;
    align-items: right;
    padding-top: 1rem;
    /* = 30px */
}


/*Navegacion*/

.navegacion a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    /* = 18px */
    margin-right: 2rem;
    /* = 20px */
}

.navegacion a:hover {
    color: #71b100;
}

.navegacion a:last-of-type {
    margin: 0;
}


/*Iconos Nosotros*/

.iconos-nosotros {
    display: flex;
    justify-content: space-between;
}

.icono {
    flex-basis: calc(33.3% - 2rem);
    text-align: center;
}

.icono h3 {
    text-transform: uppercase;
}


/*Anuncios*/

.usuario {
    color: blanchedalmond;
}

.contenedor-anuncios {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.anuncio {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(33.3% - 2rem);
    border: 1px solid #b5b5b5;
    background-color: #f5f5f5;
    margin-bottom: 2rem;
}

.contenido-anuncio {
    padding: 2rem;
}

.contenido-anuncio h3,
.contenido-anuncio p {
    font-weight: 300;
    /*margin: 0;*/
}


/*temario*/

.contenedor-temarios {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.temario {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(33.3% - 2rem);
    border: 1px solid #b5b5b5;
    background-color: #f5f5f5;
    margin-bottom: 2rem;
}

.contenido-temario {
    padding: 1rem;
}

.contenido-temario h3,
.contenido-temario p {
    margin: 0%;
    padding: 5px;
    font-weight: 300;
    /*margin: 0;*/
}

.precio {
    color: #71b100;
    font-weight: 700;
}

.iconos-caracteristicas {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    flex: 1;
    max-width: 50rem;
}

.iconos-caracteristicas li {
    display: flex;
}

.iconos-caracteristicas li img {
    margin-right: 2rem;
}

.ver-todas {
    display: flex;
    justify-content: flex-end;
}


/*Contacto Home*/

.imagen-contacto {
    background-image: url(../img/encuentra.jpg);
    background-position: center center;
    background-size: cover;
    height: 40rem;
    display: flex;
    align-items: center;
}

.contenido-contacto {
    flex: 1;
    color: white;
}

.contenido-contacto p {
    font-size: 1.8rem;
}


/*Sección inferior*/

.seccion-inferior {
    display: flex;
    justify-content: space-between;
}

.seccion-inferior .blog {
    flex-basis: 60%;
}

.seccion-inferior .testimoniales {
    flex-basis: calc(40% - 2rem);
}

.entrada-blog {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.entrada-blog :last-of-type {
    margin-bottom: 0;
}

.entrada-blog .imagen {
    flex-basis: 40%;
}

.texto-entrada a {
    color: black;
    text-decoration: none;
}

.texto-entrada span {
    color: #e08709;
}

.entrada-blog .texto-entrada {
    flex-basis: calc(60% - 3rem);
}

.texto-entrada h4 {
    margin: 0;
    line-height: 1.2;
}

.texto-entrada h4::after {
    margin-top: 1rem;
    content: '';
    display: block;
    width: 15rem;
    height: .5rem;
    background-color: #71b100;
}


/*Testimoniales*/

.testimonial {
    background-color: #71b100;
    font-size: 2.4rem;
    padding: 2rem;
    color: white;
    border-radius: 2rem;
    line-height: 1.4;
    text-align: justify;
}

.testimonial p {
    text-align: right;
    margin-right: 4rem;
}

.testimonial blockquote::before {
    content: '';
    background-image: url(../img/comilla.svg);
    width: 4rem;
    height: 4rem;
    display: block;
    position: absolute;
    left: -2rem;
}

.testimonial blockquote {
    position: relative;
    padding-left: 5rem;
    font-weight: 300;
}


/*Footer*/

.site-footer {
    background-color: #333333;
    margin: 0;
}

.contenedor-footer {
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
}

.copyright {
    margin: 0;
    color: white;
}


/*Internas*/


/**Nosotros**/

.contenido-nosotros {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*50% 50%*/
    grid-column-gap: 2rem;
}

.texto-nosotros blockquote {
    font-weight: 900;
    font-size: 2rem;
    margin: 0;
    padding: 1rem 0 8rem 0;
}

.texto-nosotros p {
    text-align: justify;
}


/**Anuncio**/

.resumen-propiedad {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-center {
    text-align: justify;
}


/**Contacto**/

label {
    display: block;
}

input,
textarea,
select {
    padding: 1rem;
    display: block;
    width: 100%;
    background-color: #d0d2d2;
    margin-bottom: 2;
    border: none;
    outline: none;
}

input.years {
    width: 5%;
    display: inline-block;
}

input.valor {
    width: 30%;
    display: inline-block;
}

input.pregunta2 {
    display: inline-block;
}

.nota {
    color: red;
}

input[type="radio"] {
    width: auto;
    margin: 0;
}

select {
    -webkit-appearance: none;
    appearance: none;
}

textarea {
    height: 20rem;
}

.forma-contacto {
    max-width: 30rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fondo {
    background-color: #ebebeb;
    padding: 15px;
    text-align: justify;
}

input[type="checkbox"] {
    width: auto;
    margin: 10px;
    padding: 2rem;
    background-color: #214a5f;
}

tr.none {
    width: 100%;
    background-color: #d0d2d2;
    border: none;
    outline: none;
}

input.none,
select.none {
    margin-bottom: 0;
    align-items: center;
}

select.none {
    margin-bottom: -10px;
}


/* General button style */

.btn {
    border: none;
    font-family: 'Lato';
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 15px 50px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}


/* Pseudo elements for icons */

.btn:before {
    font-family: 'FontAwesome';
    /*speak: none;*/
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    position: relative;
    -webkit-font-smoothing: antialiased;
}


/* Icon separator */

.btn-sep {
    padding: 10px 30px 10px 50px;
}

.btn-sep:before {
    background: rgba(0, 0, 0, 0.15);
}

.btn-4 {
    background: #a27445;
    color: #fff;
}

.btn-4:hover {
    background: #9e5b19;
}

.btn-4:active {
    background: #a27445;
    top: 2px;
}

.btn-4:before {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    line-height: 2;
    font-size: 140%;
    width: 30px;
}


/* Icons */

.icon-cart:before {
    content: "+";
}

.icon-heart:before {
    content: "+";
}

.icon-info:before {
    content: "+";
}

.icon-send:before {
    content: "+";
}

.contenedorv {
    display: grid;
    grid-template-columns: 1fr;
}

.valor {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.recuadro {
    border: #000000 solid 1px;
    padding: 10px;
}

.logo-index img {
    position: fixed;
    top: 20px;
    right: 80%;
}


/** Tablas reportes @media (max-width: 483px)*/

@media (min-width: 0px) and (max-width: 480px) {
    .logo-index img {
        top: 20px;
        left: 20%;
    }
    .anuncio {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: 100%;
        border: 1px solid #b5b5b5;
        background-color: #f5f5f5;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .logo-index img {
        top: 20px;
        right: 65%;
    }
    .anuncio {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: 100%;
        border: 1px solid #b5b5b5;
        background-color: #f5f5f5;
    }
}