@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --blue: #0155a4;
  --l-blue: #a1d6f3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background-color: transparent !important;
  overflow-x: hidden;
}

body,
input,
textarea,
button,
select {
  font-family: inherit;
}

.hero_image img:first-of-type,
.post_falls_description > div > div > img,
.education_workforce_transportation > div > img,
.development_opportunities > img,
.cost_doing_business > img,
.contact_form > div > div > img {
  width: 100%;
}

.button {
  text-decoration: none;
  display: inline-block;
  background-color: #0088d2;
  padding: 0.2rem 2rem;
  border: none;
  border-radius: 15px;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 22px;
  margin-top: 1rem;
}

input,
textarea {
  border-radius: 10px;
  padding: 0.5rem 1rem;
  border: none;
  font-size: 0.75rem;
}

input::placeholder,
textarea::placeholder {
  font-weight: 500;
}

label {
  color: var(--blue);
  font-weight: 600;
  line-height: 24px;
}

.required::after {
  content: "*";
}

ul {
  list-style: none;
}

ul li {
  position: relative;
  padding: 1rem 0 1rem 1.5rem;
  line-height: 18px;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 5px;
  top: 14px;
  font-size: 2rem;
}

a:not(.button) {
  font-weight: 600;
  text-decoration: none;
  color: var(--blue);
  transition: transform 0.2s ease-out, text-shadow 0.2s ease-out;
}

a:not(.button):hover,
a:not(.button):focus {
  transform: translateY(-2px);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

@media (min-width: 768px) {
  .button {
    padding: 0.5rem 3rem;
    font-size: 1.5rem;
    line-height: 42px;
    margin-top: 1.5rem;
  }

  input,
  textarea {
    font-size: 1.125rem;
  }

  label {
    font-size: 1.25rem;
  }

  ul li {
    padding: 1rem 0 1rem 1.8rem;
    line-height: 40px;
  }

  ul li::before {
    font-size: 3rem;
    top: 12px;
  }
}

@media (min-width: 1024px) {
  .button {
    padding: 0.3rem 2rem;
    font-size: 1rem;
    line-height: 24px;
    margin-top: 1rem;
    align-self: center;
  }
}

@media (min-width: 1440px) {
  .button {
    padding: 0.5rem 3rem;
    font-size: 1.5rem;
    line-height: 42px;
    margin-top: 1.5rem;
    align-self: flex-start;
  }
}

/* START HEADER */
header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  height: 90px;
  padding: 0 1rem;
}

header > a img {
  width: 180px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #000000;
  color: #000000;
  border-radius: 2px;
  transition: 0.3s ease;
}

header nav {
  display: flex;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  flex-direction: column;
  background-color: white;
  position: absolute;
  top: 90px;
  right: 0;
  z-index: 99;
  gap: 1rem;
  width: 100%;
  padding: 0 1rem;
}

header nav.active {
  padding: 1rem;
  max-height: 400px;
}

header nav a {
  position: relative;
  text-align: center;
  display: flex;
  height: 100%;
}

