*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body,
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

button {
  border: none;
  padding: 10px 25px;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

.bg--yellow {
  background-color: #FFAC2D;
}

.bg--dark-blue {
  background-color: #00325B;
}

.bg--light-blue {
  background-color: #D8EDFA;
}

.bg--blue {
  background-color: #007AC4;
}

body,
p,
a,
li,
ul {
  font-family: "Open Sans", sans-serif;
  color: #00325B;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
    transition: font-size 0.5s ease-in-out;
  }
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.caps {
  text-transform: uppercase;
}

.white {
  color: #FFFFFF;
}

.center {
  text-align: center;
}

.large {
  font-size: 1.25rem;
}

.underline {
  text-decoration: underline;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.fdc {
  flex-direction: column;
}

.aic {
  align-items: center;
}

.aife {
  align-items: flex-end;
}

.aisb {
  align-items: space-between;
}

.jcc {
  justify-content: center;
}

.jcfe {
  justify-content: flex-end;
}

.jcsb {
  justify-content: space-between;
}

.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
  padding-left: 24px;
  padding-right: 24px;
}

.btn, .submit-button {
  border: none !important;
  border-radius: 100px !important;
  font: "Open Sans", sans-serif !important;
  padding: 15px 24px !important;
  text-transform: uppercase;
}
.btn--blue, .submit-button {
  background-color: #00325B !important;
  color: #FFFFFF;
}
.btn--blue:hover, .submit-button:hover {
  background-color: #D8EDFA !important;
  color: #00325B !important;
  transition: 0.5s ease-in-out;
}

.border-left {
  border-radius: 90px 90px 90px 0px;
}

.border-right {
  border-radius: 90px 90px 0px 90px;
}

.fade-in {
  opacity: 0;
}
.fade-in--active {
  animation: fade-in 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-right {
  opacity: 0;
  transform: translateX(-100px);
}
.fade-right--active {
  animation: fade-right 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-left {
  opacity: 0;
  transform: translateX(-100px);
}
.fade-left--active {
  animation: fade-left 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(100px);
}
.fade-up--active {
  animation: fade-up 1s ease-out 0s 1 normal forwards;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoom-in-container {
  overflow: hidden;
  max-width: 100%;
}

.zoom-in {
  transform: scale(1);
  z-index: -1;
}
.zoom-in--active {
  animation: zoom-in 2s ease-out 0s 1 normal forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
    z-index: -1;
  }
  100% {
    transform: scale(1.075);
    z-index: -1;
  }
}
.delay {
  animation-delay: 0.25s;
}

.delay-long {
  animation-delay: 0.5s;
}

.delay-longer {
  animation-delay: 0.75s;
}

.delay-longest {
  animation-delay: 1s;
}

.areas {
  margin-top: 64px;
  margin-bottom: 48px;
}

.currently-impacted {
  width: 100%;
}

.currently-impacted, .up-next, .completed {
  position: relative;
  padding-top: 96px;
  padding-bottom: 48px;
  border-radius: 6px;
  gap: 36px;
  padding-left: 24px;
  padding-right: 24px;
}

.ci-headline {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 24px;
  width: max-content;
}

.ci--left, .ci--right {
  gap: 20px;
}

.map-img {
  width: 200px;
  height: 250px;
  position: relative;
  border-radius: 6px;
}

.map-1 {
  background-image: url("../../assets/img/map1.svg");
}

.map-2 {
  background-image: url("../../assets/img/map2.svg");
}

.map-download {
  gap: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40%;
  width: max-content;
}

.ci-column {
  gap: 24px;
}
.ci-column p {
  width: 210px;
}
.ci-column img {
  width: 40px;
}

.ci-row {
  gap: 12px;
}

.areas--bottom {
  margin-top: 64px;
  gap: 24px;
}

.up-next, .completed {
  width: 48%;
  min-height: 300px;
}

.ci-row--wider p {
  width: auto;
  max-width: 350px;
}

@media (max-width: 600px) {
  .ci-headline h2 {
    font-size: 1.25rem;
    transition: font-size 0.5s ease-in-out;
  }
}
@media (max-width: 900px) {
  .areas--bottom {
    gap: 64px;
    transition: 0.5s ease-in-out;
  }
  .up-next, .completed {
    width: 100%;
    transition: 0.5s ease-in-out;
  }
  .ci-row--wider p {
    max-width: 210px;
  }
}
.benefits {
  padding-top: 48px;
  padding-bottom: 48px;
}

.benefits-cards {
  margin-top: 32px;
  margin-bottom: -72px;
}

.benefit-card {
  padding: 32px;
  width: 340px;
  min-height: 333px;
}

.benefit-headline {
  gap: 12px;
}

.benefit-headline img {
  width: 70px;
}

.benefit-text {
  max-width: 250px;
  margin: auto;
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (max-width: 1100px) {
  .benefits-cards {
    justify-content: center;
    gap: 36px;
  }
}
.callout {
  gap: 48px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.callout svg {
  width: 150px;
}

.callout--right {
  max-width: 800px;
}

@media (max-width: 1050px) {
  .callout {
    justify-content: center;
  }
}
.contact {
  padding-top: 48px;
  padding-bottom: 48px;
}

.contact-headline {
  max-width: fit-content;
  padding: 24px;
  margin-top: -72px;
}

.contact-form {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.footer-logo {
  width: 250px;
  margin-left: auto;
}

/* update freeform plugin styling */
.form-input {
  border-radius: 35px !important;
  border: 1px solid #00325B !important;
  background-color: transparent !important;
  padding: 15px 24px !important;
}
.form-input::placeholder {
  font-family: inherit !important;
  text-transform: uppercase !important;
  color: #00325B !important;
  font-weight: 700 !important;
}

.form-label--none {
  display: none !important;
}

.radio-row {
  display: flex;
  gap: 24px;
  border: 1px solid #00325B !important;
  border-radius: 35px !important;
  width: 98% !important;
  margin: auto !important;
  float: none !important;
  padding: 15px 24px !important;
}
.radio-row * {
  color: #00325B !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.construction-header {
  background-image: url("../../assets/img/PSC-aerial-view.jpg");
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.construction-header--left {
  gap: 12px;
}

.chl-headline {
  padding: 24px 24px 24px 48px;
  border-radius: 90px 0px 0px 0px;
  max-width: fit-content;
  text-align: center;
}

.chl-text {
  max-width: 362px;
  border-radius: 0px 0px 90px 90px;
  padding: 24px 48px 24px 48px;
  gap: 12px;
}

.chl-text--first, .chl-text--second {
  align-items: flex-start;
  gap: 12px;
}
.chl-text--first p, .chl-text--second p {
  max-width: 212px;
}

.construction-header--right {
  padding: 24px;
  width: 280px;
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
}

@media (max-width: 1000px) {
  .construction-header {
    padding-top: 100px;
    transition: 0.5s ease-in-out;
  }
}
.construction-nav {
  margin-top: 48px;
  margin-bottom: 48px;
}

.construction-nav--left {
  gap: 24px;
}

.construction-logo {
  width: 248px;
}

@media (max-width: 1068px) {
  .construction-nav {
    flex-direction: column-reverse;
    gap: 24px;
    transition: all 0.5s ease-in-out;
  }
}
.questions {
  margin-top: 72px;
  margin-bottom: 72px;
}

.accordion {
  cursor: pointer;
  padding: 24px;
  width: 100%;
  text-align: left;
  background-color: transparent;
  border-left: none;
  border-right: none;
  border-top: 1px solid #00325B;
  border-bottom: none;
  position: relative;
}

.accordion-arrow {
  position: absolute;
  right: 0;
  top: 24px;
}

.acc--active .accordion-arrow {
  transform: rotate(180deg);
  transition: 0.3s;
}

.panel {
  padding: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p {
  padding-left: 24px;
  padding-right: 24px;
  /* margin-top: 24px; */
  margin-bottom: 24px;
}

.questions-headline {
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .arrow {
    display: none;
  }
}

/*# sourceMappingURL=app.css.map */
