@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Thin.ttf') format('truetype');
  font-weight: 100; /* Thin */
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Light.ttf') format('truetype');
  font-weight: 300; /* Light */
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400; /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Bold.ttf') format('truetype');
  font-weight: 700; /* Bold */
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Black.ttf') format('truetype');
  font-weight: 900; /* Black */
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Italic.ttf') format('truetype');
  font-weight: 400; /* Regular Italic */
  font-style: italic;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-LightItalic.ttf') format('truetype');
  font-weight: 300; /* Light Italic */
  font-style: italic;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-BoldItalic.ttf') format('truetype');
  font-weight: 700; /* Bold Italic */
  font-style: italic;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-BlackItalic.ttf') format('truetype');
  font-weight: 900; /* Black Italic */
  font-style: italic;
}

/* colores txt */
    .c-dorado{
        color: #C2995C;
    }
    .txt-greyoscuro{
        color: #2D2829;
    }
    .txt-white{
        color: #fff;
    }
    .txt-gris-claro{
        color: #797979;
    }
    .txt-gris-claro2{
        color: #7D828B;
    }
    .txt-gris-claro3{
        color: #858585;
    }
/* colores txt */


body{
  font-family: "Lato", sans-serif !important;
}
.navbar button:focus{
  outline: 0px !important;
}
/***********/

/* Header */
    .bg-active {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: #000;
        opacity: .2;
        z-index: 2;
    }
    .contenedor-header{
    border-bottom: 1px solid #E2DED7;
    }
    .nav-content{
        display: flex;
        justify-content: space-between;
    }
    .mainNavb{
        align-items: center;
        flex-direction: row;
        box-sizing: border-box;
        display: flex;
        /*background-color: #fff;*/
        color: #000;
        z-index: 999;
        font-weight: 700;
        /*position: absolute;*/
        top: 0;
        width: 100%;
        -webkit-transition: .5s;
        transition: .5s;
        min-height: 80px !important;
        /* box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); */
        /*padding-right: 7rem;
        padding-left: 7rem;*/
    }
    .btn-menub{
        color: #000 !important;
        background: transparent;
        border: none !important;
    }

    .btn-menub:focus{
        outline: none;
    }
    .btn-menu{
        background: transparent;
        color: #ffffff;
        border-color: transparent;
    }

    /***********************/
    .sidebar {
        display: none;
        position: fixed;
        top: 0;
        right: 7rem;
        background-color: #ffffff;
        overflow-x: hidden;
        /* transition: right 4s; */
        padding: 1rem 0;
        box-sizing: border-box;
    }

    .sidebar.activo {
        padding-bottom: 5%;
        /* top: 110%; */
        position: fixed;
        /* box-shadow: 1px 1px 5px 6px rgb(45 40 41 / 10%); */
        display: block;
        right: 0;
        width: 30%;
        background: #fff;
        transition: right .5s;
        -webkit-transition: right .5s;
        overflow: auto;
        height: 100vh;
        z-index: 1001;
        box-shadow: 0 0.125rem 0rem rgba(0, 0, 0, 0.075);
        border: 1px solid #dbdbdb;
    }
    .sidebar li{
        list-style:none;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,.5);
        border-radius: 4px;
        padding: 8px;

        font-size: 16px;
        font-weight: 700;
    }
    .sidebar li:hover{
        border-radius: 4px;
        padding: 8px;
        border-radius: 15px;

        /*padding: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
        background: #E2DED7;*/

        /*padding: 11px 21px;*/
        box-shadow: 0 5px 2px #b7b3ae;
        transform: translateY(-2px);
        background: #e2ded7;
        border-color: #e2ded7;
        margin: 1% 0;
    }
    .sidebar a {
        border-radius: 15px;
        list-style: none;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .5);
        transform: translateY(-2px);
        font-size: 16px;
        font-weight: 700;
        margin: 1% 0;

        /* width: 100%; */
        /* max-width: 225%; */
        /* padding: 8px; */
        font-size: 16px;
        font-weight: 700;
        display: flex;
        padding-right: 4rem;
    }
    .sidebar a:hover {
        /*border-radius: 15px;
        list-style: none;
        width: 100%;
        box-shadow: 0 5px 2px #b7b3ae;
        transform: translateY(-2px);
        background: #e2ded7;
        border-color: #e2ded7;
        font-weight: 700;
        margin: 1% 0;*/
    }
    .sidebar a:active {
        /*box-shadow: inset 0px 6px 8px 0px #b7b3ae;*/
    }
    .sidebar a:focus {
        box-shadow: none;
    }
    .btn-cerrarmenu{
        align-items: end;
        display: flex;
        justify-content: flex-end;
        padding-right: 7rem;
    }
    /***********************************************/
    .sidebar li:active{
        box-shadow: inset 0px 6px 8px 0px #b7b3ae;
    }
    /**************************/
    .menu_cerrar{
        display: none;
    }
    .activo .menu_cerrar{
        display: block;
    }
    .activo .menu_active{
        display: none;
    }
