/*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/purplegoat/style.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************/
.services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.feature {
  border: 1px solid #a8a8a8;
  padding: 15px;
  border-radius: 20px;
  font-family: sans-serif;
}

.feature h3 {
  color: #e0401f;
}

.feature p {
  font-size: 0.8;
  line-height: 1.5;
}

.our-pets {
  display: grid;
  grid-template-columns: 140px 1fr;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 2pc 2px 3px rgba(0, 0, 0, 0.08);
  transition: background-color 0.5s ease-in-out;
}

.our-pets:hover {
  background-color: rgb(206, 241, 191);
}

.our-pets:hover .our-pet-photo img {
  transform: scale(1.3) rotate(10deg);
}

.our-pet-photo {
  overflow: hidden;
  position: relative;
}

.our-pet-photo img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.our-pet-text {
  padding: 20px;
}

.our-pet-text h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  fon-weight: bold;
}

.our-pet-text p {
  font-size: 0.9rem;
}

.our-pet-text a {
  color: rgb(38, 48, 189);
  text-decoration: none;
}

.our-pet-text a:hover {
  text-decoration: underline;
  color: rgb(219, 14, 14);
}

.pet-cards {
  background-color: rgb(180, 183, 211);
  padding: 60px 20px;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}

.pet-cards-inner {
  max-width: 960px;
  margin: 0 auto;
}

.pet-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.our-hero-text {
  margin: 0 0 20px 0;
  color: #FFF;
  font-weight: bold;
  font-size: 4.2rem;
  text-shadow: 4px 4px 0 rgba(38, 48, 189, 0.5);
}

/*# sourceMappingURL=style-index.css.map*/