/* montserrat-regular - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v15-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/montserrat-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/montserrat-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/montserrat-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/montserrat-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/montserrat-v15-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-500 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat-v15-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/montserrat-v15-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/montserrat-v15-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/montserrat-v15-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/montserrat-v15-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/montserrat-v15-latin-500.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-600 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/montserrat-v15-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/montserrat-v15-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/montserrat-v15-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/montserrat-v15-latin-600.woff') format('woff'), /* Modern Browsers */
       url('../fonts/montserrat-v15-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/montserrat-v15-latin-600.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* montserrat-700 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v15-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/montserrat-v15-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/montserrat-v15-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/montserrat-v15-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/montserrat-v15-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/montserrat-v15-latin-700.svg#Montserrat') format('svg'); /* Legacy iOS */
}
/* --- HTML --- */
html,
body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat','Lato','Roboto',Arial, sans-serif, serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    color: #000;
}
html {
  scroll-behavior: smooth;
}
/* ### - Elemento: Navbar - ### */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 991px;
    width: 100%;
    margin: 0 auto;
    padding: .75rem 1.5rem;
    z-index: 2;
    transition: 0.15s cubic-bezier(.17,.67,.83,.67);
}
.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0%;
    margin: 0 0 0 -50%;
    width: calc(100% + 991px);
    background-color: rgba(0, 0, 0, 0.8);
    z-index: -1;
}
.navbar.activo {
    position: fixed;
    transition: 0.15s cubic-bezier(.17,.67,.83,.67);
}
.navbar.activo::before {
    height: 100%;
    transition: 0.15s cubic-bezier(.17,.67,.83,.67);
}
.navbar-toggler {
    position: relative;
    background-color: #fff;
    height: 45px;
    width: 45px;
    border-radius: 25px;
}
.navbar-toggler .icon-bar {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #C98A2B;
    transition: 0.15s cubic-bezier(.17,.67,.83,.67);
}
.navbar-toggler .top-bar {
    top: 12px;
    margin: 0 auto 0;
    transform: rotate(0);
}
.navbar-toggler .middle-bar {
    margin: -1px auto 0px;
}
.navbar-toggler .bottom-bar {
    bottom: 0;
    margin: auto auto 12px;
    transform: rotate(0);
}
.navbar-toggler[aria-expanded="true"] .top-bar {
    margin-top: 9px;
    transform: rotate(35deg);
}
.navbar-toggler[aria-expanded="true"] .middle-bar {
    opacity: 0;
    width: 100%;
}
.navbar-toggler[aria-expanded="true"] .bottom-bar {
    transform: rotate(-35deg);
    margin-bottom: 20px;
}
.navbar-brand img {
    width: 120px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.navbar li a {
    position: relative;
    font-size: .88rem;
    color: #fff;
    text-transform: uppercase;
    transition: 0.25s cubic-bezier(.17,.67,.83,.67);
}
.navbar li:hover a {
    color: #C98A2B;
}
.navbar li:not(:last-child) {
    margin-right: 10px;
}
.navbar li:last-child a {
   display: inline-block;
    padding: .5rem!important;
}
.navbar li:last-child a:last-child {
    padding-left: 0!important;
}
.navbar .red {
    display: inline-block;
    height: 18px;
    width: 18px;
    vertical-align: middle;
    margin: 0 12px 0 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 18px;
}
.navbar .red.tel {
    background-image: url(../img/iconos/icono_tel.svg);
}
.navbar .red.fb {
    background-image: url(../img/iconos/navbar/icono_fb.svg);
    margin-right: 0;
    background-size: auto 88px;
}
.navbar .red.ig {
    background-image: url(../img/iconos/navbar/icono_ig.svg);
    margin-right: 0;
    background-size: auto 71px;
}
.navbar .red:hover {
    background-position: center bottom;
}
/* ### - Elemento: WPP - ### */
.wpp {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 45px 45px;
    z-index: 9;
}
.wpp img {
    width: 45px;
    height: auto;
}
/* ### - Elemento: Pie - ### */
footer.footer {
    background-color: #1E1F21;
}

/* ### - Seccion: Header - ### */
.header {
    position: relative;
    display: flex;
    align-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 0 0 0 0;
}
.header.home {
    justify-content: center;
    height: 100vh;
    text-align: center;
    overflow: hidden;
}
.header #video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: auto;
    z-index: 1;
    background-color: #000;
}
.header video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 120%;
    height: auto;
    z-index: 1;
    opacity: .2;
}
.header.home .contenido {
    position: relative;
    z-index: 2;
}
.home .icono {
    display: block;
    margin: 0 auto 25px;
    width: 135px;
}
.home .titulo {
    font-size: 2.75rem;
    font-weight: normal;
    color: #fff;
    letter-spacing: 1.5px;
    margin: 0 auto 2px;
}
.home h2.titulo {
    font-size: 2.5rem;
    color: #CD8B2A;
    font-weight: 500;
}
.home .btn {
    position: relative;
    display: inline-block;
    margin: 15px auto 0;
    font-size: 1.65rem;
    color: #fff;
    text-transform: lowercase;
    letter-spacing: 1.5px;
    padding: 1px 25px 5px;
    border: 0;
    border-radius: 35px;
    background-color: #C59C6D;
    z-index: 1;
    overflow: hidden;
}
.home .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: auto 0 auto -100%;
    border-radius: 22px;
    background-color: #9f6a2d;
    transition: 0.35s cubic-bezier(.6,.41,.4,.63);
    z-index: -1;
}
.header .btn:hover::before {
    margin-left: 0%;
}
  
