@font-face {
    font-family: 'Eastman Grotesque';
    src: url('font/Eastman-Grotesque-Regular-trial.otf') format('otf'); /* Assurez-vous que le chemin d'accès est correct */
    font-weight: normal;
    font-style: normal;
  }
  

*{
  margin: 0px;
}

body{
    color: #303030;
  background: #f9f9f9;
  font-family: 'Eastman Grotesque', sans-serif; /* Utilisez la police pour le corps de votre page */
}

.parent {
display: grid;
text-align: center;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: ;
grid-column-gap: 0px;
grid-row-gap: 0px;
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
position: fixed;
width: 100%;
z-index: 1;
}

.banner{
  background-image: url("banner.png");
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
}

.div1 { grid-area: 1 / 1 / 2 / 2; padding: 9px; font-size: 24px;}
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 1 / 3 / 2 / 4; padding: 9px; font-size: 24px;}

ul {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
li {
  float: left;
  padding: 9px;
  padding-top: 11px;
  transition-duration: 300ms;
}

li:hover{
  transform: scale(1.1);
}

li a {
  display: block;
  padding: 9px;
  background-color: dark blue;
}

.navbottom img{
  width: 100%;
  height: 250px;
  margin-top: -250px;
}

h2{
 padding: 10px;
 text-align: center;
 font-weight: bold;
 font-size: 30px;
}

.ratingcard{
  background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
height: 250px;
padding: 10px;
max-width: 450px;
display:inline-block;
margin: 20px;
transition-duration: 300ms;
font-size: 24px;
font-weight: bold;
}

.ratingcard i{
color: #f7b704;
}

.ratingcard h3{
  text-decoration: underline; 
}

.card{
  background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
height: 250px;
width: 250px;
display:inline-block;
margin: 20px;
transition-duration: 300ms;
font-size: 24px;
font-weight: bold;
}

.card:hover{
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.card img{
  width: 100px;
  margin-top: 20px; 
}

.card button{
  outline: none;
  background: #fdf7f1;
  color: #61462b;

  border: solid 1px #61462b;
  padding: 10px;
  border-radius: 20px;
  margin-top: 20px; 
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  transition-duration: 300ms;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fab2d6;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::-moz-selection { /* Code for Firefox */
  color: white;
  background: #fab2d6;
}

::selection {
  color: white;
  background: #fab2d6;
}



.footer-distributed {
  background-color: #fff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: normal 16px sans-serif;
  padding: 45px 50px;
}

.footer-distributed .footer-left p {
  color: #8f9296;
  font-size: 14px;
  margin: 0;
}
/* Footer links */

.footer-distributed p.footer-links {
  font-size: 18px;
  font-weight: bold;
  color: #33383b;
  margin: 0 0 10px;
  padding: 0;
  transition: ease .25s;
}

.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease .25s;
}

.footer-distributed .footer-links a:before {
  content: "·";
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

.footer-distributed .footer-right {
  float: right;
  margin-top: 6px;
  max-width: 180px;
}

.footer-distributed .footer-right a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #fc7fa7;
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  padding-top: 10px;
  border-radius: 10px;
  margin-left: 3px;
  transition:all .25s;
}

.footer-distributed .footer-right a:hover{transform:scale(1.1); -webkit-transform:scale(1.1);}

.footer-distributed p.footer-links a:hover{text-decoration:underline;}

/* Media Queries */

@media (max-width: 600px) {
  .footer-distributed .footer-left, .footer-distributed .footer-right {
    text-align: center;
  }
  .footer-distributed .footer-right {
    float: none;
    margin: 0 auto 20px;
  }
  .footer-distributed .footer-left p.footer-links {
    line-height: 1.8;
  }
}



.nav {
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  box-shadow: 0 -4px 25px 0 rgba(0, 0, 0, .12);
  transition-duration: 300ms;
  background: rgba(255, 255, 255, 1);
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.nav .icon {
  flex: 1;
  text-align: center;
  color: #8E919A;
  transition-duration: 300ms;
}


.nav .icon i {
  padding-bottom: 10px;
  font-size: 20px;
}

.nav .icon p {
  font-size: 12px;
}

.active {
  color: #fc7fa7 !important;
}

/* If the link is unvisited you see this color*/
a:link {
    color: #303030;
    text-decoration: none;
}

/* If the link is visited you see this color*/
a:visited {
    color: #303030;
}

/* On placing mouse over the link */
a:hover {
    color: #303030;
    text-decoration: none;
}

/* If the click the link,  you see this color*/
a:active {
    color: #303030;
}