.menu-btn {
  cursor: pointer;
  position: absolute;
  top: 32px;
  right: 30px;
  z-index: 2;
  display: none;
  color: black;
}

nav {
  visibility: hidden;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  font-family: "Exo 2", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
}

nav .nav-logo {
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}

nav .nav-logo .img-color {
  max-width: 80%;
  opacity: 1;
}

nav .nav-logo .img-mono {
  max-width: 35%;
}

nav .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .link a {
  text-decoration: none;
  color: black;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 0 10px;
}

nav .link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  margin: 0 30px;
}

nav .link-item::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: black;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

nav .link-item::before {
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
}

nav .link-item::after {
  -webkit-transform: translateX(101%);
          transform: translateX(101%);
}

nav .link-item:hover::before,
nav .link-item:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (max-width: 850px) {
  .menu-btn {
    display: block;
  }
  .menu-btn:hover {
    opacity: 0.5;
  }
  nav {
    display: block;
    text-align: start;
  }
  nav .nav-logo {
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav .link {
    position: absolute;
    top: 100px;
    left: 0;
    display: block;
    width: 50%;
    height: 100vh;
    margin-left: 0;
    padding-top: 2px;
    border-right: 1px solid black;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  nav .link-item {
    width: 70%;
    display: block;
    margin: 20px 50px;
    border-bottom: 1px solid black;
  }
  nav .link-item a {
    display: block;
    padding-bottom: 20px;
  }
  nav .link-item::before,
  nav .link-item::after {
    display: none;
  }
  nav .show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (max-width: 450px) {
  nav .texto h1 {
    font-size: 1.5rem;
  }
  nav .texto p {
    font-size: 0.8rem;
  }
  nav .link-item {
    margin-left: 10px;
  }
}

.masthead {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  margin-bottom: 50px;
}

.masthead .mast-container {
  position: relative;
  height: 100%;
}

.masthead .mast-container .mast-container-logo {
  z-index: 5;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
}

.masthead .mast-container .mast-container-logo .mast-container-logo-contenido {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 20px 40px;
  border-radius: 15px;
  -webkit-box-shadow: 2px 10px 30px black;
          box-shadow: 2px 10px 30px black;
}

.masthead .mast-container .mast-container-logo .mast-container-logo-contenido .mast-container-logo-img {
  width: 250px;
}

.masthead .mast-container .mast-container-logo .mast-container-logo-contenido .mast-container-logo-img img {
  max-width: 100%;
}

.masthead .mast-container .mast-container-logo .mast-container-logo-contenido .mast-container-logo-text {
  margin-left: 50px;
  margin-bottom: 10px;
  font-family: "Exo 2", sans-serif;
  width: 300px;
}

.masthead .mast-container .mast-container-logo .mast-container-logo-contenido .mast-container-logo-text img {
  width: 300px;
  margin-bottom: 20px;
}

.masthead .mast-container .mast-container-logo .mast-container-logo-contenido .mast-container-logo-text a {
  text-decoration: none;
  background-color: black;
  color: white;
  padding: 10px 35px;
  border-style: none;
  border-radius: 25px;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}

.masthead .mast-container .mast-container-logo .mast-container-logo-contenido .mast-container-logo-text a:hover {
  background-color: white;
  color: black;
}

.masthead .mast-container .mast-container-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-image: url("../img/10.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: grayscale(100%) blur(3px);
          filter: grayscale(100%) blur(3px);
}

@media screen and (max-width: 750px) {
  .masthead .mast-container .mast-container-logo .mast-container-logo-contenido {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .masthead .mast-container .mast-container-logo .mast-container-logo-contenido .mast-container-logo-text {
    margin-left: 0;
  }
}

@media screen and (max-width: 450px) {
  .masthead .mast-container .mast-container-logo .mast-container-logo-contenido {
    padding: 20px;
  }
  .masthead .mast-container .mast-container-logo .mast-container-logo-contenido .mast-container-logo-img {
    width: 200px;
  }
  .masthead .mast-container .mast-container-logo .mast-container-logo-contenido .mast-container-logo-text {
    margin-top: 20px;
    width: 200px;
  }
  .masthead .mast-container .mast-container-logo .mast-container-logo-contenido .mast-container-logo-text img {
    width: 200px;
  }
}

.nosotros {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  margin-bottom: 50px;
  width: 90%;
}

.nosotros .nosotros-img {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nosotros .nosotros-img img {
  max-width: 100%;
  border-radius: 20px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.8);
          box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.8);
}

.nosotros .nosotros-text {
  width: 60%;
  border-left: 5px solid black;
  margin-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nosotros .nosotros-text p, .nosotros .nosotros-text h3 {
  margin-left: 25px;
  font-family: "Exo 2", sans-serif;
  font-size: 1.2rem;
  color: black;
  text-align: justify;
}

.nosotros .nosotros-text h3 {
  font-size: 2rem;
  text-transform: uppercase;
}

@media screen and (max-width: 850px) {
  .nosotros {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nosotros .nosotros-img {
    width: 100%;
    margin-bottom: 20px;
  }
  .nosotros .nosotros-text {
    width: 100%;
    margin-left: 0;
  }
}

.contacto {
  width: 80%;
  margin: 100px auto;
  border-radius: 50px;
  min-height: 550px;
  background-image: url("../img/12.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.8);
          box-shadow: 2px 10px 30px rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.contacto form {
  padding: 20px;
  font-family: "Exo 2", sans-serif;
  width: 350px;
  height: 550px;
  border-radius: 0 50px 50px 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contacto form h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
}

.contacto form button {
  width: 200px;
  background-color: black;
  color: white;
  padding: 10px 35px;
  border-style: none;
  border-radius: 25px;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
  margin-top: 20px;
}

.contacto form button:hover {
  background-color: white;
  color: black;
}

.contacto form .input-form {
  margin: 5px 0;
}

.contacto form .input-form input, .contacto form .input-form textarea {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid black;
  background-color: transparent;
}

.contacto form .input-form input::-webkit-input-placeholder, .contacto form .input-form textarea::-webkit-input-placeholder {
  color: black;
}

.contacto form .input-form input:-ms-input-placeholder, .contacto form .input-form textarea:-ms-input-placeholder {
  color: black;
}

.contacto form .input-form input::-ms-input-placeholder, .contacto form .input-form textarea::-ms-input-placeholder {
  color: black;
}

.contacto form .input-form input::placeholder, .contacto form .input-form textarea::placeholder {
  color: black;
}

@media screen and (max-width: 950px) {
  .contacto {
    width: 90%;
    margin: 50px auto;
  }
}

@media screen and (max-width: 550px) {
  .contacto {
    min-height: 450px;
  }
  .contacto form {
    padding: 20px;
    width: 100%;
    height: 450px;
    border-radius: 50px;
  }
}

footer {
  background-color: black;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

footer .footer-map iframe {
  width: 100%;
  height: 100%;
}

footer .footer-text {
  color: white;
  font-family: "Exo 2", sans-serif;
}

footer .footer-text .footer-text-title h3 {
  text-transform: uppercase;
}

footer .footer-text .footer-text-blackes {
  padding: 20px;
}

footer .footer-text .footer-text-blackes a {
  text-decoration: none;
  color: white;
}

footer .footer-text .footer-text-blackes a i {
  margin: 0 20px;
  font-size: 2.5rem;
}

footer .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
}

footer .footer-logo img {
  max-width: 50%;
}

@media screen and (max-width: 850px) {
  footer .footer-logo img {
    max-width: 100%;
  }
}

@media screen and (max-width: 750px) {
  footer {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  footer .footer-map iframe {
    height: 300px;
  }
  footer .footer-text {
    margin-left: 30px;
  }
  footer .footer-text .footer-text-title h3 {
    text-transform: uppercase;
  }
  footer .footer-text .footer-text-blackes {
    padding: 20px;
  }
  footer .footer-logo img {
    max-width: 50%;
  }
}

@media screen and (max-width: 450px) {
  footer .footer-text {
    margin-left: 10px;
  }
  footer .footer-logo img {
    max-width: 80%;
  }
}

/* BTN-WHATSAPP */
.btn-wts {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 50000;
  cursor: pointer;
}

.btn-wts img {
  max-width: 100%;
}

.mascara {
  display: none;
  position: fixed;
  z-index: 50000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.mascara .contenido {
  border-radius: 10px;
  -webkit-animation: modal 1s;
          animation: modal 1s;
  position: fixed;
  top: 15vh;
  left: 10vw;
  right: 10vw;
  margin: auto;
  font-family: "Exo 2", sans-serif;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: auto;
  max-width: 450px;
}

.mascara .contenido .modal-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mascara .contenido .modal-title h3 {
  padding-left: 10px;
}

.mascara .contenido .modal-title img {
  max-width: 10%;
}

.mascara .contenido .modal-body p {
  font-size: 1.2rem;
}

.mascara .contenido .modal-footer h3 {
  text-align: center;
}

.mascara .contenido button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  font-family: "Exo 2", sans-serif;
  padding: 8px 35px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}

.mascara .contenido button:hover {
  background-color: white;
  color: black;
}

@-webkit-keyframes modal {
  0% {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
}

@keyframes modal {
  0% {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
}

/* SLIDER */
@-webkit-keyframes slidejs {
  0%, 85% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
            clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@keyframes slidejs {
  0%, 85% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
            clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}

@-webkit-keyframes textjs {
  0%, 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes textjs {
  0%, 90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.contenedor-slider {
  position: relative;
  height: 90vh;
  width: 100%;
  margin-top: 30px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img, .slide picture {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.slideAnimado {
  z-index: 100;
  -webkit-animation-name: slidejs;
          animation-name: slidejs;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.texto-slider {
  display: none;
  position: absolute;
  width: 250px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 15px;
  -webkit-box-shadow: 2px 10px 30px black;
          box-shadow: 2px 10px 30px black;
  padding: 20px 30px;
  font-family: "Exo 2", sans-serif;
}

.texto-slider h3 {
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
}

.texto-slider-show {
  display: block;
  -webkit-animation-name: textjs;
          animation-name: textjs;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media screen and (max-width: 850px) {
  .texto-slider {
    right: 10px;
    width: 60%;
  }
}
/*# sourceMappingURL=main.css.map */

.social-bar a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin: 3px 0;
  background: #000;
  color: #fff;
  border-radius: 0 8px 8px 0;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s;
}
.social-bar a:hover {
  background: #333;
  transform: translateX(5px);
}
