/*
Theme Name: Mexxo 2023 2
License: Privada
Tags: minimalista, responsive, modern, full width
*/

.slider-container {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
	aspect-ratio: 9 / 2 ; /* 7 / 2 */
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 400px;
}

.slider img {
    width: 100%;
    height: 100%;
    /*object-fit: contain;*/
}

@media(max-width:800px){
	.slider img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ec0c2f;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev {
	left: 10px;
}

.next {
	right: 10px;
}


img {
	width: 100%;
	display: block;
}


/* Fin del slider */

* {
	font-family: 'Open Sans', sans-serif;
	padding: 0;
	margin:0;
}

body {
	background: #f9f9f9;
}

* img{
	height: auto;
}

.clear {
	clear: both;
}

.wrap-2{
	max-width:100%;
	margin:auto;
	width:100%;
}

.wrap {
	max-width: 1400px;
	margin:auto;
	width:95%;
}

.top-banner {
	background: #145f89;
	line-height: 40px;
}

.top-banner .left {
	width: 50%;
	float: left;
}

.top-banner .left ul {
	display: flex;
	list-style: none;
	gap:5%;
}  

.top-banner .left ul li a {
	color: #ffba03;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.top-banner .right {
	width: 50%;
	float: right;
	display: flex;
	justify-content: right;
	gap:10%;
}

.top-banner .right ul{
	list-style: none;
	display: flex;
}

.top-banner .right ul:nth-child(1) li a {
	color: #ffba03;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.top-banner .right ul:nth-child(1) li a i {
	color: #ffffff;
	margin:0 5px 0 0;
}

.top-banner .right ul:nth-child(2) li a {
	color: #ffba03;
	width: 40px;
	display: block;
	text-decoration: none;
} 

.top-banner .left ul li a:hover,
.top-banner .right ul li a:hover {
	color: #ffffff;
	transition: all .3s ease;
}

header {
	padding: 10px 0 0 0;
}

header .logo {
	width: 200px;
	float: left;
	max-width: 20%;
}

header .logo img {
	width: 100%;
	margin:0 0 -5px 0;
}

header .search-box {
	width: 35%;
	float: left;
	margin:23px 0 0 15%;
	position: relative;
}

header .search-box input[type="text"] {
	width: 96%;
	padding: 12px 2%;
	border:none;
	outline: none;
	box-shadow: 0 0 0 1px #145f89;
	border-radius: 50px;
	color: #145f89;
	background: transparent;
}

header .search-box input[type="text"]::placeholder {
	color: #145f89;
}

header .search-box button {
	position: absolute;
	right: 0;
	top:0;
	color: #145f89;
	background: transparent;
	cursor: pointer;
	border:none;
	line-height: 42px;
	width: 50px;
	text-align: center;
}

header .shop-info {
	float: right;
	margin:20px 5% 0 0;
}

header .shop-info ul {
	display: flex;
	line-height: 50px;
	list-style: none;
	gap:25px;
}

header .shop-info ul li a {
	display: block;
	color: #145f89;
	font-size: 22px;
	position: relative;
	transition:all .3s ease;
}

header .shop-info ul li:hover a {
	color: #ffba03;
}

header .shop-info ul li a em {
	position: absolute;
	top:7px;
	right: -10px;
	font-size: 10px;
	font-style: normal;
	background: red;
	line-height: 15px;
	width: 15px;
	text-align: center;
	border-radius: 50px;
	font-weight: 600;
	color: #ffffff;

}

#btn-nav {
	display: none;
}

header label {
	position: absolute;
	width: 45px;
	height: 45px;
	background: transparent;
	right: 25px;
	top:25px;
	cursor: pointer;
	outline: none;
	display: none;
}

header label span {
	width: 60%;
	height: 2px;
	background: #173b53;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s ease;
}

header label span:nth-child(1) {
	top:10px;
}

header label span:nth-child(2) {
	top:25px;
	transition-delay: .2s;
}

#btn-nav:checked ~ label span:nth-child(1) {
	transform: translateX(-50%) rotate(45deg);
	top:20px;
}

#btn-nav:checked ~ label span:nth-child(2) {
	transform: translateX(-50%) rotate(-45deg);
	top:20px;
}

nav {
	margin:10px 0 0 0;
	background: #173b53;
	line-height: 50px;
	position: relative;
}

nav .btn-categorias {
	width: 50px;
	height: 50px;
	float: left;
	position: relative;
}

