/**
* Template Name: iPortfolio
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --main-color: #333333;
    --ora-color: #ffcd00;
    --gris: #808080;
    --white: #fff;
}
@font-face {
	font-family: 'Neutra-Bold';
    src: url("fonts/Neutra-Display-Bold.woff");
}
@font-face {
	font-family: 'Neutra-Light';
    src: url("fonts/Neutra-Display-Light.woff");
}
body {
  font-family: "Neutra-Light", sans-serif;
  color: var(--main-color);
    overflow-x: hidden;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

a:hover {
  color: var(--a-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--ora-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2eafec;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  font-family: "Neutra-Bold", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #ffffff;
  overflow-y: auto;
}

@keyframes crece {
  0% {
    height: 0%;
  } 
  50% {
    height: 40%;
  }
  100% {
    height: 85%;
  }
}
.header_borde:before,
.header_det {
    content: "";
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    /*width: 50%;*/
    border-right: 1px solid var(--main-color);
    animation: crece 0.3s linear;
}
#header.header_det {
    top: 5%;
}

#header #header-in {
    height: 100%;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 200px;
  /*border: 8px solid #2c2f3f;*/
    border: none;
    cursor: pointer;
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a,
#header .profile h1 a:hover {
  color: #fff;
  text-decoration: none;
}

.footer .social-links a {
  display: inline-block;
  background: none;
  line-height: 1;
  padding: 2px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--ora-color);
  color: #fff;
  text-decoration: none;
}

.footer .social-links a img {
    width: 32px;
}

#mi_borde, #mi_borde2 {
    position: fixed;
    top: 30px;
    left: 300px;
    bottom: 30px;
    width: 10px;
    transition: all ease-in-out 0.5s;
    z-index: 9997;
    transition: all 0.5s;
    padding: 0 15px;
    background: none;
    overflow-y: auto;
    border-left: 1px solid var(--main-color);
}

#main {
    margin-left: 300px;
}

#header-mobile {
    font-family: "Neutra-Bold", sans-serif;
    position: fixed;
    transition: all ease-in-out 0.5s;
    z-index: 9997;
    transition: all 0.5s;
    background: #ffffff;
    overflow: hidden;
    padding-bottom: 40px;
}
#header-mobile .profile {
    padding: 50px 120px 0 120px;
}
#header-mobile .profile img {
    cursor: pointer;
}
#header-mobile .nav-menu {
    padding: 30px;
}
#header-mobile .divisor {
    margin: 0 40px;
    border-bottom: 1px var(--main-color) solid;
}
#header-mobile .nav-menu .active::before  {
    content: "";
    position: relative;
    margin-top: 15px;
    width: 15px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 270px 0 0 0;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: var(--main-color);
  padding: 3px 0px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: var(--main-color);
}

.nav-menu .active {
  text-decoration: none;
    
}

.nav-menu .active::before  {
    content: "";
    position: absolute;
    top: 70%;
    height: 4px;
    width: 20px;
    background: var(--ora-color);
    left: 100%;
    margin-left: 5px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: var(--ora-color);;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
    width: 300px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100vw;
  height: 100vh;
  background: url("../img/inicio/1.jpg") center right no-repeat;
  /*background-size: 95%; */
  background-size: 85%;
}

#hero:before {
  content: "";
  /*background: rgba(5, 13, 24, 0.3);*/
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: var(--white);
}

#hero p,
#hero_mobile p {
    color: var(--white);
    font-size: 20px;
    font-family: "Neutra-Bold", sans-serif;
    /*margin: 42% 55%;*/
    white-space:nowrap;
    position: relative;
    bottom: 150px;
    text-align: center;
}

#hero p span,
#hero_mobile p span {
    color: #fff;
    padding-bottom: 4px;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--ora-color);
    cursor: pointer;
}

#hero_mobile {
    width: 100vw;
    height: 100vh;
    padding-left: 300px;
}

#hero_mobile .container-fluid {
    padding: 0;
}

#hero_mobile .swiper .swiper-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--ora-color);
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

#footer-mob1 {
    /*margin-top: -120px;*/
    width: 100%;
    margin: 0;
    padding: 20px 0;
    position: fixed;
    z-index: 9997;
    transition: all 0.5s;
}
/*--------------------------------------------------------------
# Colectivo
--------------------------------------------------------------*/
#colectivo {
    padding-top: 90px;
    padding-bottom: 100px;
}
#colectivo .content p {
    color: var(--main-color);
    padding-left: 90px;
    margin-bottom: 30px;
    font-size: 22px;
    font-family: "Neutra-Bold", sans-serif;
    text-align: justify;
    line-height: 27px;
}
#colectivo .content p.gris {
    color: var(--gris);
    font-size: 20px;
}

#colectivo .colectivo-img {
    padding-left: 100px;
}

#colectivo .content p small {
    font-size: 14px;
}

#colectivo .text-mu {
    font-size: 24px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #333333;
    -webkit-text-fill-color: var(--ora-color);
}

#colectivo .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

#colectivo .content ul {
  list-style: none;
  padding: 0;
}

#colectivo .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

#colectivo .content ul strong {
  margin-right: 10px;
}

#colectivo .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--ora-color);
  line-height: 0;
}

#colectivo .content p:last-child {
  margin-bottom: 0;
}

