.header-secondary-portfolio {
  height: 60vh;
  width: 100%;
  background-image: url(../assets/img/portadatrab_2-small.jpg);
  background-position-y: 0px;
  background-position-x: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.portfolio-main {
  overflow: hidden;
}
.portfolio-title {
  display: inline-block;
  padding: 0.2rem 1rem;
  background-color: #f2733b;
  color: white;
}
.portfolio__card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 100%;
  /* background-color: #f2733b; */
}

.portfolio__card img {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.portfolio__card:hover > img {
  transform: scale(1.3);
}
.portfolio__card .cover {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.411);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease-out;
}
.portfolio__card:hover > .cover {
  opacity: 1;
  visibility: visible;
}
.portfolio__card .cover h3 {
  color: #ffffff;
  text-transform: uppercase;
}
/* Modal */
.modal-dialog{
  min-width: 300px !important;
  max-width: none !important;
}
.modal-header {
  background-color: #2157db;
  color: white;
}
.btn-close-modal{
  color: white;
}
.modal-title{
  font-size: 1rem;
  text-transform: uppercase;
}
.modal-body {
  background-color: #fcf2fa;
}
.modal-info{
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  font-size: 0.8rem;
}
.label{
  color: #c0c0c0;
  margin-right: 2px;
  margin-bottom: 0;
}
.info{
  margin-bottom: 0;
}
.modal-img{
  width: 100%;
}
.modal-footer{
  background-color: #fcf2fa;
}
