.offer-container {
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}
.offer-container-row {
  width: 100%;
  display: inline-block;
}
.page-title {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.section1 {
  margin-top: 10px;
  display: inline;
  width: 60%;
  float: left;
}
.section2 {
  margin-top: 60px;
  display: inline;
  width: 35%;
  float: right;
}
.offer-info-title p{
  font-size: 25px;
  font-weight: 700;
  color: black;
  text-transform: uppercase !important;
}
.sub-section2 {
  background-color: #222;
  padding-left: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.sub-section2-item {
  margin-bottom: 15px;
}
.sub-section2-item-title{
  color: white;
  font-size: 19px;
  font-weight: 500;
  margin: 0;
}
.sub-section2-item-value{
  color: white;
  margin: 0;
}
.offer-info-div {
  background-color: whitesmoke;
  padding: 30px;
  margin-bottom: 20px;
}
.section1-event-title p{
  color: black;
  font-weight: 500;
  font-size: 20px;
  margin-top: 30px;
}

.section1-offer-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 30px;
}
.section1-offer-item {
  display: inline;
  margin-top: 20px;
}
.section1-offer-item-value {
  color: black;
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}
.section1-offer-item-title {
  margin: 0;
  font-weight: 400;
}

.dashed-line {
  margin: 5px 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    transparent,
    transparent 10px,
    black 10px,
    black 20px
  );
}

.buttons-title {
  margin-top: 20px;
  margin-bottom: 20px;
}
.buttons-title p{
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  color: black;
}
.item-button {
  padding-top: 10px;
  padding-bottom: 10px;
  width: 60%;
  margin: auto;
  text-align: center;
  margin-bottom: 10px;
}
.event-button {
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 40%;
  margin: auto;
  text-align: center;
  margin-bottom: 10px;
}
.event-button a{
  font-size: 17px;
  font-weight: 400;
}
.item-button a{
  font-size: 17px;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .section1-offer-item {
    font-size: 15px;
    padding-right: 20px;
  }
}
@media (max-width: 800px) {
  .offer-container-row {
    flex-direction: column-reverse;
  }
  .section1 {
    width: 100%;
  }
  .section2 {
    width: 100%;
  }
  .event-button {
    width: 60%;
  }
  .section1-offer-item {
    font-size: 15px;
    padding-right: 20px;
  }
}

@media (max-width: 470px) {
  .section1-offer-row {
    display: inline-block;
  }
}