#colectivo .content p.cred {
    text-align: left;
}
#colectivo .content p.cred2 {
    margin-top: 60px;
}

/*--------------------------------------------------------------
# Proyectos
--------------------------------------------------------------*/
#proyectos {
    padding: 30px 0;
}
#proyectos .container-fluid {
    /*width: 90%;*/
    margin-left: 40px;
}
#proyectos .col {
    margin: 0;
    padding: 0;
    width: 100%;
}
#proyectos .div_no_responsivo .rowp0 {
    margin-top: -10px;
}
#proyectos .div_no_responsivo .rowp1 {
    margin-top: -40px;
}
#proyectos .div_no_responsivo .rowp2 {
    margin-top: -30px;
}
/*#proyectos .div_no_responsivo .row .col img.img-fluid,*/
#proyectos .div_no_responsivo .d-flex img.img-fluid {
    /*width: 85%;*/
    width: 220px;
    /*height: 140px;*/
    object-fit: contain;
}
#proyectos .div_no_responsivo .row .col span img {
    /*width: 80%;*/
    width: 200px;
    object-fit: contain;
}
#proyectos .col span, 
#proyectos .proyectos-mobile span {
    transition: opacity .4s ease-in;
    -moz-transition: opacity .4s ease-in;
    -webkit-transition: opacity .4s ease-in;
    -o-transition: opacity .4s ease-in;
    
    position: relative;
    /*visibility: hidden;*/
    opacity: 0;
}
/*#proyectos .col:hover span {*/
#proyectos .col a:hover span {
    /*visibility: visible;*/
    opacity: 1;
}
#proyectos .col img.img2 {
    margin-top: 70px;
}
#proyectos .col img.img14 {
    margin-left: -70px; margin-top: -35px;
}
#proyectos .col img.img18 {
    margin-left: -30px; margin-top: -50px;
}
#proyectos .col img.img19 {
    margin-top: 15px; margin-left: 50px;
}
#proyectos .col img.img22 {
    margin-left: -20px;
}
#proyectos .col img.imgsp {
    width: 150px;
    object-fit: contain;
    margin-left: 80px;
    margin-top: 80px;
}
#proyectos .col span.s1 {
    left: 130px;
    bottom: 125px;
}
#proyectos .col span.s2 {
    left: 30px;
    bottom: 40px;
}
#proyectos .col span.s3 {
    left: 86px;
    bottom: 46px;
}
#proyectos .col span.s4 {
    left: 220px;
    bottom: 45px;
}
#proyectos .col span.s5 {
    left: 110px;
    bottom: 140px;
}
#proyectos .col span.s6 {
    left: 60px;
    bottom: 155px;
}
#proyectos .col span.s7 {
    left: 58px;
    bottom: 80px;
}
#proyectos .col span.s8 {
    left: 80px;
    bottom: 135px;
}
#proyectos .col span.s9 {
    left: 160px;
    bottom: 125px;
}
#proyectos .col span.s10 {
    left: 165px;
    bottom: 90px;
}
#proyectos .col span.s11 {
    left: 100px;
    bottom: 64px;
}
#proyectos .col span.s12 {
    left: 115px;
    bottom: 75px;
}
#proyectos .col span.s13 {
    left: 190px;
    bottom: 100px;
}
#proyectos .col span.s14 {
    right: 70px;
    bottom: -30px;
}
#proyectos .col span.s15 {
    left: 85px;
    bottom: 40px;
}
#proyectos .col span.s16 {
    left: 150px;
    bottom: 95px;
}
#proyectos .col span.s17 {
    left: 170px;
    bottom: 115px;
}
#proyectos .col span.s18 {
    left: 80px;
    bottom: 95px;
}
#proyectos .col span.s19 {
    left: 170px;
    bottom: 135px;
}
#proyectos .col span.s20 {
    left: 130px;
    bottom: 50px;
}
#proyectos .col span.s21 {
    left: 120px;
    bottom: 40px;
}
#proyectos .col span.s22 {
    left: 100px;
    bottom: 60px;
}
#proyectos .col span.s23 {
    left: 225px;
    bottom: 60px;
}
#proyectos .col span.sp {
    left: 130px;
    bottom: 25px;
    z-index: -1;
}

/*#proyectos img {
    width: 90%;
}
#proyectos .m1:before {
    content: '';
}
#proyectos .a1:hover > .m1 {
    content: url('../img/txt/a1.png');
    position: absolute;
    width: 10%;
    margin: 2% 0 0 7%;
    opacity: 1;
}

.image-map-container {
  position: relative;
  display: inline-block;
}

.image-map-container img {
   display: block;
    max-width: 98%;
}

.map-selector {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: #546E7A00;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  transition-property: top, left, right, bottom; 
}

.map-selector.hover {
    width: 10%;
    position: absolute;
}
.map-selector.hovera1_s {
    content: url('../img/txt/a1.png');
    margin: 2% 0 0 7%;
}
.map-selector:after {
  content: '';
  position: absolute;
  top: inherit;
  right: inherit;
  bottom: inherit;
  left: inherit;
  background: currentColor; 
  transition-duration: .3s;
  transition-timing-function: ease-in;
  transition-property: top, left, right, bottom;
  pointer-events: none;
   
}*/

