:root {
  --white: white;
  --black: black;
}

a {
  color: #f28134;
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 30px;
  list-style-type: square;
}

li {
  border-bottom: 1px solid #ffffff36;
  padding-top: 5px;
  padding-bottom: 5px;
}

.pagewrapper {
  font-family: forma-djr-micro, sans-serif;
}

.hero {
  text-overflow: ellipsis;
  background-color: #000;
  background-image: url('../images/background.jpg');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 10px solid #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 80vh;
  display: flex;
}

.section {
  color: #fff;
  background-color: #1d1761;
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: forma-djr-micro, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.div-block {
  background-color: #1d1761cf;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 1200px;
  padding: 29px;
  display: flex;
}

.logo {
  width: 300px;
}

.div-block-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #f28134;
  border: 1px solid #000;
  border-radius: 5px;
  margin-top: 20px;
  padding: 16px 24px;
  font-family: cubano, sans-serif;
  font-size: 18px;
  line-height: 24px;
  transition: all .2s;
}

.button:hover {
  background-color: #fff;
}

.container {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  width: 98%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.content-flex {
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.content-flex.mid {
  align-items: center;
}

.content-flex.top {
  align-items: flex-start;
}

.half {
  width: 100%;
  max-width: 50%;
}

.half.image {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 0 61px;
  display: flex;
}

.half.image.sticky {
  position: sticky;
  top: 40px;
}

.half.fw {
  max-width: none;
}

.main-heading {
  color: #f28134;
  margin-top: 34px;
  margin-bottom: 20px;
  font-family: cubano, sans-serif;
}

.heading {
  color: #f28134;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: cubano, sans-serif;
  font-size: 29px;
  font-weight: 400;
}

.sub-sub-head {
  color: #a4ddf8;
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

.pink-line {
  background-color: #f28134;
  width: 100%;
  height: 6px;
}

@media screen and (max-width: 991px) {
  .hero {
    background-position: 50% 100%;
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .div-block {
    justify-content: center;
    align-items: center;
  }

  .div-block-2 {
    background-color: #000000a1;
    border-radius: 6px;
    padding: 30px;
  }

  .content-flex.top {
    flex-flow: column;
  }

  .half {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 29px;
    padding-bottom: 29px;
  }

  .container {
    width: 95%;
  }

  .content-flex.mid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .content-flex.top {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .half {
    order: -1;
  }

  .half.image {
    order: 1;
  }
}

@media screen and (max-width: 479px) {
  .section {
    font-size: 18px;
    line-height: 22px;
  }

  .container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .main-heading {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}


