/* CSS Bổ sung  */
:root {
  --pet-primary: #3fa3db; /* Màu quan trọng nhất */
  --pet-secondary: #ff4379;
  --pet-warning: #f6b519;
  --pet-success: #bad020;
  --pet-danger: #ff4356;
  --pet-purple: #a883ea;
  --pet-teal: #72ceb6;
  --pet-orange: #f67a37;
}
/* Màu chữ */
.pet-text-primary {
  color: #3fa3db;
}
.pet-text-secondary {
  color: #ff4379;
}
.pet-text-warning {
  color: #f6b519;
}
.pet-text-success {
  color: #bad020;
}
.pet-text-danger {
  color: #ff4356;
}
.pet-text-purple {
  color: #a883ea;
}
.pet-text-teal {
  color: #72ceb6;
}
.pet-text-orange {
  color: #f67a37;
}

/* Màu nền */
.pet-bg-primary {
  background-color: #3fa3db;
}
.pet-bg-secondary {
  background-color: #ff4379;
}
.pet-bg-warning {
  background-color: #f6b519;
}
.pet-bg-success {
  background-color: #bad020;
}
.pet-bg-danger {
  background-color: #ff4356;
}
.pet-bg-purple {
  background-color: #a883ea;
}
.pet-bg-teal {
  background-color: #72ceb6;
}
.pet-bg-orange {
  background-color: #f67a37;
}
/* Kích thước mặc định cho desktop */
h1,
.h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #000;
}

h2,
.h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #000;
  line-height: 50px;
}

h3,
.h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
}

h4,
.h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

h5,
.h5 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
}

h6,
.h6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  h1,
  .h1 {
    font-size: 3.8rem;
    line-height: 60px;
  }
  h2,
  .h2 {
    font-size: 3rem;
    line-height: 40px;
  }
  h3,
  .h3 {
    font-size: 2.5rem;
  }
  h4,
  .h4 {
    font-size: 2rem;
  }
  h5,
  .h5 {
    font-size: 1.7rem;
  }
  h6,
  .h6 {
    font-size: 1.4rem;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 3rem;
    line-height: 50px;
  }
  h2,
  .h2 {
    font-size: 2.5rem;
    line-height: 30px;
  }
  h3,
  .h3 {
    font-size: 2rem;
  }
  h4,
  .h4 {
    font-size: 1.8rem;
  }
  h5,
  .h5 {
    font-size: 1.5rem;
  }
  h6,
  .h6 {
    font-size: 1.3rem;
  }
}

/* Mobile nhỏ (≤ 480px) */
@media (max-width: 480px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
  h2,
  .h2 {
    font-size: 2rem;
  }
  h3,
  .h3 {
    font-size: 1.8rem;
  }
  h4,
  .h4 {
    font-size: 1.6rem;
  }
  h5,
  .h5 {
    font-size: 1.4rem;
  }
  h6,
  .h6 {
    font-size: 1.2rem;
  }
}

p,
span {
  color: #000000;
}
/* Button  */
.p-btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .p-btn {
    display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
}

/* Mobile (Dưới 768px) */
@media (max-width: 768px) {
  .p-btn {
    display: inline-block;
    padding: 0.3rem 1rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
}
.p-btn-primary {
  background-color: var(--pet-primary);
  color: #fff;
}
.p-btn-secondary {
  background-color: var(--pet-secondary);
  color: #fff;
}
.p-btn-warning {
  background-color: var(--pet-warning);
  color: #fff;
}
.p-btn-success {
  background-color: var(--pet-success);
  color: #fff;
}
.p-btn-danger {
  background-color: var(--pet-danger);
  color: #fff;
}
.p-btn-purple {
  background-color: var(--pet-purple);
  color: #fff;
}
.p-btn-teal {
  background-color: var(--pet-teal);
  color: #fff;
}

.p-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  color: #ffffff;
}