#proyectos .proyectos-mobile {
    width: 100%;
    /*height: 800px;*/
    height: auto;
    overflow: hidden;
    margin-bottom: 100px;
}
#proyectos .proyectos-mobile .carousel-inner .carousel-item {
    cursor: pointer;
}
#proyectos .proyectos-mobile .carousel-inner {
    width: 100%;
    padding: 30px 70px 30px 70px;
} 

/*#proyectos .proyectos-mobile .carousel-inner .carousel-item a,*/
#proyectos .proyectos-mobile .carousel-inner .carousel-item img {
    width: 180px;
    height: 180px;
    display: block;
    
    object-fit: contain;
}
#proyectos .proyectos-mobile .carousel-inner .carousel-item span {
    display: none;
}

/*#proyectos .proyectos-mobile .carousel-inner .carousel-item a img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}*/

#proyectos .proyectos-mobile .carousel-control.left,
#proyectos .proyectos-mobile .carousel-control.right {
    color: var(--ora-color);
    font-family: "boxicons";
    font-size: 45px;
}
#proyectos .proyectos-mobile .carousel-control-next:after,
#proyectos .proyectos-mobile .carousel-control.left:after {
    color: var(--ora-color);
    content: "\ed42";
}

#proyectos .proyectos-mobile .carousel-control-prev:after,
#proyectos .proyectos-mobile .carousel-control.right:after {
    color: var(--ora-color);
    content: "\ed35";
}

#proyectos .proyectos-mobile .carousel-inner.vertical {
    height: 100%; /*Note: set specific height here if not, there will be some issues with IE browser*/
    margin: 0 5%;
}

#proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item {
  -webkit-transition: .6s ease-in-out top;
  -o-transition: .6s ease-in-out top;
  transition: .6s ease-in-out top;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  #proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
    -o-transition: -o-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
  }
  #proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item.carousel-item-next,
  #proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item.active.carousel-item-end {
      -webkit-transform: translate3d(0, 33.33%, 0);
      transform: translate3d(0, 33.33%, 0);
      top: 0;
  }
  #proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item.carousel-item-prev,
  #proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item.active.carousel-item-start {
      -webkit-transform: translate3d(0, -33.33%, 0);
      transform: translate3d(0, -33.33%, 0);
      top: 0;
      
  }
  #proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item.carousel-item-next.carousel-item-start,
  #proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item.carousel-item-prev.carousel-item-end,
  #proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item.active {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      top: 0;
      
  }
}

#proyectos .proyectos-mobile .carousel-inner.vertical > .active {
  top: 0;
}
#proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item-next,
#proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item-prev {
  top: 0;
  height: 100%;
  width: auto;
}
#proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item-next {
  left: 0;
  top: 33.33%;
  right:0;
}
#proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item-prev {
  left: 0;
  top: -33.33%;
  right:0;
}
#proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item-next.carousel-item-start,
#proyectos .proyectos-mobile .carousel-inner.vertical > .carousel-item-prev.carousel-item-end {
  top: 0;
}
#proyectos .proyectos-mobile .carousel-inner.vertical > .active.carousel-item-start {
  left: 0;
  top: -33.33%;
  right:0;
}
#proyectos .proyectos-mobile .carousel-inner.vertical > .active.carousel-item-end {
  left: 0;
  top: 33.33%;
  right:0;
}

#proyectos .proyectos-mobile #carousel-pager .carousel-control.left {
    bottom: initial;
    width: 100%;
}
#proyectos .proyectos-mobile #carousel-pager .carousel-control.right {
    top: initial;
    width: 100%;
}

/*--------------------------------------------------------------
# + Proyectos
--------------------------------------------------------------*/
.mas_proyectos {
    padding: 80px 0;
    /*margin-bottom: 130px;*/
}
.mas_proyectos .row-lista {
    padding-left: 90px;    
    color: var(--gris);
    font-family: "Neutra-Bold", sans-serif;
}
.mas_proyectos h4 {
    /*font-size: 22px;*/
    font-family: "Neutra-Bold", sans-serif;
}

.mas_proyectos .lista-proy {
    margin-top: 100px;
    font-size: 20px;
    line-height: 10px;
}
.mas_proyectos img {
    width: 250px;
    height: 190px;
    object-fit: contain;
    
}

/*.mas_proyectos .lista-proy a {
    color: var(--gris);
    
    --b: 0.1em;  
    --c: var(--ora-color); 

    padding-block: var(--b);
    background: 
        linear-gradient(var(--c) 50%,var(--gris) 0) 0% calc(100% - var(--_p,0%))/100% 200%,
        linear-gradient(var(--c) 0 0) 0% var(--_p,0%)/var(--_p,0%) var(--b) no-repeat;
      -webkit-background-clip: text,padding-box;
              background-clip: text,padding-box;
      transition: .3s var(--_s,0s) linear,background-size .3s calc(.3s - var(--_s,0s));
}
.mas_proyectos .lista-proy a:hover {
    color: var(--ora-color);
    
    --_p: 100%;
  --_s: .3s;
}*/

/*--------------------------------------------------------------
# Proyecto Detalles
--------------------------------------------------------------*/
.proyecto-det {
  padding-top: 40px;
}
.proyecto-det .proyecto-det-slider img {
  width: 100%;
}

.proyecto-det .proyecto-det-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.proyecto-det .proyecto-det-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--ora-color);
}

