/***********************************
************************************
CSS RESET   
************************************
***********************************/

html, body, div, span, applet, object, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
} /* <-- Llave de cierre faltante añadida aquí */

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
.bg-color
{
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 100px;
}

@media (max-width: 767px) {
.bg-color2
{
    background-color: rgba(0, 0, 0, 0.4);
    min-height: 180px;
}}
.bg-color2
{
	padding-right: 20px; /* Margen derecho de 50px */
    position: relative;
    background-color: rgba(0, 0, 0, 0.4);
    min-height: 180px;
	
}
#main-header
{
	
   padding: 0px;
}
#main-header2
{
	padding-top: 15px;
	display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.navbar-fixed-top {

	top: 0;
    border-width: 0 0 1px;
	

}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover
{
    color: #002F2F;
	
}
.logo-dec
{
    color: #be9e21;
}
.navbar-default .navbar-brand {
    
	color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
	}


.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    color: #be9e21;
    background-color: transparent;
}
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
    background-color: transparent;
    color: #be9e21;
	
}
.navbar-header2 {
    flex: 1; /* Hace que el logo ocupe todo el espacio disponible */
}
.navbar-collapse {

    justify-content: flex-end; /* Coloca la barra de navegación a la derecha */
    flex: 1; /* Hace que la barra de navegación ocupe todo el espacio disponible */
    align-items: center; /* Centra verticalmente los elementos */
}

.certificadoaww {
    position: absolute; /* Posiciona la imagen dentro de .navbar-header */
    top: 10; /* Coloca la imagen en la parte superior */
    right: 0; /* Coloca la imagen en la parte derecha */
     opacity: 0.8 !important;
    z-index: 1000; 
	padding-right: 50px;
	
	}

.certificadoaww img {
    width: 70px; /* Ajusta el tamaño de la imagen */
    height: auto; 
	opacity: inherit !important;
	/* Mantiene la proporción */
}
@media (max-width: 767px) {
	.certificadoaww {
    position: absolute; /* Posiciona la imagen dentro de .navbar-header */
    top: 10; /* Coloca la imagen en la parte superior */
    right: 0; /* Coloca la imagen en la parte derecha */
     opacity: 0.8 !important;
    z-index: 1000; 
	padding-right: 10px;
	
	}
.certificadoaww img {
    width: 50px; /* Ajusta el tamaño de la imagen */
    height: auto; 
	opacity: inherit !important;
	/* Mantiene la proporción */
}
}
.certificadoaww:hover {
    opacity: 1 !important; /* Opacidad completa al pasar el cursor */
}


body {
    overflow-x: visible;
}
html {
    overflow-x: hidden;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

video {
	position: fixed;
	min-with: 100%;
	min_height: 100%;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%); 
	z-index: -1;
}


