:root {
	--main-color: #ddc51c;
	--main-rgb-color: rgba(221, 197, 28, 1);
	--main-color-darker: #9b8b14;
	--secondary-color: #555555;
	--secondary-rgb-color: rgba(85, 85, 85, 1);
	--light-grey: #cecdcd;
	--grad-color: rgb(135, 135, 135);
	--grad-color-opacity: rgba(135, 135, 135, 1);
	--menu-transition: all 0.7s ease-in-out;
	--negative-transition:  all 0.9s ease-in-out;
}

.top-height {
	height: 100vh;
}

.w-50-responsive {
	width: 50%!important;
}

.w-75-responsive {
	width: 75%!important;
}

.position-absolute-responsive {
	position: absolute!important;
}

.footer-form ::-webkit-input-placeholder {
    color:rgba(255, 255, 255, 0.6)!important;
}

.footer-form ::-moz-placeholder {
    color:rgba(255, 255, 255, 0.6)!important;
}

.footer-form ::-ms-placeholder {
    color:rgba(255, 255, 255, 0.6)!important;
}

.footer-form ::placeholder {
    color:rgba(255, 255, 255, 0.6)!important;
}


.parent {
	overflow: scroll;
	height: 100vh;
	scroll-snap-points-y: repeat(100vh);
	scroll-snap-type: y mandatory;
}

.small-font {
	font-size: 1rem!important;
}

.grecaptcha-badge {
	visibility: hidden;
}

/* SVG ICONS */

svg .filler {
    fill: var(--main-color);
}

svg .boxer,
svg .outliner {
    fill: none;
}

svg .outliner {
    stroke: var(--secondary-color);
    stroke-linejoin: round;
    stroke-width: 10px;
}

svg .outliner-filler {
    fill: var(--secondary-color);
}


svg .filler-line {
    stroke: var(--main-color);
    stroke-linejoin: round;
    stroke-linecap: round;
    stroke-width: 10px;
}

/* SVG GLOBE */

svg .globe-point{
	fill: var(--secondary-color);
	opacity: 0.5;
}

svg .globe-circle{
	fill:var(--main-color);
}

.globe-line{
	fill:none;
	stroke:#DEC51C;
	stroke-miterlimit:10;
	stroke-dashoffset: 0;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
}

.on-3 .globe-line{
	animation: dash 5s linear forwards;
}

@keyframes dash {
	to {
	  stroke-dashoffset: 0;
	}
  }

/* MAIN VARIABLES */

.mt-10 {
	margin-top: 10rem!important;
}

.h-35 {
	height: 35%!important;
}

.h-65 {
	height: 65%!important;
}

.w-35 {
	width: 35%!important;
}
.w-65 {
	width: 65%!important;
}

.btn-primary {
	background-color: var(--main-color);
	border-color: var(--main-color);
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.5rem 3rem;
}

.btn-primary:hover {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	color: var(--main-color);
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.5rem 3rem;
}

.btn-secondary {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	color: #FFF;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.5rem 3rem;
}

.btn-secondary:hover {
	background-color: #000;
	border-color: #000;
	color: var(--main-color);
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.5rem 3rem;
}

.btn-terciary {
	background-color: var(--main-color);
	border-color: var(--main-color);
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.5rem 3rem;
}

.btn-terciary:hover {
	background-color: var(--secondary-color);
	border-color: var(--main-color);
	color: var(--main-color);
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.5rem 3rem;
}

.no-y-border {
	border-top: 0!important;
	border-bottom: 0!important;
}

.uppercase {
	text-transform: uppercase;
}

.width-fit {
	width: fit-content;
}

.ui-loader {
	display: none;
}

.color-white {
	color: #FFF!important;
}

.right-border-line {
	border-right: 1px solid rgba(180, 180, 180, 1);
	transition: var(--negative-transition);
}

.white-line .right-border-line {
	border-right: 1px solid rgba(255, 255, 255, 1);
	transition: var(--negative-transition);
}

.left-border-line {
	border-left: 1px solid rgba(180, 180, 180, 1);
	transition: var(--negative-transition);
}

