/* Master Styles */
/* width */
::-webkit-scrollbar {
  width: 0;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px transparent;
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 0px;
}

@font-face {
  font-family: "Mexa-Regular";
  src: url("Mexa-Regular.eot"); /* IE9 Compat Modes */
  src: url("webfont.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("Mexa-Regular.woff2") format("woff2"),
    /* Super Modern Browsers */ url("Mexa-Regular.woff") format("woff"),
    /* Pretty Modern Browsers */ url("Mexa-Regular.ttf") format("truetype"),
    /* Safari, Android, iOS */ url("Mexa-Regular.svg#svgMexa-Regular")
      format("svg"); /* Legacy iOS */
}

/* Scroll Styles*/
:root {
  --var-color-one: rgb(255, 254, 240);
  --var-color-two: rgb(77, 72, 67);
  --var-color-three: rgb(235, 221, 210);
  --var-color-four: rgb(217, 223, 219);
  --var-color-five: #f5efe1;
  --var-color-six: rgb(82, 68, 64);
  --var-color-seven: rgb(245, 237, 226);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

html,
body {
  background-color: var(--var-color-seven);
  width: 100%;
  max-width: 2000px;
}

body {
  overflow-x: hidden;
}

#content {
  min-height: calc(100% - 20px);
}

/*Container Styles*/
.container-top {
  width: 100%;
  max-width: 100%;
  z-index: 1;
  background-color: transparent;
}

.video {
  width: 100%;
  filter: brightness(0.6);
}

.container-top-portfolio {
  width: 100%;
  max-width: 100%;
  z-index: 1;
  background-color: transparent;
}

.container {
  width: 100%;
  max-width: 100%;
  padding-top: 10%;
  background-color: transparent;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.container-photo-gallery {
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding: 0 6rem;
}

@media screen and (max-width: 600px) {
  .container-photo-gallery {
    padding: 0 1rem;
  }
}

.container-photo-gallery-portfolio {
  z-index: -1;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  padding-left: 0;
  padding-right: 0;

  background-color: transparent;
}

@media screen and (max-width: 600px) {
  .container-photo-gallery-portfolio {
    height: auto;
  }
}

/* Nav Styles*/
.nav {
  position: fixed;
  display: flex;
  background-color: transparent;
  z-index: 9999999999999999999;
  max-width: 100%;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  min-height: 10vh;
  padding-top: 0.3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  transition: 0.1s ease-in-out;
  border-bottom: 1px solid rgb(255, 254, 240, 0);
}

@media screen and (max-width: 1420px) {
  .nav {
    padding-top: 1px;
  }
}

.nav-active {
  opacity: 1;
  filter: drop-shadow(100px);
  background-color: var(--var-color-seven);
  background: radial-gradient(
      ellipse at top,
      rgb(246, 234, 223),
      rgb(242, 240, 231, 0.6)
    ),
    radial-gradient(
      ellipse at bottom,
      rgb(246, 234, 223),
      rgb(242, 240, 231, 0.6)
    );
  color: var(--var-color-six);
  padding: 1px 1rem;
  min-height: 9vh;
}

.nav-active .left-side .brand {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--var-color-six);
}

.nav-active .left-side .brand a {
  font-family: "italiana", serif;
  color: var(--var-color-six);
}

.nav-active .left-side .brand a:link {
  color: var(--var-color-six);
}

.nav-active .left-side .brand a:visited {
  color: var(--var-color-six);
}

.nav-active .nav-links {
  display: flex;
  color: var(--var-color-six);
}

.nav-active .nav-links a:link {
  color: var(--var-color-six);
}

.nav-active .nav-links a:visited {
  color: var(--var-color-six);
}

.left-side .brand {
  display: flex;
  text-align: center;
  letter-spacing: 1px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 0.6;
}

@media screen and (max-width: 600px) {
  .left-side .brand {
    font-size: 1.2rem;
  }
}

.left-side .brand:hover {
  cursor: pointer;
}

.left-side .brand a {
  outline: none;
  text-decoration: none;
  font-family: "italiana", serif;
}

.left-side .brand a {
  padding: 2px 1px 0;
}

.left-side .brand a:hover {
  opacity: 0.3;
}

.left-side .brand a:link {
  color: var(--var-color-one);
}

.left-side .brand a:visited {
  color: var(--var-color-one);
}

.left-side .brand a:focus {
  border-bottom: 1px solid;
}

.left-side .brand a:after {
  display: block;
  content: "";
  border-bottom: solid 1px transparent;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

.left-side .brand a:after {
  transform-origin: 100% 50%;
}

.left-side .brand a:hover:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}

.left-side .brand a:active {
  background: transparent;
}

.left-side .brand li {
  list-style: none;
}

.left-side .brand span {
  font-family: "monsieur la doulaise", cursive;
  font-size: 2.2rem;
  font-weight: 100;
  letter-spacing: 0.03rem;
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  .left-side .brand span {
    font-size: 2.2rem;
  }
}

.nav-links {
  display: flex;
  text-decoration: none;
  letter-spacing: 0.3px;
  font-size: 1rem;
  font-weight: 400;
  transform: translateX(0px);
}

@media screen and (max-width: 600px) {
  .nav-links {
    font-size: 0.9rem;
  }
}

.nav-links:hover {
  cursor: pointer;
}

.nav-links a {
  outline: none;
  text-decoration: none;
  font-family: "italiana", serif;
}

.nav-links a {
  padding: 2px 1px 0;
}

.nav-links a:hover {
  opacity: 0.3;
}

.nav-links a:link {
  color: var(--var-color-one);
}

.nav-links a:visited {
  color: var(--var-color-one);
}

.nav-links a:focus {
  border-bottom: 1px solid;
}

.nav-links a:after {
  display: block;
  content: "";
  border-bottom: solid 1px transparent;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

.nav-links a:after {
  transform-origin: 100% 50%;
}

.nav-links a:hover:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}

.nav-links a:active {
  background: transparent;
}

.nav-links div {
  list-style: none;
  padding: 10px;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger:hover {
  opacity: 0.3;
}

.hamburger div {
  width: 20px;
  height: 1.6px;
  background-color: #fffef0;
  transition: all 0.3s ease;
  margin: 5px;
}

.line2 {
  opacity: 1;
}

@media screen and (max-width: 200px) {
  body {
    overflow-x: hidden;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    z-index: 99999999999999999999999999999999999999999999999999999999999999999999;
    position: absolute;
    width: 100%;
    transition: transform 0.5s ease-in;
    font-family: "roboto", sans-serif;
  }

  .nav-links div {
    opacity: 0;
    width: 80px;
    padding: 2px;
  }

  .nav-active .nav-links {
    display: flex;
    padding-bottom: 10%;
  }

  .nav-active .hamburger {
    display: block;
  }

  .nav-active {
    transform: translateX(0%);
  }

  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(200px);
    }
    to {
      opacity: 1;
      transform: translateX(100px);
    }
  }

  .toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 10px);
    opacity: 1;
  }
  .toggle .line2 {
    transform: rotate(180deg) translate(-5px, -6px);
    opacity: 0;
  }
  .toggle .line3 {
    transform: rotate(-360deg) translate(-5px, 5px);
    opacity: 1;
  }
}

