*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: Inter;
  background-color: transparent;
}

html {
  height: 100%;
  margin: 0;
}

body {
  height: 100%;
  margin: 0;
  background-color: #222222;
  background-image: url("assets/background_logo_element.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  font-weight: 300;
}

header {
  margin: 0 auto 0 auto;
  width: 100%;
  top: 0px;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: all 0.5s ease;
  z-index: 100;
}

header.scrolled {
  justify-content: space-between;
  background-color: rgba(34, 34, 34, 0.8);
  padding: 10px;
}

footer {
  width: 100%;
  padding: 10px;
  text-align: center;
  bottom: 0px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  padding-bottom: 1.5rem;
}
.footer-content .left {
  font-size: 16px;
}
.footer-content .right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-content .right a {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.footer-content .right a:hover {
  color: #c7e617;
  text-shadow: 1px 0px 0px #c7e617;
  transition: all 0.3s ease;
}
.footer-content .right a:hover > img {
  background-color: #c7e617;
  transition: all 0.3s ease;
}
@media (max-width: 440px) {
  .footer-content {
    flex-direction: column;
  }
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-bottom: 72px;
  flex: 1;
}
@media (max-width: 768px) {
  .main {
    padding: 0 1rem;
    padding-bottom: 72px;
  }
}

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 3rem 0 3rem 0;
}
.section-home {
  height: 100vh;
}
@media (max-width: 768px) {
  .section-home:last-of-type {
    margin-bottom: -10rem;
  }
}

.content {
  max-width: 768px;
  margin: 0 4rem;
}
@media (max-width: 768px) {
  .content {
    margin: 0 2rem;
  }
}

.projects-cards--photos-left {
  grid-template-columns: 3fr 2fr;
}

.projects-cards--photos-right {
  grid-template-columns: 2fr 3fr;
}

.projects-cards--photos-left,
.projects-cards--photos-right {
  display: grid;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .projects-cards--photos-left,
  .projects-cards--photos-right {
    grid-template-columns: none;
    gap: 0rem;
  }
}

.projects-card-text {
  overflow: hidden;
  margin: 1.5rem 0;
  line-height: 150%;
}
.projects-card-text .title {
  font-size: min(4vw, 32px);
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.projects-card-text .subtitle {
  padding: 0;
  font-size: 16px;
  line-height: 150%;
  font-weight: 300;
}
.projects-card-text .link {
  margin-top: 1rem;
}
.projects-card-text a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #c7e617;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.projects-card-text .subtitle {
  text-align: left;
}

.right-text {
  display: none;
}

@media (max-width: 1024px) {
  .right-text {
    display: block;
  }
  .left-text {
    display: none;
  }
}
.image-caroussel {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 270px;
  overflow: hidden;
  z-index: 50;
}

.item,
.item img {
  position: absolute;
  width: 400px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: 1s;
  left: calc(50% - 200px);
  top: calc(50% - 112.5px);
  transition: all 0.5s ease;
  filter: grayscale(100%);
  cursor: pointer;
}
@media (max-width: 680px) {
  .item,
  .item img {
    scale: 0.7;
  }
}
@media (max-width: 440px) {
  .item,
  .item img {
    scale: 0.6;
  }
}

.photos-cards {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 1024px) {
  .photos-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .photos-cards {
    grid-template-columns: none;
  }
}

.photo-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: auto;
}
.photo-card img {
  width: 216px;
}

.photo-card-text {
  margin-top: 2.5rem;
  text-align: center;
}
.photo-card-text .title {
  font-size: 20px;
  font-weight: 700;
}
.photo-card-text .subtitle {
  padding-top: 0.5rem;
  font-size: 16px;
  line-height: unset;
  font-weight: 300;
}

.logo {
  text-align: center;
  transition: all 0.3s ease;
}

.logo svg {
  display: block;
}

.logo.scrolled {
  transform: scale(0.8);
  text-align: left;
}

.section:first-of-type:not(.section-home) .text {
  margin-top: 8rem;
}

.text {
  font-size: 64px;
  font-weight: 900;
  text-align: center;
}

.subtitle {
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  padding-top: 2rem;
}

h1#home {
  font-size: min(10vw, 144px);
}

#wrong-page {
  padding-bottom: 3.25rem;
}
#wrong-page h1 {
  font-size: 96px;
  margin: 0;
}
#wrong-page .subtitle {
  padding: 0;
}

.section-home h1 {
  font-size: min(8vw, 96px);
}

.green,
.green-blinker {
  color: #c7e617;
}

.green-blinker {
  animation: phaser 1.2s linear infinite;
}

.light {
  font-weight: 100;
}

