:root {
  --primary: #00693e;
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  overflow: scroll;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

.skeleton-text {
  width: 100%;
  height: 0.5rem;
  border-radius: 10px;
  margin-bottom: 0.25rem;
}

.skeleton-text:last-child {
  margin-bottom: 0;
  width: 70%;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 70%);
  }
  100% {
    background-color: hsl(200, 20%, 90%);
  }
}

.swiper-text-container {
  background-color: #fff8eb;
  z-index: 99;
  position: absolute;
  top: 13rem;
  width: 27rem;
  border-radius: 10px;
  padding: 2rem;
  padding-top: 1rem;
}

@media screen and (max) {
}

.swiper-text {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  z-index: 100;
  color: #00693e;
  font-size: 4rem;
  line-height: 5rem;
  font-weight: normal;
  letter-spacing: -0.05rem;
  text-align: left;
}

.swiper-paragraph {
  font-family: "Lato", sans-serif;
  color: #00693e;
  font-size: 1.48rem;
  text-align: left;
}

.navbar {
  background-color: #00693e;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  z-index: 1000;
  padding: 0;
}

.navbar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  max-width: 1500px;
}

.navbar-logo {
  color: #ffffff;
  justify-self: start;
  margin-left: 20px;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  /*max-height: 100%;*/
}

@keyframes spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spin {
  transition: all 3s ease;
}

.spin:hover {
  transform: rotate(360deg);
  transition: transform 3s ease;
}

.navbar-logo-img {
  display: flex;
  justify-content: center;
  max-height: 60px;
  align-items: center;
}

.fa-typo3 {
  margin-left: 0.5rem;
  font-size: 1.8rem;
}

.nav-menu {
  display: grid;
  grid-template-columns: repeat(5, auto);
  list-style: none;
  text-align: center;
  width: 60vw;
  justify-content: end;
  margin: 0;
  margin-right: 2rem;
  max-height: 80px;
}

.nav-item {
  height: 80px;
  z-index: 10;
  background-color: #00693e;
}

.nav-links {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  color: #ffffff;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem 1rem;
  height: 100%;
}

.nav-links:hover {
  color: #ffffff;
  border-bottom: 4px solid #ffffff;
  transition: all 0.1s ease-out;
  text-decoration: none;
}

.fa-bars {
  color: #ffffff;
}

.nav-links-mobile {
  display: none;
}

.menu-icon {
  display: none;
}

.home_grid_panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.about_grid_panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.about_grid_panel_header {
  margin: 1rem;
}

