*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 1.2rem;
}

.footer-link {
  font-size: 1.8rem;
  font-style: normal;
  text-decoration: none;
  line-height: 1.6;
  color: #555;
}

.logo-col {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 15rem;
}

.logo {
  width: 100%;
  height: auto;
}

.address-col {
  padding-top: 2.4rem;
}

.copyright {
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
}

.form-background {
  background-color: #5b2a86;
  display: flex;
  justify-content: center;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.form-container {
  border-radius: 2.4rem;
  background-color: #fff;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  width: 75%;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
  padding-left: 5rem;
  padding-right: 5rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  border: none;
  color: inherit;
  background-color: #cba6c3;
  border-radius: 9px;
  box-shadow: #000, 0.01;
}

.cta-form input::placeholder {
  color: #983275;
}

.btn {
  width: 35%;
  height: 3rem;
  cursor: pointer;
  box-shadow: #000, 0.01;
  border: 0.5rem solid, #000;
  border-radius: 9px;
}

.input {
  cursor: pointer;
  width: 150%;
}

textarea {
  height: 15rem;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  border: none;
  color: inherit;
  background-color: #cba6c3;
  border-radius: 9px;
  box-shadow: rgba(0, 0, 0, 0.01);
  justify-self: center;
}

textarea::placeholder {
  vertical-align: top;
  color: #983275;
}

.footer {
  max-width: 100%;
  padding: 2rem 0;
  background-color: #f8f8f8;
  color: #555;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
.footer .logo-column {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .logo-column .footer-logo {
  display: block;
}
.footer .logo-column .logo {
  height: 100px;
  max-height: 100%;
}
.footer .content-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.footer .content-column .contacts {
  font-size: 1.6rem;
}
.footer .content-column .contacts .contact-label {
  font-weight: bold;
  margin-bottom: 0.8rem;
  color: #333;
}
.footer .content-column .contacts .email {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #333;
}
.footer .content-column .contacts .email ion-icon {
  font-size: 1.8rem;
  color: #767676;
}
.footer .content-column .contacts .email .footer-link {
  font-size: 1.6rem;
  color: #555;
  text-decoration: none;
}
.footer .content-column .contacts .email .footer-link:hover {
  color: #333;
}
.footer .content-column .social-links {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  padding: 0;
  justify-content: center;
}
.footer .content-column .social-links .footer-link {
  color: #555;
  font-size: 2.4rem;
}
.footer .content-column .social-links .footer-link:hover {
  color: #333;
}
.footer .content-column .social-links .footer-link ion-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: #767676;
}
.footer .content-column .social-links .footer-link ion-icon:hover {
  color: #555;
}
.footer .content-column .copyright {
  font-size: 1.2rem;
  color: #767676;
  text-align: center;
}
.footer .content-column .copyright .year {
  font-weight: bold;
}

@media (max-width: 75em) {
  .footer-grid {
    grid-template-columns: 1fr 2fr;
  }
  .logo {
    height: 80px;
  }
}
@media (max-width: 48em) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    text-align: center;
  }
  .logo-column,
  .content-column {
    grid-column: 1/-1;
    justify-content: center;
  }
  .contacts {
    font-size: 1.4rem;
  }
  .social-links {
    justify-content: center;
  }
}
@media (max-width: 34em) {
  .contacts {
    font-size: 1.2rem;
  }
  .social-links {
    gap: 1.2rem;
  }
  .logo {
    height: 60px;
  }
}
.gallery-header,
.gallery-blurb {
  background-color: #fff;
}

/* Gallery grid and thumbnails */
.gallery {
  grid-column: full-start/full-end;
  display: grid;
  grid-template: repeat(17, 5vw)/repeat(8, 1fr);
  grid-gap: 1.5rem;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery__item {
  overflow: hidden;
  display: block;
  width: 100%;
  cursor: pointer;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.1);
}

/* Popup styling */
#popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#popup-container:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

#large-image-container {
  position: relative;
  width: 90%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#large-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
#large-image.loading {
  opacity: 0.5;
}

