@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&family=Raleway:wght@100;200;400;500;700&display=swap");
/* from... */
/* to... */
/* from... to... */
/* at... */
@import "icon.css";
@import "nyata.css";
:root {
  --primary-color: #213136;
  --primary-light-color: #799faf;
  --secondary-color: #030000;
  --third-color: #a17a3e;
  --font-color: #424242;
  --bg-color: #f5f4f4;
  --obg-color: #f0f0ef;
  --heading-color: #2a41487e;
  --realImg: "../img/realisationsWhite.jpg";
}

[data-theme=dark] {
  --primary-color: #c9a96b;
  --secondary-color: #c4ac7cc0;
  --font-color: #ececff;
  --bg-color: rgb(19, 19, 19);
  --obg-color: #20201f;
  --heading-color: #b39b6b;
  --realImg: "../img/realisationsBlack.png";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Cabin", sans-serif;
  color: var(--primary-color);
  background-color: var(--bg-color);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  line-height: 25px;
}

a {
  color: var(--primary-color);
  text-decoration: none !important;
}

ul {
  list-style: none;
}

h1 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 2.8rem;
  position: relative;
  padding-bottom: 1rem;
}
h1:after {
  display: block;
  content: "";
  width: 100px;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  bottom: -10px;
  left: 0;
}
h1.color:after {
  background: var(--third-color);
}
h1.light:after {
  background: var(--primary-light-color);
}
h1.center:after {
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
}
h1.reverse:after {
  background: var(--bg-color);
}
h1.inline:after {
  width: 56px;
  bottom: 35px;
  left: 210px;
}
h1.long:after {
  left: 25%;
}

h2 {
  margin-bottom: 1.1rem;
  font-family: "Nyata";
  color: var(--third-color);
  font-size: 20px;
}
h2.light {
  color: var(--primary-light-color);
}

