/* Reset */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Main Styling */

html,
body {
	font-family: 'Work Sans', sans-serif;
	font-size: 18px;
	background: #58585A;
	scroll-behavior: smooth scroll;
}

h1 {font-size: 1.5rem}
h2 {font-size: 1.4rem}
h3 {font-size: 1.4rem}
h4 {font-size: 1.43rem}

ul {list-style: none}

img {max-width: 100%}

p {
	font-size: 1rem;
	margin: 10px 0;
	line-height: 1.4em;
}

a {text-decoration:none}

/* Utility Classes */

.container {
	max-width: 1100px;
	padding: 0 30px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.container ul li a {
	font-family: 'Varela Round', sans-serif;
	color: #fff;
	background-color: none;
	transition: background-color 1s ease 0s;
}

.container ul li a:hover {
	background-color: #fff;
	color: #EC750C;
	padding: 7px;
	border-radius: 10px;
}

.titulo {
	text-align: center;
	color: #fff;
	font-family: 'Anton', sans-serif;
	font-size: 2rem;
	line-height: 2.2rem;
	letter-spacing: 1px;
}

.bold-titulo {
	font-size: 4rem;
}

.btn {
	font-family: 'Varela Round', sans-serif;
	display: inline-block;
	font-size: 1.37rem;
	padding: 5px 37px;
	cursor: pointer;
	letter-spacing: 1px;
	border-radius: 10px;
	border: 1.75px solid #fff;
	text-align: center;
	transition: padding 1s ease 0s;
}

.btn-bg {
	color: #fff;
}

.btn-orange {
	border: 1.75px solid #EC750C;
	color: #EC750C;
}

.btn-white {
	color: #fff;
}

.btn-white-1 {
	color: #EC750C;
	background: #fff;
}

.btn-white-1:hover {
	padding: 7px 50px;
}

.titulo-solapa {
	font-family: 'Varela Round', sans-serif;
	line-height: 2.4rem;
	color: #fff;
}

.texto-solapa {
	font-family: 'Work Sans';
	color: #fff;
	line-height: 1.25rem;
}

.bold-empresa {
	font-weight: 700;
	color: #EC750C;
}

.texto-cliente {
	color: #fff;
}

.bold-cliente {
	font-weight: 700;
	text-transform: uppercase;
}

.texto-presentacion {
	margin-bottom: 10%;
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.3rem;
}

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

.right {
	text-align: right;
}

.titulo-asesor {
	font-family: 'Anton', sans-serif;
	color: #fff;
	font-size: 2.5rem;
	line-height: 2.5rem;
	letter-spacing: 1.5px;
}

/* Flex */

.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* Navbar */

.header-content {
	position: absolute;
	z-index: 10; /* Hace que el logo se muestre por encima de las imágenes */
	width: 100%;
	height: 100vh;
	animation: myAnim 2s ease 0s 1 normal forwards;
}

@keyframes myAnim {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.navbar ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
}

.navbar ul li a {
	font-size: 0.9rem;
}

/* Header */

#mainheader {
	display: flex;
	height: 100vh;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

#slide1 {
	background-image: url('images/bg10.jpg');
  }
  
  #slide2 {
	background-image: url('images/bg13.jpg');
  }
  
  #slide3 {
	background-image: url('images/bg2.jpg');
  }

.portrait {
	display: none;
}

