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

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

body {
  background-color: hsl(0, 0%, 100%);
  position: relative;
  z-index: -100;
  font-family: "Public Sans", sans-serif;
  font-size: 1.6rem;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  width: 100%;
}

p, h3 {
  word-break: break-all;
}

section {
  width: 100%;
}

.hero-main {
  margin-top: 8rem;
  background: rgba(48, 203, 127, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  padding: 10rem;
  height: calc(100vh - 70px);
}
.hero-main .hero-new {
  padding-top: 10rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}
.hero-main h1 {
  font-size: 70px;
  margin-bottom: 4rem;
  margin-top: 7rem;
}
.hero-main p {
  font-size: 20px;
  line-height: 1.7;
  word-break: break-all;
}

@media (max-width: 600px) {
  .hero-main {
    padding: 2rem;
    padding-bottom: 5rem;
    height: auto;
  }
  .hero-main .hero-new {
    padding: 0;
  }
  h1 {
    font-size: 3rem !important;
  }
  p {
    font-size: 1.6rem !important;
  }
}
.breadcrumb {
  padding: 10rem;
  margin-top: 10rem;
  background-color: #9fd8c2;
  display: flex;
  align-items: center;
  justify-content: center;
}

table {
  padding: 1rem;
  margin-left: 1.3rem;
}
table td {
  padding: 1rem;
  border-bottom: 1px solid gray;
}
table th {
  text-align: right;
  padding: 1rem;
}

@media (max-width: 600px) {
  .about-main {
    margin-top: 5rem;
    text-align: center;
    padding: 2rem;
  }
}
.container-hero-head {
  width: 100%;
  margin: 0 auto;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.col-2-1,
.col-2-2,
.col-3-1,
.col-3-2,
.col-3-3,
.col-4-1,
.col-4-2,
.col-4-3,
.col-4-4 {
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .container,
  .container-hero-head {
    max-width: 959px;
    margin: 0 auto;
  }
  .section-four {
    width: 100%;
  }
  .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  .col-1 {
    grid-column: 1/13;
    padding: 2rem;
  }
  .col-2-1 {
    grid-column: 1/7;
    grid-row: 1/2;
  }
  .col-2-2 {
    grid-column: 7/13;
    grid-row: 1/2;
  }
  .col-4-1,
  .col-4-2,
  .col-4-3,
  .col-4-4 {
    padding: 2rem;
  }
  .col-4-1 {
    grid-column: 1/7;
    grid-row: 1/2;
  }
  .col-4-2 {
    grid-column: 7/13;
    grid-row: 1/2;
  }
  .col-4-3 {
    grid-column: 1/7;
    grid-row: 2/3;
  }
  .col-4-4 {
    grid-column: 7/13;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 960px) {
  .container,
  .container-hero-head {
    max-width: 1440px;
    margin: 0 auto;
  }
  .section-four {
    width: 100%;
  }
  .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  .col-1 {
    grid-column: 1/13;
    padding: 2rem;
    grid-row: 1/2;
  }
  .col-2-1,
  .col-2-2 {
    padding: 2rem;
  }
  .col-2-1 {
    grid-column: 1/7;
  }
  .col-2-2 {
    grid-column: 7/13;
  }
  .col-4-1 {
    grid-column: 1/4;
    grid-row: 1/2;
  }
  .col-4-2 {
    grid-column: 4/7;
    grid-row: 1/2;
  }
  .col-4-3 {
    grid-column: 7/10;
    grid-row: 1/2;
  }
  .col-4-4 {
    grid-column: 10/13;
    grid-row: 1/2;
  }
}
@media (min-width: 960px) {
  .container-hero-head, .container {
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1440px;
  }
  .ft.col-4-1 {
    grid-column: 1/4;
  }
  .ft.col-4-2 {
    grid-column: 4/6;
  }
  .ft.col-4-3 {
    grid-column: 6/8;
  }
}
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  margin-bottom: 0 !important;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 72px;
}

@media (min-width: 768px) {
  .overlay {
    display: none;
  }
}
.footer {
  background-color: hsl(233, 26%, 24%);
  color: white;
}
.footer__inner {
  padding: 4rem 0;
}

.hero-main {
  overflow: visible;
  width: 100%;
  background-image: linear-gradient(rgba(4, 60, 20, 0.5), rgba(4, 60, 20, 0.7)), url(../img/hero-img.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
}
.hero-main__inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-main {
    padding-top: 10rem;
  }
}
@media (max-width: 600px) {
  .hero-main {
    padding-top: 10rem;
  }
  .hero-main__inner {
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .hero-main {
    background-image: linear-gradient(rgba(4, 60, 20, 0.5), rgba(4, 60, 20, 0.7)), url(../img/hero-img-mobile.jpeg);
  }
}
.article {
  background-color: #FAFAFA;
}

.why {
  margin-top: 70px;
  position: relative;
  background-color: #F4F5F7;
  padding-bottom: 2rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.card__hero {
  padding: 0 3rem;
  padding-top: 15.7rem;
}
.card__why {
  padding: 0;
}

@media (min-width: 768px) {
  .card__hero, .card__why {
    align-items: flex-start;
    padding: 0;
  }
  .card__footer {
    justify-content: space-between;
    height: 100%;
  }
}
.img__header--inner--mobile {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.img__header--inner--desktop {
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.img__header--top {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  top: -400px;
}
.img__card {
  margin-bottom: 0.7rem;
}

@media (min-width: 768px) {
  .img__header--inner--mobile {
    display: none;
  }
  .img__header--inner--desktop {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
  }
  .img__header--top {
    width: 50%;
    position: absolute;
    top: -270px;
  }
  .img__card {
    width: 100%;
    height: 200px;
  }
  figure {
    width: 100%;
    height: unset;
  }
}
figure {
  width: 100%;
  height: unset;
}

img {
  height: unset;
  width: 100%;
}

.title-1 {
  font-size: 4rem;
  text-align: center;
}

.title-2 {
  font-size: 3.2rem;
  text-align: center;
}

.title-3 {
  font-size: 2rem;
  text-align: center;
}

.title-4 {
  font-size: 1.6rem;
  text-align: center;
}

.title-5 {
  font-size: 1rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title-1 {
    text-align: left;
    font-size: 5.6rem;
  }
  .title-2 {
    font-size: 4rem;
    text-align: left;
  }
  .title-3 {
    font-size: 2.4rem;
    text-align: left;
  }
  .title-4 {
    font-size: 1.6rem;
    text-align: left;
  }
  .title-5 {
    font-size: 1rem;
    text-align: left;
  }
}
.text-1 {
  font-size: 1.6rem;
  color: #9597A5;
}

.text-2 {
  font-size: 1.5rem;
  text-align: center;
  color: #9597A5;
}

.text-3 {
  font-size: 1.3rem;
  color: #9597A5;
}

@media screen and (min-width: 768px) {
  .text-1 {
    font-size: 1.8rem;
    color: #9597A5;
    text-align: left;
  }
  .text-2 {
    font-size: 1.6rem;
    color: #9597A5;
    text-align: left;
  }
  .text-3 {
    font-size: 1.3rem;
    color: #9597A5;
    text-align: left;
  }
}
.title-1 {
  color: hsl(233, 26%, 24%);
  font-weight: 200;
}
.title-1__hero {
  color: white;
  text-align: center;
}

.title-2 {
  color: hsl(233, 26%, 24%);
  font-weight: 200;
}

.title-3 {
  font-weight: 200;
  color: hsl(233, 26%, 24%);
}
.title-3__hero {
  color: white;
  text-align: center;
  line-height: 2;
}

.title-4 {
  font-weight: 200;
  color: hsl(233, 26%, 24%);
}

.title-5 {
  font-weight: 200;
  color: hsl(233, 26%, 24%);
}

.list--nav {
  background-color: white;
}
.list.list__footer {
  text-align: center;
}
.list.list__footer .link.link--list {
  display: block;
}
.list.list__footer .link.link--list:hover {
  background-color: white;
}

.list.list--nav {
  box-shadow: none;
}

.link__footer {
  color: #d9d9d9;
  margin-bottom: 1rem;
}
.link--nav {
  font-weight: normal;
  color: hsl(233, 26%, 24%);
  border-radius: 0.8rem;
  padding: 2rem 1.5rem;
  display: block;
  transition: all 0.4s ease-in-out;
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  text-transform: capitalize;
}
.link--nav:hover {
  text-decoration-line: underline;
  color: black;
}

@media (min-width: 768px) {
  nav--nav {
    padding: 0.8rem 1.8rem;
  }
}
.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}

.item.item--nav {
  display: inline-block;
}

.list.list--nav {
  border: 0;
  display: block;
}

@media screen and (max-width: 768px) {
  .list.list--nav {
    border: 0;
    display: none;
  }
  .box.box--nav {
    width: 4rem;
    height: 4rem;
    display: inline-block;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .item.item--nav {
    display: block;
  }
  .link.link--nav {
    width: 100%;
    border-radius: 0;
    display: block;
    background-color: back;
  }
  .list.list--nav {
    top: 7.5rem;
    position: absolute;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1rem;
    box-shadow: 5px 5px 5px #333;
  }
  .ham.ham--nav {
    width: 70%;
    height: 2px;
    background-color: black;
    position: relative;
  }
  .list.list--nav.is--active {
    display: block;
  }
  .ham.ham--nav.is--active {
    background-color: transparent;
  }
  .ham.ham--nav::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    top: 7px;
  }
  .ham.ham--nav.is--active::after {
    top: 0;
    transform: rotate(45deg);
  }
  .ham.ham--nav::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    top: 8px;
  }
  .ham.ham--nav::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    top: -8px;
  }
  .ham.ham--nav.is--active::before {
    top: 0;
    transform: rotate(-45deg);
  }
}
.box__social {
  display: flex;
  gap: 0.5rem;
}
.box__social--cover {
  height: 100px;
  margin-right: 0.4rem;
}
.box__social--cover img {
  width: 20px !important;
  margin-top: 2rem;
}

.button {
  padding: 15px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  background-color: hsl(136, 65%, 51%);
  color: white;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: hsl(136, 65%, 41%);
}
.button__nav {
  display: none;
}

@media (min-width: 960px) {
  .button__nav {
    display: block;
  }
}
.gal {
  margin-top: 5rem;
}

.gallery {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
  margin-bottom: 5rem;
}
.gallery .box {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 640px;
  position: relative;
  border: 1px solid #ccc;
  box-shadow: 4px 4px 4px #ccc;
  margin-bottom: 5rem;
  transition: all 1s ease-in;
  transform: translateY(0);
  background-size: 90%;
}
.gallery .box .title-con {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: white;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}
.gallery .box .title-con .btn-gal {
  display: inline-block;
  background-color: transparent;
  padding: 0.8rem 1.3rem;
  outline: none;
  cursor: pointer;
  border: 0;
  color: darkgreen;
  font-size: inherit;
}
.gallery .box .title-con .btn-gal:hover {
  color: darkmagenta;
  background-color: #ccc;
}
.gallery .box:hover {
  transform: translateY(-20px);
}
.gallery #box-0 {
  background-image: url("../imgs/img-0.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-1 {
  background-image: url("../imgs/img-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-2 {
  background-image: url("../imgs/img-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-3 {
  background-image: url("../imgs/img-3.jpeg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-4 {
  background-image: url("../imgs/img-4.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-5 {
  background-image: url("../imgs/img-5.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-6 {
  background-image: url("../imgs/img-6.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-7 {
  background-image: url("../imgs/img-7.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-8 {
  background-image: url("../imgs/img-8.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-9 {
  background-image: url("../imgs/img-9.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-10 {
  background-image: url("../imgs/img-10.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-11 {
  background-image: url("../imgs/img-11.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-12 {
  background-image: url("../imgs/img-12.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-13 {
  background-image: url("../imgs/img-13.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-14 {
  background-image: url("../imgs/img-14.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-15 {
  background-image: url("../imgs/img-15.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-16 {
  background-image: url("../imgs/img-16.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-17 {
  background-image: url("../imgs/img-17.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-18 {
  background-image: url("../imgs/img-18.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-19 {
  background-image: url("../imgs/img-19.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-20 {
  background-image: url("../imgs/img-20.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-21 {
  background-image: url("../imgs/img-21.jpeg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-22 {
  background-image: url("../imgs/img-22.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-23 {
  background-image: url("../imgs/img-23.jpeg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-24 {
  background-image: url("../imgs/img-24.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-25 {
  background-image: url("../imgs/img-25.jpg");
  background-position: center;
  background-repeat: no-repeat;
}
.gallery #box-26 {
  background-image: url("../imgs/img-26.jpg");
  background-position: center;
  background-repeat: no-repeat;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block; /* removes whitespace gap */
  object-fit: cover; /* optional */
  border-radius: 15px;
}

.gallery a {
  display: block;
  width: 100%;
}

.overlay-gal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  overflow: hidden;
}

.modal-gal {
  position: absolute;
  z-index: 20000;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background-color: white;
  overflow-y: scroll;
  padding: 3rem 8rem;
  position: relative;
  padding-top: 5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}

.modal-content {
  margin-top: 10rem;
  line-height: 1.6;
}

.btn-gal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 1rem;
  cursor: pointer;
}

.overlay-gal.hidden, .modal-gal.hidden {
  display: none;
}

@media (max-width: 600px) {
  .gal {
    margin-top: 20rem;
  }
  .gallery {
    display: block;
  }
  .gallery .box {
    width: 100%;
    margin-bottom: 5rem;
  }
  .modal-gal {
    padding: 2.3rem;
  }
}
.more {
  line-height: 1.7;
  margin-top: 10rem;
}
.more img {
  width: 100%;
}
.more .left-more, .more .right-more {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.show .col-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.show .col-1 #see-more {
  padding: 1.3rem 2rem;
  cursor: pointer;
  font-size: inherit;
  background-color: #31D45C;
  border: 0;
  border-radius: 15px;
  color: white;
  transition: all 1s ease-in;
  margin-bottom: 8rem;
}
.show .col-1 #see-more:hover {
  background-color: #a3e4b5;
  color: black;
}

@media (max-width: 600px) {
  .more img {
    width: 100%;
    padding: 2rem;
  }
  .more .left-more, .more .right-more {
    display: block;
  }
  .more .show-content {
    text-align: center;
    padding: 2rem;
  }
  .show #see-more {
    margin-bottom: 5rem;
  }
}
.gal.hidden {
  display: none;
}

.more-main.hidden {
  display: none;
}

.show-main.hidden {
  display: none;
}

.is--hidden {
  display: none;
}

.button.is--active {
  padding: 15px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  background-color: navy;
  color: white;
  transition: background-color 0.3s;
}

.button.is--disabled {
  padding: 15px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  background-color: gray;
  color: white;
  transition: background-color 0.3s;
  cursor: not-allowed;
  opacity: 0.6;
}

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