/* Navigation arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

#arrow-left {
  left: 20px;
}

#arrow-right {
  right: 20px;
}

/* Close button */
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.close-button:hover {
  background: rgba(255, 255, 255, 0.2);
}
.close-button::before, .close-button::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: white;
}
.close-button::before {
  transform: rotate(45deg);
}
.close-button::after {
  transform: rotate(-45deg);
}

/* Loading indicator */
.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
  display: none;
}
.loading .loading-spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.gallery__item--1 {
  grid-row: 1/span 2;
  grid-column: 1/span 2;
}

.gallery__item--2 {
  grid-row: 1/span 4;
  grid-column: 5/span 3;
}

.gallery__item--3 {
  grid-row: 1/span 3;
  grid-column: 3/span 2;
}

.gallery__item--4 {
  grid-row: 9/span 3;
  grid-column: 3/span 1;
}

.gallery__item--5 {
  grid-row: 3/span 3;
  grid-column: 1/span 2;
}

.gallery__item--6 {
  grid-row: 4/span 2;
  grid-column: 3/span 2;
}

.gallery__item--7 {
  grid-row: 16/span 2;
  grid-column: 3/span 1;
}

.gallery__item--8 {
  grid-row: 16/span 2;
  grid-column: 1/span 2;
}

.gallery__item--9 {
  grid-row: 3/span 3;
  grid-column: 8/span 1;
}

.gallery__item--10 {
  grid-row: 6/span 3;
  grid-column: 1/span 1;
}

.gallery__item--11 {
  grid-row: 6/span 3;
  grid-column: 2/span 2;
}

.gallery__item--12 {
  grid-row: 6/span 2;
  grid-column: 4/span 1;
}

.gallery__item--13 {
  grid-row: 5/span 3;
  grid-column: 5/span 3;
}

.gallery__item--14 {
  grid-row: 6/span 2;
  grid-column: 8/span 1;
}

.gallery__item--15 {
  grid-row: 1/span 1;
  grid-column: 8/span 1;
}

.gallery__item--16 {
  grid-row: 2/span 1;
  grid-column: 8/span 1;
}

.gallery__item--17 {
  grid-row: 14/span 2;
  grid-column: 1/span 1;
}

.gallery__item--18 {
  grid-row: 8/span 2;
  grid-column: 4/span 2;
}

.gallery__item--19 {
  grid-row: 8/span 2;
  grid-column: 6/span 1;
}

.gallery__item--20 {
  grid-row: 8/span 3;
  grid-column: 7/span 2;
}

.gallery__item--21 {
  grid-row: 9/span 3;
  grid-column: 1/span 2;
}

.gallery__item--22 {
  grid-row: 10/span 2;
  grid-column: 4/span 1;
}

.gallery__item--23 {
  grid-row: 10/span 2;
  grid-column: 5/span 2;
}

.gallery__item--24 {
  grid-row: 11/span 2;
  grid-column: 7/span 1;
}

.gallery__item--25 {
  grid-row: 11/span 2;
  grid-column: 8/span 1;
}

.gallery__item--26 {
  grid-row: 12/span 1;
  grid-column: 6/span 1;
}

.gallery__item--27 {
  grid-row: 12/span 3;
  grid-column: 5/span 2;
}

.gallery__item--28 {
  grid-row: 12/span 2;
  grid-column: 1/span 1;
}

.gallery__item--29 {
  grid-row: 12/span 2;
  grid-column: 2/span 2;
}

.gallery__item--30 {
  grid-row: 12/span 3;
  grid-column: 4/span 1;
}

.gallery__item--31 {
  grid-row: 1/span 2;
  grid-column: 8/span 1;
}

.gallery__item--32 {
  grid-row: 16/span 2;
  grid-column: 7/span 2;
}

.gallery__item--33 {
  grid-row: 15/span 3;
  grid-column: 4/span 1;
}

.gallery__item--34 {
  grid-row: 14/span 2;
  grid-column: 2/span 2;
}

.gallery__item--35 {
  grid-row: 15/span 3;
  grid-column: 5/span 2;
}