@media screen and (max-width: 1150px) {
  .about_grid_panels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .home_grid_panels {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
  .remove-1100 {
    display: none;
  }
  .home_div {
    justify-content: center !important;
  }
  .carousel-size {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media screen and (max-width: 960px) {
  .swiper-text-container {
    max-width: 70%;
  }
  .NavbarItems {
    position: relative;
  }

  .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 90vh;
    position: absolute;
    top: calc(5 * 80px);
    left: -100%;
    opacity: 1;
    transition: all 0.5s ease;
  }

  .nav-menu.active {
    background: #00693e;
    left: 0;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 1;
  }

  .nav-links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  .nav-links:hover {
    background-color: #ffffff;
    color: #00693e;
    border-radius: 0;
  }

  .menu-icon {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-100%, 60%);
    font-size: 1.8rem;
    cursor: pointer;
  }

  .fa-times {
    color: #ffffff;
    font-size: 2rem;
  }

  .nav-links-mobile {
    display: block;
    text-align: center;
    margin: 2rem auto;
    border-radius: 4px;
    width: 80%;
    text-decoration: none;
    font-size: 1.5rem;
    background-color: transparent;
    color: #ffffff;
    padding: 14px 20px;
    border: 1px solid #ffffff;
    transition: all 0.3s ease-out;
  }

  .nav-links-mobile:hover {
    background: #ffffff;
    color: #ffffff;
    transition: 0.1s;
    text-decoration: none;
  }
}

@media screen and (max-width: 700px) {
  .home_grid_panels {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
  }

  .remove-700 {
    display: none;
  }
  .projects-main-div {
    flex-direction: column;
  }
  .projects__list__explain__div {
    align-items: center;
    margin-left: 0 !important;
  }
  .panel-container {
    width: clamp(20rem, 90vw, 37rem) !important;
    margin-right: 1rem !important;
  }
  .projects-list-main-div {
    margin: 0rem !important;
  }
  .panel-container-container {
    justify-content: center !important;
  }
}

@media screen and (max-width: 300px) {
  .remove-300 {
    display: none;
  }
}

.card {
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.card-title {
  font-weight: bold;
}

.blogs-main-div {
  display: flex;
  justify-content: center;
  flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

.blogs__explain__text {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  color: #00693e;
  font-size: 4rem;
  line-height: 4rem;
  font-weight: normal;
  text-align: center;
  word-wrap: break-word;
  max-width: 100%;
}
.blogs__explain__small__text {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: normal;
  text-align: center;
  word-wrap: break-word;
  max-width: 1100px;
  justify-content: center;
  display: flex;
}

.blogs__explain__div {
  flex-flow: column;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}

.blog-title-outline {
  text-align: left;
  color: #00693e;
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  font-size: 300%;
  line-height: 100%;
  font-weight: normal;
  letter-spacing: -0.05rem;
  width: 100%;
  margin-bottom: 5%;
}

@media screen and (max-width: 550px) {
  .swiper-text-container {
    max-width: 20rem;
  }
}

.blog-title-outline:hover {
  color: #00693e;
  text-decoration: none;
}

.blog-text-outline {
  text-align: left;
  color: #000000;
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  font-size: 150%;
  line-height: 100%;
  font-weight: normal;
  letter-spacing: -0.05rem;
  width: 100%;
}

div {
  --projects-img-width: 8rem;
}

.card-img-max {
  border-radius: 10px;
  max-width: var(--projects-img-width);
  height: var(--projects-img-width);
  object-fit: cover;
}

.blog-text-outline:hover {
  color: #000000;
  text-decoration: none;
}

.unround {
  border-radius: 10px 0 0 10px;
}

.fa-solid {
  color: #00693e;
  margin-right: 4px;
}

.panel-column {
  max-width: calc(100% - var(--projects-img-width));
}

.panel-container-container {
  box-sizing: border-box;
}

.panel-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: clamp(20rem, 55vw, 40rem);
  max-height: 100%;
  margin: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  -webkit-filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.1));
  border-radius: 10px;
  margin-right: 2rem;
  overflow: hidden;
}

.panel-container-blog {
  display: flex;
  flex-direction: column;
  width: clamp(20rem, 45vw, 40rem);
  max-height: 100%;
  margin: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  -webkit-filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.1));
  border-radius: 10px;
  margin-right: 2rem;
}

.no-hover:hover {
  text-decoration: none;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.no-hover2:hover {
  text-decoration: none;
}

.panel-title-outline {
  text-align: left;
  color: #00693e;
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 0.5rem;
}

.panel-title-outline:hover {
  color: #000000;
  text-decoration: none;
}

.panel-text-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 0.5rem;
}

.panel-text-outline {
  text-align: left;
  color: #000000;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 100;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 0.5rem;
}

.panel-text-outline:hover {
  color: #000000;
  text-decoration: none;
}

.panel-caption-outline {
  text-align: left;
  color: #00693e;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: normal;
}

.panel-tags-outline {
  font-family: "Lato", sans-serif;
  display: flex;
  margin-top: auto;
  justify-content: left;
  margin-left: 0.5rem;
  max-width: 30rem;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.projects-tags {
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: space-between;
  max-width: 400px;
  margin-right: auto;
  margin: 2rem;
  align-items: center;
}

.projects-tags-captions {
  margin-right: 2rem;
  margin-left: 0.2rem;
  margin-bottom: 0.1rem;
  text-align: left;
  color: #00693e;
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  align-items: center;
  object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 600px) {
  .projects-tags {
    justify-content: center;
    flex-direction: column;
  }
  .projects-tags-captions {
    margin: 0.5rem;
  }
}

@media screen and (max-width: 604px) {
  .swiper-text-container {
    top: 10rem;
  }
}

.supplies-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1rem;
  padding-left: 3rem;
  border-radius: 1rem;
  color: #000000;
  max-width: 90%;
}

.project-cost-text {
  color: #00693e;
  font-size: 1.5rem;
  text-align: left;
  align-items: center;
}

.supplies-text {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: normal;
}

.easy-tag {
  color: rgb(77, 184, 0);
}

.medium-tag {
  color: rgb(237, 142, 0);
}

.hard-tag {
  color: rgb(235, 39, 0);
}

.black-outline {
  color: #000000;
}