@media (min-width: 768px) {
  header {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  header {
    padding: 0 1rem;
  }

  header > a img {
    width: 200px;
  }

  header nav {
    max-height: unset;
    position: static;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    align-self: flex-end;
    flex: 1;
    margin-left: 1rem;
    height: 70px;
  }

  header nav a {
    position: relative;
    justify-content: center;
    align-items: center;
    max-width: 7rem;
  }

  header nav a.active::before {
    content: "";
    position: absolute;
    top: 0;
    height: 7px;
    width: 100%;
    background-color: var(--l-blue);
  }

  .hamburger {
    display: none;
  }
}

@media (min-width: 1440px) {
  header {
    padding: 0 2rem;
  }

  header > a img {
    width: initial;
  }

  header nav {
    margin-left: 2rem;
    height: 90px;
  }

  header nav a {
    font-size: 1.3rem;
    max-width: 12rem;
  }
}

@media (min-width: 1900px) {
  header nav a {
    font-size: 1.5rem;
  }
}
/* END HEADER */

/* START SHARED BACKGROUND */
.shared_background {
  background: url(img/post_falls_background.jpg);
}
/* START SHARED BACKGROUND */

/* START HERO IMAGE - SECTION 1 */
.hero_image {
  position: relative;
  line-height: 0;
  padding-top: 90px;
}

.hero_image img:last-of-type {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 170px;
}

.hero_image div {
  display: none;
  background-color: rgba(1, 85, 164, 0.85);
  border-radius: 20px;
  position: absolute;
  padding: 2rem;
  color: #ffffff;
  bottom: 5px;
  left: 5px;
  width: 380px;
}

.hero_image div strong {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 24px;
}

.hero_image div p {
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 24px;
}

@media (min-width: 768px) {
  .hero_image div {
    display: block;
  }

  .hero_image img:last-of-type {
    bottom: 40px;
    right: 30px;
    width: 300px;
  }
}

@media (min-width: 1440px) {
  .hero_image div {
    bottom: 32px;
    left: 64px;
    width: 564px;
  }

  .hero_image img:last-of-type {
    bottom: 90px;
    right: 50px;
    width: 568px;
  }

  .hero_image div strong {
    font-size: 2rem;
    line-height: 34px;
  }

  .hero_image div p {
    font-size: 1.75rem;
    line-height: 34px;
    margin-top: 1rem;
  }
}
/* END HERO IMAGE - SECTION 1 */

/* START POST FALLS DESCRIPTION - SECTION 2 */
.post_falls_description {
  background: url(img/post_falls_background.jpg);
  padding: 1rem 0 3rem;
}

.post_falls_description > div {
  width: 95%;
  margin: auto;
}

.post_falls_description h1 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--blue);
}

.post_falls_description h4 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  border-bottom: 1px solid #000000;
  padding-bottom: 0.5rem;
}

.post_falls_description strong {
  color: var(--blue);
  font-size: 1.125rem;
  font-weight: 700;
}

.post_falls_description p {
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .post_falls_description {
    padding: 3rem 0 6rem;
  }

  .post_falls_description > div {
    width: 85%;
  }

  .post_falls_description h1 {
    font-size: 3.75rem;
  }

  .post_falls_description h4 {
    font-size: 2.25rem;
    padding-bottom: 1.5rem;
  }

  .post_falls_description p {
    text-align: center;
    font-size: 1.5rem;
    line-height: 40px;
  }

  .post_falls_description strong {
    font-size: 1.75rem;
    line-height: 40px;
  }
}

