@charset "UTF-8";
/*
Theme Name: Mota Photo
Author: Kami-c
Description: Thème dédié à la photographie
Version: 1.0
Text Domain: mota-photo
*/
* {
  margin: 0;
}

body {
  min-height: 100vh;
  max-width: 1440px;
  margin: auto;
}

main {
  flex-grow: 1;
}

.page-content {
  margin: 38px 146px;
}

/* Responsive */
@media screen and (min-width: 320px) and (max-width: 426px) {
  .page-content {
    margin: 38px 38px;
  }
}
/* FONTS */
@font-face {
  font-family: "Space Mono";
  src: url("./assets/fonts/SpaceMono-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("./assets/fonts/SpaceMono-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("./assets/fonts/SpaceMono-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
/* TYPOGRAPHY RULES */
h1 {
  font-family: "Space Mono";
  font-style: italic;
  text-transform: uppercase;
  color: #000;
  font-size: 96px;
  font-weight: 700;
  line-height: normal;
}

h2 {
  font-family: "Space Mono";
  font-style: italic;
  text-transform: uppercase;
  color: #000;
  font-size: 66px;
  font-weight: 400;
  line-height: 58px;
}

h3 {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  font-size: 18px;
  letter-spacing: 1.8px;
}

p {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  h1 {
    font-family: "Space Mono";
    font-style: italic;
    text-transform: uppercase;
    color: #000;
    font-size: 27.588px;
    font-weight: 700;
    line-height: normal;
  }
  h2 {
    font-family: "Space Mono";
    font-style: italic;
    text-transform: uppercase;
    color: #000;
    font-size: 46px;
    font-weight: 400;
    line-height: 48px;
  }
}
/* HEADER */
header {
  width: 100%;
  height: 80px;
  position: relative;
  box-shadow: 0px 4px 14px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
header .logo {
  float: left;
}
header .logo__img {
  height: 14px;
}
header .logo:hover {
  animation: blur-out-expand 0.5s linear reverse;
}
@keyframes blur-out-expand {
  0% {
    filter: blur(0);
  }
  100% {
    filter: blur(12px) opacity(0%);
  }
}
header .menu__btn {
  display: none;
}
header .navbar__menu {
  list-style: none;
  padding-left: 0;
  display: flex;
}
header .navbar__menu .menu-item {
  margin: 0 45px;
}
header .navbar__menu .menu-item > a {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  font-size: 16px;
}
header .navbar__menu .menu-item > a:hover {
  font-weight: 700;
}

/* MENU RESPONSIVE */
@media screen and (max-width: 768px) {
  header {
    justify-content: space-between;
  }
  header .logo {
    margin-left: 20px;
  }
  header .menu__btn {
    display: none;
  }
  header .menu__btn:checked ~ .navbar {
    display: flex;
    position: fixed;
    transition: max-height 0.2s ease-out;
    flex-direction: column;
    height: 100%;
    width: 100%;
    clear: both;
    background-color: #E00000;
    justify-content: center;
    z-index: 1;
  }
  header .menu__btn:checked ~ .menu-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 4;
  }
  header .menu__btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  header .menu__btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
    background: #fff;
  }
  header .menu__btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
    background: #fff;
  }
  header .menu__btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  header .menu__btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  header .menu-icon {
    cursor: pointer;
    z-index: 4;
    position: relative;
    padding: 20px;
  }
  header .navicon {
    background: #000;
    display: flex;
    position: relative;
    transition: 0.2s ease-out;
    width: 25px;
    height: 3px;
  }
  header .navicon:before,
  header .navicon:after {
    background: #000;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    width: 100%;
  }
  header .navicon:before {
    top: 5px;
  }
  header .navicon:after {
    top: -5px;
  }
  header .navbar {
    display: none;
    top: 0;
  }
  header .navbar__menu {
    flex-direction: column;
    align-items: center;
  }
  header .navbar__menu .menu-item {
    margin: 15px 0;
  }
  header .navbar__menu .menu-item > a {
    margin: auto;
    color: #fff;
    text-align: center;
    font-family: "Space Mono";
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
  header .navbar__menu .menu-item > a:hover {
    font-weight: 700;
    transition: all 0.2s ease;
  }
  .footer {
    z-index: -1;
    flex-direction: column;
  }
  .footer__menu {
    flex-direction: column;
    align-items: center;
    height: 25vh;
  }
}
/* FOOTER */
.footer {
  display: flex;
  border-top: solid 1px #000;
  padding-bottom: 0.9vh;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1;
  width: 100%;
}
.footer__menu {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: space-evenly;
  margin: 0 5.6vw;
}
.footer__menu .menu-item {
  margin: 0 5.6vw;
}
.footer__menu .menu-item > a {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  font-size: 16px;
}
.footer__menu .menu-item > a:hover {
  font-weight: 700;
}
.footer__menu .menu-item.disabled > a {
  cursor: none;
  pointer-events: none;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  overflow: auto;
  animation: lightboxIn 0.5s;
  transition: opacity 0.3s;
}
.lightbox .fadeOut {
  opacity: 0;
}
.lightbox__next, .lightbox__prev {
  border: none;
  width: 50px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: -14px;
  z-index: 11;
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  font-size: 12px;
  color: #fff;
  text-transform: none;
}
.lightbox__prev {
  background: url(assets/img/arrow-left.svg) center/25px 18px no-repeat;
  text-indent: 40px;
}
.lightbox__next {
  background: url(assets/img/arrow-right.svg) center/25px 18px no-repeat;
  left: auto;
  right: 0;
  text-indent: -90px;
}
.lightbox__close {
  background: url(assets/img/close.svg) center/22px 22px no-repeat;
  width: 22.021px;
  height: 22.018px;
  border: none;
  text-indent: -6000px;
  position: fixed;
  top: 40px;
  right: 13px;
  z-index: 12;
}
.lightbox button {
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}
.lightbox button:hover {
  opacity: 1;
}
.lightbox__container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin-left: 50px;
  margin-right: 50px;
}
.lightbox__container img {
  max-width: 100%;
  max-height: 100vh;
  height: auto;
  animation: lightboxIn 0.5s;
}
.lightbox__container--loader {
  width: 38px;
  height: 98px;
  opacity: 0.5;
  background: url(assets/img/loader.svg) center no-repeat;
}
.lightbox__container .category,
.lightbox__container .reference {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  position: fixed;
  z-index: 11;
}
.lightbox__container .reference {
  right: 10vw;
  bottom: 2vh;
}
.lightbox__container .category {
  left: 10vw;
  bottom: 2vh;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* FENÊTRE MODALE CONTACT */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal__content {
  position: relative;
  margin: 15% auto;
  padding: 20px;
  background-color: #fff;
  border: 5px solid #000;
  width: 597px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.modal .modal__content .contact {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.modal .modal__content .contact__header {
  height: 106px;
  margin-bottom: 46px;
}
.modal .modal__content .contact__field {
  width: 263px;
  height: 493px;
  margin-bottom: 19px;
}
.modal .modal__content .contact__field .field {
  width: 263px;
  height: 62px;
  margin-bottom: 24px;
}
.modal .modal__content .contact__field .field__label {
  color: #313144;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.modal .modal__content .contact__field .field__input {
  height: 40px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #B8BBC2;
  background: #fff;
  width: -webkit-fill-available;
  width: -moz-available;
  text-transform: uppercase;
}
.modal .modal__content .contact__field .field__input:focus {
  border: 3px #B8BBC2 outset;
}
.modal .modal__content .contact__field .field__input--message {
  height: 210px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #B8BBC2;
  background: #fff;
  width: -webkit-fill-available;
  width: -moz-available;
}
.modal .modal__content .contact__field .field__input--message:focus {
  border: 3px #B8BBC2 outset;
}
.modal .modal__content .contact__field .field .wpcf7-not-valid-tip {
  font-size: 0.9em;
  display: flex;
  justify-content: flex-end;
}
.modal .modal__content .contact__submit {
  display: flex;
  align-items: center;
  width: 263px;
  padding-top: 12px;
}
.modal .modal__content .contact__submit__input {
  border-radius: 2px;
  border-color: transparent;
  background: #D8D8D8;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.02);
  height: 50px;
  width: 263px;
  font-family: "Space Mono";
  font-size: 12px;
  cursor: pointer;
}
.modal .modal__content .contact__submit__input:hover {
  background-color: #000;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease-in;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.02);
  color: #fff;
}
.modal .modal__content .contact .wpcf7-response-output {
  margin: auto;
  font-family: "Poppins";
  font-size: 14px;
}

/* RESPONSIVE */
@media (min-width: 375px) and (max-width: 426px) {
  body .modal .modal__content {
    width: 320px;
  }
  body .modal .modal__content .contact .wpcf7-response-output {
    display: block;
    margin: 0 307px;
  }
}
@media (max-width: 321px) {
  body .modal .modal__content {
    width: 260px;
  }
  body .modal .modal__content .contact__header {
    height: 55px;
    margin-bottom: 20px;
  }
  body .modal .modal__content .contact__field .field__input {
    height: 20px;
  }
  body .modal .modal__content .contact__field .field__input--message {
    height: 190px;
  }
  body .modal .modal__content .contact .wpcf7-response-output {
    display: block;
    margin: 0 97px;
  }
}
/* SINGLE-PHOTO */
.photo-post .post {
  display: flex;
  width: 100%;
}
.photo-post .post__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 4.6vh;
}
.photo-post .post__info p:nth-child(3) > a,
.photo-post .post__info p:nth-child(4) > a {
  color: #000;
  text-decoration: none;
  pointer-events: none;
}
.photo-post .post__info--details {
  font-family: "Space Mono";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}
.photo-post .post__img {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-post .info {
  display: flex;
  border-bottom: solid 2px #000;
}
.photo-post .info__contact {
  display: flex;
  width: 50%;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 30px 0;
  margin-right: 21px;
  border-top: 2px solid #000;
}
.photo-post .info__contact--submit {
  border-radius: 2px;
  border-color: transparent;
  background: #D8D8D8;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.02);
  height: 50px;
  width: 263px;
  font-family: "Space Mono";
  font-size: 12px;
  cursor: pointer;
}
.photo-post .info__contact--submit:hover {
  background-color: #000;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease-in;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.02);
  color: #fff;
}
.photo-post .info__navigation {
  display: flex;
  width: 50%;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.photo-post .info__navigation--button {
  display: flex;
  position: relative;
  gap: 30px;
}
.photo-post .info__navigation--button .button__previous::before, .photo-post .info__navigation--button .button_next::after {
  content: "";
  position: absolute;
  bottom: 100%;
  width: 81px;
  height: 71px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.photo-post .info__navigation--button .button__previous::before {
  background-image: var(--previous-image-url);
}
.photo-post .info__navigation--button .button_next::after {
  transform: translate(-100%, 0);
  background-image: var(--next-image-url);
}
.photo-post .info__navigation--button .button__previous:hover::before {
  opacity: 1;
}
.photo-post .info__navigation--button .button_next:hover::after {
  opacity: 1;
}
.photo-post .info__navigation--button .previous img, .photo-post .info__navigation--button .next img {
  width: 25px;
  cursor: pointer;
}
.photo-post .info__navigation--button .previous img:hover, .photo-post .info__navigation--button .next img:hover {
  font-weight: 600;
}
.photo-post .suggestion {
  display: flex;
  width: 100%;
  margin: 6.04vh auto auto auto;
  flex-direction: column;
}
.photo-post .suggestion h3 {
  margin-bottom: 6.28vh;
}
.photo-post .suggestion .photo-bloc #photo-container {
  justify-content: space-between;
}
.photo-post .suggestion .photo-bloc #photo-container__img {
  flex: 1 0 45%;
  height: 495px;
}
.photo-post .suggestion .photo-bloc #photo-container__img .link,
.photo-post .suggestion .photo-bloc #photo-container__img .image,
.photo-post .suggestion .photo-bloc #photo-container__img .hover-info {
  width: 100%;
  height: 100%;
}
.photo-post .suggestion .photo-bloc .not-found {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .photo-post .post {
    flex-direction: column-reverse;
    margin: auto;
  }
  .photo-post .post__info {
    margin: auto auto 4.95vh auto;
    width: 100%;
  }
  .photo-post .post .post__img {
    width: 100%;
  }
  .photo-post .info {
    flex-direction: column;
  }
  .photo-post .info__contact {
    width: 100%;
    flex-direction: column;
    margin-right: 0;
    gap: 15px;
  }
  .photo-post .info__navigation {
    display: none;
  }
  .photo-post .suggestion {
    flex-direction: column;
  }
  .photo-post .suggestion .photo-bloc #photo-container {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .photo-post .suggestion .photo-bloc__img .link,
  .photo-post .suggestion .photo-bloc__img .image,
  .photo-post .suggestion .photo-bloc__img .hover-info {
    flex: 0 0 100%;
    height: 61.95vh;
  }
}
@media screen and (min-width: 320px) and (max-width: 426px) {
  .photo-post .post h2 {
    font-size: 30px;
  }
  .photo-post .info__contact--submit {
    height: 7vh;
    width: 40vw;
  }
  .photo-post .info__navigation {
    display: none;
  }
  .photo-post .suggestion {
    flex-direction: column;
  }
  .photo-post .suggestion .photo-bloc {
    flex-wrap: wrap;
  }
  .photo-post .suggestion .photo-bloc__img .link,
  .photo-post .suggestion .photo-bloc__img .image,
  .photo-post .suggestion .photo-bloc__img .hover-info {
    flex: 0 0 100%;
    height: 34.93vh;
  }
}
/* HOME */
.hero-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-header__title {
  font-family: "Space Mono";
  font-style: italic;
  text-transform: uppercase;
  color: #000;
  font-size: 96px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  position: absolute;
  z-index: 0;
}
.hero-header__img {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.filter-container {
  display: flex;
  justify-content: space-around;
  margin: 30px auto 40px auto;
}
.filter-container__form {
  display: flex;
  justify-content: center;
}
.filter-container select {
  padding: 11px 18px;
  margin: 13px;
  border-radius: 8px;
  border: 1.3px solid #B8BBC2;
  background: #fff;
  color: #313144;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  width: 260px;
}
.filter-container #filter-container__date {
  margin-left: 334px;
}

#load-more {
  border-radius: 2px;
  border-color: transparent;
  background: #D8D8D8;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.02);
  height: 50px;
  width: 263px;
  font-family: "Space Mono";
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 40px auto;
}

#load-more:hover {
  background-color: #000;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease-in;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.02);
  color: #fff;
}

.load-more--disabled {
  border-radius: 2px;
  border-color: transparent;
  background: #D8D8D8;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.02);
  height: 50px;
  width: 263px;
  font-family: "Space Mono";
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 40px auto;
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
  color: black;
  font-weight: bold;
}

.load-more--disabled:hover {
  border-radius: 2px;
  border-color: transparent;
  background: #D8D8D8;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.02);
  height: 50px;
  width: 263px;
  font-family: "Space Mono";
  font-size: 12px;
  cursor: pointer;
  cursor: default;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .hero-header__title {
    font-size: 64px;
  }
  .filter-container__form {
    flex-direction: column;
    justify-content: center;
  }
  .filter-container__form select {
    margin: 8px 0;
  }
  .filter-container__form #filter-container__date {
    margin-left: 0;
  }
}
@media screen and (min-width: 320px) and (max-width: 426px) {
  .hero-header__title {
    font-family: "Space Mono";
    font-style: italic;
    text-transform: uppercase;
    color: #000;
    font-size: 27.588px;
    font-weight: 700;
    line-height: normal;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
  }
}
/* PHOTO-BLOCK */
.photo-bloc {
  max-width: 1148px;
  width: 100%;
  flex-wrap: wrap;
  margin: auto;
  gap: 20px;
}
.photo-bloc #photo-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.photo-bloc #photo-container::after {
  content: "";
  flex: 1 0 45%;
  height: 0;
}
.photo-bloc__img {
  display: flex;
  flex: 1 0 45%;
  height: 495px;
}
.photo-bloc__img .link,
.photo-bloc__img .image,
.photo-bloc__img .hover-info {
  width: 100%;
  height: 100%;
}
.photo-bloc__img .image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.3s ease;
}
.photo-bloc__img .link {
  position: relative;
  display: flex;
  cursor: default;
}
.photo-bloc__img .hover-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
}
.photo-bloc__img .hover-info .info-container {
  display: flex;
  position: absolute;
  bottom: 0px;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}