@media screen and (max-width: 1000px) {
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }
}

@media screen and (max-width: 700px) {
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(-100px);
    }
  }
}

/* Photo Styles*/
.portfolio-items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-right: 0;
  padding-left: 0;
  position: relative;
  gap: 1rem;
}

.portfolio-img-background-top {
  height: 800px;
  width: 100%;
  z-index: 99999999;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(100%);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-top {
    height: 650px;
  }
}

.portfolio-img-background-top-contact {
  height: 1000px;
  width: 100%;
  z-index: 99999999;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(50%);
}

.portfolio-img-background-1 {
  height: 500px;
  width: 100%;
  z-index: 99999999;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out; /* Animation */
  filter: brightness(115%);
}

.portfolio-img-background-1:hover {
  transform: scale(1.01);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-1 {
    height: 250px;
    transform: translateY(0px);
  }
}

.portfolio-img-background-2 {
  height: 250px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(100%);
  transition: transform 0.2s ease-in-out; /* Animation */
}

.portfolio-img-background-2:hover {
  transform: scale(1.01);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-2 {
    height: 125px;
    transform: translateY(0px);
  }
}

.portfolio-img-background-3 {
  height: 250px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out; /* Animation */
  filter: brightness(120%);
}

.portfolio-img-background-3:hover {
  transform: scale(1.01);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-3 {
    height: 125px;
    transform: translateY(0px);
  }
}

