* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Regular.ttf");
}

@font-face {
  font-family: GilroyBold;
  src: url("../fonts/Gilroy-Bold.ttf");
}

@font-face {
  font-family: GilroyExtraBold;
  src: url("../fonts/Gilroy-Extrabold.ttf");
}

@font-face {
  font-family: GilroyMedium;
  src: url("../fonts/Gilroy-Medium.ttf");
}

@font-face {
  font-family: TavolgaFree;
  src: url("../fonts/Tavolga Free.ttf");
}

body {
  font-family: Gilroy, sans-serif;
}

.header {
  padding: 22px 0;
  background-color: rgb(235, 168, 177);
}

.container {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  margin-left: 233px;
  margin-right: 329px;
}

.menu__list {
  list-style: none;
  display: flex;
  max-width: 313px;
  justify-content: space-between;
}

.menu__item:nth-child(2) .menu__link {
  margin: 0 20px;
}

.menu__link {
  text-decoration: none;
  font-size: 14px;
  font-family: GilroyMedium, sans-serif;
  color: white;
  position: relative;
}

.menu__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px; /* Épaisseur du soulignement */
  bottom: -2px;
  left: 0;
  background-color: #821328; /* Couleur du soulignement */
  transition: width 0.3s ease-in-out; /* Animation de la largeur */
}

.menu__link:hover::after {
  width: 100%; /* Le soulignement s'étend sur toute la largeur du lien */
}

.menu__number {
  font-size: 16px;
  font-family: GilroyBold, sans-serif;
  color: rgb(255, 255, 255);
}

.main {
  background-color: rgb(235, 168, 177);
  overflow: hidden;
}

.main__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 127px 0 108px 0;
}

.main__imagemain__image {
  position: relative;
}

@keyframes bigger {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.main__imagemain__image:before {
  width: 200px;
  height: 200px;
  content: "";
  display: block;
  border-radius: 50%;
  border: 1px solid #8213287f;
  position: absolute;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
  animation: bigger 3s infinite;
}

.main__imagemain__image:after {
  width: 200px;
  height: 200px;
  content: "";
  display: block;
  border-radius: 50%;
  border: 1px solid #8213287f;
  position: absolute;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
  animation: bigger 3s infinite;
  animation-delay: 0.7s;
}

.double-title {
  font-family: TavolgaFree, sans-serif;
}

.main__double-title {
  font-size: 55px;
  color: rgb(255, 255, 255);
  margin-bottom: 60px;
  font-weight: normal;
}

.main__text {
  font-size: 18px;
  font-family: TavolgaFree, sans-serif;
  color: rgb(255, 255, 255);
  line-height: 1.389;
  margin-bottom: 80px;
  max-width: 349px;
}

.btn {
  border-radius: 30px;
  font-family: GilroyBold, sans-serif;
}

.btn:hover {
  box-shadow: 0px 5px 9px 1px rgba(130, 19, 40, 0.5);
  transition: all 0.5s ease;
  cursor: pointer;
}

.main__btn {
  background-image: -moz-linear-gradient(
    90deg,
    rgb(89, 47, 56) 0%,
    rgb(215, 72, 92) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(113, 8, 30) 0%,
    rgb(215, 72, 92) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(113, 8, 30) 0%,
    rgb(215, 72, 92) 100%
  );
  width: 240px;
  height: 60px;
  font-size: 18px;
  color: rgb(255, 255, 255);
  padding: 19px;
  box-sizing: border-box;
  border: 0;
  cursor: pointer;
}

.main__image-img {
  position: relative;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.main__image {
  position: relative;
}

@keyframes pulse-2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

@keyframes pulse-3 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.bake__container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 119px 0 30px 0;
}

.bake {
  background-color: rgb(255, 239, 239);
}

.bake__title {
  font-size: 43px;
  font-family: TavolgaFree, sans-serif;
  color: rgb(51, 25, 7);
  line-height: 1.222;
  max-width: 475px;
  margin-bottom: 60px;
  font-weight: normal;
}

.bake__description {
  font-size: 18px;
  color: rgb(51, 25, 7);
  line-height: 1.556;
  max-width: 401px;
}

.bake__image-img {
  pointer-events: none;
  user-select: none;
}

.advantages {
  background-color: rgb(255, 239, 239);
}

.advantages__container {
  display: grid;
  grid-template-columns: repeat(4, 220px);
  padding: 83px 0 120px 0;
  justify-content: space-between;
}

.advantages__block {
  position: relative;
}

.advantages__number {
  font-size: 60px;
  font-family: GilroyExtraBold, sans-serif;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  background-color: rgb(130, 19, 40);
  width: 70px;
  height: 70px;
  box-sizing: border-box;
  padding: 10px 19px;
  margin-bottom: 15px;
  line-height: -0.9;
  pointer-events: none;
}

.advantages__block:hover .advantages__number {
  color: #821328;
  background-color: #eba8b1;
}

.advantages__name {
  margin-bottom: 20px;
  font-size: 20px;
  font-family: GilroyExtraBold, sans-serif;
  color: rgb(51, 25, 7);
}

.advantages__description {
  font-size: 15px;
  font-family: GilroyMedium, sans-serif;
  color: rgb(51, 25, 7);
  line-height: 1.333;
}

.catalog {
  background-color: rgb(235, 168, 177);
}

.catalog__container {
  padding: 120px 0;
}

.products__title {
  font-size: 43px;
  font-family: TavolgaFree, sans-serif;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 143px;
  font-weight: normal;
}

.products__item {
  border-width: 2px;
  border-color: rgb(255, 255, 255);
  border-style: solid;
  border-radius: 20px;
  position: relative;
  padding-bottom: 11px;
}

.products__image {
  position: absolute;
  top: -59px;
  right: 35px;
}

.products__image-img {
  transition: all 0.5s ease;
  pointer-events: none;
  user-select: none;
}

.products__item:hover .products__image-img {
  transform: scale(1.1);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 263px);
  grid-column-gap: 29px;
  position: relative;
}