.gallery__item--36 {
  grid-row: 13/span 3;
  grid-column: 7/span 2;
}

.gallery__item--37 {
  grid-row: 15/span 2;
  grid-column: 1/2;
}

@media (max-width: 56.25em) {
  .gallery__item {
    grid-column: span 1;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-gap: 1rem;
  }
  .gallery .gallery__item--1,
  .gallery .gallery__item--5,
  .gallery .gallery__item--8,
  .gallery .gallery__item--21,
  .gallery .gallery__item--28,
  .gallery .gallery__item--37,
  .gallery .gallery__item--2,
  .gallery .gallery__item--3,
  .gallery .gallery__item--4,
  .gallery .gallery__item--6,
  .gallery .gallery__item--7,
  .gallery .gallery__item--9,
  .gallery .gallery__item--10,
  .gallery .gallery__item--11,
  .gallery .gallery__item--12,
  .gallery .gallery__item--13,
  .gallery .gallery__item--14,
  .gallery .gallery__item--15,
  .gallery .gallery__item--16,
  .gallery .gallery__item--17,
  .gallery .gallery__item--18,
  .gallery .gallery__item--19,
  .gallery .gallery__item--20,
  .gallery .gallery__item--22,
  .gallery .gallery__item--23,
  .gallery .gallery__item--24,
  .gallery .gallery__item--25,
  .gallery .gallery__item--26,
  .gallery .gallery__item--27,
  .gallery .gallery__item--29,
  .gallery .gallery__item--30,
  .gallery .gallery__item--31,
  .gallery .gallery__item--32,
  .gallery .gallery__item--33,
  .gallery .gallery__item--34,
  .gallery .gallery__item--35,
  .gallery .gallery__item--36 {
    grid-row: auto;
    grid-column: span 1;
  }
}
@media (max-width: 48em) {
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 1rem;
  }
  .gallery__item {
    grid-column: span 1;
  }
  .gallery__item--1,
  .gallery__item--2,
  .gallery__item--3,
  .gallery__item--4,
  .gallery__item--5,
  .gallery__item--6,
  .gallery__item--7,
  .gallery__item--8,
  .gallery__item--9,
  .gallery__item--10,
  .gallery__item--11,
  .gallery__item--12,
  .gallery__item--13,
  .gallery__item--14,
  .gallery__item--15,
  .gallery__item--16,
  .gallery__item--17,
  .gallery__item--18,
  .gallery__item--19,
  .gallery__item--20,
  .gallery__item--21,
  .gallery__item--22,
  .gallery__item--23,
  .gallery__item--24,
  .gallery__item--25,
  .gallery__item--26,
  .gallery__item--27,
  .gallery__item--28,
  .gallery__item--29,
  .gallery__item--30,
  .gallery__item--31,
  .gallery__item--32,
  .gallery__item--33,
  .gallery__item--34,
  .gallery__item--35,
  .gallery__item--36,
  .gallery__item--37 {
    grid-row: auto;
    grid-column: 1/-1;
  }
}
.header {
  color: #5b2a86;
  background-color: #ffd23f;
  z-index: 1;
  width: 100%;
  font-size: 10rem;
}
.header__logo {
  height: 10rem;
  padding: 2rem;
}

@media (max-width: 75em) {
  .header {
    color: #5b2a86;
    background-color: #ffd23f;
    z-index: 1;
    width: 100%;
    font-size: 8rem;
  }
  .header__logo {
    height: 8rem;
    padding: 1.5rem;
  }
}
@media (max-width: 56.25em) {
  .header {
    color: #5b2a86;
    background-color: #ffd23f;
    z-index: 1;
    width: 100%;
    font-size: 6rem;
  }
  .header__logo {
    height: 6rem;
    padding: 1.5rem;
  }
}
@media (max-width: 48em) {
  .header {
    color: #5b2a86;
    background-color: #ffd23f;
    z-index: 1;
    width: 100%;
    font-size: 5rem;
  }
  .header__logo {
    height: 6rem;
    padding: 1.5rem;
  }
}
@media (max-width: 34em) {
  .header {
    color: #5b2a86;
    background-color: #ffd23f;
    z-index: 1;
    width: 100%;
    font-size: 3rem;
  }
  .header__logo {
    height: 5rem;
    padding: 1.5rem;
  }
}
body {
  color: #424242; /* Dark grey text color for readability */
  padding: 3rem;
  background-color: #fff;
  /* STICKY NAVIGATION */
}
body .sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.3);
}
body .sticky .section-hero {
  margin-top: 9.6rem;
}
body .container {
  width: 100%;
}
body .composition__photo {
  width: 100%;
  height: auto;
}

