header {
  background-color: #E5F3F3;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.nav {
  padding: 1rem 2rem;
  background-color: #E5F3F3;
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 1.625rem;
  max-width: 100rem;
  margin: auto;
}
@media (min-width: 925px) {
  .nav {
    padding: 1rem 5rem;
    flex-direction: row;
    align-items: center;
    font-size: 1em;
    justify-content: space-between;
    gap: 3em;
  }
}
.nav__logo {
  display: inline-block;
}
.nav__logo img {
  width: 90px;
  height: auto;
}
.nav__lists {
  z-index: 3;
  transition: 0.3s ease-in-out;
  transform: translateX(100%);
  position: fixed;
  top: 0;
  right: 0;
  background-color: #E5F3F3;
  width: 70%;
  min-height: 100vh;
  padding: 6em 2em 0;
  border-radius: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (min-width: 925px) {
  .nav__lists {
    background-color: transparent;
    flex-direction: row;
    transform: translateX(0);
    position: static;
    width: 100%;
    min-height: auto;
    padding: 0;
    box-shadow: none;
    gap: 0;
    justify-content: space-between;
  }
}
.nav__lists .main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 925px) {
  .nav__lists .main {
    flex-direction: row;
    align-items: center;
  }
}
.nav__lists .main .has-children {
  position: relative;
  transform-origin: center bottom;
}
.nav__lists .main .has-children .main__items__link:hover::before, .nav__lists .main .has-children .main__items .dropdown__items a:hover::before, .nav__lists .main__items .dropdown__items .main .has-children a:hover::before {
  transition: 0.2s ease-in-out;
  transform: rotate(0deg);
}
.nav__lists .main .has-children .main__items__link:before, .nav__lists .main .has-children .main__items .dropdown__items a:before, .nav__lists .main__items .dropdown__items .main .has-children a:before {
  transition: 0.5s ease-in-out;
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: center;
  top: 0;
  right: -25px;
  content: url("/wp-content/themes/LeVieuxMoulin/resources/img/dropdown.svg");
  height: auto;
  display: inline-block;
  color: #04A8BC;
}
.nav__lists .main .has-children:hover .dropdown {
  transition: ease-in-out 0.5s;
  max-height: 10rem;
  min-height: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
.nav__lists .main__items .dropdown {
  background-color: transparent;
  transition: ease-in-out 0.5s;
  display: flex;
  flex-direction: column;
  position: relative;
  max-height: 0;
  min-height: 0;
  gap: 20px;
  overflow: hidden;
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 925px) {
  .nav__lists .main__items .dropdown {
    position: absolute;
    left: 0;
    background-color: #E5F3F3;
    width: 130px;
    border-radius: 0 0 30px 30px;
  }
}
.nav__lists .main__items__link, .nav__lists .main__items .dropdown__items a {
  position: relative;
  display: inline-block;
}
.nav__lists .main__items__link:after, .nav__lists .main__items .dropdown__items a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -0.2em;
  left: 0;
  transform: scaleX(0);
  background-color: black;
  transform-origin: center;
  transition: 0.5s;
}
.nav__lists .main__items__link:hover::after, .nav__lists .main__items .dropdown__items a:hover::after {
  transform: scaleX(1);
  transform-origin: center;
  transition: 0.5s;
}
.nav__lists .secondary {
  display: flex;
  gap: 50px;
}
@media (max-width: 450px) {
  .nav__lists .secondary {
    flex-direction: column;
  }
}
.nav__lists .secondary__items {
  width: 100%;
  box-sizing: border-box;
}
.nav__lists .secondary__items__link {
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  padding: 1rem 1.265rem;
  border-radius: 30px;
  display: block;
  text-align: center;
}
#burger__button {
  z-index: 5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 40px;
  height: 40px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  cursor: pointer;
}
@media (min-width: 925px) {
  #burger__button {
    display: none;
  }
}
#burger__button:checked ~ .nav__lists {
  transform: translateX(0);
  transition: 0.3s ease-in-out;
}
#burger__button:checked ~ .burger__wrapper {
  background-color: #04A8BC;
  transition: 0.1s ease-in-out;
  border-color: #04A8BC;
}

.up {
  transition: 0.2s ease-in-out;
}

.middle {
  transition: 0.2s ease-in-out;
}

.down {
  transition: 0.2s ease-in-out;
}

.nav:has(#burger__button:checked) .burger__wrapper .up {
  transform: translateY(8px) rotate(45deg);
  transition: 0.2s ease-in-out;
}
.nav:has(#burger__button:checked) .burger__wrapper .middle {
  opacity: 0;
  transition: 0.2s ease-in-out;
}
.nav:has(#burger__button:checked) .burger__wrapper .down {
  transform: translateY(-8px) rotate(-45deg);
  transition: 0.2s ease-in-out;
}