.flex-header {
	width: 100%;
	height: 85%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.img-bg-1 {
	width: 100%;
	opacity: 1;
	transition: opacity 1s ease 0s;
}

.img-bg-1:hover {
	opacity: 0.4;
	cursor: pointer;
}

.img-bg {
	margin-bottom: 40px;
}

.titulo {
	margin-bottom: 75px;
}

.btn-header {
	text-align: center;
	transition: width 1s ease 0s;
}

.btn-bg:hover {
	padding: 7px 45px;
	background-color: #fff;
	color: #EC750F;
}

.redes {
    height: 25%;
    width: 100%;
	display: flex;
    justify-content: flex-end;
	align-items: flex-end;
}

.redes-container {
	width: 35%;
	display: flex;
	justify-content: space-between;
}

.redes a img {
    cursor: pointer;
}

.redes a {
	margin-top: 40px;
	display: inline-block;
	width: 23%;
	transition: width 1s ease 0s;
}

.redes a:hover {
    width: 30%;
}

/* Slider Header */

.slider-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-2 {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide-2 {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background-color: rgba(255, 255, 255, 1);
}

/* Empresa */

#empresa {
	height: 100vh;
}

.container-empresa {
	z-index: 1;
	position: relative;
}

.solapa-center {
	margin-top: 0px;
}

.solapa {
	display: flex;
	justify-content: center;
	align-items: end;
	width: 150px;
	height: 200px;
	background: #EE730A;
	margin-bottom: 3%;
	border-bottom-right-radius: 25px;
}

.texto-solapa {
	width: 80%;
}

.img-empresa {
	display: flex;
	height: 70%;
	justify-content: center;
	align-items: center;
	width: 50%;
	transition: opacity 1s ease 0s;
	transition: width 1s ease 0s;
}

.img-empresa:hover {
	opacity: 0.7;
	cursor: pointer;
	width: 55%;
}

.btn-orange:hover {
	padding: 7px 45px;
	background-color: #EC750F;
	color: #fff;
}

.img-empresa img {
	width: 65%;
}

.contenido {
	opacity: 0;
	transition: opacity 1s ease-in-out; /* Transición suave */
}

.visible {
	opacity: 1;
}

/* Slider Empresa */

.slider-empresa {
	position: relative;
	width: 100%;
	height: 100vh;
  }
  
  .slider-container-4 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
  }
  
  .slider-3 {
	display: flex;
	transition: transform 1s ease;
	width: 200%; /* Cuatro veces el tamaño de una imagen para cubrir las 4 imágenes */
  }
  
  .slider-3 .slide-3 {
	width: 100vw;
	height: 100vh;
	background-size: cover;
	background-position: center;
  }
  
  .slider-3 .slide-3:nth-child(1) {
	background-image: url('images/bg11.jpg'); /* Asegúrate de que la ruta sea correcta */
  }
  
  .slider-3 .slide-3:nth-child(2) {
	background-image: url('images/bg18.jpg');
  }

  /* Para facilitar el desplazamiento táctil */
@media (max-width: 768px) {
	.slider-container-4 {
	  touch-action: pan-x;
	}

	.slider-3 .slide-3:nth-child(1) {
		background-image: url('images/bg20.jpg'); /* Asegúrate de que la ruta sea correcta */
	  }
	  
	  .slider-3 .slide-3:nth-child(2) {
		background-image: url('images/bg19.jpg');
	  }

  }
 
/* Clientes */

#clientes {
	background: #000;
	height: 100vh;
}

.flex-clientes {
	height: 40%;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.flex-column-clientes {
	width: 48.5%;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

.black {
	background: #fff;
}

.titulo-black {
	color: #000;
}

.texto-cliente {
	width: 80%;
	margin-bottom: 10%;
}

.clientes-img {
	display: flex;
	padding: 0 30px;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	width: 50%;
	max-width: 48%;
	margin-left: 10%;
}

.imagenes-clientes {
	text-align: center;
	width: 110px;
	transition: width 1s ease 0s;
}

.imagenes-clientes:hover {
	width: 120px;
}

.btn-white:hover {
	padding: 7px 45px;
	background-color: #fff;
	color: #000;
}

.contenido-2 {
	opacity: 0;
	transition: opacity 1s ease-in-out; /* Transición suave */
}

.visible-2 {
	opacity: 1;
}

/* Productos */

#productos {
	background: #fff;
	height: 100vh;
}

.titulo-productos {
	font-family: 'Varela Round', sans-serif;
	color: #EC740F;
	margin-bottom: 3%;
}

.texto-productos {
	font-size: 0.9rem;
	color: #8A8A8A;
	line-height: 1.12rem;
}

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

.titulo-presentacion-producto {
	margin-bottom: 5%;
	font-family: 'Anton', sans-serif;
	color: #fff;
	font-size: 2.1rem;
	line-height: 2.5rem;
	letter-spacing: 2px;
}

.flex-container-productos {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	text-align: center;
}

.flex-descripcion {
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
}

.foto-producto-1 { 
	text-align: center;
	margin-bottom: 10%;
	width: 63%;
	opacity: 1;
	transition: width 1s ease 0s;
}

.foto-producto-1:hover {
	width: 85%;
}

.btn-producto {
	margin-top: 7%;
}

.flex-icono {
	margin-top: 4%;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}

.flex-icono a img {
	width: 80%;
	transition: width 1.5s ease 0s;
	transition: opacity 1s ease 0s;
}

.flex-icono a img:hover {
	width: 95%;
	opacity: 0.6;
}

.contenido-3 {
	opacity: 0;
	transition: opacity 1s ease-in-out; /* Transición suave */
}

.visible-3 {
	opacity: 1;
}

.flex-descarga-container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}


