* {
  margin: 0;
  padding: 0;
}

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

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-size: cover;
  display: grid;
  grid-template-rows: repeat(6, min-content);
  grid-template-columns: [full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 16rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}
a:hover {
  color: white;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #6a0dad, #0fafdb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold; /* Optional */
}

.section-content {
  text-align: center;
  font-size: 1.5rem;
  max-width: 60rem;
  margin: 0 1.5rem;
}

button,
a {
  opacity: 0;
  transform: translate(0, 1.5rem);
  transition: all 0.5s ease;
}

.lazy-load-up--active {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.5s ease;
}

svg {
  opacity: 0;
  transform: translate(0, -1.5rem);
  transition: all 0.5s ease;
}

.lazy-load-down--active {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.5s ease;
}

h1,
h2,
h3,
h4,
.navbar-logo {
  opacity: 0;
  transform: translate(-1.5rem, 0);
  transition: all 0.5s ease;
}

.lazy-load-left--active {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.5s ease;
}

p,
li {
  opacity: 0;
  transform: translate(1.5rem, 0);
  transition: all 0.5s ease;
}

.lazy-load-right--active {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 0.5s ease;
}

.footer {
  grid-row: 15;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  background: linear-gradient(150deg, rgb(106, 13, 173) 22%, rgb(0, 128, 128) 80%);
  background-size: 200%;
}
.footer__top-container {
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 1.5rem;
}
.footer__top-container--title {
  font-size: 3rem;
  background: linear-gradient(135deg, #6a0dad, #0fafdb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.footer__top-container--description {
  font-size: 1.5rem;
  margin: 2rem 0;
  max-width: 60rem;
}
.footer__top-container__link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__top-container__link-container--link {
  width: 35rem;
  padding: 1.5rem;
  border-radius: 4rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  background: #212121;
  display: flex;
  align-items: center;
  box-shadow: 0 0 1rem black;
  transition: all 0.3s ease-in-out;
}
.footer__top-container__link-container--link:hover {
  box-shadow: none;
}
.footer__top-container__link-container--icon {
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
}
.footer__bottom-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  margin-top: 10rem;
}
.footer__bottom-container--logo {
  font-size: 3rem;
  font-weight: 900;
  color: white;
}
.footer__bottom-container__links-container {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin-bottom: 3rem;
}
.footer__bottom-container__links-container--link {
  margin: 0 0.7rem;
}
.footer__bottom-container--copyright {
  color: rgb(180, 180, 180);
}
.footer__bottom-container--author {
  color: rgb(180, 180, 180);
}