body {
	line-height: 1.4;
	font-family: 'Roboto', sans-serif;
	color: #67696c;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 0.5px;
	overflow-x: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.section-padding2
{
    padding: 0px 50px;
	
	
}
.section-padding3
{
    padding: 0px 0px;
	
	
}
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

/***********************************
************************************
HEADER 
************************************
***********************************/
.header{
    background: url('/img/bg-banner05.jpg') no-repeat fixed;
    background-size: cover;
    min-height: 350px;
    position: relative;
	
}

.header2 {
    background: url('/img/bg-banner05.jpg') no-repeat fixed;
    background-size: cover;
	background-size: 100% auto;
    background-position: left top; /* Coloca la imagen bien arriba */
    min-height: 80px;
    position: relative;
}

@media (max-width: 767px) {
	
	.header2 {
	background: url('/img/bg-banner05.jpg') no-repeat fixed;
 
	background-size: 225% ;
    background-position: left top; /* Coloca la imagen bien arriba */
    min-height: 80px;
    position: relative;
	}
}

#main-header
{
	
   padding: 0px;
}
#main-header2
{
	padding-top: 15px;
	display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.navbar-default {
	background-color: transparent;
	border: 0px;
}

.navbar-default .navbar-brand {
	color: #fff;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
}
.navbar-flotante {
    position:fixed;
    bottom:120px;
    right:0px;
	top: 0;
    border-width: 0 0 1px;
	

}
.navbar-fixed-top {
	padding-top:30px;
	    border-width: 0 0 1px;
		}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover
{
    color: #002F2F;
	
}
.logo-dec
{
    color: #be9e21;
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus
{
    
	color: #fff;
    
}

.navbar-default .navbar-nav > li > a {
	padding: 10px 10px;
	font-size: 18px;
	line-height: 44px;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	-webkit-transition: color 0.2s ease-out;
	transition: color 0.2s ease-out;

	
	}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    color: #be9e21;
    background-color: transparent;
	text-align:left;}
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
    background-color: transparent;
    color: #be9e21;
	
}
.navbar-header2 {
    flex: 1; 
	/* Hace que el logo ocupe todo el espacio disponible */
}

.navbar-header {
    position: relative; /* Necesario para posicionar la imagen dentro de este contenedor */
}
.navbar-brand img {
    max-width: 230px; /* Ajusta el tamaño máximo */
    height: auto;
}
.navbar-brand {

    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 90px;
    padding-left: 15px;
    margin-top: 0px;

}

/* Para pantallas pequeñas */
@media (max-width: 600px) {
    .navbar-brand img {
        max-width: 200px; /* Reduce el tamaño en móviles */
    }
}

@media (max-width: 767px) {
    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
		
    }
.navbar-brand {

    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
     padding-left: 15px;
    margin-top: 6px;

}


    .navbar-toggle {
        margin-right: 15px;
		margin-left: 10px /* Espaciado a la derecha del botón de menú */
    }


    
	.botonera {
	font-family: 'Roboto Condensed', sans-serif;
    color: #000;
    font-size: 31px;
    font-weight: 300;
		text-align:left;
	}
	
    .navbar-nav {
        padding: 10px 0;
		text-align:left;
		}

    .navbar-nav li a {
        color: white; 
		 margin-left: 40px;
		padding: 10px 15px; /* Espaciado interno de los enlaces */
        display: block; /* Hace que los enlaces ocupen todo el ancho */
    }

    .navbar-nav li a:hover {
        background-color: #D0D0D0; /* Color de fondo al pasar el cursor */
    }
}
     .navbar-nav {
		 text-align:left;
		 }
	
	.navbar-nav li a {
        color: black; /* Color del texto */
        padding: 10px 15px; /* Espaciado interno de los enlaces */
        display: block;
	
		
		}
    .navbar-collapse {
        position: absolute;
        left: 0;
        width: 100%;
		background-color: #fff; /* Fondo del menú desplegable */
        z-index: 1000; 
		font-family: 'Roboto Condensed', sans-serif;
   padding-top:8px;
   padding-bottom:5px;
    font-size: 18px;
    font-weight: 400;/* Asegura que el menú esté por encima de otros elementos */
    }

.navbar-default .navbar-brand {
    
	color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
	

}











