.btn {
  display: flex;
  flex-direction: column;
  max-width: max-content;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background-color: var(--yellow);
  font-family: var(--font-montserrat);
  padding: 0 30px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 100px;
  border: unset;
  transition: all 0.3s ease-in-out;
  height: 60px;
}
.btn-primary:hover {
  background-color: var(--dark-blue);
}

.global-banner {
  display: flex;
  flex-direction: column;
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.global-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3b4559b0;
  z-index: 0;
}
.global-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 372px;
  padding: 30px 40px;
  justify-content: center;
  align-items: center;
}
.global-banner__title {
  color: white;
  font-size: 50px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  text-align: center;
}

/*===== RESPONSIVE - GLOBAL =====*/
@media screen and (max-width: 992px) {
  .global-banner .container {
    height: 168px;
  }
  .global-banner__title {
    font-size: 40px;
  }
  .btn-primary {
    height: 50px;
  }
}

/*===== HOMEPAGE =====*/
.hero-h {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-h .container {
  display: flex;
  flex-direction: row;
  padding-top: 70px;
  padding-bottom: 50px;
}
.hero-h .hero-h__content {
  display: flex;
  flex-direction: column;
  width: 42%;
  padding-right: 30px;
  justify-content: center;
}
.hero-h .hero-h__title {
  font-size: 60px;
  font-weight: 700;
  color: #0f327b;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-h .hero-h__subtitle {
  font-size: 18px;
  color: #3a4559;
  font-family: var(--font-montserrat);
  margin-top: 10px;
  margin-bottom: 30px;
}
.hero-h .hero-h__btn {
  width: 250px;
  max-width: 250px;
}
.hero-h .hero-h__wrap-slider {
  display: flex;
  flex-direction: column;
  width: 58%;
}
.hero-h .hero-h__item {
  display: flex;
  flex-direction: column;
}
.hero-h .hero-h__item__wrap-img {
  display: flex;
  flex-direction: column;
}
.hero-h .hero-h__item__img {
  object-fit: contain;
}

.hero-h .splide__arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
}
.hero-h .splide__arrow {
  border: unset;
  background-color: transparent;
  cursor: pointer;
}
.hero-h .splide__arrow svg {
  width: 24px;
  height: 24px;
  fill: #bdbdbd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-h .splide .splide__arrow.splide__arrow--prev {
  rotate: 180deg;
  position: relative;
  left: -5%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.hero-h .splide .splide__arrow.splide__arrow--next {
  position: relative;
  right: -5%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.hero-h .splide:hover .splide__arrow.splide__arrow--prev {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.hero-h .splide:hover .splide__arrow.splide__arrow--next {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.hero-h .hero-h__wrap-slider {
}

.intro-h {
  display: flex;
  flex-direction: column;
  background-color: #25334c;
  overflow: hidden;
}
.intro-h .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 100px;
}

.intro-h .container svg {
  width: 100px;
  fill: #6cbadf;
}
.intro-h .intro-h__title {
  text-align: center;
  color: #25334c;
  font-size: 50px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}
.intro-h .intro-h__desc {
  text-align: center;
  color: white;
  font-size: 18px;
  font-weight: 300;
}

.about-h {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-h .about-h__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}

.about-h .about-h__wrap-img {
  padding: 180px 0 0 0;
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.about-h .about-h__img {
  border-radius: 30px;
  object-fit: cover;
  aspect-ratio: 540/690;
}
.about-h .about-h__content {
  padding: 120px 50px 120px 80px;
  width: 60%;
}
.about-h__title {
  font-size: 50px;
  color: #24334c;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-h__wrap-value {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}
.about-h__value {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.about-h__value .about-h__value__icon {
  display: flex;
  flex-direction: column;
}
.about-h__value .about-h__value__icon img {
  max-width: 70px;
  height: auto;
  object-fit: contain;
}
.about-h__value__title {
  font-size: 24px;
  color: #24334c;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-montserrat);
}
.about-h__value__desc {
  font-size: 18px;
  color: #24334c;
  font-weight: 300;
}
.about-h__wrap-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
}
.about-h__cta {
  height: 50px;
}

.clinic-h {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  overflow: hidden;
}
.clinic-h .clinic-h__wrap-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.clinic-h .clinic-h__title {
  font-size: 50px;
  color: #24334c;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.clinic-h .clinic-h__wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.clinic-h .clinic-h__card {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 379/300;
  text-align: center;
  text-decoration: none;
  color: white;
}
.clinic-h .clinic-h__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #24334c90;
  z-index: 1;
}
.clinic-h .clinic-h__card img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  z-index: 0;
  transition: all 0.3s ease;
}
.clinic-h .clinic-h__card:hover img {
  scale: 110%;
}
.clinic-h .clinic-h__card .clinic-h__card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.testi-h {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  overflow: hidden;
}
.testi-h__title {
  font-size: 50px;
  color: #24334c;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.testi-h__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
.testi-h__card {
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  flex-wrap: wrap;
  width: 49.5%;
  gap: 20px;
  background-color: #3a4459;
  padding: 50px 60px 50px 60px;
  border-radius: 30px;
}
.testi-h__card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.testi-h__card .testi-h__card__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  font-size: 24px;
  height: 100px;
}
.testi-h__card .testi-h__card__name svg {
  fill: #eeb626;
  width: 33px;
  height: 49px;
  position: absolute;
  bottom: 0rem;
  right: -2rem;
}
.testi-h__card .svg-bone-md {
  display: none;
}
.testi-h__card .testi-h__card__desc {
  font-size: 18px;
  color: white;
  margin-top: 10px;
  font-weight: 300;
}
.testi-h__card .testi-h__card__desc strong {
  font-weight: 500;
}

.testi-h__wrap-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
}
.testi-h__cta {
  height: 50px;
  width: 280px;
  max-width: 280px;
}

.vete-h {
  display: flex;
  flex-direction: column;
  background-color: #fff7e9;
  position: relative;
  overflow: hidden;
}
.vete-h .container {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  align-items: center;
}
.vete-h .vete-h__title {
  font-size: 50px;
  font-family: var(--font-montserrat);
  font-weight: bold;
  color: #24334c;
  text-align: center;
  margin-bottom: 20px;
}

.vete-h .vete-h__wrap-slider {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 775px;
  position: relative;
  z-index: 2;
}

.vete-h__slider .vete-h__item {
  background-color: #3f3d3a;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
}

.vete-h__slider .vete-h__item .vete-h__item__wrap {
  display: flex;
  flex-direction: column;
  padding: 50px;
  gap: 20px;
}
.vete-h__slider .vete-h__item .vete-h__item__link {
  font-size: 24px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-montserrat);
}
.vete-h__slider .vete-h__item .vete-h__item__desc {
  font-size: 18px;
  color: white;
}
.vete-h__slider .vete-h__item .vete-h__item__cta {
  font-size: 18px;
  color: #eeb626;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
  text-decoration: none;
  font-weight: 500;
}

.vete-h .vete-h__decor-cat {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
}
.vete-h .vete-h__decor-dog {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
}
.vete-h .vete-h__decor-cat img,
.vete-h .vete-h__decor-dog img {
  width: 303px;
  object-fit: contain;
}
.vete-h .vete-h__decor-cat svg {
  width: 79px;
  height: 57px;
  fill: #f99a99;
  position: absolute;
  left: 0;
  bottom: 0;
}

.vete-h .vete-h__decor-dog svg {
  width: 79px;
  height: 57px;
  fill: #efb626;
  position: absolute;
  right: 0;
  bottom: 0;
}

.vete-h .splide__arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
}
.vete-h .splide__arrow {
  border: unset;
  background-color: transparent;
  cursor: pointer;
}
.vete-h .splide__arrow svg {
  width: 24px;
  height: 24px;
  fill: #bdbdbd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vete-h .splide .splide__arrow.splide__arrow--prev {
  rotate: 180deg;
  position: relative;
  left: -5%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.vete-h .splide .splide__arrow.splide__arrow--next {
  position: relative;
  right: -5%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.vete-h .splide:hover .splide__arrow.splide__arrow--prev {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.vete-h .splide:hover .splide__arrow.splide__arrow--next {
  opacity: 1;
  visibility: visible;
  right: 0;
}

/*===== RESPONSIVE - HOMEPAGE =====*/

@media screen and (max-width: 992px) {
  .hero-h .container {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero-h .hero-h__content {
    padding-right: unset;
    align-items: center;
  }
  .hero-h .hero-h__title {
    font-size: 36px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .hero-h .hero-h__subtitle {
    font-size: 16px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .hero-h .hero-h__content,
  .hero-h .hero-h__wrap-slider {
    width: 100%;
  }
  .hero-h .hero-h__item__wrap-img {
    padding: 0 30px;
  }
  .hero-h .hero-h__item__img {
    width: 100%;
    object-fit: contain;
    height: 100%;
  }

  .hero-h .splide .splide__arrow.splide__arrow--prev {
    rotate: 180deg;
    position: relative;
    left: 0%;
    opacity: 1;
    visibility: visible;
    transition: all 0.2s ease;
  }
  .hero-h .splide .splide__arrow.splide__arrow--next {
    position: relative;
    right: 0%;
    opacity: 1;
    visibility: visible;
    transition: all 0.2s ease;
  }
  .hero-h .splide:hover .splide__arrow.splide__arrow--prev {
    opacity: 1;
    visibility: visible;
    left: 0;
  }
  .hero-h .splide:hover .splide__arrow.splide__arrow--next {
    opacity: 1;
    visibility: visible;
    right: 0;
  }

  .intro-h .container {
    padding-bottom: 70px;
  }
  .intro-h .intro-h__title {
    font-size: 40px;
  }
  .intro-h .intro-h__desc {
    font-size: 16px;
  }

  .about-h .about-h__wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  .about-h .about-h__wrap-img {
    padding: 1rem 1rem;
    align-items: center;
    width: 100%;
  }
  .about-h .about-h__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 350/444;
  }
  .about-h .about-h__content {
    padding: 2rem 1rem;
    width: 100%;
  }

  .about-h__title {
    font-size: 36px;
  }

  .about-h__value {
    flex-direction: column;
    align-items: center;
  }
  .about-h__value__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-h__value .about-h__value__icon img {
    max-width: 42px;
  }
  .about-h__value__title {
    font-size: 24px;
    text-align: center;
  }
  .about-h__value__desc {
    font-size: 16px;
    text-align: center;
  }
  .about-h__wrap-cta {
    margin-top: 20px;
    width: 100%;
  }
  .about-h__cta {
    width: 80%;
    max-width: 80%;
  }

  .clinic-h .clinic-h__wrapper {
    flex-direction: column;
  }
  .clinic-h .clinic-h__title {
    font-size: 40px;
  }
  .clinic-h .clinic-h__card {
    width: 100%;
    aspect-ratio: 1/1;
  }

  .testi-h__title {
    font-size: 40px;
  }
  .testi-h__list {
    flex-direction: column;
    row-gap: 20px;
  }
  .testi-h__card {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    border-radius: 0 0 20px 20px;
    background-color: #25334c;
  }
  .testi-h__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 0;
  }
  .testi-h__card .testi-h__card__name {
    padding: 0 20px;
    text-align: center;
    font-size: 24px;
    order: 1;
    height: max-content;
    margin-bottom: 40px;
  }
  .testi-h__card .testi-h__card__name svg {
    display: none;
  }
  .testi-h__card .svg-bone-md {
    display: flex;
    fill: #eeb626;
    width: 90px;
    height: 67px;
    margin-top: 20px;
  }
  .testi-h__card .testi-h__card__desc {
    padding: 0px 30px 0px 30px;
    font-size: 16px;
    text-align: center;
  }

  .vete-h .container {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .vete-h .vete-h__decor-cat {
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .vete-h .vete-h__decor-cat svg {
    width: 73px;
    left: -5rem;
    top: 50%;
    bottom: 0%;
    transform: translateY(-50%);
  }
  .vete-h .vete-h__decor-dog {
    top: unset;
    bottom: 2rem;
    left: 64%;
    transform: translateX(-50%);
  }
  .vete-h .vete-h__decor-dog svg {
    width: 73px;
    left: -5rem;
    top: 50%;
    bottom: 0%;
    transform: translateY(-50%);
  }
  .vete-h .vete-h__decor-cat img,
  .vete-h .vete-h__decor-dog img {
    max-width: 140px;
  }
  .vete-h .vete-h__title {
    font-size: 40px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .vete-h__wrap-slider {
    width: 100%;
    max-width: 100%;
  }

  .vete-h .splide .splide__arrow.splide__arrow--prev {
    left: 0%;
    opacity: 1;
    visibility: visible;
  }
  .vete-h .splide .splide__arrow.splide__arrow--next {
    right: 0%;
    opacity: 1;
    visibility: visible;
  }
  .vete-h__slider .vete-h__item .vete-h__item__wrap {
    padding: 30px 40px;
  }
  .vete-h__slider .vete-h__item .vete-h__item__desc {
    font-size: 16px;
  }
}

/*===== END HOMEPAGE =====*/

/*===== ABOUT US =====*/
.ab-intro {
  display: flex;
  flex-direction: column;
}
.ab-intro .container {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 100px;
}
.ab-intro .ab-intro__wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.ab-intro__left {
  display: flex;
  flex-direction: column;
  width: 45%;
  padding-right: 40px;
}
.ab-intro__title {
  font-size: 50px;
  color: #24334c;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: end;
}
.ab-intro__img {
  width: 100%;
  object-fit: contain;
}
.ab-intro__right {
  display: flex;
  flex-direction: column;
  width: 55%;
}
.ab-intro__text {
  font-size: 18px;
  color: #363636;
}
.ab-intro__text strong,
.ab-intro__text b {
  font-weight: 600;
}
.ab-intro__text a {
  color: #4a6bae;
}
.ab-team {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ab-team__title {
  font-size: 50px;
  color: #24334c;
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}
.ab-team__vets {
  background-color: #e1e3ea;
  padding-top: 40px;
  padding-bottom: 70px;
}
.ab-team__vets__list {
  display: flex;
  flex-direction: row;
}
.ab-team__vets__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.ab-team__vets__card {
  width: 19%;
  display: flex;
  flex-direction: column;
  background-color: white;
  align-items: center;
}

.ab-team__vets__wrap-img {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  aspect-ratio: 216/413;
  overflow: hidden;
}
.ab-team__vets__wrap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.2s;
}
.ab-team__vets__card:hover .ab-team__vets__wrap-img img {
  scale: 110%;
}
.ab-team__vets__name {
  font-size: 18px;
  color: #24334c;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 30px;
}
.ab-team__vets__btn {
  width: 140px;
  max-width: 140px;
  padding: 5px;
  height: 38px;
  font-size: 14px;
  margin-bottom: 30px;
}

.vets-popup {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.2s;
}
.vets-popup .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.vets-popup__wrapper {
  display: flex;
  flex-direction: row;
  position: relative;
  background-color: white;
  width: calc(100% - 2rem);
  max-width: 900px;
  min-height: 70vh;
  height: auto;
  max-height: 90vh;
  scale: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.2s;
}

.vets-popup.show-detail {
  opacity: 1;
  visibility: visible;
}
.vets-popup.show-detail .vets-popup__wrapper {
  scale: 100%;
  opacity: 1;
  visibility: visible;
}
.vets-popup__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  max-width: max-content;
}
.vets-popup__wrap-img {
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  overflow: hidden;
  padding: 5rem 3rem;
}
.vets-popup__wrap-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.vets-popup__content {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 50px 30px;
  width: 50%;
}

.vets-popup__name {
  font-size: 18px;
  color: #24334c;
  font-weight: 700;
  font-family: var(--font-montserrat);
  margin-bottom: 30px;
}
.vets-popup__desc {
  font-size: 18px;
  color: #363636;
  font-weight: 300;
  overflow: scroll;
}

.ab-team__nurse {
  display: flex;
  flex-direction: column;
  background-color: #e1e3ea;
  padding-top: 20px;
  padding-bottom: 100px;
  overflow: hidden;
}

.ab-team__slider__item {
  overflow: hidden;
  height: auto;
  aspect-ratio: 382/450;
}
.ab-team__slider__img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.2s;
}
.ab-team__slider__wrap-name {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.3s;
}
.ab-team__slider__name {
  color: white;
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 600;
}
.ab-team__slider__item:hover .ab-team__slider__wrap-name {
  opacity: 1;
  visibility: visible;
}
.ab-team__slider .splide__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 1;
}
.ab-team__slider .splide__arrow {
  background-color: unset;
  border: unset;
  cursor: pointer;
}
.ab-team__slider .splide__arrow svg path {
  fill: white;
}
.ab-team .splide__pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 10px;
}
.ab-team .splide__pagination__page {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #00000033;
  opacity: 0.5;
  border: unset;
  cursor: pointer;
}
.ab-team .splide__pagination__page.is-active {
  background-color: white;
}

.ab-team__vets__wrap-toggle {
  display: none;
}

/*===== RESPONSIVE - ABOUT US =====*/
@media screen and (max-width: 992px) {
  .ab-team__vets__wrap-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }
  .ab-intro .container {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .ab-intro .ab-intro__wrapper {
    flex-direction: column;
  }
  .ab-intro__left,
  .ab-intro__right {
    width: 100%;
    padding-right: unset;
  }
  .ab-intro__title {
    text-align: center;
    font-size: 40px;
  }
  .ab-intro__text {
    font-size: 16px;
    margin-top: 20px;
  }
  .ab-team__title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .ab-team__vets {
    padding-bottom: 30px;
  }
  .ab-team__vets__list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding: 0 40px;
  }
  .ab-team__vets__card {
    width: 100%;
  }
  .ab-team__vets__wrap-img {
    aspect-ratio: 1/1;
  }
  .ab-team__vets__name {
    font-size: 24px;
    margin: 30px 0 20px 0;
  }
  .ab-team__vets__btn {
    font-size: 16px;
    height: 40px;
    width: 90%;
    max-width: 90%;
  }
  .vets-popup__wrapper {
    flex-direction: column;
  }
  .vets-popup__close {
    top: 1rem;
    right: 1rem;
  }
  .vets-popup__wrap-img {
    width: 100%;
    aspect-ratio: 4/3;
    padding: 40px 20px 20px 20px;
  }
  .vets-popup__wrap-img img {
    height: 100%;
    aspect-ratio: unset;
  }
  .vets-popup__content {
    padding: 0px 20px 30px 20px;
    width: 100%;
    height: 50%;
  }
  .vets-popup__name {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .vets-popup__desc {
    font-size: 16px;
  }
}
/*===== END ABOUT US =====*/

/*===== TESTIMONIALS =====*/
.testim {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 100px 0;
}
.testim__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.testim__title {
  font-size: 50px;
  color: #24334c;
  font-family: var(--font-montserrat);
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.testim__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 20px;
  margin-bottom: 50px;
}
.testim__card {
  width: 40%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: #3a4459;
  overflow: hidden;
}
.testim__card:nth-child(4n - 1) {
  margin-left: auto;
}
.testim__card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 50/37;
  object-fit: cover;
  margin-bottom: 20px;
}
.testim__card__text {
  color: white;
  padding: 30px;
  font-size: 18px;
}
.testim__card__text strong,
.testim__card__text b {
  font-weight: 600;
}
.testim__card__bone {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testim__card__bone svg {
  width: 45px;
  height: 60px;
  fill: #eeb626;
  margin-left: 30%;
}
.testim__card__name {
  font-size: 24px;
  color: white;
  padding: 30px 30px 40px 30px;
}
/*===== RESPONSIVE - TESTIMONIALS =====*/
@media screen and (max-width: 992px) {
  .testim {
    margin: 30px 0 50px;
  }
  .testim__title {
    font-size: 40px;
    width: 100%;
  }
  .testim__card {
    width: 100%;
  }
  .testim__card__text {
    font-size: 16px;
    padding-bottom: 5px;
  }
  .testim__card__bone svg {
    margin-left: 0;
  }
  .testim__card__name {
    padding-top: 5px;
    text-align: center;
  }
  .testim__card:nth-child(4n - 1) {
    margin-left: unset;
  }
}
/*===== END TESTIMONIALS =====*/

/*===== SERVICE TEMPLATE =====*/
.service {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  padding: 100px 80px;
}
.service__banner .container .service__banner__title {
  color: #24334c;
}
.service__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service__wrapper .service__left,
.service__wrapper .service__right {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.service__wrapper .service__left {
  padding-right: 30px;
}
.service__wrapper .service__right {
  padding-left: 30px;
}

.service__wrapper .service__wrap-img {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin-bottom: 50px;
}
.service__wrapper .service__wrap-img img {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  object-fit: cover;
}

.service__wrapper .service__title {
  font-size: 50px;
  font-family: var(--font-montserrat);
  font-weight: bold;
  color: #24334c;
  margin-bottom: 20px;
  text-align: right;
}
.service__wrapper .service__title.service__title-full {
  text-align: center;
  width: 100%;
}

.service__two-cl {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.service__two-cl .container {
  display: flex;
  flex-direction: column;
}
.service__two-cl__wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 30px;
}
.service__two-cl__wrap-img {
  display: flex;
  width: 50%;
  flex-direction: column;
  padding-right: 30px;
}
.service__two-cl__content {
  display: flex;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  padding: 30px 30px 0 30px;
}
.service__two-cl__title {
  font-size: 24px;
  color: #363636;
  margin-bottom: 30px;
}
.service__two-cl__desc {
  font-size: 18px;
  color: #363636;
}

.service__two-cl__wrap-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service__wrapper .service__desc,
.service__wrapper .service__desc p {
  font-size: 18px;
  font-family: var(--font-muli);
  color: #363636;
}

.service__video {
  max-width: 100%;
  height: auto;
}

.service__wrap-slider {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.service__item__wrap-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 53/50;
  overflow: hidden;
}
.service__item__img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.service__slider .splide__arrows {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 100%;
}
.service__slider .splide__arrow {
  border: unset;
  background-color: transparent;
  cursor: pointer;
}
.service__slider .splide__arrow svg {
  width: 24px;
  height: 24px;
  fill: #bdbdbd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service__slider .splide__arrow.splide__arrow--prev {
  rotate: 180deg;
  position: relative;
  left: -5%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.service__slider .splide__arrow.splide__arrow--next {
  position: relative;
  right: -5%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
.service__slider:hover .splide__arrow.splide__arrow--prev {
  opacity: 1;
  visibility: visible;
  left: 0;
}
.service__slider:hover .splide__arrow.splide__arrow--next {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.service__additional {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 50px;
}
.service__additional .container {
  display: flex;
  flex-direction: column;
}
.service__additional .container p,
.service__additional .container > * {
  font-family: var(--font-muli);
  font-size: 18px;
  color: #363636;
}
.service__additional .container a {
  color: #4a6bae;
}
.service__additional .service__group-img {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.service__additional .service__group-img img {
  width: 32%;
}
.service__type2 .service__type2__item__wrap-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 63/36;
  overflow: hidden;
}
.service__type2 .service__type2__item__img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.service__type2 .splide__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  z-index: 1;
}
.service__type2 .splide__arrow {
  background-color: unset;
  border: unset;
  cursor: pointer;
}
.service__type2 .splide__arrow svg path {
  fill: white;
}

/*===== RESPONSIVE - SERVICE TEMPLATE =====*/
@media screen and (max-width: 992px) {
  .service#service-detail {
    padding: 30px 20px;
  }
  .service__wrapper {
    flex-direction: column;
  }
  .service__wrapper .service__title {
    text-align: center;
    font-size: 40px;
  }
  .service__wrapper .service__left,
  .service__wrapper .service__right {
    width: 100%;
    padding: unset;
  }
  .service__wrap-slider {
    margin-bottom: 30px;
  }
  .service__wrapper .service__wrap-img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
  }
  .service__wrapper .service__desc,
  .service__wrapper .service__desc p {
    font-size: 16px;
  }

  .service__two-cl .container {
    padding: unset;
  }
  .service__two-cl__wrapper {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .service__two-cl__wrap-img {
    width: 100%;
    padding: unset;
  }
  .service__two-cl__content {
    width: 100%;
    padding: unset;
  }
  .service__two-cl__title {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 15px;
  }
  .service__two-cl__desc {
    font-size: 16px;
  }

  .service__slider .splide__arrow.splide__arrow--prev {
    left: 0%;
    opacity: 1;
    visibility: visible;
  }
  .service__slider .splide__arrow.splide__arrow--next {
    right: 0%;
    opacity: 1;
    visibility: visible;
  }
  .service__additional .container {
    padding: unset;
  }
  .service__additional .service__group-img {
    flex-direction: column;
    row-gap: 20px;
  }
  .service__additional .service__group-img img {
    width: 100%;
  }
}

/*===== END SERVICE TEMPLATE =====*/

/*===== CONTACT US =====*/
.contact__form {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
}
.contact__form .container {
  display: flex;
  flex-direction: column;
  padding: 100px 80px;
}
.contact__form .container .contact__form__title {
  font-size: 50px;
  font-family: var(--font-montserrat);
  font-weight: bold;
  color: #24334c;
  text-align: center;
}
.contact__form .container .contact__form__desc {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  color: #363636;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 40px;
}
.fluentform > * {
  font-family: var(--font-muli);
}
.fluentform .ff-el-input--content .ff-el-form-control {
  border-radius: 0;
  background-color: #f2f2f2;
  border: 1px solid #d7d7d7;
  padding: 10px;
  font-size: 16px;
  color: #363636;
  font-family: var(--font-muli);
}
.fluentform .ff-el-input--content .ff-el-form-control option {
  color: #363636;
}

.fluentform .ff-el-input--content .ff-el-form-control:focus {
  background-color: #f2f2f2;
}
.fluentform
  .ff-el-input--content
  .ff-el-form-control[type="number"]::-webkit-outer-spin-button,
.fluentform
  .ff-el-input--content
  .ff-el-form-control[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.fluentform .ff-el-group.ff-custom_html {
  font-family: var(--font-muli);
  font-weight: 300;
  color: #363636;
  font-size: 18px;
  font-style: italic;
}

.ff_submit_btn_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fluentform .ff-btn-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background-color: var(--yellow) !important;
  font-family: var(--font-montserrat);
  padding: 0 30px !important;
  color: white;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 100px !important;
  border: unset;
  transition: all 0.3s ease-in-out;
  height: 50px;
  width: 280px !important;
  max-width: 280px !important;
}
.fluentform .ff-btn-submit:hover {
  background-color: var(--navy) !important;
}

.contact__form .contact__form__pp-wrap {
  width: 44%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form .contact__form__pp {
  font-style: italic;
  font-size: 14px;
  text-align: center;
  color: #4a6bae;
}
.contact__form .contact__form__hint {
  font-style: italic;
  font-size: 14px;
  text-align: center;
  color: #363636;
}

.contact__loc {
  display: flex;
  flex-direction: column;
}
.contact__loc .container {
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  padding-bottom: 80px;
}
.contact__loc .contact__loc__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact__loc .contact__loc__title {
  font-size: 50px;
  font-family: var(--font-montserrat);
  font-weight: 600;
}
.contact__loc .contact__loc__desc {
  font-size: 18px;
  color: #363636;

  text-align: center;
}

.contact__loc .contact__loc__list {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  gap: 60px;
}
.contact__loc .contact__loc__list .contact__loc__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.contact__loc .contact__loc__list .contact__loc__item:nth-child(even) {
  flex-direction: row-reverse;
}
.contact__loc .contact__loc__list .contact__loc__wrap-map {
  display: flex;
  flex-direction: column;
}
.contact__loc .contact__loc__list .contact__loc__wrap-map iframe {
  width: 637px;
  height: 358px;
}
.contact__loc .contact__loc__list .contact__loc__detail {
  display: flex;
  flex-direction: column;
}
.contact__loc .contact__loc__list .contact__loc__detail__title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-montserrat);
  color: #363636;
  text-align: center;
}
.contact__loc .contact__loc__list .contact__loc__detail__desc {
  font-size: 18px;
  color: #363636;
  margin-bottom: 20px;
  text-align: center;
}

.contact__loc__detail__phone {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  align-items: center;
  column-gap: 30px;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.contact__loc__detail__phone .contact__loc__detail__phone-text {
  color: black;
  font-weight: 700;
  font-size: 18px;
}

.contact__loc__detail__opening-hours-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.contact__loc__detail__hint {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

/*===== RESPONSIVE - CONTACT US =====*/
@media screen and (max-width: 992px) {
  .contact__form .container {
    padding-top: 40px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .contact__form .container .contact__form__title {
    font-size: 40px;
  }
  .contact__form .container .contact__form__desc {
    font-size: 16px;
    width: 100%;
  }
  .fluentform .ff-el-group.ff-custom_html {
    font-size: 16px;
  }
  .contact__form .contact__form__pp-wrap {
    width: 100%;
  }

  .contact__loc {
    display: none;
  }
}

/*===== VETERINARY =====*/
.vete-lp {
  display: flex;
  flex-direction: column;
  background-color: #fff5e9;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.vete-lp .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vete-lp .vete-lp__title {
  font-size: 50px;
  color: #24334c;
  margin-bottom: 50px;
}
.vete-lp .vete-lp__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.vete-lp .vete-lp__card {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vete-lp .vete-lp__card .vete-lp__card__wrap-thumb {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 38/23;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vete-lp .vete-lp__card .vete-lp__card__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.vete-lp .vete-lp__card:hover .vete-lp__card__thumbnail {
  scale: 110%;
  transition: all 0.3s ease-in-out;
}

.vete-lp .vete-lp__card .vete-lp__card__title a {
  font-size: 23px;
  color: #24334c;
  text-decoration: none;
  font-weight: 600;
}
.vete-lp .vete-lp__card .vete-lp__card__text {
  font-size: 15px;
  color: #747474;
}
.vete-lp .vete-lp__card .vete-lp__card__btn {
  font-size: 18px;
  color: #363636;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
}

.vete-lp__btn-load {
  margin-top: 30px;
  width: 290px;
  max-width: 290px;
  height: 50px;
}

/*===== RESPONSIVE - VETERINARY =====*/
@media screen and (max-width: 992px) {
  .vete-lp {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .vete-lp .vete-lp__title {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .vete-lp .vete-lp__list {
    gap: 0;
  }
  .vete-lp .vete-lp__card {
    width: 100%;
    margin-bottom: 50px;
  }
  .vete-lp .vete-lp__card .vete-lp__card__title a {
    font-size: 20px;
  }
  .vete-lp .vete-lp__card .vete-lp__card__text {
    font-size: 14px;
  }
  .vete-lp .vete-lp__card .vete-lp__card__btn {
    font-size: 16px;
  }
  .vete-lp__btn-load {
    margin-top: 0px;
  }
}
/*===== END VETERINARY =====*/

/*===== SINGLE POST =====*/
.sg-post__banner::before {
  background-color: #00000038;
}
.sg-post__banner .container .sg-post__title {
  font-size: 38px;
}

.sg-post__meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-muli);
  font-size: 15px;
  color: #fff;
}
.sg-post__meta a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}
.sg-post__meta a:hover {
  text-decoration: underline;
}
.sg-post__meta-sep {
  opacity: 0.6;
}

.sg-post__content {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0 30px;
}
.sg-post__content h2 {
  font-size: 30px;
  margin: 8px 0;
}
.sg-post__content h3 {
  font-size: 26px;
}
.sg-post__content h4 {
  font-size: 22px;
}
.sg-post__content h5 {
  font-size: 20px;
}
.sg-post__content p,
.sg-post__content ul,
.sg-post__content ol,
.sg-post__content li {
  font-size: 18px;
  font-family: var(--font-muli);
  font-weight: 300;
  color: #363636;
}
.sg-post__content a {
  color: #4a6bae;
}
.sg-post__content strong,
.sg-post__content b {
  font-weight: 700;
}

.sg-post__wrap-btn {
  padding: 0 30px;
  margin: 40px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}

.sg-post__share {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 0 30px;
  margin-bottom: 80px;
}
.sg-post__share__btn {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #eeb626;
  transition: all 0.3s ease-in-out;
}
.sg-post__share__btn:hover {
  scale: 105%;
}
.sg-post__share__btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.share__twitter svg {
  width: 18px;
  height: 18px;
}

.share__linkedin svg {
  width: 18px;
  height: 18px;
}

.share__email svg {
  width: 16px;
  height: 16px;
}
.share__whatsapp svg {
  width: 26px;
  height: 26px;
}

.sg-post__related {
  display: flex;
  flex-direction: column;
  background-color: #3a4459;
}
.sg-post__related .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 100px;
}
.sg-post__related__card {
  width: 48%;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  background-color: white;
  padding: 40px 30px;
}
.sg-post__related__card .sg-post__related__post {
  display: flex;
  flex-direction: column;
}
.sg-post__related__card .sg-post__related__post a {
  text-decoration: none;
  font-size: 24px;
  color: #363636;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.sg-post__related__card .sg-post__related__desc {
  font-size: 18px;
  color: #363636;
}
.sg-post__related__card .sg-post__related__btn {
  text-decoration: none;
  font-size: 18px;
  color: #363636;
}

/*===== RESPONSIVE - SINGLE POST =====*/
@media screen and (max-width: 992px) {
  .sg-post__banner .container .sg-post__title {
    font-size: 24px;
  }
  .sg-post__content {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .sg-post__content p,
  .sg-post__content ul,
  .sg-post__content ol,
  .sg-post__content li {
    font-size: 16px;
  }

  .sg-post__content h2 {
    font-size: 28px;
  }
  .sg-post__content h3 {
    font-size: 24px;
  }
  .sg-post__content h4 {
    font-size: 20px;
  }
  .sg-post__content h5 {
    font-size: 18px;
  }
  .sg-post__wrap-btn {
    padding: 0;
  }
  .sg-post__share {
    padding: 0;
    justify-content: center;
    margin-bottom: 40px;
  }
  .sg-post__related .container {
    flex-direction: column;
    row-gap: 40px;
    padding: 50px 40px;
  }
  .sg-post__related__card {
    width: 100%;
    padding: 25px;
  }
  .sg-post__related__card .sg-post__related__post a {
    font-size: 20px;
  }
  .sg-post__related__card .sg-post__related__desc {
    font-size: 14px;
  }
  .sg-post__related__card .sg-post__related__btn {
    font-size: 16px;
  }
}
/*===== END SINGLE POST =====*/

/*===== ERROR PAGE =====*/
.error-page {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.error-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0 50px;
  gap: 20px;
}
.error-page__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.error-page__title {
  font-size: 130px;
  font-family: var(--font-muli);
  font-weight: 400;
  display: flex;
  flex-direction: row;
  position: relative;
  gap: 20px;
  color: #363636;
}
.error-page__title span {
  rotate: 15deg;
}
.error-page__desc {
  font-size: 22px;
  font-family: var(--font-muli);
  font-weight: 400;
  color: #363636;
  text-align: center;
  width: 20rem;
  margin: 0 auto;
}
.error-page__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  height: 30px;
  width: 200px;
  padding: 10px 0;
  border-radius: 5px;
  background-color: #898989;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease-in-out;
}
/*===== RESPONSIVE - ERROR PAGE =====*/
/*===== END ERROR PAGE =====*/
