@media screen and (max-width: 767px) {
  header {
    background: none;
  }
  body > div.content > div:nth-child(2) {
    margin-top: -64px;
  }
}


#title-img {
  border-radius: 120px 0 0 120px;
  transform: translateX(25%);
}
@media screen and (max-width: 767px) {
  #title-img {
    border-radius: 0 0 0 260px;
    transform: unset;
  }
}

.title-decorated { position: relative; }
.title-decorated:after {
  content: ' ';
  position: absolute;
  display: inline-block;
  height: 0.4rem;
  border-radius: 0.1rem;
  width:100px;
  background-color: aqua;
  left: 0;
  bottom: -0.5rem;
}
  .title-decorated.empresas:after {
    background-color: var(--theme-color-empresas);
  }
  .title-decorated.audiovisual:after {
    background-color: var(--theme-color-audiovisual);
  }
  .title-decorated.musica:after {
    background-color: var(--theme-color-musica);
  }
  .title-decorated.cultura:after {
    background-color: var(--theme-color-cultura);
  }

.arrow {
  display: inline-block;
  border: none;
  border-radius: 50%;
  color: white;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  position: absolute;
  /* bottom: -5%; */
  margin-top: 1rem;
}
  .arrow.empresas {
    background-color: var(--theme-color-empresas);
  }
  .arrow.audiovisual {
    background-color: var(--theme-color-audiovisual);
  }
  .arrow.musica {
    background-color: var(--theme-color-musica);
  }
  .arrow.cultura {
    background-color: var(--theme-color-cultura);
  }

@media screen and (max-width: 767px) {
  .arrow {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    position: absolute;
    right: 0;
  }
}

.attribute-list {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0.5rem;
}
  .attribute-list li {    
    font-size: 1.2rem;
  }

@media screen and (max-width: 767px) {
  .attribute-list {
    grid-template-columns: 1fr;
  }    
}

#gallery {
  position: relative;
}

#gallery .images-container {
    display: block;
    height: auto;
    overflow: auto;
    white-space: nowrap;
    padding: 0;
    font-size: 0;
    /* touch-action: none; */
  }
    #gallery .images-container > img {
      width: 300px;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      margin-right: 15px;
      display: inline-block;
      filter: grayscale(1);
      border-radius: 0.6rem;
      cursor: pointer;
      transition-duration: 0.3s;
      filter: brightness(1);
    }
      #gallery .images-container > img:hover {
        filter: brightness(1.25);
      }
    #gallery .images-container > img:last-child {
      margin-right: 0;
    }  

#gallery .images-container::-webkit-scrollbar {
  height: 0;
}

#gallery .images-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	position: absolute;
  top: 0;
  height: 100%;
	width: 100%;
	pointer-events: none;
}
	#gallery .images-navigation > button {
		line-height: 0;
    padding: 1rem;
    border-radius: 50%;
    font-size: 1rem;
    background: white;
    color: var(--theme-color_dark);
    border: none;
		pointer-events: all;
	}
		#gallery .images-navigation > button > i {
			color: var(--theme-blue);
		}
	#gallery .images-navigation .img-prev {
		position: absolute;	
		left: 15px;
	}
	#gallery .images-navigation .img-next {
		position: absolute;	
		right: 15px;
	}  

#gallery-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}
  #gallery-modal > div {
    padding: 0.5rem;
    background: white;
    border-radius: 1rem;    
    max-width: calc( 100% -  1rem );
    max-height: calc( 90% -  1rem );
    position: relative;
  }
  #gallery-modal > div > a {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
    width: 2rem;
    height: 2rem;
  }
  #gallery-modal > div > img {
    object-fit: contain;
    width: 100%;
    max-height: 100%;;
    height: auto;
    border-radius: 0.7rem;
  }

@media screen and (max-width: 767px ){
  #gallery .images-container > img {
    width: 100%;    
  }
}