@import url("https://fonts.googleapis.com/css2?family=Shrikhand:wght@300;400;500;600;700;800;900&display=swap");
.loader {
  background-color: white;
  width: 100%;
  opacity: 1;
  z-index: 100;
  height: 305vh;
  position: fixed;
  padding-top: 270px;
  -webkit-animation: loader-bg 1s ease-in-out 3s 1 normal forwards;
          animation: loader-bg 1s ease-in-out 3s 1 normal forwards;
}

@media only screen and (min-width: 650px) {
  .loader {
    padding-top: 250px;
  }
}

@media only screen and (min-width: 1000px) {
  .loader {
    padding-top: 180px;
  }
}

.loader__1 {
  width: auto;
}

@-webkit-keyframes loader-bg {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
}

@keyframes loader-bg {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
}

.letter {
  z-index: 100;
  width: auto;
  color: #ff79da;
  font-size: 2rem;
  font-family: "Shrikhand", "Sans serif";
  -webkit-animation: flash 1s linear infinite;
          animation: flash 1s linear infinite;
  text-shadow: 0 0 0.1rem #ff79da;
}

@media only screen and (min-width: 650px) {
  .letter {
    font-size: 2.5rem;
  }
}

@media only screen and (min-width: 1000px) {
  .letter {
    font-size: 3rem;
  }
}

@-webkit-keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.letter:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.letter:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.letter:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.letter:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.letter:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.letter:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.letter:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.letter:nth-child(8) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.loader__2 {
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 100px;
  margin: auto;
  margin-top: 20px;
  border: 8px solid rgba(147, 86, 220, 0.2);
  border-top-color: #9356dc;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@media only screen and (min-width: 650px) {
  .loader__2 {
    width: 120px;
    height: 120px;
    border-radius: 120px;
  }
}

@media only screen and (min-width: 1000px) {
  .loader__2 {
    width: 150px;
    height: 150px;
    border-radius: 150px;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style-type: none;
  scroll-behavior: smooth;
}

.height-s {
  height: 1700px;
}

@media only screen and (min-width: 1000px) {
  .height-s {
    height: 1130px;
  }
}

.height-m {
  height: 1800px;
}

@media only screen and (min-width: 1000px) {
  .height-m {
    height: 1232px;
  }
}

#intro {
  margin: 15px auto;
  position: relative;
}

#intro__icon {
  position: absolute;
  left: 5%;
  top: 15%;
  font-size: 18px;
  font-weight: bold;
}

@media only screen and (min-width: 650px) {
  #intro__icon {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1000px) {
  #intro__icon {
    font-size: 25px;
  }
}

#intro__logo {
  margin: auto;
  width: 40%;
}

@media only screen and (min-width: 650px) {
  #intro__logo {
    width: 260px;
  }
}

@media only screen and (min-width: 1000px) {
  #intro__logo {
    width: 300px;
  }
}

.restaurant-pic {
  height: 300px;
}

.menus {
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  border-radius: 30px 30px 0 0;
}

.menus__titre {
  text-align: left;
  font-family: 'Shrikhand', cursive;
  color: black;
  margin-bottom: 20px;
}

@media only screen and (min-width: 650px) {
  .menus__titre {
    text-align: center;
    font-size: 1.7rem;
    margin: 25px 0 40px 0;
  }
}

.menus__icon {
  position: absolute;
  font-size: 1.3rem;
  top: 28px;
  right: 50px;
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
  cursor: pointer;
}

@media only screen and (min-width: 650px) {
  .menus__icon {
    font-size: 1.7rem;
    top: 44px;
    right: 50px;
  }
}

.menus__icon__vide {
  position: relative;
  z-index: 1;
}

.menus__icon__vide:hover .menus__icon__plein {
  opacity: 1;
  z-index: 1;
  -webkit-transform: scale(1.14);
          transform: scale(1.14);
}