.products__name {
  font-size: 18px;
  font-family: TavolgaFree, sans-serif;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 26px;
  padding: 109px 0 0 0;
}

.products__number,
.products__price {
  font-size: 15px;
  color: rgb(255, 255, 255);
  padding-bottom: 16px;
  margin-left: 20px;
  margin-right: 36px;
  max-width: 90px;
}

.products__btn {
  background-image: -moz-linear-gradient(
    90deg,
    rgb(113, 8, 30) 0%,
    rgb(215, 72, 92) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(113, 8, 30) 0%,
    rgb(215, 72, 92) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(113, 8, 30) 0%,
    rgb(215, 72, 92) 100%
  );
  font-size: 16px;
  color: rgb(255, 255, 255);
  padding: 14px;
  width: 130px;
  height: 50px;
  box-sizing: border-box;
  border: 0;
  position: absolute;
  text-align: center;
  bottom: 27px;
  right: 21px;
}

.products__btn:hover {
  cursor: pointer;
}

.order {
  background-color: rgb(255, 239, 239);
}

.order__container {
  padding: 98px 0 120px 0;
  display: flex;
  align-items: flex-end;
}

.order__image {
  position: relative;
  pointer-events: none;
  user-select: none;
}

.strawberryone {
  position: absolute;
  top: -26px;
  left: 0;
  animation: strawberry 3s infinite;
  pointer-events: none;
  user-select: none;
}

@keyframes strawberry {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}

.strawberrytwo {
  position: absolute;
  right: -570px;
  bottom: 76px;
  animation: strawberry1 3s infinite;
  animation-delay: 0.5s;
  pointer-events: none;
  user-select: none;
}

@keyframes strawberry1 {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}

.order__info {
  margin-left: 162px;
}

.order__name {
  font-size: 43px;
  font-family: TavolgaFree, sans-serif;
  color: rgb(51, 25, 7);
  -moz-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -webkit-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -ms-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  margin-bottom: 41px;
  font-weight: normal;
}

.order__text {
  font-size: 18px;
  color: rgb(51, 25, 7);
  line-height: 1.556;
  -moz-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -webkit-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -ms-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  margin-bottom: 48px;
  max-width: 403px;
}

.order__choice-name {
  font-size: 18px;
  font-family: GilroyBold, sans-serif;
  color: rgb(18, 10, 6);
  -moz-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -webkit-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -ms-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  margin-bottom: 20px;
}

.order__placeholder {
  background-color: rgb(255, 239, 239);
  font-size: 15px;
  font-family: GilroyBold, sans-serif;
  color: black;
  -moz-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -webkit-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -ms-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  border-radius: 30px;
  border: 1px solid #760c22ff;
  padding: 23px 25px;
  width: 294px;
  height: 60px;
  box-sizing: border-box;
  margin-bottom: 15px;
  display: grid;
  grid-column: 1fr 1fr;
}

.order__placeholder::placeholder {
  color: rgb(118, 12, 34);
}