/* ### - Seccion: Contenido - ### */
#contenido {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-image: url(../img/bg/contenido.jpg);
}
/* ### - Seccion: Nosotros - ### */
.nosotros {
    position: relative;
    max-width: 1280px;
    padding: 105px 0 125px;
    margin: 0 auto;
}
.nosotros::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    margin: 45px 0 0 0;
    max-width: 450px;
    width: 100%;
    height: 6px;
    border-radius: 25px;
    background-color: #c98a2b;
}
.nosotros::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 0 45px 0;
    max-width: 450px;
    width: 100%;
    height: 6px;
    border-radius: 25px;
    background-color: #c98a2b;
}
.nosotros .frase {
    padding: 45px 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    background-image: url(../img/bg/frase-bg.png);
}
.nosotros .frase p {
    text-align: center;
    margin: 0 auto;
}
.nosotros .frase p b {
    color: #cd8b2a;
}
.nosotros .contenido {
    padding: 45px 0;
}
.nosotros .contenido p {
    text-align: justify;
}
/* ### - Seccion: Centro - ### */
.centro {
    position: relative;
    padding: 15px 0;
}
.centro .titulo {
    font-size: 1.15rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
    margin: 0 auto 40px;
}
.centro .info {
    padding: 0 25px 15px;
}
.centro .icono {
    display: block;
    width: 95px;
    margin: 0 auto 25px;
    transition: 0.4s cubic-bezier(.04,.77,.83,.67);
}
.centro p {
    font-size: .95rem;
    color: #333;
}
.centro .info:hover .icono {
    width: 110px;
    transition: 0.4s cubic-bezier(.04,.77,.83,.67);
}
/* ### - Seccion: Compromisos - ### */
.compromisos {
    position: relative;
    padding: 85px 0 25px;
}
.compromisos .info {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    margin: -75px 75px 0 0;
    padding: 25px;
    border-radius: 15px;
    width: 435px;
    background-color: rgba(205, 139, 42, 0.1);
    text-align: center;
}
.compromisos .info p {
    margin: 0 auto;
}
.compromisos .info p b {
    font-weight: 600;
    color: #CD8B2A;
}
.compromisos .btn {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 0 45px 225px;
    padding: 12px 25px;
    background-color: rgba(205, 139, 42, 0.1);
    font-size: 1.05rem;
    color: #fff;
    background-color: #CD8B2A;
    border-radius: 15px;
    z-index: 1;
    overflow: hidden;
}
.compromisos .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: auto 0 auto -100%;
    border-radius: 15px;
    background-color: #9f6a2d;
    transition: 0.35s cubic-bezier(.6,.41,.4,.63);
    z-index: -1;
}
.compromisos .btn:hover::before {
    margin-left: 0%;
}
.compromisos .linea {
    position: relative;
}
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-template-areas:
        "imagen-1 info-1"
        "info-2 imagen-2"
        "imagen-3 info-3"
        "info-4 imagen-4";
}
.imagen-1 { grid-area: imagen-1; }
.info-1 { grid-area: info-1; }
.info-2 { grid-area: info-2; }
.imagen-2 { grid-area: imagen-2; }
.imagen-3 { grid-area: imagen-3; }
.info-3 { grid-area: info-3; }
.info-4 { grid-area: info-4; }
.imagen-4 { grid-area: imagen-4; }