.burger__wrapper {
  transition: 0.1s ease-in-out;
  border: 1px solid black;
  background-color: transparent;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  padding: 10px;
  border-radius: 5px;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  cursor: pointer;
}
@media (min-width: 925px) {
  .burger__wrapper {
    display: none;
  }
}
.burger__wrapper__lines {
  border-radius: 20px;
  background-color: black;
  display: block;
  content: "";
  width: 22px;
  min-height: 3px;
}

.ctaPrimary, .nav__lists .secondary__items:first-child .secondary__items__link {
  background-color: #04A8BC;
  border: 1px solid #04A8BC;
  border-radius: 30px;
  color: white;
  display: block;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  line-height: 1.6;
  padding: 1rem 1.225rem;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.ctaPrimary:hover, .nav__lists .secondary__items:first-child .secondary__items__link:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
  background-color: transparent;
  color: #04A8BC;
}

.ctaSecondary, .nav__lists .secondary__items:last-child .secondary__items__link {
  background-color: #FFD300;
  border: 1px solid #FFD300;
  border-radius: 30px;
  color: black;
  display: block;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  line-height: 1.6;
  padding: 1rem 1.225rem;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.ctaSecondary:hover, .nav__lists .secondary__items:last-child .secondary__items__link:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
  background-color: transparent;
  color: #FFD300;
}

.ctaPrimary, .nav__lists .secondary__items:first-child .secondary__items__link {
  background-color: #04A8BC;
  border: 1px solid #04A8BC;
  border-radius: 30px;
  color: white;
  display: block;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  line-height: 1.6;
  padding: 1rem 1.225rem;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.ctaPrimary:hover, .nav__lists .secondary__items:first-child .secondary__items__link:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
  background-color: transparent;
  color: #04A8BC;
}

.ctaSecondary, .nav__lists .secondary__items:last-child .secondary__items__link {
  background-color: #FFD300;
  border: 1px solid #FFD300;
  border-radius: 30px;
  color: black;
  display: block;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  line-height: 1.6;
  padding: 1rem 1.225rem;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.ctaSecondary:hover, .nav__lists .secondary__items:last-child .secondary__items__link:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
  background-color: transparent;
  color: #FFD300;
}

.newsCard {
  position: relative;
  transition: 0.2s ease-in-out;
}
.newsCard:hover {
  transform: scale(1.05);
}
.newsCard:hover img {
  transition: 0.2s ease-in-out;
}
.newsCard__img img {
  aspect-ratio: 3/4;
}
.newsCard__img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.newsCard__content {
  position: absolute;
  bottom: 33px;
  left: 20px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2em;
  color: white;
  transition: 2s ease-in-out;
}
.newsCard__content__title {
  font-size: 1.4rem;
  color: white;
}
.newsCard__content__time {
  font-family: "Poppins-Bold", Helvetica, sans-serif;
}
.newsCard__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__img {
  position: relative;
}
.hero__img .frog {
  position: absolute;
  width: 100px;
  height: auto;
  top: -78px;
  left: 30px;
}

.wolf__container {
  display: flex;
  justify-content: center;
  order: 2;
}
@media (min-width: 925px) {
  .wolf__container {
    position: absolute;
    top: -210px;
    right: 50px;
  }
}
.wolf__container img {
  margin: auto;
  width: 200px;
  height: auto;
}

.container__panda {
  position: absolute;
  top: -80px;
  right: 0;
  display: block;
}
@media (min-width: 650px) {
  .container__panda {
    top: -100px;
  }
}
@media (min-width: 925px) {
  .container__panda {
    right: 20px;
    top: -150px;
  }
}
@media (min-width: 1024px) {
  .container__panda {
    right: 5%;
  }
}
.container__panda img {
  width: 80px;
  height: auto;
  margin: auto;
}
@media (min-width: 650px) {
  .container__panda img {
    width: 100px;
    height: auto;
  }
}
@media (min-width: 925px) {
  .container__panda img {
    width: 150px;
  }
}

