* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 400;
  color: #222;
  margin: 0;
  padding: 0;
  border: 0;
  min-height: 100vh;
  font-family: proxima-nova, sans-serif;
  background-image: url(assets/DESKTOP-BG.jpg);
  background-size: cover;
}


.extra-bg {
  background: url(assets/DESKTOP-BG.png) center bottom no-repeat;
  position: absolute;
  left:0;
  bottom: 0;
  top: 0;
  right: 0;
  display: block;
  background-size: contain;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #035084;
}

.main-container {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 70px;
  
}

.logo-container {
  margin-bottom: 32px;
  text-align: center;
}

.main-text-container {
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.main-text-container p {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
}
.main-text-container h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  margin-top: 10px;
}

.ctas-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cta-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 340px;
  width: 100%;
  text-align: center;
  background-color: rgba(14, 27, 49, 0.6);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 24px;
  margin-bottom: 20px;
}
.cta-container p {
  width: 100%;
  font-size: 14px;
  margin-bottom: 30px;
}
.cta-button {
  background-color: #ffe21c;
  color: #00223b;
  text-decoration: none;
  border: 1px solid #ffe21c;
  padding: 0px 10px;
  text-align: center;
  transition: .125s all ease;
  font-weight: 700;
  line-height: 28px;
  max-height: 42px;
  font-family: op,sans-serif;
  font-size: 16px;
  text-transform: capitalize;
  vertical-align: top;
  cursor: pointer;
  padding-top: 7px;
  padding-bottom: 5px;
  border-radius: 20px;
  max-width: 200px;
  margin: 0 auto;
  display:  block;
}

.cta-button:hover {
  background-color: #ffba00;
}

@media (max-width: 768px) {
  body {
    background-image: url(assets/MOBILE-BG.jpg);
  }
  .logo-container {
    margin-top: 40px;
    margin-bottom: 0;
  }
  .logo-container img {
    width: 170px;
  }
  .main-text-container {
    padding: 0 20px 20px;
    background: rgba(255,255,255,0.3);
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
  }
  .main-text-container p {
    font-size: 16px;
  }
  .main-text-container h2 {
    margin: 35px 0;
  }
  .ctas-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .cta-container img {
    width: 200px;
  }

  .extra-bg {
    background-image: url(assets/MOBILE-BG.png);
  }
}
