@charset "UTF-8";
@font-face {
  font-family: "PlayfairDisplay-Bold";
  src: url("sass/base/police/PlayfairDisplay-Bold.ttf");
}
@font-face {
  font-family: "PlayfairDisplay-Regular";
  src: url("sass/base/police/PlayfairDisplay-Regular.ttf");
}
@font-face {
  font-family: "PlayfairDisplay-BoldItalic";
  src: url("sass/base/police/PlayfairDisplay-BoldItalic.ttf");
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

.button_black_border_white {
  height: fit-content;
  width: fit-content;
  color: #EDF2F4;
  background-color: #1D1A05;
  border: 2px solid #EDF2F4;
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 17px;
  text-align: center;
  font-family: "PlayfairDisplay-Bold";
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
}
.button_black_border_white:hover {
  color: #1D1A05;
  background-color: #EDF2F4;
  border: 2px solid #1D1A05;
}

.button_white_border_black {
  height: fit-content;
  width: fit-content;
  display: block;
  color: #1D1A05;
  background-color: #EDF2F4;
  border: 2px solid #1D1A05;
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 17px;
  font-family: "PlayfairDisplay-Bold";
  font-weight: 700;
  cursor: pointer;
  transition: 0.5s;
}
.button_white_border_black:hover {
  color: #EDF2F4;
  background-color: #1D1A05;
  border: 2px solid #EDF2F4;
}

.form_white {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  padding: 53px 60px;
  background-color: #EDF2F4;
  height: fit-content;
  width: fit-content;
  border-radius: 5px;
  border: 2px solid #1D1A05;
}
.form_white input[type=file] {
  display: none;
}
.form_white input[type=text], .form_white input[type=url] {
  height: 26px;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #1D1A05;
  border-radius: 2px;
  flex-grow: 1;
  font-size: 20px;
  font-family: "PlayfairDisplay-Regular";
  vertical-align: middle;
}
.form_white label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1D1A05;
  color: #EDF2F4;
  font-family: "PlayfairDisplay-Bold";
  font-weight: 700;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  cursor: pointer;
}
.form_white p {
  font-family: "PlayfairDisplay-Regular";
  font-size: 20px;
  color: #1D1A05;
}
.form_white div {
  width: 550px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 7px;
  height: auto;
}
.form_white-checkbox label {
  display: block;
  height: 23px;
  width: 23px;
  background: rgba(0, 0, 0, 0);
  border: 2px solid #1D1A05;
  border-radius: 5px;
  position: relative;
}
.form_white-checkbox label:hover {
  content: "✓ dqsqsdqdqsdqsdqsd";
  color: #000;
  font-size: 24px;
}
.form_white-checkbox input[type=checkbox]:checked ~ label:after {
  color: red;
  background: aqua;
  opacity: 1;
}

.form_black {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 45px 80px;
  background-color: #1D1A05;
  height: fit-content;
  width: fit-content;
  border: 2px solid #EDF2F4;
  border-radius: 5px;
  transition: 1s;
}
.form_black input[type=file] {
  display: none;
}
.form_black input[type=text], .form_black input[type=url], .form_black input[type=password], .form_black input[type=email] {
  height: 26px;
  width: 290px;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #EDF2F4;
  border-radius: 2px;
  font-size: 20px;
  font-family: "PlayfairDisplay-Regular";
  vertical-align: middle;
  color: #EDF2F4;
}
.form_black input[type=text]:focus-visible, .form_black input[type=url]:focus-visible, .form_black input[type=password]:focus-visible, .form_black input[type=email]:focus-visible {
  outline: none;
  border: 2px solid #EDF2F4;
}
.form_black input[type=submit] {
  align-self: center;
}
.form_black label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EDF2F4;
  color: #1D1A05;
  font-family: "PlayfairDisplay-Bold";
  font-weight: 700;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}
