/*
=============== 
Fonts
===============
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");

/* Fonts : CircularStd */

@font-face {
   font-family: "Black";
   src: url("./assets/fonts/CircularStd-Black.otf");
}
@font-face {
   font-family: "BlackItalic";
   src: url("./assets/fonts/CircularStd-BlackItalic.otf");
}
@font-face {
   font-family: "Bold";
   src: url("./assets/fonts/CircularStd-Bold.otf");
}
@font-face {
   font-family: "BoldItalic";
   src: url("./assets/fonts/CircularStd-BoldItalic.otf");
}
@font-face {
   font-family: "Book";
   src: url("./assets/fonts/CircularStd-Book.otf");
}
@font-face {
   font-family: "BookItalic";
   src: url("./assets/fonts/CircularStd-BookItalic.otf");
}
@font-face {
   font-family: "Medium";
   src: url("./assets/fonts/CircularStd-Medium.otf");
}
@font-face {
   font-family: "MediumItalic";
   src: url("./assets/fonts/CircularStd-MediumItalic.otf");
}

h2 {
   font-family: "Bold";
}
p {
   font-family: "Book";
}

/*
=============== 
Variables
===============
*/

:root {
   /* dark shades of primary color*/
   --clr-primary-1: hsl(205, 86%, 17%);
   --clr-primary-2: hsl(205, 77%, 27%);
   --clr-primary-3: hsl(205, 72%, 37%);
   --clr-primary-4: hsl(205, 63%, 48%);
   /* primary/main color */
   --clr-primary-5: #49a6e9;
   /* lighter shades of primary color */
   --clr-primary-6: hsl(205, 89%, 70%);
   --clr-primary-7: hsl(205, 90%, 76%);
   --clr-primary-8: hsl(205, 86%, 81%);
   --clr-primary-9: hsl(205, 90%, 88%);
   --clr-primary-10: hsl(205, 100%, 96%);
   /* darkest grey - used for headings */
   --clr-grey-1: hsl(209, 61%, 16%);
   --clr-grey-2: hsl(211, 39%, 23%);
   --clr-grey-3: hsl(209, 34%, 30%);
   --clr-grey-4: hsl(209, 28%, 39%);
   /* grey used for paragraphs */
   --clr-grey-5: hsl(210, 22%, 49%);
   --clr-grey-6: hsl(209, 23%, 60%);
   --clr-grey-7: hsl(211, 27%, 70%);
   --clr-grey-8: hsl(210, 31%, 80%);
   --clr-grey-9: hsl(212, 33%, 89%);
   --clr-grey-10: hsl(210, 36%, 96%);
   --clr-white: #fff;
   --clr-red-dark: hsl(360, 67%, 44%);
   --clr-red-light: hsl(360, 71%, 66%);
   --clr-green-dark: hsl(125, 67%, 44%);
   --clr-green-light: hsl(125, 71%, 66%);
   --clr-gold: hsl(360, 67%, 44%);
   /* --clr-gold: #ff0000; */
   /* --clr-gold: #c59d5f; */
   --clr-black: #222;
   --ff-primary: "Roboto", sans-serif;
   --ff-secondary: "Open Sans", sans-serif;
   --transition: all 0.3s linear;
   --spacing: 0.25rem;
   --radius: 0.5rem;
   --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   --max-width: 1170px;
   --fixed-width: 620px;
}
/*
=============== 
Global Styles
===============
*/

*,
::after,
::before {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
body {
   background: #101010;
   color: white;
   line-height: 1.5;
   font-size: 0.875rem;
}
ul {
   list-style-type: none;
}
a {
   text-decoration: none;
}
a:visited {
   text-decoration: none;
}
a:hover {
   text-decoration: none;
}
a:focus {
   text-decoration: none;
}
a:hover,
a:active {
   text-decoration: none;
}
img:not(.logo) {
   width: 100%;
}
img {
   visibility: visible;
}

h1,
h2,
h3,
h4 {
   letter-spacing: var(--spacing);
   text-transform: capitalize;
   line-height: 1.25;
}
h1 {
   font-size: 3rem;
}
h2 {
   font-size: 2rem;
}
h3 {
   font-size: 1.25rem;
}
h4 {
   font-size: 0.875rem;
}

@media screen and (min-width: 800px) {
   h1 {
      font-size: 4rem;
   }
   h2 {
      font-size: 2.5rem;
   }
   h3 {
      font-size: 1.75rem;
   }
   h4 {
      font-size: 1rem;
   }
   body {
      font-size: 1rem;
   }
   h1,
   h2,
   h3,
   h4 {
      line-height: 1;
   }
   .navbar a {
      padding: 7px 15px;
   }
}

/*
=============== 
HOME
===============
*/

.home__container {
   overflow: hidden;
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   height: 100%;
}

.background_video {
   position: absolute;

   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);

   object-fit: cover;
   height: 100%;
   width: 100%;
}

