.image-content {
  width: 100%;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.image-content img {
  width: 100%;
  max-width: 2400px;
  height: auto;
  object-fit: cover;
}

.section-footer {
  padding: 25px 0;
  background-color: #282828;
  text-align: left;
}

.section-footer a, .section-footer h4, .section-footer h6{
  text-decoration: none;
  color: white;
  font-weight: 300;
}

.section-footer a:hover{
  color: #ffbd21;
  transition: .3s;
  opacity: .7;
}

.content {
  position: relative;
	margin: 0 auto;
	max-width: 1700px;
}

.content-section {
  margin: 20px 0;
}

.content-section ul {
  list-style-type:none;
  padding: 0;
}

.content-section hr {
  width: 60px;
  height: 3px;
  background-color: #ca8e00;
  opacity: .7;
  border: none;
}

.container-fluid hr{
  width: 100%;
  height: 3px;
  background-color: #a7a7a7; 
  border: none;
}

footer .col-md-4 hr {
  width: 20%;  
  margin-bottom: 20px; 
}

.content-section h4 {
  font-weight: bold;
}

.content-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-icons i{
  font-size: 35px;
}

footer .img-fluid{
  width: 50%;
  height: auto;
}

.row .col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container-fluid ul{
  margin: 0;
}

.scroll-to-top {  
  position: fixed;
  opacity: 0;
  pointer-events: none; /* Evita clics cuando está invisible */
  cursor: pointer;
  bottom: 20px;
  right: 40px;
  background-color: #004d0b;
  color: white;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 10px;
  transition: opacity 0.3s ease-in-out, background-color 0.3s;
  z-index: 1;
  font-size: 20px;
}

.scroll-to-top:hover {
  background-color: #005a0e;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto; /* Permitir clics */
}



@media (max-width:768px) {
  footer .row {
    display: flex;
    flex-wrap: wrap;
  }

	footer .img-fluid{
    width: 30%;
    height: auto;
  }

  .row .col-md-4 {
    margin-top: 20px;
  }
}