.img-descarga {
	width: 70%;
	opacity: 1;
	transition: opacity 1s ease-in-out;
	transition: width 1s ease 0s;
}

.img-descarga:hover {
    width: 75%;
	opacity: 0.7;
}

.descarga-text {
	font-family: 'Varela Round', sans-serif;
	display: inline-block;
	color: #EC750F;
	font-size: 1.7rem;
	cursor: pointer;
	letter-spacing: 1px;
	text-align: left;
	transition: font-size 1s ease 0s;
	transition: color 1s ease 0s;
}

.descarga-text:hover {
	color: #000;
}


/* Slider Productos */

.slider-container {
	position: relative;
	width: 100%;
	max-width: 600px; /* Ajusta el tamaño del slider */
	overflow: hidden;
  }
  
  .slider {
	display: flex;
	transition: transform 0.5s ease;
  }
  
  .slide {
	width: 100%;
	flex-shrink: 0;
	height: auto;
  }
  
  button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 10px;
	z-index: 10;
  }
  
  .prev-btn {
	background: none;
	left: -10px;
	font-family: 'Varela Round', sans-serif;
	color: #EC740F;
	font-weight: 500;
  }
  
  .next-btn {
	background: none;
	right: -10px;
	font-family: 'Varela Round', sans-serif;
	color: #EC740F;
	font-weight: 500;
  }

/* Cilindros H/N */

#cilindroshn {
    background: url('images/bg1.jpg') no-repeat center center/cover;
    height: 100vh;
}

.flex-muestra-producto {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-imagen-producto {
	display: flex;
	justify-content: space-around;
}

.flex-imagen-producto img {
	width: 50%;
	padding: 0.8rem;
	transition: width 1s ease 0s;
}

.flex-imagen-producto img:hover {
	width: 51.8%;
}

.flex-column-cilindro {
	margin-left: 1rem;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.flex-column-cilindro p {
	width: 90%;
	line-height: 1.5rem;
	text-align: left;
}

.btn-muestra-producto-2 {
	font-family: 'Varela Round', sans-serif;
	display: inline-block;
	font-size: 1.37rem;
	padding: 5px 37px;
	cursor: pointer;
	color: #fff;
	letter-spacing: 1px;
	border-radius: 10px;
	border: 1.75px solid #fff;
	width: 40%;
	text-align: center;
	transition: width 1s ease 0s;
}

.btn-muestra-producto-2:hover {
	width: 45%;
	background-color: #fff;
	color: #EC750C;
}


.btn-muestra-producto {
	display: none;
}

.btn-muestra-producto img {
	width: 30%;
	animation: myAnim2 2s linear 0s 1 normal none;
	transition: width 1s ease 0s;
}

.btn-muestra-producto img:hover {
	width: 14%;
}

@keyframes myAnim2 {
	0%,
	100% {
		transform: rotate(0deg);
		transform-origin: 50% 0;
	}

	10% {
		transform: rotate(2deg);
	}

	20%,
	40%,
	60% {
		transform: rotate(-4deg);
	}

	30%,
	50%,
	70% {
		transform: rotate(4deg);
	}

	80% {
		transform: rotate(-2deg);
	}

	90% {
		transform: rotate(2deg);
	}
}

.contenido-4 {
	opacity: 0;
	transition: opacity 2s ease-in-out; /* Transición suave */
}

.visible-4 {
	opacity: 1;
}

/* Slider Cilindro */

.slider-container-cilindro {
	width: 50%;
	overflow: hidden; /* Oculta lo que está fuera del contenedor */
	position: relative;
  }
  
  /* Slider que contiene las imágenes */
  .slide-cilindro {
	display: flex; /* Apila las imágenes de forma horizontal */
	transition: transform 0.5s ease; /* Animación para el movimiento */
  }
  
  /* Las imágenes deben ocupar el 50% del contenedor (dos por vez) */
  .slide-cilindro img {
	width: 50%; /* Cada imagen ocupa el 50% del contenedor */
	 /* Mantiene la relación de aspecto de la imagen */
  }

/* Cilindros Esp */

#cilindrosesp {
	background: url('images/bg3.jpg') no-repeat center center/cover;
	height: 100vh;
}

.flex-column-cilindro-right {
	margin-right: 1rem;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	text-align: right;
}

.flex-column-cilindro-right p {
	text-align: right;
	line-height: 1.5rem;
}

.flex-imagen-producto-right {
	display: flex;
	justify-content: space-around;
}

.flex-imagen-producto-right img {
    width: 50%;
	padding: 0.8rem;
	transition: width 1s ease 0s;
}

.flex-imagen-producto-right img:hover {
	width: 51.8%;
}


.contenido-5 {
	opacity: 0;
	transition: opacity 2s ease-in-out; /* Transición suave */
}

.visible-5 {
	opacity: 1;
}

/* Slider Cilindro */

.slider-container-cilindro-esp {
	width: 50%;
	overflow: hidden; /* Oculta lo que está fuera del contenedor */
	position: relative;
  }
  
  /* Slider que contiene las imágenes */
  .slide-cilindro-esp {
	display: flex; /* Apila las imágenes de forma horizontal */
	transition: transform 0.5s ease; /* Animación para el movimiento */
  }
  
  /* Las imágenes deben ocupar el 50% del contenedor (dos por vez) */
  .slide-cilindro-esp img {
	width: 50%; /* Cada imagen ocupa el 50% del contenedor */
	 /* Mantiene la relación de aspecto de la imagen */
  }

/* Tubos y Barras Cromadas */

#barrastubos {
    background: url('images/bg-tubos-barras.jpg') no-repeat center center/cover;
    height: 100vh;
}