.btn {
  border-radius: 8%;
  background-color: var(--primary-color);
  color: var(--bg-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 1px 1px 2px 1px #25232363;
}
.btn:hover {
  background-color: var(--secondary-color);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.btn.btn-color {
  background-color: var(--third-color);
  padding: 0.7rem;
  text-transform: uppercase;
  border-radius: 4%;
  color: var(--bg-color) !important;
}

.shrinkNav > div {
  box-shadow: 0 2px 8px #21313659;
  padding: 5px 4rem;
}
.shrinkNav > div .title {
  font-size: 3.5rem;
}

header {
  padding-top: 85px;
  position: fixed;
  z-index: 6;
}
header #burger,
header label {
  display: none;
  position: absolute;
  top: -30px;
}
@media screen and (max-width: 1024px) {
  header #burger,
header label {
    display: inherit;
  }
}
header > div {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 25px 5rem;
  z-index: 5;
  background-color: var(--bg-color);
  transition: 0.5s;
}
header > div .title {
  font-size: 6rem;
  padding-bottom: 0.2rem;
}
header > div .title i::before {
  color: var(--primary-color);
}
header > div .nav {
  display: flex;
  z-index: 1;
}
header > div .nav ul {
  display: flex;
}
header > div .nav ul:nth-child(2) a {
  padding: 7px;
}
header > div .nav ul li a {
  padding: 0 15px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  color: var(--primary-light-color);
}
header > div .nav ul li a:hover, header > div .nav ul li a.active {
  color: var(--secondary-color);
}
@media screen and (max-width: 1024px) {
  header input + label {
    position: fixed;
    top: 40px;
    right: 40px;
    height: 20px;
    width: 15px;
    z-index: 6;
  }
  header input + label span {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    left: 0;
    display: block;
    background: var(--primary-color);
    transition: 0.5s;
  }
  header input + label span:first-child {
    top: 4px;
  }
  header input + label span:last-child {
    top: 16px;
  }
  header label:hover {
    cursor: pointer;
  }
  header input:checked + label span {
    opacity: 0;
    top: 50%;
  }
  header input:checked + label span:first-child {
    opacity: 1;
    transform: rotate(405deg);
  }
  header input:checked + label span:last-child {
    opacity: 1;
    transform: rotate(-405deg);
  }
  header input:checked ~ div > nav {
    height: 100%;
    transition-delay: 0s;
  }
  header input:checked ~ div > nav > ul > li {
    opacity: 1;
    transition-delay: 0.5s;
  }
  header > div {
    display: inherit;
    margin: 0;
  }
  header > div .title {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    z-index: 4;
  }
  header > div .title i {
    font-size: 4rem;
  }
  header > div .nav {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transition: 0.5s;
    transition-delay: 0.5s;
    overflow: hidden;
    color: var(--primary-color);
    background-color: var(--bg-color);
    box-shadow: 0 2px 8px #21313659;
  }
  header > div .nav > ul {
    padding: 0;
    list-style: none;
  }
  header > div .nav > ul:first-child {
    flex-direction: column;
    margin-top: 100px;
  }
  header > div .nav > ul:last-child {
    flex-direction: row;
    align-self: center;
  }
  header > div .nav > ul:last-child > li {
    margin: 0;
  }
  header > div .nav > ul > li {
    opacity: 0;
    transition: 0.5s;
    transition-delay: 0s;
    width: fit-content;
    margin: 3rem auto;
  }
  header > div .nav > ul > li a.active:after {
    border-color: white;
  }
}

#container {
  max-width: 100%;
  margin-top: 85px;
}
#container #home {
  margin: 0 1rem;
}
@media screen and (max-width: 1024px) {
  #container #home {
    margin: 0;
  }
}
#container #home .h-caroussel {
  position: relative;
}
#container #home .h-caroussel .h-c-slide {
  margin-left: 10%;
  background-image: url(../img/Facade.jpg);
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 90px);
}
@media screen and (max-width: 1024px) {
  #container #home .h-caroussel .h-c-slide {
    margin-left: 0;
  }
}
#container #home .h-caroussel .h-c-title {
  position: absolute;
  padding: 4rem 3rem;
  background-color: var(--bg-color);
  top: 75%;
  transform: translateY(-70%);
  max-width: 34%;
}
@media screen and (max-width: 768px) {
  #container #home .h-caroussel .h-c-title {
    margin-left: 1rem;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -80%);
    max-width: 100%;
    margin-left: 0;
    width: 90%;
  }
}
#container #home .h-caroussel .h-c-title h1 {
  margin-top: 0;
  font-weight: 600;
  line-height: 1.2em;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1024px) {
  #container #home .h-caroussel .h-c-title h1 {
    font-size: 2.5rem;
  }
}
#container #home .h-caroussel .h-c-title p {
  font-weight: 400;
  line-height: 1.6em;
  font-size: 22px;
  margin-bottom: 15px;
}
#container #home .h-caroussel .h-c-title a:nth-child(3) {
  color: var(--secondary-color);
  display: block;
  margin-bottom: 15px;
}
#container #home .h-presentation {
  display: flex;
  flex-direction: row;
  margin: auto;
  padding-top: 6.5rem;
  width: 70%;
}
@media screen and (max-width: 1024px) {
  #container #home .h-presentation {
    font-size: 1rem;
    flex-direction: column;
    width: 100%;
    padding-top: 0;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  #container #home .h-presentation .h-p-text {
    margin: 3rem 3rem 3rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  #container #home .h-presentation .h-p-text {
    margin: 3rem 1rem;
  }
}
#container #home .h-presentation .h-p-text div {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  #container #home .h-presentation .h-p-text div {
    width: 100%;
  }
}
#container #home .h-presentation .h-p-text div p {
  margin: 2rem 0;
}
#container #home .h-presentation .h-p-img {
  margin: 2rem;
  max-width: 60%;
}
@media screen and (max-width: 1024px) {
  #container #home .h-presentation .h-p-img {
    margin: 0;
    margin-right: 1rem;
    padding-top: 1rem;
    align-self: center;
  }
}
#container #home .h-presentation .h-p-img img {
  width: 100%;
  max-height: 100%;
  box-shadow: 3px 4px 12px 0px rgba(0, 0, 0, 0.84), 14px -4px 0px 3px #a17a3e, 14px 12px 0px 3px #a17a3e;
}