.portfolio-img-background-4 {
  height: 250px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(110%);
  transition: transform 0.2s ease-in-out; /* Animation */
}

.portfolio-img-background-4:hover {
  transform: scale(1.01);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-4 {
    height: 125px;
    transform: translateY(0px);
  }
}

.portfolio-img-background-5 {
  height: 250px;
  width: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-250px);
  filter: brightness(90%);
  transition: transform 0.2s ease-in-out; /* Animation */
}

.portfolio-img-background-5:hover {
  transform: scale(1.01) translateY(-250px);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-5 {
    height: 125px;
    transform: translateY(-125px);
  }
  .portfolio-img-background-5:hover {
    transform: scale(1.01) translateY(-125px);
  }
}

.portfolio-img-background-6 {
  height: 500px;
  width: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(100%);
  transform: translateY(-250px);
  transition: transform 0.2s ease-in-out; /* Animation */
}

.portfolio-img-background-6:hover {
  transform: scale(1.01) translateY(-250px);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-6 {
    height: 250px;
    transform: translateY(-125px);
  }
  .portfolio-img-background-6:hover {
    transform: scale(1.01) translateY(-125px);
  }
}

.portfolio-img-background-7 {
  height: 250px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(100%);
  transform: translateY(-250px);
  transition: transform 0.2s ease-in-out; /* Animation */
}

.portfolio-img-background-7:hover {
  transform: scale(1.01) translateY(-250px);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-7 {
    height: 125px;
    transform: translateY(-125px);
  }
  .portfolio-img-background-7:hover {
    transform: scale(1.01) translateY(-125px);
  }
}

.portfolio-img-background-8 {
  height: 500px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(100%);
  transform: translateY(-500px);
  transition: transform 0.2s ease-in-out; /* Animation */
}

.portfolio-img-background-8:hover {
  transform: scale(1.01) translateY(-500px);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-8 {
    height: 250px;
    transform: translateY(-250px);
  }
  .portfolio-img-background-8:hover {
    transform: scale(1.01) translateY(-250px);
  }
}

.portfolio-img-background-9 {
  height: 250px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(100%);
  transform: translateY(-250px);
  transition: transform 0.2s ease-in-out; /* Animation */
}

.portfolio-img-background-9:hover {
  transform: scale(1.01) translateY(-250px);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-9 {
    height: 125px;
    transform: translateY(-125px);
  }
  .portfolio-img-background-9:hover {
    transform: scale(1.01) translateY(-125px);
  }
}