.flex-muestra-producto {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-imagen-producto {
	display: flex;
	justify-content: space-around;
}

.flex-imagen-producto img {
	width: 50%;
	padding: 0.8rem;
	transition: width 1s ease 0s;
}

.flex-imagen-producto img:hover {
	width: 51.8%;
}

.flex-column-cilindro {
	margin-left: 1rem;
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.flex-column-cilindro p {
	width: 90%;
	line-height: 1.5rem;
	text-align: left;
}

.btn-muestra-producto-2-1 {
	font-family: 'Varela Round', sans-serif;
	display: inline-block;
	font-size: 1.37rem;
	padding: 5px 37px;
	cursor: pointer;
	color: #fff;
	letter-spacing: 1px;
	border-radius: 10px;
	border: 1.75px solid #fff;
	width: 40%;
	text-align: center;
	transition: width 1s ease 0s;
}

.btn-muestra-producto-2-1:hover {
	width: 45%;
	background-color: #fff;
	color: #EC750C;
}


.btn-muestra-producto {
	display: none;
}

.btn-muestra-producto img {
	width: 30%;
	animation: myAnim2 2s linear 0s 1 normal none;
	transition: width 1s ease 0s;
}

.btn-muestra-producto img:hover {
	width: 14%;
}

.btn-muestra-producto-galeria {
	margin-top: 3%;
}

@keyframes myAnim2 {
	0%,
	100% {
		transform: rotate(0deg);
		transform-origin: 50% 0;
	}

	10% {
		transform: rotate(2deg);
	}

	20%,
	40%,
	60% {
		transform: rotate(-4deg);
	}

	30%,
	50%,
	70% {
		transform: rotate(4deg);
	}

	80% {
		transform: rotate(-2deg);
	}

	90% {
		transform: rotate(2deg);
	}
}

.contenido- {
	opacity: 0;
	transition: opacity 2s ease-in-out; /* Transición suave */
}

.visible-7 {
	opacity: 1;
}

/* Slider Cilindro */

.slider-container-cilindro {
	width: 50%;
	overflow: hidden; /* Oculta lo que está fuera del contenedor */
	position: relative;
  }
  
  /* Slider que contiene las imágenes */
  .slide-cilindro {
	display: flex; /* Apila las imágenes de forma horizontal */
	transition: transform 0.5s ease; /* Animación para el movimiento */
  }
  
  /* Las imágenes deben ocupar el 50% del contenedor (dos por vez) */
  .slide-cilindro img {
	width: 50%; /* Cada imagen ocupa el 50% del contenedor */
	 /* Mantiene la relación de aspecto de la imagen */
  }

  .modal-galeria {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.modal-galeria img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.cerrar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.anterior, .siguiente {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  user-select: none;
}

.anterior { left: 20px; }
.siguiente { right: 20px; }

@media (max-width: 768px) {
  .modal-galeria img {
    max-width: 95%;
    max-height: 70%;
  }
}

/* Limas Brunidoras */

#limas {
	background: url('images/bg4.jpg') no-repeat center center/cover;
	height: 100vh;
}

.w-50 {
	width: 50%;
}

/* Slider lima */

.slider-container-cilindro-lima {
	width: 50%;
	overflow: hidden; /* Oculta lo que está fuera del contenedor */
	position: relative;
  }
  
  /* Slider que contiene las imágenes */
  .slide-cilindro-lima {
	display: flex; /* Apila las imágenes de forma horizontal */
	transition: transform 0.5s ease; /* Animación para el movimiento */
  }
  
  /* Las imágenes deben ocupar el 50% del contenedor (dos por vez) */
  .slide-cilindro-lima img {
	width: 50%; /* Cada imagen ocupa el 50% del contenedor */
	 /* Mantiene la relación de aspecto de la imagen */
  }

  .contenido-6 {
	opacity: 0;
	transition: opacity 2s ease-in-out; /* Transición suave */
}

.visible-6 {
	opacity: 1;
}

/* Hydraulitech */

#hydraulitech {
	background-color: #ffff;
	height: 50vh;
}

.container-hydraulitech {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

.titulo-presentacion-hydraulitech {
	font-family: 'Anton', sans-serif;
	font-size: 2rem;
}

.container-info-hydraulitech {
	display: flex;
	width: 80%;
	justify-content: space-around;
	align-items: center;
}

.titulo-producto-hydraulitech {
	font-size: 1.3rem;
}

.btn-hydraulitech-logo {
	width: 30%;
	transition: opacity 1s ease-in-out; /* Transición suave */
}

.btn-hydraulitech-logo img:hover {
	opacity: 0.7;
}

.btn-hydraulitech-producto img {
	width: 95%;
	transition: width 1s ease 0s;
}

.btn-hydraulitech-producto img:hover {
	width: 100%;
}

.texto-producto-hydraulitech {
	font-family: 'Work Sans', sans-serif;
	font-size: 1rem;
}

/* Asesoramiento */

#asesor {
	background: url('images/bg2.jpg') no-repeat center center/cover;
	height: 100vh;
}

.titulo-asesor {
	text-align: center;
	font-size: 2.5rem;
	line-height: 2.7rem;
	margin-bottom: 20px;
}

.flex-muestra-asesor {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.texto-presentacion-1 {
	color: #fff;
	padding: 15px;
	font-size: 1.1rem;
	line-height: 1.5rem;
	text-align: center;
	margin-bottom: 20px;
}

.texto-asesor {
	width: 35%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.red-social {
	display: inline-block;
	text-align: center;
	transition: width 1s ease 0s;
	width: 20%;
}

.red-social:hover {
	width: 30%;
}

.redes-1 {
	display: flex;
	justify-content: space-between;
}

.form-content {
	width: 40%;
	text-align: center;
}

form {
	padding: 10%;
	width: 100%;
}

form .form-group {
	margin-bottom: 20px;
}

form .form-control {
	font-family: 'Varela Round';
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 7px 12px;
	font-size: 1rem;
	line-height: 1.5;
	color: #495857;
	border: 1px solid #ced4da;
	border-radius: 8px;
}

/* Footer */

#mainfooter {
	background: #000;
}

.flex-footer {
	padding: 10px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
}

.footer-imagen-contacto {
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.flex-column-footer {
	display: flex;
	flex-direction: column;
}

.texto-footer {
	font-family: 'Work Sans', sans-serif;
	color: #fff;
	font-size: 0.8rem;
}

.link-footer {
	font-family: 'Varela Round', sans-serif;
	font-size: 1.1rem;
	color: #fff;
	margin-bottom: 10px;
}

.link-footer:hover {
	border-bottom: 1.5px solid #fff;
	width: auto;
}

.logo-footer {
	opacity: 1;
	transition: opacity 1s ease 0s;
}

.logo-footer:hover {
	opacity: 0.4;
	cursor: pointer;
}
