.blur {
	
	-webkit-backdrop-filter: saturate(150%) blur(5x);
	backdrop-filter: saturate(150%) blur(5px);
	background-color: var(--whitergba6) !important
}

.radius7 {
	-webkit-border-radius: 7px !important;
	-moz-border-radius: 7px !important;
	border-radius: 7px !important;
	overflow: hidden !important;
}
.overflow{
	overflow: hidden !important;
}


.social-icons li a {
	background: var(--dblue2);
	color: var(--white);
}

.color-white {
	color: var(--white) !important
}

.color-dblue {
	color: var(--dblue2) !important;
}
.text-primary  {
	color: var(--dblue2) !important;
}

.color-lblue {
	color: var(--lblue2) !important;
}

.color-orange {
	color: var(--orange2) !important;
}

.bg-white {
	background: var(--white);
}

.bg-f4f4f4 {
	background: var(--f4f4f4);
}

.bg-dblue {
	background: var(--dblue2);
}

.bg-lblue {
	background: var(--lblue2);
}

.bg-orange {
	background: var(--orange2);
}
.bg-black {
	background: var(--black);
}

.bg-blackrgba1 {
	background: var(--blackrgba1);
}

.radius50 {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}




.btn {
	font-family: var(--theme-font);
	font-size: 16px;
	line-height: 1.1;
	font-weight: 500;
	padding: 12px 40px;
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
	border: 2px solid var(--orange2);
	background-color: var(--orange2);
	box-sizing: border-box;
	-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;
	transition: all 0.3s ease-out 0s;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	border-radius: 25px;
}

.btn:hover,
.btn:focus {
	background-color: var(--gray5);
	border-color: var(--gray5);
	color: var(--white);
}


.btn.btn-center {
	margin: 0 auto;
	width: auto;
	min-width: 160px
}

.btn.btn-lg {
	padding: 16px 40px;
	font-size: 16px;
}

.btn.btn-md {
	padding: 8px 20px
}

.btn.btn-sm {
	padding: 5px 25px;
}

