/**/
.col-image {
  overflow: hidden;
}

.red-title {
  color: #c4132a;
}

.col-title {
  font-weight: 300;
  padding-bottom: 20px;
  border-bottom: 2px solid #c4132a;
}

.col-image img {
  transition: 1s;
}
.col-image img:hover {
  transform: scale(1.1);
}

/*BANNER*/
.model-banner {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--navbar-height, 81px) - 49px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.model-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(30px) brightness(0.6);
  transform: scale(1.1);
}

.model-banner-img {
  position: relative;
  max-width: 100%;
  max-height: calc(100vh - var(--navbar-height, 81px) - 49px);
  object-fit: contain;
  z-index: 1;
}
