﻿/* general */
:root {
  --scrollbar-background-color: #00000000;
  --scrollbar-background-color-scrolling: rgb(180, 0, 0) !important;
  --scrollbar-color: var(--scrollbar-background-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  }

  html {
    scroll-behavior: smooth;
  }
/* ------------------------------------------------------------------------------- Pagina Estilo Scrollbar */

::-webkit-scrollbar {
  z-index: 1;
  display: block;
  width: 16px;
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-track {
  background-color: var(--scrollbar-background-color);
}

::-webkit-scrollbar-track-piece {
  background-color: var(--scrollbar-background-color);
}

body {
  background: #000;
  overflow: overlay;
  --scrollbar-color: var(--scrollbar-background-color);
   /* no seleccionar texto */
   -webkit-touch-callout: none; /* iOS Safari */
   -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
      -moz-user-select: none; /* Old versions of Firefox */
       -ms-user-select: none; /* Internet Explorer/Edge */
           user-select: none; /* Non-prefixed version, currently
                                 supported by Chrome, Edge, Opera and Firefox */
}

body.scrolling {
  --scrollbar-color: var(--scrollbar-background-color-scrolling);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-background-color);
  border: 5.8px solid transparent;
  border-radius: 24px;
  box-shadow: 4px 0px 0px 4px var(--scrollbar-color) inset;
}

/* ------------------------------------------------------------------------------- Pagina Estilo Scrollbar */

#preloader {
  background: #15191F url(../assets/icon/spinner.gif) no-repeat center center;
  background-size: 15%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 10000;
  filter: hue-rotate(90deg);
  -webkit-filter: hue-rotate(90deg);
}



/* Flecha Subuir -----------------*/
.ir-arriba {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 25px;
  height: 38px;
  border-radius: 50%;
  /* background: rgba(2,2,2,0.7); */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index:100;
  /* border: 1px solid red; */
}

.ir-arriba img {
  width: 25px;
}


