/*
General
**********************************************************************/
 body {
    font-family:'Roboto', sans-serif;
    color: #333;
    line-height:1.2em;
    font-size:17px;
    line-height:20px;
    position: relative;
    padding-bottom: 2em;
    min-height: 100vh;
}
a {
    color: #164a75;
    text-decoration: none;
}
a:hover {
    color: #164a75;
    text-decoration:none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
h1 {
    margin: 10px;
}
p {
    padding: 10px;
    font-weight: 100;
    color: #333;
}
.navbar {
    background: #29d043;
    margin-bottom:0;
    min-height:70px;
}

.navbar-fixed-top {
    min-height:60px;
    height:60px;
    padding-top:0;
}
.navbar-inner {
    background: #24C6DC;
    background: -webkit-linear-gradient(to right, #24C6DC , #514A9D);
    background: linear-gradient(to right, #24C6DC , #514A9D);
    border-radius:0;
    filter: none;
    border: none;
    box-shadow: none;
}
.navbar .brand img {
    width:70px;
    height:70px;
}
.navbar .nav > li > a {
    text-transform:uppercase;
    line-height: auto;
    vertical-align: middle;
    margin:10px 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: 0px solid #000000;
    border-radius: 6px;
    box-shadow: none;
    font-size:15px;
    text-shadow: none;
    color: #303030;
    transition: border-color 1s ease;
}
.navbar .nav > li:hover> a, .navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
    border: 1px solid #0C0303;
    color: #fff;
    background-color: #164a75;
    transition: border-color 1s ease;
}
.nav-pills {
    margin-bottom: 30px;
}
.nav-pills > li > a {
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-right:5px;
    padding-left:25px;
    padding-right:25px;
    border: 1px solid #181A1C;
}
.nav-pills > li > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover, .nav-pills > .active > a:focus {
    background: #181A1C;
    color: #fff;
}
.navbar .btn-navbar:hover, .navbar .btn-navbar {
    border-radius:0;
    background:#FECE1A;
    color: #000;
}


/******
Layout
**********************************************************************/
.centered {
    margin-left:auto;
    margin-right:auto;
    float: none;
    text-align: center;
}
/* Use this class if you want ceter element with span* class */
 .center {
    float: none !important;
    margin: 0 auto !important;
    text-align: center;
}
.highlighted-box {
    background:#F4F8F9;
    padding:20px 30px;
}
.highlighted-box h1 {
    margin:0px;
}
.large-text {
    line-height:1.2em;
    font-size: 30px;
    color: #181A1C;
    padding:20px;
    margin-bottom:20px;
}
.highlighted-box h1, .highlighted-box p {
    color: #181A1C !important;
}
.circle-border {
    display: inline-block;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 500px;
    -khtml-border-radius: 500px;
    border: 3px solid #fff;
}
.left-align {
    text-align:left;
}
.right-align {
    text-align:left;
}
.error {
    color: #CF0000;
    display: none;
}
.invisible {
    display:none;
    visibility:visible;
}
.triangle {
    margin: 0 auto;
    text-align:center;
    width: 0;
    height: 0;
    border-top: 30px solid #164a75;
    border-left: 585px outset transparent;
    border-right: 585px outset transparent;
    position: relative;
}


/*
Animaciones
**********/
/**prueba de novedades **/

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.image-container img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    border: 5px solid transparent;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.image-container img:hover {
    border-color: #007BFF;
}

.modal {
    position: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 10px;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}


/*
Botones
**********/
 .button,  .button:visited, .button:focus {
    display:inline-block;
    border:1px solid #181A1C;
    color:#181A1C;
    background-color:transparent;
    padding:15px 30px;
    font-size:17px;
    line-height:auto;
}
.button:hover, .button:active{
    background-color:#181A1C;
    color:#fff;
}
.button-sp, .button-sp:visited, .button-sp:focus {
    border:none;
    background-color:#164a75;
    color:#fff;
}
.button-sp:hover, .button-sp:active {
    background-color:#181A1C;
    color:#FECE1A;
}
.button-ps, .button-ps:visited, .button-ps:focus {
    border:none;
    background-color:#181A1C;
    color:#FECE1A;
}
.button-ps:hover, .button-ps:active {
    background-color:#FECE1A;
    color:#181A1C;
}


/*
Miniaturas - Predefinidas de la clase thumbnail de Bootstrap.
**********/
 .thumbnail {
    width:100%;
    height:100%;
    padding:0;
    overflow: hidden;
    position: relative;
    border:0;
    border-radius:0;
    box-shadow:none;
    text-align:center;
    background: #191a1c;
}
.thumbnail .more {
    display:block;
    z-index:4;
    position:absolute;
    top:-100px;
    left:50%;
    margin:0 auto;
    margin-left:-41px;
    width:80px;
    height:80px;
    font-size:40px;
    color:#fff;
    text-decoration:none;
    line-height: 70px;
    text-align: center;
}
.thumbnail:hover .more {
    top:40%;
    margin-top:-40px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3 s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.thumbnail h3,
.thumbnail p {
    margin:0;
    padding:0;
    position:relative;
    z-index:4;
}
.thumbnail h3 {
    color: #fff;
    margin-top:10px;
    font-size:20px;
}
.thumbnail > p {
    padding-bottom:20px;
}
.thumbnail .mask {
    opacity:0.85;
    filter: alpha(opacity=85);
    top:100%;
    left:0;
    width:100%;
    height:100%;
    background:#181A1C;
    position:absolute;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2 s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.thumbnail:hover .mask {
    top:0;
}


/* Animaciones imagenes */
.evento {
	color: #f2f2f2;
	width: 70%;
  height: 70%;
	position: relative;
  left: 15%;
}

.evento img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin-bottom: 20px;
	border-radius: 5px;
	opacity: 0;
	transform: scale(0.8);
	transition: 1.5s ease-in-out all;
}

.evento img.visible {
	opacity: 1;
	transform: scale(1);
}


/** proyectos **/
.flexcss {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

}
/** Fondo productos **/
.service {
	padding-top: 10px;
	padding-bottom: 60px;
	background: #ffffff;
	margin-top: 50px;
}

.service .titlepage span {
	color: #3d3c3c;
}

.service .service-box figure {
	margin: 0px;
}

.service .service-box figure img {
	width: 100%;
	border-radius: 20px;
}

.green {
	background-color: #6fb936;
}

.service .service-box .hoverle {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 15px;
	transition: all 0.5s;
    border-radius: 20px;
}
/* letras de botones */
.service .service-box .hoverle a {
	padding: 5px 30px;
	color: #8F3A8400;
   font-size: 25px;
}

.service .titlepage {
	text-align: center;
	padding-bottom: 50px;
}

.service .titlepage h4 {
	padding: 0px 0px 6px 0px;
	font-size: 40px;
	font-weight: bold;
	color: #1168B5;
	line-height: 46px;
	border-bottom: #1168B5 solid 1px;
	width: 210px;
	margin: 0 auto;
	margin-bottom: 0px;
	margin-bottom: 20px;

}
/** Fondo del color para los botones **/
.service .service-box:hover .hoverle {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	display: flex;
	justify-content: center;
	background: #184E8B9C;
	align-items: center;
	margin: 0 15px;
	border-radius: 20px;
	transition: all 0.5s;
}

.service .service-box:hover .hoverle a {
	border: #fff solid 1px;
	background: transparent;
	padding: 5px 30px;
	color: #fff;
	transition: all 0.5s;
}

#demo {
	height: 100%;
	position: relative;
	overflow: hidden;
}

.thumb {
	margin-bottom: 30px;
}

.green {
	background-color: #6fb936;
}

.page-top {
	margin-top: 85px;
}

.transition {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
.modal-header {
	border-bottom: none;
}

.modal-title {
	color: #000;
}

.modal-footer {
	display: none;
}
/*

¿Quiénes somos?
******************************************************************/
.team .thumbnail {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    border: 1px solid #fff;
}

.team .thumbnail .mask {
    background: #fff;
}
.team .thumbnail .mask h2 {
    margin-top:20%;
}
.team .thumbnail .mask, .team .thumbnail .mask h3, .team .thumbnail .mask p, .team .thumbnail:hover h3, .team .thumbnail:hover .social a:hover {
    color:#181A17;
}
.about-text {
    margin-top:30px;
}
.about-text p {
    padding:0;
    font-size:16px;
}

.section {
    padding-bottom: 130px;
}
.section .container {
    padding-top:30px;
}
.section .title {
    text-align: center;
    padding:10px;
    margin-bottom: 20px;
}
.section .title h1 {
    font-weight: normal;
    margin-bottom: 0px;
    padding: 0;
}
.section .title > p {
    font-size: 20px;
    color: #333;
    font-weight: lighter;
}
.primary-section {
    background:#fff;
}
.primary-section .triangle {
    border-top: 40px solid #164a75;
}
.primary-section .title {
    border-bottom: 1px solid #a2a2a2;
}
.primary-section, .primary-section .title p, .primary-section h3 {
    color: #333;
}
.primary-section h1 {
    color:#333;
}
.secondary-section {
    background:#dedede;
}
.secondary-section .title {
    border-bottom: 1px solid #a2a2a2;
}
.secondary-section h1, .secondary-section .title p {
    color: #333;
}
.third-section {
    padding-bottom: 70px;
    background: #fff;
    border-top:6px solid #164a75;
}
.third-section .container {
    padding-top:20px;
    position:relative;
}
.third-section .title{
    border-bottom: 1px solid #a2a2a2;
    color: #333;
}
.sub-section {
    margin-top:30px;
}
.sub-section .title {
    padding:0;
}

.service{
    margin-top:10px;
}
 .service, .service h2 {
    padding-top:15px;
}
.service p {
    padding:0px 50px;
    height:60px;
}
.service img {
    width:150px;
    height:150px;
}
/** ¿Quiénes somos?  **/

/** Contacto **/
/** boton whatsapp **/
.whatsapp-float {
    position: fixed;
    width: auto;
    height: 80px;
    bottom: 100px; 
    right: 40px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    padding: 10px 20px;
    box-shadow: 2px 2px 5px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    text-decoration: none; /* Quitar el subrayado del texto */
  }

  .whatsapp-float i {
    margin-right: 10px; /* Espacio entre el icono y el texto */
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
      }
      footer div {
        max-width: 100%;
        overflow-x: hidden;
      }
/** boton whatsapp **/

/*boton flotante*/

.container-bf{
    position: fixed;
    bottom: 40px;
    left: 40px;
}

#btn-mas{
    display: none;
}
.redes a, .btn-mas label{
    display: block;
    text-decoration: none;
    background: #24C6DC;
    background: -webkit-linear-gradient(to right, #24C6DC , #514A9D);
    background: linear-gradient(to right, #24C6DC , #514A9D);
    color: #fff;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
    transition: all 500ms ease;
}
.redes a:hover{
    background: #fff;
    color: #2986cc;
}
.redes a{
    margin-bottom: -15px;
    opacity: 0;
    visibility: hidden;
}
#btn-mas:checked~ .redes a{
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
}
.btn-mas label{
    cursor: pointer;
    background: #24C6DC;
    background: -webkit-linear-gradient(to right, #24C6DC , #514A9D);
    background: linear-gradient(to right, #24C6DC , #514A9D);
    font-size: 23px;
}
#btn-mas:checked ~ .btn-mas label{
    transform: rotate(360deg);
    font-size: 25px;
}


/*

Footer
********************************************************************/
 .footer {
    background: #000;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;

}
.footer > p {
    color: #fff;
    margin:0;
}
footer p {
    transition: color 0.3s ease, transform 0.3s ease;
  }

  footer p:hover {
    color: #ffffff; /* Intensifica el color */
    transform: scale(1.05); /* Un ligero aumento de tamaño */
  }

  footer i {
    color: #e2ebf0; /* Íconos en un color más claro */
  }

  footer p:hover i {
    color: #ffffff; /* Íconos también intensifican el color en hover */
  }
.scrollup {
    text-align:center;
    cursor:pointer;
    vertical-align:middle;
    width:39px;
    height:39px;
    border-radius:5px;
    font-size:20px;
    position:fixed;
    bottom:50px;
    right:20px;
	  border:1px solid #fff;
    display:none;
    background: #24C6DC;
    background: -webkit-linear-gradient(to right, #24C6DC , #514A9D);
    background: linear-gradient(to right, #24C6DC , #514A9D);
}
.scrollup > a {
    position:relative;
    top:7px;
    color:#fff;
}
/*
css para protecto1,2,3,4,5,6
********************************************************************/

.iproy h4 {
	padding: 0px 0px 6px 0px;
  text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #1168B5;
	line-height: 36px;
	border-bottom: #1168B5 solid 1px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 0px;
	margin-bottom:10px;
}

.iproy-i{
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}
.iproy-i2{
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
}

@media (max-width: 600px){

  .iproy h4 {
  	padding: 0px 0px 6px 0px;
    text-align: center;
  	font-size: 15px;
  	font-weight: bold;
  	color: #1168B5;
  	line-height: 36px;
  	border-bottom: #1168B5 solid 1px;
  	width: 100%;
  	margin: 0 auto;
  	margin-bottom: 0px;
  	margin-bottom:10px;
  }
}

/*
Diseño Responsivo
********************************************************************/
 @media (min-width: 1200px) {
    .thumbnail .more {
        margin-left:-41px;
        width:80px;
        height:80px;
        border-radius:40px;
        line-height: 80px;
    }
}

@media (max-width: 700px) {
    body {
        padding-left:0;
        padding-right:0;
    }
    .navbar-fixed-top, .navbar-fixed-bottom {
        position: fixed;
    }
    .navbar .nav > li > a {
        line-height: 20px;
        vertical-align: middle;
    }
    .section {
        padding-left:20px;
        padding-right:20px;
    }
    .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
        margin-left: 0px;
        margin-right: 0px;
    }
    .nav-collapse {
        clear: both;
    }
    .nav-collapse .nav {
        float: none;
        margin: 0 0 10px;
    }
    .nav-collapse .nav > li {
        float: none;
    }
    .nav-collapse, .nav-collapse.collapse {
        width: 100%;
        display: inherit;
    }
    .thumbnail .more {
        margin-left:-21px;
        width:40px;
        height:40px;
        border-radius:30px;
        line-height: 40px;
    }
    .thumbnail:hover .more {
        margin-top:-20px;
    }
    .newsletter form {
        text-align:center;
    }
}
@media (max-width: 767px) {
    .info-mail {
      width:90%;
      padding:15px 0px;
    }
    .project-description {
        padding-left:20px;
    }
    .price-column, .testimonial {
        margin-top:30px;
    }
}

@media (max-width: 400px) {
    body {
        padding-left:0;
        padding-right:0;
    }
    .navbar-fixed-top, .navbar-fixed-bottom {
        position: fixed;
    }
    .navbar .nav > li > a {
        line-height: 20px;
        vertical-align: middle;
    }
    .section {
        padding-left:20px;
        padding-right:20px;
    }
    .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
        margin-left: 0px;
        margin-right: 0px;
    }
    .nav-collapse {
        clear: both;
    }
    .nav-collapse .nav {
        float: none;
        margin: 0 0 10px;
    }
    .nav-collapse .nav > li {
        float: none;
    }
    .nav-collapse, .nav-collapse.collapse {
        width: 100%;
        display: inherit;
    }
    .thumbnail .more {
        margin-left:-21px;
        width:40px;
        height:40px;
        border-radius:30px;
        line-height: 40px;
    }
    .thumbnail:hover .more {
        margin-top:-20px;
    }
    .newsletter form {
        text-align:center;
    }
}
@media (max-width: 767px) {
    .info-mail {
      width:90%;
      padding:15px 0px;
    }
    .project-description {
        padding-left:20px;
    }
    .price-column, .testimonial {
        margin-top:30px;
    }
}
@media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }

    .footer-logo {
      width: 80px; /* Reduce logo size on smaller screens */
      margin-left: 0; /* Center the logo */
      margin-bottom: 10px; /* Add spacing below the logo */
    }

    .footer-text {
      text-align: center;
    }

    .whatsapp-float {
      bottom: 20px; /* Move the button higher on smaller screens */
      right: 20px;
    }
  }

  @media (max-width: 480px) {
    .footer-logo {
      width: 60px; /* Further reduce the logo size on very small screens */
    }

    .whatsapp-float {
      font-size: 16px; /* Reduce font size for smaller screens */
      height: 50px; /* Reduce button height */
    }
  }