.white-line .left-border-line {
	border-left: 1px solid rgba(255, 255, 255, 1);
	transition: var(--negative-transition);
}

.white-outline hr {
	background-color: white;
	height: 1px;
	opacity: 1;
	width: 90%;
	margin: 0 auto;
	display: block;
}

hr {
	height: 1px;
	width: 90%;
	margin: 0 auto;
	display: block;
}

.bigger {
	font-size: 7.5rem!important;
	font-weight: 700;
}

.notAsBig {
	font-size: 3.5rem!important;
	font-weight: 700;
}

.icono-texto p{
	line-height: 1.2;
}

p {
	font-weight: 1.4rem!important;
}

.main-color {
	color: var(--main-color);
}

.secondary-color {
	color: var(--secondary-color);
}

/* HEADER */

header {
	pointer-events: none;
}

header .hamburger,
header .lang a,
header .main-logo,
header .menu-helper,
header .sub-menu {
	pointer-events: all!important;
	/* cursor: pointer; */
}

header .menu-opened {
	pointer-events: all!important;
}

html {
	font-size: 100%;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

html::-webkit-scrollbar {
	display: none;
}
  
.hamburger {
	background-color: transparent;
	width: 100%;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
	transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
	z-index: 1002;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-moz-transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
	-ms-transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
	-o-transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
}

.hamburger.is-active {
	background-color: none;
}

._layer {
	background: #fff;
	margin-bottom: 10px;
	border-radius: 2px;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	height: 2px;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
	transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
}

.negative ._layer {
	background: var(--secondary-color);
	transition: var(--negative-transition);
}

._layer:nth-child(2) {
	margin-bottom: 0;
}

.hamburger:hover .-top {
	-webkit-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
}

.hamburger:hover .-bottom {
	-webkit-transform: translateY(200%);
	-ms-transform: translateY(200%);
	transform: translateY(200%);
}

.hamburger.is-active .-top {
	-webkit-transform: translateY(300%) !important;
	-ms-transform: translateY(300%) !important;
	transform: translateY(300%) !important;
}

.hamburger.is-active .-bottom {
	-webkit-transform: translateY(-300%) !important;
	-ms-transform: translateY(-300%) !important;
	transform: translateY(-300%) !important;
}

p.menu-helper {
	color: rgba(255, 255, 255, 1);
	font-size: 1.3rem;
	transform-origin: 0 0;
	transform: rotate(-270deg) translate(-50%,-50%)!important;
	cursor: pointer;
	transition: var(--negative-transition);

}

.negative .menu-helper {
	color: var(--secondary-color);
	transition: var(--negative-transition);
}

.menu-opened {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--main-color);
	z-index: -1;
	transform: translate(100%);
	transition: var(--menu-transition);
}

.menu-opened.active {
	transform: translate(0%);
	transition: var(--menu-transition);
}

.menu-opened ul {
	list-style: none;
}

.menu-opened .small-link {
	margin-top: 10px;
}

