


/* Default CSS */

body {
	font-family: 'Roboto Condensed', sans-serif;
	background-image: url(../img/bgd.jpg);
	background-repeat: repeat;
	background-position: top left;

}

body:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(9, 16, 31, 0.44);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	z-index: 11;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

body.overlay:after {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	visibility: visible;
}

.body_wrap {
	overflow: hidden;
	position: relative;
	background-image: url(../img/bg-logo.png);
	background-repeat: no-repeat;
	background-position: top left;
}

.img {
	max-width: 100%;
	transition: all 0.3s ease-out 0s;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
}

a,
.button {
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

a:focus,
.button:focus {
	text-decoration: none;
	outline: none;
}

a {
	text-decoration: none;
	color: inherit
}

a:focus,
a:hover {
	text-decoration: none;
	color: inherit
}

a,
button {
	outline: medium none;
	cursor: pointer;
}

button {
	padding: 0px;
	border: none;
	outline: none;
	background: none;
	display: inline-block;
}


ul {
	margin: 0px;
	padding: 0px;
}


.custom-list,
.custom-list li {
    list-style: none !important; /* Forzar eliminación de viñetas predeterminadas */
    /* display: inline-grid;*/
    grid-template-columns: 1fr; /* Un solo columna */
    grid-gap: 8px; /* Espacio entre los elementos */
}

.custom-list li {
    position: relative;
    padding-left: 25px; /* Espacio para la imagen personalizada */
    margin-bottom: 8px; /* Espacio entre los elementos de la lista */
    /* height: 50px;  Ajusta la altura según sea necesario */
    display: flex;
    align-items: center; /* Centra el contenido verticalmente */
    justify-content: space-between; /* Opcional: ajusta el contenido dentro del li */
    transition: transform 0.3s ease; /* Transición para el efecto de ampliación */
    overflow: hidden; /* Para ocultar cualquier desbordamiento del gradiente */
}

/* Gradiente de iluminación de acero inoxidable, pero sin afectar la viñeta */
.custom-list li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffff, #b0b0b0); /* Gradiente metálico que simula acero inoxidable */
    z-index: -1; /* Coloca el gradiente detrás del contenido */
    transform: scaleX(0); /* Inicialmente el gradiente no es visible */
    transform-origin: left; /* El origen de la animación es el lado izquierdo */
    transition: transform 1s ease-out; /* Animación suave */
}

/* Expande el gradiente de izquierda a derecha al hacer hover */
.custom-list li:hover::before {
    transform: scaleX(1); /* Expande el gradiente de izquierda a derecha */
}

/* Efecto al pasar el ratón sobre el li */
.custom-list li:hover {
    transform: scale(1.05); /* Efecto de ampliación */
}

/* Estilo para la imagen personalizada, que no se ve afectada por el gradiente */
.custom-list li::after {
    content: "";
    position: absolute;
    left: 0;
    top: auto; /* Centrar verticalmente la imagen */
    transform: translateY(20%); /* Ajuste para centrar la imagen */
    width: 20px; /* Tamaño de la imagen */
    height: 20px;
    background-image: url('../img/log.png'); /* Ruta de la imagen */
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease; /* Transición para la imagen */
    z-index: 1; /* Asegura que la imagen esté encima del gradiente */
}

/* Efecto al pasar el ratón sobre la imagen */
.custom-list li:hover::after {
    transform: translateY(20%) scale(1.2); /* Ampliar la imagen al pasar el ratón */
}

.destello {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}

.destello::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%; /* Inicia fuera del contenedor */
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent); /* Gradiente para el destello */
  animation: destello-animation 5s infinite; /* Animación que se mueve continuamente */
}

@keyframes destello-animation {
  0% {
    left: -100%; /* Empieza fuera de la pantalla a la izquierda */
  }
  50% {
    left: 100%; /* Se mueve completamente a la derecha */
  }
  100% {
    right: -100%; /* Vuelve a empezar desde la izquierda */
  }
}



  .testimonial-slider .item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    margin: 50px;
    transition: transform 0.3s ease-in-out; /* Transición suave */
  }

  .testimonial-slider .item:hover {
    transform: rotate(1deg) translateZ(5px); /* Giro suave y desplazamiento sutil */
  }

  .testimonial-slider .test-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out; /* Transición para el testimonio */
  }

  .testimonial-slider .item:hover .test-item {
    transform: rotate(0.5deg); /* Aplica un giro sutil al testimonio */
  }

  .testimonial-slider .test-cont {
    text-align: center;
    background-color: #EFEFEF;
    padding: 20px;
    border: 2px solid #9CA2AC;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease-in-out; /* Transición suave en el contenedor */
  }

  .testimonial-slider .item:hover .test-cont {
    transform: rotate(0.5deg); /* Aplica un giro sutil al contenedor */
  }


img {
	max-width: 100%;
	height: auto;
}

p {
	margin-bottom: 20px;
	text-align: justify;
}

p a:hover{
	    color: #1D1934;
}

p:last-child {
	margin-bottom: 0
}

label {
	cursor: pointer;
	font-weight: 400;
	text-align: center;
	font-size: 19px;

}

* {
  box-sizing: border-box;
}

.text-bold {
	font-weight: 700;
}