#home:before,
#restaurant:before,
#menu:before,
#contact:before {
  display: block;
  content: " ";
  margin-top: -85px;
  height: 85px;
  visibility: hidden;
  pointer-events: none;
}

#restaurant {
  margin: 0 1rem;
}
@media screen and (max-width: 1024px) {
  #restaurant {
    margin: 0;
  }
}
#restaurant .r-presentation {
  margin: 3% 20%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #restaurant .r-presentation {
    margin: 0;
  }
}
#restaurant .r-presentation p {
  margin: 2rem 15px;
  line-height: 30px;
  padding-bottom: 3rem;
}
#restaurant .r-evenement {
  margin-top: 5rem;
}
#restaurant .r-evenement .r-e-panel {
  background-color: var(--primary-light-color);
  padding-top: 1.54rem;
}
#restaurant .r-evenement .r-e-panel .r-e-p-gallery {
  height: auto;
  flex-direction: row;
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: -80px 1rem 0 auto;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #restaurant .r-evenement .r-e-panel .r-e-p-gallery {
    flex-direction: column;
    width: auto;
    margin: -80px 1rem 0 1rem;
  }
}
#restaurant .r-evenement .r-e-panel .r-e-p-gallery img {
  width: 190px;
  height: 190px;
  border: 2px solid #fff;
  -moz-box-shadow: 0px 6px 5px var(--primary-color);
  -webkit-box-shadow: 0px 6px 5px var(--primary-color);
  box-shadow: 0px 6px 5px var(--primary-color);
  -moz-border-radius: 190px;
  -webkit-border-radius: 190px;
  border-radius: 190px;
  margin: 0.5rem;
}
@media screen and (max-width: 768px) {
  #restaurant .r-evenement .r-e-panel .r-e-p-gallery img {
    margin-top: 0;
  }
  #restaurant .r-evenement .r-e-panel .r-e-p-gallery img:not(:last-child) {
    margin-bottom: -2rem;
  }
  #restaurant .r-evenement .r-e-panel .r-e-p-gallery img:nth-child(odd) {
    margin-right: 0;
    margin-left: 40%;
  }
  #restaurant .r-evenement .r-e-panel .r-e-p-gallery img:nth-child(even) {
    margin-left: 0;
    margin-right: 40%;
  }
}
#restaurant .r-evenement .r-e-text {
  background-color: var(--primary-color);
  height: 25rem;
  color: var(--bg-color);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#restaurant .r-evenement .r-e-text .r-e-t-container {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  #restaurant .r-evenement .r-e-text .r-e-t-container {
    margin: 3rem 3rem 3rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  #restaurant .r-evenement .r-e-text .r-e-t-container {
    width: 100%;
    margin: 2rem 1rem;
  }
}
#restaurant .r-evenement .r-e-text .r-e-t-container p {
  margin-left: 10rem;
}
@media screen and (max-width: 1024px) {
  #restaurant .r-evenement .r-e-text .r-e-t-container p {
    margin: 0;
  }
}

