.button {
  background-color: #DA8359;
  color: #493323;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  text-decoration: none;
  display: inline-block;
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 30px;
}
@media screen and (min-width: 1000px) {
  .button {
    padding: 7px 17px;
    font-size: 14px;
  }
}

.button:hover {
  color: #FFF9F2;
  border: 1px solid #A5B68D;
}

.header {
  background-color: #A5B68D;
}
.header__title {
  font-family: "Amatic SC", sans-serif;
  font-size: 50px;
  font-weight: bold;
  text-decoration: none;
  color: #493323;
  display: inline-block;
  padding: 15px 30px;
}

.svg {
  width: 25px;
  height: 30px;
  position: absolute;
  right: 30px;
  top: 31px;
}

.menu__checkbox {
  position: absolute;
  left: -9999px;
}

.menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  display: none;
}

.menu__item {
  border-bottom: 1px solid #493323;
  padding: 15px 0;
  background-color: #A5B68D;
}

.menu__link {
  font-family: "Amatic SC", sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  color: #493323;
  display: block;
}

.menu__checkbox:checked ~ .menu__list {
  display: block;
}

.menu__link:hover {
  color: #ECDFCC;
  text-decoration: underline;
}

@media screen and (min-width: 1000px) {
  .menu__toggler {
    display: none;
  }
  .menu__list {
    display: flex !important;
    justify-content: space-around;
    padding-right: 20px;
  }
  .header__title {
    flex-grow: 1;
    padding: 0;
    padding-left: 30px;
    font-size: 60px;
  }
  .menu {
    flex-basis: 50%;
  }
}
@media screen and (min-width: 1000px) and (min-width: 1200px) {
  .menu {
    flex-basis: 40%;
  }
}
@media screen and (min-width: 1000px) {
  .header {
    display: flex;
    height: 100px;
    align-items: center;
  }
  .menu__item {
    border-bottom: 0;
    padding: 0;
  }
  .menu__link {
    font-size: 25px;
  }
}
.footer {
  background-color: #A5B68D;
  position: relative;
}
.footer__main {
  text-align: center;
  color: #493323;
  padding: 20px 20px 20px 30px;
}
.footer__title {
  padding-bottom: 13px;
  font-size: 30px;
  color: #493323;
  margin: 0;
  font-family: "Amatic SC", sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 1000px) {
  .footer__title {
    text-align: left;
    padding-left: 10px;
  }
}
.footer__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #3F4F0B;
  margin: 5px auto 0 auto;
}
@media screen and (min-width: 1000px) {
  .footer__title::after {
    margin-left: 0;
  }
}
.footer__contact {
  margin: 0;
  line-height: 1.8;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .footer__contact {
    text-align: left;
    padding-left: 10px;
  }
}
.footer__link {
  color: #493323;
  text-decoration: none;
}
.footer a:hover {
  color: #FFF9F2;
}
.footer__icon {
  display: none;
  position: absolute;
}
@media screen and (min-width: 1000px) {
  .footer__icon {
    display: inline-block;
  }
}
.footer__icon-tree {
  width: 100px;
  right: 20px;
  bottom: 20px;
}
.footer__icon-bike {
  width: 70px;
  right: 50px;
  bottom: 20px;
  transform: scaleX(-1);
  transform-origin: left;
}
.footer__icon-flower {
  width: 20px;
  right: 210px;
  bottom: 20px;
}
.footer__icon-butterfly {
  width: 30px;
  right: 200px;
  top: 60px;
}
.footer__icon-dragon {
  width: 50px;
  left: 200px;
  top: 30px;
}