.proyecto-det .proyecto-det-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--ora-color);
}

.proyecto-det .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(5, 13, 24, 0.08);
}

.proyecto-det .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.proyecto-det .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.proyecto-det .portfolio-info ul li+li {
  margin-top: 10px;
}

.proyecto-det .portfolio-description {
  padding-top: 30px;
}

.proyecto-det .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.proyecto-det .portfolio-description p {
  padding: 0;
}

.proyecto-det .proyecto-det-slider {
    width: 600px;
    height: 600px;
    /*height: 650px;*/
}

.proyecto-det .proyecto-det-slider .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proyecto-det .proyecto-det-slider .swiper-slide img {
    display: block;
    width: 100%;
	height: 100%;
    object-fit: contain;
}

.proyecto-det .gallery-thumbs {
    /*height: 20%;*/
    /*width: 60%;*/
    width: 650px;
	box-sizing: border-box;
    margin-top: 10px;
    padding: 0 40px;
	/*padding: 10px 0;*/
    /*margin: 30px 50px 0 50px;
    padding-right: 100px;*/
}
.proyecto-det .gallery-thumbs .swiper-slide {
	margin-right: 20px;
    /*margin-left: 30px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.proyecto-det .gallery-thumbs .swiper-slide img {
    width: 130px;
	height: 130px;
    object-fit: contain;
    opacity: 0.4;
    border: none;
}
.proyecto-det .swiper-button-prev, 
.proyecto-det .swiper-button-next {
    color: var(--ora-color);
}
.proyecto-det .gallery-thumbs .swiper-slide-thumb-active img {
    opacity: 1;
    border: 5px var(--ora-color) solid;
}
.proyecto-det .datos-p {
    margin: 15px 40px 0 40px;
}
.proyecto-det .datos-p div {
    font-family: "Neutra-Bold", sans-serif;
    font-size: 16px;
    color: var(--gris);
    text-transform: uppercase;
    text-align: center;
    margin-top: 10px;
}
.proyecto-det .swiper-button-next, .proyecto-det .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset,0px);
  left: auto;
}
.proyecto-det .swiper-button-prev, .proyecto-det  .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset,0px);
  right: auto;
}
/*.proyecto-det .swiper-button-next {
    right: -20px;
  left: auto;
}
.proyecto-det .swiper-button-prev {
  left: -20px; 
  right: auto;
}*/

/*.swiper-button-prev {
    left: -20px;
  }
  .swiper-button-next {
    right: -20px;
  }*/

.div_responsivo/*, .proyecto-det #info2*/ {
    display: none !important;
}
.div_no_responsivo, .proyecto-det #info1 {
    display: block !important;
}
.proyecto-det #info1 {
    display: flex !important;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 50px 0;
  color: var(--main-color);
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: var(--white);
}
/*.footer_borde:before {
    content: "";
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    border-right: 1px solid var(--main-color);
    animation: crece 0.3s linear;
}
.footer_borde {
    top: 0%;
}*/
.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

/************************************************
                 RESPONSIVO
/************************************************/
/* (2650) Full HD Display */
@media  screen and (max-width: 2560px) {
    #hero_mobile p {
        bottom: 250px;
    }
    #proyectos .div_no_responsivo .rowp0 {
        margin-top: 50px;
    }
    #proyectos .div_no_responsivo .d-flex img.img-fluid {
        /* Imágenes de proyectos */
        width: 310px;
    }
    #proyectos .div_no_responsivo .row .col span img {
        /* Nombre */
        width: 330px;
    }
    #proyectos .col img.imgsp {
        width: 280px;
    }
    #proyectos {
        margin-bottom: 150px;
    }
    .proyecto-det .proyecto-det-slider {
        height: 750px;
    }
    .proyecto-det .gallery-thumbs .swiper-slide img {
        width: 200px;
        height: 200px;
    }
    #colectivo {
        padding-top: 150px;
        padding-bottom: 150px;
    }
}
 
