@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/* ************************************************************************ */
/* KEYFRAMES */
/* ************************************************************************ */

@keyframes slide-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35px);
  }
}

@keyframes slide-right {
  from {
    transform: translateX(-35px);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    opacity: 1;

  }
}

@keyframes glow {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.2);
  }
}

@keyframes disparait {
  100% {
    opacity: 0;
    z-index: 111;
  }
}

@keyframes turn {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes slider-right-to-left {

  0%,
  20% {
    transform: translateX(0);
  }

  25%,
  45% {
    transform: translateX(-100%);
  }

  50%,
  70% {
    transform: translateX(-200%);
  }

  75%,
  95% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(-400%);
  }
}

/* ************************************************************************ */
/* GLOBAL VARIABLES */
/* ************************************************************************ */

:root {
  --background--color--dark--blue: #0e1538;
  --background--color--white: #fff;
  --hover-icon-color: #c5850d;
  --clr--band--pink: #d400d4;
  --navigation-follow-color: #c5850d;

}

/* ************************************************************************ */
/* CORPS */
/* ************************************************************************ */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  width: 100%;
}

section {
  padding: 100px 200px;
  min-height: 100vh;
}

.loading-page {
  width: 100%;
  height: 100vh;
  background-color: var(--background--color--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  position: absolute;
}

.logo-loading {
  width: auto;
  height: 25%;
  animation: glow 1.2s infinite;
}

.video-loading {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-10%);
  width: 100%;
  height: 100%;
}



.loading-page .btn-primary {
  position: fixed;
  top: 80%;
  left: 50%;
  width: 120px;
  height: 40px;
  transform: translateX(-60%);
  text-decoration: none;
  transition: background-color 0.3s;
  z-index: 999;
  background-color: #000;
  display: flex;
  align-items: center;
  color: white;
  flex-direction: column;
  justify-content: center;
  border: none;
  padding: 12px;
  gap: 12px;
  border-radius: 8px;
  cursor: pointer;
}



.loading-page .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -4px;
  top: -1px;
  margin: auto;
  width: 128px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(-90deg, #c5850d 0%, #030352 100%);
  z-index: -1;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.loading-page .btn-primary::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-90deg, #c5850d 0%, #030352 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.loading-page .btn-primary:hover::after {
  filter: blur(30px);
}

.loading-page .btn-primary:hover::before {
  transform: rotate(-180deg);
}

.loading-page .btn-primary:active::before {
  scale: 0.7;
}



.fondu-out {
  animation: disparait 0.4s forwards;
}

.page.off {
  display: none;
}

.page {
  display: block;
}

/* ************************************************************************ */
/* HEADER */
/* ************************************************************************ */

header {
  z-index: 998;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 50px;
  transition: 0.5s ease;
  width: 100%;

}



.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
  z-index: 998;
}

.header:hover::before {
  left: 100%;
}

header .navigation .brand img {
  width: 100px;
  height: 100px;

}

header .navigation .brand {
  position: absolute;
  left: 0;
  top: 0;
}


header .navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
}


header .navigation .navigation-item a {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 1.5em;
  text-decoration: none;
  transition: 0.3s ease;
}