.banner-info
{
    padding-top: 100px;
    color: #000;
}
.bnr-title, .bnr-sub-title
{
    font-family: 'Fira Sans', sans-serif;
}
h1.bnr-title
{
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
h2.bnr-sub-title
{
    font-size: 30px;
    text-transform: uppercase;
    padding: 20px 0px;
    font-weight: 700;
}
.bnr-para
{
    font-weight: 300;
}
.btn-download, .btn-more, .btn-download:hover, .btn-more:hover, .btn-download:focus, .btn-more:focus
{
    text-transform: uppercase;
    margin-top: 50px;
    color: #fff;
    border: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    padding: 10px 30px;
    border-radius: 60px;
    margin: 50px 10px 0 0;
    outline: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.btn-download
{
    background-color: #be9e21;
}
.btn-more, .btn-more:hover, .btn-more:focus
{
    margin-left: 15px;
    border: 1px solid #be9e21;
    color: #be9e21;
}
.overlay-detail a i{
   text-align: center;
   position: absolute;
   bottom: 25px;
   font-size: 38px;
   color: #fff;
}
/***********************************
************************************
features
************************************
***********************************/
.title, .service-title
{
    font-family: 'Fira Sans', sans-serif;
    font-size: 35px;
    text-transform: uppercase;
}
.title, .service-title3
{
    font-family: 'Fira Sans', sans-serif;
    font-size: 35px;
    text-transform: uppercase;
	color:#FFFFFF;
}
.title, .service-title2
{
    font-family: 'Fira Sans', sans-serif;
    font-size: 25px;
    text-transform: uppercase;
}
.item-img
{
    margin-bottom: 15px;
}

.sub-title
{
    font-size: 20px;
}
.bottom-line
{
    margin-top: 20px;
    margin-bottom: 40px;
    border: 0;
    border-top: 0px;
    height: 1px;
    width: 80%;
    background-color: #C4C3BD;
	align:center;
	}
.wrap-item h3 {
    font-size: 24px;
    line-height: 25px;
}
.pad-bt15 {
	
    padding-bottom: 15px;

}
.pad-bt25 {
    padding-bottom: 15px;
	margin-left: 20px;
	margin-right: 20px;
	column-width: 50%;}
.sec-sub-title
{
    padding-top: 30px;
}
.sec-sub-title {
    font-size: 16px;
    font-weight: bold;
    color: #002F2F;
    text-transform: uppercase;
    margin: 25px 0px;
    line-height: 1.7;
}
#service
{
    background-color: #F3F4F8;
	
}
#service2 {
    background: none !important; /* Elimina cualquier fondo de la sección */
    padding-top: 50px !important;  /* Agrega espacio en la parte superior de la sección */
    margin-top: 0px;  /* Evita que haya márgenes adicionales que puedan causar desplazamiento */
}
#empresa
{
    background: none !important;
    background-color: transparent !important;
}
ul.service-list li i
{
    color: #002F2F;
    padding-right: 10px;
}
.learn-more, .learn-more:hover, .learn-more:focus {
    height: 50px;
    width: 175px;
    background: #046380;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    margin-right: 10px;
    margin-top: 45px;
    text-decoration: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.visit-portfolio, .visit-portfolio:hover, .visit-portfolio:focus {
    height: 50px;
    width: 175px;
    display: inline-block;
    text-align: center;
    color: #495376;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid #838aa1;
    margin-top: 45px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.bx-wrapper img {
    width: 70px;
    display: inline-block;
    border-radius: 50%;
    border: 5px solid #fff;
    margin-bottom: 15px;
}
.service-item h3 span
{
    opacity: 0.5;
    font-size: 75px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -3px;
    font-weight: 600;
    padding-right: 6px;
}
.service-item h3
{
    font-weight: 700;
}
.service-item p
{
    opacity: 1;
    color: inherit;
    padding: 10px 0px;
	text-align: left;
    
}
.textemail {
	line-height: 1.4;
    font-family: 'Roboto Condensed', sans-serif;
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
	text-align:left;
}
.consej1 {
	line-height: 1.4;
    font-family: 'Roboto Condensed', sans-serif;
    color: #67696c;
    font-size: 24px;
    font-weight: 300;
	text-align: center;
}
.consej1 strong {
    font-weight: 700; /* O prueba con 600 si no quieres que sea tan grueso */
}

.consej2 {
	line-height: 1.4;
    font-family: 'Roboto Condensed', sans-serif;
    color: #2c2c2c;
    font-size: 21px;
    font-weight: 300;
	text-align:center
}
.izqparr {
	line-height: 1.4;
    font-family: 'Roboto Condensed', sans-serif;
    color: #67696c;
    font-size: 16px;
    font-weight: 300;
	text-align:left
}
.service-item a
{
    color: #be9e21;
}
.mr-btn-15
{
    margin-bottom: 15px;
}
.padding-right-zero
{
    padding-right: 0px !important;
}
.bx-wrapper {
    margin: 0 auto 35px;
}
.portfolio-item
{
    position:relative;
    overflow:hidden;
}
.portfolio-item figure
{
    margin:0;
    padding:0;
    position:relative;
    cursor:pointer;
}
.portfolio-item figure img {
    display:block;
    position:relative;
    z-index:10;
    margin:-15px 0;
    width: 100%;
}
.portfolio-item figure figcaption {
    display:block;
    position:absolute;
    z-index:5;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box
}
.portfolio-item figure h2 {
    font-family: 'Fira Sans', sans-serif;
    color:#fff;
    font-size:20px;
    text-align:left;
    padding-bottom:15px;
}
.portfolio-item figure p {
    display:block;
    line-height:18px;
    margin:0;
    color:#fff;
    text-align:left
}
.portfolio-item figure figcaption {
    top:0;
    left:0;
    width:100%;
    height:100%;
    padding: 59px 30px;
    background-color: #33363F;
    text-align: center;
	backface-visibility:hidden;
    -webkit-transform:rotateY(-180deg);
    -moz-transform:rotateY(-180deg);
    transform:rotateY(-180deg);
    -webkit-transition:all .5s;
    -moz-transition:all .5s;
    transition:all .5s;
}

/***********************************
************************************
TESTIMONIAL
************************************
***********************************/
#testimonial
{
    background-size: cover;
    min-height: 390px;
}
.bg-testicolor{
    background-color: RGBA(73, 84, 105, 0);
    min-height: 390px;
}
.white
{
    color: #fff !important;
}
.testimonial-item ul li blockquote {
    font-size: 18px;
    line-height: 32px;
    color: #000;
    font-weight: 300;
    text-shadow: 1px 1px 2px #333;
    text-align: center;
    display: inline-block;
    width: 100%;
    margin: 20px 0;
    padding: 0 80px;
    position: absolute;
    border: 0;
}
.testimonial-item ul li  small {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    text-shadow: 1px 1px 2px #333;
    text-align: center;
    display: inline-block;
    width: 100%;
}
.bx-viewport
{
    height: 235px !important;
    background-color: transparent !important;
    border: 0px none !important;
    box-shadow: none !important;
}
.testimonial-item ul li blockquote::before {
    content: '“';
    left: 30px;
}
.testimonial-item ul li blockquote::before, .testimonial-item ul li blockquote::after {
    position: absolute;
    font-weight: 300;
    font-size: 3em;
    font-family: Georgia, serif;
    color: #000;
    top: 62%;
}
.testimonial-item ul li blockquote::after {
    content: '”';
    right: 30px;

}
.textoculto	{
	visibility: hidden;
	position:fixed;
	}
/***********************************
************************************
TESTIMONIAL2
************************************
***********************************/
#testimonial2
{
    
    bottom:20%;
        right:0px;
	 position: fixed;
}
.bg-testicolor{
    
    top:80%;
        left:90%;
	 position: fixed;

}
.white
{
    color: #fff !important;
	
}
.testimonial-item ul li blockquote {
    bottom:20%;
        right:0px;
    position: fixed;

}
.testimonial2-item ul li  small {
    bottom:20%;
        right:0px;
		position: fixed;
}
.bx-viewport
{
    bottom:20%;
        right:0px;
	 position: fixed;
}
.testimonial2-item ul li blockquote::before {
    content: '“';
    left: 30px;
}
.testimonial2-item ul li blockquote::before, .testimonial2-item ul li blockquote::after {
  bottom:20%;
        right:0px;
	 position: fixed;
}
.testimonial2-item ul li blockquote::after {
 bottom:20%;
        right:0px;
	 position: fixed;
}
/***********************************
************************************
Blog
************************************
***********************************/
.blog-info h2 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    padding-top: 5px;

	
}
.blog-comment {
    margin-top: 12px;
    min-height: 30px;
}
.blog-info p, .blog-comment p
{
    color: #353535;
}
.blog-comment p:first-child {
    float: left;
}
.blog-comment p:last-child {
    float: right;
    margin-right: 0;
}
.blog-comment p i
{
    color: #949494;
}
.read-more {
    color: #0c6ccc;
    margin-top: 15px;
    display: inline-block;
}
.blog-img
{
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
	align-content:center;
	
	
	}
.blog-img img:hover {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.blog-img img {
	
    width: 100%;
    opacity: 0.8;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
	}
/***********************************
************************************
contact
************************************
***********************************/
#contact
{
    background-color: rgb(73, 84, 105);
}
.btn-submit, .btn-submit:hover, .btn-submit:focus
{
    background-color: transparent;
    border-radius: 60px;
    color: #be9e21;
    font-weight: 400;
    border: 1px solid #be9e21;
    font-size: 14px;
    padding: 6px 20px;
}
.form-control
{
    background-color: transparent;
    border-radius: 0px;
    color: #686868 !important;
    border-color: #be9e21;
}
.form-control2
{
    background-color: transparent;
    border-radius: 0px;
    color: #000000 !important;
    border-color: #000000;
}
.form-control3
{
	padding: 10px;
	padding-bottom: 10px!important;
	padding-top: 10px;
	margin-bottom: 10px!important;
	margin-left: 10px!important;
	background-color: transparent;
    border-radius: 0px;
    color: #000000 !important;
    border-color: #000000;
	
}

.custom-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 5px;
  max-width: 100%;
  overflow: hidden;
}

.custom-file-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}


.form-control:focus {
    border-color: #be9e21;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}
.contact-form input.form-control{
    color: #fff;
	align:center;
	}
.loction-info p
{
    margin-bottom: 25px;
}
.loction-info p i
{
    color: #be9e21;
}
/***********************************
************************************/
#contact2
{
    background-color: rgb(73, 84, 105);
}
.btn-submit2, .btn-submit:hover, .btn-submit:focus
{
    background-color: transparent;
    border-radius: 60px;
    color: #535353;
    font-weight: 400;
    border: 1px solid #535353;
    font-size: 14px;
    padding: 6px 20px;
}
.form-control2
{
    background-color: transparent;
    border-radius: 5px;
    color: #050402;
    border-color: #979797;
	font-size: 14px;
	padding: 5px 5px;
	text-align:left
	
}
.form-control2:focus {
    border-color: #979797;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}
.contact-form2 input.form-control2{
     color: #000000;
	align:left;
	}
.loction-info p
{
    margin-bottom: 25px;
}
.loction-info2 p i
{
    color: #979797;
}


/************************************
***********************************/
#footer
{ 
    padding: 20px 0px;
}
.scrollToTop {
    position: fixed;
    bottom: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: #be9e21;
    font-size: 14px;
    line-height: 42px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    display: none;
}
.white-bg
{
    background-color: #fff;
}
#footer p a{
    color: #be9e21;
    font-weight: 400;
}
/***********************************
************************************
Responsive media queries
************************************
***********************************/
/***********************************
************************************
cta
************************************
***********************************/
.cta {
    background-color: rgb(73, 84, 105);
}
.cta .cta-info {
    
    width: 100%;
    float: left;
    padding: 30px 25px 30px 15px;
    border-radius: 5px;
}
.cta .cta-info .cta-txt h3 {
    font-size: 32px;
    margin-bottom: 10px;
}
.cta .cta-info .cta-btn {
    margin-top: 16px;
    background-color: rgb(190, 158, 33);
    padding: 20px 50px;
    color: #FFF;
    font-size: 22px;
    display: inline-block;
    transition: all 0.5s ease-in 0s;
}
/***********************************
************************************
Responsive media queries
************************************
***********************************/
@media (min-width: 768px) and (max-width: 980px) {
    .service-item, .blog-sec, .wrap-item, .loction-info{
    margin-bottom: 15px;
	}
.portfolio-item figure figcaption{
    padding: 55px 30px;
}
.padding-right-zero{
    padding-right: 15px !important;
}
}
@media (min-width: 451px) and (max-width: 767px) {
    .service-item, .blog-sec, .wrap-item, .loction-info{
    margin-bottom: 15px;
	width:90%;
	align-items: flex-start;}
}
@media (min-width: 20px) and (max-width: 450px) {
.navbar-default .navbar-brand {
    padding-left: 16px;
    margin-top: 0px;
	
}


.banner-info {
    padding-top: 40px;
}
h1.bnr-title {
    font-size: 16px;
}

h2.bnr-sub-title {
    font-size: 33px;
}
body{
    font-size: 14px;
}
.btn-download, .btn-more, .btn-download:hover, .btn-more:hover, .btn-download:focus, .btn-more:focus {
    font-size: 12px;
    padding: 7px 18px;
}
.wrap-item h3 {
    font-size: 18px;
}
.title, .service-title {
    font-size: 28px;
}
.sub-title {
    font-size: 15px;
}
.service-item, .blog-sec, .wrap-item, .loction-info{
    margin-bottom: 15px;
	align-items: flex-start;
	}
.loction-info{
    padding: 0px 15px;
}
.portfolio-item figure figcaption {
    padding: 30px 30px;
}
.padding-right-zero{
    padding-right: 15px !important;
}
.portfolio-item figure p{
    font-size: 14px;
}
.portfolio-item figure h2{
    font-size: 18px;
}
.testimonial-item ul li blockquote {
    font-size: 14px;
    line-height: 22px;
    margin: 10px 0;
    padding: 0 40px;
}
.navbar-default .navbar-nav > li > a{
    line-height: 12px;
    text-align: left;
	
}
.element {
  border: 0px solid #151515;
  margin-top: -1px;
}
.element + .element {
  margin-left: -1px;
}
.gall-item {
  display: block;
  background-color: #000;
  position: relative;
}
.gall-item img {
  box-shadow: 0 0 0 #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.gall-item:hover img {
	opacity: 0.35;
	color: #000;
}
.gall-item:hover span {
  opacity: 1;
}
.gall-item span {
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/magnifyer.png) center center no-repeat;
}
.video-responsive {
position: relative;
padding-bottom: 56.25%; /* 16/9 ratio */
padding-top: 30px; /* IE6 workaround*/
height: 0;
overflow: hidden;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
 


} /* /777/////////////////////////////////////////////////////////////////// */


@media (max-width: 768px) {
    .consej1 {
        font-size: 21px;
		
		color: #333333; /* Ajusta según necesidad */
    }
}

@media (max-width: 480px) {
    .consej1 {
        font-size: 18px; /* Para celulares más pequeños */
    	
		color: #333333; /* Ajusta según necesidad */
    }
}


h3f {
    /* Estilos para el título */
    font-family: 'Nombre de la fuente', sans-serif;
    font-size: 1.5em;
    margin-bottom: 5px; /* Espacio entre el título y el párrafo */
}

p {
    /* Estilos para el párrafo */
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    margin-bottom: 10px; /* Espacio al final del párrafo */
}


img1 {
    /* Estilos para el ícono */
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.row {
    display: flex;
    justify-content: center; /* Centra las cajas dentro de la fila */
    align-items: flex-start;
    flex-wrap: wrap; /* Permite que las cajas se ajusten si no caben en una fila */
    margin-bottom: 10px;
}

.rowmonitoreo {
    display: flex;
    justify-content: center; /* Centra las cajas dentro de la fila */
    align-items: center;
    flex-wrap: wrap; /* Permite que las cajas se ajusten si no caben en una fila */
    margin-bottom: 10px;
    width: 100%; /* Asegura que la fila ocupe todo el ancho */
}

.content {
    opacity: 0;
    transition: opacity 0.5s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-width: 150px; /* Tamaño mínimo */
    min-height: 150px; /* Tamaño mínimo */
}

@media screen and (max-width: 767px) {
    .row {
        flex-direction: column; /* Cambiar la dirección de la fila a columnas */
        align-items: center; /* Centrar los elementos horizontalmente */
    }

    .form-container {
        width: 100%;
        position: relative;
        top: auto;
        right: auto;
        padding: 0px;
        box-sizing: border-box;
        background-color: rgba(14, 64, 160, 0.7);
        z-index: 2;
        transform: none;
        margin-bottom: 20px;
    }

  
}

/* Contenedor principal del footer *********************************************************************************************************************************************************/