@media (min-width: 1440px) {
  .post_falls_description {
    padding: 5rem 0 8rem;
  }

  .post_falls_description > div > div > img {
    width: 700px;
  }

  .post_falls_description p {
    margin: 2rem 4rem;
  }

  .post_falls_description > div > div > div p {
    text-align: left;
  }

  .post_falls_description > div > div {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1900px) {
  .post_falls_description > div > div > img {
    width: 100%;
  }

  .post_falls_description p {
    margin: 2rem 4rem 4rem;
  }
}
/* END POST FALLS DESCRIPTION - SECTION 2 */

/* START POST FALLS MAPS - SECTION 3 */
.post_falls_maps {
  background: url(img/city_hall_spring.png);
  background-color: var(--blue);
  background-size: cover;
  display: flex;
  justify-content: center;
}

.post_falls_maps img {
  position: relative;
  top: -10px;
  z-index: 9;
  width: 90%;
}

@media (min-width: 768px) {
  .post_falls_maps img {
    top: -40px;
  }
}

@media (min-width: 1440px) {
  .post_falls_maps img {
    top: -80px;
  }
}
/* END POST FALLS MAPS - SECTION 3 */

/* START EDUCATION, WORKFORCE, & TRANSPORTATION - SECTION 4 */
.education_workforce_transportation {
  margin: 1rem 0;
}

.education_workforce_transportation > div {
  background: url(img/workforce_education_transportation_background.png);
  background-color: #a0ddff;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.education_workforce_transportation > div:first-of-type,
.education_workforce_transportation > div:last-of-type {
  background-color: #c5ebff;
}

.education_workforce_transportation > div > div {
  width: 80%;
  margin: auto;
}

.education_workforce_transportation h2 {
  color: var(--blue);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 1rem 0 0;
  text-align: center;
}

.education_workforce_transportation > div > div > ul li {
  line-height: 22px;
}

.education_workforce_transportation > div > div > ul li::before {
  color: var(--blue);
}

.education_workforce_transportation > div > div > ul li:not(:last-of-type) {
  border-bottom: 1px solid black;
}

.education_workforce_transportation > div > div > div {
  background-color: var(--blue);
  border-radius: 30px;
  padding: 2rem;
  color: #ffffff;
  margin-top: 2rem;
}

.education_workforce_transportation > div > div > div h5 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 24px;
}

.education_workforce_transportation > div > div > div ul li {
  padding: 1rem 0 0 1.6rem;
  line-height: 20px;
  transition: transform 0.2s ease-out, text-shadow 0.2s ease-out;
}

.education_workforce_transportation > div > div > div ul a,
.education_workforce_transportation > div > div > div ul li::before {
  color: #ffffff;
}

.education_workforce_transportation > div > div > div ul li:hover {
  transform: translateY(-2px);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .education_workforce_transportation {
    display: flex;
    justify-content: space-between;
  }

  .education_workforce_transportation > div {
    flex: 0 0 33%;
  }

  .education_workforce_transportation h2 {
    text-align: left;
  }

  .education_workforce_transportation > div > div > div {
    padding: 1.5rem;
    margin-top: 0;
  }
}

@media (min-width: 1440px) {
  .education_workforce_transportation h2 {
    font-size: 2.75rem;
    margin-top: 2rem;
  }

  .education_workforce_transportation > div > div > ul li {
    font-size: 1.5rem;
    line-height: 40px;
  }

  .education_workforce_transportation > div > div > div {
    padding: 2rem;
    margin-top: 2rem;
  }

  .education_workforce_transportation > div > div > div h5 {
    font-size: 2.25rem;
    line-height: 42px;
  }

  .education_workforce_transportation > div > div > div ul li a {
    font-size: 1.25rem;
  }
}
/* END EDUCATION, WORKFORCE, & TRANSPORTATION - SECTION 4 */

/* START DEVELOPMENT OPPORTUNITIES - SECTION 5 */
.development_opportunities {
  background-color: var(--blue);
}

.development_opportunities > div:first-of-type {
  position: relative;
  line-height: 0;
}

.development_opportunities > div:first-of-type > img:first-of-type {
  width: 100%;
}

.development_opportunities > div:last-of-type {
  color: #ffffff;
  padding: 1rem;
}

.development_opportunities > div h2,
.development_opportunities > div h3 {
  font-size: 1.325rem;
  font-weight: 700;
}

.development_opportunities > div h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.development_opportunities > div ul li {
  font-weight: 500;
}

.development_opportunities > div ul li:not(:last-of-type) {
  border-bottom: 1px solid var(--l-blue);
}

.development_opportunities > div ul li::before {
  color: var(--l-blue);
}

.development_opportunities > div > div {
  background-color: #012d56e5;
  padding: 1.5rem;
  border-radius: 30px;
  margin-top: 2rem;
}

.development_opportunities > div > div h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.development_opportunities > div > div p {
  font-weight: 500;
}

/* FULLSCREEN OVERLAY */
#fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

/* Fullscreen image */
#fullscreen-overlay img {
  max-width: 95%;
  max-height: 95%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  cursor: default;
}

/* Fullscreen icon styling */
#fullscreen-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#fullscreen-icon:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .development_opportunities > div h2,
  .development_opportunities > div h3 {
    font-size: 3.125rem;
    line-height: 50px;
  }

  .development_opportunities > div h3 {
    font-size: 2.25rem;
    line-height: 42px;
  }

  .development_opportunities > div ul li {
    font-size: 1.375rem;
    line-height: 36px;
  }

  .development_opportunities > div > div h3 {
    font-size: 2.25rem;
    line-height: 42px;
    margin-bottom: 1rem;
  }

  .development_opportunities > div > div p {
    font-size: 1.375rem;
    line-height: 36px;
  }

  .development_opportunities > div > div {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .development_opportunities {
    display: flex;
    background: url(img/pleasant_view_aerial_map.png);
    background-color: var(--blue);
  }

  .development_opportunities > div:first-of-type {
    width: 60%;
  }

  .development_opportunities > div:last-of-type {
    width: 40%;
  }

  .development_opportunities > div:first-of-type > img:first-of-type {
    height: 100%;
  }

  .development_opportunities > div > div {
    margin-top: 0;
    padding: 1.5rem;
  }

  .development_opportunities > div h2,
  .development_opportunities > div h3 {
    font-size: 1.75rem;
    line-height: 42px;
  }

  .development_opportunities > div h3 {
    font-size: 1.5rem;
    line-height: 32px;
  }

  .development_opportunities > div ul li {
    font-size: 1rem;
    line-height: 24px;
  }

  .development_opportunities > div > div h3 {
    font-size: 1.25rem;
    line-height: 32px;
    margin-bottom: 0;
  }

  .development_opportunities > div > div p {
    font-size: 1rem;
    line-height: 24px;
  }
}