header .navigation .navigation-item .button {
  position: relative;
  overflow: hidden;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(90deg, #c5850d 5%, #030352 95%);
  background-size: 400%;
  color: #fff;
  border: none;
  cursor: pointer;
}

header .navigation .navigation-item .button:hover::before {
  transform: scaleX(1);
}

header .navigation .navigation-item .button-content {
  position: relative;
  z-index: 1;
}

header .navigation .navigation-item .button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  border-radius: inherit;
  background: linear-gradient(-90deg, #c5850d 1%, #030352 99%);
  transition: all 0.475s;
}




/* ************************************************************************ */
/* NAVIGATION-SIDE */
/* ************************************************************************ */

.navigation-side {
  width: 75px;
  height: 100%;
  display: flex;
  top: 0;
  right: 0;
  position: fixed;
  justify-content: left;
  align-items: center;
  background: var(--background--color--dark--blue);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: 0.3s;
  flex-direction: column;
  padding-top: 5px;
  z-index: 998;
}

.navigation-side .brand-logo-right {
  width: 100%;
  height: 125px;

}

.navigation-side .brand-logo-right img {
  height: 100px;
  width: auto;
  position: absolute;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  transform: translateX(-50px);
  border: 4px white solid;
}

.navigation-side ul {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
}

.navigation-side .nav {
  padding-bottom: 25px;
  justify-content: left;
}

.navigation-side ul li {
  position: relative;
  list-style: none;
  width: 100px;
  height: 70px;
  z-index: 1;
  animation: slide-right 1s forwards;
}

.navigation-side ul li img {
  width: 50px;
  height: 50px;
  padding: 10px;
  filter: invert(1);
  z-index: 2;
}

.navigation-side ul li a {
  position: relative;
  display: flex;
  width: 100%;
  text-align: center;
  align-items: center;
  z-index: 5;
  color: white;
  text-decoration: none;
}

.navigation-side ul li div {
  position: relative;
  display: flex;
  text-align: center;
  z-index: 10;
  border-radius: 50%;
  background: var(--background--color--dark--blue);

}

.navigation-side ul li a .text {
  vertical-align: middle;
  font-size: 1.5em;
  display: none;
  text-decoration: none;

}


.navigation-side ul li a span {
  margin-left: 10px;
  margin-right: 10px;
}


.navigation-side:hover {
  width: 20%;

}


.navigation-side:hover ul li a .text {
  color: white;
  display: flex;
  transition: 0.5s;
}


.navigation-side .media .media-icons {
  position: relative;
  display: flex;
  width: 50px;
  height: 50px;

}

.navigation-side .media .media-icons i {
  color: white;
  font-size: 1.5em;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation-side .media .media-icons .linktree {
  color: white;
  font-size: 2em;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}


.navigation-side .media .media-icons i:hover {
  transform: scale(1.3);
  color: var(--hover-icon-color);
}

.navigation-side .media .media-icons .linktree:hover {
  transform: scale(1.3);
  color: var(--hover-icon-color);
}

.navigation-side ul .list1.activeList {
  animation: slide-left 0.7s forwards;
}

.navigation-side ul .list2.activeList {
  animation: slide-left 0.7s forwards;
}

.navigation-side ul .list3.activeList {
  animation: slide-left 0.7s forwards;
}

.navigation-side ul .list4.activeList {
  animation: slide-left 0.7s forwards;
}

.navigation-side ul .list1.activeList div {
  border: 5px white solid;
  transition: 0.5s;
  background: var(--navigation-follow-color);
}

.navigation-side ul .list2.activeList div {
  border: 5px white solid;
  transition: 0.5s;
  background: var(--navigation-follow-color);
}

.navigation-side ul .list3.activeList div {
  border: 5px white solid;
  transition: 0.5s;
  background: var(--navigation-follow-color);
}

.navigation-side ul .list4.activeList div {
  border: 5px white solid;
  transition: 0.5s;
  background: var(--navigation-follow-color);
}


.navigation-side {
  transform: translateX(100%);
  opacity: 0;
  transition: 0.5s ease-in-out;
}


.navigation-side.affiche {
  transform: translateX(0);
  transition: 0.5s ease-in-out;
  opacity: 1;
}

.navigation {
  transform: translateY(-100%);
  opacity: 0;
  transition: 0.5s ease-in-out;
}


.navigation.affiche {
  transform: translateY(0);
  transition: 0.5s ease-in-out;
  opacity: 1;
}



/* ************************************************************************ */
/* HOME */
/* ************************************************************************ */


.home {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.home:before {
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(53, 126, 252, 0.2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

}

.home .content {
  z-index: 888;
  color: white;
  width: 70%;
  margin-top: 50px;
  display: flex;
  align-items: left;
  justify-content: left;
  flex-direction: column;
  padding-left: 40px;
  border-left: var(--background--color--dark--blue) 4px solid;
  border-width: 5px;
}


.home .content h1 {
  font-size: 4em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.home .content .titre-accueil {
  opacity: 0.8;
  padding-left: 25px;
  padding-bottom: 15px;
}

.home .content span {
  font-size: 1em;
  font-weight: 600;
  line-height: 1em;
  font-style: italic;

}


.home .content a {
  background: black;
  padding: 15px 35px;
  color: var(--background--color--dark--blue);
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
}

.home .media-icons {
  display: none;
}



.home video {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band {
  width: 100%;
  background-color: var(--background--color--dark--blue);
  z-index: 666;
  height: 15vh;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.band::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 150%;
  background: linear-gradient(#00ccff, var(--clr--band--pink));
}

.band::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--background--color--dark--blue);
  z-index: 555;
}


.band h1 {
  position: relative;
  display: flex;
  color: white;
  font-size: 2em;
  z-index: 666;
}

/* ************************************************************************ */
/* ABOUT US */
/* ************************************************************************ */

.about-us {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 888;
  min-height: 100vh;
  background: url(../images/backgounds/abstract-uv-ultraviolet-light-composition.jpg);
  background-position: center;
  background-size: cover;
}

.about-us .content {
  min-height: 100vh;
}


.about-us h1 {
  position: relative;
  display: flex;
  justify-content: center;
  color: white;
}

.grille {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 100px;
}

.grid-item {
  display: flex;
  max-height: fit-content;
  position: relative;
  flex: 1 1 1rem;
}



.grid-item .text-photo {
  position: absolute;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 888;
  top: 50%;
  transform: translate(20%, -60%);
  display: none;
}

.grid-item img {
  transition: filter 0.3s ease, opacity 0.3s ease;
  border-radius: 5px;
  z-index: 777;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}


.grid-item:hover img {
  filter: blur(2px);
  opacity: 0.5;
  z-index: 777;
}

.grid-item:hover .text-photo {
  display: block;
}

.see-more {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--background--color--dark--blue);
  border-radius: 5px;
  border: 2px var(--background--color--dark--blue) solid;
  color: white;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  padding: 5px;
  margin: 10px;
  box-shadow: black;
  transition: 1s ease;
  cursor: pointer;
}

.see-more:hover {
  background: white;
  color: var(--background--color--dark--blue);
}


/* ************************************************************************ */
/* gallery */
/* ************************************************************************ */

.gallery {
  color: black;
  background-image: radial-gradient(circle at center center, transparent 0%, rgb(0, 0, 0) 85%), linear-gradient(78deg, rgba(192, 192, 192, 0) 0%, rgba(192, 192, 192, 0) 50%, rgba(60, 60, 60, 0.05) 50%, rgba(60, 60, 60, 0.05) 100%), linear-gradient(227deg, rgba(97, 97, 97, 0.05) 0%, rgba(97, 97, 97, 0.05) 50%, rgba(52, 52, 52, 0.05) 50%, rgba(52, 52, 52, 0.05) 100%), linear-gradient(240deg, rgba(98, 98, 98, 0.05) 0%, rgba(98, 98, 98, 0.05) 50%, rgba(249, 249, 249, 0.05) 50%, rgba(249, 249, 249, 0.05) 100%), linear-gradient(187deg, rgba(1, 1, 1, 0.05) 0%, rgba(1, 1, 1, 0.05) 50%, rgba(202, 202, 202, 0.05) 50%, rgba(202, 202, 202, 0.05) 100%), linear-gradient(101deg, rgba(61, 61, 61, 0.05) 0%, rgba(61, 61, 61, 0.05) 50%, rgba(254, 254, 254, 0.05) 50%, rgba(254, 254, 254, 0.05) 100%), linear-gradient(176deg, rgba(237, 237, 237, 0.05) 0%, rgba(237, 237, 237, 0.05) 50%, rgba(147, 147, 147, 0.05) 50%, rgba(147, 147, 147, 0.05) 100%), linear-gradient(304deg, rgba(183, 183, 183, 0.05) 0%, rgba(183, 183, 183, 0.05) 50%, rgba(57, 57, 57, 0.05) 50%, rgba(57, 57, 57, 0.05) 100%), radial-gradient(circle at center center, hsl(351, 4%, 12%), hsl(351, 4%, 12%));
}

.grille-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, 350px);
  gap: 15px;
  position: relative;
  border-radius: 25px;
  background-color: var(--background--color--dark--blue);
  justify-content: center;
  align-items: center;
  min-height: 75vh;
  padding: 50px 50px;
  overflow: hidden;
  z-index: 666;
  ;
}


.grille-gallery img {
  width: 100%;
  z-index: 666;
}



/* ************************************************************************ */
/* CONTACT */
/* ************************************************************************ */

.contact {
  position: relative;
  min-height: 100vh;
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url("../images/backgounds/back2.jpg");
  background-size: cover;
  background-position: center;
}

.contact .content {
  max-width: 800px;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 25px;
  text-align: center;
  background: rgba(1, 1, 1, 0.1);
  border: 2px solid rgba(1, 1, 1, 0.2);
  box-shadow: 20px 20px 60px #1f749f,
    -20px -20px 60px #2b9ed7;
}

.contact .content h2 {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
}


.contact .content p {

  font-weight: 300;
  color: #fff;
}

.contact .container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.contact .container .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;

}

.contact .container .contactInfo .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}