nav #btn-categorias {
	display: none;
}

nav .btn-categorias label {
	width: 50px;
	height: 50px;
	display: block;
	position: relative;
	cursor: pointer;
	top:0;
	left: 0;
}

nav .btn-categorias label span {
	position: absolute;
	width: 50%;
	height: 2px;
	background: #ffffff;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s ease;
}

nav .btn-categorias label span:nth-child(1) {
	top:15px;
}

nav .btn-categorias label span:nth-child(2) {
	top:24px;
}

nav .btn-categorias label span:nth-child(3) {
	top:33px;
}

#btn-categorias:checked ~  label span:nth-child(1) {
	transform: rotate(-45deg) translateX(-50%);
	top:15px;
}

#btn-categorias:checked ~  label span:nth-child(2) {
	transform: rotate(-345deg) translateX(-50%);
	top:20px;
	opacity: 0;
	transition-delay: .2s;
	transition:all .1s ease;
}

#btn-categorias:checked ~  label span:nth-child(3) {
	transform: rotate(45deg) translateX(-50%);
	top:33px;
}

nav .nav-categorias {
	background: #145f89;
	width: 240px;
	transform: translateY(50px);
	transition: all .3s ease;
	pointer-events: none;
	opacity: 0;
	position: relative;
	z-index: 999;
}

#btn-categorias:checked ~ .nav-categorias {
	transform: translateY(0);
	pointer-events: auto;
	opacity: 1;
}

nav .nav-categorias li {
	list-style: none;
	color: #ffffff;
	position: relative;
	width: 100%;
}

nav .nav-categorias li a {
	text-decoration: none;
	padding: 10px 10px;
	font-size: 14px;
	line-height: 18px;
	display: block;
	color: rgba(255,255,255,.7);
}

nav .nav-categorias li:hover a {
	background: #1878ae;
	transition: all .2s ease;
	transition-delay: .2;
}

nav .nav-categorias li ul {
	display: none;
}

nav > ul {
	margin:0 0 0 70px;
	list-style: none;
	display: block !important;
}

nav > ul > li {
	width: auto !important;
	display: inline-block !important;
}

nav > ul > li > a {
	display: block;
	text-decoration: none;
	color: #ffffff90;
	font-size: 12px;
	transition: all .3s ease;
	white-space: pre;
	padding: 0 10px !important;
}

nav > ul > li > a:hover {
	color: #ffffff;
}

nav > ul > li > a > .material-symbols-outlined {
  font-variation-settings:'FILL' 0,'GRAD' 0,'opsz' 58;
  display: inline-block;
  font-weight: 200;
  transform: translateY(6px);
  transition: all .3s ease;
}
nav > ul > li:hover > a > .material-symbols-outlined {
	color: #ffba03;
	font-weight: 600;
}

.slider{
	position: relative;
}

.slider .slidesjs-navigation {
	position: absolute;
	top:50%;
	z-index: 99;
	display: block;
	width: 100%;
}

.slider .slidesjs-previous {
	left: 0;
	width: 100%;
	background: #fff;
}

.slider .slidesjs-previous,
.slider .slidesjs-next {
	background: #ec0c2f;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 20px;
	text-decoration: none;
	color: #eb9c3a;
	border-radius: 40px;
	opacity: .6;
	transition: all .3s ease;
}

.slider .slidesjs-previous:hover,
.slider .slidesjs-next:hover {
	opacity: 1;
}

.slider .slidesjs-previous {
	left:  10px;
}

.slider .slidesjs-next {
	right: 10px;
}

.home-banner .wrap-2 {
	display: flex;
	flex-wrap: wrap;
}

.home-banner .wrap-2 article {
	flex-grow: 1;
	padding: 30px;
}

.home-banner .wrap-2 article:nth-child(1) {
	background: #10293b;
	display: flex;
    justify-content: center;
	align-items: center;
}

.home-banner .wrap-2 article:nth-child(2) {
	background: #173b53;
	display: flex;
    justify-content: center;
	align-items: center;
}

.home-banner .wrap-2 article:nth-child(3) {
	background: #145f89;
	display: flex;
    justify-content: center;
	align-items: center;
}

.home-banner .wrap-2 article .icon {
	background: rgba(255,255,255,.1);
	width: 70px;
	line-height: 70px;
	font-weight: 200;
	font-size: 40px;
	border-radius: 50%;
	text-align: center;
	color: #ffffff;
	float: left;
}

