body {
	font-family: Roboto;
	font-size: 20px;
	line-height: 1.3;
	
	background-color: #CDDE00;
	color: #1D1C1F;
	width: 100vw;
  overflow-x: hidden;
}

.page {
  display: flex;
  padding: 3%;
  min-height: 100vh;
}

a {
	text-decoration: none !important;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4rem;
  height: 100%;
  min-width: 100%;
  align-self: center;
}

.content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.logos {
  height: 48px;
  width: auto;
}

.headline-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline {
  font-size: 3.25vw;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  color: white;
  display: block;
  width: fit-content;
  background-color: #004D71;
  padding: 0.8vw 1.75vw;
}

.mobile-show {
  display: none !important;
}

.sub-head {
  text-align: center;
}

.sub-head a {
	color: #1D1C1F;
  padding-bottom: 0.01rem;
  border-bottom: solid 1px #1D1C1F;
}

.cta {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #004D71;
  padding: 0.75rem 1.5rem;
  background-color: #f2f2f2;
  border-radius: 10000px;
  width: fit-content;
  transition: all 0.3s ease;
}

.line-1 {
  margin-bottom: -0.75vw;
}

.line-2 {
  margin-top: -0.75vw;
}

footer {
  width: 100%;
  padding: 3%;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
	position: fixed;
  bottom: 0;
  left: 0;
}

footer a {
	color: #1D1C1F !important;
}

footer .inner {
  display: flex;
  gap: 0.5rem;
}

.bg-image {
  position: fixed;
  width: 104vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (min-width: 768px) {
  
  .cta:hover {
  	background-color: #EFF0DB;
  }

}

@media (max-width: 768px) {
  
  .headline {
  	font-size: 5.5vw;
  }
  
  .bg-image {
    width: 204vw;
  }

}

@media (max-width: 480px) {
  
  .headline {
  	font-size: 8vw;
    width: max-content;
  }
  
  .line-2.mobile {
    margin-bottom: -0.75vw;
    margin-top: -0.75vw;
  }
  
  .line-3 {
    margin-top: -0.75vw;
  }
  
  .mobile-hide {
    display: none !important;
  }
  
  .mobile-show {
    display: flex !important;
  }

}

