:root {
  --petro-primary: #C29774;
}

.font-color-petro-primary {
  color: var(--petro-primary);
}

.font-color-gray-100 {
  color: #161616;
}

.font-color-gray-90 {
  color: #373737;
}

.font-color-gray-80 {
  color: #585858;
}

.font-color-gray-70 {
  color: #797979;
}

.font-color-gray-60 {
  color: #9A9A9A;
}

.font-color-gray-60 {
  color: #9A9A9A;
}

.font-color-gray-50 {
  color: #BBBBBB;
}

.font-color-gray-40 {
  color: #DCDCDC;
}

.font-color-gray-30 {
  color: #FDFDFD;
}

.font-color-brown-100 {
  color: #E5A262;
}

.font-color-brown-90 {
  color: #EEC196;
}

.font-color-brown-80 {
  color: #F2D0B0;
}

.font-color-brown-70 {
  color: #F6DFCA;
}

.font-color-brown-60 {
  color: #FBEFE4;
}

.font-color-green-100 {
  color: #1D7239;
}

.font-color-green-60 {
  color: #89AF91;
}

.font-color-green-20 {
  color: #CED8B6;
}

.font-color-satin-sheen-gold {
  /* color: #C99B2C; */
  color: var(--petro-primary);
}

.font-color-khaki-100 {
  color: #7A8249;
}

.font-color-khaki-60 {
  color: #BAC183;
}

.font-color-khaki-20 {
  color: #E4E8C1;
}

.font-color-mule-fawn-100 {
  color: #87492F;
}

.font-color-mule-fawn-60 {
  color: #F0DFC5;
}

.font-color-mule-fawn-20 {
  color: #F6F0DD;
}

.btn-lg {
  padding-top: 12px;
  padding-bottom: 12px;
}

.btn-primary {
  background-color: #C29774;
  border-color: #C29774;
  border-radius: 12px;
}

.btn-primary:hover {
  background-color: #EEC196;
  border-color: #EEC196;
}

.btn-primary:active {
  background-color: #EEC196;
  border-color: #EEC196;
}

.btn-primary:focus {
  background-color: #EEC196;
  border-color: #EEC196;
}

.btn-outline-primary {
  border-color: #C99B2C;
  color: #E5A262;
}

.btn-outline-primary:hover {
  background-color: #EEC196;
  border-color: #EEC196;
}

.btn-outline-primary:active {
  background-color: #EEC196;
  border-color: #EEC196;
}

.btn-outline-primary:focus {
  background-color: #EEC196;
  border-color: #EEC196;
  color: #fff;
}

body {
  font-family: 'Poppins', sans-serif;
}

.main-wrapper {
  min-height: 100vh;
  height: 100%;
  position: relative;
  z-index: 200;
}

.vanilla-calendar_default .vanilla-calendar-week__day {
  color: #E5A262;
}

.vanilla-calendar_default .vanilla-calendar-day_weekend {
  color: #EEC196;
}

.vanilla-calendar_default .vanilla-calendar-day_today {
  color: #fff;
  background-color: #E5A262;
}

.vanilla-calendar_default .vanilla-calendar-day_selected {
  color: #E5A262;
  background-color: #F6F0DD;
}

.vanilla-calendar_default .vanilla-calendar-month {
  color: #373737;
}

.vanilla-calendar_default .vanilla-calendar-year {
  color: #373737;
}

.vanilla-calendar_default .vanilla-calendar-day_disabled {
  color: #d6d6d6;
}

.header {
  box-shadow: 0px 6px 19px -5px #DCDCDC;
  -webkit-box-shadow: 0px 6px 19px -5px #DCDCDC;
  -moz-box-shadow: 0px 6px 19px -5px #DCDCDC;
}

.header__logo img {
  width: 200px;
}

.header__menuItems {
  margin: 0 -14px;
}

.header__menuItems li a {
  color: #373737;
  font-size: 1rem;
}

.header__menuItems li a.btn.header__button__register {
  color: #F6F0DD;
  font-size: 1rem;
}

.header__menuItems li a.btn.header__button__register:hover {
  color: #FFF;
}

.header__menuItems li a:hover {
  color: #E5A262;
}

.header__menuItems li a.nav-link {
  padding: 6px 14px;
}

.header__menuItems li a.nav-link.active {
  color: #E5A262;
  background-color: white;
}

.header__button__register {
  background-color: var(--petro-primary);
  color: #fff;
  margin: 0 14px;
  border-radius: 12px;
}

.header__button__register:active {
  color: #fff;
}

.header__button__register:hover {
  color: #fff;
}

.header__button__login {
  border-color: #C99B2C;
  color: #C99B2C;
  border-radius: 12px;
}

.header__button__login:active {
  border-color: #C99B2C;
  color: #C99B2C;
  background-color: transparent;
}

.header__button__login:hover {
  border-color: #C99B2C;
  color: #C99B2C;
  background-color: transparent;
}

.header__hambergerMenu {
  cursor: pointer;
}

.header__hambergerMenu span {
  width: 32px;
  height: 3px;
  background-color: #373737;
}

.header__hambergerMenu span:nth-child(2) {
  width: 20px;
}

.header__mobileMenu {
  height: 100vh;
  top: 0;
  width: 260px;
  background-color: #fff;
  z-index: 2000;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.header__mobileMenu-bd {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.171);
  z-index: 1000;
}