.form_black label[for=id_video] {
  display: none;
}
.form_black p {
  font-family: "PlayfairDisplay-Regular";
  font-size: 20px;
  color: #EDF2F4;
  white-space: nowrap;
  margin: 0 10px 0 10px;
  flex-grow: 1;
  text-align: end;
  text-align: center;
}
.form_black h1 {
  color: #EDF2F4;
}
.form_black li {
  white-space: pre-line;
  list-style-type: none;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.form_black-block_input {
  max-width: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 17px;
  width: fit-content;
}
.form_black-block_input div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  height: auto;
}
.form_black-checkbox input[type=checkbox] {
  display: none;
}
.form_black-checkbox label {
  display: block;
  height: 23px;
  width: 23px;
  background: rgba(0, 0, 0, 0);
  border: 2px solid #EDF2F4;
  border-radius: 5px;
  position: relative;
}
.form_black-checkbox label::before {
  content: "✓";
  font-size: 22px;
  color: transparent;
}
.form_black-checkbox input:checked + label::before {
  color: #EDF2F4;
}
.form_black-error {
  flex-direction: column !important;
  gap: 0 !important;
}
.form_black-error ul {
  width: 100%;
}
.form_black-error li {
  color: #EDF2F4;
  font-size: 15px;
}
@media (width < 640px) {
  .form_black {
    padding: 53px 0vw !important;
    width: 100%;
  }
  .form_black h1 {
    text-align: center;
    font-size: 35px;
    width: 100%;
  }
  .form_black input[type=text], .form_black input[type=url], .form_black input[type=password], .form_black input[type=email] {
    font-size: 15px;
    width: 98%;
  }
  .form_black label {
    text-align: center;
  }
  .form_black p {
    white-space: normal;
    margin: 0;
  }
  .form_black-block_input {
    width: 100%;
    align-items: center;
  }
  .form_black-block_input div {
    flex-direction: column;
    align-items: start;
    width: 90%;
    margin: 0 10px;
  }
  .form_black-checkbox label {
    align-self: center;
  }
}