.contact {
  display: grid;
  margin-left: 30px;
  margin-right: 30px;
}
.contact__title {
  color: #3F4F0B;
  font-family: "Amatic SC", sans-serif;
  margin: 30px 0 30px 0;
  text-align: center;
  font-size: 35px;
}
.contact__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #3F4F0B;
  margin: 5px auto 0 auto;
}
.contact__contents {
  background-color: #FFF9F2;
  margin-bottom: 30px;
  border-radius: 30px;
  border: 1px solid #A5B68D;
  box-shadow: 1px 1px 5px #A5B68D;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contact__photo img {
  width: 100%;
  height: 100%;
  border-radius: 30px 30px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.contact__text {
  padding: 20px;
  font-size: 12px;
  margin: 0;
  text-align: center;
}
.contact__name {
  text-align: center;
  margin: 0;
  color: #3F4F0B;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
}
.contact__info {
  margin-bottom: 30px;
  color: #3F4F0B;
  font-weight: 500;
  font-size: 15px;
}
.contact__detail {
  margin: 0;
  color: black;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
}
.contact__link {
  color: #3F4F0B;
  text-decoration: none;
}
.contact a:hover {
  color: black;
  text-decoration: underline;
}
@media screen and (min-width: 1000px) {
  .contact {
    grid-template-columns: 1fr 4fr 1fr;
    grid-template-rows: 1fr auto 1fr;
    place-items: center;
  }
  .contact__photo img {
    border-radius: 30px 0 0 30px;
  }
  .contact__title {
    grid-column: 2;
    grid-row: 1;
  }
  .contact__contents {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    margin: 0;
    flex: 1 1 50%;
  }
  .contact__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
  }
  .contact__photo {
    flex: 1;
  }
  .contact__detail {
    flex-grow: 1;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 30px;
  }
  .contact__detail p {
    margin: 0;
  }
}

.references {
  display: grid;
  margin-left: 30px;
  margin-right: 30px;
}
.references__title {
  font-family: "Amatic SC", sans-serif;
  text-align: center;
  font-size: 35px;
  color: #3F4F0B;
}
.references__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #3F4F0B;
  margin: 5px auto 0 auto;
}
.references__item {
  background-color: #FFF9F2;
  border-radius: 30px 30px 0 30px;
  width: 100%;
  border: 1px solid #A5B68D;
  box-shadow: 1px 1px 5px #A5B68D;
}
@media screen and (min-width: 1200px) {
  .references__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}
.references__text {
  font-size: 13px;
  text-align: left;
  padding: 20px;
  margin: 0;
  line-height: 1.4;
  font-style: italic;
}
.references__name {
  font-size: 11px;
  text-align: right;
  padding: 5px 15px 15px 0;
  margin: 0;
}
.references__list {
  display: grid;
  gap: 1rem;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .references {
    grid-template-columns: 5% 4fr 5%;
    grid-template-rows: 1fr auto auto;
    margin-bottom: 30px;
  }
  .references__title {
    grid-column: 2;
    grid-row: 1;
  }
  .references__list {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
  }
}

.intro__img {
  width: 100%;
  display: block;
}

.main-contents {
  display: grid;
  margin: 50px 30px 50px 30px;
}
.main-contents__icon {
  display: none;
}
@media screen and (min-width: 1000px) {
  .main-contents__icon {
    display: block;
    position: absolute;
  }
}
@media screen and (min-width: 1000px) {
  .main-contents {
    grid-template-columns: 1fr 4fr 1fr;
    grid-template-rows: auto auto auto;
    position: relative;
  }
}
.main-contents__icon-girl2 {
  right: 5%;
  top: 3%;
  width: 70px;
}
.main-contents__icon-cat {
  width: 100px;
}
.main-contents__icon-girl {
  left: 10%;
  width: 70px;
  bottom: 40%;
}
.main-contents__icon-boy2 {
  right: 5%;
  bottom: 5%;
  width: 70px;
}
.main-contents__icon-cat {
  right: 10%;
  top: 45%;
  width: 80px;
}
.main-contents__icon-tree {
  left: 8%;
  top: 7%;
  width: 50px;
}
.main-contents__icon-balloon {
  left: 5%;
  bottom: 5%;
  width: 30px;
}

