.section {
  background-image: url('../images/cantina-bgd-min.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.div-block {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  max-width: 1280px;
  height: 100%;
  padding-bottom: 5rem;
  padding-left: 5rem;
  display: flex;
}

.heading {
  color: #fff;
  letter-spacing: 3px;
  font-family: Jost, sans-serif;
}

.text-block {
  color: #fff;
  font-family: Jost, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.cta {
  cursor: pointer;
  background-color: #060061;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 1em 1.4em;
}

.cta:hover {
  background-color: #090643;
}

.text-block-2 {
  color: #fff;
  font-family: Jost, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.regular-txt {
  color: #fff;
  font-family: Jost, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}

.modal {
  z-index: 0;
  background-color: #fff;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 60%;
  display: none;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.regular-txt-modal {
  color: #000;
  text-align: center;
  font-family: Jost, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  position: absolute;
}

.close-x {
  cursor: pointer;
  max-width: 2rem;
  margin-top: 2rem;
  margin-right: 2rem;
  position: absolute;
  inset: 0% 0% auto auto;
}

@media screen and (max-width: 767px) {
  .div-block {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media screen and (max-width: 479px) {
  .div-block {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }

  .modal {
    width: 90%;
    height: 90%;
  }
}