.blog-card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.panel-card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.card img {
  width: 30%;
  border-top-right-radius: 0;
  border-bottom-left-radius: calc(0.25rem - 1px);
}
@media only screen and (max-width: 768px) {
  a {
    display: none;
  }
  .card-body {
    padding: 0.5em 1.2em;
  }
  .card-body .card-text {
    margin: 0;
  }
  .card img {
    width: 50%;
  }
}
@media only screen and (max-width: 1200px) {
  .card img {
    width: 40%;
  }
}

.about_div {
  display: flex;
  max-width: max(1100px, 20%);
  height: 451px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
  margin-bottom: 5rem;
  margin-top: 2rem;
  justify-content: center;
  overflow: hidden;
}

.about-text-container {
  background-color: #fff8eb;
  z-index: 99;
  position: absolute;
  top: 27rem;
  max-width: 1000px;
  border-radius: 10px;
  padding: 2rem;
  padding-top: 1rem;
  margin-left: 3rem;
  margin-right: 3rem;
}

.about__explain__div {
  display: grid;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 1rem;
}

.about__title__div {
  display: flex;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
  gap: 0.5rem;
}

.about__founder__div {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

@media screen and (max-width: 975px) {
  .about__explain__small__text {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
  }
  .about-text-container {
    top: 23rem;
  }
  .about_div {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 467px) {
  .about_div {
    margin-bottom: 5rem !important;
  }
}
@media screen and (max-width: 900px) {
  .about__explain__div {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-top: 0rem;
  }
}

@media screen and (max-width: 800px) {
  .about_grid_panels {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    width: 300px;
  }
}

.about__full__image {
  object-fit: cover;
  width: 100%;
  margin-top: 5rem;
  border-radius: 10px;
}

.project__full__image {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.about__project__full__image {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.lato-text {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  line-height: 2rem;
}

.about__explain__text {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  color: #00693e;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
}

.about__explain__title__text {
  font-family: Merriweather, serif;
  color: #000000;
  font-size: 1.5rem;
}
.about__explain__small__text {
  font-size: 2rem;
  line-height: 3rem;
}

.whoweare__paragraph__text {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
  margin-left: 1rem;
}

.join_form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.rick-text {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  color: #00693e;
  font-size: 10rem;
  line-height: 4rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
}

.heading__text {
  font-family: "Merriweather", sans-serif;
  color: #000000;
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: bold;
  text-align: left;
  word-wrap: break-word;
}

.paragraph__text {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
}

.italics__text {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
}

.blog__explain__text {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  color: #00693e;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: normal;
  text-align: center;
  word-wrap: break-word;
  margin-top: 1rem;
}
.blog__paragraph__text {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
}

.paragraph-break {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.blog__author__text {
  color: #000000;
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: normal;
  text-align: center;
  word-wrap: break-word;
}

.projects__list__explain__div {
  display: flex;
  flex-direction: column;
  justify-content: left;
  margin-left: 1rem;
}

.projects__intro__paragraph__text {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
  margin-right: 2rem;
}

.projects__explain__text {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  color: #00693e;
  font-size: 4rem;
  line-height: 4rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
  max-width: 90%;
}
.projects__explain__small__text {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
  max-width: 90%;
}

.projects-main-div {
  display: flex;
  grid-template-columns: 1fr 1fr;
  max-width: 1150px;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.projects-list-main-div {
  display: grid;
  grid-template-columns: 1fr;
  margin-left: clamp(1rem, 8vw, 10rem);
  margin-right: 1rem;
}

.blogs-list-main-div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

@media screen and (max-width: 900px) {
  .blogs-list-main-div {
    grid-template-columns: 1fr;
  }
  .panel-container-blog {
    width: clamp(18rem, 80vw, 40rem) !important;
  }
  .paragraph__text {
    margin-right: 0rem;
  }
}

.projects-select-main-div {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.projects__explain__div {
  left: 20%;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

.home_seen_on_div {
  display: inline-block;
  box-sizing: border-box;
  padding: 1rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.home_seen_on_img_wrapper {
  margin: 1rem;
  height: 3rem;
  object-fit: cover;
  box-sizing: border-box;
}

@media screen and (max-width: 600px) {
  .home_seen_on_img_wrapper {
    margin: 0.5rem;
    height: 2rem;
  }
}

.home_div {
  display: flex;
  max-width: 1150px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
}

.home_big_statement_div {
  margin-bottom: 200px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
  background-color: #ffffff;
  min-height: 100%;
  align-items: center;
  justify-content: center;
}

.home_big_statement_title {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  margin: 1rem;
  color: #ffffff;
  font-size: 4rem;
  line-height: 4rem;
  font-weight: normal;
  word-wrap: break-word;
}

.home_smaller_statement_title {
  margin: 1rem;
}

.home_even_smaller_statement_title {
  margin-top: 1rem;
  font-size: 1rem;
}

.home_big_statement_text {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  margin: 1rem;
  color: #ffffff;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: normal;
  word-wrap: break-word;
  max-width: 90%;
}

.home_smaller_statement_text {
  margin: 1rem;
  margin-left: 2rem;
}

.home__about__explain__text {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  color: #00693e;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: normal;
  text-align: center;
  word-wrap: break-word;
}

.home__news__title {
  font-family: Merriweather, sans-serif;
  color: #00693e;
  font-size: 1.5rem;
  line-height: 4rem;
  font-weight: normal;
  text-align: center;
  word-wrap: break-word;
}

.home__projects__explain__text {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  color: #000000;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: normal;
  margin: 1rem;
  text-align: center;
}

.home_founder_div {
  display: flex;
  max-width: 1000px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.home__founder__image {
  object-fit: cover;
  width: 21rem;
  border-radius: 10px;
}

.home__founder__image__div {
  margin-right: 3rem;
}

.home__founder__explain__div {
  margin-right: 30rem;
  position: absolute;
}

@media screen and (max-width: 900px) {
  .home_founder_div {
    flex-direction: column;
    align-items: center;
  }

  .home__founder__image__div {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }

  .home__paragraph__text {
    margin-right: 0rem !important;
  }
}

.home__paragraph__text {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
  margin-right: 2rem;
}

@media only screen and (min-width: 1200px) {
  .content__blog__container {
    width: 84%;
  }
}

@media only screen and (min-width: 1024px) {
  .panels__items {
    display: flex;
  }
}

@media only screen and (max-width: 1024px) {
  .panels__item {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 900px) {
  .projects__explain__text,
  .projects__explain__small__text {
    text-align: center;
  }
  .projects-main-div {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "PT Sans", sans-serif;
}

.footer-container {
  background-color: #00693e;
  padding: 2rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer__paragraph__text {
  font-family: "Lato", sans-serif;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: normal;
  text-align: left;
  word-wrap: break-word;
}

.footer-subscription {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
}

.footer-subscription > p {
  font-family: "Merriweather", sans-serif;
}

.smaller-text {
  font-size: 1rem;
}

.footer-subscription-heading {
  margin-bottom: 24px;
  font-size: 24px;
}

.footer-subscription-text {
  margin-bottom: 24px;
  font-size: 20px;
}

.footer-input {
  font-family: Lato, sans-serif;
  padding: 8px 20px;
  border-radius: 2px;
  margin-right: 10px;
  outline: none;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 16px;
  border: 1px solid #ffffff;
  width: 15rem;
}

.footer-email-form h2 {
  margin-bottom: 2rem;
}

.footer-input::placeholder {
  color: #b1b1b1;
}

.social-media {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.social-media-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 40px auto 0 auto;
}

.social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 240px;
}

.social-logo {
  color: #ffffff;
  justify-self: start;
  margin-left: 20px;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.website-rights {
  color: #ffffff;
  margin-bottom: 16px;
}

@media screen and (max-width: 820px) {
  .footer-links {
    padding-top: 2rem;
  }

  .btn {
    width: 100%;
    font-family: "Lato", sans-serif;
  }

  .footer-link-wrapper {
    flex-direction: column;
  }

  .social-media-wrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
}

.carousel-size {
  height: 40rem;
  object-fit: cover;
  justify-content: right;
  max-width: max(60rem, 60%);
  margin-right: 0;
  margin-left: auto;
  margin-top: 0.5rem;
  border-radius: 10px;
}

@media screen and (max-width: 900px) {
  .carousel-size {
    margin-right: 0rem;
  }
}

@media screen and (max-width: 433px) {
  .about-text-container {
    top: 18rem !important;
  }
}

@media screen and (max-width: 387px) {
  .about-text-container {
    top: 14rem !important;
  }
}
.carousel-item-next {
  transition: transform 0s ease-in-out;
}

.carousel-item-prev {
  transition: transform 0s ease-in-out;
}
.carousel-item-left {
  transform: translateX(-100%);
}
.carousel-item-right {
  transform: translateX(100%);
}

.cards {
  padding: 1rem;
  background: #fff;
}

.remove-padding {
  display: flex;
  padding: 0;
  justify-content: left;
}

h1 {
  text-align: center;
}

.projects_filter_container {
  display: flex;
  flex-flow: column;
  align-items: left;
  justify-content: left;
  max-width: 800px;
}

.cards__container {
  display: flex;
  flex-flow: column;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.cards__wrapper {
  position: relative;
}

.cards__item {
  display: flex;
  width: 300px;
  flex: 1;
  border-radius: 10px;
  height: 100%;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.cards__item:hover {
  text-decoration: none;
}

.cards__item__link {
  display: flex;
  flex-flow: column;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  -webkit-filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.1));
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}

.cards__item__pic-wrap {
  position: relative;
  width: 100%;
  padding-top: 90%;
  overflow: hidden;
}

.home__cards__item__pic-wrap {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
}

.fade-img {
  animation-name: fade-img;
  animation-duration: 2s;
}

.cards__item__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 0.2s linear;
}

.mission__div {
  background-color: #fff8ed;
  max-width: 900px;
  padding: 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  border-radius: 10px;
}

.science__div {
  background-color: #00693e;
}

.mission__text {
  text-align: center;
}

.science__text {
  color: #ffffff;
}

.cards__item__info {
  padding: 0px 0px 0px;
}

.cards__item__text {
  font-family: Palatino, "Palatino LT STD", "Palatino Linotype", "Book Antiqua",
    Georgia, serif;
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.cards__item__text__about {
  font-family: Merriweather, serif;
  color: #000000;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.cards__item__name {
  font-family: Merriweather, serif;
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}

.cards__item__text__home {
  font-family: Merriweather, "Palatino LT STD", "Palatino Linotype",
    "Book Antiqua", Georgia, serif;
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.projects-filter-div {
  max-width: 17rem;
  margin: 1rem;
  margin-left: 0rem;
  margin-top: 1rem;
  background-color: #fff8ed;
  padding: 0.5rem;
  padding-top: 0rem;
  border-radius: 10px;
}

.projects-checkbox {
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
  width: min(100%, 12.5rem);
}

.projects-btn-bottom {
  margin: 0.5rem;
  padding: 0;
}

.projects-checkbox-text {
  color: #00693e;
  background-color: #fff8eb;
  border-radius: 10px;
  font-family: "Merriweather", sans-serif;
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: normal;
  margin-top: 0.5rem;
  text-align: left;
  padding-left: 0.45rem;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}

.projects-checkbox-small-text {
  color: #00693e;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: normal;
  margin-top: 0rem;
  margin-bottom: 0rem;
  text-align: left;
}
.projects-checkbox-right {
  margin-left: 0.5rem;
}

@media only screen and (min-width: 1200px) {
  .content__blog__container {
    width: 84%;
  }
}

@media only screen and (min-width: 800px) {
  .cards__items {
    display: flex !important;
    justify-content: center !important;
  }
}

@media only screen and (max-width: 1024px) {
  .cards__item {
    margin-bottom: 2rem;
  }
}

.btn {
  padding: 8px 20px;
  border-radius: 2px;
  outline: none;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background-color: #00693e;
  color: #ffffff;
  border: 1px #ffffff;
  font-family: "Merriweather", sans-serif;
  border-radius: 10px;
  font-size: 1.5rem;
}

.btn--outline {
  background-color: #00693e;
  color: #ffffff;
  border: 2px;
  border-color: #000000;
  font-family: "Merriweather", sans-serif;
  border-radius: 10px;
  font-size: 1.5rem;
}

.btn-mobile {
  margin: auto;
  width: 100%;
}

.footer {
  background-color: #ffffff;
  color: #ffffff;
  border: 1px #ffffff;
  font-family: "Merriweather", sans-serif;
  border-radius: 10px;
  font-size: 1.5rem;
}

.btn--block {
  width: min(100%, 23rem);
}

.btn--medium {
  padding: 8px 20px;
  font-size: 18px;
}

.btn--large {
  padding: 12px 26px;
  font-size: 20px;
}

.btn--outline:hover {
  transition: all 0.3s ease-out;
  background: #ffffff;
  color: #00693e;
  transition: 250ms;
}

.btn--primary:hover {
  transition: all 0.3s ease-out;
  background: #ffffff;
  color: #00693e;
  transition: 250ms;
}