#menu {
  margin-top: 8rem;
}
#menu .m-presentation {
  width: fit-content;
  margin: auto;
  text-align: center;
}
#menu .m-list {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  #menu .m-list {
    flex-direction: column;
    margin: 3rem 5rem 0 5rem;
  }
}
@media screen and (max-width: 768px) {
  #menu .m-list {
    margin: 3rem 1rem 7rem 1rem;
  }
  #menu .m-list:last-child {
    margin: 3rem 1rem;
  }
}
#menu .m-list .m-l-title {
  flex: 0 0 10rem;
}
#menu .m-list .m-l-title h1 {
  margin-top: 2rem;
  font-size: 1.8rem !important;
}
#menu .m-list .m-l-title a {
  color: var(--primary-light-color);
  transition: 0.5s;
}
#menu .m-list .m-l-title a:hover {
  color: var(--primary-color);
}
#menu .m-list .m-l-tabs {
  margin: 4rem 0 5rem 2rem;
  flex: 0 0 50rem;
}
@media screen and (max-width: 1024px) {
  #menu .m-list .m-l-tabs {
    margin: 0 0 2rem 0;
    flex: auto;
  }
}
#menu .m-list .m-l-tabs .m-l-tabsEat,
#menu .m-list .m-l-tabs .m-l-tabsDrink {
  display: flex;
  flex-wrap: wrap;
  font-family: sans-serif;
}
#menu .m-list .m-l-tabs .tabs__label {
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 1px solid #dddddd;
  flex: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--primary-light-color);
  transition: all ease-in-out;
}
#menu .m-list .m-l-tabs .tabs__label:hover {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}
#menu .m-list .m-l-tabs .tabs__radio {
  display: none;
}
#menu .m-list .m-l-tabs .tabs__content {
  order: 1;
  width: 90%;
  line-height: 1.5;
  font-size: 0.9em;
  display: none;
  padding-top: 2rem;
  margin: auto;
}
#menu .m-list .m-l-tabs .tabs__content h3 {
  text-transform: uppercase;
  margin: 0;
  font-size: 1rem;
}
#menu .m-list .m-l-tabs .tabs__content div {
  text-align: center;
}
#menu .m-list .m-l-tabs .tabs__radio:checked + .tabs__label {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}
#menu .m-list .m-l-tabs .tabs__radio:checked + .tabs__label + .tabs__content {
  display: initial;
}
#menu .m-list .m-l-tabs ul {
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
}
#menu .m-list .m-l-tabs ul:nth-child(1) {
  margin-bottom: 0;
}
#menu .m-list .m-l-tabs ul:nth-child(1) span {
  font-style: italic;
}
#menu .m-list .m-l-tabs ul li {
  display: flex;
  border-bottom: 1px dotted #dddddd;
  align-items: baseline;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#menu .m-list .m-l-tabs ul li:last-child {
  border-bottom: none;
}
#menu .m-list .m-l-tabs ul li p {
  flex: 1 0 0;
}
#menu .m-list .m-l-tabs ul li p,
#menu .m-list .m-l-tabs ul li p ~ span {
  font-weight: 500;
  font-size: 16px;
}
#menu .m-list .m-l-tabs ul li p span {
  display: block;
  font-style: italic;
  font-weight: lighter;
  font-size: 13px;
}
#menu .m-list .m-l-tabs ul li span {
  margin-left: 1rem;
}
#menu .m-image {
  margin: 0 1rem;
  margin-top: 5rem;
  position: relative;
  height: 22rem;
  background: url(../img/Wine.jpg) no-repeat bottom center fixed;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #menu .m-image {
    margin: 0;
    height: 33rem;
  }
}
#menu .m-image .m-i-panel {
  position: absolute;
  height: 22rem;
  width: 64%;
  background-color: var(--primary-color);
  color: var(--bg-color);
  top: -20%;
  left: 0;
  padding: 3rem 5rem 0rem 10rem;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 1279px) {
  #menu .m-image .m-i-panel {
    width: 80%;
    padding: 2rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  #menu .m-image .m-i-panel {
    width: 100%;
    padding: 2rem 3rem;
    flex-direction: column;
    height: auto;
  }
}
#menu .m-image .m-i-panel > div h3 {
  padding-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
}
#menu .m-image .m-i-panel > div h3:after {
  display: block;
  content: "";
  width: 24%;
  height: 3px;
  background: var(--bg-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
#menu .m-image .m-i-panel > div ul {
  padding: 0;
}
#menu .m-image .m-i-panel .m-i-p-formule {
  margin-right: 2rem;
}
#menu .m-image .m-i-panel .m-i-p-formule ul li {
  padding-bottom: 1rem;
  text-align: justify;
  text-indent: -5px;
}
#menu .m-image .m-i-panel .m-i-p-formule ul li::before {
  content: "-";
  text-indent: -5px;
}
#menu .m-image .m-i-panel .m-i-p-formule ul li p {
  margin: 0 0 0 5px;
  font-size: 13px;
}
#menu .m-image .m-i-panel .m-i-p-junior ul {
  width: max-content;
}
#menu .m-image .m-i-panel .m-i-p-junior ul li {
  padding-bottom: 0.3rem;
  text-align: center;
}