.house__image {
  position: relative;
}
@media (min-width: 925px) {
  .house__image {
    position: static;
    grid-area: img;
  }
}
.house__image .dog, .house__image .cat {
  position: absolute;
  right: 0;
  top: -100px;
  transform: scaleX(-1);
  width: 100px;
  height: auto;
}
@media (min-width: 925px) {
  .house__image .dog, .house__image .cat {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 1400px) {
  .house__image .dog, .house__image .cat {
    width: 150px;
  }
}
.house__image .cat {
  left: 0;
}

.animalsImg {
  position: relative;
}
.animalsImg .guepard, .animalsImg .dino, .animalsImg .turtle {
  position: absolute;
  width: 100px;
  height: auto;
}
@media (min-width: 925px) {
  .animalsImg .guepard, .animalsImg .dino, .animalsImg .turtle {
    width: 150px;
  }
}
.animalsImg .dino {
  top: -90px;
  right: 0;
}
@media (min-width: 925px) {
  .animalsImg .dino {
    top: -140px;
  }
}
@media (min-width: 1024px) {
  .animalsImg .dino {
    top: -140px;
  }
}
.animalsImg .turtle {
  top: -65px;
  left: 0;
}
@media (min-width: 925px) {
  .animalsImg .turtle {
    top: -105px;
  }
}
.animalsImg .guepard {
  right: 0;
  top: -79px;
}
@media (min-width: 925px) {
  .animalsImg .guepard {
    top: -129px;
  }
}

.moment__img {
  position: relative;
}
.moment__img .coq {
  transform: scaleX(-1);
  position: absolute;
  top: -105px;
  right: -50px;
  width: 150px;
  height: auto;
}
@media (min-width: 650px) {
  .moment__img .coq {
    width: 200px;
    top: -140px;
  }
}
@media (min-width: 925px) {
  .moment__img .coq {
    right: 0;
  }
}
@media (min-width: 1024px) {
  .moment__img .coq {
    width: 250px;
    top: -170px;
  }
}
.moment__img .hibou {
  position: absolute;
  top: -70px;
  left: 0;
  width: 100px;
  height: auto;
}
@media (min-width: 650px) {
  .moment__img .hibou {
    width: 130px;
    top: -91px;
  }
}
@media (min-width: 925px) {
  .moment__img .hibou {
    width: 160px;
    top: -114px;
  }
}
@media (min-width: 925px) and (min-width: 1024px) {
  .moment__img .hibou {
    width: 200px;
    top: -141px;
  }
}
.moment__img .singe {
  position: absolute;
  width: 140px;
  height: auto;
  right: 0;
  top: -100px;
}
@media (min-width: 925px) {
  .moment__img .singe {
    width: 170px;
    top: -122px;
  }
}
@media (min-width: 1024px) {
  .moment__img .singe {
    width: 200px;
    top: -143px;
  }
}
.moment__img .cochon {
  transform: scaleX(-1);
  position: absolute;
  width: 140px;
  top: -93px;
  left: 30px;
}
@media (min-width: 1024px) {
  .moment__img .cochon {
    width: 200px;
    top: -133px;
  }
}
.moment__img .paresseux {
  width: 150px;
  top: -59px;
  right: 30px;
  position: absolute;
}
@media (min-width: 1024px) {
  .moment__img .paresseux {
    width: 250px;
    top: -97px;
  }
}

.don__img {
  position: relative;
}
.don__img .panda {
  position: absolute;
  top: -70px;
  right: 0;
  width: 100px;
  height: auto;
}
@media (min-width: 650px) {
  .don__img .panda {
    top: -100px;
    width: 140px;
  }
}
@media (min-width: 925px) {
  .don__img .panda {
    top: -140px;
    right: 0;
    width: 200px;
  }
}
.don__img .fourmis {
  position: absolute;
  width: 200px;
  height: auto;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 925px) {
  .don__img .fourmis {
    left: 0;
    transform: translateX(0);
    width: 250px;
    top: -180px;
  }
}

.page404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
}
@media (min-width: 925px) {
  .page404 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.page404__error {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.page404__link {
  background-color: #04A8BC;
  border: 1px solid #04A8BC;
  border-radius: 30px;
  color: white;
  display: block;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  line-height: 1.6;
  padding: 1rem 1.225rem;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
  max-width: 250px;
}
.page404__link:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
  background-color: transparent;
  color: #04A8BC;
}
.page404 img {
  display: block;
  margin: auto;
  width: 33%;
}

.hero {
  display: flex;
  flex-direction: column-reverse;
  gap: 3em;
}
@media (min-width: 925px) {
  .hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.hero__content__title span {
  display: block;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  color: #FFD300;
}

.missions {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1600px;
  margin: auto;
}
.missions__list {
  z-index: 1;
  position: relative;
  display: grid;
  gap: 30px;
  padding-bottom: 2em;
}
@media (min-width: 925px) {
  .missions__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.missions__list__items {
  display: flex;
}
.missions__list__items article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 30px;
  background-color: #FFD300;
  padding: 2em;
  gap: 30px;
  flex-grow: 1;
}
.missions__list__items article h3 {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  color: black;
}
.missions__list__items article p {
  font-size: 20px;
}

.houses__title {
  margin-bottom: 5rem;
}
.houses__list {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}

.house {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
@media (min-width: 925px) {
  .house {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .house:nth-child(odd) {
    grid-template-areas: "img content";
  }
  .house:nth-child(even) {
    grid-template-areas: "content img";
  }
}
.house__content {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
@media (min-width: 925px) {
  .house__content {
    grid-area: content;
    align-items: center;
    justify-content: center;
  }
}
.house__features {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.house__feature-text {
  line-height: 1;
  font-size: 1.25em;
  display: flex;
  align-items: center;
  gap: 1em;
}
.house__feature-text::before {
  content: url("/wp-content/themes/LeVieuxMoulin/resources/img/bullet.svg");
  display: inline-block;
}
.house__link {
  width: auto;
}

.newsHome {
  display: flex;
  flex-direction: column;
}
.newsHome__title {
  margin-bottom: 5rem;
}
@media (min-width: 650px) {
  .newsHome__cta {
    background-color: #04A8BC;
    border: 1px solid #04A8BC;
    border-radius: 30px;
    color: white;
    display: block;
    font-family: "Poppins-Semibold", Helvetica, sans-serif;
    line-height: 1.6;
    padding: 1rem 1.225rem;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
    width: 50%;
    margin: auto;
  }
  .newsHome__cta:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
    background-color: transparent;
    color: #04A8BC;
  }
}
@media (min-width: 1024px) {
  .newsHome__cta {
    background-color: #04A8BC;
    border: 1px solid #04A8BC;
    border-radius: 30px;
    color: white;
    display: block;
    font-family: "Poppins-Semibold", Helvetica, sans-serif;
    line-height: 1.6;
    padding: 1rem 1.225rem;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
    width: calc(33% - 100px);
  }
  .newsHome__cta:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
    background-color: transparent;
    color: #04A8BC;
  }
}
.newsHome__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding-bottom: 2em;
}
@media (min-width: 650px) {
  .newsHome__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}
@media (min-width: 1024px) {
  .newsHome__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.newsHome .ctaPrimary, .newsHome .nav__lists .secondary__items:first-child .secondary__items__link, .nav__lists .secondary__items:first-child .newsHome .secondary__items__link {
  margin-bottom: 2em;
}

.homeDonation__title {
  margin-bottom: 5rem;
}
.homeDonation__wrapper {
  position: relative;
  background-color: #FFD300;
  padding: 3em;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 925px) {
  .homeDonation__wrapper {
    flex-direction: row;
    align-items: center;
    width: 80%;
    margin: auto;
  }
}
@media (min-width: 925px) {
  .homeDonation__wrapper {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 100px;
  }
}
.homeDonation__wrapper__text {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 650px) {
  .homeDonation__wrapper__text {
    font-size: 1.25em;
  }
}
.homeDonation__wrapper__qrcode img {
  background-color: white;
  border-radius: 0;
  max-width: 18.75rem;
  margin: auto;
  width: 100%;
}
.homeDonation__bank {
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
}

.news {
  display: flex;
  flex-direction: column;
}
.news__title {
  margin-bottom: 5rem;
}
@media (min-width: 650px) {
  .news__cta {
    background-color: #04A8BC;
    border: 1px solid #04A8BC;
    border-radius: 30px;
    color: white;
    display: block;
    font-family: "Poppins-Semibold", Helvetica, sans-serif;
    line-height: 1.6;
    padding: 1rem 1.225rem;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
    width: 50%;
    margin: auto;
  }
  .news__cta:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
    background-color: transparent;
    color: #04A8BC;
  }
}
@media (min-width: 1024px) {
  .news__cta {
    background-color: #04A8BC;
    border: 1px solid #04A8BC;
    border-radius: 30px;
    color: white;
    display: block;
    font-family: "Poppins-Semibold", Helvetica, sans-serif;
    line-height: 1.6;
    padding: 1rem 1.225rem;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
    width: calc(33% - 100px);
  }
  .news__cta:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
    background-color: transparent;
    color: #04A8BC;
  }
}
.news__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding-bottom: 2em;
}
@media (min-width: 650px) {
  .news__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}
@media (min-width: 1024px) {
  .news__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news .ctaPrimary, .news .nav__lists .secondary__items:first-child .secondary__items__link, .nav__lists .secondary__items:first-child .news .secondary__items__link {
  margin-bottom: 2em;
}

.explication {
  display: flex;
  flex-direction: column-reverse;
  gap: 5rem;
}
@media (min-width: 925px) {
  .explication {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-template-areas: "content image";
  }
}
@media (min-width: 925px) {
  .explication:nth-child(even) {
    grid-template-areas: "image content";
  }
}
.explication__content {
  display: flex;
  gap: 2em;
  flex-direction: column;
}
@media (min-width: 925px) {
  .explication__content {
    grid-area: content;
  }
}
.explication__img img {
  aspect-ratio: 4/3;
}
@media (min-width: 925px) {
  .explication__img {
    grid-area: image;
  }
}
.explication .squirel {
  display: block;
  max-width: 500px;
  height: auto;
  margin: auto;
  transform: scaleX(-1);
}

.asideFeatures__title {
  margin-bottom: 5rem;
}
.asideFeatures__list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3rem;
  padding-bottom: 2em;
}
@media (min-width: 925px) {
  .asideFeatures__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.asideFeatures__list__items {
  border-radius: 30px;
  padding: 4em 2em;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  flex: 1;
  align-items: center;
  background-color: #FFD300;
}
.asideFeatures__list__items__number {
  height: auto;
  font-size: 5rem;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
}
.asideFeatures__list__items__paragraph {
  font-size: 1.5rem;
}

.timeline__title {
  margin-bottom: 5rem;
}
.timeline__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
.timeline__wrapper .moment {
  display: flex;
  flex-direction: column-reverse;
  gap: 5rem;
}
@media (min-width: 925px) {
  .timeline__wrapper .moment {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-template-areas: "content image";
  }
}
@media (min-width: 925px) {
  .timeline__wrapper .moment:nth-child(even) {
    grid-template-areas: "image content";
  }
}
.timeline__wrapper .moment__content {
  display: flex;
  gap: 2em;
  flex-direction: column;
}
@media (min-width: 925px) {
  .timeline__wrapper .moment__content {
    grid-area: content;
  }
}
.timeline__wrapper .moment__img img {
  aspect-ratio: 4/3;
}
@media (min-width: 925px) {
  .timeline__wrapper .moment__img {
    grid-area: image;
  }
}

.coop__title {
  margin-bottom: 5rem;
}
.coop__list {
  display: grid;
  gap: 6rem;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 925px) {
  .coop__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .coop__list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.coop__list__items img {
  width: 100%;
  height: auto;
}

.resources__title {
  margin-bottom: 5rem;
}
.resources__list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}
.resources__list__items {
  border: 2px solid #04A8BC;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em;
  border-radius: 30px;
}
.resources__list__items a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.resources__list__items svg {
  width: 30px;
  height: auto;
}

.donation {
  display: flex;
  flex-direction: column-reverse;
  gap: 5rem;
}
@media (min-width: 925px) {
  .donation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-template-areas: "content image";
  }
}
@media (min-width: 925px) {
  .donation:nth-child(even) {
    grid-template-areas: "image content";
  }
}
.donation__content {
  display: flex;
  gap: 2em;
  flex-direction: column;
}
@media (min-width: 925px) {
  .donation__content {
    grid-area: content;
  }
}
.donation__img img {
  aspect-ratio: 4/3;
}
@media (min-width: 925px) {
  .donation__img {
    grid-area: image;
  }
}
.donation__content {
  gap: 2em;
}
.donation .helpers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
@media (min-width: 650px) {
  .donation .helpers {
    flex-direction: row;
    justify-content: space-between;
  }
}
.donation .helpers__items {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.donation .helpers__items__value {
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  font-size: 2rem;
  color: #295B96;
}
@media (min-width: 925px) {
  .donation .helpers__items__value {
    font-size: 2.675rem;
  }
}
@media (min-width: 1024px) {
  .donation .helpers__items__value {
    font-size: 3.25rem;
  }
}
.donation .helpers__items__name {
  font-size: 1.2rem;
}

.typeOfDonations__title {
  margin-bottom: 5rem;
}
.typeOfDonations__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding-bottom: 2em;
}
.typeOfDonations__wrapper .don {
  display: flex;
  flex-direction: column-reverse;
  gap: 5rem;
}
@media (min-width: 925px) {
  .typeOfDonations__wrapper .don {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-template-areas: "content image";
  }
}
@media (min-width: 925px) {
  .typeOfDonations__wrapper .don:nth-child(even) {
    grid-template-areas: "image content";
  }
}
.typeOfDonations__wrapper .don__content {
  display: flex;
  gap: 2em;
  flex-direction: column;
}
@media (min-width: 925px) {
  .typeOfDonations__wrapper .don__content {
    grid-area: content;
  }
}
.typeOfDonations__wrapper .don__img img {
  aspect-ratio: 4/3;
}
@media (min-width: 925px) {
  .typeOfDonations__wrapper .don__img {
    grid-area: image;
  }
}
.typeOfDonations__wrapper .don__content__title {
  color: #295B96;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
}
.typeOfDonations__wrapper .money__content__alert, .typeOfDonations__wrapper .money__content b {
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
}

.collaborators\&volunteers__title {
  margin-bottom: 5rem;
}
.collaborators\&volunteers__content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (min-width: 925px) {
  .collaborators\&volunteers__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.collaborators\&volunteers__content .volunteers, .collaborators\&volunteers__content .partners {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem;
}
.collaborators\&volunteers__content .volunteers__content, .collaborators\&volunteers__content .partners__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.collaborators\&volunteers__content .volunteers__content__list, .collaborators\&volunteers__content .partners__content__list {
  display: flex;
  flex-direction: column;
  gap: 3em;
}
.collaborators\&volunteers__content .volunteers__content__list__items p, .collaborators\&volunteers__content .partners__content__list__items p {
  line-height: 1;
  font-size: 1.25em;
  display: flex;
  align-items: center;
  gap: 1em;
}
.collaborators\&volunteers__content .volunteers__content__list__items p:before, .collaborators\&volunteers__content .partners__content__list__items p:before {
  content: url("/wp-content/themes/LeVieuxMoulin/resources/img/bullet.svg");
  display: inline-block;
}
.collaborators\&volunteers__content .volunteers__img img, .collaborators\&volunteers__content .partners__img img {
  aspect-ratio: 4/3;
}

.new {
  display: flex;
  flex-direction: column-reverse;
  gap: 5rem;
}
@media (min-width: 925px) {
  .new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-template-areas: "content image";
  }
}
@media (min-width: 925px) {
  .new:nth-child(even) {
    grid-template-areas: "image content";
  }
}
.new__content {
  display: flex;
  gap: 2em;
  flex-direction: column;
}
@media (min-width: 925px) {
  .new__content {
    grid-area: content;
  }
}
.new__img img {
  aspect-ratio: 4/3;
}
@media (min-width: 925px) {
  .new__img {
    grid-area: image;
  }
}
.new__content__title {
  font-size: 2.125rem;
  font-family: "Poppins-regular", Helvetica, sans-serif;
  line-height: 1.6;
  color: #04A8BC;
}
@media (min-width: 925px) {
  .new__content__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1200px) {
  .new__content__title {
    font-size: 3.375rem;
  }
}

.asideInfos__title {
  margin-bottom: 5rem;
  font-size: 2.125rem;
  font-family: "Poppins-regular", Helvetica, sans-serif;
  line-height: 1.6;
  color: #04A8BC;
}
@media (min-width: 925px) {
  .asideInfos__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1200px) {
  .asideInfos__title {
    font-size: 3.375rem;
  }
}
.asideInfos__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding-bottom: 2rem;
}
.asideInfos__wrapper__story {
  display: flex;
  flex-direction: column-reverse;
  gap: 5rem;
}
@media (min-width: 925px) {
  .asideInfos__wrapper__story {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-template-areas: "content image";
  }
}
@media (min-width: 925px) {
  .asideInfos__wrapper__story:nth-child(even) {
    grid-template-areas: "image content";
  }
}
.asideInfos__wrapper__story__content {
  display: flex;
  gap: 2em;
  flex-direction: column;
}
@media (min-width: 925px) {
  .asideInfos__wrapper__story__content {
    grid-area: content;
  }
}
.asideInfos__wrapper__story__img img {
  aspect-ratio: 4/3;
}
@media (min-width: 925px) {
  .asideInfos__wrapper__story__img {
    grid-area: image;
  }
}

