@import url("https://use.typekit.net/gre8idz.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.p0 {
  padding: 0;
}

.p10 {
  padding: 0.625rem;
}

.p20 {
  padding: 1.25rem;
}

.p30 {
  padding: 1.875rem;
}

.pLR {
  padding: 0 0.625rem;
}

.pTB {
  padding: 0.625rem 0;
}

.m0 {
  margin: 0;
}

.m10 {
  margin: 0.625rem;
}

.m20 {
  margin: 1.25rem;
}

.m30 {
  margin: 1.875rem;
}

.mLR {
  margin: 0 0.625rem;
}

.mTB {
  margin: 0.625rem 0;
}

.r0 {
  border-radius: 0;
}

.r5 {
  border-radius: 0.313rem;
}

.r10 {
  border-radius: 0.625rem;
}

.r20 {
  border-radius: 1.25rem;
}

.r30 {
  border-radius: 1.875rem;
}

.transition {
  transition: 0.3s;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.gap10 {
  gap: 0.625rem;
}

.gap20 {
  gap: 1.25rem;
}

.gap30 {
  gap: 1.875rem;
}

h1 {
  font-family: "minion-pro", serif;
  padding: 0;
  margin: 0.625rem;
  text-align: left;
  text-wrap: wrap;
}

h2 {
  font-family: "minion-pro", serif;
  padding: 0;
  margin: 0;
  text-align: left;
  text-wrap: wrap;
  text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

h3 {
  font-family: "minion-pro", serif;
  padding: 0;
  margin: 0.625rem;
  text-align: left;
  text-wrap: wrap;
}

h4 {
  font-family: "minion-pro", serif;
  padding: 0;
  margin: 0.625rem;
  text-align: left;
  text-wrap: wrap;
}

p {
  font-family: "minion-pro", serif;
  padding: 0;
  margin: 0;
  text-align: left;
  text-wrap: wrap;
  font-size: 1.2rem;
}

a {
  text-decoration: none;
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
}

* {
  padding: 0;
  margin: 0;
  transition: 0.3s ease-in-out;
}

body,
html {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(216, 229, 209);
  scroll-behavior: smooth;
}

@media (min-width: 2500px) {
  html {
    font-size: 23px;
  }
}
@media (max-width: 2500px) {
  html {
    font-size: 22px;
  }
}
@media (max-width: 2300px) {
  html {
    font-size: 20px;
  }
}
@media (max-width: 2100px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 1900px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 1700px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 1500px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 13px;
  }
}
@media (max-width: 1100px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 11px;
  }
}
@media (max-width: 700px) {
  html {
    font-size: 10px;
  }
}

header {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 300;
  background-color: rgba(216, 229, 209, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
header .logo-desktop {
  display: block;
}
header .logo-mobile {
  display: none;
}
header nav,
header div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.875rem;
}
header nav a {
  text-decoration: none;
  color: rgb(8, 32, 9);
  position: relative;
  transition: color 0.4s ease;
  font-size: 1.375rem;
  text-decoration: none;
}
header nav a:hover {
  text-decoration: underline;
}
header div .contactusbutton,
header div .bookroombutton {
  text-decoration: none;
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.375rem;
  color: rgb(216, 229, 209);
  padding: 1rem 1.5rem;
  border: 1px solid;
}
header div .contactusbutton {
  background-color: rgb(79, 91, 80);
  border-color: rgb(79, 91, 80);
}
header div .contactusbutton:hover {
  color: rgb(79, 91, 80);
  background-color: transparent;
}
header div .bookroombutton {
  background-color: rgb(40, 87, 59);
  border-color: rgb(40, 87, 59);
}
header div .bookroombutton:hover {
  color: rgb(40, 87, 59);
  background-color: transparent;
}
header span {
  padding: 0 0.625rem;
}
header span img {
  height: 3.625rem;
  width: auto;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
main .hero {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  z-index: 1;
  position: relative;
  padding-top: 8rem;
}
main .hero .left {
  flex: 4;
  width: 100%;
  max-width: 43.5rem;
  height: auto;
  overflow: hidden;
  position: relative;
  padding: 4rem 2rem 2rem 2rem;
}
main .hero .left .gallery-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}
main .hero .left .gallery-item {
  flex: 0 0 100%;
}
main .hero .left .gallery-item img {
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
main .hero .left .arrow-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 25%;
  position: absolute;
  left: 50%;
  bottom: 3.25rem;
  transform: translateX(-50%);
  gap: 1rem;
  z-index: 10;
}
main .hero .left .arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: rgb(216, 229, 209);
  border: none;
  cursor: pointer;
}
main .hero .left .arrow img {
  height: 1.063rem;
  width: auto;
}
main .hero .left .counter {
  font-family: "minion-pro", serif;
  font-size: 1.375rem;
  background: transparent;
  color: rgb(216, 229, 209);
  font-family: sans-serif;
  text-align: center;
  font-weight: 200;
  justify-self: center;
  z-index: 10;
}
main .hero .left .onmobile {
  display: none;
}
main .hero .right {
  flex: 5;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: top;
}
main .hero .right .heroBG {
  width: auto;
  padding: 0;
}
main .hero .right .heroBG img {
  padding: 0;
  margin: 0;
  width: 20rem;
}
main .hero .right .heroBG .right {
  position: absolute;
  right: 0;
  transform: translateY(20%);
}
main .hero .right .content {
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  gap: 1.875rem;
  transform: translateY(-20%);
}
main .hero .right .content article {
  color: rgb(8, 32, 9);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
  width: 70%;
}
main .hero .right .content article h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-style: italic;
  margin-bottom: 0.625rem;
  font-family: "minion-pro", serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