.grid1 {
  display: grid;
  grid-template-columns: 30fr 70fr;
  grid-template-rows: 1fr;
  margin-bottom: 5rem;
}

.grid2 {
  display: grid;
  grid-template-columns: 70fr 30fr;
  grid-template-rows: 1fr;
  margin-bottom: 5rem;
}

.image-container {
  width: 100%; /* Set a width for the container */
  height: 100%; /* Set a height for the container */
  overflow: hidden; /* Hide any overflow caused by scaling the image */
  position: relative;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the div without stretching */
  transition: transform 1s ease; /* Add transition for smooth effect */
}

.image-container:hover img {
  transform: scale(1.1); /* Scale the image on hover (grow slightly) */
}

.chat-1 {
  background-color: #ffd23f;
}

.chat-2 {
  background-color: #f9ecbe;
}

@media (max-width: 75em) {
  .grid1 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .grid2 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .chat {
    height: fit-content;
    padding-bottom: 4rem;
    grid-row: 1;
  }
  .image-container {
    grid-row: 2;
  }
}
.kimg {
  width: 100%;
  height: auto;
  box-shadow: 5px 5px 10px #000;
}

.img-container {
  width: 65%;
  margin-left: 5rem;
  margin-right: 5rem;
}

.cont-cont {
  width: 100%;
  display: flex;
  justify-content: center;
}

.road {
  position: relative;
  width: 100%;
  height: 100px;
  background-color: #ffd23f;
}

#monkeyCar {
  z-index: 2;
  position: absolute;
  top: 2px; /* Adjust this to your desired vertical position */
  left: -200px; /* Start off-screen */
  width: 150px; /* Adjust to the size of your image */
}

@media (max-width: 75em) {
  #monkeyCar {
    height: 12rem;
    width: auto;
  }
}
@media (max-width: 56.25em) {
  #monkeyCar {
    height: 10rem;
    width: auto;
  }
}
@media (max-width: 48em) {
  #monkeyCar {
    height: 8rem;
    width: auto;
  }
}
@media (max-width: 34em) {
  #monkeyCar {
    height: 6rem;
    width: auto;
  }
}
.main-nav {
  display: flex;
  background-color: #ffd23f;
  justify-content: space-between;
  /* for sticky nav*/
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensures the navbar is above other content */
}

.main-nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #5b2a86;
  font-weight: 700;
  font-size: 2.4rem;
  transition: all 0.3s;
  border-radius: 9px;
  padding: 1.2rem 2.4rem;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #fff;
  background-color: #5b2a86;
  padding: 1.2 rem 2.4rem;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #5b2a86;
}

.main-nav-link.nav-cta:hover {
  background-color: #cba6c3;
  color: #5b2a86;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name=close-outline] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky.main-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #ffd23f;
  z-index: 999;
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
  padding: 1rem;
  z-index: 1001;
}

@media (max-width: 75em) {
  .main-nav.sticky {
    z-index: 1002;
  }
  .main-nav {
    padding: 1rem;
    max-width: 100%;
    position: sticky;
  }
  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 2rem;
    padding: 1rem 1.6rem;
  }
  .header__logo {
    height: 6rem;
  }
}
@media (max-width: 75em) and (max-width: 56.25em) {
  .btn-mobile-nav {
    display: block;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .main-nav {
    position: relative;
    padding: 0.5rem;
    position: sticky;
  }
  .main-nav-list {
    display: none;
    position: absolute;
    background-color: #ffd23f;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .main-nav-list.nav-open {
    display: flex;
  }
  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 1.8rem;
    padding: 0.8rem 1.6rem;
    width: 100%;
    text-align: center;
  }
  .sticky.main-nav {
    height: auto;
    min-height: 7rem;
  }
  .header__logo {
    height: 5rem;
  }
}
@media (max-width: 75em) and (max-width: 34em) {
  .main-nav {
    position: sticky;
  }
  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 1.6rem;
    padding: 0.6rem 1.2rem;
  }
  .header__logo {
    height: 4rem;
  }
}
/* Additional styles */
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #424242;
}