.home-banner .wrap-2 article .icon .material-symbols-outlined {
	display: block;
	line-height: 70px;
	pointer-events: none;
	font-weight: inherit;
	font-size: inherit;
}

.home-banner .wrap-2 article .info {
	margin:0 0 0 45px;
	color: #ffffff;
}

.home-banner .wrap-2 article .info h2 {
	font-size: 20px;
	font-weight: 600;
}

.home-banner .wrap-2 article .info p {
	font-weight: 300;
	font-size: 16px;
}

.banner-1 img {
	width: 100%;
	border-radius: 10px;
}

@media(max-width:800px){
	.banner-1 img {
		width: 100%;
		border-radius: 10px;
		height:100px;
		object-fit: cover;
	}
}

.banner-2 {
	position: relative;
	overflow: hidden;
	width: 100%;
	background-image: url(/wp-content/uploads/img7.webp);
	padding: 140px 0;
	text-align: center;
	background-size: cover;
	background-attachment: fixed;
}

.banner-2:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	left: 0;
	top:0;
}

.banner-2 h2 {
	font-size: 30px;
	font-weight: 900;
	color: #ffffff;
	position: relative;
	z-index: 10;
	max-width: 1000px;
	margin:auto;
}

.showcase > .wrap > h2 {
	padding:20px;
	text-align:center;
	color:#313131;
}

.banner-logos {
	background-size: cover;
	background-attachment: fixed;	
	padding: 100px 0;
	position: relative;
}

.banner-logos h2 {
	font-size: 25px;
	margin:0 0 20px 0;
	font-weight: 600;
	color: #313131;
}

.clearout {
	height:0px;
	clear:both;
}

.nbs-flexisel-nav-right {
	right: -10px;
}

.nbs-flexisel-nav-left {
	left: -10px;
}

.nbs-flexisel-nav-right,
.nbs-flexisel-nav-left {
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: #ffba03;
	cursor: pointer;
	width: 45px;
	line-height: 45px;
	text-align: center;
	opacity: .7;
	transition: all .3s ease;
}

.nbs-flexisel-nav-right:hover,
.nbs-flexisel-nav-left:hover {
	opacity: 1;
}

.nbs-flexisel-container {
    position:relative;
    max-width:100%;
}
.nbs-flexisel-ul {
    position:relative;
    width:99999px;
    margin:0px;
    padding:0px;
    list-style-type:none;   
    text-align:center;  
    overflow: auto;
}

.nbs-flexisel-inner {
    position: relative;
    overflow: hidden;
    float:left;
    width:100%;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;  
}

.nbs-flexisel-inner li {
	list-style: none;
}

.nbs-flexisel-item {
    float:left;
    list-style: none;
    margin:0 0px 0 0px;
    padding:0px;
    position:relative;
    line-height:0px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.nbs-flexisel-item img {
    max-width: 50%;
    min-width: 100px;
    position: relative;
    border-radius: 10px;
    
}

.nbs-flexisel-item p {
	position:relative;
	font-size: 13px;
	z-index: 999;
	transform: translateY(-10px);
	margin:0px 0;
	color: #444444;
}

.bottom-banner {
	background: #145f89;
}

.bottom-banner .wrap {
	display: flex;
	flex-wrap: wrap;
}

.bottom-banner .wrap article {
	flex-grow: 1;
	padding: 30px;
	position: relative;
}

.bottom-banner article:after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	right:0;
	background: rgba(255,255,255,.1);
	top:0;
}

.bottom-banner .wrap article:last-child:after {
	display: none;
}

.bottom-banner article .icon {
	background: rgba(255,255,255,.1);
	width: 70px;
	line-height: 70px;
	font-weight: 200;
	font-size: 40px;
	border-radius: 50%;
	text-align: center;
	color: #ffffff;
	float: left;
}

.bottom-banner article .icon .material-symbols-outlined {
	display: block;
	line-height: 70px;
	pointer-events: none;
	font-weight: inherit;
	font-size: inherit;
}

.bottom-banner article .info {
	margin:0 0 0 90px;
	color: #ffffff;
}

.bottom-banner article .info h2 {
	font-size: 20px;
	font-weight: 600;
}

.bottom-banner article .info p {
	font-weight: 300;
	font-size: 16px;
}

.page-banner {
  background: #f0f0f0;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.page-banner .image {
  position: absolute;
  background: #f0f0f0;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  z-index: 1;
}