.contact .container .contactInfo .box .icon {
  min-width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.5rem;
}

.contact .container .contactInfo .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 1rem;
  color: #fff;
  flex-direction: column;
  font-weight: 200;
}

.contact .container .contactInfo .box .text h3 {
  font-weight: 500;
  color: #5cecff;
}

.contactForm {
  width: 40%;
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  border: 4px solid rgba(1, 1, 1, 0.1);
  font-size: 1rem;
  color: #333;
  box-shadow: 20px 20px 60px #333;
  font-weight: 500;
}

.contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-top: 10px;

}


.contactForm .inputBox input,
.contactForm .inputBox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 0.8rem;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contactForm .inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 1rem;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contactForm .inputBox input:focus~span,
.contactForm .inputBox input:valid~span,
.contactForm .inputBox textarea:focus~span,
.contactForm .inputBox textarea:valid~span {
  color: #009f28;
  font-size: 0.8rem;
  transform: translateY(-20px);
}


.contactForm .inputBox button {
  width: 100px;
  background: #00bcd4;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 2px solid #00bcd4;
  transition: all 0.3s;
}


.contactForm .inputBox button:hover {
  transition: all 0.3s;
  background-color: #fff;
  color: #00bcd4;
}




/* ************************************************************************ */
/* FOOTER */
/* ************************************************************************ */