/* Header */

/* Foother */
    #footer #contact-form {
        background-color: #970e48;
    }
    .is-circle {
        border-radius: 100%;
        margin: 0 .3em;
    }
    .button {
        background-color: #fff;
        border-color: #dbdbdb;
        border-width: 1px;
        color: #363636;
        cursor: pointer;
        justify-content: center;
        padding: calc(.5em - 1px) 1em;
        text-align: center;
        white-space: nowrap;
    }
    .txt-contacto{
        font-size: 32px;
        font-weight: 700;
    }
    hr.separator {
        width: 6em;
        margin: 0.5em auto;
        height: 2.5px;
        background-color: rgba(0, 0, 0, .3);
    }
    hr {
        overflow: visible;
        height: 0;
    }
    .contact-form-input input, .contact-form-input input:active, .contact-form-input input:focus, .contact-form-input select, .contact-form-input textarea, .contact-form-input textarea:active, .contact-form-input textarea:focus {
        border: 0;
        color: #74706f !important;
        font-weight: 400;
        background: #fff;
        transition: all .5 ease;
        -webkit-transition: all .5 ease;
        -moz-transition: ease all .5;
        -ms-transition: ease all .5;
        -o-transition: ease all .5;
    }
    .contact-form .input, .contact-form .select select, .contact-form .taginput .taginput-container.is-focusable, .contact-form .textarea {
        border-radius: 10px;
    }
    .fondo-guindaClaro{
        background: #BC2251;
    }

    .label-contacto{
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF;
        display: flex;
        align-items: center;
    }
    .required{
        color:  #FF6500;
    }
    .cont-icon-contacto{
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    .input-group-icon-contacto{
        width: 45px;
        height: calc(1.5em + 0.75rem + 2px);
        background: #E2DED7;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        border-radius: 0 10px 10px 0;
    }
    .contacto-row{
        /*margin-right: unset !important;*/
    }
    .formContacto input{
        border-radius: 10px ;
        border: #7D818B solid 2px ;
    }

    .formContacto select{
        border-radius: 10px ;
        border: #7D818B solid 2px ;
        appearance: none;
    }

    .formContacto textarea{
        border-radius: 10px ;
        border: #7D818B solid 2px ;
    }

    p.help-block.text-danger, .warningFile {
        color: #FF6500 !important;
        font-weight: 600;
        margin: 0;
    }
    .help-block ul {
        padding: 0 10px;
        list-style: none;
        margin: 0;
    }
    .form-group.error input, .form-group.error select, .form-group.error textarea {
        border: 2px solid #FF6500;
    }
    .form-group.warning input, .form-group.warning select, .form-group.warning textarea {
        border: 2px solid #CEB182;
    }

    input[aria-invalid*="false"], select[aria-invalid*="false"], textarea[aria-invalid*="false"]   {
        border: 2px solid #287F55;
    }

    .infoFile, .infoFile p {
        margin: 0;
    }

    /* boton */
    .btn-formulario{
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    .btn-formulario{
        background-color: #C2995C;
        border-radius: 100px;
        /* border-bottom: 4px solid #957133; */
        font-family: Lato;
        font-size: 16px;
        font-weight: 700;
        color: #3D2702;
    }
    .btn-formulario:focus{
        box-shadow: none;
    }
    .btn-formulario span{
        display: block;
        font-family: Lato;
        font-size: 10px;
        font-style: italic;
        font-weight: 300;
        line-height: 12px;
        text-align: center;
    }
    /* boton */

    .ico-contacto {
        padding-top: 9%;
    }
        .contacto-center{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
/* Foother */
@media (max-width: 770px) {
    .sidebar.activo {
        width: auto;
    }
    .menu_cerrar{
        display: none!important;
    }
    .activo .menu_cerrar{
        display: flex!important;
    }
    .activo .menu_active{
        display: none;
    }
}
@media (max-width:600px) {
    .btn-formulario {
        width: 100% !important;
    }
}
@media (max-width: 576px) {
    .ico_menu{
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
}