.compromisos .linea div[class^="imagen-"],
.compromisos .linea div[class^="info-"] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
}
.compromisos .linea div[class^="imagen-"] {
    top: -70px;
}
.compromisos .linea div[class^="info-"] {
    top: -70px;
    padding: 20px 45px;
}
.compromisos .linea p {
    margin: 0;
}
.compromisos .linea p b {
    color: #CD8B2A;
}
.compromisos .linea img {
    display: block;
    width: 400px;
    cursor: pointer;
}
.compromisos .imagen-1::before {
    content: "";
    position: absolute;
    top: 70px;
    right: 0;
    margin: 0 -12px 0 0;
    width: 30px;
    height: 30px;
    background-color: #C98A2B;
    border-radius: 50%;
}
.compromisos .imagen-1::after {
    content: "";
    position: absolute;
    top: 70px;
    right: 0;
    width: 5px;
    height: 0%;
    background-color: #C98A2B;
}
.compromisos .info-2::before {
    content: "";
    position: absolute;
    top: 140px;
    right: 0;
    margin: 0 -12px 0 0;
    width: 30px;
    height: 30px;
    background-color: #C98A2B;
    border-radius: 50%;
}
.compromisos .info-2::after {
    content: "";
    position: absolute;
    top: 70px;
    right: 0;
    width: 5px;
    height: 0%;
    background-color: #C98A2B;
}
.compromisos .imagen-3::before {
    content: "";
    position: absolute;
    top: 140px;
    right: 0;
    margin: 0 -12px 0 0;
    width: 30px;
    height: 30px;
    background-color: #C98A2B;
    border-radius: 50%;
}
.compromisos .imagen-3::after {
    content: "";
    position: absolute;
    top: 70px;
    right: 0;
    width: 5px;
    height: 0%;
    background-color: #C98A2B;
}
.compromisos .info-4::before {
    content: "";
    position: absolute;
    bottom: 140px;
    right: 0;
    margin: 0 -12px 0 0;
    width: 30px;
    height: 30px;
    background-color: #C98A2B;
    border-radius: 50%;
}
.compromisos .info-4::after {
    content: "";
    position: absolute;
    top: 70px;
    right: 0;
    width: 5px;
    height: 0%;
    background-color: #C98A2B;
}
.modal-header {
    position: absolute;
    width: 100%;
    border: 0;
    z-index: 2;
}
.close {
    opacity: 1!important;
    border-radius: 50%;
    padding: .6999rem 1rem!important;
    background-color: #fff!important;
    color: #9f6a2d;
    margin: 0px 0px 0 auto!important;
}
.modal-body {
    padding: 0;
}
.compromisos.activo .imagen-1 img {
    -webkit-animation: fade-in-left 1s ease-in-out 0.65s both;
	        animation: fade-in-left 1s ease-in-out 0.65s both;
}

