@font-face {
  font-family: "SpaceMono-Regular";
  src: url("/wp-content/themes/motaphoto/assets/fonts/SpaceMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.page-title {
  justify-self: center;
  margin-top: 6rem;
}

.page-content {
  justify-self: center;
  width: 80%;
  padding-bottom: 5rem;
  padding-top: 5rem;
}

body {
  font-family: "SpaceMono-Regular";
  margin: 0;
  height: 100%;
  min-height: 100vh;
}

.burger-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-button span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #000;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}

.close-button {
  font-size: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-burger-content {
  background-color: rgb(224, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  gap: 50px;
}
.menu-burger-content li {
  list-style: none;
}
.menu-burger-content li a {
  text-decoration: none;
  font-size: 44px;
  color: rgb(255, 255, 255);
  font-weight: 400;
  transition: font-size 1s ease, opacity 1s ease;
}
.menu-burger-content li a:hover {
  opacity: 50%;
  font-size: 55px;
}

.page {
  min-height: 70vh;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: "SpaceMono-Regular";
  font-size: 8vw;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  text-wrap: nowrap;
  color: transparent;
  -webkit-text-stroke: 0.1px #ffffff;
  text-transform: uppercase;
}

.filters {
  margin: 40px;
  text-align: center;
  flex-direction: row;
  display: flex;
  justify-content: space-evenly;
  margin-left: 2rem;
  margin-bottom: 10px;
  gap: 20px;
}
.filters .select {
  padding: 10px 15px;
  border: 1px solid rgb(184, 187, 194);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 8px;
  width: 260px;
  background-color: white;
}
.filters .photo-filters,
.filters .date-filter {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.photo-list {
  margin: 40px auto;
  flex-direction: row;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.photo-list .container-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 5%;
}
.photo-list .container-photos .photo-block img {
  width: 35vw;
  max-width: 550px;
  height: 50vh;
  max-height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.load-more-container {
  text-align: center;
  margin: 30px 0;
}

.btn {
  width: 272px;
  font-family: "SpaceMono-Regular";
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #d8d8d8;
  color: #111;
  transition: transform 1s, box-shadow 1s, opacity 1s ease;
}

#load-more:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  opacity: 0.7;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-toggle {
  padding: 0px 12px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 8%;
  padding-right: 8%;
  align-items: center;
}
.dropdown .dropdown-toggle .arrow-up {
  display: none;
  font-size: 25px;
  transition: opacity 1s ease;
}
.dropdown .dropdown-toggle .arrow-down {
  display: flex;
  font-size: 25px;
}
.dropdown .dropdown-content {
  position: absolute;
  left: 0;
  top: 100%;
  background: white;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 2s ease;
  z-index: 10;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.dropdown .dropdown-content li {
  padding: 8px 12px;
  cursor: pointer;
  justify-content: flex-start;
  display: flex;
  padding-left: 20px;
  font-family: "poppins";
  font-weight: 500;
  font-size: 12px;
  min-height: 12px;
  text-transform: uppercase;
}
.dropdown .dropdown-content .active {
  background-color: rgb(224, 0, 0);
  color: #ffffff;
}
.dropdown .show {
  max-height: 300px;
  opacity: 1;
  width: 100%;
}
.dropdown .closing {
  max-height: 0;
  opacity: 0;
}

.dropdown-content li:hover {
  background: rgb(255, 214, 214) 0;
}

.site-header {
  height: 80px;
  align-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.site-header .site-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.site-header .site-nav .title-site {
  position: relative;
  left: 30%;
  max-width: 216px;
}
.site-header .site-nav .btn-container {
  display: flex;
  position: relative;
  gap: 70px;
  right: 5%;
}
.site-header .site-nav .btn-container .menu-item {
  display: inline-block;
}
.site-header .site-nav .btn-container .menu-item a {
  background-color: transparent;
  border: none;
  font-weight: 400;
  font-size: 16px;
  font-family: "SpaceMono-Regular";
  text-decoration: none;
  color: rgb(0, 0, 0);
  padding: 0;
}
.site-header .site-nav .btn-container .menu-item a:hover {
  opacity: 50%;
}

.site-footer {
  height: 40px;
  align-content: center;
  border-top: solid black 2px;
}
.site-footer .footer-container {
  display: flex;
  flex-direction: row;
  gap: 100px;
  position: relative;
  justify-content: center;
}
.site-footer .footer-container .btn-footer {
  background-color: transparent;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-family: "SpaceMono-Regular";
  text-decoration: auto;
  color: #000000;
}
.site-footer .footer-container .btn-footer:hover {
  opacity: 50%;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal .modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.modal .modal__content {
  background: #fff;
  border: solid black 4px;
  z-index: 1001;
  max-width: 75vw;
}
.modal .modal__content .modal__title {
  position: relative;
  top: 15px;
  padding-bottom: 50px;
  width: 100%;
}
.modal .modal__content .wpcf7 {
  display: flex;
  justify-content: center;
  font-family: "Poppins";
  width: 80%;
  justify-self: center;
}
.modal .modal__content .wpcf7 .wpcf7-form {
  display: flex;
  width: 65%;
  flex-direction: column;
}
.modal .modal__content .wpcf7 .wpcf7-form label {
  width: 100%;
  display: block;
}
.modal .modal__content .wpcf7 .wpcf7-form label span {
  width: 100%;
  display: block;
}
.modal .modal__content .wpcf7 input {
  padding-left: 3%;
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid rgb(184, 187, 194);
  text-transform: uppercase;
  width: 96%;
}
.modal .modal__content .wpcf7 textarea {
  padding-left: 10px;
  padding-top: 10px;
}
.modal .modal__content .wpcf7 .wpcf7-textarea {
  border-radius: 8px;
  border: 1px solid rgb(184, 187, 194);
  resize: none;
  width: 96%;
}
.modal .modal__content .wpcf7 .wpcf7-submit {
  width: 100%;
  background-color: rgb(216, 216, 216);
  font-family: "SpaceMono-Regular";
  border: none;
  border-radius: 0;
  height: 70px;
}

.container-content {
  padding-left: 5%;
  padding-right: 5%;
}
.container-content .container-photos-infos {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
}
.container-content .container-photos-infos .photo-infos {
  position: relative;
  width: 50%;
  max-width: 50%;
  align-content: end;
  border-bottom: solid black 1px;
  padding-bottom: 50px;
  text-transform: uppercase;
}
.container-content .container-photos-infos .photo-infos .photo-title {
  font-size: 66px;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 400;
  width: 50%;
  line-height: 1;
  margin-bottom: 25px;
}
.container-content .container-photos-infos .photo-main {
  display: flex;
  justify-content: end;
  align-items: flex-end;
  width: 100%;
  max-width: 50%;
  height: 100%;
  min-height: 400px;
}
.container-content .container-photos-infos .photo-main img {
  max-width: 100%;
  object-fit: contain;
}
.container-content .container-contact-next-prev {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: solid black 1px;
  height: 118px;
  align-items: center;
}
.container-content .container-contact-next-prev .container-btn-contact {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: row;
  gap: 100px;
}
.container-content .container-contact-next-prev .container-btn-contact p {
  font-family: "Poppins";
  font-weight: 300;
  font-size: 14px;
  flex-wrap: nowrap;
}
.container-content .container-contact-next-prev .container-btn-contact .btn {
  width: 272px;
  font-family: "SpaceMono-Regular";
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #d8d8d8;
  color: #111;
  transition: transform 1s, box-shadow 1s, opacity 1s ease;
}
.container-content .container-contact-next-prev .container-btn-contact .btn__contact:hover {
  cursor: pointer;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  opacity: 0.7;
}
.container-content .container-contact-next-prev .container-next-prev {
  margin-right: 0px;
}
.container-content .container-contact-next-prev .photo-navigation a {
  position: relative;
  display: inline-block;
  top: 35px;
  position: relative;
}
.container-content .container-contact-next-prev .photo-navigation {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.container-content .container-contact-next-prev .photo-navigation .prev .preview {
  position: absolute;
  top: -70px;
  display: none;
}
.container-content .container-contact-next-prev .photo-navigation .next .preview {
  position: absolute;
  top: -70px;
  display: none;
  transform: translateX(-70%);
}
.container-content .container-contact-next-prev .photo-navigation a:hover .preview {
  display: block;
}
.container-content .container-contact-next-prev .photo-navigation a:hover .preview img {
  width: 81px;
  height: 71px;
  object-fit: contain;
}
.container-content .related-photos {
  margin-top: 50px;
}
.container-content .related-photos h2 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
}
.container-content .related-photos .related-photos-list {
  display: flex;
  gap: 20px;
  height: auto;
  padding-bottom: 80px;
  padding-top: 40px;
}
.container-content .related-photos .related-photos-list .photo-block {
  flex: 1;
  text-align: center;
}
.container-content .related-photos .related-photos-list .photo-block .container-photo-block {
  height: 500px;
  width: 100%;
}
.container-content .related-photos .related-photos-list .photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox .lightbox__close {
  position: absolute;
  top: 30px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}
.lightbox .lightbox__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.lightbox .lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 10000;
  color: #fff;
  text-align: center;
}
.lightbox .lightbox__content .lightbox__img-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox .lightbox__content .lightbox__img-container .lightbox__img {
  max-height: 85vh;
  display: block;
}
.lightbox .lightbox__content .lightbox__img-container .lightbox__prev,
.lightbox .lightbox__content .lightbox__img-container .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  background: transparent;
  font-size: 15px;
  font-family: "SpaceMono-Regular";
  text-transform: uppercase;
}
.lightbox .lightbox__content .lightbox__img-container .lightbox__prev {
  left: -150px;
}
.lightbox .lightbox__content .lightbox__img-container .lightbox__next {
  right: -140px;
}
.lightbox .lightbox__content .lightbox__caption {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lightbox .lightbox__content .lightbox__caption .lightbox__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.lightbox .lightbox__content .lightbox__caption .lightbox__info .lightbox__ref,
.lightbox .lightbox__content .lightbox__caption .lightbox__info .lightbox__cat {
  font-weight: 500;
  text-transform: uppercase;
}
.lightbox .lightbox__content .lightbox__caption .lightbox__nav button {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
}

.photo-block {
  height: 100%;
}

.container-photo-block {
  position: relative;
  display: inline-block;
}
.container-photo-block .photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.container-photo-block .photo-overlay .btn-lightbox {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.container-photo-block .photo-overlay .btn-lightbox .btn-fullscreen {
  width: 34px !important;
  height: 34px !important;
  transition: transform 1s ease;
}
.container-photo-block .photo-overlay .btn-lightbox .btn-fullscreen:hover {
  transform: rotate(360deg);
}
.container-photo-block .photo-overlay .photo-title-vision {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  text-transform: uppercase;
}
.container-photo-block .photo-overlay .photo-cat {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  text-transform: uppercase;
}
.container-photo-block .photo-overlay .photo-eye {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 1s ease;
}
.container-photo-block .photo-overlay .photo-eye:hover {
  animation: eye-spin 1s forwards;
}
.container-photo-block .photo-overlay .photo-eye img {
  width: 46px !important;
  height: auto !important;
}

.container-photo-block:hover .photo-overlay {
  opacity: 1;
}

@keyframes eye-spin {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  25% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2) rotateX(90deg);
  }
  55% {
    transform: translate(-50%, -50%) scale(1.2) rotateX(90deg);
  }
  75% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@media screen and (max-width: 1024px) {
  .hero {
    height: 80vh;
  }
  .filters {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    justify-self: center;
  }
  .filters .photo-filters {
    flex-direction: column;
    gap: 12px;
  }
  .filters .photo-filters .dropdown {
    width: 100%;
  }
  .filters .select {
    width: 35vw;
  }
  .photo-title-vision, .photo-cat {
    font-size: 12px;
  }
  .container-photo-block {
    max-height: 50vh;
    height: 40vh;
  }
}
@media screen and (max-width: 768px) {
  .select {
    width: 50vw !important;
  }
  #mobile-menu {
    display: flex;
    flex-direction: column;
    z-index: 10;
  }
  .title-site-burger {
    position: relative;
    left: 7%;
    max-width: 216px;
  }
  .burger-button {
    display: flex;
    position: relative;
    right: 3vw;
  }
  .btn-container {
    display: none !important;
  }
  .active {
    right: 0;
  }
  .footer-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    padding-top: 30px;
    padding-bottom: 40px;
    justify-self: center;
  }
  .wpcf7-form {
    width: 70% !important;
  }
  .container-content {
    padding-left: 0;
    padding-right: 0;
  }
  .container-content .container-photos-infos {
    flex-direction: column-reverse !important;
    border-bottom: solid black 1px;
  }
  .container-content .container-photos-infos .photo-infos {
    justify-self: center;
    position: relative !important;
    width: 80% !important;
    max-width: 100vw !important;
    align-self: center;
    border-bottom: 0;
  }
  .container-content .container-photos-infos .photo-infos .photo-title {
    justify-self: start;
    font-size: 50px;
  }
  .container-content .container-photos-infos .photo-infos p {
    justify-self: start;
  }
  .container-content .container-photos-infos .photo-main {
    max-width: 85%;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .container-content .container-photos-infos .photo-main img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  .container-content .container-contact-next-prev {
    align-items: center;
    height: auto;
  }
  .container-content .container-contact-next-prev .container-btn-contact {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .container-content .container-contact-next-prev .container-btn-contact p {
    align-self: center;
  }
  .container-content .container-contact-next-prev .container-btn-contact .btn__contact {
    align-self: center;
  }
  .container-content .related-photos {
    width: 85%;
    justify-self: center;
  }
  .container-content .related-photos h2 {
    justify-self: center;
  }
  .container-content .related-photos .related-photos-list {
    flex-direction: column;
    gap: 40px;
  }
  .container-content .related-photos .related-photos-list .container-photo-block {
    height: 50vh;
  }
  .container-content .container-next-prev {
    display: none;
  }
  .container-photo-block {
    max-height: 50vh;
    height: 30vh;
  }
}
@media screen and (max-width: 425px) {
  .hero {
    height: 50vh;
  }
  .select {
    width: 65vw !important;
  }
  .container-photos {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    width: 100%;
  }
  .container-photos .photo-block {
    height: 100%;
    max-height: 35vh;
    display: flex;
    justify-self: center;
    width: 100%;
  }
  .container-photos .photo-block .container-photo-block {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .container-photos .photo-block img {
    width: 100% !important;
    height: 100% !important;
  }
  .related-photos-list {
    flex-direction: column;
    gap: 40px;
  }
  .related-photos-list .container-photo-block {
    height: 30vh !important;
  }
  .related-photos-list .photo-block img {
    height: 30vh !important;
  }
  .photo-title-vision, .photo-cat {
    font-size: 15px;
  }
}

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