.photo-bloc__img .hover-info .info-container__reference, .photo-bloc__img .hover-info .info-container__category {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin: 5px 10px;
}
.photo-bloc__img .hover-info__full {
  background: url(assets/img/fullscreen.svg) no-repeat;
  position: absolute;
  width: 34px;
  height: 34px;
  top: 2vh;
  right: 1vw;
  cursor: pointer;
}
.photo-bloc__img .hover-info__more {
  background: url(assets/img/eye.svg) no-repeat;
  position: absolute;
  width: 46px;
  height: 32px;
  cursor: pointer;
}
.photo-bloc__img .hover-info button {
  border: transparent;
  opacity: 0.8;
  transition: opacity 0.3s;
  z-index: 11;
  cursor: pointer;
}
.photo-bloc__img .hover-info button:hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .photo-bloc #photo-container {
    justify-content: center;
  }
  .photo-bloc #photo-container::after {
    content: "";
    flex: 1 0 100%;
    height: 0;
  }
  .photo-bloc__img {
    flex: 0 0 85%;
    flex-flow: column wrap;
    align-content: center;
  }
  .photo-bloc__img .link,
  .photo-bloc__img .image,
  .photo-bloc__img .hover-info {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 320px) and (max-width: 426px) {
  .photo-bloc__img {
    flex: 0 0 90%;
    height: 278.801px;
  }
}