.compromisos.activo .imagen-2 img {
    -webkit-animation: fade-in-right 1s ease-in-out 1.2s both;
	        animation: fade-in-right 1s ease-in-out 1.2s both;
}
.compromisos.activo .imagen-3 img {
    -webkit-animation: fade-in-left 1s ease-in-out 1.85s both;
	        animation: fade-in-left 1s ease-in-out 1.85s both;
}
.compromisos.activo .imagen-4 img {
    -webkit-animation: fade-in-right 1s ease-in-out 2.5s both;
	        animation: fade-in-right 1s ease-in-out 2.5s both;
}
.compromisos.activo .imagen-1::before {
    -webkit-animation: fade-in .7s ease-in-out 0.8s both;
	        animation: fade-in .7s ease-in-out 0.8s both;
}
.compromisos.activo .info-2::before {
    -webkit-animation: fade-in .7s ease-in-out 1.8s both;
	        animation: fade-in .7s ease-in-out 1.8s both;
}
.compromisos.activo .imagen-3::before {
    -webkit-animation: fade-in .7s ease-in-out 2.8s both;
	        animation: fade-in .7s ease-in-out 2.8s both;
}
.compromisos.activo .info-4::before {
    -webkit-animation: fade-in .7s ease-in-out 3.8s both;
	        animation: fade-in .7s ease-in-out 3.8s both;
}
.compromisos.activo .imagen-1::after {
    height: 100%;
    transition: 1s cubic-bezier(.11,.72,.89,.61) 1s;
}
.compromisos.activo .info-2::after {
    transition: 1s cubic-bezier(.11,.72,.89,.61) 2s;
    height: 100%;
}
.compromisos.activo .imagen-3::after {
    transition: 1s cubic-bezier(.11,.72,.89,.61) 3s;
    height: 100%;
}
.compromisos.activo .info-4::after {
    height: 38%;
    transition: 1s cubic-bezier(.11,.72,.89,.61) 4s;
}

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ### - Seccion: Prestigio - ### */
.prestigio {
    position: relative;
    padding: 75px 0;
    background-color: rgba(0, 0, 0, 0.8);
}
.prestigio .titulo {
    font-size: 1.15rem;
    font-weight: bold;
    color: #C98A2B;
    letter-spacing: 1px;
    margin: 0 auto 30px;
}
.prestigio p {
    color: #fff;
    margin: 35px auto 0;
}
.prestigio p a {
    color: #c98a2b;
    text-decoration: underline;
}
.prestigio video {
    position: relative;
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}
/* ### - Seccion: Mapa - ### */
.mapa {
    position: relative;
}
.mapa iframe {
    display: block;
    position: relative;
}
/* ### - Seccion: Contacto - ### */
.contacto {
    position: relative;
    background-color: #1E1F21;
}
.contacto .top {
    position: relative;
    top: -180px;
}
.contacto .container {
    max-width: 991px;
    margin: 0 auto;
}
.contacto .info {
    position: relative;
    background-color: #C98A2B;
    margin: 35px 0 0;
    padding: 35px 45px;
}
.contacto .formulario {
    position: relative;
    background-color: #fff;
    padding: 55px 45px;
}
.contacto .info .logotipo {
    display: block;
    max-width: 200px;
    width: 100%;
    height: auto;
    margin: 0 auto 35px;
}
.contacto .info .contactos {
    padding: 0;
    margin: 0 0 35px;
}
.contacto li {
    list-style-type: none;
}
.contacto .contactos li {
    padding: 0 0 0 35px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 19px auto;
}
.contacto .contactos li:not(:last-child) {
    margin: 0 0 15px;
}
.contacto .contactos li a {
    font-size: .9rem;
    color: #fff;
}
.contacto .contactos li:nth-child(1) {
    background-image: url(../img/iconos/icono_tel.svg);
}
.contacto .contactos li:nth-child(2) {
    background-image: url(../img/iconos/icono_mail.svg);
}
.contacto .contactos li:nth-child(3) {
    background-image: url(../img/iconos/icono_local.svg);
}
.contacto .redes {
    display: flex;
    justify-content: center;
    padding: 0;
}
.contacto .redes .red {
    display: inline-block;
    height: 28px;
    width: 28px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 27px auto;
}
.contacto .redes li:not(:last-child) {
    margin-right: 15px;
}
.contacto .redes .fb {
    background-size: 13px auto;
    background-image: url(../img/iconos/icono_fb.svg);
}
.contacto .redes .ig {
    background-image: url(../img/iconos/icono_ig.svg);
}
.contacto .redes .in {
    background-image: url(../img/iconos/icono_in.svg);
}
.contacto .redes li:hover .red {
    background-position: center bottom;
}
.contacto .titulo {
    font-size: 1rem;
    font-weight: normal;
    margin: 0 auto 3px;
}
.contacto .titulo:nth-child(2) {
    width: 80%;
    font-size: 1.15rem;
    color: #CD8B2A;
    margin-bottom: 35px;
}
.contacto label {
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}
.contacto .form-control {
    color: #C98A2B;
    border: 2px solid #C59C6D;
    border-radius: 25px;
}
.contacto .btn {
    position: relative;
    display: table;
    color: #fff;
    text-align: right;
    margin: 0 0 0 auto;
    text-transform: lowercase;
    border: 1px solid #C98A2B;
    background-color: #C98A2B;
    border-radius: 25px;
    padding: 6px 23px 6px;
    transition: 0.25s cubic-bezier(.17,.67,.83,.67);
    z-index: 1;
    overflow: hidden;
}
.contacto .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: auto 0 auto -100%;
    border-radius: 25px;
    background-color: #9f6a2d;
    transition: 0.35s cubic-bezier(.6,.41,.4,.63);
    z-index: -1;
}
.contacto .btn:hover::before {
    margin-left: 0%;
}
.contacto .btn:hover {
}
.form-control::-webkit-input-placeholder{color:#c98a2b}.form-control:-moz-placeholder{color:#c98a2b;opacity:1}.form-control::-moz-placeholder{color:#c98a2b;opacity:1}.form-control:-ms-input-placeholder{color:#c98a2b;opacity:1}.form-control::-ms-input-placeholder{color:#c98a2b;opacity:1}.form-control::placeholder{color:#c98a2b;opacity:1}


/* ### - [Responsivo] - ### */
@media (max-width:1216px) {
   
}
@media (min-width:992px) {
   
    
    
    
}
@media (max-width: 992px) {
    .header video {
        height: 100%;
        width: auto;
    }
    .compromisos .info {
        margin: -75px 24px 0 0;
    }
    .compromisos {
        padding-bottom: 120px;
    }
}

@media (min-width: 768px) {
  
}

@media (max-width: 768px) {
    /* ### - [Navbar] - ### */
    .navbar {
        z-index: 99;
    }
    .navbar .navbar-collapse {
        position: absolute;
        top: 0;
        right: 0;
        margin: 100px 10px 0 0;
        padding: 25px 25px;
        border-radius: 10px;
        text-align: right;
        background-color: #fff;
        z-index: 9;
    }
    .navbar-nav .nav-link {
        color: #000;
    }
    /* ### - Seccion: Index - ### */
    
    .compromisos {
        padding: 45px 0 50px;
    }
    .compromisos .info {
        position: relative;
        margin: 0 auto 85px;
        max-width: 350px;
        width: 100%;
    }
    .compromisos .btn {
        display: table;
        position: relative;
        margin: 0 auto;
    }
    .prestigio p {
        text-align: center;
    }
    .prestigio p a {
        display: table;
        margin: 0 auto;
    }
    /* ### - Seccion: Contacto - ### */
    .contacto {
        padding-bottom: 35px;
    }
    .contacto .top {
        top: -50px;
    }
    .contacto .info .logotipo {
        flex: 1 1 100%;
        padding: 0 185px 0;
        max-width: 100%;
    }
    .contacto .info {
        display: flex;
        flex-wrap: wrap;
        margin: 0;
    }
    .contacto .info ul {
        /*
        flex: 1 1 50%;
        width: 25%;
        */
    }
    .contacto .info .contactos {
        display: flex;
        justify-content: center;
        max-width: 100%;
        padding: 0 0 0;
        margin-left: auto;
    }
    .contacto .info .redes {
        margin-right: auto;
    }
    .contacto .row {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .contacto .contactos li {
        position: relative;
        background-size: 27px auto;
        height: 28px;
    }
    .contacto .contactos li:nth-child(1) {
        background-size: 27px auto;
        background-position: center top;
    }
    .contacto .contactos li:nth-child(2) {
        background-size: 31px auto;
        background-position: center 3px;
    }
    .contacto .contactos li:nth-child(3) {
        background-size: 22px auto;
        background-position: center top;
    }
    .contacto .contactos li a {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 0;
        height: 100%;
        width: 100%;
    }
   
}
@media (max-width: 575px) {
    .contacto .info .logotipo {
        max-width: 100%;
        padding: 0 55px;
    }
    /* ### - Seccion: Index - ### */
    .home .icono {
        width: 100px;
    }
    .home .titulo {
        font-size: 2rem;
    }
    .home h2.titulo {
        font-size: 1.45rem;
    }
    .home .btn {
        font-size: 1.25rem;
    }
    .mapa iframe {
        height: 350px;
    }
    .compromisos .linea div[class^="imagen-"] {
        
    }
    .compromisos .linea div[class^="info-"] {
        padding: 15px 20px;
    }
    .compromisos .imagen-1::before,
    .compromisos .info-2::before,
    .compromisos .imagen-3::before,
    .compromisos .imagen-4::before,
    .compromisos .info-4::before {
        height: 15px;
        width: 15px;
    }
    .compromisos .imagen-1::before {
        top: 70px;
        margin: 0 -6px 0 0;
    }
    .compromisos .imagen-1::after {
        top: 70px;
        width: 3px;
    }
    .compromisos .info-2::before {
        top: 120px;
        margin: 0 -6px 0 0;
    }
    .compromisos .info-2::after {
        top: 70px;
        width: 3px;
    }
    .compromisos .imagen-3::before {
        top: 120px;
        margin: 0 -6px 0 0;
    }
    .compromisos .imagen-3::after {
        top: 70px;
        width: 3px;
    }
    .compromisos .imagen-4::before {
        content: "";
        position: absolute;
        top: 70px;
        left: 0;
        margin: 0 0 0 -9px;
        background-color: #C98A2B;
        border-radius: 50%;
    }
    .compromisos.activo .imagen-4::before {
         -webkit-animation: fade-in .7s ease-in-out 3.8s both;
	        animation: fade-in .7s ease-in-out 3.8s both;
    }
    .compromisos .info-4::before {
        display: none!important;
    }
    .compromisos .info-4::after {
        display: none!important;
    }
   
}

@media (max-width: 470px) {
    .compromisos .info-4::before {
    }
}