@import url("https://fonts.googleapis.com/css2?family=Gluten:wght@200;400;600;900&display=swap");
body,
nav,
section {
  font-family: massilia, sans-serif;
  color: #262525;
}

section {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

header {
  background-color: #f0e8e0;
}
header nav {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
header nav .logo {
  width: 160px;
}
header nav ul {
  display: flex;
  gap: 50px;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  font-style: normal;
  font-size: 15px;
  padding: 25px 193px 30px 50px;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
}
@media (max-width: 670px) {
  header nav ul {
    gap: 10px;
    font-size: 13px;
    padding: 25px 100px 30px 34px;
  }
}
header nav li {
  list-style: none;
}
header nav li a {
  list-style: none;
  text-decoration: none;
  color: black;
  padding-bottom: 10px;
}
header nav li a:hover {
  border-bottom: solid 1px;
}
header nav .btn {
  right: 145px;
  top: 52px;
  position: absolute;
  padding: 27px 36px;
  background-color: #262525;
  display: inline-block;
  border-radius: 15px;
  font-size: 16px;
  cursor: pointer;
}
header nav .btn .etoile {
  align-items: center;
}
header nav .btn a {
  list-style: none;
  text-decoration: none;
  color: #ffd600;
  font-weight: 700;
}
@media (max-width: 670px) {
  header nav .btn a {
    display: none;
  }
}
header nav .btn:hover {
  text-decoration: underline;
  color: #ffd600;
}
@media (max-width: 1180px) {
  header nav .btn {
    right: 100px;
  }
}
@media (max-width: 890px) {
  header nav .btn {
    top: 179px;
  }
}
@media (max-width: 670px) {
  header nav .btn {
    right: 65px;
  }
}
@media (max-width: 580px) {
  header nav .btn {
    right: 57px;
  }
}
@media (max-width: 425px) {
  header nav .btn {
    right: 40px;
    padding: 35px;
  }
}
@media (max-width: 890px) {
  header nav {
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
  }
}

.hero {
  background-color: #f0e8e0;
}
.hero .hero-banner {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 120px;
  background-color: #f0e8e0;
}
.hero .hero-banner .hero-banner-text {
  width: 50%;
}
.hero .hero-banner .hero-banner-text h1 {
  font-family: "Gluten", cursive;
  font-weight: 600;
  font-size: 45px;
  padding-bottom: 10px;
}
@media (max-width: 890px) {
  .hero .hero-banner .hero-banner-text h1 {
    font-size: 30px;
  }
  .hero .hero-banner .hero-banner-text p {
    font-size: 15px;
  }
}
@media (max-width: 670px) {
  .hero .hero-banner {
    flex-direction: column;
  }
  .hero .hero-banner .hero-banner-text {
    width: 100%;
  }
}

.search-container {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: -40px;
  width: 70%;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(96, 97, 102, 0.05);
  background: rgba(163, 163, 163, 0.12);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
.search-container .input {
  display: contents;
}
.search-container .input img {
  width: 20px;
  height: 20px;
  align-self: center;
  margin-left: 25px;
  margin-right: 20px;
}
.search-container .input .search-input-droite,
.search-container .input .search-input-gauche,
.search-container .input .search-input-droite-responsive,
.search-container .input .search-input-gauche-responsive {
  flex: 1;
  border: none;
  padding: 25px;
  font-size: 16px;
  font-weight: 200;
  background: transparent;
}
.search-container .input .search-input-droite {
  border-radius: 15px 0px 0px 15px;
}
.search-container .input .search-input-droite-responsive,
.search-container .input .search-input-gauche-responsive {
  display: none;
}
.search-container .input .search-input-gauche {
  border-radius: 0px;
}
@media (max-width: 1100px) {
  .search-container .input .search-input-droite-responsive,
  .search-container .input .search-input-gauche-responsive {
    display: block;
  }
  .search-container .input .search-input-droite,
  .search-container .input .search-input-gauche {
    display: none;
  }
}
.search-container .search-button {
  background-color: #e6a4b6;
  color: #262525;
  border-radius: 0px 15px 15px 0px;
  padding: 0px 50px;
  font-family: "Gluten";
  font-size: 20px;
  cursor: pointer;
}
.search-container .search-button:hover {
  background-color: #262525;
  color: #e6a4b6;
}
@media (max-width: 890px) {
  .search-container .search-button {
    padding: 0px 20px;
    font-size: 16px;
  }
}
@media (max-width: 670px) {
  .search-container .input {
    display: flex;
  }
  .search-container .search-button {
    border-radius: 0px 0px 15px 15px;
    padding: 25px 50px;
    font-size: 20px;
  }
}
@media (max-width: 425px) {
  .search-container .input {
    flex-direction: column;
  }
  .search-container .input img {
    margin: 15px;
  }
  .search-container .input .search-input-droite-responsive,
  .search-container .input .search-input-gauche-responsive {
    padding: 0px 20px 25px;
  }
  .search-container .search-button {
    padding: 20px 50px;
    font-size: 16px;
  }
}

@media (max-width: 670px) {
  .search-container {
    flex-direction: column;
    margin-top: -52px;
  }
}
@media (max-width: 425px) {
  .search-container {
    margin-top: -100px;
  }
}
.categorie-liste {
  margin-top: 100px;
}
.categorie-liste ul {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  align-items: center;
}
.categorie-liste ul li {
  display: flex;
  gap: 10px;
  list-style: none;
  font-size: 20px;
  font-weight: 200;
}
.categorie-liste ul li img {
  width: 25px;
  height: 25px;
}
.categorie-liste ul li .btn-rond {
  cursor: pointer;
  width: 25px;
  height: 25px;
  background-color: rgb(172, 172, 172);
  border-radius: 100%;
}
.categorie-liste ul li .btn-rond:hover {
  background-color: #e6a4b6;
}
.categorie-liste ul li .btn-rond.active {
  background-color: #e6a4b6;
}
@media (max-width: 890px) {
  .categorie-liste ul li {
    font-size: 16px;
  }
  .categorie-liste ul li .btn-rond {
    width: 20px;
    height: 20px;
  }
}

.manga-liste {
  margin: 50px 0px 100px 0px;
  display: flex;
  justify-content: space-between;
}
.manga-liste img {
  width: 18%;
}

@media (max-width: 425px) {
  .manga-liste {
    overflow-x: scroll;
    gap: 20px;
  }
  .manga-liste img {
    width: 55%;
  }
}
h1 {
  font-family: "Gluten";
  font-weight: 700;
  color: #262525;
  font-size: 35px;
  text-transform: uppercase;
}

@media (max-width: 890px) {
  h1 {
    font-size: 28px;
    text-align: center;
  }
}
.bandeau-semaine {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 100px;
}
.bandeau-semaine .text {
  width: 30%;
  text-align: center;
}
@media (max-width: 1100px) {
  .bandeau-semaine .text {
    width: 50%;
  }
}
@media (max-width: 890px) {
  .bandeau-semaine .text {
    width: 80%;
  }
}
.bandeau-semaine .text h2 {
  font-family: "Gluten";
  font-weight: 300;
  color: #e6a4b6;
  font-size: 28px;
  text-transform: uppercase;
  padding-top: 5px;
}
.bandeau-semaine .text h3 {
  font-size: 23px;
  padding-bottom: 30px;
}
.bandeau-semaine .text ul {
  text-align: left;
}
.bandeau-semaine .text ul li {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  font-size: 19px;
  font-weight: 700;
}
.bandeau-semaine .text ul li p {
  padding: 5px 15px;
}
.bandeau-semaine .text ul li .beige,
.bandeau-semaine .text ul li span {
  margin: 7px;
  padding: 5px 15px;
  background-color: #f0e8e0;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 200;
}
.bandeau-semaine .text ul li span {
  background-color: #e6a4b6;
}
.bandeau-semaine .text p {
  padding-top: 40px;
  font-size: 16px;
  font-weight: 200;
}
@media (max-width: 890px) {
  .bandeau-semaine .text p {
    font-size: 14px;
    padding-top: 20px;
  }
}
.bandeau-semaine .text .btn-lecture {
  padding: 18px 70px;
  background-color: #f0e8e0;
  font-size: 18px;
  font-family: "Gluten";
  border-radius: 100px;
  cursor: pointer;
  margin-top: 70px;
}
.bandeau-semaine .text .btn-lecture:hover {
  color: #f0e8e0;
  background-color: #262525;
}
@media (max-width: 1100px) {
  .bandeau-semaine .text .btn-lecture {
    padding: 15px 25px;
    font-size: 16px;
    margin-top: 30px;
  }
}
@media (max-width: 670px) {
  .bandeau-semaine .text .btn-lecture {
    padding: 15px 45px;
  }
}

@media (max-width: 670px) {
  .bandeau-semaine {
    flex-direction: column;
  }
  .bandeau-semaine .img-tanjiro {
    display: none;
  }
}
.bandeau-sortie {
  gap: 37px;
  margin: 30px 0px 100px;
  display: flex;
  flex-direction: column;
}
.bandeau-sortie .bandeau-manga-img-mobil {
  display: none;
}
.bandeau-sortie .bandeau-manga {
  background-color: #f0e8e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
}
.bandeau-sortie .bandeau-manga .bandeau-manga-text {
  width: 90%;
}
.bandeau-sortie .bandeau-manga .bandeau-manga-text h2 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 30px;
  padding-bottom: 5px;
}
.bandeau-sortie .bandeau-manga .bandeau-manga-text h2 span {
  padding-left: 20px;
  font-size: 20px;
  text-transform: none;
  font-weight: 300;
}
@media (max-width: 1100px) {
  .bandeau-sortie .bandeau-manga .bandeau-manga-text p {
    font-size: 14px;
  }
}
@media (max-width: 890px) {
  .bandeau-sortie .bandeau-manga .bandeau-manga-text p {
    display: none;
  }
}
@media (max-width: 890px) {
  .bandeau-sortie .bandeau-manga .bandeau-manga-text {
    width: 60%;
  }
}
@media (max-width: 425px) {
  .bandeau-sortie .bandeau-manga .bandeau-manga-text {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
}
@media (max-width: 425px) {
  .bandeau-sortie .bandeau-manga {
    flex-direction: column;
  }
  .bandeau-sortie .bandeau-manga .bandeau-manga-img-mobil {
    display: block;
  }
  .bandeau-sortie .bandeau-manga .bandeau-manga-img {
    display: none;
  }
}

a {
  text-decoration: none;
}

.bandeau-manga-btn {
  margin: 0px 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Gluten";
  background-color: white;
  border-radius: 100px;
  border: 2px solid #262525;
  padding: 10px 20px;
  cursor: pointer;
}
.bandeau-manga-btn img {
  width: 25px;
  height: 25px;
}
.bandeau-manga-btn .blanc {
  display: none;
}
.bandeau-manga-btn:hover {
  background-color: #262525;
  color: white;
}
.bandeau-manga-btn:hover .blanc {
  display: flex;
}
.bandeau-manga-btn:hover .noir {
  display: none;
}

@media (max-width: 670px) {
  .bandeau-manga-btn {
    margin: 0px 15px;
    padding: 5px 17px;
  }
}
@media (max-width: 425px) {
  .bandeau-manga-btn {
    margin-bottom: 15px;
  }
}
.main {
  overflow: hidden;
  position: relative;
  background-color: #e8def1;
}
.main .abo {
  padding: 50px 0px;
  display: flex;
  transition: 0.5s ease-out;
}
.main .abo .bandeau-abo {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  padding: 0px 70px;
  flex-shrink: 0;
  width: 100%;
}
.main .abo .bandeau-abo .bandeau-abo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  text-align: center;
  gap: 40px;
}
@media (max-width: 890px) {
  .main .abo .bandeau-abo .bandeau-abo-text {
    width: 80%;
  }
}
.main .abo .bandeau-abo .bandeau-abo-text h1 {
  font-size: 30px;
  font-weight: 600;
}
.main .abo .bandeau-abo .bandeau-abo-text h1 span {
  font-family: "Gluten";
  font-weight: 100;
  font-size: 22px;
}
.main .abo .bandeau-abo .bandeau-abo-text p {
  font-size: 20px;
  font-weight: 100;
  padding-bottom: 5px;
}
@media (max-width: 890px) {
  .main .abo .bandeau-abo .bandeau-abo-text h1 {
    font-size: 25px;
  }
  .main .abo .bandeau-abo .bandeau-abo-text h1 span {
    font-size: 18px;
  }
  .main .abo .bandeau-abo .bandeau-abo-text p {
    font-size: 16px;
  }
}
.main .abo .bandeau-abo .bandeau-abo-text .btn-abo {
  border-radius: 100px;
  padding: 12px 70px;
  font-family: "Gluten";
  font-size: 19px;
  cursor: pointer;
}
.main .abo .bandeau-abo .bandeau-abo-text .rose {
  background-color: #a780ca;
  color: white;
  border: 2px solid #a780ca;
}
.main .abo .bandeau-abo .bandeau-abo-text .rose:hover {
  background-color: white;
  color: #a780ca;
  border: 2px solid #a780ca;
}
.main .abo .bandeau-abo .bandeau-abo-text .vert {
  background-color: #3f915e;
  color: white;
  border: 2px solid #3f915e;
}
.main .abo .bandeau-abo .bandeau-abo-text .vert:hover {
  background-color: white;
  color: #3f915e;
  border: 2px solid #3f915e;
}
.main .abo .bandeau-abo .bandeau-abo-text .marron {
  background-color: #5c4740;
  color: white;
  border: 2px solid #5c4740;
}
.main .abo .bandeau-abo .bandeau-abo-text .marron:hover {
  background-color: white;
  color: #5c4740;
  border: 2px solid #5c4740;
}
@media (max-width: 670px) {
  .main .abo .bandeau-abo {
    flex-direction: column;
  }
  .main .abo .bandeau-abo .bandeau-abo-text {
    gap: 20px;
    padding-top: 10px;
  }
}
@media (max-width: 425px) {
  .main .abo .bandeau-abo {
    padding: 0px 45px;
  }
}

.bi-chevron-left,
.bi-chevron-right {
  color: #262525;
  font-size: 30px;
  background-color: transparent;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: grid;
  justify-items: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  right: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bi-chevron-right {
  left: unset;
}

.bi-chevron-left {
  visibility: hidden;
}

.bi-chevron-left:hover,
.bi-chevron-right:hover {
  color: #e6a4b6;
}

.slider {
  width: 1000px;
  margin: auto;
  overflow-x: hidden;
}
.slider .slider-manga-cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: default;
}
.slider .slider-manga-cards .slider-manga1 {
  background-image: url(../img/bleach.svg);
}
.slider .slider-manga-cards .slider-manga2 {
  background-image: url(../img/souleater.svg);
}
.slider .slider-manga-cards .slider-manga3 {
  background-image: url(../img/berserk.svg);
}
.slider .slider-manga-cards .slider-manga1,
.slider .slider-manga-cards .slider-manga2,
.slider .slider-manga-cards .slider-manga3 {
  border-radius: 40px;
  display: flex;
  width: 100%;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-end;
  justify-content: center;
  padding: 40px;
  margin-top: 100px;
  flex-shrink: 0;
}
.slider .slider-manga-cards .slider-manga1 h1,
.slider .slider-manga-cards .slider-manga2 h1,
.slider .slider-manga-cards .slider-manga3 h1 {
  font-size: 40px;
  color: #e6a4b6;
}
.slider .slider-manga-cards .slider-manga1 .paragraph,
.slider .slider-manga-cards .slider-manga2 .paragraph,
.slider .slider-manga-cards .slider-manga3 .paragraph {
  font-size: 20px;
  color: #f0e8e0;
}

@media (max-width: 890px) {
  .slider {
    width: 80%;
  }
}
.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}
.slider-btn .point {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #262525;
  border-radius: 100%;
  display: inline-block;
  transition: background-color 0.6s ease;
  margin-bottom: 13px;
}
.slider-btn .point:hover {
  background-color: #e6a4b6;
}

.bandeau-avis {
  margin-top: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.bandeau-avis .avis-groupe {
  display: flex;
  justify-content: center;
  margin: auto;
  gap: 30px;
  padding-top: 30px;
  width: 80%;
}
.bandeau-avis .avis-groupe .avis {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 20px 30px;
  background-color: #e6a4b6;
  width: 400px;
  height: 220px;
  border-radius: 15px;
}
.bandeau-avis .avis-groupe .avis .avis-top {
  display: flex;
  align-items: center;
}
.bandeau-avis .avis-groupe .avis .avis-top img {
  width: 70px;
  height: 70px;
}
@media (max-width: 1100px) {
  .bandeau-avis .avis-groupe .avis .avis-top img {
    width: 55px;
    height: 55px;
  }
}
.bandeau-avis .avis-groupe .avis .avis-top h2 {
  padding-left: 20px;
  font-size: 25px;
  font-family: "Gluten";
  font-weight: 100;
  text-transform: uppercase;
}
.bandeau-avis .avis-groupe .avis .avis-top h2 span {
  font-size: 15px;
  font-family: massilia, sans-serif;
  text-transform: none;
}
@media (max-width: 890px) {
  .bandeau-avis .avis-groupe .avis .avis-top h2 {
    font-size: 18px;
  }
  .bandeau-avis .avis-groupe .avis .avis-top h2 span {
    font-size: 12px;
  }
}
.bandeau-avis .avis-groupe .avis .avis-bottom p {
  font-weight: 100;
}
@media (max-width: 890px) {
  .bandeau-avis .avis-groupe .avis .avis-bottom p {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .bandeau-avis .avis-groupe .avis {
    height: 280px;
  }
}
@media (max-width: 670px) {
  .bandeau-avis .avis-groupe {
    flex-direction: column;
    align-items: center;
  }
  .bandeau-avis .avis-groupe .avis {
    height: 175px;
  }
}

.contact-img .gojo-mobil {
  display: none;
}
.contact-img img {
  position: relative;
  width: 100%;
  top: 42px;
}
@media (max-width: 1100px) {
  .contact-img img {
    top: 25px;
  }
}
@media (max-width: 670px) {
  .contact-img .gojo {
    display: none;
  }
  .contact-img .gojo-mobil {
    display: block;
    top: 45px;
    width: 80%;
  }
}
@media (max-width: 425px) {
  .contact-img .gojo-mobil {
    top: 42px;
    width: 100%;
  }
}

.contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #262525;
  padding: 50px 25px;
  border-radius: 15px;
}
.contact .contact-text h1 {
  color: #f0e8e0;
  font-weight: 600;
}
.contact .contact-text h1 span {
  font-family: massilia, sans-serif;
  font-size: 25px;
  font-weight: 100;
  text-transform: none;
}
@media (max-width: 425px) {
  .contact .contact-text h1 {
    font-size: 20px;
  }
  .contact .contact-text h1 span {
    font-size: 15px;
  }
}
.contact .contact-btn {
  border-radius: 100px;
  background-color: #f0e8e0;
  font-family: "Gluten", cursive;
  padding: 15px 60px;
  border: 2px solid #f0e8e0;
  color: #262525;
  text-decoration: none;
}
.contact .contact-btn:hover {
  background-color: #262525;
  color: #f0e8e0;
}
@media (max-width: 1100px) {
  .contact .contact-btn {
    padding: 15px 25px;
  }
}

@media (max-width: 670px) {
  .contact {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
footer {
  margin-top: 100px;
  padding: 50px;
  background-color: #262525;
  display: flex;
  justify-content: center;
}
footer .footer {
  display: flex;
  align-items: center;
}
footer .footer .logo-footer {
  display: flex;
  width: 14%;
  margin-right: 85px;
}
@media (max-width: 670px) {
  footer .footer .logo-footer {
    margin-right: 30px;
  }
}
footer .footer .big-bloc-footer {
  display: flex;
}
footer .footer .big-bloc-footer .mentions-left {
  gap: 30px;
  margin-right: 65px;
}
footer .footer .big-bloc-footer .mentions-left h3 {
  font-size: 15px;
  color: #8b8682;
  font-weight: 700;
  padding: 20px 0px;
}
footer .footer .big-bloc-footer .mentions-left p {
  font-size: 13px;
  padding-bottom: 5px;
  color: #f0e8e0;
}
@media (max-width: 670px) {
  footer .footer .big-bloc-footer .mentions-left {
    margin-right: 20px;
  }
}
footer .footer .big-bloc-footer .bloc2-footer {
  display: flex;
  align-items: center;
}
footer .footer .big-bloc-footer .bloc2-footer .mentions-right {
  margin-right: 116px;
}
footer .footer .big-bloc-footer .bloc2-footer .mentions-right h3 {
  font-size: 15px;
  color: #8b8682;
  font-weight: 700;
  padding: 20px 0px;
}
footer .footer .big-bloc-footer .bloc2-footer .mentions-right p {
  font-size: 13px;
  padding-bottom: 5px;
  color: #f0e8e0;
}
footer .footer .big-bloc-footer .bloc2-footer .icons {
  display: flex;
  width: 30px;
  height: 30px;
  gap: 5px;
}
@media (max-width: 1100px) {
  footer .footer .big-bloc-footer .bloc2-footer .mentions-right {
    margin-right: 50px;
  }
  footer .footer .big-bloc-footer .bloc2-footer .icons {
    display: block;
  }
}
@media (max-width: 890px) {
  footer .footer .big-bloc-footer .bloc2-footer .mentions-right {
    margin-right: 0px;
  }
  footer .footer .big-bloc-footer .bloc2-footer .icons {
    display: block;
  }
}
@media (max-width: 425px) {
  footer .footer .big-bloc-footer {
    align-items: flex-start;
    padding-top: 20px;
  }
}
@media (max-width: 425px) {
  footer .footer {
    flex-direction: column;
  }
  footer .footer .logo-footer {
    margin-right: 0px;
    width: 30%;
  }
}

.scroll-to-top {
  position: fixed;
  padding: 15px 16px;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
}
.scroll-to-top img {
  height: 50px;
  width: auto;
}
.scroll-to-top:hover {
  transform: translateY(-5px);
}
.scroll-to-top.show {
  opacity: 1;
}

.animated-image {
  animation-name: flo;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes flo {
  50% {
    transform: translateY(50px);
  }
}
.animated-image-x {
  animation-name: fle;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes fle {
  50% {
    transform: translateX(50px);
  }
}/*# sourceMappingURL=style.css.map */