/*
========================
======================== OCULTAR
========================
*/

.header,
.footer {
  display: none;
}

/*
========================
======================== HEADER
========================
*/

.opening-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.opening-header-logo {
  max-width: 160px;
}

.opening-header-social {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
}

@media (max-width: 991px) {
  .opening-header-social {
    display: none;
  }
}

.opening-header-social a {
  background-color: var(--blue-normal);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}

.opening-header-social a img {
  height: 19px;
}

.opening-header-social a:hover {
  opacity: 0.8;
}

/*
========================
======================== OPENING
========================
*/

.opening {
  margin-top: 40px;
  position: relative;
  margin-bottom: -280px;
}

.opening .container {
  max-width: 80%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

@media (max-width: 991px) {
  .opening .container {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .opening .container {
    grid-template-columns: 1fr;
  }
}

.opening-item {
  position: relative;
  height: 650px;
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.opening-item-bg {
  background-color: var(--blue-normal);
  border-radius: 40px;
  height: 600px;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  z-index: -1;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.opening-item:hover .opening-item-bg {
  background-color: var(--orange);
  height: 650px;
}

.opening-item-cover {
  position: relative;
  top: -3rem;
}

.opening-item-titles {
  width: 90%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 40px;
  position: absolute;
  left: 5%;
  bottom: 5%;
}

.opening-item-titles h2 {
  color: var(--white-normal);
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  max-width: 70px;
}

.opening-item-titles .icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange);
  border-radius: 20px;
  transition: 0.4s;
}

.opening-item:hover .icon {
  border: 2px solid var(--blue-normal);
  background-color: var(--blue-normal);
}

.opening-item:hover .icon path {
  fill: #fff;
}

.opening-footer {
  margin-bottom: 30px;
}

.opening-footer .container {
  background-color: var(--white-normal);
  max-width: 90%;
  margin: 0 auto;
  border-radius: 40px;
  height: 410px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 30px;
}

.opening-footer .container p {
  color: var(--grey);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  margin-bottom: 10px;
}