.menu-opened .small-link a {
    text-decoration: none;
    color: #FFF;
    font-size: 2rem;
    font-weight: 700;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.menu-opened .big-link a {
	text-decoration: none;
    color: #FFF;
    line-height: 1;
    font-size: 7rem;
    font-weight: 700;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.menu-opened a:hover {
	color: var(--secondary-color);
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

/* HOME */
/* logo */

.logo-home {
	filter: brightness(0) invert(1);
	transition: var(--negative-transition);
}

.logo-home {
	display: block;
	width: 90%;
	margin:0 auto;
}

.negative .logo-home {
	filter: brightness(1) invert(0);
	transition: var(--negative-transition);
}

/* Menus */

.sub-menu {
	list-style: none;
	z-index: -2;
}

.sub-menu a {
	text-decoration: none;
	color: rgba(180, 180, 180, 1);
	font-weight: 700;
	font-size: 1rem;
	position: relative;
}

.white-line .sub-menu a {
	color: var(--secondary-color);
	transition: var(--negative-transition);
}

.sub-menu a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -61px;
    width: 34px;
    height: 1px;
    background-color: rgba(180, 180, 180, 1);
	transition: var(--negative-transition);
}

.white-line .sub-menu a::after {
	background-color: var(--secondary-color);
	transition: var(--negative-transition);
	}

.sub-menu li.active a {
	color: rgba(255, 255, 255, 1);
	transition: var(--negative-transition);
}

.negative .sub-menu li.active a {
	color: var(--secondary-color);
	transition: var(--negative-transition);
}

.white-line .sub-menu li.active a {
	color: #FFF;
	transition: var(--negative-transition);
}

.sub-menu li.active a::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -125px;
	width: 100px;
	height: 3px;
	background-color: #FFF;
	transition: var(--negative-transition);
}

.negative .sub-menu li.active a::after {
	background-color: var(--secondary-color);
	transition: var(--negative-transition);
}

.white-line .sub-menu li.active a::after {
	background-color: #FFF;
	transition: var(--negative-transition);
}

.lang a {
	color: rgba(180, 180, 180, 1);
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: var(--negative-transition);
}

.white-line .lang a {
	color: var(--secondary-color);
	transition: var(--negative-transition);
}

.lang a.active {
	color: rgba(255, 255, 255, 1);
	transition: var(--negative-transition);
}

.negative .lang a.active {
	color: var(--secondary-color);
	transition: var(--negative-transition);
}

/* carusel logo */

.carousel-inner img {
	width: 100vw;
	/* margin: 0 auto !important; */
}

.slide-logos-home img {
	width: 90%;
	margin: 0 auto !important;
}

/* video styles */
.video-back {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	z-index: -10;
}

.video-back::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10;
}

.image-back {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	object-fit: contain;
	z-index: -10;
}

.image-back img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	z-index: -10;
}

.image-back::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10;
}


/* img styles */
.img-back {
	position: relative;
	/* top: 50%;
	left: 50%; */
	height: 100%;
	/* transform: translate(-50%, -50%); */
}

.img-back-static {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 65%;
}

/* section snapping */

body {
	margin: 0;
	overflow-x: hidden;
}

.main-section {
	padding: 0 7rem;
}

.main-section h1 {
	font-size: 6rem;
	line-height: 1;
	font-weight: 700;
}

.main-section.aux h1 {
	font-size: 5rem!important;
}

.main-section h2 {
	font-size: 2.5rem;
	margin-bottom: 4rem;
}

.main-section p {
	font-size: 1.6rem;
	line-height: 1.2;
}

.inner-section {
	padding: 0 2rem;
}

.inner-section h3 {
	color: var(--secondary-color);
	font-size: 3.5rem;
	font-weight: 700;
}

.inner-white-section h3 {
	color: #FFF;
	font-size: 3.5rem;
	font-weight: 700;
}

.inner-section h4 {
	font-size: 2.5rem;
	color: var(--secondary-color);
}

.inner-section .small-h4 {
	font-size: 1.6rem;
	color: var(--secondary-color);
}

.inner-section .small-p {
	font-size: 1.2rem;
    line-height: 1.2;
	color: var(--secondary-color);
}

.inner-section .smaller-p {
	font-size: 1rem;
    line-height: 1.2;
	color: var(--secondary-color);
}

.inner-white-section h4 {
	font-size: 2.5rem;
	color: #FFF;
}

.inner-section p,
.inner-section ul{
	font-size: 1.4rem;
    line-height: 1.2;
	color: var(--secondary-color);
}

.inner-section ul li{
	margin-bottom: 1rem;
}

.container-scroll {
	height: 100vh;
	width: 100vw;
}


/* point container */

.point-container {
	height: 100%;
	width: 100%;
}

.point {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px solid #fff;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
    color: #fff;
	position: absolute;
	cursor: pointer;
	user-select: none;
}

.point > span {
	margin-bottom: 4px;
}

.pointer-father .content-left {
	opacity: 0;
	position: relative;
	left: 50px;
	color: #FFF;
	transform: translateX(-100%);
	border: 1px solid #fff;
	padding: 5px 13px;
	background: rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease-in-out;
	user-select: none;
	pointer-events: none;
}