h1 {
  text-align: center;
  font-size: 12rem;
}

h2 {
  text-align: center;
  padding-bottom: 2rem;
  color: #5b2a86;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 8rem;
}

h3 {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: #5b2a86;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 4rem;
}

p {
  text-align: center;
  color: #424242; /* Red headers for energy */
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.blurb {
  text-align: center; /* Center-aligns the text and inline elements within the div */
  margin: 0 auto; /* Ensures the div itself is centered if it has a specific width */
  max-width: 600px; /* Optional: Limits the width of the blurb for better readability */
}

.blurb ul {
  list-style-position: inside; /* Ensures the list bullets are inside the content area */
  padding-left: 0; /* Removes default padding for the list */
  text-align: left; /* Aligns list items to the left within the centered container */
  display: inline-block; /* Allows the list to be treated as a block inside the centered container */
}

.chat__link:link, .chat__link:visited {
  display: inline-block;
  font-size: 4rem;
  padding: 1rem 2rem;
  color: #5b2a86;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s;
  color: #5b2a86;
  font-weight: bold;
}
.chat__link:hover, .chat__link:active {
  background-position: 100%;
  color: #5b2a86;
  transform: translateY(1rem);
}

.evblurb,
.cirblurb,
.wrkspblurb,
.exblurb {
  display: flex;
  justify-content: center;
  font-size: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-weight: bold;
  color: #424242;
  width: 100%;
  text-align: justify;
}

@media (max-width: 75em) {
  body {
    font-family: "Lato", sans-serif;
    font-weight: 380;
    /*font-size: 16px;*/
    line-height: 1.5;
    color: #424242;
  }
  h1 {
    text-align: center;
    font-size: 10rem;
  }
  h2 {
    text-align: center;
    padding-bottom: 1.8rem;
    color: #5b2a86;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 7rem;
  }
  h3 {
    text-align: center;
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
    color: #5b2a86;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 3.5rem;
  }
  p {
    text-align: center;
    color: #424242; /* Red headers for energy */
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.8rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
  .blurb {
    text-align: center; /* Center-aligns the text and inline elements within the div */
    margin: 0 auto; /* Ensures the div itself is centered if it has a specific width */
    max-width: 600px; /* Optional: Limits the width of the blurb for better readability */
  }
  .blurb ul {
    list-style-position: inside; /* Ensures the list bullets are inside the content area */
    padding-left: 0; /* Removes default padding for the list */
    text-align: left; /* Aligns list items to the left within the centered container */
    display: inline-block; /* Allows the list to be treated as a block inside the centered container */
  }
  .chat__link:link, .chat__link:visited {
    display: inline-block;
    font-size: 3.5rem;
    padding: 1rem 2rem;
    color: #5b2a86;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s;
    color: #5b2a86;
    font-weight: bold;
  }
  .chat__link:hover, .chat__link:active {
    background-position: 100%;
    color: #5b2a86;
    transform: translateY(1rem);
  }
  .evblurb,
  .cirblurb,
  .wrkspblurb,
  .exblurb {
    display: flex;
    justify-content: center;
    font-size: 2.8rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-weight: bold;
    color: #424242;
    width: 100%;
    text-align: justify;
  }
}
@media (max-width: 56.25em) {
  .head2 {
    font-size: 6rem;
  }
}
@media (max-width: 48em) {
  .head2 {
    font-size: 5rem;
  }
}
@media (max-width: 34em) {
  .head2 {
    font-size: 4rem;
  }
}
.u-center-text {
  text-align: center !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
}

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