#contact .c-header {
  position: relative;
  width: auto;
  height: 12rem;
  background: url(../img/Table.jpg) no-repeat center center fixed;
  background-size: cover;
  margin: 0 1rem;
}
@media screen and (max-width: 1024px) {
  #contact .c-header {
    margin: 0;
  }
}
#contact .c-header .c-h-panel {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
  background-color: var(--bg-color);
  width: 35%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #contact .c-header .c-h-panel {
    width: calc(100% - 2rem);
    height: 8.5rem;
  }
}
#contact .c-content {
  width: 70%;
  margin: 5rem auto;
}
@media screen and (max-width: 1024px) {
  #contact .c-content {
    width: auto;
    margin: 5rem 1rem;
  }
}
#contact .c-content .c-c-coordinate {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  #contact .c-content .c-c-coordinate {
    flex-direction: column;
  }
}
#contact .c-content .c-c-coordinate h3 {
  color: var(--third-color);
}
#contact .c-content .c-c-coordinate p {
  margin: 0.3rem 0;
}
#contact .c-content .c-c-coordinate > div:nth-child(1) {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  #contact .c-content .c-c-coordinate > div:nth-child(1) {
    flex: 100%;
  }
}
#contact .c-content .c-c-coordinate > div:nth-child(2) {
  flex: 2;
}
@media screen and (max-width: 1024px) {
  #contact .c-content .c-c-coordinate > div:nth-child(2) {
    margin-top: 2rem;
    width: 100%;
  }
}
#contact .c-content .c-c-coordinate .c-c-c-social {
  margin: 3rem auto;
}
#contact .c-content .c-c-coordinate .c-c-c-social a {
  width: 30px;
  height: 30px;
}
#contact .c-content .c-c-coordinate .c-c-c-mail p {
  margin-bottom: 1.5rem;
}
#contact .c-content .c-c-coordinate .c-c-c-mail a {
  color: var(--third-color);
}
#contact .c-content .c-c-coordinate .c-c-c-mail a:hover {
  color: var(--primary-light-color);
}
#contact .c-content .c-c-coordinate .c-c-c-google {
  height: 25rem;
  width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  #contact .c-content .c-c-coordinate .c-c-c-google {
    height: 13rem;
    width: 100%;
  }
  #contact .c-content .c-c-coordinate .c-c-c-google iframe {
    width: 100%;
  }
}

.footer {
  background-color: var(--primary-color);
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--bg-color);
  margin: 0 1rem;
}
@media screen and (max-width: 1024px) {
  .footer {
    margin: 0;
  }
}
.footer .f-title {
  font-size: 6rem;
  padding: 3rem 0;
}
.footer .f-title i:before {
  color: var(--bg-color);
}

.floater {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 50;
  background-color: white;
  padding: 1rem;
  transition: 1s all;
}
.floater:hover p {
  display: block;
}
.floater p {
  transition: 1s all;
  text-align: center;
  display: none;
}

.cardAuthent {
  width: 80%;
  margin: auto;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}
.cardAuthent h1 {
  margin: 1rem 0 2rem 0;
}
.cardAuthent .btn {
  margin-top: 2rem;
  border-radius: 5px;
}
.cardAuthent .login_field {
  padding: 20px 0px;
  position: relative;
}
.cardAuthent .login_field .login_icon {
  position: absolute;
  top: 30px;
  color: var(--primary-color);
}
.cardAuthent .login_field .login_input {
  border: none;
  border-bottom: 2px solid var(--third-color);
  background: none;
  padding: 10px;
  padding-left: 24px;
  font-weight: 700;
  width: 75%;
  transition: 0.2s;
}
.cardAuthent .login_field .login_input:active,
.cardAuthent .login_field .login_input:focus,
.cardAuthent .login_field .login_input:hover {
  outline: none;
  border-bottom-color: var(--primary-color);
}
.cardAuthent .error {
  color: red;
  margin: 0;
}