.mt-40 {
	margin-top: 40px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mt-86 {
	margin-top: 86px;
}

.ml-btn {
	margin-left: 20px;
}

input,
textarea,
select {
	height: auto;
	border: none;
	outline: none
}

.select-type {
	font-family: 'Roboto Condensed', sans-serif;
    font-size: 21px;
    color: #001f53;
    font-weight: 700;
    padding: 10px 28px;
}

section {
	padding: 10px 0
}

.container {
	float: center;
	clear: both;
	max-width: 1800px;
	width: 95%;
	padding: 35px 2.5% 0 2.5%;
	font-size: 29px;
    color: #2B2B2B;
	text-align: justify !important;
	font-weight: 400;	
}
.container ul li {
    list-style-type: disc;
	margin-left:30px;
}
.white_container {
	float: left;
	width: 100%;
	padding: 30px 0 70px 0;
	height: auto;
	background-color: #ffffff;
	text-align: center;
}
.prod_pics {
	float: left;
	width: 35%;

}
.prod_info {
	float: left;
	width: 62%;
	margin: 0 0 0 3%;

}
.prod_info ul li {
    list-style-type: disc;
	margin-left:30px;
}
.cont_pics {
	float: left;
	width: 40%;
	margin-left: 5%
}
.cont_info {
	float: left;
	width: 55%;
	margin: 0;
}
.tit {
	float: left;
	text-align: left;
}

h1 {
	padding: 25px 0;
	font-size: 45px;
    color: #5076B4;
	font-weight: 700;
	transition: all 0.5s;
	
}
.title-wrapper {
	height: 105px;
	transition: all 0.5s;

}
.title-borde {
	float: left;
	height: 105px;
}
h2{
    float: left;
	width: 50%;
	height: 105px;
	padding: 30px 0 0 150px;
	text-align: left !important;
	font-size: 45px;
	text-transform: uppercase;
    color: #ffffff;
	background-color: #698DC1;
	font-weight: 600;
	transition: all 0.5s;
}
h3 {
	float: left;
	width: 100%;
	padding: 15px 0;
	font-size: 30px;
    color: #698DC1;
	font-weight: 600;
	transition: all 0.5s;
	
}
h5 {
	float: left;
	width: 100%;
	padding: 35px 0 0 0;
	font-size: 45px;
	text-transform: uppercase;
    color: #CC2D15;
	font-weight: 700;
	transition: all 0.5s;
	
}

.trans_container {
	float: left;
	width: 100%;
	height: auto;
	text-align: center;
}

.gray_container {
	float: left;
	width: 100%;
	height: auto;
	text-align: center;
}
.icons_container {
	float: left;
	width: 100%;
	text-align: center;
	padding: 90px 0;
	background-image: url(../img/bgd_icons.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.contac{
    width: 90%;
    margin: 0 auto;
	max-width: 1800px;
	padding: 20px 0 70px 0;
	text-align: justify;
    color:#1C1833;
	font-size: 24px;
}
.cont-home{
	width: 90%;
    margin: 0 auto;
	max-width: 1800px;
	padding: 70px 0 !important;
	text-align: justify;
    color:#1C1833;
	font-size: 24px;
}

.col_2 {
	float: left;
	width: 35%;
	margin: 0 5%;
}
.col_3 {
	float: left;
	width: 45%;
	margin: 0 5%;
}

.col_4 {
	float: left;
	width: 40%;
	margin: 0;
}
.col_5 {
	float: left;
	width: 55%;
	margin: 0 0 0 5%;
}

.container2 {
	margin: 50px auto 60px auto;
	width: 95%;
	padding: 0 2.5%;
	max-width: 1800px;
	font-size: 19px;
    color: #2E4562;
	text-align: justify !important;
	font-weight: 600;
}

.col4 {
	display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas de igual tamaño */
  gap: 40px; /* Espacio entre los elementos */
  width: 94%; /* Ajusta el ancho del contenedor */
  max-width: 1970px;
  margin: 70px auto 0 auto;
	align-content: center;
	transition: all 0.5s;
	text-align: center;
}
.col4-item {
  text-align: center;
  font-size: 1.2em;
	transition: all 0.5s;
}
.col4-item:hover img {
	opacity: 0.7;
	transition: all 0.5s;
}

.test-grid {
	display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas de igual tamaño */
  gap: 40px; /* Espacio entre los elementos */
  width: 94%; /* Ajusta el ancho del contenedor */
  max-width: 1970px;
  margin: 0 auto;
	align-content: center;
	transition: all 0.5s;
	text-align: center;
	
}
.test-item {
  text-align: center;
  font-size: 24px;
	background-color: #EFEFEF;
	border: -2px solid #9CA2AC;
	transition: all 0.5s;
}
.test-cont {
  padding: 50px 40px;                               /* Padding por defecto */
  background-image: url(../img/red-corner.svg);     /* Imagen de fondo */
  background-repeat: no-repeat;                     /* Evitar repetición de la imagen */
  background-position: top left;                    /* Posiciona la imagen en la esquina superior izquierda */
  border-top: 10px solid #ffffff;                   /* Borde superior */
  border-left: 10px solid #ffffff;                  /* Borde izquierdo */
  box-sizing: border-box;                           /* Asegura que el padding no afecte el tamaño total */
  height: 100%;                                     /* Se ajusta al contenedor padre */
}

.test-cont span{
	color: #737579;
	font-weight: 600;
}

.test-nombre {
  font-size: 29px;
	color: #5076B4;
	font-weight: 700;
	margin: 20px 0 10px 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas de igual tamaño */
  gap: 40px 70px; /* Espacio entre los elementos */
  width: 94%; /* Ajusta el ancho del contenedor */
  max-width: 2000px;
  margin: 0 auto;
	align-content: center;
	transition: all 0.5s;
}

.grid-item {
  text-align: center;
  font-size: 1.2em;
	transition: all 0.5s;
}
.productos {
	font-size: 39px;
	font-weight: 700;
	transition: all 0.5s;
}
.productos img {
	border: 3px solid #d7d5d5;
	margin-bottom: 20px;
}
.productos:hover {
	color: #698DC1;
	transition: all 0.5s;
}
.productos:hover img {
	border: 3px solid #698DC1;
	opacity: 0.8;
	transition: all 0.5s;
}
.prod-inactivos{
	font-size: 39px;
	font-weight: 700;
	transition: all 0.5s;
}
.prod-inactivos img {
	border: 3px solid #d7d5d5;
	margin-bottom: 20px;
}

.linec{
    width: 190px;
    height: 4px;
    background-color: #1FBED6;
    display: block;
    margin-bottom: 3%;
}
.txt-blue {
    color: #698DC1 !important;
}

.txt-pink {
    color: #E31D93 !important;
}


.fotos1{
	float: left;
	margin: 0 50px 30px 0;
	width: auto;
	height: auto;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}
.fotos2{
	float: right;
	margin: 0 0 30px 50px;
	width: auto;
	height: auto;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

.cta-btn {
	padding: 15px 25px;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 26px;
	background-color: #E31D93;
	border-radius: 50px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 3px 30px rgba(31, 190, 214, 0.9);
}

.cta-btn span {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	left: 0
}


.cta-btn:hover {
	color: #fff;
	background-color: #1FBED6;
}

.cta-btn:visited {
	color: #fff;
}

.cta-btn:hover:before,
.cta-btn:hover span:before {
	width: 100%
}

.cta-btn:hover:after,
.cta-btn:hover span:after {
	height: 100%
}

.cta-btn2 {
	color: #001f53;
	margin: 0 25px;;
}

.site-heading {
	margin-bottom: 30px
}

.site-heading .title {
	color: #1FBED6;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
}

.title-white {
	color: #fff !important;
}

.text-gray {
	color: rgb(200, 200, 200) !important;
}

.txt_yellow {
	color: #1FBED6 !important;
	font-size: 22px;
	font-weight: 700;
}

.site-heading .heading {
	position: relative;
	margin: 15px 25% 30px 25%;
	padding: 0 2% 0 2%;
	color: #7E060F;
	font-weight: 700;
	font-size: 42px;
	text-align: center;
}
.site-heading .heading:before {
	position: absolute;
	content: '';
	right: 130px;
	top: 25px;
	width: 60px;
	height: 4px;
	background-color: #1FBED6;
}

.site-heading .heading:after {
	position: absolute;
	content: '';
	left: 130px;
	top: 25px;
	width: 60px;
	height: 4px;
	background-color: #1FBED6;
}


.site-heading .heading2 {
	position: relative;
	margin: 15px 5% 30px 5%;
	padding: 0 2.5% 0 2.5%;
	color: #7E060F;
	font-weight: 700;
	font-size: 42px;
	text-align: center;
}
.site-heading .heading2:before {
	position: absolute;
	content: '';
	right: 0px;
	top: 25px;
	width: 40px;
	height: 4px;
	background-color: #1FBED6;
}

.site-heading .heading2:after {
	position: absolute;
	content: '';
	left: 0px;
	top: 25px;
	width: 40px;
	height: 4px;
	background-color: #1FBED6;
}

.page-start {
	padding-top: 60px
}

.subtitle {
	width: 100%;
	margin: 40px 0 20px 0;
	color: #7E060F;
	font-weight: 700;
	font-size: 34px;
}

.subtitle2 {
	clear: both;
	color: #7E060F;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	padding: 10px 0;
	margin-bottom: 30px;
	border-bottom:  1px solid #B7B6B6;
}

.format-link {
	margin-left: 30px;
	color: #1FBED6;
	font-weight: 700;
	font-size: 27px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease
}

.format-link:hover {
	color: #2E4562
}

.format-link img {
	width: 41px !important;
	height: 41px;
	margin: 0 15px 5px 0;
}
table {
	border-collapse:separate;
	border-spacing:0;
}
/* Tabla con estilo acero inoxidable */
table {
    width: 95%;
    border-collapse: collapse;
    border-radius: 16px; /* Bordes redondeados para un look más refinado */
    overflow: hidden;
    position: relative;
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.15); /* Sombra suave para crear profundidad */
}

/* Efecto de brillo metálico */
table::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    pointer-events: none; /* No interfiere con la interacción de la tabla */
    transition: opacity 0.3s ease;
}

/* Celdas con acabado metálico */
td, th {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #bbb; /* Borde metálico */
    color: #333;
    position: relative;
    z-index: 1; /* Asegura que el texto esté por encima del brillo */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Sombra sutil en las celdas para resaltar el efecto metálico */
td:hover, th:hover {
	background-color: #ffffff;
	transform: scale(1.04); /* Pequeña ampliación al pasar el cursor */

}



/* Efecto en las filas al pasar el ratón */
tr:hover {
	background-color: #EFEFEF;
}

/* Fila de encabezado con estilo metálico */
.fnd_Top_table {
    background: linear-gradient(135deg, #4E74B3, #88AAD1); /* Estilo metálico para el encabezado */
    color: #fff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); /* Sombra sutil para dar profundidad */
    font-weight: bold;
}

/* Fila de la tabla activa o seleccionada */
tr.selected {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}


.fnd_Top_table {
	color: #fff;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
}
.txtpqCaracteristicas {
	font-size: 19px;
	font-weight: normal;
	color: #56494D;
	text-decoration: none;
	padding-left: 25px;

}

@media screen and (max-width : 1900px) {

.container {
	font-size: 21px;	
}
	
.container2 {
	margin: 40px auto 40px auto;
	font-size: 21px;
}
.site-heading .heading {
	margin: 10px 15% 20px 15%;
	padding: 0 2% 0 2%;
	font-size: 38px;
}
.site-heading .heading2 {
	margin: 10px 5% 20px 5%;
	padding: 0 2.5% 0 2.5%;
	font-size: 38px;
}
.subtitle {
	margin: 30px 0 20px 0;
	font-size: 30px;
}
.format-link {
	font-size: 24px;
}
.txt_yellow {
	font-size: 20px;
}
.title-wrapper {
	height: 95px;
}
.title-borde {
	height: 95px;
}
h2{
	width: 60%;
	height: 95px;
	padding: 30px 0 0 120px;
	font-size: 40px;
}
h3 {
	font-size: 27px;	
}
h5 {
	font-size: 40px;
}
.productos {
	font-size: 32px;
}
.productos img {
	margin-bottom: 10px;
}
.prod-inactivos{
	font-size: 32px;
}
.prod-inactivos img {
	margin-bottom: 10px;
}
.test-grid {
  grid-template-columns: repeat(4, 1fr); /* 4 columnas de igual tamaño */
  gap: 40px; /* Espacio entre los elementos */
  width: 94%; /* Ajusta el ancho del contenedor */
	
}
.test-item {
  font-size: 22px;
}
.test-cont {
	padding: 40px 30px;
}

.test-nombre {
  font-size: 26px;
	margin: 20px 0 10px 0;
}
}

@media screen and (max-width : 1750px) {
.white_container {
	padding: 25px 0 50px 0;
}
.grid-container {
  gap: 30px 40px; /* Espacio entre los elementos */
}
.col4 {
  gap: 35px; /* Espacio entre los elementos */
  margin: 50px auto 0 auto;
}
}

@media screen and (max-width : 1560px) {
.container2 {
	margin: 30px auto 30px auto;
}
.site-heading .heading {
	margin: 15px 10% 30px 10%;
	padding: 0 2% 0 2%;
	font-size: 32px;
}
.site-heading .heading:before {
	right: 130px;
	top: 20px;
	width: 35px;
}

.site-heading .heading:after {
	left: 130px;
	top: 20px;
	width: 35px;
}
.site-heading .heading2 {
	margin: 10px 0 20px 0;
	padding: 0 2.5% 0 2.5%;
	font-size: 32px;
}
.site-heading .heading2:before {
	right: 0px;
	top: 20px;
	width: 35px;
}

.site-heading .heading2:after {
	left: 0px;
	top: 20px;
	width: 35px;
}
.site-heading .title {
	font-size: 28px;
}
.subtitle {
	margin: 20px 0 15px 0;
	font-size: 28px;
}
.cta-btn {
	padding: 10px 20px;
	font-size: 19px;
}
.format-link {
	margin-left: 20px;
	font-size: 21px;
}
.format-link img {
	width: 31px !important;
	height: 31px;
	margin: 0 10px 5px 0;
}
.cont-home{
	font-size: 22px;
}
h1 {
	padding: 20px 0;
	font-size: 40px;
}
.test-grid {
  grid-template-columns: repeat(2, 1fr); /* 4 columnas de igual tamaño */
  gap: 40px; /* Espacio entre los elementos */
  width: 94%; /* Ajusta el ancho del contenedor */
	
}
.test-item {
  font-size: 21px;
}

.test-nombre {
  font-size: 25px;
	margin: 20px 0 10px 0;
}
}

@media screen and (max-width:1450px){
.title-wrapper {
	height: 80px;
}
.title-borde {
	height: 80px;
}
h2{
	width: 70%;
	height: 80px;
	padding: 25px 0 0 100px;
	font-size: 35px;
}
h5 {
	font-size: 35px;
	padding: 25px 0;
}
}

@media screen and (max-width:1300px){
.fotos1{
	margin: 5px 40px 30px 0;
	width: 50%;
}
.fotos2{
	margin: 5px 0 30px 40px;
	width: 50%;
}
.cont-home{
	font-size: 20px;
}
.grid-container {
  gap: 30px; /* Espacio entre los elementos */
}
.productos {
	font-size: 25px;
}
.prod-inactivos{
	font-size: 25px;
}
.col4 {
  gap: 25px; /* Espacio entre los elementos */
  margin: 50px auto 0 auto;
}
}

@media screen and (max-width : 1160px) {
.site-heading .heading {
	margin: 15px 0 20px 0;
	padding: 0;
	font-size: 29px;
}
.site-heading .heading:before {
	display: none;
}

.site-heading .heading:after {
	display: none;
}
.site-heading .heading2 {
	margin: 15px 0 20px 0;
	padding: 0;
	font-size: 29px;
}
.site-heading .heading2:before {
	display: none;
}

.site-heading .heading2:after {
	display: none;
}
.site-heading .title {
	font-size: 25px;
}
.subtitle {
	margin: 15px 0 15px 0;
	font-size: 25px;
}
}

@media screen and (max-width : 1115px) {
.col_2 {
	float: left;
	width: 35%;
	margin: 0 2.5%;
}
.col_3 {
	float: left;
	width: 55%;
	margin: 0 2.5%;
}
}

@media screen and (max-width:1050px){	
.title-wrapper {
	height: 70px;
}
.title-borde {
	height: 70px;
}
h2{
	width: 80%;
	height: 70px;
	padding: 20px 0 0 50px;
	font-size: 30px;
}
h5 {
	font-size: 30px;
	padding: 20px 0;
}
}

@media screen and (max-width : 1025px) {
.container {
	font-size: 19px;	
}
.container2 {
	margin: 25px auto 10px auto;
	font-size: 19px;
}
.txt_yellow {
	font-size: 18px;
}
h3 {
	font-size: 19px;	
}
}

@media screen and (max-width:1000px){
.fotos1{
	margin: 5px 30px 25px 0;
}
.fotos2{
	margin: 5px 0 25px 30px;
}
	
}

@media screen and (max-width : 991px) {
.format-link {
	margin-left: 10px;
	font-size: 19px;
}
.format-link img {
	width: 21px !important;
	height: 21px;
	margin: 0 10px 5px 0;
}
.cont-home{
	font-size: 18px;
}
}

@media screen and (max-width : 900px) {
.col_2 {
	float: left;
	width: 80%;
	margin: 0 10%;
}
.col_3 {
	float: left;
	width: 90%;
	margin: 0 5%;
}
	
.col4 {
grid-template-columns: repeat(2, 1fr); /* 4 columnas de igual tamaño */
  width: 92%; /* Ajusta el ancho del contenedor */
}
	
.grid-container {
  grid-template-columns: repeat(2, 1fr); /* 4 columnas de igual tamaño */
  width: 92%; /* Ajusta el ancho del contenedor */
}

}


@media screen and (max-width : 750px) {
.site-heading .heading {
	margin: 10px 0 10px 0;
	padding: 0;
	font-size: 25px;
}
.site-heading .heading2 {
	margin: 10px 0 10px 0;
	padding: 0;
	font-size: 25px;
}
.site-heading .title {
	font-size: 23px;
}
.subtitle {
	margin: 15px 0 10px 0;
	font-size: 23px;
}
.cta-btn {
	padding: 10px 10px;
	font-size: 17px;
}
.col_4 {
	width: 70%;
	margin: 0 15% 40px 15%;
}
.col_5 {
	width: 90%;
	margin: 0 5%;
}
.title-wrapper {
	height: 60px;
}
.title-borde {
	height: 60px;
}
h2{
	width: 85%;
	height: 60px;
	padding: 17px 0 0 40px;
	font-size: 25px;
}
h5 {
	font-size: 25px;
	padding: 15px 0;
}
h1 {
	padding: 15px 0;
	font-size: 30px;
}
.test-grid {
  grid-template-columns: repeat(1, 1fr); /* 4 columnas de igual tamaño */
  gap: 30px; /* Espacio entre los elementos */
  width: 94%; /* Ajusta el ancho del contenedor */	
}
.test-item {
  font-size: 19px;
}

.test-nombre {
  font-size: 22px;
	margin: 15px 0 10px 0;
}
.test-cont {
	padding: 30px;
}
}

@media screen and (max-width : 650px) {
.container {
	font-size: 16px;
	padding: 5px 2.5% 0 2.5%;
}
.container2 {
	margin: 20px auto 0 auto;
	font-size: 16px;
}
.white_container {
	padding: 0 0 30px 0;
}
.col4 {
  gap: 20px; /* Espacio entre los elementos */
  margin: 30px auto 0 auto;
}
.txt_yellow {
	font-size: 16px;
}
.site-heading .heading {
	font-size: 22px;
}
.site-heading .heading2 {
	font-size: 22px;
}
.site-heading .title {
	font-size: 21px;
}
.subtitle {
	font-size: 21px;
}
.format-link {
	margin-left: 5px;
	font-size: 17px;
}
.format-link img {
	width: 17px !important;
	height: 17px;
	margin: 0 5px 0 0;
}
.prod_pics {
	width: 100%;

}
.prod_info {
	width: 95%;
	margin: 30px 2.5% 0 2.5%;

}
.cont_pics {
	width: 95%;
	margin: 15px 2.5% 0 2.5%;
}
.cont_info {
	width: 95%;
	margin: 15px 2.5% 0 2.5%;
}
h3 {
	padding: 10px 0;
	font-size: 17px;	
}
.productos {
	font-size: 22px;
}
.prod-inactivos{
	font-size: 22px;
}
}

@media screen and (max-width:600px){
.fotos1{
	margin: 5px 2.5% 25px 2.5%;
	width: 95%;
}
.fotos2{
	margin: 5px 2.5% 25px 2.5%;
	width: 95%;
}
.col_4 {
	width: 80%;
	margin: 0 10% 30px 10%;
}
.cont-home{
	font-size: 17px;
}

	
}

@media screen and (max-width : 575px) {
.title-wrapper {
	height: 50px;
}
.title-borde {
	height: 50px;
}
h2{
	width: 85%;
	height: 50px;
	padding: 13px 0 0 30px;
	font-size: 22px;
}
h5 {
	font-size: 22px;
	padding: 10px 0;
}
}

@media screen and (max-width : 500px) {
.title-wrapper {
	height: 45px;
}
.title-borde {
	height: 45px;
}
h2{
	width: 85%;
	height: 50px;
	padding: 13px 0 0 30px;
	font-size: 19px;
}
h5 {
	font-size: 19px;
	padding: 10px 0;
}
}

@media screen and (max-width : 430px) {
.title-wrapper {
	height: auto;
}
.title-borde {
	display: none;
}
h2{
	width: 100%;
	height: auto;
	padding: 13px 0 13px 30px;
	font-size: 18px;
}
}


/* Preloader CSS */

.preloader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	text-align: center;
	-webkit-transition: .9s;
	transition: .9s;
}

.preloader .loader {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	margin: 0 auto;
	width: 50px;
	height: 50px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.preloader .box {
	width: 100%;
	height: 100%;
	background: #1D1934;
	-webkit-animation: animate .5s linear infinite;
	animation: animate .5s linear infinite;
	position: absolute;
	top: 0;
	left: 0;
}

.preloader .shadow {
	width: 100%;
	height: 5px;
	background: #000000;
	opacity: 0.1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
	position: absolute;
	top: 59px;
	left: 0;
	border-radius: 50%;
	-webkit-animation: shadow .5s linear infinite;
	animation: shadow .5s linear infinite;
}

.preloader:before,
.preloader:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 60%;
	height: 100%;
	z-index: -1;
	background: #001f53;
	-webkit-transition: .9s;
	transition: .9s;
}

.preloader:after {
	left: auto;
	right: 0;
}

.preloader.preloader-deactivate {
	visibility: hidden;
}

.preloader.preloader-deactivate:after,
.preloader.preloader-deactivate:before {
	width: 0;
}

.preloader.preloader-deactivate .loader {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	visibility: hidden;
}

@-webkit-keyframes loader {
	0% {
		left: -100px;
	}
	100% {
		left: 110%;
	}
}

@keyframes loader {
	0% {
		left: -100px;
	}
	100% {
		left: 110%;
	}
}

@-webkit-keyframes animate {
	17% {
		border-bottom-right-radius: 3px;
	}
	25% {
		-webkit-transform: translateY(9px) rotate(22.5deg);
		transform: translateY(9px) rotate(22.5deg);
	}
	50% {
		-webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 40px;
	}
	75% {
		-webkit-transform: translateY(9px) rotate(67.5deg);
		transform: translateY(9px) rotate(67.5deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(90deg);
		transform: translateY(0) rotate(90deg);
	}
}

@keyframes animate {
	17% {
		border-bottom-right-radius: 3px;
	}
	25% {
		-webkit-transform: translateY(9px) rotate(22.5deg);
		transform: translateY(9px) rotate(22.5deg);
	}
	50% {
		-webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		transform: translateY(18px) scale(1, 0.9) rotate(45deg);
		border-bottom-right-radius: 40px;
	}
	75% {
		-webkit-transform: translateY(9px) rotate(67.5deg);
		transform: translateY(9px) rotate(67.5deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(90deg);
		transform: translateY(0) rotate(90deg);
	}
}

@-webkit-keyframes shadow {
	50% {
		-webkit-transform: scale(1.2, 1);
		transform: scale(1.2, 1);
	}
}

@keyframes shadow {
	50% {
		-webkit-transform: scale(1.2, 1);
		transform: scale(1.2, 1);
	}
}





/* 03. Btn Top css */

.btntoTop:before {
	color: #fff;
	content: "\f102";
	display: inline-block;
	font-family: "Font Awesome 6 Pro"; 
    font-weight: 900;
}

.btntoTop {
	background-color: #EC411B;
	border: 2px solid #EC411B;
	border-radius: 50px;
	bottom: 70px;
	cursor: pointer;
	height: 50px;
	line-height: 47px;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	position: fixed;
	right: 20px;
	text-align: center;
	-webkit-transition: opacity 0.4s ease 0s;
	transition: opacity 0.4s ease 0s;
	width: 50px;
	z-index: 99999;
}

.btntoTop.active {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s
}

.btntoTop.active:hover {
	background: #4E74B3 none repeat scroll 0 0;
	border: 2px solid #4E74B3;
	opacity: 0.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.btntoTop.active.btntoTop:hover:before {
	color: #fff;
}


/* 06. Header css */

.header-area {
	width: 100%;
	margin-bottom: 20px;
	left: 0;
	top: 0;
	
}


.header-inn {
		
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}



.site-logo {
	position: relative;
	padding: 50px 2% 20px 6%;
	width: 58%;
	transition: all 0.5s;
}

.site-logo img {
	width: 338px;
	transition: all 0.5s;
}

.menu-wrapper {
	width: 100%;
	height: 119px;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	transition: all 0.5s;
}
.menu-borde {
	height: 119px;
}
.menubgd {
	background: linear-gradient(#CC2D09, #EC411B);
	padding: 25px 0;
	width: 100%;
	height: 119px;	
}

.mainmenu {
	float: left;
}
.mainmenu ul li {
	display: inline-block;
	position: relative
}

.mainmenu ul li ul {
	position: absolute;
	width: 200px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	visibility: hidden;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	
}

.mainmenu ul li ul li {
	margin: 0;
	display: block;
}

.mainmenu ul li ul li a {
	display: block;
	padding: 0 15px;
	margin: 0;
	font-size: 17px;
	border-right: none !important;
}

.mainmenu ul li:hover ul {
	visibility: visible;
	top: 100%;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.mainmenu ul li a {
	display: inline-block;
	vertical-align: middle;
	font-weight: 400;
	font-size: 22px;
	text-transform: uppercase;
	line-height: 25px;
	text-align: center;
	color: #ffffff;
	padding: 0 50px;
	margin-top: 25px;
	position: relative;
	transition: all 0.5s;
}

a.active {
	text-decoration: underline;
}

.mainmenu ul li a:hover {
	color: #1FBED6;
}

.mainmenu ul li.has-submenu>a {
	padding-right: 20px;
}

.mainmenu ul li.has-submenu>a:after {
	position: absolute;
	content: "";
	right: 5px;
	width: 7px;
	height: 7px;
	border-right: 1px solid #F8E18A;
	border-bottom: 1px solid #F8E18A;
	-webkit-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
	top: 46%;
	z-index: 99;
}

form.psin {
	float: left;
	margin: 10px 0 0 50px;
	padding: 3px;
	font-size: 22px;
	text-align: left;
	color: #ffffff !important;
	background-color: #DD3818;
	border: 2px solid #fff;
	border-radius: 10px;
	transition-duration: 0.5s;
}
form.psin input[type="text"] {
    background-color: #DD3818;
	color: #ffffff !important;
    padding: 5px;
    vertical-align: middle;
}


form.psin input::-webkit-input-placeholder {
	color: #fff;
}


@media screen and (max-width : 2050px) {
.site-logo {
	padding: 50px 2% 20px 7%;
	width: 52%;
}
.mainmenu ul li a {
	padding: 0 40px;
}

}


@media screen and (max-width : 1800px) {

	form.psin {
	margin: 13px 0 0 30px;
	font-size: 20px;
}
	.mainmenu ul li a {
	padding: 0 30px;
}
}


@media screen and (max-width : 1650px) {
	.mainmenu ul li a {
	font-size: 20px;
		padding: 0 12px;
}
}

@media screen and (max-width : 1550px) {
.site-logo img {
	width: 300px;
}
}

@media screen and (max-width : 1300px) {

	.site-logo {
	padding: 30px 2% 20px 4%;
	width: 35%;
}
	.menu-wrapper {
	height: 95px;
}
	.menubgd {
	padding: 25px 0;
	height: 95px;
	
}
	.menu-borde {
	height: 95px;
}
	.mainmenu ul li a {
	font-size: 19px;
	padding: 0 10px;
	margin-top: 15px;
}
	form.psin {
	margin: 0 0 0 30px;
	font-size: 19px;
}

}

@media screen and (max-width : 1070px) {

form.psin {
	margin: 3px 0 0 10px;
	font-size: 17px;
}

}




.block {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: auto;
	text-align: center;
	background: rgba(0, 11, 27, 0.9);
	margin: 0;
	z-index: 99
}

.block:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.centered {
	display: inline-block;
	vertical-align: middle;
	width: 50%;
	padding: 10px 15px;
	color: #FFF;
	border: none;
	background: transparent;
}

#search-box {
	position: relative;
	width: 100%;
	margin: 0;
}

#search-form {
	height: 4em;
	border-bottom: 1px solid #fff;
	background-color: transparent;
	overflow: hidden;
}

#search-box input[type="text"] {
	width: 100%;
	padding: 20px;
	color: #fff;
	outline: none;
	font-size: 20px;
	background: transparent;
	padding-left: 0
}

#search-box input::-webkit-input-placeholder {
	color: #fff;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#search-box input::-moz-placeholder {
	color: #fff;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#search-box input:-ms-input-placeholder {
	color: #fff;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#search-box input::placeholder {
	color: #fff;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#search-box input:-ms-input-placeholder {
	color: #fff;
}

#search-box input::-ms-input-placeholder {
	color: #fff;
}

#search-button {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: auto;
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	text-align: center;
	line-height: 42px;
	border-width: 0;
	background-color: transparent;
	border-radius: 0 2px 2px 0;
	cursor: pointer;
}

#close-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	color: #fff
}

.spinner-master {
	display: none;
}

.spinner-spin {
	text-indent: -99999px
}

.spinner-spin {
	width: 22px
}


/* 07. Hero css */


.hero-area {
	padding-bottom: 20px;
	position: relative;
}

.hero-area .hero-item {
	position: relative;
	z-index: 1;
	padding: 0;
	min-height: 700px;
}

.hero-area .hero-item:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}