main .hero .right .content article p {
  font-size: 1.375rem;
  font-family: "Montserrat", sans-serif;
  color: rgb(79, 91, 80);
  padding: 0;
  margin: 0;
}
main .hero .right .content a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2.75rem;
  text-decoration: none;
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.625rem;
  color: rgb(40, 87, 59);
  margin: 0.625rem 0;
  padding-block: 1.1rem;
  padding-left: 2rem;
  padding-right: 6rem;
  margin: 1.5rem 0;
  border: solid 1.5px rgb(40, 87, 59);
  position: relative;
  overflow: hidden;
}
main .hero .right .content a .first-arrow,
main .hero .right .content a .second-arrow {
  position: absolute;
  right: 2rem;
}
main .hero .right .content a .first-arrow {
  transform: translateX(0);
  transition: transform 0.3s ease;
  opacity: 100;
}
main .hero .right .content a .second-arrow {
  transform: translateX(-60%);
  transition: transform 0.3s ease;
  opacity: 0;
}
main .hero .right .content a:hover {
  background-color: rgb(40, 87, 59);
  color: rgb(216, 229, 209);
}
main .hero .right .content a:hover .first-arrow {
  transform: translateX(150%);
  opacity: 0;
}
main .hero .right .content a:hover .second-arrow {
  transform: translateX(0);
  opacity: 100;
}
main .hero .right .content .bold {
  font-weight: 700;
  font-style: normal;
}
main .second {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: top;
  gap: 6rem;
  z-index: 1;
  position: relative;
  padding: 8rem 0 5rem 0;
}
main .second div {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 2;
}
main .second .mobile {
  display: none;
}
main .second .desktop {
  display: block;
}
main .second h1 {
  flex: 1;
  color: rgb(8, 32, 9);
  font-size: 2.875rem;
  font-weight: 400;
  font-style: italic;
  margin: 0;
  padding: 0;
  z-index: 10;
}
main .second h1 .bold {
  font-weight: 700;
  font-style: normal;
}
main .second article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  flex: 5;
  margin-right: 1.875rem;
  color: rgb(8, 32, 9);
}
main .second article p {
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  width: 80%;
}
main .second img {
  padding: 0;
  margin: 0;
  width: 30.394rem;
}
main .second .desktop {
  position: absolute;
  left: 0;
  top: 10%;
}
main .third {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0 0 0;
}
main .third .desktop {
  display: grid;
  width: 100%;
  max-width: calc(100vw - 4rem);
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 1rem;
}
main .third .mobile {
  display: none;
}
main .third img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  grid-column: 1/-1;
  grid-row: 1/-1;
  padding: 0;
  margin: 0;
}
main .third #first {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 5;
}
main .third #second {
  grid-column-start: 4;
  grid-column-end: 8;
  grid-row-start: 1;
  grid-row-end: 3;
}
main .third #third {
  grid-column-start: 4;
  grid-column-end: 6;
  grid-row-start: 3;
  grid-row-end: 5;
}
main .third #fourth {
  grid-column-start: 6;
  grid-column-end: 8;
  grid-row-start: 3;
  grid-row-end: 6;
}
main .third #fifth {
  grid-column-start: 1;
  grid-column-end: 6;
  grid-row-start: 5;
  grid-row-end: 8;
}
main .third #sixth {
  grid-column-start: 6;
  grid-column-end: 8;
  grid-row-start: 6;
  grid-row-end: 8;
}
main .fourth {
  width: 100%;
  max-width: 100vw;
  padding: 6rem 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
}
main .fourth .arrow-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 10%;
  position: absolute;
  right: 0%;
  transform: translateX(-15%) translateY(750%);
  gap: 1rem;
  z-index: 100;
}
main .fourth .arrow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: rgb(216, 229, 209);
  border: none;
  cursor: pointer;
}
main .fourth .arrow img {
  height: 1.063rem;
  width: auto;
}
main .fourth .counter {
  font-family: "minion-pro", serif;
  font-size: 1.375rem;
  background: transparent;
  color: rgb(40, 87, 59);
  font-family: sans-serif;
  text-align: center;
  font-weight: 200;
  justify-self: center;
  z-index: 10;
}
main .fourth .left {
  flex: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 2rem;
  gap: 1.375rem;
}
main .fourth .left div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1.375rem;
  margin: 3rem 0;
}
main .fourth .left div .contactusbutton,
main .fourth .left div .bookroombutton {
  text-decoration: none;
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.375rem;
  color: rgb(216, 229, 209);
  padding: 1rem 1.5rem;
  border: 1px solid;
}
main .fourth .left div .contactusbutton {
  background-color: rgb(79, 91, 80);
  border-color: rgb(79, 91, 80);
}
main .fourth .left div .contactusbutton:hover {
  background-color: transparent;
  color: rgb(79, 91, 80);
}
main .fourth .left div .bookroombutton {
  background-color: rgb(40, 87, 59);
  border-color: rgb(40, 87, 59);
}
main .fourth .left div .bookroombutton:hover {
  background-color: transparent;
  color: rgb(40, 87, 59);
}
main .fourth .left h1 {
  flex: 1;
  color: rgb(8, 32, 9);
  font-size: 2.875rem;
  font-weight: 400;
  padding: 0;
  margin: 0;
  font-style: italic;
}
main .fourth .left h1 .bold {
  font-weight: 700;
  font-style: normal;
}
main .fourth .left p {
  font-size: 1.375rem;
  width: 80%;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  color: rgb(79, 91, 80);
  padding: 0;
  margin: 0;
}
main .fourth .right {
  flex: 5;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: calc(100% - 2rem);
  height: 100%;
  gap: 1.938rem;
  overflow-y: hidden;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 0;
  padding: 1rem 0 1rem 0;
}
main .fourth .right::-webkit-scrollbar {
  display: none;
}
main .fourth .right article {
  flex: 1;
  width: 100%;
  min-width: 20rem;
  height: 100%;
  min-height: 14em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: left;
  border: solid 0.0625rem rgb(40, 87, 59);
  padding: 1.375rem;
  gap: 2rem;
}
main .fourth .right article:first-child {
  margin-left: 0.1rem;
}
main .fourth .right article:last-child {
  margin-right: 1.938rem;
}
main .fourth .right article div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
main .fourth .right article div h2 {
  font-size: 1.625rem;
  color: rgb(8, 32, 9);
  font-family: "minion-pro", serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  text-align: left;
}
main .fourth .right article div span {
  width: 1.938rem;
  height: 1.938rem;
  background-color: rgb(40, 87, 59);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(216, 229, 209);
}
main .fourth .right article p {
  font-size: 1.375rem;
  line-height: 1.1;
  font-family: "Montserrat", sans-serif;
  color: rgb(79, 91, 80);
  padding: 0;
  margin: 0;
}
main .fifth {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: top;
  gap: 12.313rem;
  padding: 6rem 0 10rem 0;
}
main .fifth .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  margin: 2.375rem;
  margin-bottom: 0;
  gap: 4.125rem;
}
main .fifth .left h1 {
  font-size: 2.875rem;
  color: rgb(8, 32, 9);
  font-weight: 400;
  padding: 0;
  margin: 0;
  font-style: italic;
}
main .fifth .left h1 .bold {
  font-weight: 700;
  font-style: normal;
}
main .fifth .left p {
  font-size: 1.375rem;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  color: rgb(79, 91, 80);
  padding: 0;
  margin: 0;
}
main .fifth .left .articlefirst {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.375rem;
}
main .fifth .left .articlesecond {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: top;
  gap: 7.813rem;
}
main .fifth .left .articlesecond div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.625rem;
  flex: 1;
}
main .fifth .left .articlesecond div h2 {
  font-size: 1.375rem;
  color: rgb(79, 91, 80);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  text-align: left;
}
main .fifth .left .articlesecond div a,
main .fifth .left .articlesecond div p {
  font-size: 1.375rem;
  color: rgb(79, 91, 80);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  text-align: left;
}
main .fifth .left .articlesecond div a:hover {
  text-decoration: underline;
}
main .fifth .left .articlethird {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
main .fifth .left .articlethird a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-bottom: solid 0.0625rem rgb(8, 32, 9);
  border-top: none;
  border-left: none;
  border-right: none;
  text-decoration: none;
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.625rem;
  color: rgb(8, 32, 9);
  text-wrap: nowrap;
  background: transparent;
  cursor: pointer;
}
main .fifth .left .articlefourth {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1.375rem 2rem;
  width: 100%;
  background-color: rgb(8, 32, 9);
  gap: 2.75rem;
  font-size: 1.625rem;
  color: rgb(216, 229, 209);
  border: 1px solid rgb(8, 32, 9);
}
main .fifth .left .articlefourth .firstar {
  display: flex;
}
main .fifth .left .articlefourth .secondar {
  display: none;
}
main .fifth .left .articlefourth:hover {
  background-color: transparent;
  color: rgb(8, 32, 9);
}
main .fifth .left .articlefourth:hover .firstar {
  display: none;
}
main .fifth .left .articlefourth:hover .secondar {
  display: flex;
}
main .fifth .right {
  flex: 1;
  margin: 0 2.375rem 0 0;
}