/* Navigation Styles */
.navbar { /* for Safari */
  position: sticky;
  top: 0; /* Ensure the top value is set */
  z-index: 10000;
  grid-row: 1;
  grid-column: full-start/full-end;
  background: linear-gradient(135deg, rgba(106, 13, 173, 0.7) 22%, rgba(0, 128, 128, 0.7) 80%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
  height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-weight: 800;
  font-size: 2rem;
  margin-left: 1rem;
  color: white;
  white-space: nowrap;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 1.5rem;
}

.navbar-toggle span {
  background-color: #fff;
  height: 6px;
  width: 6.5px;
  margin: 3px 0;
  border-radius: 5rem;
}

.navbar-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.navbar-links a {
  font-size: 1.5rem;
  font-weight: 900;
  margin-right: 2rem;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Content Styles */
.content {
  padding: 20px;
  text-align: center;
}

.navbar-icon {
  color: rgb(180, 180, 180);
  width: 2rem;
  height: 2rem;
  transition: all 0.3s ease;
}
.navbar-icon:hover {
  color: white;
}

/* Media Query for Responsive Navigation */
@media screen and (max-width: 768px) {
  .navbar-toggle {
    display: flex;
  }
  .navbar-links {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    background: linear-gradient(75deg, rgba(106, 13, 173, 0.8) 22%, rgba(0, 128, 128, 0.8) 80%);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding-left: 1.3rem;
    z-index: 1;
    transition: all 0.5s ease-in-out;
  }
  .navbar-links.active {
    max-height: 100vh;
  }
  .navbar-links li {
    text-align: center;
    padding: 10px 0;
  }
}
.header {
  grid-row: 1;
  grid-column: full-start/full-end;
  height: 100vh;
  background-image: url("../src/img/header-copy.jpg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 600px) {
  .header {
    background-attachment: scroll;
  }
}
.header__overlay-container {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 1.5rem;
}
.header__overlay-container--title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
}
.header__overlay-container--content {
  text-align: center;
  font-size: 1.7rem;
  color: white;
  margin: 2.5rem 0;
  font-weight: 600;
  max-width: 60rem;
}
.header__overlay-container--button {
  background: linear-gradient(135deg, #6a0dad, #008080);
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 800;
  padding: 1.5rem;
  border-radius: 5rem;
  color: white;
  box-shadow: 0 0 1rem black;
  background-size: 100%;
  background-position: left;
  transition: all 0.5s ease;
}
.header__overlay-container--button:hover {
  box-shadow: none;
  background-size: 170%;
  background-position: right;
}

.about {
  grid-row: 1;
  grid-column: full-start/full-end;
  height: 55rem;
  background: linear-gradient(135deg, rgb(106, 13, 173) 22%, rgb(0, 128, 128) 80%);
}
.about__overlay {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  color: white;
}
.about__overlay--title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
}
.about__overlay--descriptor {
  text-align: center;
  font-size: 3rem;
  max-width: 80rem;
  font-weight: 900;
}

.section-one {
  grid-row: 2;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  padding: 2.5rem;
}
.section-one__card-container {
  width: 100%;
  max-width: 50rem;
  height: 30rem;
  margin: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease-in-out;
}
.section-one__card-container:hover {
  box-shadow: none;
}
.section-one__card-container:nth-child(1) {
  background-image: url("../src/img/chat.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-one__card-container:nth-child(2) {
  background-image: url("../src/img/path.jpg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-one__card-container:nth-child(3) {
  background-image: url("../src/img/blog.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-one__card-container:nth-child(4) {
  background-image: url("../src/img/videos.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-one__card-container__overlay {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  padding: 0 1rem;
  background: linear-gradient(135deg, rgba(8, 31, 243, 0.7) 22%, rgba(2, 169, 247, 0.7) 80%);
  background-size: 100%;
  background-position: right;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.section-one__card-container__overlay:hover {
  background-position: left;
  background-size: 200%;
}

.section-two {
  grid-row: 3;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  margin: 5rem 0;
}
@media (min-width: 900px) {
  .section-two {
    grid-column: center-start/center-end;
    display: flex;
    justify-content: center;
  }
}
.section-two__container {
  max-width: 80rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  padding: 1.5rem;
  font-size: 1.5rem;
}
.section-two__container--accent {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6a0dad, #fab47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  background-size: 150%;
}
.section-two__container--subtitle {
  font-size: 2rem;
  background: linear-gradient(135deg, #6a0dad, #fab47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.section-two__container--description {
  margin-bottom: 2rem;
}
.section-two__container__benefits-container {
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}
.section-two__container--link {
  background: linear-gradient(135deg, #6a0dad, #fab47b);
  padding: 1.5rem;
  border-radius: 0.5rem;
  color: white;
  max-width: 23.5rem;
}

.section-three {
  grid-row: 4;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  padding: 2rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-three--title {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #6a0dad, #0fafdb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  margin-bottom: 5rem;
}
.section-three--link {
  font-size: 2rem;
  color: #0f8daf;
  white-space: nowrap;
}
.section-three--link:hover {
  color: #0f8daf;
}

.map-section {
  grid-row: 2;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-section--title {
  margin-top: 5rem;
}
.map-section--content {
  text-align: center;
  margin: 1.5rem;
  font-size: 1.7rem;
  font-weight: 600;
}
.map-section--disclaimer {
  text-align: center;
  font-size: 1.2rem;
  color: rgb(95, 108, 110);
  text-align: center;
  margin: 0 1.5rem;
  margin-bottom: 1.5rem;
}

#map {
  height: 600px;
  width: 100%;
}

.leaflet-popup-content a {
  color: #007bff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
}

.leaflet-popup-content a:hover {
  color: rgb(49, 49, 255);
}

.about-section-one {
  grid-row: 2;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-section-one--title {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #6a0dad, #0fafdb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.about-section-one--content {
  max-width: 60rem;
  text-align: center;
  font-size: 1.5rem;
}

.about-section-two {
  grid-row: 3;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  padding: 1.5rem;
}
@media (min-width: 900px) {
  .about-section-two {
    grid-column: center-start/center-end;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}
@media (min-width: 1300px) {
  .about-section-two {
    grid-column: 4/center-end;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}
.about-section-two--title {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #6a0dad, #fab47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.about-section-two--content {
  max-width: 60rem;
  text-align: left;
  font-size: 1.5rem;
}

.about-section-three {
  grid-row: 4;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  padding: 1.5rem;
}
@media (min-width: 900px) {
  .about-section-three {
    grid-column: center-start/center-end;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}
@media (min-width: 1300px) {
  .about-section-three {
    grid-column: 4/center-end;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}
.about-section-three--title {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #6a0dad, #fab47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.about-section-three--content {
  max-width: 60rem;
  text-align: left;
  font-size: 1.5rem;
}

.about-section-four {
  grid-row: 5;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  padding: 1.5rem;
}
@media (min-width: 900px) {
  .about-section-four {
    grid-column: center-start/center-end;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}
@media (min-width: 1300px) {
  .about-section-four {
    grid-column: 4/center-end;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}
.about-section-four--title {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #6a0dad, #fab47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.about-section-four--content {
  max-width: 60rem;
  text-align: left;
  font-size: 1.5rem;
}
.about-section-four--list {
  list-style: none;
  font-size: 1.5rem;
  max-width: 60rem;
}
.about-section-four--list li {
  margin: 0.5rem 0;
}

.about-section-five {
  grid-row: 6;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  padding: 1.5rem;
}
@media (min-width: 900px) {
  .about-section-five {
    grid-column: center-start/center-end;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}
@media (min-width: 1300px) {
  .about-section-five {
    grid-column: 4/center-end;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}
.about-section-five--title {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #6a0dad, #fab47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.about-section-five--content {
  max-width: 60rem;
  text-align: left;
  font-size: 1.5rem;
}
.about-section-five--list {
  list-style: none;
  font-size: 1.5rem;
  max-width: 60rem;
}
.about-section-five--list li {
  margin: 0.5rem 0;
}

.about-section-six {
  grid-row: 7;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  padding: 1.5rem;
}
@media (min-width: 900px) {
  .about-section-six {
    grid-column: center-start/center-end;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}
@media (min-width: 1300px) {
  .about-section-six {
    grid-column: 4/center-end;
    display: flex;
    flex-direction: column;
    align-items: left;
  }
}
.about-section-six--title {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #6a0dad, #fab47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.about-section-six--content {
  max-width: 60rem;
  text-align: left;
  font-size: 1.5rem;
}

.blog-section-one {
  grid-row: 2;
  grid-column: full-start/full-end;
  height: -moz-min-content;
  height: min-content;
  padding: 2rem;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.blog-section-one--title {
  font-size: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #6a0dad, #0fafdb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  margin-bottom: 5rem;
}

.blog-post {
  width: 100%;
  max-width: 100rem;
  margin: 2rem;
  padding: 2rem;
  border: 1px solid rgb(228, 234, 233);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.blog-post-title {
  font-size: 2rem;
  margin-bottom: 10px;
  max-width: 100rem;
}

.blog-post-excerpt,
.blog-post-content {
  margin-bottom: 20px;
  max-width: 100rem;
  font-size: 1.5rem;
}

.blog-post-content {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.blog-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more {
  background-color: #0f8daf;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.like-section {
  display: flex;
  align-items: center;
}

.thumbs-up-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-right: 5px;
  transition: fill 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  color: rgb(199, 204, 203);
}

.thumbs-up-icon svg {
  width: 24px;
  height: 24px;
}

.thumbs-up-icon.liked svg {
  color: #0f8daf;
}/*# sourceMappingURL=main.css.map */