.hero-area img{
	text-align: center;
}

.container3 {
	margin: 10px auto 40px auto;
	width: 100%;
	padding: 0;
	max-width: 2100px;
}

.banner-img {
	width:90%;
	margin: 0 auto;
	max-width: 1920px;
}

.banner-img2 {
    float:right;
	width: 40%;
	margin: 5% 0 0 5%;
}

.banner-txt {
    float:left;
	width:55%;
	padding: 0;
	margin: 0;
	background-image: url(../img/line.svg);
	background-repeat: no-repeat;
	background-position: top left;
	
}

h6 {
	float: left;
	width: auto;
	height: auto;
	padding: 10px 7%;
	text-align: left !important;
	font-size: 41px;
	text-transform: uppercase;
    color: #ffffff;
	background-color: #9CA2AC;
	font-weight: 600;
	transition: all 0.5s;

}


.banner-txt p {
	clear: both;
	padding: 10px 0 10px 7%;
	font-size: 22px;
	color: #2B2B2B;
	font-weight: 400;
	text-align: left;
	width: 100%;
}
.banner-txt ul li {
    list-style-type: disc;
	margin-left:12%;
	font-size: 22px;
	font-weight: 400;
	text-align: left;
}


.cortes img{
	width:100%;
	height: auto;
}