/* Logo -----------------*/
.Logo {
  height: 40px;
  padding: 0 40px;
}
  .logo_hov:hover {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    /*Firefox*/-webkit-transform: scale(1.2);
    /*Chrome-Safari*/-o-transform: scale(1.2);
    /*Opera*/-ms-transform: scale(1.2);
    /*IE9*/color: #1a1a1a;
    z-index: 1000;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/* Nuevo Nav -----------------*/
.nav {
  background:#000;
  color: #fff;
  top: -80px;
}

.nav__container {
  display: flex;
  height: 66px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  position: fixed;
  background: #000;
  opacity: .9;
}

.nav__menu {
  display: grid;
  grid-auto-flow: column;
  gap: 3em;
  padding: 0 40px;
}

.nav__item {
  font-family: "Raleway", Sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  --clippy: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.nav__item::after {
  content: "";
  display: block;
  background: #e21313;
  width: 90%;
  margin-top: 3px;
  height: 1px;
  clip-path: var(--clippy);
  transition: clip-path .5s;
  -webkit-transition: clip-path .5s;
  -moz-transition: clip-path .5s;
  -ms-transition: clip-path .5s;
  -o-transition: clip-path .5s;
}

.nav__item:hover {
  --clippy:polygon(0 0, 100% 0, 100% 100%, 0 100%);
}


.nav__label, .nav__input {
  display: none;
}

.nav__img {
  width: 80%;
}


/* FINALIZA NAV */

.topnav {
  padding-right: 60px;
  overflow: hidden;
  background-color: transparent;
  -webkit-transition: background-color .7s;
  z-index: 3;
  text-align: center;
}

.topnav a {
  color: white;
  float: right;
  display: block;
  text-align: center;
  padding: 40px 16px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  /*Firefox*/-webkit-transition: 0.5s ease;
  /*Chrome-Safari*/-o-transition: 0.5s ease;
  /*Opera*/z-index: 3;
  -webkit-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}
  .topnav .login-color {
    color: rgb(192, 3, 3);
  }


.topnav .icon {
  display: none;
  z-index: 3;
}

.insta{
  position: relative;
  height: 16px;
  width: 16px;
  top: -2px;
}

 /*-------------------------------------------------------------------------------------------------------------------------*/
 .animado {
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.mostrarArriba {
  animation: mostrarArriba 1s;
  -webkit-animation: mostrarArriba 1s;
}

@keyframes mostrarArriba{
  0% {
    transform: translateY(60px);
    -webkit-transform: translateY(60px);
    -moz-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
}
  100% {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
}


 .container_frase {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #000;
  color: #FFF;
  font-family: "Raleway", Sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
  border-bottom: solid #A2A2A2 1px;
}

.frase_title {
  position: relative;
  margin-top: 5%;
  margin-bottom: 5%;
  padding: 2% 2% 0% 2%;
  width: fit-content;
  color: #FFF;
  font-size: 65px;
  font-weight: 500;
  box-sizing: border-box;
  word-spacing: 160px;
  /* outline: 1px solid red; */
}

.frase_cuerpo  {
  color: #FFF;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.3em;
  letter-spacing: 0px;
  margin: 2% 0% 0% 0%;
  box-sizing: border-box;
  width: 32%;
  margin-right: 10%;
  font-family: "Raleway", Sans-serif;
  text-align: justify;
  /* border: 1px solid red; */
}

/* SECCION SOBRE NOSOTROS */
section.contenedor {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

section.contenido {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #000;
}

section.contenido {
  display: none;
}

.tit-nosotros {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #000;
  width: fit-content;
  height: fit-content; 
  /* text-align: center; */
  color: #fff;
  text-transform: uppercase;
  padding-top: 20px;
  margin-right: 10px;
  font-family: Roboto,sans-serif;
  font-weight: 500;
  font-size: 25px;
  /* border: 1px solid red; */
}

button.boton {
  background: none;
  border: none;
  cursor: pointer;
  padding-left: 40px;
}

.boton img {
  width: 25px;
}


article {
  font-size: 15px;
  width: 33,3%;
  padding-left: 20px;
  padding-right: 20px;
}

article img {
  width: 60px;
}

article .titulos {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 45px;
  font-size: 15px;
}

article.parraf {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

article.parraf img {
  margin-bottom: 10px;
}

article.parraf p {
  text-align: justify;
  font-size: 15px;
  font-weight: 400;
  font-family: "Raleway", Sans-serif;
}




  
/* VIDEO RESPONSIVE PRINCIPAL */
.video-responsive {
  position: relative;
  width: 100%;
  height: 100%;
}


/* Swiper */
.swiper {
  width: 100%;
}

.swiper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper .swiper-pagination {
  --swiper-pagination-color: white;
  --swiper-pagination-bullet-size: 1px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.25;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 2px;
}

.swiper-button-prev, .swiper-button-next {
  --swiper-navigation-size: 25px;
  --swiper-theme-color: #fff;
}


.swiper-slide {
  background-size: cover;
  background-position: center center;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.swiper-button-prev, .swiper-button-next {
  color: #fff;
  text-shadow: 3px 1px 5px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-progressbar {
  background-color: #990000;
  color: #990000;
  width: 16px;
  height: 16px;
}

/* SOCIAL-MEDIA */

.social-media {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 5px 5px 5px 5px;
  z-index: 2000;
  top: 30%;
  right: 20px;
  height: 70px;
  width: fit-content;
  position: fixed;
  font-size: inherit;
  text-rendering: auto;
  -webkit-border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -ms-border-radius: 5px 5px 5px 5px;
  -o-border-radius: 5px 5px 5px 5px;
}

.social-media  .imagen {
  width: 18px;
  height: auto;
  transition: transform 0.25s;
  -webkit-transition: transform 0.25s;
  -moz-transition: transform 0.25s;
  -ms-transition: transform 0.25s;
  -o-transition: transform 0.25s;
  transform: scale(var(--escala, 1));
  -webkit-transform: scale(var(--escala, 1));
  -moz-transform: scale(var(--escala, 1));
  -ms-transform: scale(var(--escala, 1));
  -o-transform: scale(var(--escala, 1));
}

.social-media .imagen:hover {
  --escala: 1.2;
  cursor: pointer;
}

/* OTRA GALERIA*/

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  border-style: solid;
  border-width: 0.7px 0px 0px 0px;
  border-color: #A2A2A2;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: 0px;
  border-bottom: 1px solid #fff;
  padding: 0% 1% 0% 0%;
  /* border: 1px solid red; */
  box-sizing: border-box;
  overflow: hidden;
}


.info-gallery {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: stretch;
  background: #000000;
  z-index:999;
  width: 30%;
  height: 700px;
  border-style: solid;
  border-width: 0px 0.7px 0px 0px;
  border-color: #A2A2A2;
  padding: 10px 5px 25px 5px;
  /*border: 1px solid red;*/
}

.datos {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  /* border: 1px solid blue; */
}

.proyec {
  display: flex;
  flex-direction: column;
  width: fit-content;
  /* border: 1px solid #ff02d5; */
  margin-top: 15px;
}

.proyec p.titulo {
  color: #D5D5D5;
  font-family: "Raleway", Sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.3em;
}

.proyec h2.subti {
  color: #FFF;
  font-family: "Raleway", Sans-serif;
  font-size: 25px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0px;
  padding: 10px 0px 0px 0px;
}

.tipologia {
  /* border: 1px solid green; */
  /* position: relative; */
  width: 90%;
  /* inline-size: auto; */
  position: relative;
  bottom: -240px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


.tipologia .tipo p.titulo  {
  font-size: 10px;
  color: #D5D5D5;
  font-family: "Raleway", Sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.3em;

}

.tipologia .tipo p {
  color: #fff;
  font-family: "Raleway", Sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7em;
}



.tipologia .ubi p.titulo  {
  font-size: 10px;
  color: #D5D5D5;
  font-family: "Raleway", Sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.3em;
}

.tipologia .ubi p {
  color: #fff;
  font-family: "Raleway", Sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7em;
  /* border: 1px solid blue; */
}

.tipologia .anio p.titulo {
  font-size: 10px;
  color: #D5D5D5;
  font-family: "Raleway", Sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.3em;
}

.tipologia .anio p {
  color: #fff;
  font-family: "Raleway", Sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7em;
}

.btn {
  width: 150px;
  font-family: "Raleway", Sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: #0D251000;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 20px 20px 20px 20px;
  padding: 10px 20px 10px 20px;
  line-height: 1;
  text-transform: uppercase;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
}

.btn:hover {
  color: #000;
  background-color: #ffffff;
}

.btn img {
  width: 10px;
  color: #fff;
}

/* Swiper DOS */
.swiper2 {
  width: 70%;
  overflow: hidden;
  height: 700px;
  padding: 15px 0px 15px 15px;
  z-index: 999;
}

.swiper2 .swiper-slide {
  width: 50%;
  animation: scroll 20s linear  infinite ;
  -webkit-animation: scroll 20s linear  infinite ;
}



/* .image-container {
 height: 250px;
 width: 350px;
 border: 10px solid #fff;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
 overflow: hidden;
 cursor: pointer;
} */

.image-container .popup-image {
  position: fixed;
  top: 0; left: 0;
  background: rgba(0, 0, 0, 1);
  height: 100%;
  width: 100%;
  z-index: 10000;
  display: none;
}

.popup-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) ;
  -webkit-transform: translate(-50%, -50%) ;
  -moz-transform: translate(-50%, -50%) ;
  -ms-transform: translate(-50%, -50%) ;
  -o-transform: translate(-50%, -50%) ;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  width: 100%;
  object-fit: cover;
}


/* .popup-image span {
  width: 40px;
  height: 40px;
  
  top: 0;
  right: 40px;
  font-weight: bolder;
  cursor: pointer;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
} */

.popup-image span img {
  position: relative;
  top: 20px;
  left: 1550px;
  cursor: pointer;
  width: 35px;
  transition: transform .9s ease;
  -webkit-transition: transform .9s ease;
  -moz-transition: transform .9s ease;
  -ms-transition: transform .9s ease;
  -o-transition: transform .9s ease;
}


.popup-image span:hover  img{
  transform: scale(1.25);
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
}


@keyframes scroll {
  0%{
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
}
  100%{
    transform: translateX(calc(-200px * 6));
    -webkit-transform: translateX(calc(-200px * 6));
    -moz-transform: translateX(calc(-200px * 6));
    -ms-transform: translateX(calc(-200px * 6));
    -o-transform: translateX(calc(-200px * 6));
}
}


.swiper2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .swiper2 .swiper-slide {
  width: 50%;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  margin: 0% 0% 0% 1%;
} */



/* .swiper2 .swiper-pagination {
  --swiper-pagination-color: white;
  --swiper-pagination-bullet-size: 1px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.25;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 2px;
}

.swiper-button-prev2, .swiper-button-next2 {
  --swiper-navigation-size: 25px;
  --swiper-theme-color: #fff;
}

.swiper-button-prev, .swiper-button-next {
  color: #fff;
  text-shadow: 3px 1px 5px rgba(0, 0, 0, 0.1);
}


.swiper-pagination-progressbar {
  background-color: #990000;
  color: #990000;
  width: 16px;
  height: 16px;
} */

/* Media queries */
@media screen and (max-width: 800px) {
.ir-arriba {
  z-index: 1000;
  }
}


@media (max-width: 700px){

  .nav__label{
    display: block;
    cursor: pointer;
  }

  .nav__menu{
    /* border: 1px solid red; */
    z-index: 1000;
    position: fixed;
    top: 66px;
    bottom: 0;
    background: #000;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
    clip-path: circle(0 at center);
    transition: clip-path 1s ease-in-out ;
    -webkit-transition: clip-path 1s ease-in-out ;
    -moz-transition: clip-path 1s ease-in-out ;
    -ms-transition: clip-path 1s ease-in-out ;
    -o-transition: clip-path 1s ease-in-out ;
}

  .nav__input:checked + .nav__menu {
    clip-path: circle(100% at center);
  }

}

/* MEDIA QUERIE SECTOR FRASE */
@media (max-width: 768px){
  /* Frase_1 responsive */
  .container_frase {
    width: auto;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* border: 1px solid red; */
    padding-left: 10px;
  }

  .container_frase h2.frase_title {
    /* border: 1px solid blue; */
    width: fit-content;
    height: auto;
    font-size: 40px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    line-height: 1em;
  }

  .container_frase p.frase_cuerpo {
    flex-wrap: wrap;
    width: auto;
    color: #fff;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 2% 2% 0% 2%;
    text-align: justify;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    line-height: 1.3em;
    letter-spacing: 0px;
    /* border: 1px solid green; */
  }

  /*  SOBRE NOSOTROS */
  section.contenido {
    width: 100%;
    height: fit-content;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
  }

  article.parraf {
    margin-bottom: 80px;
  }

  .container {
      /* background: burlywood; */
      width: 100%;
      height: fit-content;
    }
.info-gallery {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      /* background: cadetblue; */
      width: 100%;
      height: 300px;
      border-style: none;
      box-sizing: border-box;
      display: flex;
      flex-direction: row;
    }

    .datos {
      box-sizing: border-box;
      /* border: 1px solid red; */
      width: 100%;
      height: 75%;
      flex-wrap: wrap;
      display: block;
    } 

    .proyec {
      box-sizing: border-box;
      margin-top: 40px;
      margin-bottom: 20px;
    }

    .tipologia{
      /* border: 1px solid red; */
      width: 70%;
      height: 60%;
      bottom: auto;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      margin-bottom: 20px;
    }

    .tipologia p {
      line-height: 3;
    }

    .btn {
      box-sizing: border-box;
      width: 150px;
    }

    .btn img {
      width: 10px;
    }

   .swiper2 {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    z-index: 1000;
    overflow: hidden;
  }

    .swiper2 .swiper-slide {
      width: 100%;
      height: 200px;
      background-size: cover;
      background-position: center;
      object-fit: cover;
      margin: 0% 0% 0% 1%;
    }
    
    .image-container {
      border: 1px solid red;
    }

    .popup-image span img {
      position: absolute;
      top: 280px;
      left: 195px;
      cursor: pointer;
      width: 25px;
    }
}