body {
   font-family: "proxima-nova", Helvetica;
}

.overlay {
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0);
}

.main_content {
   z-index: 2;
   position: relative;

   /* Vertical center */
   top: 50%;
   transform: translateY(-50%);
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

.main_content img {
   width: 300px;
}
.main_content .head {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}
.main_content .sub_head img {
   mix-blend-mode: difference;
}

.main_content .sub_head {
   color: rgba(255, 255, 255, 0.5);
   font-size: 18px;
   margin-top: 20px;
}

.main_content .info {
   color: rgba(255, 255, 255, 0.5);
   font-size: 12px;
   margin-top: 10px;
}

.links {
   margin-top: 50px;
}

.links a {
   border: 2px solid rgba(255, 255, 255, 0.5);
   border-radius: 61px;
   font-size: 12px;
   color: #ffffff;
   letter-spacing: 1px;
   text-decoration: none;
   text-transform: uppercase;
   padding: 10px 25px;
   display: inline-block;
   margin-right: 15px;
   font: 700 13.3333px Arial;
}

/*
=============== 
WORKS
===============
*/
.navbar {
   display: flex;
   justify-content: space-between;
   margin-left: 5%;
   margin-right: 5%;
   padding-bottom: 1rem;
   padding-top: 1rem;
}
.navbar a {
   border-radius: 61px;
   font-size: 12px;
   color: #ffffff;
   letter-spacing: 1px;
   text-decoration: none;
   text-transform: uppercase;
   padding: 10px 25px;
   display: inline-block;
   margin-right: 15px;
   font: 700 13.3333px Arial;
}
.nav1 {
   border: 2px solid white;
}
.nav2 {
   border: 2px solid transparent;
}

.btn {
   text-transform: uppercase;
   background: transparent;
   color: var(--clr-black);
   padding: 0.375rem 0.75rem;
   letter-spacing: var(--spacing);
   display: inline-block;
   transition: var(--transition);
   font-size: 0.875rem;
   border: 2px solid var(--clr-black);
   cursor: pointer;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
   border-radius: var(--radius);
}
.btn:hover {
   color: var(--clr-white);
   background: var(--clr-black);
}

.section {
   padding: 5rem 0;
}

main {
   min-height: 100vh;
   display: grid;
   place-items: center;
}

.menu {
   padding: 5rem 0;
}
.title {
   text-align: center;
   margin-bottom: 2rem;
}
.underline {
   width: 5rem;
   height: 0.25rem;
   background: linear-gradient(to right, red, blue);
   margin-left: auto;
   margin-right: auto;
}
.btn-container {
   margin-bottom: 4rem;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
}
.filter-btn {
   background: transparent;
   border-color: white;
   font-size: 1rem;
   text-transform: capitalize;
   margin: 0 0.5rem;
   letter-spacing: 1px;
   border-radius: var(--radius);
   padding: 0.375rem 0.75rem;
   color: white;
   cursor: pointer;
   transition: var(--transition);
   margin-bottom: 8px;
}

.filter-btn:hover {
   background: var(--clr-white);
   color: rgb(32, 32, 32);
}
.filter-btn:visited {
   background: var(--clr-white);
   color: rgb(32, 32, 32);
}
.section-center {
   width: 97vw;
   margin: 0 auto;
   display: grid;
   gap: 4rem 1rem;
   justify-items: center;
}
.menu-item {
   display: grid;
   gap: 1rem 2rem;
   max-width: 25rem;
   position: relative;
   /* !importanté */
   border-radius: 1em;
}
.photo {
   object-fit: cover;
   width: 288px;
   height: 16.2px;
   border: 0.25rem solid var(--clr-gold);
   border-radius: var(--radius);
   background-clip: padding-box;
   /* !importanté */
   border: solid 5px transparent;
   /* !importanté */
   border-radius: 1em;
}
.menu-item::before {
   content: "";
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: -1;

   /* !importanté */
   border-radius: inherit;
   /* !importanté */
   background: linear-gradient(to right, red, blue);
}
.item-info header {
   display: flex;
   flex-direction: column;
   border-bottom: 0.5px dotted var(--clr-grey-5);
}
.item-info h4 {
   margin-bottom: 0.5rem;
}
.price {
   color: var(--clr-gold);
}
.item-text {
   margin-bottom: 0;
   padding-top: 1rem;
}

/* @media screen and (min-width: 768px) {
  .menu-item {
    grid-template-columns: 1fr;
    gap: 0 3rem;
    max-width: 40rem;
  }
} */

@media screen and (min-width: 375px) and (max-width: 449px) {
   .section-center {
      width: 97vw;
      grid-template-columns: 1fr;
   }
   .photo {
      width: 320px;
      height: 180px;
   }
}
@media screen and (min-width: 450px) and (max-width: 569px) {
   .section-center {
      width: 97vw;
      grid-template-columns: 1fr;
   }
   .photo {
      width: 360px;
      height: 202.5px;
   }
}
@media screen and (min-width: 570px) and (max-width: 679px) {
   .section-center {
      width: 97vw;
      grid-template-columns: 1fr;
   }
   .photo {
      width: 400px;
      height: 225px;
   }
}
@media screen and (min-width: 680px) and (max-width: 739px) {
   .photo {
      width: 320px;
      height: 180px;
   }
   .section-center {
      width: 97vw;
      grid-template-columns: 1fr 1fr;
   }
}

@media screen and (min-width: 740px) and (max-width: 1099px) {
   .section-center {
      width: 97vw;
      grid-template-columns: 1fr 1fr;
   }
   .photo {
      width: 320px;
      height: 180px;
   }
}
@media screen and (min-width: 1100px) {
   .section-center {
      width: 97vw;
      grid-template-columns: 1fr 1fr 1fr;
   }
   .photo {
      width: 320px;
      height: 180px;
   }
}
@media screen and (min-width: 1700px) {
   .section-center {
      width: 97vw;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 4rem 1rem;
   }
   .photo {
      width: 400px;
      height: 225px;
   }
}
@media screen and (max-width: 450px) {
   .filter-btn {
      font-size: 0.8rem;
      padding: 0.3rem 0.5rem;
      margin-bottom: 12px;
   }
}

/*
=============== 
ABOUT
===============
*/
.pp {
   display: flex;
   justify-content: center;
   margin-bottom: 3vh;
}
.prez {
   display: flex;
   justify-content: center;
   text-align: center;
   padding-top: 20px;
   padding-right: 15px;
   padding-left: 15px;
}
.prez p {
   font-family: "Book";
   font-size: 22.4px;
}
.prez a,
span {
   font-family: "Bold";
   font-size: 22.4px;
   color: #777;
}
.prez a:hover {
   color: white;
}
.intro img {
   width: 200px;
   height: 200px;
}
.intro {
   margin-top: 40px;
   margin-bottom: 10vh;
}
.prez img {
   height: 50px;
   width: 50px;
}
.container_card {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   margin-bottom: 10vh;
}
.card {
   margin: 20px;
   background-color: #f4fffe;
   min-width: 250px;
   max-width: 250px;
   overflow: hidden;
   border-radius: 15px;
   transition: 0.2s;
   box-shadow: 0 19px 38px rgb(0 0 0 / 30%), 0 15px 12px rgb(0 0 0 / 22%);
   color: black;
   min-height: 370px;
   max-height: 370px;
}
.card:hover {
   transform: translateY(-10px);
}
.card:hover h4 {
   color: black;
}
.card img {
   width: 250px;
   height: 166px;
   padding: 20px 0 20px 0;
}
.card .content {
   padding: 0.7rem;
}
.card h4 {
   text-align: center;
   font-family: "Montserrat", sans-serif;
   font-weight: 900;
   font-size: 22.4px;
}
.card p {
   text-align: left;
   font-size: 12.8px;
   padding: 25px 25px 15px 25px;
}
.mySlides {
   display: none;
}

.gallery {
   display: flex;
   justify-content: center;
   align-items: center;
   width: auto;
   margin-bottom: 10vh;
}
.gallery video {
   width: 70%;
}
.container_contact {
   margin-bottom: 10vh;
}
.container_footer img {
   width: 24px;
}

footer {
   height: 100%;
   background-color: #191919;
   display: flex;
   align-items: center;
   z-index: 1;
}

footer .container {
   display: flex;
   flex-flow: row wrap;
   justify-content: space-evenly;
   width: 100%;
}

footer .container p,
footer .container a {
   text-decoration: none;
   color: white;
   font-family: "Book";
   font-size: 12.4px;
}

footer .container .left {
   display: flex;
   flex-direction: column;
}

footer .container .left {
   max-width: 50%;
   margin: 82px 20px;
}
footer .container .left a {
   text-decoration: none;
   color: white;
   font-family: "Book";
   font-size: 14.4px;
   padding-top: 6px;
}
.a-top {
   margin-top: 20px;
}
footer .container .right {
   max-width: 50%;
   margin: 30px 20px;
}
footer .container .top p {
   display: flex;
   align-items: center;
   margin-top: 20px;
}
footer .container .top img {
   width: 240px;
}

footer .container .mid img {
   width: 20px;
   margin-left: 20px;
}

footer .container .bot img {
   width: 20px;
   margin: 0 2px;
   position: relative;
   top: 3px;
}

@media screen and (min-width: 480px) {
   footer .container .bot2 {
      display: none;
   }
}
@media screen and (max-width: 480px) {
   html {
      font-size: 90%;
   }
   .gallery video {
      width: 90%;
   }

   .prez p {
      font-family: "Book";
      font-size: 14.4px;
   }
   .prez a,
   span {
      font-family: "Bold";
      font-size: 14.4px;
      color: #777;
   }
   .prez a:hover {
      color: white;
   }
   footer .container {
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between;
      width: 100%;
      padding: 0px 15px;
   }
   footer .container p,
   footer .container a {
      font-size: 8.4px;
   }
   footer .container .left {
      max-width: 20%;
      margin: 56px 1px;
   }
   footer .container .left a {
      font-size: 14.4px;
      padding-top: 6px;
   }
   .a-top {
      margin-top: 15px;
   }
   .a-mid {
      margin-top: 3px;
   }
   .a-bot {
      margin-top: 3px;
   }
   footer .container .right {
      max-width: 80%;
      margin: 30px 6px;
   }
   footer .container .top p {
      margin-top: 20px;
   }
   footer .container .top {
      margin-bottom: 15px;
   }
   footer .container .top img {
      width: 140px;
   }

   footer .container .mid img {
      width: 15px;
      margin-left: 8px;
   }
   footer .container .bot {
      display: none;
   }
   footer .container .bot2 img {
      width: 16px;
      margin: 0 2px;
      position: relative;
      top: 3px;
   }
}
@media screen and (max-width: 350px) {
   html {
      font-size: 80%;
   }
}
/*
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
No using stuff*/

.conteneur1 {
   overflow: hidden;
   max-width: 960px;
   margin: 50px auto;
   box-shadow: 0px 15px 10px -5px #777;
}
.d1 {
   width: 1985.4px; /*6618*/
   height: 215.1px; /*717*/
   background-color: #ededed;
   background-image: url("/assets/img/about__cover.png");
   background-size: contain;
   animation: defilement1 12s linear infinite;
}
@keyframes defilement1 {
   0% {
      transform: translate(0, 0);
   }
   100% {
      transform: translate(-1676.1px, 0); /*-5587*/
   }
}

.conteneur2 {
   max-width: 960px;
   overflow: hidden;
   margin: 50px auto;
   box-shadow: 0px 0px 10px #777;
}
.d2 {
   width: 400%;
   height: 0;
   padding-top: 75%;
   background-color: #ededed;
   background-image: url("/assets/img/about__cover.png");
   background-size: contain;
   animation: defilement2 12s linear infinite;
}
@keyframes defilement2 {
   0% {
      transform: translate(0, 0);
   }
   100% {
      transform: translate(-75%, 0);
   }
}
.d1:hover,
.d2:hover {
   animation-play-state: paused;
}