.plus-text-btn {
	color: #fff;
	display: inline-block;
	overflow: hidden;
	clear: both;
	margin-top: 0;
	margin-left: 20px;
	font-weight: 600
}

.plus-text-btn:hover {
	color: #1D1934
}

.plus-text-btn .icon {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	color: #1D1934;
	background: #fff;
	border-radius: 50px;
	margin-right: 20px;
	float: left;
	overflow: auto;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.plus-text-btn .link-text {
	float: left;
	overflow: auto;
	padding-top: 3px;
}

.plus-text-btn span {
	display: block;
}

.hero-item .btn_group {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	clear: both;
	text-align: center;
	margin-top: 40px;
}

.hero-area .owl-dots {
	position: absolute;
	width: 1200px;
	left: 50%;
	padding: 0 15px;
	bottom: 15px;
	z-index: 3;
}

.hero-area .owl-dots .owl-dot {
	width: 12px;
	height: 12px;
	background: #fff;
	margin: 0 7px;
	border-radius: 30px;
}

.hero-area .owl-dots .owl-dot.active {
	background: #1FBED6;
}

.hero-area .btn_orange:after {
	background: #fff
}

.hero-area .btn_orange:hover {
	color: #1FBED6
}



@media screen and (max-width : 1800px) {

	.hero-area .hero-item {
	min-height: 640px;
}
.banner-img {
	width:94%;
}
.container3 {
	margin: 20px auto 20px auto;
	width: 100%;
	padding: 0;
	
}

.banner-txt {
	width:55%;
	
}
.banner-img2 {
	margin: 8% 0 0 5%;
}	
	
.banner-txt p {
	margin-bottom: 20px;
	font-size: 21px;
	padding: 10px 0 10px 7%;
}
.banner-txt ul li {
   font-size: 21px;
}
h6 {
	font-size: 39px;
	margin-bottom: 25px;
	padding: 10px 7%;

}
}

@media screen and (max-width : 1450px) {

.hero-area .hero-item {
	min-height: 570px;
}
	.banner-txt p {
	margin-bottom: 20px;
	font-size: 19px;
}
	.banner-txt ul li {
    font-size: 19px;
}
h6{
	font-size: 32px;
	margin-bottom: 20px;

}
}

@media screen and (max-width : 1240px) {
.hero-area .hero-item {
	min-height: 480px;
}
h6 {
	font-size: 29px;
	margin-bottom: 20px;
}
.hero-item .btn_group {
	margin-top: 30px;
}

}

@media screen and (max-width : 1025px) {
.hero-area .hero-item {
	min-height: 300px;
}
.banner-txt p {
	margin-bottom: 15px;
	font-size: 17px;
}
	.banner-txt ul li {
    font-size: 17px;
}
h6 {
	font-size: 24px;
	margin-bottom: 15px;
}
}

@media screen and (max-width : 1024px) {
.site-logo {
	padding: 40px 8% 20px 8%;
	width: 65%;
}
.menu-wrapper {
	height: 115px;
}
.menubgd {
	padding: 10px 0 0 0;
	height: 115px;
	
}
.menu-borde {
	height: 115px;
}
.banner-img2 {
	width: 70%;
	margin: 0 15%;
}

.banner-txt {
	width:100%;
	
}
.banner-txt p {
	padding: 10px 7%;
}
}

@media screen and (max-width : 750px) {
.site-logo {
	padding: 35px 2% 20px 5%;
	width: 65%;
}
.hero-area .hero-item {
	min-height: 250px;
}
}


@media screen and (max-width : 600px) {
.site-logo {
	padding: 35px 0 20px 4%;
	width: 50%;
}
}

@media screen and (max-width : 510px) {
.header-area {
	margin-bottom: 0;
	
}	
.site-logo {
	position: absolute;
	padding: 25px 0 20px 30%;
	width: 75%;
}

.menu-wrapper {
	width: 100%;
	height: 119px;
	margin: 75px 0 0 0;
}
.menubgd {
	padding: 0 0 0 30%;
	height: 100px;
	
}
	.menu-borde {
	display: none;
}
}

@media screen and (max-width : 375px) {	
.site-logo {
	position: absolute;
	padding: 25px 0 20px 25%;
	width: 75%;
}
.menu-wrapper {
	height: 100px;
	margin: 75px 0 0 0;
}
.menubgd {
	padding: 0 0 0 20%;
	height: 100px;
	
}
}

@media screen and (max-width : 310px) {	
.site-logo {
	position: absolute;
	padding: 25px 0 20px 25%;
	width: 75%;
}
.menu-wrapper {
	margin: 75px 0 0 0;
}
.menubgd {
	padding: 0 0 0 10%;
	
}
}


/* About CSS */

.about-area {
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative
}

.about-img {
	position: relative;
	padding-right: 50px;
	z-index: 1
}

.about-img img {
	border-radius: 50%
}

.about-page {
	padding-top: 177px
}

.about-area .dotted-layer {
	position: absolute;
	top: -100px;
	left: -10px;
	bottom: 0px;
	width: 766px;
	height: 766px;
	background: url(../img/welcome-pattern.png) no-repeat scroll 0 0/cover;
	z-index: -1
}

.inner-layer {
	position: absolute;
	top: -45px;
	left: -30px;
	width: 560px;
	border-radius: 50% 50% 50% 50%;
	z-index: -1;
	background: #1D1934;
	height: 560px;
	-webkit-animation-name: float-bob;
	animation-name: float-bob;
	-webkit-animation-duration: 3s;
	animation-duration: 5s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.about_shape {
	position: absolute;
	bottom: -75px;
	z-index: 1;
	border-radius: 0 !important;
	left: -120px;
}

@-webkit-keyframes float-bob {
	from {
		-webkit-transform: translate(0, 0px);
	}
	65% {
		-webkit-transform: translate(0, 15px);
	}
	to {
		-webkit-transform: translate(0, 0px);
	}
}

@keyframes float-bob {
	from {
		-webkit-transform: translate(0, 0px);
	}
	65% {
		-webkit-transform: translate(0, 15px);
	}
	to {
		-webkit-transform: translate(0, 0px);
	}
}


/* Service CSS */

.service-area {
	background-color: white;
	margin: 40px 0;
}

.service-img {
	overflow: hidden
}

.service-img img {
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	-webkit-transform: scale(1);
	transform: scale(1);
	border-radius: 30px;
}

.single-service-box:hover .service-img img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	border-radius: 30px;
}

.single-service-box {
	padding: 20px;
	margin: 10px 0;
	background: #fff
}

.service-text {
	font-size: 18px;
	color: #2E4562;
	margin-bottom: 10px;
}

.service-text h3 {
	font-weight: 700;
	font-size: 27px;
	color: #1D1934;
	margin: 25px 0 10px 0;
}

.service-action {
	color: #1FBED6;
	font-weight: 700;
	font-size: 22px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease
}

.service-action:hover {
	color: #1D1934
}

.service-action img {
	width: 23px !important;
	height: 23px;
	float: left;
	clear: both;
	margin: 5px 10px 0 0;
}

.service-action i {
	margin-left: 5px;
	color: #1D1934
}

.service-box .owl-dots {
	display: block !important;
	text-align: center
}

.service-box .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid #1D1934;
	margin: 0 5px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s
}