.pointer-father .content-left.active {
	opacity: 1;
	transform: translateX(0%);
	transition: all 0.3s ease-in-out;
}

.pointer-father .content-right {
	opacity: 0;
	transform: translateX(100%);
	position: relative;
	right: calc(100% + 20px);
	color: #FFF;
	/* width: 314px; */
	border: 1px solid #fff;
	padding: 5px 13px;
	background: rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease-in-out;
	user-select: none;
	pointer-events: none;
}


.pointer-father .content-right.active {
	opacity: 1;
	transform: translateX(0%);
	transition: all 0.3s ease-in-out;
}

.pointer-father .content-left p,
.pointer-father .content-right p {
	margin-bottom: 0;
	text-transform: uppercase;
}

.pointer-father {
	position: absolute;
	display: flex;
	align-items: center;
}

.pointer-father:nth-of-type(1) {
    top: 62%;
    left: 7%;
}

.pointer-father:nth-of-type(2) {
    top: 51%;
    left: 15%;
}

.pointer-father:nth-of-type(3) {
    top: 71%;
    left: 35%;
}

.pointer-father:nth-of-type(4) {
	top: 45%;
    left: 50%;
}

.pointer-father:nth-of-type(5) {
    top: 77%;
    left: 10%;
}

.pointer-father:nth-of-type(6) {
    top: 80%;
    left: 79%;
}

/* caso de exito */

.mini-title {
	transform: translate(-50%, 140%);
	transition: opacity 0.3s ease-in-out;
}

.case-child {
	position: relative;
}

.case-child img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
	opacity: 0;
	z-index: -10;
	transition: all 0.3s ease-in-out;
}

.case-child.active img {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.case-child .case-inner {
	padding: 50% 70px 20px 70px;
}

.case-child .case-inner span {
	font-weight: bold;
	color: var(--main-color);
	font-size: 3rem;
	margin-bottom: 5.5rem;
}

.case-child.active .case-inner span {
	font-weight: bold;
	color: #fff;
	font-size: 3rem;
	margin-bottom: 5.5rem;
}

.case-child .case-inner hr {
	background-color: var(--main-color);
}

.case-child.active .case-inner hr {
	background-color: #fff;
}

.case-child .case-inner h5 {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.case-child.active .case-inner p,
.case-child.active .case-inner h5 {
	color: #fff;
}

.case-child .case-inner .extra-info,
.case-child .case-inner a {
	opacity: 0;
	transform: translateY(-100%);
	transition: all 0.3s ease-in-out;
}

.case-child.active .case-inner .extra-info,
.case-child.active .case-inner a {
	opacity: 1;
	transform: translateY(0%);
	transition: all 0.3s ease-in-out;
}

.case-img {
	position: relative;
}

.case-img:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0 ,0, 1);
}

/* slick slider */

.publi-reel {
	height: 480px;
}

.publi-reel .carousel-inner,
.publi-reel .carousel-inner .carousel-item {
	height: 100%;
}

.publi-reel .carousel-inner img {
	height: 100%;
	object-fit: cover;

}

.publi-reel .publi-content {
	padding: 0 8rem 0 3rem;
}

.publi-reel .publi-content .date {
	font-weight: bold;
    color: var(--main-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.publi-reel .publi-content .article-title {
	font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
	line-height: 1;
	margin-bottom: 1rem;
}

.publi-reel .publi-content .short-descript {
	margin-bottom: 5rem;
}

.publi-reel .carousel-control-next {
    right: -70px;
}

.publi-reel .carousel-control-prev {
	display: none;
}

.logo-content-footer.contact-style {
	color: #fff;
	text-align: end;
}

.logo-content-footer.noncontact-style {
	color: #fff;
	text-align: center;
}

.sub-footer-links {
	color: white;
	list-style: none;
	font-size: 1.1rem;
}

.sub-footer-links a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
	-webkit-transition: color 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out;
	-ms-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
}

.sub-footer-links a:hover {
	color: var(--main-color);
	transition: color 0.3s ease-in-out;
	-webkit-transition: color 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out;
	-ms-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
}

.sub-footer-links.contact-style {
	text-align: end;
}

.sub-footer-links.noncontact-style {
	text-align: center;
}

.footer-form {
	color: #FFF;
	width: 50%;
}

.footer-form input:not([type='checkbox']),
.footer-form textarea {
	background-color: rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255 ,255, 0.1);
	color: #fff;
}