.header__mobileMenu.show {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.header__mobileMenu .list-group .list-group-item-action {
  color: #373737;
  border-radius: 0;
  border-color: transparent;
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}

.header__mobileMenu .list-group .list-group-item-action.active {
  background-color: #EEC196;
  border-color: #EEC196;
  color: #fff;
}

.footer {
  background-color: #C29774;
}

.footer .label {
  font-size: 17px;
  color: #F0DFC5;
}

.footer ul {
  list-style: none;
  padding-left: 8px;
  margin: 0 -10px;
}

.footer__left {
  width: 300px;
}

@media (max-width: 992px) {
  .footer__left {
    width: 100%;
  }
}

.footer__left span {
  color: #F0DFC5;
  font-size: 14px;
}

.footer__left-socialMedia ul li {
  padding: 0 10px;
}

.footer__left-socialMedia ul li button {
  padding: 0;
  border: none;
  background-color: transparent;
}

.footer__center {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 992px) {
  .footer__center {
    width: 100%;
  }
}

.footer__center li {
  margin-bottom: 12px;
}

.footer__center li a {
  cursor: pointer;
  font-size: 15px;
}

.footer__center li a:hover {
  color: #F6F0DD;
}

.footer__right {
  width: 300px;
}

@media (max-width: 992px) {
  .footer__right {
    width: 100%;
  }
}

.hero {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (max-width: 992px) {
  .hero {
    padding-top: 3rem;
  }
}

.hero__left {
  padding-right: 7rem;
}

@media (max-width: 992px) {
  .hero__left {
    padding-right: 0;
  }
}

.hero__left__h1 {
  font-size: 64px;
}

@media (max-width: 768px) {
  .hero__left__h1 {
    font-size: 55px;
  }
}

@media (max-width: 576px) {
  .hero__left__h1 {
    font-size: 48px;
  }
}

.hero__left__span {
  font-size: 22px;
}

@media (max-width: 992px) {
  .hero__right {
    margin-top: 4rem;
  }
}

.hero__filter {
  z-index: 100;
  max-width: 1151px;
  border-radius: 100px;
  box-shadow: 0px 6px 19px -5px #DCDCDC;
  -webkit-box-shadow: 0px 6px 19px -5px #DCDCDC;
  -moz-box-shadow: 0px 6px 19px -5px #DCDCDC;
  background-color: #fff;
}

@media (max-width: 1200px) {
  .hero__filter {
    border-radius: 20px;
  }
}

@media (max-width: 1200px) {
  .hero__filter {
    max-width: 1000px;
  }
}

.hero__filter__form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 1200px) {
  .hero__filter__form {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero__filter__form {
    padding: 1rem !important;
  }
}

.hero__filter__form-1 {
  width: 240px;
  border-right: solid 2px #DCDCDC;
}

@media (max-width: 992px) {
  .hero__filter__form-1 {
    width: 100%;
    border-right: none;
    padding: 1rem 0;
  }
}

.hero__filter__form-1 input {
  color: #373737;
  font-weight: 600;
  font-size: 22px;
  width: 150px;
}

.hero__filter__form-1 input:focus {
  border-width: 0;
}

.hero__filter__form-1 input:active {
  border-width: 0;
}

.hero__filter__form-1__filter-arrow {
  background-color: transparent;
}

.hero__filter__form-1 .filter-calender {
  background-color: #fff;
}

.hero__filter__form-2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: solid 2px #DCDCDC;
  padding: 0 4rem;
}

@media (max-width: 992px) {
  .hero__filter__form-2 {
    width: 100%;
    border-right: none;
    padding: 1rem 0;
  }
}

.hero__filter__form-2 select {
  font-size: 22px;
  border: none;
  color: #373737;
  background-color: transparent;
}

.hero__filter__form-2 select:focus {
  border: none;
}

.hero__filter__form-2 select:active {
  border: none;
}

.hero__filter__form-3 {
  width: 190px;
}

@media (max-width: 992px) {
  .hero__filter__form-3 {
    width: 100%;
    border-right: none;
    padding: 1rem 0;
  }
}

.hero__filter__form-3_price-label {
  font-size: 22px;
  color: var(--petro-primary);
}

.hero__filter__form-3_price-number {
  font-size: 22px;
  color: #373737;
}

@media (max-width: 1200px) {
  .hero__filter__button {
    width: 100%;
  }
}

.hero__filter__buttonBuyNow {
  width: 176px;
  height: 100%;
  background-color: var(--petro-primary);
  font-size: 20px;
  color: white;
  font-weight: 600;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.hero__filter__buttonBuyNow:active {
  background-color: #F2D0B0;
}

.hero__filter__buttonBuyNow:focus {
  background-color: #F2D0B0;
}

@media (max-width: 1200px) {
  .hero__filter__buttonBuyNow {
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    height: 50px;
    width: 100%;
  }
}

.hero__bottom {
  margin-top: -3.4rem;
}

@media (max-width: 1200px) {
  .hero__bottom {
    margin-top: 6rem;
  }
}

@media (max-width: 992px) {
  .hero__bottom {
    margin-top: -2rem;
  }
}

.hero__bottom__title {
  font-size: 135px;
  color: #FAEADD;
}

@media (max-width: 992px) {
  .hero__bottom__title {
    font-size: 100px;
  }
}

@media (max-width: 768px) {
  .hero__bottom__title {
    font-size: 80px;
  }
}

@media (max-width: 576px) {
  .hero__bottom__title {
    font-size: 50px;
  }
}

.hero__bottom__title-wrapper {
  margin-top: -5.5rem;
}

@media (max-width: 768px) {
  .hero__bottom__title-wrapper {
    margin-top: -3rem;
  }
}

.card-service {
  padding: 2rem 0;
}

.card-service__title {
  max-width: 520px;
  margin-bottom: 4rem;
}

.card-service__title h2 {
  font-size: 38px;
}

@media (max-width: 576px) {
  .card-service__title h2 {
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  .card-service__body__card {
    margin-bottom: 1.5rem;
  }
}

.card-service__body__card img {
  height: 519px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 1200px) {
  .card-service__body__card img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .card-service__body__card img {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .card-service__body__card img {
    height: 300px;
  }
}

.card-service__body__card-title {
  font-size: 24px;
}

.card-service__body__card-price {
  font-size: 32px;
  /* color: #C99B2C; */
  color: var(--petro-primary);
}

.card-service__body__card-price span {
  font-size: 16px;
  font-weight: normal;
}

.buletin-board {
  padding: 2rem 0;
}

.buletin-board__title {
  max-width: 520px;
  margin-bottom: 4rem;
}

.buletin-board__title h2 {
  font-size: 38px;
}

@media (max-width: 576px) {
  .buletin-board__title h2 {
    font-size: 30px;
  }
}

.buletin-board__body__card {
  border-radius: 12px;
}

@media (max-width: 992px) {
  .buletin-board__body__card {
    margin-bottom: 1.5rem;
  }
}

.buletin-board__body__card img {
  height: 519px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1200px) {
  .buletin-board__body__card img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .buletin-board__body__card img {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .buletin-board__body__card img {
    height: 300px;
  }
}

.buletin-board__body__card-title {
  font-size: 19px;
  color: #fff;
}

.buletin-board__body__card-date {
  font-size: 20px;
  color: #FAC995;
}

.buletin-board__body__card-wrapper {
  bottom: 0;
  right: 0;
  left: 0;
  background: #87492f;
  background: -webkit-gradient(linear, left bottom, left top, from(#87492f), to(rgba(135, 73, 47, 0)));
  background: linear-gradient(0deg, #87492f 0%, rgba(135, 73, 47, 0) 100%);
  height: 260px;
}

.exclusive-offer {
  padding: 2rem 0;
}

.exclusive-offer__bg-image img {
  height: 604px;
  -o-object-fit: cover;
     object-fit: cover;
}

.exclusive-offer__card {
  background-color: #fff;
  width: 593px;
}

.exclusive-offer__card-center span {
  font-size: 38px;
}

@media (max-width: 576px) {
  .exclusive-offer__card-center span {
    font-size: 30px;
  }
}

.exclusive-offer__card-top span {
  font-size: 20px;
}

.exclusive-offer__card-bottom .border-right {
  border-right: solid 2px #DCDCDC;
}

.exclusive-offer__card-wrapper {
  top: 0;
}

.room-suites {
  padding: 2rem 0;
}

@media (max-width: 992px) {
  .room-suites__box {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .room-suites__box:last-child(1) {
    margin-bottom: 0;
  }
}

.room-suites__box.border-right {
  border-right: solid 2px #E4E8C1;
}

@media (max-width: 992px) {
  .room-suites__box.border-right {
    border-right: 0;
  }
}

.room-suites__box-title {
  font-size: 52px;
}

.room-suites__box-desc {
  font-size: 20px;
}

.our-facilitaties {
  padding: 2rem 0;
}

.our-facilitaties__title h2 {
  font-size: 38px;
}

@media (max-width: 576px) {
  .our-facilitaties__title h2 {
    font-size: 30px;
  }
}

.our-facilitaties__body-box {
  padding: 2.5rem 2rem;
  box-shadow: 0px 6px 19px -5px #DCDCDC;
  -webkit-box-shadow: 0px 6px 19px -5px #DCDCDC;
  -moz-box-shadow: 0px 6px 19px -5px #DCDCDC;
  border-radius: 14px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .our-facilitaties__body-box {
    margin-bottom: 15px;
  }
}

.our-facilitaties__body-box__bottom span:nth-child(1) {
  font-size: 20px;
}

.quotes {
  padding: 2rem 0;
}

.quotes__box {
  box-shadow: 0px 6px 19px -5px #DCDCDC;
  -webkit-box-shadow: 0px 6px 19px -5px #DCDCDC;
  -moz-box-shadow: 0px 6px 19px -5px #DCDCDC;
  border-radius: 14px;
  background-color: #fff;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .quotes__box-left {
    width: 100%;
  }
}

.quotes__box-left img {
  width: 369px;
  height: 367px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 992px) {
  .quotes__box-left img {
    width: 100%;
  }
}

.quotes__box-right {
  padding: 2rem 6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 576px) {
  .quotes__box-right {
    padding: 2rem 4rem;
  }
}

.quotes__box-right .text {
  font-size: 18px;
}

.quotes__box-right .author {
  font-size: 20px;
}

.quotes__box-right .profession {
  font-size: 14px;
}

.quotes__box-right .bt {
  top: 0;
  left: -3.5rem;
}

.popular-meal {
  padding: 2rem 0;
}

.popular-meal__title h2 {
  font-size: 38px;
}

.popular-meal__box {
  border-radius: 12px;
  box-shadow: 0px 6px 19px -5px #DCDCDC;
  -webkit-box-shadow: 0px 6px 19px -5px #DCDCDC;
  -moz-box-shadow: 0px 6px 19px -5px #DCDCDC;
  margin-bottom: 1rem;
}

.popular-meal__box-img img {
  height: 282px;
  -o-object-fit: cover;
     object-fit: cover;
}

.popular-meal__box-body .title {
  font-size: 24px;
}

.popular-meal__box-body .price {
  font-size: 20px;
  border-right: solid 1px #373737;
}

.image-photo-home {
  padding: 2rem 0;
}

.image-photo-home__img {
  margin-bottom: 1rem;
}

.image-photo-home__img img {
  height: 613px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.about-us {
  padding: 2rem 0;
}

.about-us__box {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 6px 19px -5px #DCDCDC;
  -webkit-box-shadow: 0px 6px 19px -5px #DCDCDC;
  -moz-box-shadow: 0px 6px 19px -5px #DCDCDC;
}

@media (max-width: 768px) {
  .about-us__box {
    width: 100%;
  }
}

.about-us__box-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.about-us__box-body .title-parent {
  font-size: 20px;
  text-transform: uppercase;
}

.about-us__box-body .title {
  font-size: 43px;
}

@media (max-width: 768px) {
  .about-us__box-body .title {
    font-size: 30px;
  }
}

.about-us__box-left {
  width: 50%;
}

@media (max-width: 768px) {
  .about-us__box-left {
    width: 100%;
  }
}

.about-us__box-right {
  width: 50%;
}

@media (max-width: 768px) {
  .about-us__box-right {
    width: 100%;
  }
}

.subscription {
  padding: 6rem 0;
}

.subscription .p1 {
  left: 0;
  top: 0;
  z-index: -1;
  width: 500px;
}

@media (max-width: 768px) {
  .subscription .p1 {
    width: 400px;
  }
}

@media (max-width: 576px) {
  .subscription .p1 {
    width: 300px;
  }
}

.subscription .p2 {
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 500px;
}

@media (max-width: 768px) {
  .subscription .p2 {
    width: 400px;
  }
}

@media (max-width: 576px) {
  .subscription .p2 {
    width: 300px;
  }
}

.subscription__head {
  max-width: 659px;
}

.subscription__head h1 {
  font-size: 38px;
}

.subscription__head span {
  max-width: 544px;
}

.subscription__body {
  max-width: 824px;
  box-shadow: 0px 6px 19px -5px #DCDCDC;
  -webkit-box-shadow: 0px 6px 19px -5px #DCDCDC;
  -moz-box-shadow: 0px 6px 19px -5px #DCDCDC;
  border-radius: 100px;
}

@media (max-width: 992px) {
  .subscription__body {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .subscription__body-left {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .subscription__body-left {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .subscription__body-right {
    width: 20%;
  }
}

@media (max-width: 768px) {
  .subscription__body-right {
    width: 100%;
  }
}

.subscription__body input {
  width: 634px;
  height: 86px;
  font-size: 20px;
  padding: 2rem 3rem;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  background-color: #fff;
}

@media (max-width: 992px) {
  .subscription__body input {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .subscription__body input {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    font-size: 18;
  }
}

.subscription__body button {
  width: 190px;
  height: 86px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  background-color: #C29774;
  border: solid 2px #C29774;
  color: white;
  font-size: 20px;
}

@media (max-width: 992px) {
  .subscription__body button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .subscription__body button {
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    height: 60px;
    font-size: 18;
  }
}

.sign {
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.sign-box {
  max-width: 565px;
  background: #fff;
  box-shadow: 0px 6px 19px -5px #DCDCDC;
  -webkit-box-shadow: 0px 6px 19px -5px #DCDCDC;
  -moz-box-shadow: 0px 6px 19px -5px #DCDCDC;
  padding: 40px 32px;
  border-radius: 18px;
}

.sign-box__head h2 {
  font-size: 32px;
}

.sign-box__head span {
  font-size: 22px;
}

.sign-box__head-2 h2 {
  font-size: 22px;
}

.sign-box__head-2 button {
  background-color: #fff;
  border: none;
  left: 0;
  top: 0;
}

.sign-box input {
  color: #9A9A9A;
  border-color: #9A9A9A;
  border-radius: 100px;
  padding: 14px 23px;
}

.sign-box input::-webkit-input-placeholder {
  color: #9A9A9A;
}

.sign-box input:-ms-input-placeholder {
  color: #9A9A9A;
}

.sign-box input::-ms-input-placeholder {
  color: #9A9A9A;
}

.sign-box input::placeholder {
  color: #9A9A9A;
}

.sign-box__signInWith-top span {
  color: #9A9A9A;
}

.sign-box__signInWith-top span:nth-child(1) {
  width: 100%;
  border-top: solid 1px #9A9A9A;
}

.sign-box__signInWith-top span:nth-child(2) {
  max-width: 144px;
  font-size: 14px;
  background-color: #fff;
  margin-top: -11px;
}

.sign-box__signInWith-left {
  width: 50%;
  padding: 0 7px;
}

@media (max-width: 768px) {
  .sign-box__signInWith-left {
    width: 100%;
  }
}

.sign-box__signInWith-right {
  width: 50%;
  padding: 0 7px;
}

@media (max-width: 768px) {
  .sign-box__signInWith-right {
    width: 100%;
  }
}

.sign-box__signInWith button {
  padding: 0.75rem;
  border-radius: 100px;
  font-weight: 500;
  width: 100%;
  background-color: #fff;
  border: solid 2px #DCDCDC;
  color: #373737;
}

.grooming-list {
  padding-top: 6rem;
  padding-bottom: 8rem;
}

@media (max-width: 768px) {
  .grooming-list {
    padding-top: 5rem;
  }
}

@media (max-width: 576px) {
  .grooming-list {
    padding-top: 3rem;
  }
}

.grooming-list__head h1 {
  font-size: 48px;
}

@media (max-width: 576px) {
  .grooming-list__head h1 {
    font-size: 38px;
  }
}

.grooming-list__card-img img {
  height: 519px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.grooming-list__card-body .title {
  font-size: 24px;
}

.grooming-list__card-body .price {
  font-size: 32px;
}

.grooming-list__card-body .price span {
  font-size: 16px;
}

.grooming-detail__slider-card img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.grooming-detail__slider .tns-outer {
  position: relative;
  width: 100%;
}

.grooming-detail__slider .tns-outer .tns-nav {
  display: none;
}

.grooming-detail__slider-contorls {
  position: absolute;
  z-index: 100;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 40%;
  max-width: 1380px;
  width: 100%;
}

@media (max-width: 992px) {
  .grooming-detail__slider-contorls {
    padding: 0 1rem;
  }
}

.grooming-detail__slider-contorls button.btn-controls {
  background-color: transparent;
  border: none;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .grooming-detail__slider-contorls button.btn-controls svg {
    width: 40px;
    height: 40px;
  }
}

.grooming-detail__desc-title h1 {
  font-size: 48px;
}

.grooming-detail__desc-choose {
  min-width: 100px;
  width: auto;
}

.grooming-detail__desc-choose .radio {
  width: auto;
  border-radius: 100px;
  color: #7A8249;
  background-color: transparent;
  border: solid 2px #7A8249;
  margin: 0.5rem;
}

.grooming-detail__desc-choose .radio input[type=radio] {
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  height: 100%;
  background-color: red;
  opacity: 0;
  cursor: pointer;
}

.grooming-detail__desc-choose .radio input[type=radio]:checked ~ span {
  background-color: #7A8249;
  color: white;
}

.grooming-detail__desc-choose .radio span {
  width: 100%;
  height: 100%;
  z-index: 8;
  border-radius: 100px;
  padding: 0.6rem 2rem;
  word-wrap: normal;
}

.grooming-detail__desc-choose_wrapper {
  margin: -0.5rem;
}

.grooming-detail__desc-text-title {
  font-size: 28px;
  font-weight: 600;
}

.grooming-detail__desc-text-body p {
  font-size: 19px;
  color: #585858;
}

.grooming-detail__desc-text-body_image-list img {
  height: 453px;
  -o-object-fit: cover;
     object-fit: cover;
}

.grooming-detail__desc-text-body_image-list .box-right {
  top: 0;
  left: 0.75rem;
  max-width: 450px;
  background-color: #fff;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

@media (max-width: 576px) {
  .grooming-detail__desc-text-body_image-list .box-right {
    left: 0;
    bottom: 0;
  }
}

.grooming-detail__desc-text-body_image-list .box-left {
  top: 0;
  right: 0.75rem;
  max-width: 450px;
  background-color: #fff;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

@media (max-width: 576px) {
  .grooming-detail__desc-text-body_image-list .box-left {
    right: 0;
    bottom: 0;
  }
}

.grooming-detail__desc-body_wrapper {
  margin: -0.5rem;
}

.grooming-detail__booking {
  top: 2rem;
  border: solid 1px #DCDCDC;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.grooming-detail__booking .price {
  font-size: 24px;
}

.grooming-detail__booking .price span {
  font-size: 16px;
  color: #9A9A9A;
  font-weight: 500;
}

.grooming-detail__booking-collapse_item {
  padding-bottom: 1rem;
  border-bottom: 1px solid #DCDCDC;
}

.grooming-detail__booking-collapse_item .collapse-head {
  width: 100%;
  border: solid 1px transparent;
}

.grooming-detail__booking-collapse_item .collapse-head .arrow {
  -webkit-transition: -webkit-transform 200ms ease-in-out;
  transition: -webkit-transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
}

.grooming-detail__booking-collapse_item .collapse-head .arrow.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.grooming-detail__booking-collapse_item .collapse-body .form-control {
  border: solid 1px #BBBBBB;
  border-radius: 100px;
  color: #373737;
}

.grooming-detail__booking-collapse_item .collapse-body .form-control::-webkit-input-placeholder {
  color: #BBBBBB;
}

.grooming-detail__booking-collapse_item .collapse-body .form-control:-ms-input-placeholder {
  color: #BBBBBB;
}

.grooming-detail__booking-collapse_item .collapse-body .form-control::-ms-input-placeholder {
  color: #BBBBBB;
}

.grooming-detail__booking-collapse_item .collapse-body .form-control::placeholder {
  color: #BBBBBB;
}

.grooming-detail__booking-collapse_item .collapse-body .form-select {
  border: solid 1px #BBBBBB;
  border-radius: 100px;
  color: #373737;
}

.grooming-detail__booking-collapse .add-new-pet {
  font-size: 16px;
  border-bottom: solid 1px #DCDCDC;
  text-align: left;
}

.grooming-detail__booking-calender .calender .icon {
  left: 1.4rem;
}

.grooming-detail__booking-calender .calender .form {
  width: 100%;
}

.grooming-detail__booking-calender .calender .form input {
  border-radius: 100px;
  padding-left: 3.4rem;
  width: 100%;
}

.grooming-detail__booking-calender .calender .form .boxCalender {
  top: 4;
  z-index: 10000;
  background-color: #fff;
}

.grooming-detail__booking-action .title-price {
  font-size: 14px;
  color: #9A9A9A;
}

.grooming-detail__booking-action .price {
  font-size: 24px;
  color: var(--petro-primary);
  font-weight: 600;
}

.grooming-detail__booking-action .btn {
  background-color: var(--petro-primary);
  color: #F6F0DD;
  padding: 0.5rem 1.5rem;
}

.grooming-detail__termCondition {
  background-color: #F5F5F5;
  border-radius: 12px;
}

.grooming-detail__termCondition ul li {
  color: #585858;
  font-size: 14px;
}

.grooming-detail__termCondition .title-list {
  font-size: 18px;
  color: #373737;
}

.grooming-detail__termCondition .title {
  font-size: 20px;
  color: #373737;
}

@media (max-width: 992px) {
  .grooming-detail__split .right-inner {
    position: relative !important;
  }
}

.xendit__card {
  position: relative;
  max-width: 502px;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  margin: auto;
  margin-top: 10rem;
  border-radius: 4px;
  padding: 2.5rem;
}

.xendit__card-head .total-price {
  font-size: 32px;
}

.xendit__card-body .label span {
  color: #171717;
}

.xendit__card-body .form-input-card .icon {
  border-radius: 4px;
  border-right: solid 1px #373737;
}

.xendit__card-body .form-input-card .form input {
  border-radius: 4px;
  padding-left: 4rem;
  font-size: 14px;
  border: solid 1px #373737;
  color: #373737;
}

.xendit__card-body .form-input-card .form input::-webkit-input-placeholder {
  color: #373737;
}

.xendit__card-body .form-input-card .form input:-ms-input-placeholder {
  color: #373737;
}

.xendit__card-body .form-input-card .form input::-ms-input-placeholder {
  color: #373737;
}

.xendit__card-body .form-input-card .form input::placeholder {
  color: #373737;
}

.checkout {
  padding-top: 3rem;
}

.checkout__head .title {
  font-size: 48px;
}

@media (max-width: 768px) {
  .checkout__head .title {
    font-size: 30px;
  }
}

.checkout__head .btn-make-order {
  background-color: #F5E1C1 !important;
  border-color: #F5E1C1;
  color: #87492F;
}

@media (max-width: 768px) {
  .checkout__head .btn-make-order {
    font-size: 14px;
  }
}

.checkout__body .tab-head .button-tab {
  border: none;
  background-color: transparent;
  font-weight: 600;
}

.checkout__body .tab-head .button-tab.active {
  border-bottom: solid 2px #C99B2C !important;
}

.checkout__body .tab-body .activeTab {
  display: block !important;
}

.checkout__body .tab-body .card-tab {
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.checkout__body .tab-body .card-tab-head {
  padding-bottom: 1.75rem;
  border-bottom: solid 1px #DCDCDC;
}

.checkout__body .tab-body .card-tab-head .badge {
  background-color: #F5E1C1 !important;
  color: #87492F;
  border-color: #F5E1C1;
  font-weight: normal;
}

.checkout__body .tab-body .card-tab-head .spliter {
  border-left: solid 1px #DCDCDC;
  padding-left: 6rem;
}

@media (max-width: 992px) {
  .checkout__body .tab-body .card-tab-head .spliter {
    padding-left: 1rem;
    border-left: none;
  }
}

.checkout__body .tab-body .card-tab-head .title {
  font-size: 26px;
  font-weight: 600;
}

.checkout__body .tab-body .card-tab-head .date {
  font-size: 20px;
}

.checkout__body .tab-body .card-tab-head .order-items {
  margin: -0.5rem;
}

.checkout__body .tab-body .card-tab-head .order-items .order-item {
  border: solid 1px #DCDCDC;
  border-radius: 12px;
  font-size: 18px;
}

.checkout__body .tab-body .card-tab-head .date-edge {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 18px;
  color: #797979;
}

@media (max-width: 768px) {
  .checkout__body .tab-body .card-tab-head .date-edge {
    position: relative !important;
    top: 0;
    right: 0;
    margin-top: 1rem;
  }
}

.checkout__body .tab-body .card-tab-head .card-progress {
  list-style: none;
  padding-top: 2.75rem;
}

.checkout__body .tab-body .card-tab-head .card-progress li {
  color: #DCDCDC;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.checkout__body .tab-body .card-tab-head .card-progress li .bullet-wrapper {
  border: solid 3px #fff;
}

.checkout__body .tab-body .card-tab-head .card-progress li:nth-child(1) .bullet-wrapper {
  margin-left: -0.75rem;
}

.checkout__body .tab-body .card-tab-head .card-progress li:nth-child(1n+2) {
  height: 40px;
  border-left: solid 2px #DCDCDC;
}

.checkout__body .tab-body .card-tab-head .card-progress li:nth-child(1n+2) .bullet-wrapper {
  margin-left: -0.866rem;
}

.checkout__body .tab-body .card-tab-head .card-progress li.inProgress {
  color: #7A8249;
}

.checkout__body .tab-body .card-tab-head .card-progress li.inProgress .bullet {
  border-color: #7A8249;
}

.checkout__body .tab-body .card-tab-head .card-progress li.done {
  color: #1D7239;
  border-color: #7A8249;
}

.checkout__body .tab-body .card-tab-head .card-progress li.done .bullet {
  border-color: #1D7239;
  background-color: #1D7239;
}

.checkout__body .tab-body .card-tab-head .card-progress li .bullet {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  border: solid 3px #DCDCDC;
}

.checkout__body .tab-body .card-tab-footer .btn-outline-primary {
  border-radius: 12px;
}

.checkout__body .tab-body .card-tab-footer .btn-primary {
  background-color: #F5E1C1 !important;
  color: #87492F;
  border-color: #F5E1C1;
}

.checkout__empty {
  background-color: #F8F1DE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.checkout__empty .image-cat {
  width: 100%;
}

.checkout__empty .title {
  font-size: 30px;
}

.checkout__empty .btn-primary {
  background-color: #7A8249;
  border-color: #7A8249;
}

.checkout__calender {
  top: 2rem;
}

@media (max-width: 768px) {
  .checkout__calender {
    top: 0;
  }
}

.checkout__calender .filterHeroCalender.vanilla-calendar_default {
  padding: 3rem 2rem;
  background-color: #fff;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.checkout__calender .filterHeroCalender.vanilla-calendar_default .vanilla-calendar-header {
  margin-bottom: 1rem;
}

.checkout__calender .filterHeroCalender.vanilla-calendar_default .vanilla-calendar-header .vanilla-calendar-month {
  font-weight: 500;
  color: #344054;
}

.checkout__calender .filterHeroCalender.vanilla-calendar_default .vanilla-calendar-header .vanilla-calendar-year {
  font-weight: 500;
  color: #344054;
}

.checkout__calender .filterHeroCalender.vanilla-calendar_default .vanilla-calendar-week {
  padding-bottom: 1rem;
}

.checkout__calender .filterHeroCalender.vanilla-calendar_default .vanilla-calendar-week .vanilla-calendar-week__day {
  font-size: 14px;
  color: #344054;
  font-weight: 500;
}

.checkout__calender .filterHeroCalender.vanilla-calendar_default .vanilla-calendar-day {
  font-size: 14px;
  margin-bottom: 1rem;
}

.checkout__calender .filterHeroCalender.vanilla-calendar_default .vanilla-calendar-day.vanilla-calendar-day_today {
  background-color: #F2F4F7;
  color: #344054;
}

.account {
  padding-top: 3rem;
}

.account__head .title {
  font-size: 48px;
}

@media (max-width: 768px) {
  .account__head .title {
    font-size: 30px;
  }
}

.account__head .btn-make-order {
  background-color: #F5E1C1 !important;
  border-color: #F5E1C1;
  color: #87492F;
}

@media (max-width: 768px) {
  .account__head .btn-make-order {
    font-size: 14px;
  }
}

.account__body .tab-head .button-tab {
  border: none;
  background-color: transparent;
  font-weight: 600;
}

.account__body .tab-head .button-tab.active {
  border-bottom: solid 2px #C99B2C !important;
}

.account__body .tab-body .activeTab {
  display: block !important;
}

.account__body .tab-body .account-card {
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background-color: #fff;
}

.account__body .tab-body .account-card.profil .photo-wrapper {
  width: 200px;
  height: 200px;
}

.account__body .tab-body .account-card.profil .photo-wrapper img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .account__body .tab-body .account-card.profil .photo-wrapper {
    width: 100%;
    height: auto;
    padding-top: 2.5rem;
  }
}

.account__body .tab-body .account-card.profil .text-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 768px) {
  .account__body .tab-body .account-card.profil .text-wrapper {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 1rem;
  }
}

.account__body .tab-body .account-card.profil .text-wrapper .name {
  font-size: 30px;
}

@media (max-width: 768px) {
  .account__body .tab-body .account-card.profil .text-wrapper .name {
    font-size: 22px;
  }
}

.account__body .tab-body .account-card.profil .text-wrapper .email {
  font-size: 26px;
}

@media (max-width: 768px) {
  .account__body .tab-body .account-card.profil .text-wrapper .email {
    font-size: 18px;
  }
}

.account__body .tab-body .account-card.profil .text-wrapper .total-point {
  font-size: 26px;
  color: #9A9A9A;
}

@media (max-width: 768px) {
  .account__body .tab-body .account-card.profil .text-wrapper .total-point {
    font-size: 18px;
  }
}

.account__body .tab-body .account-card.profil .text-wrapper .total-point span {
  color: #7A8249;
}

.account__body .tab-body .account-card.profil .membership-badge {
  position: absolute;
  top: 2rem;
  right: 0;
  background-color: #C99B2C;
  color: #fff;
  text-transform: uppercase;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

@media (max-width: 576px) {
  .account__body .tab-body .account-card.profil .membership-badge {
    top: 1rem;
  }
}

.account__body .tab-body .account-card.loyalty .head {
  padding-bottom: 2rem;
  border-bottom: solid 1px #BBBBBB;
}

.account__body .tab-body .account-card.loyalty .head .number {
  font-size: 48px;
  color: #C99B2C;
}

.account__body .tab-body .account-card.loyalty .head .text {
  font-size: 26px;
}

.account__body .tab-body .account-card.loyalty .body {
  padding-top: 2rem;
}

.account__body .tab-body .account-card.loyalty .body .title {
  font-size: 20px;
}

.account__body .tab-body .account-card.loyalty .body .list {
  list-style: none;
  padding-left: 0;
}

.account__body .tab-body .account-card.loyalty .body .list li {
  margin-bottom: 0.75rem;
  color: #373737;
  font-size: 18px;
}

.account__body .tab-body .account-card.loyalty .body .list li span {
  color: #7A8249;
  font-weight: 600;
}

.edit-profile {
  padding-top: 3rem;
}

.edit-profile__head .title {
  font-size: 48px;
}

@media (max-width: 768px) {
  .edit-profile__head .title {
    font-size: 30px;
  }
}

.edit-profile__body .edit-profile-card {
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background-color: #fff;
}

.edit-profile__body .edit-profile-card.profil .photo-wrapper {
  width: 200px;
  height: auto;
}

.edit-profile__body .edit-profile-card.profil .photo-wrapper .change-photo-btn {
  border-radius: 12px;
}

.edit-profile__body .edit-profile-card.profil .photo-wrapper img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .edit-profile__body .edit-profile-card.profil .photo-wrapper {
    width: 100%;
    height: auto;
    padding-top: 2.5rem;
  }
}

.edit-profile__body .edit-profile-card.profil .photo-wrapper .inputFile {
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}

.edit-profile__body .edit-profile-card.profil .form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.edit-profile__body .edit-profile-card.profil .form input {
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  border-color: #BBBBBB;
  color: #373737;
}

.edit-profile__body .edit-profile-card.profil .form input::-webkit-input-placeholder {
  color: #BBBBBB;
}

.edit-profile__body .edit-profile-card.profil .form input:-ms-input-placeholder {
  color: #BBBBBB;
}

.edit-profile__body .edit-profile-card.profil .form input::-ms-input-placeholder {
  color: #BBBBBB;
}

.edit-profile__body .edit-profile-card.profil .form input::placeholder {
  color: #BBBBBB;
}

.membership {
  padding-top: 4rem;
}

.membership__head .title {
  font-size: 48px;
}

@media (max-width: 768px) {
  .membership__head .title {
    font-size: 30px;
  }
}

.membership__body .box-items {
  max-width: 830px;
  margin: auto;
}

@media (max-width: 768px) {
  .membership__body .box-items .col-md-6 {
    margin-bottom: 2rem;
  }
  .membership__body .box-items .col-md-6:nth-last-child(1) {
    margin-bottom: 0;
  }
}

.membership__body .box-items .col-md-6 .box-item {
  padding: 2rem 1.75rem;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.membership__body .box-items .col-md-6 .box-item .head-month span {
  font-size: 30px;
}

.membership__body .box-items .col-md-6 .box-item .desc {
  font-size: 20px;
}

.membership__body .box-items .col-md-6 .box-item .list {
  list-style: none;
  padding-left: 0;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #DCDCDC;
  margin-bottom: 0;
}

.membership__body .box-items .col-md-6 .box-item .list li {
  counter-reset: #373737;
  margin-bottom: 0.65rem;
}

.membership__body .box-items .col-md-6 .box-item .list li:nth-last-child(1) {
  margin-bottom: 0;
}

.membership__body .box-items .col-md-6 .box-item .price {
  font-size: 26px;
}

.ticket__slider-card img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.ticket__slider .tns-outer {
  position: relative;
  width: 100%;
}

.ticket__slider .tns-outer .tns-nav {
  display: none;
}

.ticket__slider-contorls {
  position: absolute;
  z-index: 100;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 40%;
  max-width: 1380px;
  width: 100%;
}

@media (max-width: 992px) {
  .ticket__slider-contorls {
    padding: 0 1rem;
  }
}

.ticket__slider-contorls button.btn-controls {
  background-color: transparent;
  border: none;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .ticket__slider-contorls button.btn-controls svg {
    width: 40px;
    height: 40px;
  }
}

.ticket__desc-title h1 {
  font-size: 48px;
}

.ticket__desc-choose {
  min-width: 100px;
  width: auto;
}

.ticket__desc-choose .radio {
  width: auto;
  border-radius: 100px;
  color: #7A8249;
  background-color: transparent;
  border: solid 2px #7A8249;
  margin: 0.5rem;
}

.ticket__desc-choose .radio input[type=radio] {
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  height: 100%;
  background-color: red;
  opacity: 0;
  cursor: pointer;
}

.ticket__desc-choose .radio input[type=radio]:checked ~ span {
  background-color: #7A8249;
  color: white;
}

.ticket__desc-choose .radio span {
  width: 100%;
  height: 100%;
  z-index: 8;
  border-radius: 100px;
  padding: 0.6rem 2rem;
  word-wrap: normal;
}

.ticket__desc-choose_wrapper {
  margin: -0.5rem;
}

.ticket__desc-text-title {
  font-size: 28px;
  font-weight: 600;
}

.ticket__desc-text-body p {
  font-size: 19px;
  color: #585858;
}

.ticket__desc-text .highlight-wrapper .col-lg-6 {
  padding: 0.5rem;
}

.ticket__desc-text .highlight-img {
  border-radius: 12px;
}

.ticket__desc-text .list-unstyled li {
  margin-bottom: 0.5rem;
}

.ticket__desc-text .list-unstyled li:nth-last-child(1) {
  margin-bottom: 0;
}

.ticket__desc-text .additional-info__title {
  font-size: 18px;
  font-weight: 600;
  color: #373737;
  margin-bottom: 0.5rem;
}

.ticket__desc-text .additional-info__text {
  font-size: 18px;
  color: #585858;
  margin-bottom: 0.5rem;
}

.ticket__desc-text .additional-info__readMoreBtn {
  font-size: 18px;
  color: #C99B2C;
  font-weight: 600;
}

.ticket__desc-text .additional-info__wrapper {
  width: 100%;
  height: 160px;
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

.ticket__desc-text .additional-info__wrapper.bgGradient::after {
  background: white;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(16%, white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, white 16%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.ticket__desc-text .additional-info__wrapper.show {
  height: auto !important;
}

.ticket__desc-text .additional-info__wrapper.show::after {
  background: transparent;
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.ticket__desc-text .location-text {
  font-size: 19px;
  color: #585858;
}

.ticket__desc-body_wrapper {
  margin: -0.5rem;
}

.ticket__booking {
  top: 2rem;
  border: solid 1px #DCDCDC;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.ticket__booking-calender .calender .icon {
  left: 1.4rem;
}

.ticket__booking-calender .calender .form {
  width: 100%;
}

.ticket__booking-calender .calender .form input {
  padding-left: 3.4rem;
  width: 100%;
}

.ticket__booking-calender .calender .form .boxCalender {
  top: 4;
  z-index: 10000;
  background-color: #fff;
}

.ticket__booking-action .title-price {
  font-size: 14px;
  color: #9A9A9A;
}

.ticket__booking-action .price {
  font-size: 24px;
  color: var(--petro-primary);
  font-weight: 600;
}

.ticket__booking-action .btn {
  background-color: var(--petro-primary);
  color: #F6F0DD;
  padding: 0.5rem 1.5rem;
}

.ticket__termCondition {
  background-color: #F5F5F5;
  border-radius: 12px;
}

.ticket__termCondition ul li {
  color: #585858;
  font-size: 14px;
}

.ticket__termCondition .title-list {
  font-size: 18px;
  color: #373737;
}

.ticket__termCondition .title {
  font-size: 20px;
  color: #373737;
}

@media (max-width: 992px) {
  .ticket__split .right-inner {
    position: relative !important;
  }
}

.pet-hotel__slider-card img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.pet-hotel__slider .tns-outer {
  position: relative;
  width: 100%;
}

.pet-hotel__slider .tns-outer .tns-nav {
  display: none;
}

.pet-hotel__slider-contorls {
  position: absolute;
  z-index: 100;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 40%;
  max-width: 1380px;
  width: 100%;
}

@media (max-width: 992px) {
  .pet-hotel__slider-contorls {
    padding: 0 1rem;
  }
}

.pet-hotel__slider-contorls button.btn-controls {
  background-color: transparent;
  border: none;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .pet-hotel__slider-contorls button.btn-controls svg {
    width: 40px;
    height: 40px;
  }
}

.pet-hotel__desc-title h1 {
  font-size: 48px;
}

.pet-hotel__desc-choose {
  min-width: 100px;
  width: auto;
}

.pet-hotel__desc-choose .radio {
  width: auto;
  border-radius: 100px;
  color: #7A8249;
  background-color: transparent;
  border: solid 2px #7A8249;
  margin: 0.5rem;
}

.pet-hotel__desc-choose .radio input[type=radio] {
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  height: 100%;
  background-color: red;
  opacity: 0;
  cursor: pointer;
}

.pet-hotel__desc-choose .radio input[type=radio]:checked ~ span {
  background-color: #7A8249;
  color: white;
}

.pet-hotel__desc-choose .radio span {
  width: 100%;
  height: 100%;
  z-index: 8;
  border-radius: 100px;
  padding: 0.6rem 2rem;
  word-wrap: normal;
}

.pet-hotel__desc-choose_wrapper {
  margin: -0.5rem;
}

.pet-hotel__desc-text-title {
  font-size: 28px;
  font-weight: 600;
}

.pet-hotel__desc-text-body p {
  font-size: 19px;
  color: #585858;
}

.pet-hotel__desc-text-body_image-list img {
  height: 453px;
  -o-object-fit: cover;
     object-fit: cover;
}

.pet-hotel__desc-text-body_image-list .box-right {
  top: 0;
  left: 0.75rem;
  max-width: 450px;
  background-color: #fff;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

@media (max-width: 576px) {
  .pet-hotel__desc-text-body_image-list .box-right {
    left: 0;
    bottom: 0;
  }
}

.pet-hotel__desc-text-body_image-list .box-left {
  top: 0;
  right: 0.75rem;
  max-width: 450px;
  background-color: #fff;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

@media (max-width: 576px) {
  .pet-hotel__desc-text-body_image-list .box-left {
    right: 0;
    bottom: 0;
  }
}

.pet-hotel__desc-body_wrapper {
  margin: -0.5rem;
}

.pet-hotel__booking {
  top: 2rem;
  border: solid 1px #DCDCDC;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.pet-hotel__booking .price {
  font-size: 24px;
}

.pet-hotel__booking .price span {
  font-size: 16px;
  color: #9A9A9A;
  font-weight: 500;
}

.pet-hotel__booking-collapse_item {
  padding-bottom: 1rem;
  border-bottom: 1px solid #DCDCDC;
}

.pet-hotel__booking-collapse_item .collapse-head {
  width: 100%;
  border: solid 1px transparent;
}

.pet-hotel__booking-collapse_item .collapse-head .arrow {
  -webkit-transition: -webkit-transform 200ms ease-in-out;
  transition: -webkit-transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
}

.pet-hotel__booking-collapse_item .collapse-head .arrow.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pet-hotel__booking-collapse_item .collapse-body .form-control {
  border: solid 1px #BBBBBB;
  border-radius: 100px;
  color: #373737;
}

.pet-hotel__booking-collapse_item .collapse-body .form-control::-webkit-input-placeholder {
  color: #BBBBBB;
}

.pet-hotel__booking-collapse_item .collapse-body .form-control:-ms-input-placeholder {
  color: #BBBBBB;
}

.pet-hotel__booking-collapse_item .collapse-body .form-control::-ms-input-placeholder {
  color: #BBBBBB;
}

.pet-hotel__booking-collapse_item .collapse-body .form-control::placeholder {
  color: #BBBBBB;
}

.pet-hotel__booking-collapse_item .collapse-body .form-select {
  border: solid 1px #BBBBBB;
  border-radius: 100px;
  color: #373737;
}

.pet-hotel__booking-collapse .add-new-pet {
  font-size: 16px;
  border-bottom: solid 1px #DCDCDC;
  text-align: left;
}

.pet-hotel__booking-calender .calender .icon {
  left: 1.4rem;
}

.pet-hotel__booking-calender .calender .form {
  width: 100%;
}

.pet-hotel__booking-calender .calender .form input {
  padding-left: 3.4rem;
  width: 100%;
}

.pet-hotel__booking-calender .calender .form .boxCalender {
  top: 4;
  z-index: 10000;
  background-color: #fff;
}

.pet-hotel__booking-action .title-price {
  font-size: 14px;
  color: #9A9A9A;
}

.pet-hotel__booking-action .price {
  font-size: 24px;
  color: var(--petro-primary);
  font-weight: 600;
}

.pet-hotel__booking-action .btn {
  background-color: var(--petro-primary);
  color: #F6F0DD;
  padding: 0.5rem 1.5rem;
}

.pet-hotel__booking .addiotional-service .title {
  font-weight: 600;
}

.pet-hotel__termCondition {
  background-color: #F5F5F5;
  border-radius: 12px;
}

.pet-hotel__termCondition ul li {
  color: #585858;
  font-size: 14px;
}

.pet-hotel__termCondition .title-list {
  font-size: 18px;
  color: #373737;
}

.pet-hotel__termCondition .title {
  font-size: 20px;
  color: #373737;
}

@media (max-width: 992px) {
  .pet-hotel__split .right-inner {
    position: relative !important;
  }
}
/*# sourceMappingURL=styles.css.map */