.portfolio-img-background-10 {
  height: 500px;
  width: 120%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
  transform: translateX(0%);
}
@media screen and (max-width: 1400px) {
  .portfolio-img-background-10 {
    height: 550px;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .portfolio-img-background-10 {
    transform: translateY(0px);
    height: 500px;
  }
}

@media screen and (max-width: 700px) {
  .portfolio-img-background-10 {
    transform: translateY(0px);
    height: 600px;
  }
}
@media screen and (max-width: 600px) {
  .portfolio-img-background-10 {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 500px;
    transform: translateY(-10px);
    margin-left: 1rem;
  }
}

.portfolio-img-background-10a {
  display: block;
  height: 750px;
  width: 120%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
  transform: translateX(0%);
  padding: 3rem 0;
}
@media screen and (max-width: 1200px) {
  .portfolio-img-background-10a {
    height: 550px;
    width: 120%;
  }
}

@media screen and (max-width: 1000px) {
  .portfolio-img-background-10a {
    height: 600px;
  }
}

@media screen and (max-width: 900px) {
  .portfolio-img-background-10a {
    height: 700px;
  }
}
@media screen and (max-width: 800px) {
  .portfolio-img-background-10a {
    height: 750px;
  }
}

@media screen and (max-width: 700px) {
  .portfolio-img-background-10a {
    height: 800px;
  }
}
@media screen and (max-width: 600px) {
  .portfolio-img-background-10a {
    display: block;
    justify-content: center;
    width: 100%;
    height: 500px;
    margin-left: 1rem;
  }
}

.portfolio-img-background-10aa {
  display: none;
  height: 550px;
  width: 120%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
  transform: translateX(0%);
}
@media screen and (max-width: 1200px) {
  .portfolio-img-background-10aa {
    height: 550px;
    width: 120%;
  }
}
@media screen and (max-width: 1000px) {
  .portfolio-img-background-10aa {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 600px) {
  .portfolio-img-background-10aa {
    display: block;
    justify-content: center;
    width: 100%;
    height: 300px;
    transform: translateX(-1rem);
  }
}

.portfolio-img-background-10b {
  display: none;
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-10b {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 400px;
    transform: translateX(-1rem);
  }
}
.portfolio-img-background-11 {
  height: 600px;
  width: 50%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-img-background-12 {
  height: 600px;
  width: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(100px);
}

.portfolio-img-background-13 {
  height: 600px;
  width: 100%;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-darken {
  transition: 1s;
  filter: grayscale(100%);
}

.intro {
  width: 50%;
  height: 350px;
  box-sizing: border-box;
  position: relative;
  padding: 10%;
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 5%;
}

.slideShowImages {
  position: absolute;
  transition: opacity 2s ease-in-out;
  width: 100%;
  height: 350px;
  object-fit: cover;
  z-index: 99999999999999999999999999999999999999999999999999999;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(100%);
  transition: transform 0.2s; /* Animation */
  cursor: pointer;
}

.slideShowImages:hover {
  transform: scale(1.2);
}

/* Text-Index Styles*/

.text-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: absolute;
  color: var(--var-color-one);
  transform: translateY(-600px);
  background-color: transparent;
  width: 50%;
  z-index: 5;
}

.text-top h1 {
  display: flex;
  width: 100%;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: none;
  font-family: "italiana", "roboto", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

.text-top h1 span {
  width: 90%;
  text-align: left;
  font-size: 2.2rem;
  font-weight: 100;
  letter-spacing: 0.03rem;
  text-transform: none;
  font-family: "monsieur la doulaise", cursive;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
  padding: 0 1rem 0 3rem;
  opacity: 0.6;
}
.text-top p {
  display: flex;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-family: "roboto", sans-serif;
  font-weight: 400;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

.text-top h3 {
  text-align: center;
  font-size: 1rem;
  font-family: "roboto", sans-serif;
  font-weight: 400;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
  color: var(--var-color-one);
}

.text-top h3 a {
  display: flex;
  text-align: center;
  font-size: 0.8rem;
  font-family: "roboto", sans-serif;
  font-weight: 400;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
  color: var(--var-color-one);
  border: 1px solid var(--var-color-one);
  padding: 1rem 3rem;
}

@media screen and (max-width: 1400px) {
  .text-top {
    transform: translateY(-550px);
  }
}

@media screen and (max-width: 1200px) {
  .text-top {
    transform: translateY(-450px);
  }
  .text-top h1 span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1000px) {
  .text-top {
    display: none;
  }
}

.text-quote {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 30rem 6rem;
  text-align: center;
  background-color: transparent;
  color: var(--var-color-six);

  z-index: 9999999999999999;
}

@media screen and (max-width: 1290px) {
  .text-quote {
    padding: 0 15rem 6rem;
  }
}

@media screen and (max-width: 1000px) {
  .text-quote {
    position: relative;

    padding: 0 10rem 6rem;
  }
}

@media screen and (max-width: 600px) {
  .text-quote {
    padding: 6rem 3rem 9rem;
  }
}

.text-quote h1 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03rem;
  font-family: "italiana", "monsieur la doulaise", serif;
  line-height: 1.4;
}

.text-quote p {
  font-size: 0.8rem;
  font-weight: 400;

  text-transform: uppercase;
  font-family: "roboto", sans-serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

@media screen and (max-width: 1000px) {
  .text-quote h1 {
    font-weight: 500;
    font-family: "italiana", serif;
    line-height: 1.6;
  }

  .text-quote p {
    font-size: 0.8rem;
    line-height: 1.6;
    padding-top: 0.5rem;
  }
}

/* Container for the location list */
.location-container {
  font-family: "italiana", sans-serif;
  font-size: 1rem;
  text-align: center;
  color: var(--var-color-six);
  line-height: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 1rem 6rem 1rem;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  .location-container {
    font-size: 0.9;
  }
}

.location-container span {
  font-family: "monsieur la doulaise", cursive;
  font-size: 2.2rem;
  text-align: center;
  color: var(--var-color-six);
  line-height: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 1rem 0;
  text-transform: none;

  z-index: 999999999999999999999999999999999;
}

@media screen and (max-width: 600px) {
  .location-container span {
    padding: 3rem 1rem 0;
  }
}

/* Style for the heading text */
.location-heading {
  font-size: 2.2rem;
  font-weight: 100;
  color: var(--var-color-six);
  margin: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
  font-family: "monsieur la doulaise", cursive;
  text-transform: none;
}

/* Animation for the text fading in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Typewriter effect for the list of locations */
.location-list {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  animation: typing 20s steps(500) 1s forwards infinite, 0.75s step-end infinite;
}

/* Typing animation */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Blinking cursor animation 
@keyframes blink {
  50% {
    border-color: transparent;
  }
}*/

/* Cursor style for the typewriter effect */
.location-list::after {
  content: "";
  /*animation: blink 0.75s step-end infinite;*/
  border-right: 0px solid rgba(255, 254, 240, 0);
  margin-left: 10px;
}

.text-members {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--var-color-six);
  padding: 0 24rem;
  transform: translateY(-400px);
}

@media screen and (max-width: 1000px) {
  .text-members {
    padding: 0 12rem;
    color: var(--var-color-six);
    transform: translateY(-400px);
  }
}

@media screen and (max-width: 1290px) {
  .text-members {
    padding: 3rem 15rem 6rem;
  }
}

@media screen and (max-width: 900px) {
  .text-members {
    transform: translateY(-360px);
    padding: 3rem 10rem;
  }
}

@media screen and (max-width: 700px) {
  .text-members {
    transform: translateY(-360px);
    padding: 3rem 9rem;
  }
}

@media screen and (max-width: 600px) {
  .text-members {
    transform: translateY(-180px);
    padding: 3rem 1rem;
    text-align: left;
  }
}

.text-members p {
  display: flex;
}

.text-members h1 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: none;
  font-family: "italiana", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

.text-members h2 span a {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: "roboto", sans-serif;
  padding: 1rem 3rem;
  border: 1px solid rgb(82, 68, 64, 0.3);
  text-decoration: none;
  color: var(--var-color-six);
  text-transform: uppercase;
  line-height: 1.6;
}

.text-members h2 {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  font-family: "roboto", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

@media screen and (max-width: 600px) {
  .text-members h2 {
    font-size: 1rem;
  }
}

.text-information {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  text-align: left;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--var-color-six);
  padding: 0 12rem;
}

@media screen and (max-width: 1200px) {
  .text-information {
    padding: 0 3rem;
  }
}

@media screen and (max-width: 1000px) {
  .text-information {
    padding: 0 3rem;
  }
}

@media screen and (max-width: 600px) {
  .text-information {
    padding: 3rem 1rem 6rem;
  }
}

.text-information p {
  display: flex;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "mulish", sans-serif;
}

.text-information h1 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: none;
  font-family: "italiana", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

.text-information h2 span a {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: "roboto", sans-serif;
  padding: 1rem 3rem;
  border: 1px solid rgb(82, 68, 64, 0.3);
  text-decoration: none;
  color: var(--var-color-six);
  text-transform: uppercase;
  line-height: 1.6;
}

.text-information h2 {
  font-size: 1rem;
  font-weight: 350;
  letter-spacing: 0.1rem;
  font-family: "roboto", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

@media screen and (max-width: 600px) {
  .text-information h2 {
    font-size: 1rem;
  }
}

.text-information2 {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  text-align: left;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--var-color-six);
  padding: 12rem 12rem 0 3rem;
}

@media screen and (max-width: 1200px) {
  .text-information2 {
    padding: 6rem 3rem;
  }
}

@media screen and (max-width: 1000px) {
  .text-information2 {
    padding: 3rem 3rem;
  }
}

@media screen and (max-width: 700px) {
  .text-information2 {
    padding: 1rem 3rem;
  }
}

@media screen and (max-width: 600px) {
  .text-information2 {
    padding: 3rem 1rem 6rem 1rem;
  }
}

.text-information2 p {
  display: flex;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "mulish", sans-serif;
}

.text-information2 h1 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: none;
  font-family: "italiana", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

.text-information2 h2 span a {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: "roboto", sans-serif;
  padding: 1rem 3rem;
  border: 1px solid rgb(82, 68, 64, 0.3);
  text-decoration: none;
  color: var(--var-color-six);
  text-transform: uppercase;
  line-height: 1.6;
}

.text-information2 h2 {
  font-size: 1rem;
  font-weight: 350;
  letter-spacing: 0.1rem;
  font-family: "roboto", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

@media screen and (max-width: 600px) {
  .text-information2 h2 {
    font-size: 1rem;
  }
}

.container-text-body {
  background-color: transparent;
  transform: translateY(-15rem);
}

@media screen and (max-width: 600px) {
  .container-text-body {
    transform: translateY(-5rem);
  }
}

.text-body {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: left;
  padding: 1rem 0;
}

@media screen and (max-width: 600px) {
  .text-body {
    grid-template-columns: 1fr;
    padding: 0 0 1rem;
  }
}

.text-glow {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--var-color-six);
  padding: 0 24rem;
  transform: translateY(-400px);
}

@media screen and (max-width: 1000px) {
  .text-glow {
    padding: 0 12rem;
    color: var(--var-color-six);
    transform: translateY(-400px);
  }
}

@media screen and (max-width: 1290px) {
  .text-glow {
    padding: 3rem 15rem 6rem;
  }
}

@media screen and (max-width: 900px) {
  .text-glow {
    transform: translateY(-360px);
    padding: 3rem 10rem;
  }
}

@media screen and (max-width: 700px) {
  .text-glow {
    transform: translateY(-360px);
    padding: 3rem 9rem;
  }
}

@media screen and (max-width: 600px) {
  .text-glow {
    transform: translateY(-180px);
    padding: 3rem 1rem;
    text-align: left;
  }
}

.text-glow p {
  display: flex;
}
.text-glow h1 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: none;
  font-family: "italiana", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

.text-press-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 600px) {
  .text-press-container {
    display: block;
  }
}

.text-press {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--var-color-six);
  padding: 0 24rem;
}

@media screen and (max-width: 1000px) {
  .text-press {
    padding: 0 12rem;
    color: var(--var-color-six);
  }
}

@media screen and (max-width: 1290px) {
  .text-press {
    padding: 3rem 15rem 6rem;
  }
}

@media screen and (max-width: 900px) {
  .text-press {
    padding: 3rem 10rem;
  }
}

@media screen and (max-width: 700px) {
  .text-press {
    padding: 3rem 9rem;
  }
}

@media screen and (max-width: 600px) {
  .text-press {
    padding: 3rem 1rem;
    text-align: left;
  }
}

.text-press p {
  display: flex;
}
.text-press h1 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: none;
  font-family: "italiana", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

.text-press h2 a {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: "roboto", sans-serif;
  padding: 1rem 3rem;
  border: 1px solid rgb(82, 68, 64, 0.3);
  text-decoration: none;
  color: var(--var-color-six);
  text-transform: uppercase;
  line-height: 1.6;
}

.text-press h2 {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  font-family: "roboto", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

@media screen and (max-width: 600px) {
  .text-press h2 {
    font-size: 1rem;
  }
}

.text-press h3 a {
  font-size: 0.9rem;
  font-weight: 400;
  font-family: "roboto", sans-serif;

  text-decoration: none;
  color: var(--var-color-six);
  text-transform: uppercase;
  line-height: 1.6;
}

.text-press h3 {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  font-family: "roboto", serif;
  text-shadow: rgb(77, 72, 67);
  line-height: 1.6;
}

@media screen and (max-width: 600px) {
  .text-press h3 {
    font-size: 1rem;
  }
}

/*Slide-in JS Animation Text*/
ul {
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateY(0rem);
  padding: 3rem 1rem 1rem 15rem;
}

@media screen and (max-width: 1200px) {
  ul {
    padding-left: 10%;
  }
}

@media screen and (max-width: 1000px) {
  ul {
    height: 60vh;
    padding-bottom: 3%;
  }
}

@media screen and (max-width: 600px) {
  ul {
    padding: 6rem 1rem 6rem 1rem;
    height: 69vh;
  }
}

ul li {
  height: 2rem;
  display: flex;
  overflow: hidden;
  margin-bottom: 0.5rem;
  justify-content: flex-start;
}
@media screen and (max-width: 600px) {
  ul li {
    height: 2rem;
    justify-content: center;
  }
}

ul li span {
  display: block;
  line-height: 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: "italiana", serif;
  transform: translateY(200%);
  margin: 0.03rem;
  color: var(--var-color-six);
}

@media screen and (max-width: 600px) {
  ul li span {
    font-size: 1rem;
    line-height: 1.4rem;
  }
}

ul li span.active {
  transform: translateY(0%);
  transition: 1s ease-out;
}

ul li:hover {
  opacity: 1;
}

ul a:hover {
  text-decoration: none;
  list-style: none;
}

.gap {
  width: 0.3rem;
}

/* Portfolio Photo Styles*/
.portfolio-items-wrapper-p {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  position: relative;
}

.portfolio-item-wrapper-p {
  padding: 0;
}

.portfolio-img-background-p {
  z-index: -1;
  height: 400px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6);
}

.portfolio-img-background-p:hover {
  transform: scale(1);
  filter: brightness(1);
}

@media screen and (max-width: 600px) {
  .portfolio-img-background-p {
    height: 200px;
  }
}

.img-darken {
  transition: 1s;
  filter: brightness(70%);
}

/*Misc. Styles*/

hr {
  color: var(--var-color-one);
  border-top: 1px solid;
  opacity: 0.1;
}

img {
  width: 100%;
  height: 300px;

  background-size: cover;
  filter: brightness(60%);
}

img:hover {
  filter: brightness(30%);
}

.card-container {
  padding: 1rem;
  margin: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 6rem 6rem;
}

@media screen and (max-width: 1000px) {
  .card-container {
    padding: 3rem 3rem;
  }
}

@media screen and (max-width: 600px) {
  .card-container {
    padding: 1rem 3rem;
  }
}

.cards {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 450px);
  gap: 1.6rem;
  width: 100%;
  padding: 1rem;
}

@media screen and (max-width: 1400px) {
  .cards {
    grid-template-columns: repeat(2, 450px);
  }
}

@media screen and (max-width: 1000px) {
  .cards {
    grid-template-columns: repeat(1, 450px);
  }
}

@media screen and (max-width: 800px) {
  .cards {
    grid-template-columns: repeat(1, 450px);
  }
}

@media screen and (max-width: 600px) {
  .cards {
    grid-template-columns: repeat(1, 450px);
  }
}
.card {
  border: 0px solid transparent;

  background-color: var(--var-color-three);

  height: 450px;
}

.cards a {
  text-decoration: none;
  list-style: none;
}

.card-content {
  grid-template-columns: repeat(1, 450px);
  padding: 0rem;
  display: grid;
  width: 100%;
  padding: 1.6rem 1rem;
}

.card-content h1 {
  position: relative;
  text-align: center;
  color: var(--var-color-six);
  font-size: 1.6rem;
  font-weight: 100;
  letter-spacing: 0.03rem;
  text-decoration: none;
  list-style: none;
  font-family: "monsieur la doulaise", cursive;
  padding: 0;
}

.card-content p {
  text-align: center;
  width: 100%;
  color: var(--var-color-six);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  list-style: none;
  font-family: "mulish", sans-serif;
  padding: 0;
}

.card-content a:link {
  text-decoration: none;
  list-style: none;
}

/*Footer Styles*/

.footer {
  overflow: hidden;
  position: absolute;
  text-align: center;
  width: 100%;
  max-width: 100%;
  color: var(--var-color-one);
  background-color: transparent;
  background: radial-gradient(ellipse at top, rgb(102, 81, 75), rgb(82, 68, 64)),
    radial-gradient(ellipse at bottom, rgb(82, 68, 64), rgb(102, 81, 75));
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 8%;
  padding-bottom: 8%;
}

.footer h1 {
  font-family: "italiana", serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 1rem;
}

.footer h1 span {
  font-family: "monsieur la doulaise", cursive;
  font-weight: 100;
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.8;
}

.footer p {
  font-family: "italiana", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1.8;
  padding: 1rem;
}

.footer p span {
  font-family: "monsieur la doulaise", cursive;
  font-weight: 100;
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.8;
}

.footer p a {
  font-family: "italiana", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 1.8;
  color: var(--var-color-one);
}

.footer p a span {
  font-family: "italiana", serif;
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 1%;
  line-height: 1.8;
  color: var(--var-color-one);
}

/* Fade-In Animation */
.fadeIn {
  animation: fadeInAnimation 1s forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Start from below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at original position */
  }
}