.contact-form input:not([type='checkbox']),
.contact-form textarea {
	border-color: rgba(0, 0, 0, 0.2);
	color: var(--secondary-color);
}

.footer-form textarea {
	height: 100px!important;
}

.footer-form h6,
.contact-form h6 {
	font-size: 3rem;
	color: var(--seconadry-color);
}

.form-control:focus {
    color: #212529;
    background-color: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255 ,255, 0.1);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(0 0 0 / 25%);
}

.container-legal {
	width: 80%;
}

.container-legal .legal-text {
	font-size: 0.8rem;
}

.privacy-text {
	font-size: 0.75rem;
}



/* FACTORY */

.imagen-certificado {
	width: 90px;
}

.certificadora {
	width: 150px;
	height: fit-content;
}

.normas-fabricacion p {
	margin-bottom: 0;
	font-weight: 700;
}

.zoom {
	animation: scale 40s linear infinite;
}

@keyframes scale {
	50% {
	  -webkit-transform:scale(1.2);
	  -moz-transform:scale(1.2);
	  -ms-transform:scale(1.2);
	  -o-transform:scale(1.2);
	  transform:scale(1.2);
	}
  }


/* Interaction map */

svg.map {
	width: 75%;
}

.interactive-map {
	width: 75%;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -0%)!important;
}


.signo:hover {
	cursor: pointer;
}

.edificio text {
	visibility: hidden;
	font-size: 3.5rem;

}

.giro {
	transform: rotate(0);
}

#edificio-1 > polygon,
#edificio-2 > polygon,
#edificio-3 > polygon,
#edificio-4 > polygon,
#edificio-5 > polygon,
#edificio-6 > polygon,
#edificio-7 > polygon,
#edificio-8 > polygon,
#edificio-9 > polygon,
#edificio-10 > polygon {
	transition: all 0.3s ease-in-out;
}

#edificio-1:hover > polygon,
#edificio-2:hover > polygon,
#edificio-3:hover > polygon,
#edificio-4:hover > polygon,
#edificio-5:hover > polygon,
#edificio-6:hover > polygon,
#edificio-7:hover > polygon,
#edificio-8:hover > polygon,
#edificio-9:hover > polygon,
#edificio-10:hover > polygon {
	cursor: pointer;
	fill: var(--main-color);
	transition: all 0.3s ease-in-out;
}

#edificio-1.active > polygon,
#edificio-2.active > polygon,
#edificio-3.active > polygon,
#edificio-4.active > polygon,
#edificio-5.active > polygon,
#edificio-6.active > polygon,
#edificio-7.active > polygon,
#edificio-8.active > polygon,
#edificio-9.active > polygon,
#edificio-10.active > polygon {
	cursor: pointer;
	fill: var(--main-color);
	transition: all 0.3s ease-in-out;
}

#textFabrica-0,
#textFabrica-1,
#textFabrica-2,
#textFabrica-3,
#textFabrica-4,
#textFabrica-5,
#textFabrica-6,
#textFabrica-7,
#textFabrica-8,
#textFabrica-9 {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}


#textFabrica-0.visibility-100,
#textFabrica-1.visibility-100,
#textFabrica-2.visibility-100,
#textFabrica-3.visibility-100,
#textFabrica-4.visibility-100,
#textFabrica-5.visibility-100,
#textFabrica-6.visibility-100,
#textFabrica-7.visibility-100,
#textFabrica-8.visibility-100,
#textFabrica-9.visibility-100{
	opacity: 1;
	transition: opacity 0.3s ease-in-out;

}

.carousel-productos .carousel-item {
	position: relative;
}