.btn.round {
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

.btn.btn-mw {
	min-width: 190px
}

.btn-arrow {
	position: relative;
}

.btn-arrow span {
	display: inline-block;
	position: relative;
	-webkit-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	will-change: transform;
}

.btn-arrow:hover span,
.btn-arrow:focus span {
	-webkit-transform: translate3d(-1rem, 0, 0);
	transform: translate3d(-1rem, 0, 0);
}

.btn-arrow svg {
	position: absolute;
	width: 1.1em;
	right: 0px;
	right: 0rem;
	opacity: 0;
	top: 49%;
	font-size: 24px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	will-change: right, opacity;
        fill: var(--white) !important;
}

.btn-arrow:hover svg,
.btn-arrow:focus svg {
	opacity: 1;
	right: -2rem;
}


.btn-orange {
	color: var(--white);
	border: 2px solid var(--orange2);
	background-color: var(--orange2);
	
}

.btn-orange:hover,
.btn-orange:focus {
	background-color: var(--orange3);
	border-color: var(--orange3);
	color: var(--white)
}

.btn-lblue {
	color: var(--white);
	border: 2px solid var(--lblue2);
	background-color: var(--lblue2);
	
}

.btn-lblue:hover,
.btn-lblue:focus {
	background-color: var(--lblue3);
	border-color: var(--lblue3);
	color: var(--white)
}

.btn-dblue {
	color: var(--white);
	border: 2px solid var(--dblue2);
	background-color: var(--dblue2);
	
}

.btn-dblue:hover,
.btn-dblue:focus {
	background-color: var(--dblue3);
	border-color: var(--dblue3);
	color: var(--white)
}

.btn-whatsapp {
	color: var(--white);
	border: 2px solid var(--Whats1);
	background-color: var(--Whats1);
	
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
	background-color: var(--Whats2);
	border-color: var(--Whats2);
	color: var(--white)
}


.link-btn {
	display: inline-block;
	font-size: 1.2rem;
	line-height: normal;
	padding: 11px 32px 11px 31px;
	background: transparent;
	border: 1px solid transparent;
	position: relative;
	font-weight: 600;
	overflow: hidden;
	z-index: 9;
	vertical-align: middle;
	text-transform: uppercase;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	color: var(--gray5);
}

.link-btn.btn-inline {
	text-transform: uppercase;
	font-size: 1.2rem;
	font-weight: 600;
	padding: 0;
	border: 1px solid transparent;
	background-color: transparent;
	overflow: visible;
	color: var(--gray5);
}

.link-btn.btn-inline:before,
.link-btn.btn-inline:after {
	position: absolute;
	content: "";
	bottom: -8px;
	left: auto;
	right: 0;
	width: 0;
	height: 3px;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	background: var(--gray5);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.link-btn.btn-inline:before {
	width: 100%;
}

.link-btn.btn-inline:hover:after {
	width: 100%;
	right: auto;
	left: 0;
	background: var(--dblue2);
}

.link-btn.btn-inline:hover {
	color: var(--dblue2);
}



.section-title {
	font-size: 2rem;
	margin-bottom: 1.125rem;
	padding-bottom: 1.25rem;
	font-weight: 600;
	color: var(--dblue2);
}

.section-title:before {
	bottom: 0;
	height: 6px;
	width: 50px;
	content: "";
	left: 0;
	position: absolute;
	background-color: var(--lblue2);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	z-index: 1
}

.section-title:after {
	bottom: 2px;
	height: 3px;
	width: 150px;
	content: "";
	left: 0;
	position: absolute;
	background-color: var(--dblue2);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}


.site-heading h1,
.site-heading h2,
.site-heading h3 {
	color: var(--lblue2);
	display: inline-block;
	font-weight: bold;
	padding-bottom: 10px;
	position: relative;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.site-heading h1::after,
.site-heading h2::after,
.site-heading h3::after {
	background: var(--lblue2) none repeat scroll 0 0;
	bottom: -10px;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	width: 50px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


.site-heading h1::before,
.site-heading h2::before,
.site-heading h3::before {
	background: var(--lblue2) none repeat scroll 0 0;
	bottom: 0;
	content: "";
	height: 5px;
	left: 50%;
	margin-left: -35px;
	position: absolute;
	width: 25px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}


.site-heading h1::after,
.site-heading h2::after,
.site-heading h3::after {
	background: var(--gray1) none repeat scroll 0 0;
	bottom: 0;
	content: "";
	height: 5px;
	left: 50%;
	margin-left: 0px;
	position: absolute;
	width: 60px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}


.site-heading.text-left h1::before,
.site-heading.text-left h2::before,
.site-heading.text-left h3::before {
	left: 0;
	margin-left: 0;
}

.site-heading.text-left h1::after,
.site-heading.text-left h2::after,
.site-heading.text-left h3::after {
	left: 20px;
	margin-left: 0;
}





.h500 {
	height: 500px;
}


.bg-cover-overlay,
.bg-cover {
	position: relative;
	z-index: 1;
	background-position: center center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.bg-cover:before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: " ";
	position: absolute;
	background: var(--lbluergba0);
	
}


.bg-image-site {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.btn-theme {
	background: #333;
	padding: 15px 25px;
	line-height: 40px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1rem;
	color: #fff
}

.btn-theme:focus,
.btn-theme:hover {
	background: #606060;
	color: #fff
}



.border-bottom1 {
	border-bottom: 3px solid var(--blackrgba1);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}



.box-img-hover {
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	-webkit-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
	-moz-box-shadow: 0px 3px 15px 0px var(--blackrgba1);
	box-shadow: 0px 3px 15px 0px var(--blackrgba1);
	overflow: hidden;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.box-img-hover:hover {
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
	-webkit-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
	-moz-box-shadow: 0px 15px 35px 0px var(--blackrgba2);
	box-shadow: 0px 15px 35px 0px var(--blackrgba2);
}


.img-hover img {
	border: 0px solid var(--lblue2) !important;
	-moz-transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	filter: grayscale(20%);
	-webkit-filter: grayscale(20%);
	cursor: pointer;
}

.img-hover img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white) !important;
	opacity: 0;
	-moz-transition: all .6s ease;
	-webkit-transition: all .6s ease;
	-o-transition: all .6s ease;
	transition: all .6s ease;
}

.img-hover:hover img {
	filter: grayscale(0);
	-webkit-filter: grayscale(0);
	-webkit-transform: scale(1.5) rotate(0deg);
	-moz-transform: scale(1.5) rotate(0deg);
	-o-transform: scale(1.5) rotate(0deg);
	-ms-transform: scale(1.5) rotate(0deg);
	transform: scale(1.5) rotate(0deg);
}

.img-hover span {
	display: block;
	overflow: hidden;
	position: relative;
}

.img-hover span:after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: " ";
	position: absolute;
	border: 0px solid transparent;
	background: var(--lbluergba5);
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.img-hover span i {
	left: calc(50% - 28px);
	top: calc(80% - 29px);
	font-size: 56px;
	position: absolute;
	z-index: 2 !important;
	color: var(--white);
	opacity: 0;
	height: 58px;
	width: 56px;
	line-height: 56px;
	padding: 0px;
	margin: 0px;
	-webkit-transition: all 1.0s ease 0.3s;
	-moz-transition: all 1.0s ease 0.3s;
	-o-transition: all 1.0s ease 0.3s;
	-ms-transition: all 1.0s ease 0.3s;
	transition: all 1.0s ease 0.3s;
}

.img-hover:hover span i {
	top: calc(50% - 29px);
	opacity: 1;
}

.img-hover:hover span:after {
	opacity: 1.0;
	filter: alpha(opacity=100);
}

.img-hover img,
.img-hover img,
.img-hover span:after {
	transition: all 1.0s ease-in-out;
}





.content_post ul {
	display: inline-block;
	width: auto;
	padding: 10px;
}

.content_post ul > li {
	margin: 0px 5px;
	padding: 3px;
	font-weight: 600;
	cursor: pointer;
	font-size: 1rem;
	opacity: 1.0;
	transition: opacity .2s ease-in-out;
	list-style-type: disc;
}

.content_post ul > li:hover {
	opacity: 1.0;
}

.content_post ul:hover > li:not(:hover) {
	opacity: 0.8;
}



.label--checkbox {
	position: relative;
	margin: 0;
	cursor: pointer;
	background: var(--white);
	font-weight: bold;
	display: block;
}

.label--checkbox strong {
	padding-left: 5px;
	font-size: 1rem;
	font-weight: normal;
}

.checkbox {
	position: relative;
	top: -0.375rem;
	margin: 0 1rem 0 0;
	cursor: pointer;
}

.checkbox:before {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	content: "";
	position: absolute;
	left: 0;
	z-index: 1;
	width: 28px;
	height: 28px;
	border: 4px solid var(--gray3);
}

.checkbox:checked:before {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	height: 1rem;
	border-color: var(--lblue2);
	border-top-style: none;
	border-right-style: none;
}

.checkbox:after {
	content: "";
	position: absolute;
	top: -0.125rem;
	left: 0;
	width: 1.1rem;
	height: 1.1rem;
	background: var(--white);
	cursor: pointer;
}


.info-error {
	padding: 30px 0px;
}

.error-page .error-page-title {
	color: var(--lblue2);
	font-size: 50px;
	padding: 0px;
	line-height: 1.1;
	padding-bottom: 0px;
	font-family: var(--special-font);
	font-weight: bold;
}


.error-page .error-page-subtitle {
	color: var(--gray3);
	display: block;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 25px;
}

.error-page p {
	color: var(--gray3);
	font-size: 16px;
}


.image-bl,
.image-bl img {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}


.overlay-link {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}




.overlay {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
}



.custom-btn {
	display: inline-block;
	z-index: 1;
	height: 50px;
	font-size: 1rem;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	font-weight: bold;
	overflow: hidden;
	padding: 12px 30px;
	text-align: center;
	color: var(--white);
	position: relative;
	background-color: var(--lblue2);
	-webkit-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	-webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	/*border:2px solid var(--white) !important;*/
	-webkit-box-shadow: 0px 10px 25px 0px var(--blackrgba3);
	-moz-box-shadow: 0px 10px 25px 0px var(--blackrgba3);
	box-shadow: 0px 10px 25px 0px var(--blackrgba3);
}

.custom-btn:after,
.custom-btn:before {
	top: 0px;
	width: 0px;
	left: 100%;
	content: '';
	z-index: -1;
	height: 100%;
	position: absolute;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
	-webkit-transition-timing-function: inherit;
	-o-transition-timing-function: inherit;
	transition-timing-function: inherit;
	background-color: var(--blackrgba3);
}

.custom-btn:before {
	z-index: -1;
	background-color: var(--gray5);;
}

.custom-btn:after {
	-webkit-transition-delay: .2s;
	-o-transition-delay: .2s;
	transition-delay: .2s;
}

.custom-btn:hover {
	color: var(--white);
	-webkit-box-shadow: 0px 10px 25px 0px var(--blackrgba3);
	-moz-box-shadow: 0px 10px 25px 0px var(--blackrgba3);
	box-shadow: 0px 10px 25px 0px var(--blackrgba3);
}

.custom-btn:hover:after,
.custom-btn:hover:before {
	left: 0;
	width: 100%;
	-webkit-transition-property: width;
	-o-transition-property: width;
	transition-property: width;
}

.custom-btn:hover:before {
	-webkit-transition-delay: .2s;
	-o-transition-delay: .2s;
	transition-delay: .2s;
}

.custom-btn:hover:after {
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transition-property: width;
	-o-transition-property: width;
	transition-property: width;
}





.request-form{
	position: relative;
	-webkit-box-shadow: 0px 0px 35px 0px var(--blackrgba1);
	-moz-box-shadow: 0px 0px 35px 0px var(--blackrgba1);
	box-shadow: 0px 0px 35px 0px var(--blackrgba1);
	padding:15px;
	border-radius: 10px;
}


.shadow-one{
	-webkit-box-shadow: 0px 0px 35px 0px var(--blackrgba1);
	-moz-box-shadow: 0px 0px 35px 0px var(--blackrgba1);
	box-shadow: 0px 0px 35px 0px var(--blackrgba1);
}


.banner{
	height: 80vh;
	width: 100vw;
	display: flex;
	align-items: flex-end;
	padding: 8rem 5rem;
	position: relative;    
	background:var(--dblue2);
	margin-top:132px;
}

.banner video{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index:0;
}

.banner .video-backdrop{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
        background: var(--blackrgba2);
}

.banner .description{
	position: relative;    
	z-index:3
}


.banner h4{
	color:  var(--white);
	font-weight: 300;
	font-size: 32px;
}    
.banner h4 strong{
	font-weight:bold;
}



.resume{
	transform: translateY(-50%);
	position:relative;
	z-index:5
}

.resume .item-icon{
	background-color: var(--white);
	padding: 1rem 1.5rem;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 2rem;
	height: 100%;
}



.resume .item-icon img{
	width:60px;
	
}

.aboutus{
	
	position: relative;
	padding: 4rem 0;
	
}
.abouttwo,
.certificados,
.products{
	position: relative;
	padding: 4rem 0;	
}

.products .item-product{
background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display:block;
    width:100%;
}



.products .item-product a{
	color:var(--dblue2);
	font-weight:bold;
}

.products .item-product a:hover{
	color:var(--dblue1);
}



.item-brand {
	/*display:flex;
	flex-wrap:wrap;*/
	
	display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 2000px;
justify-content: flex-start;
  align-items: stretch;
}
.item-img {
	background:var(--white);
margin:0px 15px 15px 0px;
		-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius:7px;
		-webkit-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
	-moz-box-shadow: 0px 5px 25px 0px var(--blackrgba1);
	box-shadow: 0px 5px 25px 0px var(--blackrgba1);
		padding:15px;
		width: 160px;
	/*flex: 1 0 160px;*/
}

.quality-images {
	position:relative;
		-webkit-border-radius: 20px !important;
	-moz-border-radius:20px !important;
	border-radius: 20px !important;

}


.img1{
		-webkit-border-radius: 20px !important;
	-moz-border-radius:20px !important;
	border-radius: 20px !important;
	    width: 100%;
    height: auto;
}

.img2{
		-webkit-border-radius: 20px !important;
	-moz-border-radius:20px !important;
	border-radius: 20px !important;
	position: absolute;
    top: 0;
    left: 0;
    transform: translate(-1rem,-1rem);
    width:90%;
}



.item-abouttwo{
	background:var(--white);
			-webkit-border-radius: 20px !important;
	-moz-border-radius:20px !important;
	border-radius: 20px !important;
	padding-top:30px;
	padding-bottom:30px;
}



.border-left {
	border-left:3px solid var(--dblue2) !important;
	margin-bottom:10px;
}
.ps-2 {
    padding-left: 0.5rem!important;
}


@media only screen and (max-width: 991px) {
	.resume .item-icon{
		gap: 1rem;
		
	}
}


@media only screen and (max-width: 767px) {
	
	.banner h4{
		font-size: 22px;
	} 
	
	.banner{
		padding: 4rem 2rem;
	}
	
	
	.resume{
		transform: translateY(0%);
	}
	
}