@media (min-width: 1440px) {
  .development_opportunities > div:last-of-type {
    padding: 1.5rem;
  }

  .development_opportunities > div > div {
    margin-top: 5rem;
    padding: 3rem;
  }

  .development_opportunities > div h2,
  .development_opportunities > div h3 {
    font-size: 3.125rem;
    line-height: 50px;
  }

  .development_opportunities > div h3 {
    font-size: 2.25rem;
    line-height: 42px;
  }

  .development_opportunities > div ul li {
    font-size: 1.375rem;
    line-height: 36px;
  }

  .development_opportunities > div > div h3 {
    font-size: 2.25rem;
    line-height: 42px;
    margin-bottom: 1rem;
  }

  .development_opportunities > div > div p {
    font-size: 1.375rem;
    line-height: 36px;
  }
}

@media (min-width: 1900px) {
  .development_opportunities > div:last-of-type {
    padding: 3rem 8rem 3rem 3rem;
  }
}
/* END DEVELOPMENT OPPORTUNITIES - SECTION 5 */

/* START TARGET INDUSTRIES - SECTION 6 */
.target_industries h2 {
  color: var(--blue);
  text-align: center;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 50px;
  padding: 1rem 0;
}

.target_industries > div {
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.target_industries > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 1rem;
  border: 2.5px solid var(--blue);
  border-radius: 25px;
  width: 18rem;
}

.target_industries > div > div strong {
  color: var(--blue);
  font-weight: 700;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .target_industries {
    width: 90%;
    margin: auto;
  }

  .target_industries h2 {
    font-size: 2.75rem;
    padding: 5rem 0 3rem;
  }

  .target_industries > div {
    padding-bottom: 4rem;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
  }

  .target_industries > div > div {
    flex: 0 0 40%;
    margin: 0;
    width: unset;
  }

  .target_industries > div > div strong {
    font-size: 1.625rem;
    line-height: 30px;
  }
}

@media (min-width: 1024px) {
  .target_industries > div {
    border-bottom: 1px solid;
  }

  .target_industries > div > div {
    flex: 0 0 30%;
  }
}

@media (min-width: 1920px) {
  .target_industries > div > div {
    flex: 0 0 15%;
  }
}
/* END TARGET INDUSTRIES - SECTION 6 */

/* START COST OF DOING BUSINESS - SECTION 7 */
.cost_doing_business > div > h2 {
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.cost_doing_business > div > ul li {
  font-weight: 500;
  margin: 0 2rem;
}

.cost_doing_business > div > ul li::before {
  color: var(--blue);
}

@media (min-width: 768px) {
  .cost_doing_business > div > h2 {
    font-size: 2.75rem;
    line-height: 50px;
    margin: 1rem;
  }

  .cost_doing_business > div > ul li {
    font-size: 1.5rem;
    line-height: 40px;
    margin: 0;
  }

  .cost_doing_business > div {
    margin: 0 3rem;
  }
}

@media (min-width: 1024px) {
  .cost_doing_business {
    padding: 4rem 0;
    width: 90%;
    margin: auto;
  }
}

@media (min-width: 1440px) {
  .cost_doing_business {
    display: flex;
  }

  .cost_doing_business > img {
    width: 50%;
  }

  .cost_doing_business > div > h2 {
    text-align: left;
    margin: 0;
  }

  .cost_doing_business > div > h2 {
    font-size: 2rem;
    line-height: 42px;
    margin: 0;
  }

  .cost_doing_business > div > ul li {
    font-size: 1rem;
    line-height: 24px;
    margin: 0;
  }
}

@media (min-width: 1900px) {
  .cost_doing_business > div > h2 {
    font-size: 2.75rem;
    line-height: 50px;
  }

  .cost_doing_business > div > ul li {
    font-size: 1.5rem;
    line-height: 40px;
  }
}
/* END COST OF DOING BUSINESS - SECTION 7 */

/* START BY THE NUMBERS - SECTION 8 */
.post_falls_stats {
  background-color: #e1f4ff;
  padding: 1rem 0;
}

.post_falls_stats > h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
  margin-bottom: 1rem;
}