.galleryNew__title {
  margin-bottom: 5rem;
}
.galleryNew__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 2em;
}
@media (min-width: 925px) {
  .galleryNew__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, max-content);
  }
}
.galleryNew__list__items img {
  -o-object-fit: cover;
     object-fit: cover;
}

.otherNews {
  display: flex;
  flex-direction: column;
}
.otherNews__title {
  margin-bottom: 5rem;
}
@media (min-width: 650px) {
  .otherNews__cta {
    background-color: #04A8BC;
    border: 1px solid #04A8BC;
    border-radius: 30px;
    color: white;
    display: block;
    font-family: "Poppins-Semibold", Helvetica, sans-serif;
    line-height: 1.6;
    padding: 1rem 1.225rem;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
    width: 50%;
    margin: auto;
  }
  .otherNews__cta:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
    background-color: transparent;
    color: #04A8BC;
  }
}
@media (min-width: 1024px) {
  .otherNews__cta {
    background-color: #04A8BC;
    border: 1px solid #04A8BC;
    border-radius: 30px;
    color: white;
    display: block;
    font-family: "Poppins-Semibold", Helvetica, sans-serif;
    line-height: 1.6;
    padding: 1rem 1.225rem;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
    width: calc(33% - 100px);
  }
  .otherNews__cta:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
    background-color: transparent;
    color: #04A8BC;
  }
}
.otherNews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding-bottom: 2em;
}
@media (min-width: 650px) {
  .otherNews__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}