/* Optional: Add a slight delay before the animation starts */
.animated {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

/* For portfolio item hover effect */
.img-darken {
  filter: brightness(0.7);
}

/* Adding fade-in effect for images and text */
.portfolio-item-wrapper-p,
.text-body-portfolio,
h1,
h2,
h3 {
  opacity: 0; /* Initially hidden */
  transition: opacity 1s ease-in-out;
}

/* Cookie Popup Styles */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;

  width: 100%;
  background-color: rgb(82, 68, 64, 0.9);
  color: var(--var-color-one);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem 1rem;
  z-index: 9999999999999999999999999;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2),
    -10px -10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-popup-content {
  width: 90%;
  max-width: 600px;
  text-align: center;
  font-size: 1rem;
}

.cookie-popup h1 {
  font-family: "italiana", serif;
  text-align: center;
  margin-top: 50px;
  font-size: 1rem;
}

.cookie-popup p {
  font-family: "italiana", serif;
  font-size: 1rem;
  text-align: center;
}

.cookie-popup h2 {
  font-family: "italiana", serif;
  font-size: 1rem;
}

.cookie-popup button {
  background-color: rgb(235, 221, 210);
  color: var(--var-color-six);
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  font-family: "italiana", serif;
  text-transform: uppercase;
}

.cookie-popup button:hover {
  background-color: rgb(102, 81, 75);
  color: white;
}

/* Animation for Popup */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cookie-popup {
  animation: fadeIn 1s ease-in-out;
}