.post_falls_stats > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 3.4px solid var(--l-blue);
  padding: 1rem;
  border-radius: 25px;
  position: relative;
  margin: 5rem 1rem;
}

.post_falls_stats > div > div > img {
  position: absolute;
  top: -50px;
  background-color: #e1f4ff;
  padding: 0 0.8rem;
  z-index: 99;
}

.post_falls_stats > div > div:last-of-type > img {
  top: -30px;
}

.post_falls_stats > div > div:nth-child(3) > img {
  padding: 0 2rem;
}

.post_falls_stats > div > div > h4,
.post_falls_stats > div > div > h1,
.post_falls_stats > div > div > div > h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.8rem 0;
  width: 100%;
  text-align: center;
}

.post_falls_stats > div > div > h4:first-of-type {
  border-bottom: 1px solid #000000;
}

.post_falls_stats > div > div > h4 > span {
  font-size: 0.75rem;
}

.post_falls_stats > div > div > h1 {
  font-size: 1.75rem;
  padding: 0;
}

.post_falls_stats > div > div:nth-child(3) > h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  gap: 1rem;
}

.post_falls_stats > div > div > h1 > span {
  font-size: 0.75rem;
  color: #000000;
  text-align: left;
  width: 6.8rem;
}

.post_falls_stats > div > div > p {
  font-size: 0.5rem;
  font-weight: 600;
  border-top: 1px solid #000000;
  width: 100%;
  text-align: center;
  padding-top: 0.8rem;
}

.post_falls_stats > div > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.post_falls_stats > div > div > div > h3 {
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
}

.post_falls_stats > div > div > div > h3 > span {
  font-size: 0.625rem;
  color: #000000;
}