footer {
  width: 100%;
  padding: 3.625rem 0;
  margin: 0;
  background-color: rgb(40, 87, 59);
  color: rgb(216, 229, 209);
  text-align: center;
  position: relative;
}
footer .footerBG {
  width: auto;
}
footer .footerBG img {
  padding: 0;
  margin: 0;
  height: 15rem;
  width: auto;
}
footer .footerBG .center {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
footer .footerBG .right {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(0%);
}
footer section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.75rem;
  margin: 0.625rem;
  padding: 0.625rem;
  position: relative;
  z-index: 2;
}
footer section .content {
  border-top: solid 0.0625rem transparent;
}
footer section div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 0.625rem;
}
footer section div .mobile {
  display: none;
}
footer section div .desktop {
  display: block;
  height: 5.9rem;
}
footer section div article nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.625rem;
}
footer section div article nav a {
  text-decoration: none;
  color: rgb(216, 229, 209);
  position: relative;
  transition: color 0.4s ease;
  font-size: 1.625rem;
  line-height: 0.9;
}
footer section div article nav a:hover {
  text-decoration: underline;
}
footer section div .right {
  text-transform: uppercase;
  font-size: 1.375rem;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 700px) {
  header {
    padding: 0.5rem;
  }
  header span img {
    height: 3.9rem;
    padding: 0;
    margin: 0;
  }
  header nav,
  header div {
    gap: 0.625rem;
    padding: 0 0.3125rem;
  }
  .bookroombutton {
    font-size: 1.8rem;
    padding: 1.2rem 1.7rem;
  }
  header nav {
    display: none;
  }
  header div .contactusbutton {
    display: none;
  }
  header .logo-mobile {
    display: block;
    gap: 1.6rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  header .logo-desktop {
    display: none;
  }
  main {
    margin: 0;
  }
  main .hero {
    padding-top: 0;
    margin: 0;
  }
  main .hero .left {
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  main .hero .left .gallery-wrapper {
    height: 100%;
    max-height: 100dvh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }
  main .hero .left .arrow-group {
    width: 50%;
    z-index: 100;
  }
  main .hero .left .arrow-group img {
    height: 1.7rem;
  }
  main .hero .left .arrow-group span {
    font-size: 2.2rem;
  }
  main .hero .left .gallery-item {
    height: 100%;
    max-height: 100dvh;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  main .hero .left .gallery-item img {
    height: 100%;
    max-height: 100dvh;
    width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    filter: grayscale(1);
  }
  main .hero .left .gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(8, 32, 9);
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
  }
  main .hero .left .onmobile {
    display: block;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 100%;
    gap: 2.2rem;
  }
  main .hero .left .onmobile h1 {
    color: rgb(216, 229, 209);
    font-style: italic;
    font-size: 3.6rem;
    line-height: 1.2;
    margin-bottom: 0.625rem;
    font-family: "minion-pro", serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  main .hero .left .onmobile .bold {
    font-weight: 700;
    font-style: normal;
  }
  main .hero .right {
    display: none;
  }
  main .second {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2rem;
    margin-bottom: 4rem;
    gap: 2.2rem;
  }
  main .second div {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 2;
  }
  main .second .desktop {
    display: none;
  }
  main .second .mobile {
    display: block;
  }
  main .second h1 {
    flex: 1;
    color: rgb(8, 32, 9);
    font-size: 3.2rem;
    font-weight: 400;
    padding: 0 2rem;
  }
  main .second h1 .bold {
    font-weight: 700;
  }
  main .second article {
    padding: 0rem 2rem;
  }
  main .second article p {
    width: 100%;
    font-size: 1.8rem;
  }
  main .second img {
    padding: 0;
    margin: 0;
    width: 20rem;
  }
  main .second .mobile {
    position: absolute;
    right: 0;
    top: 2%;
  }
  main .third {
    margin: 1.875rem 0;
  }
  main .third .mobile {
    margin: 1.875rem 0;
    display: block;
    width: 100%;
    max-width: calc(100vw - 1.5rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 0.5rem;
  }
  main .third .desktop {
    display: none;
  }
  main .third img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    grid-column: 1/-1;
    grid-row: 1/-1;
    padding: 0;
    margin: 0;
  }
  main .third #first {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  main .third #second {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  main .third #third {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  main .third #fourth {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 5;
  }
  main .third #fifth {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 5;
    grid-row-end: 7;
  }
  main .third #sixth {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 5;
    grid-row-end: 7;
  }
  main .fourth {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  main .fourth .arrow-group {
    left: 0%;
    transform: translateX(65%) translateY(-400%);
    gap: 1rem;
  }
  main .fourth .arrow-group img {
    height: 1.2rem;
  }
  main .fourth .arrow-group span {
    font-size: 2.2rem;
  }
  main .fourth .arrow-group .counter {
    font-size: 1.6rem;
  }
  main .fourth .left {
    flex: 1;
    justify-content: flex-start;
    align-items: start;
  }
  main .fourth .left p,
  main .fourth .left div {
    display: none;
  }
  main .fourth .left h1 {
    text-align: left;
    margin-left: 2.6rem;
  }
  main .fourth .right {
    flex: 1;
    gap: 1.375rem;
    margin-left: 2.6rem;
  }
  main .fifth {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  main .fifth .left {
    flex: none;
    justify-content: flex-start;
    align-items: start;
    margin: 0;
    padding: 2.6rem 0 4rem 0rem;
    width: 90%;
  }
  main .fifth .left h1 {
    text-align: center;
    font-size: 3.2rem;
  }
  main .fifth .left p {
    width: 100%;
    font-size: 1.8rem;
  }
  main .fifth .left .articlesecond h2 {
    font-size: 1.9rem;
  }
  main .fifth .left .articlesecond a {
    font-size: 2rem;
  }
  main .fifth .left .articlethird {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  main .fifth .left .articlethird a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1.6rem;
  }
  main .fifth .left .articlethird a svg {
    height: 1.2rem;
  }
  main .fifth .left .articlefourth {
    display: none;
  }
  main .fifth .left .right {
    display: none;
  }
  main .fifth .right {
    width: 90%;
    height: 100%;
    min-height: 40rem;
    margin: 0;
  }
  main .fifth .right iframe {
    width: 100%;
    height: 100%;
    min-height: 40rem;
  }
  footer .footerBG {
    width: auto;
  }
  footer .footerBG .center {
    display: none;
    height: 13.791rem;
  }
  footer section .content {
    border-top: solid 0.1rem rgb(216, 229, 209);
    margin: 0;
  }
  footer section div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer section div .desktop {
    display: none;
  }
  footer section div .mobile {
    display: block;
    height: 5.8rem;
  }
  footer section div article nav {
    display: flex;
    flex-direction: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.625rem;
    margin: 2.2rem 2rem 4.4rem 2rem;
  }
  footer section div article nav a {
    font-size: 2.6rem;
    white-space: nowrap;
  }
  footer section div .right {
    text-align: center;
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=styles.css.map */