@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tinos:wght@400;700&display=swap');

body, html {
  font-size: 17px;
  line-height: 1.5em;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #333;
  -webkit-font-smoothing: inherit;
  -webkit-text-size-adjust: inherit;
}

.landingContainer {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.landingContainer:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: .8;
  z-index: 0;
}

.landingWrap {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  overflow-y: auto;
}

.landingBox {
  width: 100%;
  max-width: 900px;
  margin: 1rem auto;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-family: "Tinos", serif;
}

.landingBox .contentBox {
  width: 60%;
  background-position: center;
  background-size: cover;
  position: relative;
}

.landingBox .contentBox::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #707070;
  background: linear-gradient(0deg, rgb(255 255 255 / 62%) 4%, rgb(255 255 255) 100%);
  z-index: 0;
  left: 0;
  transform: rotate(180deg);
}

.landingBox .contentBox .text {
  padding: 2em;
  position: relative;
  z-index: 1;
  font-size: 1.1em;
  color: #043689;
}

.landingBox .actionBtn {
  width: 40%;
  padding: 5em 2em;
}

.landingBox .actionBtn>div {
  display: grid;
  gap: 2em;
}

.landing-logo {
  text-transform: uppercase;
  display: block;
  margin: auto auto 1em;
}

.landing-logo img {
  width: 250px;
}

.actionBtn>div a {
  font-size: 1.3em;
  color: #fff;
  padding: 1em;
  text-align: center;
  border-radius: 3px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  min-width: 300px;
  min-height: 130px;
}

.actionBtn a.changemaker {
  background-color: #043689;
}

.actionBtn a.beta {
  background-color: #3A8E11;
}

.actionBtn a.changemaker:hover {
  background-color: #528DBE;
}

.actionBtn a.beta:hover {
  background-color: #8DB75F;
}

@media screen and (max-width:767px) {
  .landing-header h1 {
    font-size: 1.8em;
  }

  .landing-boxes div {
    width: calc(100% - 50px);
  }

  .landing-boxes div a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}