	@font-face {
		font-family: 'htds';
		src: url("./fonts/DINPro-Bold.otf");
	}
	@font-face {
		font-family: 'htds-bold';
		src: url("./fonts/DINPro-Black.otf");
	}
	@font-face {
		font-family: 'htds-regular';
		src: url("./fonts/DINPro-Regular.otf");
	}
	@font-face {
		font-family: 'htds-light';
		src: url("./fonts/DINPro-Light.otf");
	}



.section-title {
    margin-top: 50px;
    font-family: htds;
    font-size: 40px;
    border-top: 3px solid #031CA6;
    border-bottom: 3px solid #031CA6;
    padding: 10px;
    width: 400px;
}



  
	
.container-button {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 35px 0;
}

.button-to-projects {
    font-family: htds;
    font-size: 22px;
    border-bottom: 1px solid #031CA6;
    color: #031CA6;
    padding: 5px 80px;
    text-decoration: none;
    transition: 0.3s;
}
.button-to-projects:hover{
    color: white;
    background-color: #031CA6;
}


.container-img {
  position: relative;
  width: 100%;
}


.container-img img{
  transition: transform 0.5s ease;
  will-change: transform;
}

.service-article:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .button-to-projects {
    max-width: 100%;
    font-size: 16px;
  }
  .section-title {
    width: 270px;
    font-size: 24px;
  }
  .container-img {
    margin: 0 100px;
  }

}



 /***********    Show Design Container Projects    ***********/
    .container-project {
      min-height: 40vh;
      text-decoration: none;
		  border-radius: 5px;
    }
    .container-project:hover .project {
        opacity: 1; 
    }

    /***********    Show Design Projects ***********/
  
    .project {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: start;
      padding: 0 20px;
      opacity: 0;
      transition: opacity 0.1s ease-in-out;
      background-color: rgba(0, 0, 0, 0.4);
      height: 100%;
		  border-radius: 5px;
    }
    .project * {
        border-bottom: none;
        font-family: htds;
        margin: 0;
        color: white;
        text-decoration: none;
    }
    .project h2{font-size: 32px; font-family: htds; line-height: 1;}
    .project h3{font-size: 20px; font-family: htds-light; line-height: 2;}


     .content-section {
        margin: 0 30px;
        display: none;
      }
      .visible {
        display: block;
      }

      article {
        margin-top: 50px;
      }
      .article-title {
        font-family: htds;
        font-size: 30px;
      }
      .texto {
        font-family: htds-regular;
        font-size: 18px;
        color: #333333;
        padding-right: 30%;
      }

  .gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    row-gap: 30px;
  }

  .container-img {
    width: 49.5%;
    height: 50vh;
		border-radius: 5px;
  }

  .container-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
		border-radius: 5px;

  }

      @media (max-width: 768px) {
        .gallery {
          row-gap: 20px;
        }

        .container-img {
          margin: 0;
          height: 30vh; 
        }

        .container-img img {
          height: 100%;
          object-fit: cover;
          object-position: center;
        }

        .article-title {
          font-size: 24px;
        }
        .texto {
          padding-right: 0;
          padding-left: 0;
          font-size: 16px;
        }    
      }