footer {
  display: flex;
  text-align: center;
  justify-content: center;
  background-color: black;
  color: white;
  width: 100%;
  height: 70px;
  bottom: 0;
  position: relative;
}

footer div {
  position: absolute;
  bottom: 0;
  justify-content: center;
  text-align: center;
  display: flex;
  padding: 15px;
  font-size: 1em;
}


footer span {
  font-style: italic;
}




/* ***************************************************************************************** */
/* MEDIA QUERRIES */
/* ***************************************************************************************** */


@media (max-width :1040px) {
  header {
    padding: 12px 20px;
    border-bottom: none;
    backdrop-filter: blur(0px);
    background: none;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  header .navigation .navigation-item .button {
    background: #fff;
  }

  .home .navigation-side {
    display: none;
  }

  section {
    padding: 100px 20px;
  }


  .home .media-icons {
    z-index: 997;
    position: absolute;
    right: 0px;
    display: flex;
    flex-direction: column;
    transform: 0.5s ease;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: 0.3s ease-in-out;
    background: var(--background--color--dark--blue);
    height: 100%;
    background: none;
  }



  .home .media-icons a {
    color: white;
    transition: 0.3s ease;
    right: 0px;
    font-size: 1.2em;
  }

  .home .media-icons a:not(:last-child) {
    margin-bottom: 20px;
  }



  .home .content {
    margin-top: 0px;
    border-bottom: var(--background--color--dark--blue);
    border-top: var(--background--color--dark--blue);
    border-left-width: 0px;
  }

  .home .content h1 {
    font-size: 2.5em;
    margin-bottom: 0px;
  }

  .home .content .titre-accueil {
    padding-left: 0px;
  }

  .home .content span {
    font-size: 0.8em;
  }


  header .navigation.active {
    transform: translateY(0);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
    backdrop-filter: blur(5px);
    opacity: 1;
  }

  header .navigation .brand {
    background-color: aliceblue;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin: 15px;
    position: absolute;
  }

  header .navigation .brand img {
    width: 100%;
    height: 100%;
  }

  .navigation.affiche .navigation-item {
    display: none;
  }

  .navigation .navigation-item {
    display: none;
  }

  .menu-btn {
    position: absolute;
    z-index: 998;
    top: 0;
    right: 0;
    margin: 30px;
    background: url(../images/icons/menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.5s ease;
  }

  .menu-btn.active {
    z-index: 998;
    background: url(../images/icons/fermer.png)no-repeat;
    background-size: 30px;
    background-position: center;
    transition: 0.5s ease;
  }

  header .navigation .navigation-item a {
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-item a:before {
    background: #222;
    height: 5px;
  }

  header .navigation.active .navigation-item {
    background: white;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1, 1, 1 / 20%);
  }

  .band h1 {
    font-size: 1em;
  }

  .grid-item .text-photo {
    font-size: 0.5rem;
    transform: translate(20%, -50%);
  }

  .about-us .content {
    min-height: auto;
    flex-wrap: wrap;
  }

  .about-us .grille {
    margin: 30px 50px;
  }

  .grid-item {
    display: flex;
    max-height: fit-content;
    position: relative;
    flex: 1 1 5rem;
  }

  .grille-gallery {
    grid-template-columns: repeat(auto-fill, 300px);
  }

  .contact {
    padding: 50px;
  }

  .contact .content {
    background: none;
    background: none;
    border: none;
    box-shadow: none;
  }

  .contact .content h2 {
    color: #2b9ed7;
  }

  .contact .content p {
    color: #0f84be;
  }


  .contact .container {
    flex-direction: column;
  }

  .contact .contactInfo {
    margin-bottom: 40px;
  }

  .contact .container,
  .contactForm {
    width: 100%;
  }

  footer {
    height: 50px;
  }

  footer div {
    font-size: 0.5em;
  }

}

@media (max-width:770px),
(max-height:845px) {

  .grid-item .text-photo {
    font-size: 0.8rem;
    transform: translate(20%, -50%);
  }


  .home .content h1 {
    font-size: 1em;
    margin-bottom: 0px;
  }


  .home .content span {
    font-size: 0.5em;
  }

  .grille-gallery {
    grid-template-columns: repeat(auto-fill, 250px);
  }

  .see-more {
    font-size: 0.5em;
  }


}

@media (max-width:485px),
(max-height:325px) {

  .grille-gallery {
    grid-template-columns: repeat(auto-fill, 200px);
  }
}

@media (max-height:715px) {
  .navigation-side .brand-logo-right img {
    height: 75px;
    transform: translateX(-25px);
  }
}

@media (max-height:690px) {
  .navigation-side .brand-logo-right {
    display: none;
  }

  .navigation-side {
    padding-top: 25px;
  }
}