.order__information-name {
  margin: 25px 0 22px 0;
  font-size: 18px;
  font-family: GilroyBold, sans-serif;
  color: rgb(18, 10, 6);
  -moz-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -webkit-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -ms-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
}

.order__btn {
  background-image: -moz-linear-gradient(
    90deg,
    rgb(113, 8, 30) 0%,
    rgb(215, 72, 92) 100%
  );
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(113, 8, 30) 0%,
    rgb(215, 72, 92) 100%
  );
  background-image: -ms-linear-gradient(
    90deg,
    rgb(113, 8, 30) 0%,
    rgb(215, 72, 92) 100%
  );
  width: 295px;
  height: 61px;
  font-family: GilroyBold, sans-serif;
  color: rgb(255, 255, 255);
  -moz-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -webkit-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  -ms-transform: matrix(1.00011967125209, 0, 0, 1.00072983989549, 0, 0);
  text-align: center;
  padding: 19px;
  box-sizing: border-box;
}

.order__btn:hover {
  cursor: pointer;
}

.footer {
  padding: 73px 0 62px 0;
  background-color: #c0707c;
  position: relative;
}

.footer__container {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-self: center;
}

.footer__instagram {
  text-align: center;
}

.footer__center-text {
  text-align: center;
  margin-top: 8px;
}

.footer__right {
  text-align: right;
}

.footer__right a {
  color: inherit; /* Hérite de la couleur du texte environnant */
  text-decoration: none; /* Supprime la décoration de texte */
}

.footer__rights {
  font-size: 12px;
  -moz-transform: matrix(1, 0, 0, 0.99837443537405, 0, 0);
  -webkit-transform: matrix(1, 0, 0, 0.99837443537405, 0, 0);
  -ms-transform: matrix(1, 0, 0, 0.99837443537405, 0, 0);
  color: rgb(227, 172, 180);
}

.footer__center-text {
  font-size: 16px;
  font-family: GilroyBold, sans-serif;
  color: rgb(255, 255, 255);
  -moz-transform: matrix(1, 0, 0, 0.99837443537405, 0, 0);
  -webkit-transform: matrix(1, 0, 0, 0.99837443537405, 0, 0);
  -ms-transform: matrix(1, 0, 0, 0.99837443537405, 0, 0);
  text-decoration: none;
}

.footer__right {
  font-size: 16px;
  font-family: GilroyBold, sans-serif;
  color: rgb(255, 255, 255);
  -moz-transform: matrix(1.001021071495, 0, 0, 1.00245211767213, 0, 0);
  -webkit-transform: matrix(1.001021071495, 0, 0, 1.00245211767213, 0, 0);
  -ms-transform: matrix(1.001021071495, 0, 0, 1.00245211767213, 0, 0);
}

.present {
  border-radius: 50%;
  position: fixed;
  width: 90px;
  height: 90px;
  background: radial-gradient(#71081eff, #d7485cff);
  right: 30px;
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.present:hover {
  box-shadow: 0px 0px 12.6px 2.4px rgba(130, 19, 40, 0.5);
  transition: all 0.5s ease;
  cursor: pointer;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.present-text {
  width: 172px;
  font-size: 15px;
  font-family: GilroyMedium, sans-serif;
  color: rgb(119, 10, 29);
  line-height: 1.333;
  position: absolute;
  bottom: 8px;
  right: 116px;
  border-width: 2px;
  border-color: rgb(119, 10, 29);
  border-style: solid;
  border-radius: 10px;
  background-color: rgb(254, 239, 238);
  padding: 15px 10px 14px 10px;
  box-sizing: border-box;
  transform: translate(0px, 35px);
  -webkit-transform: translate(0px, 35px); /** Chrome & Safari **/
  -o-transform: translate(0px, 35px); /** Opera **/
  -moz-transform: translate(0px, 35px); /** Firefox **/
  opacity: 0;
  transition: 0.5s;
}

.present-text:before {
  content: "";
  display: block;
  border: 13px solid transparent;
  border-left: 20px solid #9d2439;
  position: absolute;
  bottom: 21px;
  right: -35px;
}
.present-text:after {
  content: "";
  display: block;
  border: 13px solid transparent;
  border-left: 20px solid #feefee;
  position: absolute;
  bottom: 21px;
  right: -32px;
}

.present:hover .present-text {
  transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px); /** Chrome & Safari **/
  -o-transform: translate(0px, 0px); /** Opera **/
  -moz-transform: translate(0px, 0px); /** Firefox **/
  opacity: 1;
}

.header__burger {
  display: none;
}

.menu__close {
  display: none;
}