@media (min-width: 1024px) {
  .otherNews__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.otherNews .ctaPrimary, .otherNews .nav__lists .secondary__items:first-child .secondary__items__link, .nav__lists .secondary__items:first-child .otherNews .secondary__items__link {
  margin-bottom: 2em;
}

.houseLandingPage {
  display: flex;
  flex-direction: column-reverse;
  gap: 5rem;
}
@media (min-width: 925px) {
  .houseLandingPage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-template-areas: "content image";
  }
}
@media (min-width: 925px) {
  .houseLandingPage:nth-child(even) {
    grid-template-areas: "image content";
  }
}
.houseLandingPage__content {
  display: flex;
  gap: 2em;
  flex-direction: column;
}
@media (min-width: 925px) {
  .houseLandingPage__content {
    grid-area: content;
  }
}
.houseLandingPage__img img {
  aspect-ratio: 4/3;
}
@media (min-width: 925px) {
  .houseLandingPage__img {
    grid-area: image;
  }
}

.statsHouse {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1600px;
  margin: auto;
}
.statsHouse__list {
  z-index: 1;
  position: relative;
  display: grid;
  gap: 30px;
  padding-bottom: 2em;
}
@media (min-width: 925px) {
  .statsHouse__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.statsHouse__list__items {
  display: flex;
}
.statsHouse__list__items article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 30px;
  background-color: #FFD300;
  padding: 2em;
  gap: 30px;
  flex-grow: 1;
}
.statsHouse__list__items article h3 {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  color: black;
}
.statsHouse__list__items article p {
  font-size: 20px;
}
.statsHouse article {
  justify-content: center;
}