.research {
  text-align: center;
  padding: 1.2rem 0;
  width: 100%;
}
.research .input-elevated {
  font-size: 16px;
  line-height: 1.5;
  border: none;
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px 0 0 5px;
  width: 250px;
  padding: 0.69em 1em;
}
.research .input-elevated::placeholder {
  color: #838d99;
}
.research button {
  color: white;
  font-size: 16px;
  line-height: 1.5;
  border: none;
  background: var(--third-color);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px 0 0 5px;
  padding: 0.5rem 1rem;
  border-radius: 0 5px 5px 0;
  margin-left: -4px;
}
.research button:hover {
  cursor: pointer;
}

.swiper {
  width: 80%;
}

.swiper-pagination-bullet-active {
  background: var(--third-color);
}

.cardRecipe {
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 10px;
  transition: 0.4s ease-out;
  position: relative;
  color: #323232;
  width: 75%;
  margin: 0.5rem auto;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.1px);
  -webkit-backdrop-filter: blur(13.1px);
  border: 1px solid rgba(255, 255, 255, 0.43);
}
.cardRecipe:hover {
  transform: translateY(-2px);
}
.cardRecipe .c-thumb {
  position: relative;
  border-radius: 10px;
  height: 13rem;
  box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.38);
}
.cardRecipe .c-thumb .c-t-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  border-radius: 10px 10px 0 0;
}
.cardRecipe .c-container {
  padding: 0 2em 1em;
}
.cardRecipe .c-container .c-c-header {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.cardRecipe .c-container .c-c-header i {
  font-size: 20px;
}
.cardRecipe .c-container .c-c-header span.value {
  color: brown;
  margin-left: 8px;
  font-size: 20px;
}
.cardRecipe .c-container .c-c-header span.addon {
  display: block;
  font-size: 20px;
  font-weight: 300;
}
.cardRecipe .c-container .c-c-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 1rem 0;
}

.c-recipe {
  width: 100%;
  padding: 0 1rem;
}
.c-recipe .c-r-title {
  font-size: 1.5rem;
  margin: 2rem 0;
  font-weight: bold;
  text-align: center;
}
.c-recipe .c-r-image img {
  width: 100%;
  border-radius: 15px;
}
.c-recipe .c-r-header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  align-content: space-between;
  font-weight: bold;
  margin: 1rem 0.5rem;
  height: 6rem;
  text-align: center;
}
.c-recipe .c-r-header > div {
  flex: 50%;
}
.c-recipe .c-r-header i {
  margin-right: 5px;
  color: var(--third-color);
}
.c-recipe .c-r-header span {
  display: block;
  font-weight: 500;
  line-height: 1rem;
}
.c-recipe .c-r-ingredients {
  margin-top: 2rem;
}
.c-recipe .c-r-ingredients .c-r-i-title {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-right: 2rem;
}
.c-recipe .c-r-ingredients .c-r-i-title #multiplicateur {
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary-color);
  font-weight: bold;
  border: none;
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0.69em 1em;
}
.c-recipe .c-r-ingredients .c-r-i-l-columns {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  padding: 0;
}
.c-recipe .c-r-ingredients .c-r-i-l-columns li span {
  color: var(--primary-color);
  font-weight: bold;
}
.c-recipe .c-r-d-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.c-recipe .c-r-d-list li {
  counter-increment: step-counter;
  margin-bottom: 10px;
}
.c-recipe .c-r-d-list li:before {
  content: counter(step-counter);
  margin-right: 5px;
  font-size: 80%;
  background-color: var(--third-color);
  color: white;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
}

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