.calendar {
  border-bottom: 2px solid rgb(130, 128, 145);
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.titles__descriptions ul {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.calendar__inner {
  display: flex;
  align-items: center;
  -moz-column-gap: 430px;
       column-gap: 430px;
}

.date {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.date__text {
  color: rgb(0, 0, 0);
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  height: 100%;
}

.date__button {
  width: 40px;
  height: 40px;
}
.date__button img {
  background-color: #fff;
}

#calendar-result {
  color: rgb(169, 10, 59);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.arrow {
  transition: transform 0.3s ease;
}

.arrow.rotated {
  transform: rotate(180deg);
}

@media (max-width: 1300px) {
  .media__aside {
    display: none;
  }
  .block__columns {
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }
  .block__column {
    padding: 0px !important;
  }
  .block__column:first-of-type {
    max-width: 100% !important;
  }
  .main {
    padding: 0 15px;
  }
}
@media (max-width: 1000px) {
  .titles__descriptions ul {
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .calendar__inner {
    justify-content: space-between;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .main {
    margin-top: 10px;
  }
  .catalog__type:first-of-type {
    margin: 0 10px 0 0 !important;
  }
  .catalog__time {
    margin-bottom: 10px;
  }
  .newsletter {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  #calendar-result span {
    display: none;
  }
  #calendar-result img:last-of-type {
    display: none;
  }
}