.page-banner .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content {
	padding: 80px 0;
}

.content input[type="text"],
.content input[type="password"],
.content input[type="email"],
.content input[type="tel"],
.content input[type="number"],
.content textarea,
.content select {
	font-family: 'Roboto', sans-serif;
	background-color: #ffffff;
	padding: 8px 2%;
	width: 96%;
	border:solid 1px #f0f0f0;
	border-radius: 5px;
	outline: none;
	resize: none;
	margin:0 0 10px 0;
	font-size: 15px;
	-webkit-appearance: none;
}

.content select {
	color: #313131;
	cursor: pointer;
}

.content input[type="text"]:focus,
.content input[type="password"]:focus,
.content input[type="email"]:focus,
.content input[type="tel"]:focus,
.content input[type="number"]:focus,
.content textarea:focus,
.content select:focus{
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
	transition: all .3s ease;
}

.content input[type="text"]::placeholder,
.content input[type="email"]::placeholder,
.content input[type="tel"]::placeholder,
.content input[type="number"]::placeholder,
.content textarea::placeholder {
	color: #313131;
}

.content input[type="submit"] {
	background-color: #173b53;
	color: #ffffff;
	border:none;
	outline: none;
	cursor: pointer;
	border-radius: 3px;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 30px;
	margin:0 0 20px 0;
	transition: all .3s ease;
	-webkit-appearance: none;
}

.content input[type="submit"]:hover,
.content input[type="submit"]:focus {
	color: #ffffff;
	background-color: #212121;
}

.testimonios {
	padding: 100px 0;
}
  
.sub-footer {
	background: #173b53;
	padding: 90px 0;
	color: #f0f0f0;
}

.sub-footer .wrap {
	display: flex;
	flex-wrap: wrap;
	gap:5%;
}

.sub-footer .wrap article {
	width: 0px;
	flex-grow: 1;
	object-fit: cover;
}

.sub-footer .wrap article:nth-child(1) {
	width: 12%;
}

.sub-footer .wrap article:nth-child(4) {
	width: 8%;
}

.sub-footer .wrap article:nth-child(1) img {
	max-width: 120px;
	margin:0 0 20px 0;
}

.sub-footer h2 {
	color: #ffba03;
	font-weight: 500;
	font-size: 20px;
	margin:0 0 20px 0;
}

.sub-footer .wrap article p,
.sub-footer .wrap article ul li,
.sub-footer .wrap article ul li a {
	color: #f0f0f0;
	text-decoration: none;
	line-height: 30px;
	font-weight: 300;
	list-style: none;
}

.sub-footer .wrap article form {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	width: 100%;
	flex-grow: 1;
	object-fit: cover;
	gap:10px;
}

.sub-footer .wrap article form input[type="email"] {
	padding: 12px 2%;
	width: 60%;
	border-radius: 10px;
	background: #145f89;
	border:none;
	color: #ffffffff;
	outline: none;
}

.sub-footer .wrap article form input[type="email"]::placeholder {
	color: #ffffff;
}

.sub-footer .wrap article form input[type="submit"] {
	padding: 12px 0;
	background: #ffba03;
	color: #145f89;
	font-weight: 600;
	text-align: center;
	border-radius: 10px;
	border:none;
	width: 32%;
	outline: none;
	cursor: pointer;
}

.sub-footer .wrap article ul.social {
	display: flex;
	line-height: 50px;
	width: 50px;
	gap: 10px;
	margin:20px 0;
}

.sub-footer .wrap article ul.social li {
	display: block;
}

.sub-footer .wrap article ul.social li a {
	display: block;
	line-height: 50px;
	width: 50px;
	text-align: center;
	background: #145f89;
	border-radius: 50px;
	transition: all .3s linear;
}

.sub-footer .wrap article ul.social li a:hover {
	background: #ffba03;
	color: #173b53;
}

.sub-footer .wrap article:nth-child(4) img {
	max-width: 100%;
}

footer {
	background: #145f89;
	padding: 20px 0;
	color: #f0f0f0;
	font-size: 14px;
	text-align: center;
}

footer a {
	text-decoration: none;
	color: #ffffff;
}

.go-top {
	display:none;
	background:#ffba03;
	font-size:20px;
	width: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	color:#173b53;
	cursor:pointer;
	position: fixed;
	bottom:20px;
	left:20px;
}


.player-2 {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 99;
	padding: 0;
	margin:0;
}