.carousel-productos .carousel-item::before {
	position: absolute;
	content:"";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	background: var(--grad-color);
	background: -moz-linear-gradient(0deg, var(--grad-color-opacity) 0%, rgba(255,255,255,1) 50%);
	background: -webkit-linear-gradient(0deg, var(--grad-color-opacity) 0%, rgba(255,255,255,1) 50%);
	background: linear-gradient(0deg, var(--grad-color-opacity) 0%, rgba(255,255,255,1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#575757",endColorstr="#ffffff",GradientType=1);
}

.carousel-caption h5 {
	font-size: 2.5rem !important;
}

.circle {
	cursor: pointer;
	background-color: transparent;
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	height: 250px;
	width: 250px;
	border-radius: 50%;
	border: 1px solid var(--main-color);
	margin: 0 -0.5rem;
	padding: 2.5rem 1.4rem;
	transition: all 0.3s ease-in-out;
}

.circle:hover {
	background-color: var(--main-color);
	z-index: 1000;
	transition: all 0.3s ease-in-out;
}

.circle > h6 {
	margin-top: 1rem;
	text-transform: uppercase;
	font-weight: 700;
}

.circle > p {
	font-size: 1rem!important;
}

.circle > span {
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--main-color);
    top: 14px;
    left: 25px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 1;
	background-color: #fff;
	transition: background-color 0.3s ease-in-out;
}

.circle.contact-button  > span {
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--main-color);
    top: 100%;
    left: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 1;
	background-color: #fff;
	transition: background-color 0.3s ease-in-out;
}

.circle:hover > span {
	color: #FFF;
	background-color: var(--secondary-color);
	transition: background-color 0.3s ease-in-out;
}

.center-logo .slick-slide {
	height: 100px!important;
	display: flex!important;
	justify-content: center;
	flex-direction: column;
}

.slick-prev:before,
.slick-next:before {
	color: var(--secondary-color)!important;
}

.slick-slide:not(.slick-current) {
	opacity: 0.2;
	transform: scale(0.5);
	transition: all 0.3s ease-in-out;
}

.slick-slide.slick-current {
	opacity: 1;
	transform: scale(1);
	transition: all 0.3s ease-in-out;
}