header {
  transition: 0.5s;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: #EDF2F4;
  padding: 0px 30px;
  height: 63px;
  z-index: 1;
}
header div:nth-child(1) img {
  width: 200px;
  height: 28px;
}
header svg {
  display: none;
}
header svg:hover {
  filter: invert(35%);
}
header nav {
  width: 100%;
  padding: 0px 30px 0px 0px;
  transition: 1s;
}
header nav ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 32px;
}
header div:nth-child(3) {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
header div:nth-child(3) img {
  width: 26px;
  height: 26px;
}
@media (width < 910px) {
  header div:nth-child(1) img {
    content: url("/static/img/new_logo_FLE_resize.png");
    height: 28px;
    width: auto;
  }
  header nav {
    display: none;
    position: absolute;
    right: 0;
    top: 63px;
    width: auto;
    height: 0px;
    padding: 0;
    order: 1;
    background-color: #EDF2F4;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
  }
  header nav ul {
    flex-direction: column;
    height: fit-content;
    width: fit-content;
    align-items: flex-start;
    padding: 30px 30px 30px 30px;
  }
  header nav h3 {
    text-shadow: 0px 1px 6px #EDF2F4;
  }
  header svg {
    display: block;
    height: 25px;
    cursor: pointer;
  }
}
@media (width < 500px) {
  header nav {
    width: 100%;
  }
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #1D1A05;
}

*::-webkit-scrollbar-thumb {
  background-color: #EDF2F4;
  border-radius: 1px;
  border: none;
}

h1 {
  font-family: "PlayfairDisplay-Bold";
  font-size: 42px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-family: "PlayfairDisplay-BoldItalic";
  font-size: 17px;
  color: #1D1A05;
}

p {
  font-size: 20px;
}

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

.block_create_account {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  flex-grow: 1;
  background-color: #1D1A05;
}
.block_create_account form {
  padding: 45px 40px;
}

.connexion_gallery {
  height: 100%;
  display: grid;
  grid-template-columns: 631px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  margin: auto 0px;
}
.connexion_gallery form {
  grid-area: 1/1/2/2;
  justify-self: start;
  padding: 45px 50px;
  margin: 0 0 0 30px;
}
.connexion_gallery-block_img {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-self: center;
  grid-area: 1/2/3/3;
  margin: 0 30px 0 0;
}
.connexion_gallery-block_img img {
  height: 750px;
  width: 300px;
  object-fit: cover;
  flex-grow: 1;
  flex-shrink: 1;
}
.connexion_gallery-description {
  grid-area: 2/1/3/2;
  max-width: 500px;
  justify-self: start;
  margin: 0 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: max-content;
}
.connexion_gallery-description p {
  font-size: 20px;
}
@media (width < 1383px) {
  .connexion_gallery-block_img img:nth-child(1) {
    display: none;
  }
  .connexion_gallery-block_img img:nth-child(2) {
    width: 100%;
    object-position: center;
  }
}
@media (width < 1100px) {
  .connexion_gallery {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .connexion_gallery-block_img img:nth-child(2) {
    display: none;
  }
}
@media (width < 650px) {
  .connexion_gallery form {
    margin: 0;
  }
  .connexion_gallery-description {
    max-width: fit-content;
    margin: 0 10px;
  }
  .connexion_gallery-description h1 {
    font-size: 30px;
  }
}

.create_gallery {
  background-color: #1D1A05;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 50px 0px 50px 0px;
  flex-grow: 1;
  gap: 12vh;
  align-items: center;
  justify-content: center;
}
.create_gallery-block_new_gallery {
  background-color: #EDF2F4;
  width: fit-content;
  height: fit-content;
  padding: 50px 100px 50px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.create_gallery-block_new_gallery > h1 {
  text-align: center;
  max-width: 380px;
}
.create_gallery-block_new_gallery span {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.create_gallery-block_new_gallery div {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 8px;
}
.create_gallery-block_new_gallery svg {
  height: 21px;
  width: 17px;
  cursor: pointer;
}
.create_gallery-block_new_gallery svg:hover {
  filter: opacity(0.6);
}
@media (width < 500px) {
  .create_gallery {
    margin: 0;
  }
  .create_gallery h1 {
    font-size: 30px;
  }
  .create_gallery-block_new_gallery {
    padding: 50px 10px 50px 10px;
    margin: 0 10px;
  }
}

.dashboard {
  transition: 2s;
  height: auto;
  width: 100%;
  background-color: #1D1A05;
  display: flex;
  flex-direction: column;
  padding: 0 0 60px 0;
  flex-grow: 1;
}
.dashboard-button_create_gallery {
  align-self: flex-end;
  margin: 0 115px 30px 115px;
  transition: 1s;
}
.dashboard-delete_user {
  align-self: flex-start;
}
.dashboard > h1, .dashboard > h2 {
  color: #EDF2F4;
  margin: 0px 0 15px 115px;
  transition: 1s;
}
.dashboard > h1 {
  margin-top: 30px;
  transition: 1s;
}
.dashboard-confirme_email {
  color: #EDF2F4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  margin: 30px 20px 0 20px;
  padding: 30px;
  border: #EDF2F4 solid 2px;
  border-radius: 5px;
  width: fit-content;
  align-self: center;
}
.dashboard-confirme_email a {
  text-decoration: underline;
  color: #c95b12;
}
.dashboard-confirme_email a:visited {
  color: #c91212;
}
.dashboard-block_gallery {
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 115px;
  transition: 1s;
}
.dashboard-block_gallery div {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-grow: 1;
  justify-content: end;
  width: 100%;
  border-radius: 5px;
  gap: 20px;
  transition: 1s;
}
.dashboard-block_gallery div div {
  margin: 30px 30px 30px 0px;
  transition: 1s;
}
.dashboard-block_gallery div div a {
  display: none;
}
.dashboard-block_gallery div div p {
  font-size: 20px;
}
.dashboard-block_gallery h2 {
  width: 100%;
  margin: 30px 0px 30px 30px;
  text-align: left;
  transition: 1s;
}
.dashboard-block_gallery > div:nth-child(odd) {
  background-color: #1D1A05;
  border: 2px solid #EDF2F4;
}
.dashboard-block_gallery > div:nth-child(odd) h2 {
  color: #EDF2F4;
  width: 100%;
}
.dashboard-block_gallery > div:nth-child(odd) p {
  color: #EDF2F4;
}
.dashboard-block_gallery > div:nth-child(odd) .dashboard-block_gallery-loader {
  border: 8px solid #3f3d2e;
  border-top: 8px solid #EDF2F4;
}
.dashboard-block_gallery > div:nth-child(even) {
  background-color: #EDF2F4;
}
.dashboard-block_gallery > div:nth-child(even) .dashboard-block_gallery-loader {
  border: 8px solid #c7c7c7;
  border-top: 8px solid #1D1A05;
}
.dashboard-block_gallery-loader {
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  animation: spin 1s linear infinite;
  border: 8px solid #3f3d2e;
  border-top: 8px solid #EDF2F4;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (width < 1020px) {
  .dashboard > h1, .dashboard > h2 {
    color: #EDF2F4;
    margin: 0px 0 15px 30px;
  }
  .dashboard > h1 {
    margin-top: 30px;
  }
  .dashboard-block_gallery {
    margin: 0 30px;
  }
  .dashboard-button_create_gallery {
    align-self: flex-end;
    margin: 0 30px 30px 0;
  }
}
@media (width < 899px) {
  .dashboard-block_gallery {
    margin: 0 30px;
  }
  .dashboard-block_gallery div div {
    width: 100%;
    margin: 30px 0px;
    flex-direction: column;
    transition: 1s;
  }
  .dashboard-block_gallery div div a {
    width: 100px;
    transition: 1s;
  }
}
@media (width < 550px) {
  .dashboard > h1 {
    text-align: center;
    margin: 15px 5px 0 5px;
  }
  .dashboard > h2 {
    text-align: center;
    margin: 15px 5px 25px 5px;
  }
  .dashboard-button_create_gallery {
    align-self: center;
    margin: 0 0px 30px 0;
  }
  .dashboard-block_gallery div {
    flex-direction: column;
  }
  .dashboard-block_gallery h2 {
    margin: 20px 0 0 0;
    text-align: center;
  }
}

.block_valide_email {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1D1A05;
  height: 100vh;
}
.block_valide_email div {
  width: fit-content;
  padding: 30px 40px;
  border-radius: 5px;
  border: #EDF2F4 2px solid;
}
.block_valide_email p {
  color: #EDF2F4;
  font-size: 20px;
}
.block_valide_email a {
  display: block;
  margin: 20px 0 0 0;
}

.block_confirmation_send_mail_reset_password {
  background-color: #1D1A05;
  height: 100vh;
}
.block_confirmation_send_mail_reset_password h1 {
  color: #EDF2F4;
  padding: 30px;
}
.block_confirmation_send_mail_reset_password p {
  color: #EDF2F4;
  padding: 30px;
}
.block_confirmation_send_mail_reset_password a {
  color: #EDF2F4;
  text-decoration: underline;
}

.block_new_password {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #EDF2F4;
}
.block_new_password form {
  margin: 30px;
}

.block_send_mail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.block_send_mail form {
  margin: 50px 30px;
}
.block_send_mail a {
  color: #EDF2F4;
  text-decoration: underline;
}

.block_valide_new_password {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1D1A05;
  gap: 30px;
  padding: 30px 50px;
  height: 100vh;
}
.block_valide_new_password h1 {
  color: #EDF2F4;
  padding: 30px;
}
.block_valide_new_password p {
  color: #EDF2F4;
  padding: 30px;
}
.block_valide_new_password a {
  color: #EDF2F4;
  text-decoration: underline;
}

.gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #1D1A05;
  flex-grow: 1;
}
.gallery h1 {
  color: #EDF2F4;
  z-index: 1;
  text-align: center;
}
.gallery iframe {
  height: 34vw;
  width: 59vw;
  z-index: 1;
}
.gallery-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: fit-content;
  padding: 40px 0;
}
.gallery-header a {
  z-index: 1;
}
.gallery-header-background_img {
  background-color: aqua;
  background-position: center center;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  filter: grayscale(100%) blur(40px);
}
.gallery-block_img {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  width: 90vw;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
  z-index: 1;
}
.gallery-block_img-img {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
}
.gallery-block_img-img img {
  grid-area: 1/1/3/3;
  height: 25vw;
  object-fit: cover;
  cursor: pointer;
}
.gallery-block_img-img a {
  grid-area: 2/2/3/3;
  padding: 10px;
}
.gallery-block_img-img svg {
  height: 25px;
  width: 25px;
}
.gallery-pagination {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 0 30px 0;
}
.gallery-pagination p {
  color: #EDF2F4;
  font-size: 20px;
}
.gallery-pagination a {
  display: block;
}
@media (width < 1000px) {
  .gallery iframe {
    height: 49vw;
    width: 85vw;
  }
}
@media (width < 500px) {
  .gallery-pagination {
    flex-direction: column;
  }
  .gallery-block_img-img img {
    cursor: initial;
  }
}

.full_screen {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  position: sticky;
  z-index: 1;
  height: 100vh;
  width: 100%;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  align-items: center;
  justify-content: center;
  background-color: #1D1A05;
  user-select: none;
}
.full_screen::-webkit-scrollbar {
  width: 10px;
  height: 20px;
  color: orchid;
  background-color: black;
}
.full_screen-left_arrow {
  z-index: 2;
  height: 70px;
  justify-self: start;
  margin: 0 0 0 10px;
  grid-area: 2/1/3/2;
  cursor: pointer;
  filter: invert(0.2);
  user-select: none;
}
.full_screen-left_arrow:hover {
  filter: invert(0.8);
}
.full_screen-right_arrow {
  z-index: 2;
  grid-area: 2/3/3/4;
  height: 70px;
  justify-self: end;
  margin: 0 10px 0 0;
  cursor: pointer;
  filter: invert(0.2);
  user-select: none;
}
.full_screen-right_arrow:hover {
  filter: invert(0.8);
}
.full_screen-close_ful_screen {
  z-index: 2;
  grid-area: 1/3/2/4;
  height: 40px;
  justify-self: end;
  align-self: start;
  margin: 10px 10px 0 0;
  cursor: pointer;
  filter: invert(0.2);
  user-select: none;
}
.full_screen-close_ful_screen:hover {
  filter: invert(0.8);
}
.full_screen img {
  z-index: 1;
  display: block;
  grid-area: 1/1/4/4;
  justify-self: center;
  object-fit: scale-down;
  width: 100%;
  height: 100%;
  user-select: none;
}

.login_page {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: auto 30px;
}
.login_page a {
  color: #EDF2F4;
  text-decoration: underline;
}
.login_page-block_img {
  width: fit-content;
  flex-grow: 0;
  flex-shrink: 2;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.login_page-block_img img {
  object-fit: cover;
}
.login_page-block_img > img {
  width: 30%;
  height: 620px;
  flex-grow: 1;
  flex-shrink: 1;
}
.login_page-block_img-1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  flex-shrink: 1;
}
.login_page-block_img-1 img:nth-child(1) {
  flex-grow: 1;
  flex-shrink: 1;
  width: 100%;
  height: 300px;
}
.login_page-block_img-1 img:nth-child(2) {
  flex-grow: 1;
  flex-shrink: 1;
  width: 100%;
  height: 300px;
}
@media (width < 1270px) {
  .login_page-block_img > img {
    width: 100%;
  }
  .login_page-block_img-1 > img {
    display: none;
  }
}
@media (width < 910px) {
  .login_page {
    flex-direction: column-reverse;
    margin: 40px 0px;
  }
  .login_page form {
    min-width: initial;
  }
  .login_page-block_img {
    width: 90vw;
  }
  .login_page-block_img-1 {
    display: none;
  }
  .login_page-block_img-1 > img {
    display: flex;
  }
}

.modified_gallery {
  padding: 40px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color: #1D1A05;
}
.modified_gallery h1 {
  color: #EDF2F4;
  text-align: center;
}
.modified_gallery-block_picture {
  background-color: aquamarine;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px;
}
.modified_gallery-block_picture img {
  height: 300px;
  grid-area: 1/1/3/3;
}
.modified_gallery-block_picture > div {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}
.modified_gallery-block_picture-button {
  flex-grow: 1;
  grid-area: 2/2/3/3;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  gap: 5px;
  margin: 0 5px 5px 0;
}
.modified_gallery-block_picture-button h3 {
  color: #EDF2F4;
}
.modified_gallery-block_picture-button a {
  font-size: 8px;
  padding: 5px 8px;
}

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