@charset "UTF-8";
/*!
Theme Name: Green Flow
Theme URI:
Author: Mihai Yannick Gonçalo
Author URI:
Description: Custom Theme.
Version: 0.1
*/
@font-face {
  font-family: "Petrona";
  src: url(assets/fonts/Petrona-LightItalic.woff) format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Petrona";
  src: url(assets/fonts/Petrona-Light.woff) format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Petrona";
  src: url(assets/fonts/Petrona-Regular.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Petrona";
  src: url(assets/fonts/Petrona-Medium.woff) format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Petrona";
  src: url(assets/fonts/Petrona-MediumItalic.woff) format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Petrona";
  src: url(assets/fonts/Petrona-Bold.woff) format("woff");
  font-weight: 700;
}
body {
  background-color: #F1FFFA;
  font-family: Petrona;
  color: #191e2b;
}

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

.header {
  background: #191e2bD6;
  position: fixed;
  z-index: 9999;
  width: 100%;
}
.header_container {
  color: #F1FFFA;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  justify-content: space-between;
}
.header_container_logo {
  display: flex;
  align-items: center;
  min-width: 4rem;
  max-width: 10rem;
}
.header_container_navbar {
  padding: 0.8rem 0;
}
.header_container_navbar ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header_container_navbar ul li:not(.current_page_item) a {
  text-decoration: none;
}
.header_container_navbar ul li a {
  color: #F1FFFA;
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.footer {
  background: #191e2b;
  position: relative;
  overflow: hidden;
  color: #F1FFFA;
}
@media screen and (max-width: 974px) {
  .footer {
    display: flex;
    flex-direction: column;
  }
}
.footer_background {
  position: absolute;
  right: 0;
  bottom: -50%;
  opacity: 0.05;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .footer_background {
    bottom: 0;
  }
}
.footer_content {
  position: relative;
  z-index: 2;
  min-width: 100%;
  min-height: 100%;
}
@media screen and (max-width: 974px) {
  .footer_content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.footer_content_up {
  display: flex;
  padding: 2rem 10rem;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 974px) {
  .footer_content_up {
    flex-direction: column;
    margin-top: 20px;
  }
}
.footer_content_up_logo {
  max-width: 8rem;
  margin: 15px;
}
.footer_content_up_contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer_content_up_contact_block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-inline: 1rem;
}
.footer_content_up_contact_block_inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
@media screen and (max-width: 974px) {
  .footer_content_up_contact_block_inline {
    text-wrap: nowrap;
  }
}
.footer_content_up_contact_block_inline_svg {
  fill: #F1FFFA;
  height: 1lh;
}
.footer_content > hr {
  border-top: none;
  opacity: 0.5;
}
.footer_content_down {
  display: flex;
  padding: 2rem 10rem;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 974px) {
  .footer_content_down {
    justify-content: center;
  }
}
.footer_content_down_text {
  opacity: 0.6;
  text-wrap: nowrap;
}
.footer_content_down_icons {
  display: flex;
  gap: 1.2rem;
}
.footer_content_down_icons_icon {
  height: 5vh;
  aspect-ratio: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  border-radius: 50%;
  border: 1px solid #F1FFFA;
}

.fp_main_hero {
  display: flex;
  height: 100vh;
  width: 100%;
  background: black;
  justify-content: center;
  align-items: center;
  position: relative;
}
.fp_main_hero_video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
  opacity: 0.5;
  object-fit: cover;
}
.fp_main_hero_content {
  position: absolute;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.fp_main_hero_content_title {
  font-size: clamp(2rem, 3vw, 6rem);
  text-align: center;
}
.fp_main_hero_content_title span {
  font-style: italic;
}
.fp_main_hero_content_cta {
  padding: 1rem 2rem;
  font-size: 2rem;
  color: #F1FFFA;
  background: #191e2b;
  border-radius: 2px;
  border: 2px #F1FFFA solid;
  text-decoration: none;
}

.fp_main_section {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  padding: 5rem;
}
.fp_main_section_title {
  font-size: clamp(1.1rem, 4vw, 3rem);
  font-style: italic;
}
.fp_main_section_profile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16svh 4vw;
  gap: 2rem;
}
@media screen and (min-width: 700px) {
  .fp_main_section_profile {
    flex-direction: row;
  }
}
.fp_main_section_profile_image {
  max-width: 40vw;
  max-height: 40vw;
  border-radius: 20vw;
}
@media screen and (min-width: 700px) {
  .fp_main_section_profile_image {
    max-width: 26vw;
    max-height: 26vw;
  }
}
.fp_main_section_profile_text {
  max-width: 40vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.fp_main_section_profile_text_title {
  font-size: clamp(1.4rem, 5vw, 3rem);
}
.fp_main_section_profile_text_description {
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.fp_main_about {
  position: relative;
  height: 100svh;
  overflow: hidden;
}
.fp_main_about_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
}
.fp_main_about_content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  color: white;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 45%, rgba(0, 0, 0, 0) 100%);
}
.fp_main_about_content_text {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 54vw;
}
.fp_main_about_content_text_title {
  font-size: clamp(2rem, 10vw, 10rem);
  text-align: center;
}
.fp_main_about_content_text_description {
  font-size: clamp(1rem, 2vw, 10rem);
  text-align: center;
}