.logo-certificate-descr {
	position: absolute;
	left: 0;
	right: 0;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.logo-certificate-descr.active {
	position: absolute;
	left: 0;
	right: 0;
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

/* SINGLE POST */

.static-post {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.static-post::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	background-blend-mode: multiply; 

}

.single-section {
	padding: 0 7rem;
}

.single-section h1 {
	font-size: 6rem;
	line-height: 1;
	font-weight: 700;
	color: #FFF ;
}

.single-section .date {
	font-size: 2rem;
	line-height: 1.2;
	color: var(--main-color);
	font-weight: 700;
}

.single-section .categories {
	font-size: 1.6rem;
	color: var(--main-color);
	font-weight: 700;
}

/* servicios */

.grad-rigth {
	position: relative;
}
.grad-right::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	background: var(--grad-color);
	background: -moz-linear-gradient(275deg, var(--grad-color-opacity) 0%, rgba(255,255,255,1) 50%);
	background: -webkit-linear-gradient(275deg, var(--grad-color-opacity) 0%, rgba(255,255,255,1) 50%);
	background: linear-gradient(275deg, var(--grad-color-opacity) 0%, rgba(255,255,255,1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#575757",endColorstr="#ffffff",GradientType=1);
}

.aside {
	/* background-color: var(--light-grey); */
	padding: 2rem;
}

.aside.medioambiente .title  {
	font-size: 5rem;
	font-weight: 700;
	color: var(--main-color);
}
.aside.medioambiente p  {
	font-size: 1.4rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.box:first-of-type {
	border-left: 0px solid rgba(255, 255, 255, 1);
	border-top: 1px solid rgba(255, 255, 255, 1);
	border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.box {
	border-left: 1px solid rgba(255, 255, 255, 1);
	border-top: 1px solid rgba(255, 255, 255, 1);
	border-bottom: 1px solid rgba(255, 255, 255, 1);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.box.active {
	background: var(--main-color);
	transition: all 0.3s ease-in-out;	
}

.box:hover {
	background: var(--main-color);
	transition: all 0.3s ease-in-out;
}

.box .small-h4 {
    text-transform: uppercase;
    font-weight: 700;
	font-size: 1.7rem;
	color: #fff;
	transition: all 0.3s ease-in-out;
}

.box.active .small-h4 {
    text-transform: uppercase;
    font-weight: 700;
	color: var(--secondary-color);
	transition: all 0.3s ease-in-out;
}

.box:hover .small-h4 {
    text-transform: uppercase;
    font-weight: 700;
	color: var(--secondary-color);
	transition: all 0.3s ease-in-out;
}

.text-en-link > p {
	color: #fff!important;
    position: absolute;
	font-size: 2.5rem;
    left: 50%;
	top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.text-en-link > p.visibility-100 {
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.bckg {
	background-color: #FFF;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,0.6);
	background-blend-mode: multiply;
}

.bckg0 {
	background-image: url('../img/servicios/aguerri-procesos.jpg');
	transition: all 0.3s ease-in-out;
}

.bckg1 {
	background-image: url('../img/servicios/aguerri-estrategias.jpg');
	transition: all 0.3s ease-in-out;
}

.bckg2 {
	background-image: url('../img/servicios/aguerri-experiencia.jpg');
	transition: all 0.3s ease-in-out;
}

.bckg3 {
	background-image: url('../img/servicios/aguerri-empleados.jpg');
	transition: all 0.3s ease-in-out;
}

.bckg4 {
	background-image: url('../img/servicios/aguerri-suministros.jpg');
	transition: all 0.3s ease-in-out;
}

.bckg5 {
	background-image: url('../img/servicios/aguerri-logistica.jpg');
	transition: all 0.3s ease-in-out;
}

.bckg6 {
	background-image: url('../img/servicios/aguerri-cambios.jpg');
	transition: all 0.3s ease-in-out;
}

.bckg7 {
	background-image: url('../img/servicios/aguerri-negociacion.jpg');
	transition: all 0.3s ease-in-out;
}

.bckgKIT0 {
	background-image: url('../img/servicios/aguerri-enkit-procesos.jpg');
	transition: all 0.3s ease-in-out;
}

.bckgKIT1 {
	background-image: url('../img/servicios/aguerri-enkit-estrategias.jpg');
	transition: all 0.3s ease-in-out;
}

.bckgKIT2 {
	background-image: url('../img/servicios/aguerri-enkit-experiencia.jpg');
	transition: all 0.3s ease-in-out;
}

.bckgKIT3 {
	background-image: url('../img/servicios/aguerri-enkit-certificados.jpg');
	transition: all 0.3s ease-in-out;
}

.bckgKIT4 {
	background-image: url('../img/servicios/aguerri-enkit-cambios-variaciones.jpg');
	transition: all 0.3s ease-in-out;
}

.bckgKIT5 {
	background-image: url('../img/servicios/aguerri-enkit-conceptualizacion.jpg');
	transition: all 0.3s ease-in-out;
}

#globe canvas {
	background-color: transparent!important;
}

/* HISTORIA */

.text-capsule-fecha {
	text-align: end;
}

.foto-historia > img{
	width: 100%;
	height: 80%;
	object-fit: cover;
}

.fecha {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom:0;
}

.fecha-titulo {
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1;
}

.fecha-descripcion {
	font-size: 1.4rem;
    line-height: 1.2;
}

/* CALIDAD */

.certificados-calidad svg {
	width: 80px;
}
.certificados-calidad svg .b {
	/* fill:#007297; */
	fill: var(--secondary-color);
}
.certificados-calidad svg .c {
	fill:none;
}
.certificados-calidad svg .circle {
	/* stroke:#007297; */
	stroke: var(--secondary-color);
	stroke-miterlimit:10;
	stroke-width:3px;
	fill:none;
}

.not-phone-flex {
	display: flex;
}


.not-phone-block {
	display: block;
}

.not-computer-flex {
	display: none;
}

.not-computer-block {
	display: none;
}

.position-phone {
	position: absolute!important;
}