.introtext {
  background-color: #FFF9F2;
  margin: auto;
  border-radius: 30px;
  border: 1px solid #A5B68D;
  box-shadow: 1px 1px 5px #A5B68D;
  width: 100%;
  display: grid;
}
@media screen and (min-width: 1000px) {
  .introtext {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.introtext__description {
  font-family: "Advent Pro", sans-serif;
  padding: 0 15px 15px 15px;
  text-align: center;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
.introtext__description p {
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .introtext__description {
    font-size: 20px;
    padding: 0 30px 20px 30px;
  }
}
.introtext__title {
  text-align: center;
  padding: 15px;
  margin: 0;
}
.introtext__title h2 {
  margin: 0;
  font-size: 24px;
  font-family: "Amatic SC", sans-serif;
  color: #3F4F0B;
}
@media screen and (min-width: 1000px) {
  .introtext__title h2 {
    font-size: 30px;
  }
}
.introtext__icon {
  display: none;
}
@media screen and (min-width: 1000px) {
  .introtext__icon {
    display: block;
    width: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .introtext__icon-frog {
    float: left;
    margin-right: 10px;
  }
}
@media screen and (min-width: 1000px) {
  .introtext__icon-snail {
    float: right;
    margin-left: 10px;
  }
}

@media screen and (min-width: 1000px) {
  .services {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-bottom: 50px;
    margin-top: 50px;
  }
}
.services__title {
  text-align: center;
  font-size: 35px;
  font-family: "Amatic SC", sans-serif;
  color: #3F4F0B;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media screen and (min-width: 1000px) {
  .services__title {
    text-align: left;
    margin-top: 0;
  }
}
.services__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #3F4F0B;
  margin: 5px auto 0 auto;
}
@media screen and (min-width: 1000px) {
  .services__title::after {
    margin: 0;
    justify-self: start;
  }
}
.services__image {
  border-radius: 30px 30px 0 0;
  width: 100%;
  height: auto;
}
.services__item-kids, .services__item-animals {
  background-color: #FFF9F2;
  margin: auto;
  border-radius: 30px;
  border: 1px solid #A5B68D;
  width: 100%;
  box-shadow: 1px 1px 5px #A5B68D;
}
.services__name {
  font-family: "Amatic SC", sans-serif;
  color: #3F4F0B;
  margin: 0;
  text-align: center;
  padding: 6px;
  font-size: 28px;
}
@media screen and (min-width: 1000px) {
  .services__name {
    padding: 10px 0 10px 0;
  }
}
.services__button-kids, .services__button-animals {
  margin: auto;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .services__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
    row-gap: 2rem;
    width: 55vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1000px) {
  .services__item-animals {
    grid-column: 2;
    grid-row: 1;
  }
}
@media screen and (min-width: 1000px) {
  .services__button-kids {
    grid-column: 1;
    grid-row: 2;
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  .services__button-animals {
    margin-top: 0;
  }
}
.services__button-kids {
  margin-bottom: 20px;
}

@media screen and (min-width: 1000px) {
  .home-references {
    grid-column: 2/3;
    grid-row: 3/3;
  }
}
.home-references__title {
  font-family: "Amatic SC", sans-serif;
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px;
  color: #3F4F0B;
}
@media screen and (min-width: 1000px) {
  .home-references__title {
    margin-top: 0;
    text-align: left;
    margin-top: 0;
  }
}
.home-references__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #3F4F0B;
  margin: 5px auto 0 auto;
}
@media screen and (min-width: 1000px) {
  .home-references__title::after {
    margin: 0;
    justify-self: start;
  }
}
.home-references__item {
  background-color: #FFF9F2;
  border-radius: 30px 30px 0 30px;
  width: 100%;
  margin: 20px auto;
  border: 1px solid #A5B68D;
  box-shadow: 1px 1px 5px #A5B68D;
}
@media screen and (min-width: 1200px) {
  .home-references__item {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}
.home-references__text {
  font-size: 13px;
  text-align: left;
  padding: 20px;
  margin: 0;
  line-height: 1.4;
  font-style: italic;
}
@media screen and (min-width: 1200px) {
  .home-references__text {
    font-size: 17px;
  }
}
.home-references__name {
  font-size: 11px;
  text-align: right;
  padding: 5px 15px 15px 0;
  margin: 0;
}
@media screen and (min-width: 1200px) {
  .home-references__name {
    font-size: 15px;
  }
}
.home-references__button {
  margin: auto;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .home-references__button {
    grid-column: 3;
    grid-row: 2;
    margin-top: 0;
    justify-self: end;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .home-references__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
  }
}

.about {
  display: grid;
  margin-bottom: 30px;
  gap: 2rem;
  position: relative;
  margin-left: 30px;
  margin-right: 30px;
}
.about__title {
  text-align: center;
  font-size: 35px;
  font-family: "Amatic SC", sans-serif;
  color: #3F4F0B;
  margin-top: 30px;
  margin-bottom: 0;
}
.about__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #3F4F0B;
  margin: 5px auto 0 auto;
}
.about__contents {
  margin: auto;
  width: 100%;
  background-color: #FFF9F2;
  border-radius: 30px;
  border: 1px solid #A5B68D;
  box-shadow: 1px 1px 5px #A5B68D;
}
.about__image {
  width: 100%;
  height: auto;
  border-radius: 30px 30px 0 0;
  display: block;
}
.about__gallery {
  width: 100%;
  margin: auto;
  display: grid;
  gap: 1rem;
  margin-top: 30px;
  margin-bottom: 30px;
}
.about__gallery-img {
  width: 100%;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #A5B68D;
  display: block;
}
.about__text-paragraph {
  padding: 0 20px 0 20px;
  font-family: "Advent Pro", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .about__contents {
    display: flex;
    width: 80%;
    padding: 20px;
  }
  .about__image {
    border-radius: 10px 10px 10px 10px;
  }
  .about__text-paragraph {
    margin-top: 0;
    font-size: 17px;
  }
  .about__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .about__gallery-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.childcare {
  display: grid;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
}
@media screen and (min-width: 1000px) {
  .childcare {
    position: relative;
  }
}
.childcare__title {
  font-family: "Amatic SC", sans-serif;
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px;
  color: #3F4F0B;
}
.childcare__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #3F4F0B;
  margin: 5px auto 0 auto;
}
.childcare__item {
  margin: auto;
  width: 100%;
  background-color: #FFF9F2;
  border-radius: 30px;
  border: 1px solid #A5B68D;
  box-shadow: 1px 1px 5px #A5B68D;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .childcare__item {
    flex-direction: row;
    width: 70vw;
    height: 30vh;
  }
  .childcare__item:nth-child(odd) {
    transform: translateX(-100px);
  }
  .childcare__item:nth-child(even) {
    transform: translateX(100px);
  }
}
.childcare__image {
  width: 100%;
  height: 100%;
  padding: 10px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 30px;
}
@media screen and (min-width: 1000px) {
  .childcare__image {
    width: 100%;
  }
}
.childcare__text {
  padding: 0 20px 20px 20px;
  font-family: "Advent Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (min-width: 1000px) {
  .childcare__text {
    font-size: 22px;
    padding-top: 20px;
    display: flex;
    align-self: center;
  }
  .childcare__text p {
    margin: 0;
  }
}
.childcare__contents {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 1000px) {
  .childcare__contents {
    gap: 2rem;
  }
}
.childcare__pricing {
  width: 100%;
  margin: 20px 0;
  background-color: #FFF9F2;
  border-radius: 10px;
  border: 1px solid #A5B68D;
  padding: 20px;
}
@media screen and (min-width: 1000px) {
  .childcare__pricing {
    width: 50vw;
    margin: 50px auto 50px;
    padding-left: 30px;
  }
}
.childcare__pricing-title {
  text-align: center;
  font-size: 24px;
  margin: 0 0 20px 0;
  color: #3F4F0B;
}
.childcare__pricing-items {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr;
}
.childcare__pricing-header, .childcare__pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  font-size: 14px;
}
.childcare__pricing-header {
  color: #3F4F0B;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}
.childcare__pricing-note {
  margin: 0;
  font-size: 14px;
}
.childcare__pricing-notes {
  font-weight: 400;
  margin-top: 20px;
}
.childcare__pricing-row {
  font-weight: 500;
}
.childcare__gallery {
  width: 100%;
  margin: auto;
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 1000px) {
  .childcare__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 90vw;
    margin-bottom: 50px;
  }
}
.childcare__gallery-img {
  width: 100%;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #A5B68D;
  display: block;
}
@media screen and (min-width: 1000px) {
  .childcare__gallery-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1000px) {
  .childcare__photo {
    flex: 0 0 30%;
    max-width: 300px;
    min-width: 150px;
  }
}
.childcare__icon {
  display: none;
}
@media screen and (min-width: 1000px) {
  .childcare__icon {
    display: inline-block;
    width: 50px;
    position: absolute;
  }
}
.childcare__icon-boy {
  right: 200px;
  top: 20px;
}
.childcare__icon-girl {
  left: 100px;
  top: 500px;
}

.petcare {
  display: grid;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
}
@media screen and (min-width: 1000px) {
  .petcare {
    position: relative;
  }
}
.petcare__title {
  font-family: "Amatic SC", sans-serif;
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px;
  color: #3F4F0B;
}
.petcare__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #3F4F0B;
  margin: 5px auto 0 auto;
}
.petcare__item {
  margin: auto;
  width: 100%;
  background-color: #FFF9F2;
  border-radius: 30px;
  border: 1px solid #A5B68D;
  box-shadow: 1px 1px 5px #A5B68D;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .petcare__item {
    flex-direction: row;
    width: 70vw;
    height: 30vh;
  }
  .petcare__item:nth-child(odd) {
    transform: translateX(-100px);
  }
  .petcare__item:nth-child(even) {
    transform: translateX(100px);
  }
}
.petcare__image {
  width: 100%;
  height: 100%;
  padding: 10px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 30px;
}
@media screen and (min-width: 1000px) {
  .petcare__image {
    width: 100%;
  }
}
.petcare__text {
  padding: 0 20px 20px 20px;
  font-family: "Advent Pro", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (min-width: 1000px) {
  .petcare__text {
    font-size: 22px;
    padding-top: 20px;
    display: flex;
    align-self: center;
  }
  .petcare__text p {
    margin: 0;
  }
}
.petcare__contents {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 1000px) {
  .petcare__contents {
    gap: 2rem;
  }
}
.petcare__pricing {
  width: 100%;
  margin: 20px 0;
  background-color: #FFF9F2;
  border-radius: 10px;
  border: 1px solid #A5B68D;
  padding: 20px;
}
@media screen and (min-width: 1000px) {
  .petcare__pricing {
    width: 50vw;
    margin: 50px auto 50px;
    padding-left: 30px;
  }
}
.petcare__pricing-title {
  text-align: center;
  font-size: 24px;
  margin: 0 0 20px 0;
  color: #3F4F0B;
}
.petcare__pricing-items {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr;
}
.petcare__pricing-header, .petcare__pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  font-size: 14px;
}
.petcare__pricing-header {
  color: #3F4F0B;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}
.petcare__pricing-note {
  margin: 0;
  font-size: 14px;
}
.petcare__pricing-notes {
  font-weight: 400;
  margin-top: 20px;
}
.petcare__pricing-row {
  font-weight: 500;
}
.petcare__gallery {
  width: 100%;
  margin: auto;
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 1000px) {
  .petcare__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 90vw;
    margin-bottom: 50px;
  }
}
.petcare__gallery-img {
  width: 100%;
  border-radius: 10px 10px 10px 10px;
  border: 1px solid #A5B68D;
  display: block;
}
@media screen and (min-width: 1000px) {
  .petcare__gallery-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1000px) {
  .petcare__photo {
    flex: 0 0 30%;
    max-width: 300px;
    min-width: 150px;
  }
}
.petcare__icon {
  display: none;
}
@media screen and (min-width: 1000px) {
  .petcare__icon {
    display: inline-block;
    width: 70px;
    position: absolute;
  }
}
.petcare__icon-cat {
  right: 200px;
  top: 30px;
}
.petcare__icon-sheep {
  left: 100px;
  top: 500px;
}

html {
  box-sizing: border-box;
}

*, ::after, ::before {
  box-sizing: inherit;
}

body {
  color: #493323;
  background-color: #ECDFCC;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
}