.p-btn-primary:hover {
  background-color: #2c7fab;
}
.p-btn-secondary:hover {
  background-color: #c02c59;
}
.p-btn-warning:hover {
  background-color: #c28f0e;
}
.p-btn-success:hover {
  background-color: #7d8d16;
}
.p-btn-danger:hover {
  background-color: #b9273d;
}
.p-btn-purple:hover {
  background-color: #7a50b9;
}
.p-btn-teal:hover {
  background-color: #479c82;
}
.p-btn-group {
  display: inline-block;
  align-items: center;
  /* overflow: hidden; */
  position: relative;
}
.btn-gr-banner {
  background: rgba(210, 210, 210, 0.25);
  border-radius: 50px;
}
/* .p-btn-group a {
  flex: 1;
} */

/* width */
::-webkit-scrollbar {
  width: 7px;
  height: 5px;
  position: absolute;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(158, 158, 158, 0);
  border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(158, 158, 158, 0.1);
}

.header__logo {
  max-width: 200px;
}

@media (max-width: 767px) {
  .header__logo {
    max-width: 150px;
  }

  .key-logo-gr {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #034833;
  }

  .key-logo-gr img {
    max-width: 50px;
  }

  .key-logo-gr h2 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
  }

  .key-logo-gr .key-sup-title {
    font-size: 0.8rem;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-text {
  cursor: text;
}

.f-10 {
  font-size: 10px !important;
}

.f-12 {
  font-size: 12px !important;
}

.f-14 {
  font-size: 14px !important;
}

.f-16 {
  font-size: 16px !important;
}

.f-18 {
  font-size: 18px !important;
}

.f-20 {
  font-size: 20px !important;
}

.f-24 {
  font-size: 24px !important;
}

.f-28 {
  font-size: 28px !important;
}
.f-30 {
  font-size: 30px !important;
}
.gap {
  display: block;
  position: relative;
}
.gap-10 {
  padding-top: 10px !important;
}

.gap-20 {
  padding-top: 20px !important;
}

.gap-30 {
  padding-top: 30px !important;
}
.gap-40 {
  padding-top: 40px !important;
}
.gap-50 {
  padding-top: 50px !important;
}
.gap-70 {
  padding-top: 70px !important;
}
.gap-100 {
  padding-top: 100px !important;
}

.section-wrap {
  padding: 50px 0;
  position: relative;
  /* overflow: hidden; */
}

.section-wrap-70 {
  padding: 70px 0;
}

.section-wrap-100 {
  padding: 100px 0;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-menu a {
  display: block;
  padding: 0px 15px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  border: 1px solid rgb(255, 255, 255);
  font-size: 1.5rem;
  color: #fff;
  font-style: normal;
  font-weight: 400;
}

.footer-menu a:hover {
  color: #fff;
  background: #034833;
}
.key_social-media > ul > li {
  list-style: none;
  display: inline-block;
  margin: 0 8px 0 0;
  font-size: 14px;
}
.key_social-media > ul > li:last-child {
  margin: 0;
}
.key_social-media .key_social-item img {
  width: 30px;
}

.img-cover {
  position: relative;
  height: auto;
  overflow: hidden;
  padding-top: 100%;
  background-position: 50% 50%;
  background-size: cover;
  transition: background 0.3s ease;
}
.img-hover-effect {
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

.img-hover-effect:hover {
  filter: none;
}
.img-hover-sacale {
  transition: transform 0.3s ease-in-out;
}

.img-hover-sacale:hover {
  transform: scale(1.05); /* Phóng to nhẹ khi hover */
}
.col-inner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1 0 auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.img-cover.cover-1x2 {
  padding-top: 50%;
}

.img-cover.cover-4x3 {
  padding-top: 75%;
}

.img-cover.cover-16x9 {
  padding-top: 56.25%;
}

.img-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-cover.cover-350 {
  padding-top: 350px;
}

.img-cover.cover-400 {
  padding-top: 400px;
}

.banner-main {
  position: relative;
  overflow: hidden;
}

.banner-main .banner-fill {
  position: relative;
  overflow: hidden;
  padding-top: 865px;
  z-index: 0;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .banner-main .banner-fill {
    padding-top: 800px;
  }
}

/* Mobile (Dưới 768px) */
@media (max-width: 768px) {
  .banner-main .banner-fill {
    padding-top: 650px;
  }
}
.banner-main .bg-fill {
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 20px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.banner-fill img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.clamp-1 {
  line-height: 1.3333333 !important;
  margin-bottom: 0.3rem;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-2 {
  line-height: 1.33333333 !important;
  margin-bottom: 0.3rem;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-3 {
  line-height: 1.33333333 !important;
  margin-bottom: 0.3rem;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rounded-10 {
  border-radius: 10px !important;
}

.rounded-20 {
  border-radius: 20px !important;
}

.rounded-30 {
  border-radius: 30px !important;
}

@media (max-width: 767px) {
  .news-vertical-media,
  .news-vertical-content {
    flex: 0 0 100%;
  }
}

.bg-filter {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(7.5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.bg-filter-modal {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(7.5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.bg-section {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.overlay-section {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(20, 92, 14, 0.821);
}

.box-shade {
  position: relative;
  overflow: hidden;
}

.box-shade .img-cover {
  border-radius: 30px;
}

.box-shade .box-shade-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  padding: 1.5em;
  background: #fff;
  border-radius: 20px;
}

.btn-play {
  width: 100%;
  height: 100%;
  z-index: 99;
}

.btn-play .icon {
  position: absolute;
  width: 100px;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  background: rgba(14, 128, 23, 0.5);
  padding: 20px;
  border-radius: 50%;
  transition: all 0.3s;
}

.box-shade .btn-play .icon {
  top: 30%;
}

.box-shade:hover .overlay-add {
  opacity: 0.9;
}
.btn-play:hover .overlay-remove {
  opacity: 0;
}
.box-item-bg {
  background: #fff;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 20px;
}

.media:hover .btn-play .icon {
  background: rgba(108, 163, 18, 0.5);
}

.media:hover img {
  transform: scale(1.2);
}

.media.scale-none:hover img {
  transform: none;
}

.overlay-remove {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(228, 255, 177, 0.3) 5%,
    rgb(111 197 42 / 57%) 100%
  );
  opacity: 0.9;
  transition: all 0.3s;
}

.overlay-remove:hover {
  opacity: 0;
}

.overlay-add {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 5%,
    rgba(92, 49, 14, 0.821) 100%
  );
  opacity: 0;
  transition: all 0.3s;
}

.overlay-add:hover {
  opacity: 0.9;
}

.btn-style a {
  background: var(--rr-theme-primary);
  font-family: var(--rr-ff-heading);
  color: var(--rr-common-white);
  font-weight: var(--rr-fw-sbold);
  line-height: var(--rr-lh-h5);
  border: 1px solid var(--rr-common-white);
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
  padding: 15px 30px;
  gap: 10px;
  font-size: 14px;
  font-style: normal;
}

.btn-style a:hover {
  background: var(--rr-heading-primary);
  color: var(--rr-common-white);
  border-color: var(--rr-heading-primary);
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-inner a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(52, 92, 14, 0.5);
  opacity: 0;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.gallery-inner:hover a {
  opacity: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.countdown p {
  color: #fff;
}

.countdown .countdown-title {
  color: #fff;
  font-size: 50px;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .countdown .countdown-title {
    color: #fff;
    font-size: 30px;
  }
}

.btn-vr img {
  max-width: 70px;
}

.add-opacity-hover {
  opacity: 1;
  transition: all 0.5s;
}

.add-opacity-hover:hover {
  opacity: 0.6;
}
.remove-opacity-hover {
  opacity: 0.6;
  transition: all 0.5s;
}

.remove-opacity-hover:hover {
  opacity: 1;
}

.shake img {
  transition: all 0.3s;
}

.shake:hover img {
  animation: shake 0.5s;
}

.sidebar__widget-countdown .countdown-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
}

.sidebar__widget-countdown p {
  font-size: 14px;
  color: #fff;
}

.rating {
  display: inline-block;
  color: #ddd;
}
.rating input {
  display: none;
}
.rating label {
  display: inline;
  cursor: pointer;
  position: relative;
}
.rating label i {
  font-size: 1.5rem;
  margin-right: 5px;
}
.rating:hover label {
  color: #ffc107;
}
.rating:hover,
.rating__control:nth-of-type(1):checked ~ .rating__item:nth-of-type(1),
.rating__control:nth-of-type(2):checked ~ .rating__item:nth-of-type(-n + 2),
.rating__control:nth-of-type(3):checked ~ .rating__item:nth-of-type(-n + 3),
.rating__control:nth-of-type(4):checked ~ .rating__item:nth-of-type(-n + 4),
.rating__control:nth-of-type(5):checked ~ .rating__item:nth-of-type(-n + 5) {
  color: #ffc107;
}

.rating__item:hover ~ .rating__item {
  color: #ddd;
}
.blog-details__wrapper-comment .nav-underline {
  border-bottom: 1px solid #ffffff;
}
.blog-details__wrapper-comment ul li .nav-link {
  color: #034833;
  margin-right: 20px;
}
.blog-details__wrapper-comment ul li .nav-link.active {
  color: #034833;
}
.comment-item {
  padding: 20px 10px 20px 0;
}
.avatar-comment {
  margin: 0 12px 0 0;
  float: left;
  width: 36px;
  height: 36px;
  background: #e5e5e5;
  line-height: 36px;
  text-align: center;
  color: #949494 !important;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px !important;
  font-family: arial;
  border-radius: 50%;
  position: relative;
}
.content-comment {
  padding: 0 0 0 48px;
  margin-top: 0;
}
.blog-details__wrapper p.full-comment {
  color: #4f4f4f;
}
.like_item:hover,
.like_control:checked ~ .like_item {
  color: #83cd20;
}
.hover-text:hover {
  color: #83cd20;
}

/* tool footer */
.tool {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 170px;
  color: #1a1a1a;
  width: 48px;
}
.tool-list-contain {
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease 0s;
}

.tool-list-contain.show {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.tool-list-contain .tool-list-item {
  min-width: 3rem;
  display: table;
  margin-right: auto;
  cursor: pointer;
  font-size: 1rem;
  background-color: #0074bb;
  padding-right: 30px;
  transition: all 0.5s ease 0s;
  margin-bottom: 1px;
  border-radius: 10px 0 0 10px;
}
.tool-list-contain .tool-list-item.facebook {
  background: #3b5998;
}
.tool-list-contain .tool-list-item.zalo {
  background: #0a68fe;
}
.tool-list-contain .tool-list-item.youtube {
  background: #cd201f;
}
.tool-list-contain .tool-list-item.telegram {
  background: #34b0ee;
}
.tool-list-contain .tool-list-item.whatsapp {
  background: #25d366;
}
.tool-list-contain .tool-list-item.tiktok {
  background: #000000;
}
.tool-list-contain .tool-list-item:hover {
  transform: translateX(0);
  transform: translateX(calc(-100% + 3rem + 24px));
}
.tool-list-contain .tool-list-item .item-contain {
  height: 48px;
  display: flex;
  align-items: center;
}
.tool-list-contain .tool-list-item .item-contain .item-image {
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
}
.tool-list-contain .tool-list-item .item-contain .item-image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}
.tool-list-contain .tool-list-item .item-contain .item-title {
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  white-space: nowrap;
}
.tool-list-contain .tool-list-item:hover .item-contain .item-title {
  color: #fff;
}
.tool-list-contain .tool-list-item a {
  display: flex;
  align-items: center;
}

/* PET CLINIC  */
.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 30px;
}
.main-menu ul li > a {
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
}
.main-menu ul li.active > a {
  color: var(--pet-danger) !important;
}
.section-banner-content {
  padding: 200px 0;
  padding-top: 250px;
}
/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .section-banner-content {
    padding-top: 200px;
    padding-bottom: 50px;
  }
}

/* Mobile (Dưới 768px) */
@media (max-width: 768px) {
  .section-banner-content {
    padding-top: 300px;
    padding-bottom: 50px;
  }
}
.p-header {
  background-color: rgb(255, 255, 255, 0) !important;
}
.p-header.rs-sticky {
  box-shadow: none;
}
.header2__bg {
  background-color: rgb(255, 255, 255, 0);
}
.rs-sticky .header2__bg {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(7.5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.p-header ul li a {
  color: #ffffff;
}

.p-header ul li:hover a {
  color: #000000;
}
.rs-sticky ul li a {
  color: #000000;
}

.rs-sticky ul li:hover a {
  color: var(--pet-secondary);
}
.main-feature {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -150px;
  padding: 25px 0;
}
.main-feature .main-feature-item {
  position: relative;
  padding: 10px;
  transition: all 0.8s;
}
.main-feature .main-feature-item .main-feature-img {
  transition: scale 0.5s;
}

.main-feature .main-feature-item .main-feature-img img {
  position: relative;
  width: 230px;
  height: 180px;
  border-radius: 20px;
  transform: scale(0.95) perspective(1000px) rotateY(-18deg) rotateX(4deg)
    rotate(0deg);
  object-fit: cover;
}
.main-feature .main-feature-item .main-feature-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--pet-primary);
  border-radius: 20px;
  transform: scale(0.95) perspective(1000px) rotateY(-18deg) rotateX(4deg)
    rotate(0deg);
  z-index: 1;
}

.main-feature .main-feature-item .main-feature-img-1::before {
  border: 1px solid var(--pet-success);
  transform: scale(0.95) perspective(1000px) rotateY(-20deg) rotateX(10deg)
    rotate(5deg);
}
.main-feature .main-feature-item .main-feature-img-2::before {
  border: 1px solid var(--pet-primary);
  transform: scale(1) perspective(1000px) rotateY(20deg) rotateX(-20deg)
    rotate(3deg);
}
.main-feature .main-feature-item .main-feature-img-3::before {
  border: 1px solid var(--pet-secondary);
  transform: scale(1) perspective(1000px) rotateY(-20deg) rotateX(10deg)
    rotate(5deg);
}
.main-feature .main-feature-item .main-feature-img-4::before {
  border: 1px solid var(--pet-purple);
  transform: scale(1) perspective(1000px) rotateY(10deg) rotateX(20deg)
    rotate(3deg);
}
.main-feature .main-feature-item .main-feature-img-5::before {
  border: 1px solid var(--pet-teal);
  transform: scale(1) perspective(1000px) rotateY(0deg) rotateX(20deg)
    rotate(3deg);
}

.main-feature .main-feature-item .main-feature-img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: all 0.8s;
  opacity: 1;
}
.main-feature .main-feature-item .main-feature-img-1::after {
  background: #c5de22;
  z-index: 0;
}
.main-feature .main-feature-item .main-feature-img-2::after {
  background: #3ba7e5;
  z-index: 0;
}
.main-feature .main-feature-item .main-feature-img-3::after {
  background: #e23647;
  z-index: 0;
}
.main-feature .main-feature-item .main-feature-img-4::after {
  background: #9e72eb;
  z-index: 0;
}
.main-feature .main-feature-item .main-feature-img-5::after {
  background: #69cfb4;
  z-index: 0;
}
.main-feature .main-feature-item .main-feature-img-1 img,
.main-feature .main-feature-item .main-feature-img-1::after {
  transform: scale(0.95) perspective(1000px) rotateY(-20deg) rotateX(25deg)
    rotate(-3deg);
}
.main-feature .main-feature-item .main-feature-img-2 img,
.main-feature .main-feature-item .main-feature-img-2::after {
  transform: scale(0.95) perspective(1000px) rotateY(18deg) rotateX(-10deg)
    rotate(-3deg);
}
.main-feature .main-feature-item .main-feature-img-3 img,
.main-feature .main-feature-item .main-feature-img-3::after {
  transform: scale(0.95) perspective(1000px) rotateY(10deg) rotateX(25deg)
    rotate(0deg);
}
.main-feature .main-feature-item .main-feature-img-4 img,
.main-feature .main-feature-item .main-feature-img-4::after {
  transform: scale(0.95) perspective(1000px) rotateY(-20deg) rotateX(20deg)
    rotate(-3deg);
}
.main-feature .main-feature-item .main-feature-img-5 img,
.main-feature .main-feature-item .main-feature-img-5::after {
  transform: scale(0.95) perspective(1000px) rotateY(-18deg) rotateX(10deg)
    rotate(-5deg);
}
.main-feature .main-feature-item p {
  position: absolute;
  bottom: 10px;
  left: 30px;
  color: #fff;
  z-index: 2;
  font-weight: 700;
  font-size: 1.8rem;
}
/* Hover  */
.main-feature .main-feature-item .main-feature-img:hover:before {
  z-index: 0;
  transition: all 0.8s;
}
.main-feature .main-feature-item .main-feature-img-1:hover:after {
  background: rgb(186, 208, 32);
  background: linear-gradient(
    180deg,
    rgba(186, 208, 32, 0) 40%,
    rgba(186, 208, 32, 1) 100%
  );
  z-index: 1;
}
.main-feature .main-feature-item .main-feature-img-2:hover:after {
  background: rgb(63, 163, 219);
  background: linear-gradient(
    180deg,
    rgba(63, 163, 219, 0) 40%,
    rgba(63, 163, 219, 1) 100%
  );
  z-index: 0;
}
.main-feature .main-feature-item .main-feature-img-3:hover:after {
  background: rgb(243, 137, 118);
  background: linear-gradient(
    180deg,
    rgba(243, 137, 118, 0) 40%,
    rgba(243, 137, 118, 1) 100%
  );
  z-index: 0;
}
.main-feature .main-feature-item .main-feature-img-4:hover:after {
  background: rgb(168, 131, 234);
  background: linear-gradient(
    180deg,
    rgba(168, 131, 234, 0) 40%,
    rgba(168, 131, 234, 1) 100%
  );
  z-index: 0;
}
.main-feature .main-feature-item .main-feature-img-5:hover:after {
  background: rgb(114, 206, 182);
  background: linear-gradient(
    180deg,
    rgba(114, 206, 182, 0) 40%,
    rgba(114, 206, 182, 1) 100%
  );
  z-index: 0;
}
.main-feature .main-feature-item .main-feature-img:hover {
  scale: 1.2;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .main-feature {
    margin-top: 0;
    overflow: scroll;
  }
  .main-feature .main-feature-item .main-feature-img-1:after {
    background: rgb(186, 208, 32);
    background: linear-gradient(
      180deg,
      rgba(186, 208, 32, 0) 40%,
      rgba(186, 208, 32, 1) 100%
    );
    z-index: 1;
  }
  .main-feature .main-feature-item .main-feature-img-2:after {
    background: rgb(63, 163, 219);
    background: linear-gradient(
      180deg,
      rgba(63, 163, 219, 0) 40%,
      rgba(63, 163, 219, 1) 100%
    );
    z-index: 0;
  }
  .main-feature .main-feature-item .main-feature-img-3:after {
    background: rgb(243, 137, 118);
    background: linear-gradient(
      180deg,
      rgba(243, 137, 118, 0) 40%,
      rgba(243, 137, 118, 1) 100%
    );
    z-index: 0;
  }
  .main-feature .main-feature-item .main-feature-img-4:after {
    background: rgb(168, 131, 234);
    background: linear-gradient(
      180deg,
      rgba(168, 131, 234, 0) 40%,
      rgba(168, 131, 234, 1) 100%
    );
    z-index: 0;
  }
  .main-feature .main-feature-item .main-feature-img-5:after {
    background: rgb(114, 206, 182);
    background: linear-gradient(
      180deg,
      rgba(114, 206, 182, 0) 40%,
      rgba(114, 206, 182, 1) 100%
    );
    z-index: 0;
  }
  .main-feature .main-feature-item .main-feature-img img {
    position: relative;
    width: 200px;
    height: 180px;
  }
}

/* Mobile (Dưới 768px) */
@media (max-width: 768px) {
  .main-feature {
    margin-top: 0;
    overflow: scroll;
  }

  .main-feature .main-feature-item .main-feature-img-1:after {
    background: rgb(186, 208, 32);
    background: linear-gradient(
      180deg,
      rgba(186, 208, 32, 0) 40%,
      rgba(186, 208, 32, 1) 100%
    );
    z-index: 1;
  }
  .main-feature .main-feature-item .main-feature-img-2:after {
    background: rgb(63, 163, 219);
    background: linear-gradient(
      180deg,
      rgba(63, 163, 219, 0) 40%,
      rgba(63, 163, 219, 1) 100%
    );
    z-index: 0;
  }
  .main-feature .main-feature-item .main-feature-img-3:after {
    background: rgb(243, 137, 118);
    background: linear-gradient(
      180deg,
      rgba(243, 137, 118, 0) 40%,
      rgba(243, 137, 118, 1) 100%
    );
    z-index: 0;
  }
  .main-feature .main-feature-item .main-feature-img-4:after {
    background: rgb(168, 131, 234);
    background: linear-gradient(
      180deg,
      rgba(168, 131, 234, 0) 40%,
      rgba(168, 131, 234, 1) 100%
    );
    z-index: 0;
  }
  .main-feature .main-feature-item .main-feature-img-5:after {
    background: rgb(114, 206, 182);
    background: linear-gradient(
      180deg,
      rgba(114, 206, 182, 0) 40%,
      rgba(114, 206, 182, 1) 100%
    );
    z-index: 0;
  }
}
.p-icon-box.p-icon-left {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0px;
}
.p-icon-box.p-icon-left .p-box-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pet-teal);
  border-radius: 50%;
  transition: 0.3s;
  padding: 20px;
  flex: 0 0 100px;
}
.p-icon-box.hover-icon:hover img {
  animation: shake 0.5s;
}
.banner-about {
  position: relative;
  display: flex;
}
.banner-about .circle {
  display: inline-block;
  position: absolute;
  width: 200px;
  height: 200px;
  background: #fe697b;
  border-radius: 50%;
}
.banner-about .circle-1 {
  right: 100px;
  top: 30px;
}
.banner-about .circle-2 {
  width: 220px;
  height: 220px;
  left: 50px;
  top: 100px;
}
.banner-about .circle-3 {
  width: 250px;
  height: 250px;
  left: -40px;
  bottom: 120px;
}
.banner-about .circle-4 {
  width: 360px;
  height: 360px;
  right: 50px;
  bottom: 90px;
}

.box-style {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  padding-bottom: 50px;
  border-radius: 20px;
  position: relative;
}
.box-style .box-style-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex: 0 0 40%;
}
.box-style .box-style-icon img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
}

.p-icon-box-default {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  position: relative;
}
.p-icon-box-default .p-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex: 0 0 10%;
}
.hover-icon:hover img {
  animation: shake 0.5s;
}
.banner-anima {
  position: relative;
}
.banner-anima .group-icon img {
  position: absolute;
  width: 63px;
  height: auto;
}
.banner-anima .group-icon img:nth-child(1) {
  top: 7%;
  left: 0;
}
.banner-anima .group-icon img:nth-child(2) {
  top: 15%;
  left: 20%;
}
.banner-anima .group-icon img:nth-child(3) {
  top: 17%;
  left: 42%;
}
.banner-anima .group-icon img:nth-child(4) {
  top: 30%;
  left: 20%;
}
.banner-anima .group-icon img:nth-child(5) {
  top: 40%;
  left: 0%;
}
.banner-anima .group-icon img:nth-child(6) {
  top: 39%;
  left: 17%;
}
.banner-anima .group-icon img:nth-child(7) {
  top: 45%;
  left: 30%;
}
.banner-anima .group-icon img:nth-child(8) {
  top: 60%;
  left: 20%;
}
.p-gallery .gallery-img img {
  border-radius: 18px;
  margin-bottom: 20px;
}
.testimonial__content-2-text p {
  font-size: 18px;
}
.section-title2__button a {
  background: var(--pet-primary);
}
.bg-footer {
  background-color: #0476b6;
}
.footer__link ul li a {
  font-size: 15px;
}
.footer__link ul li a:hover,
.footer__link ul li a i,
.footer__copyright-menu ul li a:hover {
  color: var(--pet-warning);
}
.footer__border-bottom,
.footer__bottom-wrapper {
  border-color: #ffffff;
}
.contact-btn {
  background: var(--pet-orange);
}
.contact-btn:hover {
  background: #cd6329;
}
.contact-us__form-wrapper {
  background: #f7fcff;
}