.service-box .owl-dots .owl-dot.active {
	background: #1D1934
}

.service-video-box img {
	width: 100%
}

.service-video-box {
	position: relative
}

.service-video-box:before {
	position: absolute;
	content: '';
	background: rgba(182, 140, 90, 0.46);
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.play-wrapper {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1
}

.video-main {
	position: relative;
	display: inline-block;
}

.video {
	height: 80px;
	width: 80px;
	line-height: 80px;
	text-align: center;
	border-radius: 100%;
	background: transparent;
	color: #fff;
	display: inline-block;
	background: #1D1934;
	z-index: 999;
	font-size: 20px
}

@-webkit-keyframes waves {
	0% {
		-webkit-transform: scale(0.2, 0.2);
		transform: scale(0.2, 0.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	50% {
		opacity: 0.9;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}

@keyframes waves {
	0% {
		-webkit-transform: scale(0.2, 0.2);
		transform: scale(0.2, 0.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
	50% {
		opacity: 0.9;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
	}
	100% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	}
}

.fa-play:before {
	content: "\f04b";
}

.waves {
	position: absolute;
	width: 180px;
	height: 180px;
	background: rgba(182, 140, 90, 0.32);
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	border-radius: 100%;
	right: -50px;
	bottom: -50px;
	z-index: -1;
	-webkit-animation: waves 3s ease-in-out infinite;
	animation: waves 3s ease-in-out infinite;
}

.wave-1 {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

.wave-2 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.wave-3 {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.service-details-img {
	position: relative;
	z-index: 1
}

.service-details-img:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(22, 37, 66, 0.38);
	z-index: 1;
}

.service-sidebar-top {
	border: 1px solid #1D1934;
	padding: 20px
}

.service-sidebar-top p {
	font-size: 18px;
	font-weight: 500;
	color: #111
}

.service-sidebar-top p span {
	float: right;
	font-size: 16px;
	color: #555
}

.page-start.service-area {
	padding-bottom: 200px
}

.service-page-subscribe {
	margin-top: -100px
}


/* Counter CSS */

.counter-area {
	background-image: url(../img/counter-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	z-index: 1
}

.counter-area:before {
	position: absolute;
	width: 100%;
	height: 100%;
	content: "";
	top: 0;
	left: 0;
	background: rgba(28, 32, 77, 0.93);
	z-index: -1
}

.single-counter-box {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
}

.counter-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
	position: relative;
}

.counter-top>img {
	position: absolute;
	width: 65px;
	top: 0;
	right: 0;
}

.counter-top h2 {
	font-size: 46px;
	color: #1D1934;
}

.single-counter-box h3 {
	font-size: 22px;
}


/* Partners CSS */

.partners-area {
	float: left;
	width: 100%;
	padding: 80px 0;
	background-image: linear-gradient(#F6F6F6, #DDDADA);
	border-bottom: 1px solid #ffffff;
}

.links-home {
	width: 20%;
	height: auto;
	margin: 0;
	float: left;
	text-align: center;
	font-size: 26px;
	line-height: 35px;
	color: #2E4562;
	font-weight: 700;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.links-home img {
	width: 161px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.links-home img:hover{
	opacity:.7;
}

.links-serv {
	width: 25%;
	float: left;
	margin-bottom: 50px;
	text-align: center;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.links-serv img {
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.links-serv img:hover{
	opacity:.7;
}

.links-academico {
	width: 45%;
	float: left;
	margin:0 2.5% 50px 2.5%;
	text-align: center;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.links-academico img {
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.links-academico img:hover{
	opacity:.7;
}

.partner-inn ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.partner-inn ul li {
	margin-bottom: 50px;
	-webkit-box-flex: 0;
	-ms-flex: 0 23%;
	flex: 0 23%;
	list-style: none;
	text-align: center
}

.partner-inn ul li img {
	opacity: 0.3;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s
}

.partner-inn ul li a:hover img {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"
}

@media screen and (max-width : 1500px) {
.links-home {
	width: 17%;
	margin: 0 1.5%;
	font-size: 24px;
	line-height: 30px;
}
}

@media screen and (max-width : 1200px) {
.links-home {
	width: 16%;
	margin: 0 2%;
	font-size: 22px;
	line-height: 25px;
}
.links-home img {
	width: 131px;
}
}

@media screen and (max-width : 1070px) {
.links-home {
	width: 29%;
	margin: 0 2%;
	height: 200px;
	font-size: 22px;
	line-height: 25px;
}
.links-home img {
	width: 110px;
}
}

@media screen and (max-width : 670px) {
.links-home {
	width: 29%;
	margin: 0 2%;
	height: 165px;
	font-size: 19px;
	line-height: 20px;
}
.links-home img {
	width: 90px;
}
}

@media screen and (max-width : 550px) {
.links-home {
	width: 29%;
	margin: 0 2%;
	height: 145px;
	font-size: 16px;
	line-height: 20px;
}
.links-home img {
	width: 80px;
}
}

@media screen and (max-width : 470px) {
.links-home {
	width: 46%;
	margin: 0 2%;
	height: 145px;
}
}



/* Testimonial CSS */

.testimonial-slider {
	padding: 0 1px
}

.testimonial-box {
	border: 1px solid #1D1934;
	padding: 20px;
	position: relative
}

.testimonial-info {
	border-bottom: 1px solid rgba(157, 142, 91, 0.2);
	padding-bottom: 10px
}

.testimonial-img {
	width: 100px !important;
	height: 100px !important;
	border-radius: 50%;
	margin: 12px 0 20px 0;
}

.testimonial-ratting li {
	color: #1D1934;
	font-size: 14px;
	display: inline-block
}

.testimonial-text {
	margin-top: 20px
}

.testimonial-quote {
	position: absolute;
	width: 40px;
	height: 40px;
	top: -1px;
	right: 130px;
}

.testimonial-quote1 {
	position: absolute;
	width: 40px;
	height: 40px;
	top: -1px;
	right: 100px;
}

.testimonial-quote2 {
	position: absolute;
	width: 40px;
	height: 40px;
	top: -1px;
	right: 155px;
}

.testimonial-info-text p {
	margin-bottom: 0
}

.testimonial-slider {
	position: relative
}

.testimonial-slider .owl-item img {
	display: inline-block;
	width: inherit
}

.testimonial-slider .owl-dots {
	display: block !important;
	text-align: center;
	margin-top: 20px
}

.testimonial-slider .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid #1D1934;
	margin: 0 5px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s
}

.testimonial-slider .owl-dots .owl-dot.active {
	background: #1D1934
}


/* Faq CSS */

.faq-area {
	background: #f6f8fa;
	position: relative
}

.faq-box {
	background-image: url(../img/faq-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	z-index: 1
}

.faq-box:after {
	position: absolute;
	content: "";
	top: 0;
	width: 100%;
	height: 100%;
	background: #1D1934;
	left: -57%;
}

.faq-box:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(28, 32, 77, 0.93);
	z-index: -1
}

.accordion-button:not(.collapsed):after {
	display: none
}

.faq-img {
	background: #1D1934;
	position: relative;
	padding-top: 30px;
	z-index: 1
}

.faq-img:before {
	position: absolute;
	content: "";
	width: 40px;
	height: 60%;
	background: #f6f8fa;
	right: -30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.line-1 {
	position: absolute;
	content: "";
	width: 20px;
	height: 25%;
	background: #f6f8fa;
	right: -20px;
	top: 0;
	z-index: 1;
}

.line-2 {
	position: absolute;
	content: "";
	width: 20px;
	height: 25%;
	background: #f6f8fa;
	right: -20px;
	bottom: 0;
	z-index: 1;
}

.faq-accordion {
	background: transparent;
	padding: 50px;
}

.accordion-item {
	background-color: transparent;
	border: none;
	margin: 5px 0
}

.accordion-button {
	font-size: 25px;
	background: transparent;
	color: #fff;
	padding: 10px 0
}

.accordion-button span {
	margin-right: 10px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s
}

.accordion-button:not(.collapsed) {
	color: #fff;
	background-color: transparent;
	box-shadow: none;
	border: none;
	font-size: 25px;
}

.accordion-button:focus {
	z-index: 3;
	border-color: #fff;
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
	outline: none;
	box-shadow: 0 0 0 0 rgb(13 110 253 / 25%) !important
}

.accordion-body p {
	color: #ccc;
}

.accordion-body {
	padding: 10px 50px;
}

.accordion-button:not(.collapsed) span {
	color: #1D1934
}

.faq-support-box {
	text-align: center;
	padding: 20px;
	position: relative;
	box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);
	margin-top: 30px
}

.faq-support-box img {
	width: 100px
}

.faq-support-box h3 {
	margin: 20px 0
}

.faq-support-box p {
	margin: 0
}

.faq-support-text {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 70px;
	top: 0;
	left: 0;
	background: #1D1934;
	-webkit-transform-origin: center;
	transform-origin: center;
	visibility: hidden;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-webkit-transform: scale(0);
	transform: scale(0)
}

.faq-support-box:hover .faq-support-text {
	-webkit-transform: scale(1);
	transform: scale(1);
	visibility: visible
}

.faq-support-text p {
	margin-top: 10px;
	font-weight: 500;
	color: #fff
}

.faq-support-text p span {
	margin-right: 10px
}



/* Footer CSS */

.footer-area {
	float: left;
	clear: both;
	width: 100%;
	color: #000;
	font-size: 24px;
	line-height: 40px;
	background: linear-gradient(#B8BBC1, #C5C8CE, #979EA8);
	
}

.footer-area:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.96;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=96)";
	z-index: -1;
}

.footer-top {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 40px;
}

.footer-top h3 {
	color: #fff;
	margin-bottom: 30px;
	font-size: 22px;
}

.footer-about p {
	color: #AAB5CC;
	margin-bottom: 30px
}

.footer-social li {
	display: inline-block;
	margin-right: 3px
}

.footer-social li a {
	display: block;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	background: #1D1934;
	color: #fff;
	border-radius: 0;
}

.footer-logo {
	float: left;
	width: 21%;
	margin: 0 0 20px 0;
	text-align: center;
}

.footer-cont {
	float: left;
	width: 79%;
	margin: 0;
	text-align: left;
}

.redes{
	margin: 0 15px 0 0;
}
.redes:hover {
	opacity: 60%
}

.footer-link {
	margin: 0 0 0 50px;
	color: #000;
	font-weight: 700;
	font-size: 22px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease
}

.footer-link:hover {
	color: #EC411B
}

.footer-link img {
	width: 23px !important;
	height: 23px;
	margin: 0 10px 5px 0;
}


.footer-contact ul li {
	margin-bottom: 10px
}

.footer-contact ul li p,
.opening-hour ul li p {
	color: #AAB5CC;
	position: relative;
	margin-left: 30px
}

.footer-contact ul li p i,
.opening-hour ul li p i {
	position: absolute;
	left: -30px;
	top: 5px;
	color: #1D1934
}

.footer-contact ul li p a:hover {
	color: #1D1934
}

.opening-hour ul li p span {
	font-size: 18px;
	color: #1D1934;
	font-weight: 700
}

.opening-hour {
	margin-top: 30px
}

.opening-hour h3 {
	margin-bottom: 15px
}



.footer-post-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px
}

.footer-post-box:last-child {
	margin-bottom: 0
}

.footer-post-img {
	border: 2px solid #AAB5CC;
	margin-right: 10px;
	width: 75px;
	height: 75px;
}

.footer-post-img img {
	width: 100%;
	height: 100%
}

.footer-post-text {
	width: 75%;
}

.footer-post-text h4 {
	margin-bottom: 5px;
	color: #fff;
	font-size: 17px;
}

.footer-post-text h4 a:hover {
	color: #1D1934
}

.footer-post-text p {
	color: #AAB5CC
}

.footer-bottom {
	float: left;
	clear: both;
	width: 100%;
	margin-top: 30px;
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	color: #fff;
	font-size: 20px;
}


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

.footer-bottom a {
	font-weight: 700;
	color: #001f53;
}
.line {
	margin: 0 30px 10px 30px;
}
.interartis-logo {
	margin: 0 0 10px 10px;
}
.red-indiv {
	margin: 0 30px 0 0;
}


@media screen and (max-width : 1325px) {
.footer-area {
	font-size: 19px;
	line-height: 35px;
}
.footer-top {
	padding-top: 40px;
	padding-bottom: 25px;
}
.footer-logo {
	width: 15%;
	margin: 0 0 10px 0;
}

.footer-cont {
	width: 85%;
}

.footer-link {
	margin: 0 50px 0 0;
	font-size: 20px;
}
.footer-bottom {
	margin-top: 25px;
	padding: 15px 0;
	font-size: 18px;
}
}

@media screen and (max-width : 1100px) {
.footer-area {
	font-size: 18px;
	line-height: 30px;
}
.footer-logo {
	display: none;
}
.footer-cont {
	width: 90%;
	margin: 0 5%;
	text-align: center;
}
.footer-link {
	font-size: 19px;
}
.footer-bottom {
	margin-top: 20px;
	padding: 15px 0;
	font-size: 17px;
}
.line {
	margin: 0 10px 10px 10px;
}
}

@media screen and (max-width : 950px) {
.footer-area {
	font-size: 17px;
	line-height: 27px;
}
.footer-top {
	padding-top: 30px;
	padding-bottom: 20px;
}
.footer-link {
	font-size: 17px;
}
.footer-bottom {
	font-size: 16px;
}
.red-indiv {
	margin: 0 20px 0 0;
}

}

@media screen and (max-width : 800px) {
.footer-area {
	font-size: 16px;
	line-height: 20px;
}
.footer-top {
	padding-top: 20px;
	padding-bottom: 10px;
}
.footer-link {
	font-size: 16px;
}
.footer-bottom {
	font-size: 15px;
}
.red-indiv {
	margin: 0 20px 0 0;
}

}



/* Error CSS */

.error-area {
	background: #DFDDD8;
	padding-bottom: 200px
}

.error-area .container {
	position: relative
}

.error-text h2 {
	font-size: 200px;
	letter-spacing: 10px;
	color: #001f53;
	font-weight: 700
}

.error-text h2 span {
	color: #1D1934
}

.error-text h5 {
	margin-bottom: 20px;
	font-size: 30px;
}

.error-text .header-btn {
	margin-top: 30px
}

.error-text .header-btn:hover {
	color: #001f53;
}

.error-img {
	position: relative
}


/* Contact CSS */

.single-contact-box {
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
	padding: 30px 20px;
	margin-bottom: 30px
}

.contact-area {
	padding-bottom: 20px
}

.single-contact-box h3 {
	margin-top: 20px;
	margin-bottom: 5px
}

.single-contact-box p {
	margin-bottom: 0 !important;
	text-align: center;
}

.contact-subscribe-area {
	position: relative
}

.contact-subscribe-area:before {
	background: #f6f8fa;
	position: absolute;
	width: 100%;
	height: 50%;
	content: "";
	top: 0;
	left: 0;
	z-index: -1
}

details { 
  background-color: #f6f8fa;
  width: 100%;
  color: #364f6b;
  position: relative;  
}
details summary {  
  font-weight: 400;
  font-size: 1.25rem;
  padding: 1rem;
  cursor: pointer;
  list-style: none;
}
details p {
  padding: 0.5rem;
  margin: 1rem 0 1rem 0;
  font-size: 16px;
  text-align: center;
}

details[open] {
  background: #ffffff;
}

details[open] summary {
  font-weight: 600;
}

details summary::before {
  position: absolute;
  content: "\f103";
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 1.75rem;
  top: 12px;
  right: 16px;  
}

details[open] summary::before {
  -webkit-animation: rotate 0.6s ease-in-out both;
          animation: rotate-emoji 0.6s ease-in-out both;
}

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

.interartis {
	width: 100px;
}


/*----------------GALLERY---------------------*/
* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #CC2D15;
  font-weight: bold;
  font-size: 35px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #698DC1;
  font-size: 17px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center !important;
  padding: 2px 16px;
	margin-bottom: 25px;
  font-size: 27px;
  font-weight: 700;
  color: #2B2B2B;
	line-height: 1.2;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

@media screen and (max-width:1900px){
.caption-container {
  padding: 2px 16px;
	margin-bottom: 20px;
  font-size: 22px;
}
}

@media screen and (max-width:1025px){
.caption-container {
  padding: 2px 10px;
	margin-bottom: 15px;
  font-size: 20px;
}
}

@media screen and (max-width:500px){
.caption-container {
	margin-bottom: 10px;
  font-size: 19px;
}
}



/* -------------------CONTACTO-------------------*/

#contacto-f{
    display: block;
    max-width: 1000px;
    margin: auto;
}

.con-form{
    display: block;
    margin: auto;
}
.con-form p{
    width: 100%;
    display: block;
    
}
.con-form p b{
    font-size: 22px;
    font-weight: 700;
    color: #0a3da0;
}
.con-form p a{
    color:#E31D93;
    text-decoration: none;
}
.con-form input, textarea, select {
	width: 100%;
	height: auto;
	background-color: #f8f8f8;
	border: none;
	padding: 10px 20px;
	margin: 10px 0;
	border-radius: 10px;
	outline: none
}

.button {
    width: auto;
	float: left;
	max-width: 170px;
	margin: 20px 0 0 15%!important;
	font-weight: 700 !important;
	text-transform: uppercase;
	text-align: center;
    background-color: #EC411B !important;
    color: #fff;
    border: none;
    display: block;
    border-radius: 50px!important;
  padding: 10px 30px !important;
  transition: all 0.3s;
  cursor: pointer;
}
.button:hover{
    background-color: #698DC1!important;
	color: #fff !important;
}

.button2 {
    width: auto;
	float: left;
	margin: 20px 0 0 15%!important;
	font-weight: 700 !important;
	text-transform: uppercase;
	text-align: center;
    background-color: #EC411B !important;
    color: #fff;
    border: none;
    display: block;
    border-radius: 50px!important;
  padding: 10px 30px !important;
  transition: all 0.3s;
  cursor: pointer;
}
.button2:hover{
    background-color: #698DC1!important;
	color: #fff !important;
}

/* Style the tab */
.tab {
  overflow: hidden;
}
.tab2 {
  overflow: hidden;

}
.tab3 {
  overflow: hidden;

}

/* Style the buttons inside the tab */
.tab button {
  border-radius: 100px;
	width: 100px;
	height: 100px;
	margin: 60px;
	border: 4px solid #1FBED6;
	background-color: #ffffff;
	color: #1FBED6;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}


/* Change background color of buttons on hover */
.tab button:hover {
  opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}


/* Create an active/current tablink class */
.tab button.active {
  border: 4px solid #E31D93;
}


/* Style the tab content */
.tabcontent {
  display: none;
  border-top: none;
}
.tabcontent2 {
  display: none;
	padding: 10px 0 0 50px;

}
.tabcontent3 {
  display: none;
	padding: 0;
	border-top: 1px solid #707070;

}
.tabcontent4 {
  display: none;
	padding: 0;
	border-top: 1px solid #707070;

}

@media screen and (max-width:1200px){
.tab button {
	width: 86px;
	height: 86px;
	margin: 35px;

}
}

@media screen and (max-width:850px){
.tab button {
	width: 86px;
	height: 86px;
	margin: 15px;

}
}