h1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@keyframes blinker {
  /* for blinker the animation duration should be 1s; */
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes phaser {
  /* for phaser the animation duration should be 1.2s; */
  0%, 10%, 90%, 100% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
}
@keyframes btnAnimationOnHover {
  from {
    background-color: rgba(255, 255, 255, 0.15);
  }
  to {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@keyframes contactAnimationOnOut {
  0% {
    background-color: rgba(255, 255, 255, 0.5);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.15);
  }
}
@keyframes btnAnimationOnHoverInverted {
  from {
    background-color: #c7e617;
  }
  to {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@keyframes contactAnimationOnOutInverted {
  0% {
    background-color: rgba(255, 255, 255, 0.5);
  }
  100% {
    background-color: #c7e617;
  }
}
nav ul {
  padding: 0;
  margin: 0;
}

nav li {
  cursor: pointer;
}

.navigationSlider1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  margin-top: 2rem;
}
.navigationSlider1 a {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.navigationSlider1.scrolled {
  display: none;
  transition: all 0.5s ease;
}

.navigationSlider2 {
  display: none;
}

.navigationSlider2.scrolled {
  display: block;
  position: relative;
  right: 0;
}
.navigationSlider2.scrolled ul {
  top: -14px;
  display: flex;
  flex-direction: row;
}

.navigationSlider3 {
  display: none;
  position: fixed;
  bottom: 0;
  padding-top: 10px;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.8);
  padding: 10px 0;
  z-index: 100;
}
.navigationSlider3 ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  bottom: 14px;
}

.active-nav-item,
.active-nav-item a,
.active-nav-item::after {
  color: #c7e617 !important;
  text-shadow: 1px 0px 0px #c7e617;
  transition: all 0.5s ease-in-out;
}

.active-nav-item a::before {
  transition: all 0.5s ease-in-out;
}

.btn {
  padding: 8px 16px 8px 16px;
  cursor: pointer;
  transition: all 0.1s ease;
  background-color: rgba(255, 255, 255, 0.15);
  background-position: center;
  display: block;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  animation: contactAnimationOnOut 0.2s ease-in-out;
  animation-fill-mode: forwards;
}
.btn:link {
  text-decoration: none;
}
.btn:hover {
  animation: btnAnimationOnHover 0.2s ease-in-out;
  animation-fill-mode: forwards;
}

.slider-hint {
  opacity: 1;
}

.btn-inverted {
  background-color: #c7e617;
  color: #000000;
  padding: 8px 16px 8px 16px;
  cursor: pointer;
  transition: all 0.1s ease;
  background-position: center;
  display: block;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
  animation: contactAnimationOnOutInverted 0.2s ease-in-out;
  animation-fill-mode: forwards;
}
.btn-inverted:link {
  text-decoration: none;
}
.btn-inverted:hover {
  animation: btnAnimationOnHoverInverted 0.2s ease-in-out;
  animation-fill-mode: forwards;
}

@media (max-width: 768px) {
  header.scrolled {
    justify-content: center;
    background-color: rgba(34, 34, 34, 0.8);
    padding: 10px;
  }
  .logo {
    transform: scale(0.8);
  }
  .navigationSlider1 {
    display: none;
  }
  .navigationSlider2 {
    display: none;
  }
  .navigationSlider2.scrolled {
    display: none;
  }
  .navigationSlider3 {
    display: flex;
    justify-content: center;
  }
  .page > .main > .section:last-child {
    padding-bottom: 72px;
  }
  footer {
    position: relative;
    padding-bottom: 90px;
  }
}
navslider-component ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  position: relative; /* Make the ul a positioning context */
}
@media (max-width: 440px) {
  navslider-component ul {
    gap: 0px;
  }
  navslider-component ul :first-child {
    margin-left: 0px;
  }
  navslider-component ul :last-child {
    margin-right: 0px;
  }
}

navslider-component li {
  position: relative;
  list-style: none;
  text-align: center;
  margin: 10px;
}

navslider-component li a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  padding: 10px;
  font-size: 16px;
}
@media (max-width: 440px) {
  navslider-component li a {
    font-size: 12px;
  }
}

navslider-component li a::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  opacity: 1;
  background-color: #222222;
}

navslider-component li::after {
  z-index: -100;
  content: "";
  position: absolute;
  bottom: -10px;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c7e617;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

navslider-component li.active-nav-item::after {
  z-index: unset;
  opacity: 1;
}

navslider-component ul::after {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #ffffff, #ffffff 10px, transparent 10px, transparent 20px);
  pointer-events: none;
  z-index: -1;
  left: calc(55% - 182.5px);
  width: calc(45% + 182.5px - (55% - 182.5px));
}
@media (max-width: 440px) {
  navslider-component ul::after {
    left: calc(50% - 122.5px);
    width: calc(50% + 122.5px - (50% - 122.5px));
  }
}

.contact-form,
.contact-form > h1 {
  margin-bottom: 2rem;
}/*# sourceMappingURL=style.css.map */