.content-banner__container {
  max-width: 1240px;
  padding-left: 100px;
  padding-right: 100px;
  margin: 0 auto;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  opacity: 1;
  max-height: 500px;
}

.content-banner__container.hidden {
  opacity: 0;
  max-height: 0;
}

@media (max-width: 1250px) {
  .content-banner__container {
    padding-left: 20rem;
    padding-right: 20rem;
    max-height: 750px;
  }
}

.content-banner__wrap {
  background-color: #504F51;
  border-radius: 24px;
  padding: 26px 24px;
  margin-bottom: 50px;
}

.content-banner__wrap {
  display: flex;
  gap: 24px;
  align-items: center;
}

.content-banner__title {
  font-family: Druk,sans-serif;
  font-size: 40rem;
  line-height: 40rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  color: #3EABC9;
  min-width: 170px;
}

.content-banner__desc {
  margin: 0;
  font-size: 16px;
  padding-right: 40px;
  font-weight: 300;
  color: #fff;
}

.content-banner__cross {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background-color: #5D5D5F;
  cursor: pointer;
  margin-bottom: auto;
}


.content-banner__cross svg {
  width: 18px;
  height: 18px;
}


@media (max-width: 600px) {
  .content-banner__wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .content-banner__cross {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