.menus__icon__plein {
  position: absolute;
  background: -webkit-linear-gradient(#9356dc, #ff79da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}

.menus__plats {
  font-weight: normal;
  margin: 30px 0 10px 0;
}

@media only screen and (min-width: 650px) {
  .menus__plats {
    margin-left: 60px;
  }
}

@media only screen and (min-width: 1000px) {
  .menus__plats {
    margin: 0 0 10px 0;
  }
}

@media only screen and (min-width: 1000px) {
  .menus__ctn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    text-align: center;
  }
}

.barre {
  background-color: #99E2D0;
  height: 5px;
  width: 55px;
}

@media only screen and (min-width: 650px) {
  .barre {
    margin-left: 60px;
  }
}

@media only screen and (min-width: 1000px) {
  .barre {
    margin-left: 0px;
  }
}

.entrees {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: fondu 2s ease-in-out 1 normal backwards;
          animation: fondu 2s ease-in-out 1 normal backwards;
  display: flex;
  background-color: white;
  text-align: left;
  font-size: 0.9rem;
  margin: 15px -4px;
  height: 84px;
  padding: 15px 0 15px 15px;
  position: relative;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-box-shadow: 0px 3px 5px 2px #d6d6d6;
          box-shadow: 0px 3px 5px 2px #d6d6d6;
  cursor: pointer;
}

@-webkit-keyframes fondu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fondu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (min-width: 650px) {
  .entrees {
    width: 70%;
    margin: 20px auto;
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1000px) {
  .entrees {
    width: 300px;
  }
}

@media only screen and (min-width: 1300px) {
  .entrees {
    width: 400px;
  }
}

.entrees__infos {
  width: 75%;
  line-height: 27px;
  white-space: nowrap;
}

.entrees__infos h3, .entrees__infos p {
  overflow: hidden;
  text-overflow: ellipsis;
}

.entrees__tarif {
  display: inline-block;
  font-weight: bold;
  margin: 0 15px;
}

.entrees__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 0px;
  height: 84px;
  background-color: #99E2D0;
  color: white;
  border-radius: 0 20px 20px 0;
}

.entrees:hover .entrees__check {
  padding: 20px;
  -webkit-transition: 400ms;
  transition: 400ms;
  width: 60px;
}

.entrees:hover .entrees__infos {
  width: 60%;
}

.entrees:hover .entrees__check > i {
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.plats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: flex;
  background-color: white;
  text-align: left;
  font-size: 0.9rem;
  margin: 15px -4px;
  height: 84px;
  padding: 15px 0 15px 15px;
  position: relative;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-box-shadow: 0px 3px 5px 2px #d6d6d6;
          box-shadow: 0px 3px 5px 2px #d6d6d6;
  cursor: pointer;
  -webkit-animation: fondu 2s 1s ease-in-out 1 normal backwards;
          animation: fondu 2s 1s ease-in-out 1 normal backwards;
}

@keyframes fondu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (min-width: 650px) {
  .plats {
    width: 70%;
    margin: 20px auto;
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1000px) {
  .plats {
    width: 300px;
  }
}

@media only screen and (min-width: 1300px) {
  .plats {
    width: 400px;
  }
}

.plats__infos {
  width: 80%;
  line-height: 27px;
  white-space: nowrap;
}

.plats__infos p, .plats__infos h3 {
  overflow: hidden;
  text-overflow: ellipsis;
}

.plats__tarif {
  display: inline-block;
  font-weight: bold;
  margin: 0 15px;
}

.plats__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 0px;
  height: 84px;
  background-color: #99E2D0;
  color: white;
  border-radius: 0 20px 20px 0;
}

.plats:hover .plats__check {
  padding: 20px;
  -webkit-transition: 400ms;
  transition: 400ms;
  width: 60px;
}

.plats:hover .plats__infos {
  width: 60%;
}

.plats:hover .plats__check > i {
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.desserts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: fondu 2s 2s ease-in-out 1 normal backwards;
          animation: fondu 2s 2s ease-in-out 1 normal backwards;
  display: flex;
  background-color: white;
  text-align: left;
  font-size: 0.9rem;
  margin: 15px -4px;
  height: 84px;
  padding: 15px 0 15px 15px;
  position: relative;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-box-shadow: 0px 3px 5px 2px #d6d6d6;
          box-shadow: 0px 3px 5px 2px #d6d6d6;
  cursor: pointer;
}

@keyframes fondu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (min-width: 650px) {
  .desserts {
    width: 70%;
    margin: 20px auto;
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1000px) {
  .desserts {
    width: 300px;
  }
}

@media only screen and (min-width: 1300px) {
  .desserts {
    width: 400px;
  }
}

.desserts__infos {
  width: 80%;
  line-height: 27px;
  white-space: nowrap;
}

.desserts__infos p, .desserts__infos h3 {
  overflow: hidden;
  text-overflow: ellipsis;
}

.desserts__tarif {
  display: inline-block;
  font-weight: bold;
  margin: 0 15px;
}

.desserts__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  width: 0px;
  height: 84px;
  background-color: #99E2D0;
  color: white;
  border-radius: 0 20px 20px 0;
}

.desserts:hover .desserts__check {
  padding: 20px;
  -webkit-transition: 400ms;
  transition: 400ms;
  width: 60px;
}

.desserts:hover .desserts__infos {
  width: 60%;
}

.desserts:hover .desserts__check > i {
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.button {
  display: block;
  border-radius: 20px;
  color: white;
  background: linear-gradient(135deg, #FF79DA, #9356DC);
  width: 60%;
  margin: 22px auto;
  padding: 10px;
  font-weight: bold;
  -webkit-box-shadow: 1px 3px 10px 1px #b6b5b5;
          box-shadow: 1px 3px 10px 1px #b6b5b5;
  cursor: pointer;
}

@media only screen and (min-width: 650px) {
  .button {
    width: 300px;
    padding: 20px;
  }
}

.button:hover {
  -webkit-box-shadow: 2px 4px 10px 5px #c0b5be;
          box-shadow: 2px 4px 10px 5px #c0b5be;
  background: linear-gradient(135deg, #ff93e1, #a16be0);
}

.footer-menus {
  width: 100%;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

body {
  font-family: 'Roboto', sans-serif;
  color: black;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  font-size: 15px;
  -webkit-transition: 400ms;
  transition: 400ms;
  position: relative;
}

@media only screen and (min-width: 650px) {
  body {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1000px) {
  body {
    font-size: 18px;
  }
}

a {
  text-decoration: none;
  color: black;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

h1 {
  font-size: 1.6rem;
  font-weight: bolder;
}

h2 {
  font-size: 1.4rem;
  font-weight: bold;
}

h3 {
  font-size: 1.15rem;
  font-weight: bold;
}

#header {
  padding: 20px 0 10px 0;
}

#logo_intro {
  width: 40%;
}

@media only screen and (min-width: 650px) {
  #logo_intro {
    width: 30%;
  }
}

@media only screen and (min-width: 1000px) {
  #logo_intro {
    width: 300px;
  }
}

.intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.intro__form {
  display: block;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  background-color: #e0e0e0;
  margin: 0 auto;
  width: 100%;
  -webkit-box-shadow: inset 0px 4px 4px -2px #9b9b9b;
          box-shadow: inset 0px 4px 4px -2px #9b9b9b;
}

.intro__form i {
  font-size: 17px;
}

.intro__form input {
  border: none;
  background-color: #e0e0e0;
  font-size: 1rem;
  font-weight: bold;
  width: 180px;
  text-align: center;
  padding-left: 5px;
}

.intro__form input::-webkit-input-placeholder {
  color: black;
}

.intro__form input:-ms-input-placeholder {
  color: black;
}

.intro__form input::-ms-input-placeholder {
  color: black;
}

.intro__form input::placeholder {
  color: black;
}

.intro__form input:active {
  background-color: #e0e0e0;
}

.intro__description {
  background-color: #f1f1f1;
  padding: 30px 30px 10px 30px;
}

@media only screen and (min-width: 650px) {
  .intro__description {
    height: 200px;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (min-width: 1000px) {
  .intro__description {
    padding: 30px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.intro__description h1 {
  padding: 0 10px;
}

@media only screen and (min-width: 650px) {
  .intro__description h1 {
    padding: 0px;
  }
}

.intro__description p {
  padding-top: 10px;
  font-size: 1.1rem;
}

.intro__description__button {
  display: block;
  border-radius: 20px;
  color: white;
  background: linear-gradient(135deg, #FF79DA, #9356DC);
  width: 190px;
  margin: 22px auto;
  padding: 10px;
  font-weight: bold;
  -webkit-box-shadow: 1px 3px 10px 1px #b6b5b5;
          box-shadow: 1px 3px 10px 1px #b6b5b5;
  -webkit-transition: -webkit-box-shadow 400ms;
  transition: -webkit-box-shadow 400ms;
  transition: box-shadow 400ms;
  transition: box-shadow 400ms, -webkit-box-shadow 400ms;
}

@media only screen and (min-width: 650px) {
  .intro__description__button {
    width: 240px;
    padding: 19px;
    margin: 0;
  }
}

.intro__description__button:hover {
  -webkit-box-shadow: 2px 4px 10px 5px #c0b5be;
          box-shadow: 2px 4px 10px 5px #c0b5be;
  background: linear-gradient(135deg, #ff93e1, #a16be0);
}

@media only screen and (min-width: 650px) {
  .intro__description__text {
    text-align: left;
    padding-right: 30px;
  }
}

.nav {
  padding: 30px;
}

@media only screen and (min-width: 650px) {
  .nav {
    padding: 30px 0px;
  }
}

.nav__heading {
  text-align: left;
  margin-bottom: 25px;
}

@media only screen and (min-width: 650px) {
  .nav__heading {
    margin-bottom: 10px;
    margin-left: 30px;
  }
}

@media only screen and (min-width: 650px) {
  .nav__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
}

.nav__link {
  position: relative;
  text-align: left;
  margin: 15px auto;
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 3px 5px 2px #dbdbdb;
          box-shadow: 0px 3px 5px 2px #dbdbdb;
  font-weight: bold;
  font-size: 1rem;
}

@media only screen and (max-width: 330px) {
  .nav__link {
    font-size: 0.95rem;
  }
}

@media only screen and (min-width: 650px) {
  .nav__link {
    line-height: 50px;
    margin: 20px 10px;
    padding: 20px 0px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 8px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 1.02rem;
    -webkit-transition: -webkit-transform 400ms;
    transition: -webkit-transform 400ms;
    transition: transform 400ms;
    transition: transform 400ms, -webkit-transform 400ms;
  }
}

@media only screen and (min-width: 1000px) {
  .nav__link {
    font-size: 1.2rem;
    margin: 20px;
  }
}

.nav__link:hover {
  background-color: #e6ddf1;
  -webkit-box-shadow: 1px 3px 10px 1px #d3cdd1;
          box-shadow: 1px 3px 10px 1px #d3cdd1;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  cursor: pointer;
}

.nav__link__num {
  position: absolute;
  left: -3%;
  top: 18px;
  text-align: center;
  background-color: #9356dc;
  color: #fff;
  border-radius: 100%;
  padding: 3px 7px;
  font-size: 14px;
}

@media only screen and (min-width: 650px) {
  .nav__link__num {
    left: -0.5%;
    top: -1px;
    padding: 0 0 25px 0;
    height: 42px;
    width: 40px;
    font-size: 15px;
    text-align: center;
  }
}

.nav__link i {
  margin: 0 20px;
  color: gray;
}

@media only screen and (min-width: 650px) {
  .nav__link i {
    margin: 10px;
    font-size: 1.8rem;
  }
}

.nav__link i:hover {
  color: #9356DC;
}

.fa-mobile-alt {
  margin-right: 60px;
}

main {
  padding: 30px 30px 50px 30px;
  background-color: #f1f1f1;
}

main h2 {
  text-align: left;
  margin-bottom: 25px;
}

@media only screen and (max-width: 649px) {
  .ctn {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    row-gap: 20px;
  }
}

@media only screen and (min-width: 650px) {
  .ctn {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    grid-auto-rows: minmax(100px, auto);
  }
}

@media only screen and (min-width: 1000px) {
  .ctn {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    grid-auto-rows: minmax(100px, auto);
  }
}

.fig {
  position: relative;
  background-color: white;
  -webkit-box-shadow: 0px 3px 5px 2px #d6d6d6;
          box-shadow: 0px 3px 5px 2px #d6d6d6;
  border-radius: 20px;
  height: 250px;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}

.fig:hover {
  -webkit-box-shadow: 1px 3px 10px 1px #412338;
          box-shadow: 1px 3px 10px 1px #412338;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.fig__img {
  height: 180px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: black;
}

.fig__new {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: #99E2D0;
  color: #24856c;
  font-weight: bold;
  padding: 7px 10px;
}

.fig__caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px;
}

.fig__caption__text {
  text-align: left;
  line-height: 23px;
}

.fig__caption i {
  font-size: 24px;
  margin-top: 5px;
}

.fig__caption__icon {
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
  cursor: pointer;
}

.fig__caption__icon__i {
  z-index: 1;
  position: relative;
}

.fig__caption__icon__i:hover .fig__caption__icon__i__plein {
  z-index: 1;
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.fig__caption__icon__i__plein {
  position: absolute;
  background: -webkit-linear-gradient(#9356dc, #ff79da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  right: 0;
  bottom: 0.4px;
  left: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 400ms;
  transition: opacity 400ms;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  transition: transform 400ms;
  transition: transform 400ms, -webkit-transform 400ms;
}

footer {
  background-color: #424141;
  color: white;
  padding: 30px;
  text-align: left;
  line-height: 25px;
}

@media only screen and (min-width: 650px) {
  footer {
    text-align: center;
    height: 200px;
  }
}

@media only screen and (min-width: 650px) {
  footer ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    text-align: center;
  }
}

@media only screen and (min-width: 1000px) {
  footer ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
    grid-auto-rows: minmax(100px, auto);
    text-align: center;
    height: 50px;
  }
}

footer img {
  width: 120px;
  margin-bottom: 30px;
  filter: invert(100%);
  -webkit-filter: invert(100%);
}

@media only screen and (min-width: 650px) {
  footer img {
    width: 150px;
    margin-bottom: 30px;
  }
}

footer__bold {
  margin-bottom: 10px;
}

@media only screen and (min-width: 1000px) {
  footer__bold {
    margin-bottom: 0px;
  }
}

footer i {
  font-size: 12px;
}

@media only screen and (min-width: 650px) {
  footer i {
    font-size: 16px;
  }
}

footer a {
  color: white;
}

.bold {
  font-weight: bold;
}

.bold-margin {
  margin-left: 5px;
}
/*# sourceMappingURL=style.css.map */