.daily__title {
  margin-bottom: 5rem;
}
.daily__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
.daily__wrapper .moment {
  display: flex;
  flex-direction: column-reverse;
  gap: 5rem;
}
@media (min-width: 925px) {
  .daily__wrapper .moment {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-template-areas: "content image";
  }
}
@media (min-width: 925px) {
  .daily__wrapper .moment:nth-child(even) {
    grid-template-areas: "image content";
  }
}
.daily__wrapper .moment__content {
  display: flex;
  gap: 2em;
  flex-direction: column;
}
@media (min-width: 925px) {
  .daily__wrapper .moment__content {
    grid-area: content;
  }
}
.daily__wrapper .moment__img img {
  aspect-ratio: 4/3;
}
@media (min-width: 925px) {
  .daily__wrapper .moment__img {
    grid-area: image;
  }
}

.rooms__title {
  margin-bottom: 5rem;
}
.rooms__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 2em;
}
@media (min-width: 925px) {
  .rooms__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, max-content);
  }
}
.rooms__list__items img {
  -o-object-fit: cover;
     object-fit: cover;
}

.nextHouse__link {
  background-color: #04A8BC;
  border: 1px solid #04A8BC;
  border-radius: 30px;
  color: white;
  display: block;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  line-height: 1.6;
  padding: 1rem 1.225rem;
  text-align: center;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
  max-width: 250px;
  margin: auto;
}
.nextHouse__link:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
  background-color: transparent;
  color: #04A8BC;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (min-width: 925px) {
  .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.contact__aside__coord {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.contact__aside__coord__list__itemTitle {
  margin-bottom: 0.5em;
}
.contact__aside__coord__list__itemContent {
  margin-bottom: 1em;
}
.contact .contact__success {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .contact__success p {
  font-size: 2rem;
  font-family: "Poppins-Bold", Helvetica, sans-serif;
}
.contact__form {
  padding: 2em 1.5em;
  background-color: #FFD300;
  border-radius: 30px;
}
.contact__form .field__error {
  font-family: "Poppins-Bold", Helvetica, sans-serif;
  margin-bottom: 1.5rem;
  color: red;
  text-align: center;
}
.contact__form form {
  width: 100%;
}
.contact__form label {
  margin-left: 0.5em;
  margin-bottom: 0.75em;
  display: block;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
}
.contact__form input {
  margin-bottom: 1.5em;
  border-radius: 30px;
  border: none;
  width: 100%;
  padding: 1.25em;
  box-sizing: border-box;
}
.contact__form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  border-radius: 30px;
  border: none;
}
.contact__form button[name=submit] {
  margin: 2em auto 0;
  font-size: 1rem;
  max-width: 250px;
  cursor: pointer;
}

footer {
  background-color: #E5F3F3;
}
footer .main__footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 100rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 925px) {
  footer .main__footer {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
footer .main__footer__content h3 {
  font-size: 1.3rem;
  color: black;
  margin-bottom: 1rem;
}
footer .main__footer__content ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .main__footer__content ul a {
  position: relative;
  line-height: 1.6;
}
footer .main__footer__content ul a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -0.2em;
  left: 0;
  transform: scaleX(0);
  background-color: black;
  transform-origin: center;
  transition: 0.5s;
}
footer .main__footer__content ul a:hover::after {
  transform: scaleX(1);
  transform-origin: center;
  transition: 0.5s;
}
footer .secondary__footer {
  padding: 1rem 2rem;
  max-width: 100rem;
  margin: auto;
  background-color: #04A8BC;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 925px) {
  footer .secondary__footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  footer .secondary__footer {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
footer .secondary__footer .secondary__footer__creator {
  display: flex;
  gap: 1rem;
}
footer .secondary__footer a {
  position: relative;
  line-height: 1.6;
  display: inline-block;
}
footer .secondary__footer a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -0.2em;
  left: 0;
  transform: scaleX(0);
  background-color: black;
  transform-origin: center;
  transition: 0.5s;
}
footer .secondary__footer a:hover::after {
  transform: scaleX(1);
  transform-origin: center;
  transition: 0.5s;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Poppins-regular";
  src: url("/wp-content/themes/LeVieuxMoulin/resources/fonts/Poppins-Regular.ttf");
}
@font-face {
  font-family: "Poppins-bold";
  src: url("/wp-content/themes/LeVieuxMoulin/resources/fonts/Poppins-Bold.ttf");
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("/wp-content/themes/LeVieuxMoulin/resources/fonts/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: "Poppins-Light";
  src: url("/wp-content/themes/LeVieuxMoulin/resources/fonts/Poppins-Light.ttf");
}
@font-face {
  font-family: "Poppins-bold";
  src: url("/wp-content/themes/LeVieuxMoulin/resources/fonts/Poppins-Bold.ttf");
}
.sro {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.resizeImg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

body:has(#burger__button:checked) {
  overflow-y: hidden;
}

a {
  text-decoration: none;
  font-family: "Poppins-regular", Helvetica, sans-serif;
  color: black;
}

h2 {
  font-size: 2.125rem;
  font-family: "Poppins-regular", Helvetica, sans-serif;
  line-height: 1.6;
}
@media (min-width: 925px) {
  h2 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 3.375rem;
  }
}

h3 {
  color: #295B96;
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  font-size: 2em;
}

strong {
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
  color: #04A8BC;
}

p, dd {
  font-family: "Poppins-regular", Helvetica, sans-serif;
  line-height: 1.6;
}

dt {
  font-family: "Poppins-Semibold", Helvetica, sans-serif;
}

section {
  max-width: 100rem;
  margin: auto;
  padding: 5.4rem 2rem;
}
@media (min-width: 1024px) {
  section {
    padding: 8rem 5rem;
  }
}

.bg {
  background-color: #E5F3F3;
  position: relative;
}
.bg section {
  padding-bottom: 0;
  padding-top: 0;
}
.bg:before {
  position: absolute;
  content: "";
  background-image: url("/wp-content/themes/LeVieuxMoulin/resources/img/topSvg.svg");
  top: -2.5rem;
  z-index: -1;
  left: 0;
  height: 2.5rem;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 925px) {
  .bg:before {
    top: -5rem;
    height: 5rem;
  }
}
.bg:after {
  position: absolute;
  z-index: -1;
  content: "";
  background-image: url("/wp-content/themes/LeVieuxMoulin/resources/img/topSvg.svg");
  bottom: -2.5rem;
  left: 0;
  height: 2.5rem;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(-1);
}
@media (min-width: 925px) {
  .bg:after {
    bottom: -5rem;
    height: 5rem;
  }
}

.oppacity_none {
  opacity: 0;
}

.showUp {
  animation: 0.5s appear linear;
}

@keyframes appear {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.main__items__link.active_page, .nav__lists .main__items .dropdown__items a.active_page {
  font-weight: 700;
}
.main__items__link.active_page:after, .nav__lists .main__items .dropdown__items a.active_page:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -0.2em;
  left: 0;
  transform: scaleX(1);
  background-color: black;
  transform-origin: center;
  transition: 0.5s;
}
b {
  line-height: 1.6;
}

.skip {
  position: absolute;
  top: 0;
  left: -10000px;
  z-index: 10000;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-size: 1.4rem;
  text-decoration: none;
  color: black;
  background-color: #FFD300;
}
.skip:focus {
  left: 0;
}