.portfolio_main_hero {
  display: flex;
  height: 100vh;
  width: 100%;
  background: black;
  justify-content: center;
  align-items: center;
  position: relative;
}
.portfolio_main_hero_video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
  opacity: 0.5;
  object-fit: cover;
}
.portfolio_main_hero_content {
  position: absolute;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.portfolio_main_hero_content_title {
  font-size: 6rem;
  text-align: center;
}
.portfolio_main_hero_content_title span {
  font-style: italic;
}
.portfolio_main_hero_content_cta {
  padding: 1rem 2rem;
  font-size: 2rem;
  color: #F1FFFA;
  background: #191e2b;
  border-radius: 2px;
  border: 2px #F1FFFA solid;
  text-decoration: none;
}

.portfolio_main_section {
  padding: 5rem 10rem;
  display: flex;
  gap: 8rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.portfolio_main_section_tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.portfolio_main_section_tabs li {
  font-size: 1.4rem;
  color: #191e2b;
  cursor: pointer;
  position: relative;
}
.portfolio_main_section_tabs li:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #191e2b;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.portfolio_main_section_tabs li:hover:after {
  width: 100%;
  left: 0;
}
.portfolio_main_section_tabs li > button {
  background: none;
  border: none;
  font-family: Petrona;
  font-size: 1.4rem;
}
.portfolio_main_section_gallery {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 750px) {
  .portfolio_main_section_gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1250px) {
  .portfolio_main_section_gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.portfolio_main_section_gallery:has(a:hover) > div > a:not(:hover) {
  opacity: 0.7;
  scale: 0.8;
}
.portfolio_main_section_gallery div {
  overflow: hidden;
  display: flex;
}
.portfolio_main_section_gallery div > a {
  aspect-ratio: 1;
  width: 100%;
  transition: scale 350ms ease, opacity 350ms ease, border-radius 350ms ease;
  overflow: hidden;
}
.portfolio_main_section_gallery div > a > img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1;
  transition: scale 350ms ease, opacity 350ms ease, border-radius 350ms ease;
}
.portfolio_main_section_gallery div > a:has(:hover) > img {
  scale: 1.3;
}

.item {
  overflow: hidden;
  display: none;
  transform: scale(0.2, 0.2);
}
.item img {
  height: 220px;
  width: 100%;
  /*height: auto;*/
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.show {
  display: block;
  animation: enter 0.3s forwards;
}

.active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact_background {
  background-color: #191e2bd0;
}

.formulaire_content {
  padding: 50px;
}

.formulaire {
  box-shadow: -2px 4px 18px 9px rgba(0, 0, 0, 0.52);
  font-family: "Petrona";
  max-width: 1600px;
  width: 50%;
  padding: 50px;
  border-radius: 2px;
  margin-inline: auto;
  padding-inline: 1rem;
  background-color: white;
}
@media screen and (max-width: 974px) {
  .formulaire {
    width: 75%;
  }
}

.form__content_subtitle {
  display: flex;
  justify-content: center;
  color: white;
  margin-bottom: 50px;
}

.form__content_number {
  border: none;
}

.frm_button_submit {
  font-family: "Petrona";
}
@media screen and (max-width: 974px) {
  .frm_button_submit {
    width: 100% !important;
  }
}

@media screen and (max-width: 974px) {
  .formulaire {
    width: 75%;
  }
  .frm_button_submit {
    width: 100%;
  }
}

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