/* (1920x1080) Full HD Display */
@media  screen and (max-width: 1920px) {
    #hero_mobile p {
        bottom: 150px;
    }
    #proyectos .div_no_responsivo .rowp0 {
        margin-top: 15px;
    }
    #proyectos .div_no_responsivo .rowp1 {
        margin-top: -20px;
    }
    #proyectos .div_no_responsivo .rowp2 {
        margin-top: -20px;
    }
    #proyectos .div_no_responsivo .d-flex img.img-fluid {
        /* Imágenes de proyectos */
        width: 210px;
    }
    #proyectos .div_no_responsivo .row .col span img {
        /* Nombre */
        width: 210px;
    }
    #proyectos .col img.imgsp {
        width: 140px;
    }
    .proyecto-det .proyecto-det-slider {
        height: 650px;
    }
    .proyecto-det .gallery-thumbs .swiper-slide img {
        width: 130px;
        height: 130px;
    }
    #colectivo {
        padding-bottom: 150px;
        padding-top: 80px;
    }
}
/* (1680x1050) WSXGA+ Display */
@media  screen and (max-width: 1680px) {
    #hero_mobile {
        padding-left: 200px;
    }
    #hero_mobile p {
        bottom: 130px;
    }
    #proyectos .div_no_responsivo .rowp0 {
        margin-top: 15px;
    }
    #proyectos .div_no_responsivo .rowp1 {
        margin-top: -20px;
        margin-left: 5px;
    }
    #proyectos .div_no_responsivo .rowp2 {
        margin-top: -20px;
        margin-left: 5px;
    }
    .proyecto-det .proyecto-det-slider {
        height: 550px;
    }
    #proyectos .div_no_responsivo .d-flex img.img-fluid {
        /* Imágenes de proyectos */
        width: 200px;
    }
    #proyectos .div_no_responsivo .row .col span img {
        /* Nombre */
        width: 210px;
    }
    #proyectos .col img.img14 {
        margin-left: -50px;
    }
    #proyectos .col img.img22 {
        margin-left: 20px;
    }
    #proyectos .col img.imgsp {
        width: 140px;
        margin-right: 100px;
    }
    /**************/
    #proyectos .col span.s1 {
        left: 110px;
    }
    #proyectos .col span.s4 {
        left: 200px;
        bottom: 40px;
    }
    #proyectos .col span.s6 {
        left: 40px;
        bottom: 135px;
    }
    #proyectos .col span.s8 {
        left: 60px;
    }
    #proyectos .col span.s10 {
        left: 160px;
        bottom: 80px;
    }
    #proyectos .col span.s13 {
        left: 150px;
        bottom: 100px;
    }
    #proyectos .col span.s14 {
        left: 20px;
        bottom: 40px;
    }
    #proyectos .col span.s15 {
        left: 70px;
    }
    #proyectos .col span.s17 {
        left: 150px;
    }
    #proyectos .col span.s19 {
        left: 140px;
        bottom: 125px;
    }
    #proyectos .col span.s21 {
        left: 120px;
        bottom: 60px;
    }
    #proyectos .col span.s22 {
        left: 110px;
        bottom: 50px;
    }
}
/* (1600x900) HD+ Display */
@media  screen and (max-width: 1600px) {
    #hero_mobile p {
        bottom: 100px;
    }
    #proyectos .div_no_responsivo .d-flex img.img-fluid {
        /* Imágenes de proyectos */
        width: 180px;
    }
    #proyectos .div_no_responsivo .row .col span img {
        /* Nombre */
        width: 180px;
    }
    #proyectos {
        padding-top: 70px;
        padding-bottom: 220px;
    }
    #proyectos .div_no_responsivo .rowp0 {
        margin-top: -10px;
    }
    #proyectos .div_no_responsivo .rowp1 {
        padding-right: 40px;
        margin-left: 20px;
        margin-top: -10px;
    }
    #proyectos .div_no_responsivo .rowp2 {
        margin-top: -10px;
    }
    #proyectos .col img.img2 {
        margin-right: 15px;
    }
    #proyectos .col img.img14 {
        margin-top: 15px;
    }
    #proyectos .col img.img22 {
        margin-left: 50px;
    }
    .proyecto-det .proyecto-det-slider {
        height: 680px;
    }
    #colectivo {
        padding-top: 150px;
    }
}
/* (1440x900) WXGA+ Display */
@media  screen and (max-width: 1440px) {
    #header .profile img {
        margin-bottom: 50px;
        width: 150px;
    }
    .nav-menu {
        padding: 50px 0 0 0;
    }
    #hero_mobile {
        padding-left: 185px;
    }
    /*#hero p {
        margin: 38% 50%;
    }*/
    #header {
        width: 200px;
    }
    #mi_borde, #mi_borde2 {
        left: 200px;
    }
    #main {
        margin-left: 200px;
    }
    #colectivo {
        padding-top: 100px;
        /*padding-bottom: 160px;*/
    }
    #colectivo .content p {
        font-size: 17px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    #proyectos .div_no_responsivo .rowp0 {
        margin-top: -20px;
    }
    #proyectos .div_no_responsivo .d-flex img.img-fluid {
        /* Imágenes de proyectos */
        width: 165px;
    }
    #proyectos .div_no_responsivo .row .col span img {
        /* Nombre */
        width: 165px;
    }
    #proyectos .col img.img14 {
        margin-left: -20px;
        margin-top: -15px;
    }
    #proyectos .col img.img19 {
        margin-left: 0;
    }
    #proyectos .col img.img22 {
        margin-left: 20px;
    }
    #proyectos .col img.imgsp {
        margin-top: 50px;
        margin-right: 70px;
        width: 120px;
    }
    #proyectos .div_no_responsivo .rowp1 {
        padding-right: 0;
        margin-top: -10px;
    }
    #proyectos .div_no_responsivo .rowp2 {
        margin-top: -40px;
    }
    .mas_proyectos {
        /*padding: 10px 0;*/
        padding-top: 0;
    }
    
    #proyectos .col span.s1 {
        left: 110px;
        bottom: 100px;
    }
    #proyectos .col span.s3 {
        left: 60px;
        bottom: 35px;
    }
    #proyectos .col span.s4 {
        left: 180px;
    }
    #proyectos .col span.s5 {
        bottom: 120px;
    }
    #proyectos .col span.s6 {
        left: 40px;
        bottom: 125px;
    }
    #proyectos .col span.s8 {
        left: 58px;
        bottom: 50px;
    }
    #proyectos .col span.s9 {
        left: 130px;
        bottom: 100px;
    }
    #proyectos .col span.s8 {
        left: 50px;
        bottom: 120px;
    }
    #proyectos .col span.s10 {
        left: 140px;
        bottom: 80px;
    }
    #proyectos .col span.s11 {
        left: 80px;
        bottom: 64px;
    }
    #proyectos .col span.s12 {
        left: 70px;
        bottom: 95px;
    }
    #proyectos .col span.s15 {
        left: 50px;
        bottom: 30px;
    }
    #proyectos .col span.s16 {
        left: 110px;
        bottom: 100px;
    }
    #proyectos .col span.s17 {
        left: 120px;
        bottom: 110px;
    }
    #proyectos .col span.s18 {
        left: 100px;
        bottom: 100px;
    }
    #proyectos .col span.s19 {
        left: 90px;
        bottom: 105px;
    }
    #proyectos .col span.s20 {
        left: 110px;
        bottom: 65px;
    }
    #proyectos .col span.s21 {
        left: 100px;
        bottom: 30px;
    }
    #proyectos .col span.s22 {
        left: 80px;
        bottom: 50px;
    }
    #proyectos .col span.s23 {
        left: 215px;
        bottom: 80px;
    }
    
    .mas_proyectos .lista-proy {
        margin-top: 20px;
        font-size: 18px;
        padding-top: 5px;
        max-height: 480px;
        overflow: auto;
    }
    .mas_proyectos img {
        width: 190px;
        height: 145px;
    }
    
    .proyecto-det .proyecto-det-slider {
        height: 450px;
    }
    .proyecto-det .gallery-thumbs .swiper-slide {
        margin-right: 5px
    }
    .proyecto-det .gallery-thumbs .swiper-slide img {
        width: 100px;
        height: 100px;
    }
    .footer {
        width: 200px;
    }
    .footer .social-links a {
        margin-right: 0;
    }
    .footer .social-links a img {
        width: 28px;
        height: 28px;
    }
}
/* (1366x768) WXGA Display */
@media  screen and (max-width: 1366px) {
    #header .profile img {
        margin: 10px auto;
        width: 150px;
    }
    .nav-menu {
        padding: 50px 0 0 0;
    }
    #hero_mobile p {
        bottom: 140px;
    }
    #header {
        width: 200px;
    }
    #mi_borde, #mi_borde2  {
        left: 200px;
    }
    #main {
        margin-left: 200px;
    }
    #proyectos {
        padding-top: 30px;
        margin-bottom: 100px;
    }
    #proyectos .div_no_responsivo .rowp0 {
        margin-top: 15px;
    }
    #proyectos .div_no_responsivo .rowp1 {
        margin-top: -40px;
    }
    #proyectos .div_no_responsivo .rowp2 {
        margin-top: -40px;
    }
    #proyectos .div_no_responsivo .d-flex img.img-fluid {
        /* Imágenes de proyectos */
        width: 140px;
    }
    #proyectos .div_no_responsivo .row .col span img {
        /* Nombre */
        width: 170px;
    }
    #proyectos .col img.img2 {
        margin-right: 50px;
    }
    #proyectos .col img.img14 {
        margin-top: -20px;
    }
    #proyectos .col img.img18 {
        margin-left: 0;
    }
    #proyectos .col img.imgsp {
        width: 120px;
        margin-left: 0;
    }
    #colectivo {
        padding-top: 40px;
        padding-bottom: 160px;
    }
    #colectivo .content p {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    #colectivo .content p.cred2 {
        margin-top: 30px;
    }
    #colectivo .colectivo-img {
        padding-left: 20px;
    }
    .mas_proyectos {
        padding: 30px 0;
    }
    .mas_proyectos .lista-proy {
        margin-top: 20px;
        font-size: 18px;
        
        max-height: 410px;
        overflow: auto;
    }
    .mas_proyectos img {
        width: 170px;
        height: 125px;
    }
    .proyecto-det .proyecto-det-slider {
        height: 400px;
    }
    .proyecto-det .gallery-thumbs .swiper-slide img {
        width: 100px;
        height: 100px;
    }
    .proyecto-det #info1.datos-p div {
        font-size: 90%;
    }
    .footer {
        width: 200px;
    }
    .footer .social-links a {
        margin-right: 0;
    }
    .footer .social-links a img {
        width: 28px;
        height: 28px;
    }
    /*******************************/
    #proyectos .col img.img2 {
        margin-top: 40px;
    }
    #proyectos .col span.s1 {
        left: 60px;
        bottom: 70px;
    }
    #proyectos .col span.s2 {
        left: 30px;
        bottom: 20px;
    }
    #proyectos .col span.s3 {
        left: 30px;
        bottom: 30px;
    }
    #proyectos .col span.s4 {
        left: 140px;
        bottom: 30px;
    }
    #proyectos .col span.s5 {
        left: 50px;
        bottom: 80px;
    }
    #proyectos .col span.s6 {
        left: 10px;
        bottom: 85px;
    }
    #proyectos .col span.s7 {
        left: 18px;
        bottom: 50px;
    }
    #proyectos .col span.s8 {
        left: 30px;
        bottom: 85px;
    }
    #proyectos .col span.s9 {
        left: 120px;
        bottom: 90px;
    }
    #proyectos .col span.s10 {
        left: 130px;
        bottom: 70px;
    }
    #proyectos .col span.s11 {
        left: 50px;
        bottom: 40px;
    }
    #proyectos .col span.s12 {
        left: 50px;
        bottom: 56px;
    }
    #proyectos .col span.s13 {
        left: 160px;
        bottom: 70px;
    }
    #proyectos .col span.s14 {
        left: 40px;
        bottom: 30px;
    }
    #proyectos .col span.s15 {
        left: 15px;
        bottom: 20px;
    }
    #proyectos .col span.s16 {
        left: 100px;
        bottom: 80px;
    }
    #proyectos .col span.s17 {
        left: 115px;
        bottom: 75px;
    }
    #proyectos .col span.s18 {
        left: 40px;
        bottom: 65px;
    }
    #proyectos .col span.s19 {
        left: 90px;
        bottom: 95px;
    }
    #proyectos .col span.s20 {
        left: 80px;
        bottom: 35px;
    }
    #proyectos .col span.s21 {
        left: 90px;
        bottom: 50px;
    }
    #proyectos .col span.s22 {
        left: 50px;
        bottom: 40px;
    }
    #proyectos .col span.s23 {
        left: 190px;
        bottom: 45px;
    }
    #proyectos .col span.sp {
        left: 70px;
        bottom: 40px;        
    }
}
/* (1280x1024) SXGA Display */
@media  screen and (max-width: 1280px) {
    /*.proyecto-det #info2 {
        display: blocks !important;
    }*/
    #hero_mobile {
        padding-left: 150px;
    }
    #hero_mobile p {
        bottom: 90px;
    }
    #colectivo {
        padding-top: 140px;
        padding-bottom: 400px;
    }
    #proyectos {
        padding-top: 100px;
        padding-right: 20px;
    }
    #proyectos .div_no_responsivo .rowp0 {
        margin-top: -50px;
    }
    #proyectos .div_no_responsivo .d-flex img.img-fluid {
        /* Imágenes de proyectos */
        width: 140px;
    }
    #proyectos .div_no_responsivo .row .col span img {
        /* Nombre */
        width: 140px;
    }
    #proyectos .col img.img14 {
        margin-right: -30px;
        margin-top: 0px;
    }
    #proyectos .col img.img18 {
        margin-left: -10px;
    }
    #proyectos .col img.imgsp {
        margin-top: 70px;
        margin-left: 80px;
        width: 100px;
    }
    #proyectos .div_no_responsivo .rowp1 {
        margin-top: -20px;
    }
    #proyectos .div_no_responsivo .rowp2 {
        margin-top: -50px;
    }
    #proyectos .col img.img-fluid {
        width: 85%;
    }
    #proyectos .col img.img2 {
        margin-top: 60px;
    }
    #proyectos .col img.img14 {
        margin-left: -50px;
    }
    #proyectos .col span.sp {
        left: 110px;
        bottom: 20px;
    }
    .mas_proyectos {
        padding: 30px 0;
    }
    .mas_proyectos .lista-proy {
        margin-top: -50px;
        font-size: 18px;
        
        max-height: 100%;
        overflow: hidden;
    }
    .mas_proyectos img {
        width: 250px;
        height: 195px;
    }
    .proyecto-det .proyecto-det-slider {
        height: 480px;
    }
    .proyecto-det .gallery-thumbs .swiper-slide {
        margin-right: 0px;
    }
}
@media (max-width: 1024px) {
    .div_responsivo, .proyecto-det #info1/*, .proyecto-det #info2*/ {
        display: block !important;
    }
    .div_no_responsivo {
        display: none !important;
    }
    
    section {
        padding: 160px 0;
    }
    #main {
        margin-left: -20px;
        margin-right: 75px;
    }
    #main.main-p {
        margin-right: 0;
    }
    #header-mobile .profile {
        padding: 40px 400px 0 400px;
    }
    #hero_mobile {
        padding-left: 0;
    }
    #hero_mobile .swiper .swiper-wrapper {
        margin-top: 130px;        
    }
    #proyectos {
        padding-top: 280px;
        padding-bottom: 0;
    }
    #proyectos .proyectos-mobile .carousel-inner.vertical {
        margin: 0 30%;
    }
    #proyectos .proyectos-mobile .carousel-inner .carousel-item img {
        width: 250px;
        height: 250px;
    }
    #colectivo {
        padding-top: 310px;
        padding-bottom: 100px;
    }
    #colectivo .content p.cred {
        text-align: center;
    }
    #colectivo .colectivo-img {
        display: none;
    }
    .proyecto-det {
        padding-top: 300px;
        padding-bottom: 0;
    }
    .proyecto-det .gallery-thumbs {
        width: 90%;
    }
    .proyecto-det .col-12 {
        padding-right: 0;
    }
    .proyecto-det .proyecto-det-slider {
        height: 700px;
        width: 100%;
    }
    .proyecto-det .gallery-thumbs .swiper-slide img {
        width: 110px;
        height: 110px;
    }
    .footer {
        /*position: fixed;
        width: auto;
        padding-right: 20px 15px;*/
        width: 100%;
        position: relative;
        height: auto;
    } 
}
/* (1280x720) Galaxy Note 2, WXGA */
@media only screen and (min-device-width: 720px) and (max-device-width: 1280px) {
    
}
/* (2048x1536) iPad 3 */
@media only screen and (min-device-width: 1536px) and (max-device-width: 2048px) {
    /* insert styles here */
}
/* (320x480) iPhone (Original, 3G, 3GS) */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    /* insert styles here */
}
/* (1024x768) iPad 1 & 2, Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    /* insert styles here */
}
/* (768x1024) iPad 1 & 2, Portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    /* insert styles here */
}
/* (1024x768) iPad 1 & 2, XGA */
@media (max-width: 900px) {
    #header-mobile .profile {
        padding: 50px 300px 0 300px;
    }
    #hero_mobile .swiper .swiper-wrapper {
        margin-top: 80px;        
    }
    #colectivo {
        padding-top: 380px;
        padding-bottom: 100px;
    }
    #proyectos {
        padding-top: 320px;
        padding-bottom: 0;
    }
    #proyectos .proyectos-mobile .carousel-inner.vertical {
        margin: 0 25%;
    }
    #proyectos .proyectos-mobile .carousel-inner .carousel-item img {
        width: 220px;
        height: 220px;
    }    
    .proyecto-det .proyecto-det-slider {
        height: 480px;
    }
}
@media (max-width: 768px) {
    #header-mobile .profile {
        padding: 40px 310px 0 310px;
    }
    #hero_mobile .swiper .swiper-wrapper {
        margin-top: 110px;        
    }
    #colectivo {
        padding-top: 300px;
        padding-bottom: 100px;
    }
    #colectivo .content p {
        font-size: 17px;
        line-height: 24px;
    }
    #proyectos {
        padding-top: 280px;
        padding-bottom: 0;
    }
    #proyectos .proyectos-mobile .carousel-inner .carousel-item img {
        width: 200px;
        height: 210px;
    }    
    .proyecto-det .proyecto-det-slider {
        height: 350px;
        margin-top: -20px;
    }
}
@media (max-width: 600px) {
    #header-mobile .profile {
        padding: 40px 210px 0 210px;
    }
    #hero_mobile .swiper .swiper-wrapper {
        margin-top: 150px;        
    }
    /*#footer-mob1 {
        margin-top: -110px;
    }*/
    #colectivo .content p {
        font-size: 16px;
        line-height: 24px;
    }
    #proyectos .proyectos-mobile .carousel-inner {
        padding: 30px 50px;
    }
    #proyectos .proyectos-mobile .carousel-inner .carousel-item img {
        width: 180px;
        height: 180px;
    }    
    #colectivo {
        padding-top: 250px;
    }
    .proyecto-det .proyecto-det-slider {
        height: 400px;
    }
}
@media (max-width: 428px) {
    #header-mobile .profile {
        padding: 40px 140px 0 140px;
    }
}
@media (max-width: 414px) {
    #header-mobile .profile {
        padding: 40px 150px 0 150px;
    }
    #header-mobile .nav-menu {
        padding-bottom: 20px;
    }
    #hero_mobile .swiper .swiper-wrapper {
        margin-top: 50px;
    }
    /*#footer-mob1 {
        margin-top: -180px;
    }*/
    #proyectos {
        padding-top: 220px;
    }
    #proyectos .proyectos-mobile .carousel-inner {
        padding: 30px 20px;
    }
    #proyectos .proyectos-mobile .carousel-inner .carousel-item img {
        width: 150px;
        height: 150px;
    }  
    .proyecto-det .proyecto-det-slider {
        height: 300px;
        margin-top: -70px;
    }
    .proyecto-det .gallery-thumbs .swiper-slide img {
        width: 60px;
        height: 60px;
    }
}
@media (max-width: 375px) {
    #hero_mobile .swiper .swiper-wrapper {
        margin-top: 0;
    }
    #colectivo {
        padding-top: 220px;
    }
    #proyectos {
        padding-top: 200px;
    }
    #proyectos .proyectos-mobile .carousel-inner {
        padding: 30px 20px;
    }
    #proyectos .proyectos-mobile .carousel-inner .carousel-item img {
        width: 130px;
        height: 130px;
    }  
    .proyecto-det .proyecto-det-slider {
        height: 250px;
        margin-top: -90px;
    }
    .proyecto-det .gallery-thumbs .swiper-slide img {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 320px) {
    #header-mobile .profile {
        padding: 30px 100px 0 100px;
    }
    #header-mobile .nav-menu {
        padding-bottom: 0;
    }
    .proyecto-det .gallery-thumbs .swiper-slide img {
        width: 30px;
        height: 30px;
    }
}

/* (720x1280) Galaxy Nexus, Landscape */
@media only screen and (min-device-width: 720px) and (max-device-width: 1280px) and (orientation: landscape) {
    /* insert styles here */
}
/* (720x1280) Galaxy Nexus, WXGA */
@media only screen and (min-device-width: 720px) and (max-device-width: 1280px) {
    /* insert styles here */
}
/* (640x960) iPhone 4 & 4S */
@media only screen and (min-device-width: 640px) and (max-device-width: 960px) {
    /* insert styles here */
}
/* (480x800) Android */
@media only screen and (min-device-width: 480px) and (max-device-width: 800px) {
    /* insert styles here */
}
/* (320x480) Smartphone, Landscape */
@media only screen and (device-width: 480px) and (orientation: landscape) {
    /* insert styles here */
}
/* (320x480) Smartphone, Portrait */
@media only screen and (device-width: 320px) and (orientation: portrait) {
    /* insert styles here */
}
/***************************/