.player-2 button {
	height: auto !important;
	padding: 20px 10px !important;
	background-color: #145f89;
	border-radius: 50px;
	border:none;
	cursor: pointer;
	color: #ffffff;
	display: flex;
	max-width: 250px;
	transition: all .3s ease;
}

.player-2 button:hover {
	box-shadow: 0 5px 30px rgba(0,0,0,.3);
	transform: translateY(-10px);
}

.player-2 button .icon {
	font-size: 20px;
	margin:0 0 10px 0;
	width: 20%;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
}

.player-2 button .info {
	margin:0 0 0 10%;
	font-size: 15px;
}

.player-2 button .info h3 {
	font-size: 16px;
	font-weight: 300;
}

/* pum-container */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
	width: 98%;
	border:none;
	outline: none;
	border-radius: 5px;
	margin:10px 0;
	border:none;
	outline: none;
	padding: 10px 1%;
	background-color: #ffffff;
	color: #212121;
}

.wpcf7-form input[type="submit"] {
	padding: 14px 30px;
	border:none;
	outline: none;
	cursor: pointer;
	background-color: #ffba03;
	color: #145f89 !important;
	border-radius: 5px !important;
}

.wpcf7-form {
	margin:20px;
}

.carousel {
	display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.carousel-item {
    flex: 0 0 25%; /* Each image will take 1/3 of the container */
    height: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media(max-width:800px) {
	
	.top-banner {
		display: none;
	}
	
	.go-top {
		pointer-events: none;
		opacity: 0;
	}
	
	header {
		position: relative;
	}

	header label {
		display: block;
	}

	header .logo {
		width: 50%;
		max-width: 200px;
		float: none;
	}

	header .search-box {
		width: 90%;
		float: none;
		margin:20px auto 0 auto;
	}

	footer {
		text-align: center;
	}
	
	.sub-footer .wrap article ul.social {
		justify-content: center;
		width: 100%;
		margin:50px 0;
	}

	nav .btn-categorias,
	nav .btn-categorias label,
	nav .nav-categorias{
		display: none;
	}
	
	.content {
		padding: 40px 0;
	}

	.sub-footer {
		padding: 50px 0;
	}

	.sub-footer .wrap {
		display: block;
		text-align: center;
	}

	.sub-footer .wrap article,
	.sub-footer .wrap article:nth-child(1),
	.sub-footer .wrap article:nth-child(4) {
		width: 100%;
		text-align: center;
		display: block;
		margin:0 0 50px 0;
	}

	.sub-footer .wrap article:last-child {
		margin:0 0 0 0;
	}

	.sub-footer .wrap article form {
		width: 80%;
		margin:auto;
	}

	.page-banner {
		height: 200px;
	}
	
	.page-banner .image img {
		width: 120%;
	}

	header .shop-info {
		width: 100%;
		float: none;
		text-align: center;
		margin:20px 0;
	}

	header .shop-info ul {
		justify-content: center;
		gap:10%;
	}
	
	nav {
		position: fixed;
		top:0;
		left: 0;
		width: 60%;
		z-index: 999;
		margin:0 0 0 0 !important;
		transform: translateX(-100%);
		transition: all .3s ease;
	}

	#btn-nav:checked ~ nav {
		transform: translateX(0);
	}

	nav > ul {
		display: block;
		margin:0 0 0 0 !important;
		width: 100%;
	}

	nav > ul > li {
		display: block !important;
		width: 100%;
	}

	nav > ul > li > a {
		display: block;
		padding: 0 10px;
	}

	.bottom-banner article:after {
		width: 100%;
		height: 1px;
		left: 0;
		top: 100%;
	}

	.banner-2 {
		padding: 50px 0;
	}

	.banner-logos .left {
		width: 100%;
		float: none;
		text-align: center;
	}

	.banner-logos .left h2 {
		font-size: 30px;
		line-height: 30px;
	}

	.banner-logos .rigth {
		width: 100%;
		float: none;
	}
	
	.banner-logos{
		padding: 40px 0;
		text-align: center;
	}

	.banner-logos h2{
		font-size: 20px;
	}

	.barra-1,
	.barra-2{
		padding: 10px 0;
	}

}
/*=== 29-10-2025 ===*/
@media (min-width: 1201px) {
    .carousel-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .carousel {
        transform: none !important;
        display: contents;
    }
    .carousel-item {
        flex: none !important;
        max-width: 100%;
    }
    .prev, .next { display: none !important; }
}