@media (min-width: 768px) {
  .post_falls_stats {
    padding: 3rem 0;
  }

  .post_falls_stats > h2 {
    font-size: 2.75rem;
    line-height: 50px;
    margin-bottom: 5rem;
  }

  .post_falls_stats > div {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .post_falls_stats > div > div {
    padding: 2rem 2rem 1rem;
    flex: 1 1 0;
    margin: 1rem 0;
  }

  .post_falls_stats > div > div:nth-child(3) > h1 {
    width: 100%;
  }

  .post_falls_stats > div > div > h4,
  .post_falls_stats > div > div > h1,
  .post_falls_stats > div > div > div > h3 {
    font-size: 1.5rem;
    padding-bottom: 0.8rem;
  }

  .post_falls_stats > div > div > h4 > span {
    font-size: 1.125rem;
  }

  .post_falls_stats > div > div > h1 {
    font-size: 3.125rem;
    padding: 0;
    width: 100%;
  }

  .post_falls_stats > div > div > h1 > span {
    font-size: 1rem;
    flex-shrink: 1;
    width: auto;
  }

  .post_falls_stats > div > div:last-of-type {
    flex-grow: 1.5;
  }

  .post_falls_stats > div > div > div > h3 {
    font-size: 2.125rem;
  }

  .post_falls_stats > div > div > div > h3 > span {
    font-size: 1rem;
    line-height: 16px;
  }

  .post_falls_stats > div > div > p {
    font-size: 0.875rem;
  }

  .post_falls_stats > div > div > div {
    gap: 1.8rem;
  }
}
/* END BY THE NUMBERS - SECTION 8 */

/* START CONTACT US - SECTION 9 */
.contact_us {
  background-color: var(--blue);
  position: relative;
  color: #ffffff;
  padding: 1rem;
  height: 265px;
}

.contact_us img {
  position: absolute;
}

.contact_us > img {
  top: 0;
  right: 0;
  width: 360px;
}

.contact_us > a > img {
  right: 5px;
  bottom: 10px;
  width: 200px;
}

.contact_us h2 {
  font-size: 1.25rem;
  z-index: 9;
  position: relative;
}

.contact_us p {
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 9;
  position: relative;
  width: 55%;
}

.contact_us p:last-of-type {
  margin-top: 1rem;
  width: 50%;
}

.contact_us p > a {
  color: #ffffff;
}

@media (min-width: 481px) {
  .contact_us > a > img {
    right: 160px;
    bottom: 30px;
    width: 250px;
  }
}

@media (min-width: 768px) {
  .contact_us {
    height: 369px;
  }

  .contact_us > img {
    width: 500px;
  }

  .contact_us > a > img {
    right: 150px;
    bottom: 50px;
    width: 300px;
  }

  .contact_us h2 {
    font-size: 2.125rem;
  }

  .contact_us p {
    font-size: 1.25rem;
    line-height: 24px;
    color: var(--l-blue);
  }

  .contact_us p:last-of-type {
    margin-top: 5rem;
    width: 40%;
  }
}

@media (min-width: 1024px) {
  .contact_us {
    height: 475px;
    padding: 3rem;
  }

  .contact_us > img {
    height: 100%;
    width: auto;
  }

  .contact_us > a > img {
    right: 300px;
    bottom: 20px;
    width: 400px;
  }

  .contact_us p:last-of-type {
    margin-top: 5rem;
    width: 30%;
  }
}

@media (min-width: 1440px) {
  .contact_us {
    height: 595px;
    padding: 5rem;
  }

  .contact_us h2 {
    font-size: 3.125rem;
  }

  .contact_us p {
    font-size: 2.125rem;
    line-height: 44px;
  }

  .contact_us > a > img {
    right: 350px;
    bottom: 80px;
    width: 500px;
  }

  .contact_us p:last-of-type {
    margin-top: 4rem;
    width: 35%;
  }
}

@media (min-width: 1900px) {
  .contact_us > a > img {
    right: 500px;
    bottom: 75px;
    width: 657px;
  }

  .contact_us p:last-of-type {
    margin-top: 8rem;
    width: 25%;
  }
}
/* END CONTACT US - SECTION 9 */

/* START CONTACT FORM - SECTION 10 */
.contact_form {
  padding: 1rem 0.5rem;
  background: url(img/post_falls_background.jpg);
}

.contact_form > div {
  padding: 1rem;
  background-color: #e3e3e3;
  border-radius: 40px;
}

.contact_form > div > div h2 {
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 600;
}

.contact_form > div > div p {
  font-weight: 500;
}

.contact_form img {
  margin: 1rem 0;
}

.contact_form > div > iframe {
  width: 100%;
}

@media (min-width: 768px) {
  .contact_form {
    padding: 2rem 3rem;
  }

  .contact_form > div {
    padding: 2rem;
  }

  .contact_form > div > div h2 {
    font-size: 2.5rem;
    line-height: 31px;
  }

  .contact_form > div > div p {
    font-size: 1.125rem;
    line-height: 24px;
    margin: 1rem 0;
  }
}

@media (min-width: 1440px) {
  .contact_form > div {
    padding: 5rem;
    display: flex;
    justify-content: space-between;
  }

  .contact_form > div > div,
  .contact_form > div > iframe {
    width: 45%;
  }

  .contact_form > div > div p {
    width: 75%;
  }

  .contact_form > div > div:last-of-type {
    width: 1px;
    height: auto;
    background-color: #000000;
  }
}
/* END CONTACT FORM - SECTION 10 */

/* START FOOTER */
footer {
  background-color: #76777a;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  text-align: center;
}

footer > p {
  font-size: 0.75rem;
}

footer > div {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  footer {
    flex-direction: row;
    gap: 2rem;
    text-align: left;
  }

  footer > p {
    font-size: 1rem;
  }
}

@media (min-width: 1440px) {
  footer {
    gap: 5rem;
  }

  footer > p {
    font-size: 1.125rem;
  }
}
/* END FOOTER */

/* Wiggle animation */
@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(2deg);
  }
  30% {
    transform: rotate(-2deg);
  }
  45% {
    transform: rotate(1deg);
  }
  60% {
    transform: rotate(-1deg);
  }
  75% {
    transform: rotate(0.5deg);
  }
  90% {
    transform: rotate(-0.5deg);
  }
}

.button:hover {
  animation: wiggle 0.6s ease-in-out;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .swoop-in-left,
  .swoop-in-right {
    opacity: 0;
    transition: all 0.6s ease-out;
    will-change: transform, opacity;
    position: relative;
  }

  .swoop-in-left {
    transform: translateX(-500px);
  }
  .swoop-in-right {
    transform: translateX(500px);
  }

  .swoop-in-left.active,
  .swoop-in-right.active {
    opacity: 1;
    transform: translateX(0);
  }
}
