/* Default: Mobile → 1 column */
#services-container {
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr;
  margin: 0;
}

/* Tablet → 2 columns */
@media (min-width: 640px) {
  #services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop / Large Screens → 3 columns */
@media (min-width: 992px) {
  #services-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra Large Screens → still 3 columns or increase spacing */
@media (min-width: 1400px) {
  #services-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
  }
}

.view-buttons {
  text-align: center;
  margin-bottom: 1em;
}
.view-buttons button {
  background-color: var(--lightGray-color);
  color: var(--black-color);
  padding: 0.5em 1em;
  margin: 0 0.5em;
  cursor: pointer;
  border-radius: 10px;
}
.view-more {
  width: 140px;
  height: 45px;
  background-image: linear-gradient(135deg, #feb692 0%, #ea5455 100%);
  box-shadow: 0 0 10px 0 rgba(238, 103, 97, 0.5);
  color: #fff;
  border-radius: 50px;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.view-more span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: top 0.5s;
}
.btn-text-one {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.btn-text-two {
  position: absolute;
  width: 100%;
  top: 150%;
  left: 0;
  transform: translateY(-50%);
}
.view-more:hover .btn-text-one {
  top: -100%;
}
.view-more:hover .btn-text-two {
  top: 50%;
}

.item {
  box-shadow: rgba(17, 17, 26, 0.05) 0 4px 16px,
    rgba(17, 17, 26, 0.05) 0 8px 32px;
  padding-top: 15px;
  border-radius: 10px;
}
.blog-card {
  display: block;
  position: relative;
  padding: 0;
}
.blog-card .media-block {
  overflow: hidden;
  border-bottom: 0;
  border-radius: 10px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
.blog-card .media-block img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-card .media-block:hover img {
  transform: scale(1.1);
}
.blog-card .post-info {
  padding: 10px 0 15px;
}
.blog-card p {
  color: var(--orange-color);
  margin: 5px 0 0;
  text-decoration: none;
}
.blog-card .category {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
}
.blog-card .category a {
  position: relative;
  font-size: 11px;
  color: var(--white-color);
  background: var(--black-color);
  border-radius: 3px;
  padding: 3px 7px;
  line-height: 1.2em;
}
.blog-card .post-date {
  display: inline-block;
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.1em;
  font-weight: 500;
}
.blog-card .media-block {
  position: relative;
}
.blog-card .media-block .mask {
  position: absolute;
  background: #4f565e;
  background: rgba(0, 0, 0, 0.12);
  display: inline-block;
  font-family: linearicons-free;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.blog-card .media-block .mask:after {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -22px 0 0 -22px;
  width: 44px;
  line-height: 44px;
  font-size: 44px;
  text-align: center;
  content: "\e828";
  color: #fff;
}
.blog-card .media-block:hover .mask {
  visibility: visible;
  opacity: 1;
}
.blog-card ul.category li a {
  color: var(--gray-color);
  font-size: 12px;
  font-weight: 300;
}
.blog-card .post-meta .item,
.post-meta .item a {
  color: var(--gray-color);
}
@media (max-width: 768px) {
  .view-buttons {
    display: none;
  }
}
@media (min-width: 769px) {
  .view-buttons {
    display: flex;
    justify-content: flex-end;
    text-align: center;
  }
}
.Accordion {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 50px 10px;
}
.Accordion .left {
  padding-right: 5%;
}
.Accordion .accordion {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Accordion .accordion-item {
  box-shadow: 0 4px 8px rgba(159, 68, 188, 0.2);
  transition: box-shadow 0.3s ease;
  border-radius: 10px;
  background-color: transparent;
}
.Accordion .accordion-header {
  cursor: pointer;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
}
.Accordion .icon img {
  height: 50px;
  width: 50px;
}
.Accordion .title {
  font-family: var(--font-family-montserrat);
  font-size: 1.3rem;
  color: var(--black-color);
  font-weight: 600;
  flex-grow: 1;
  padding-left: 15px;
}
.Accordion .arrow img {
  transition: transform 0.3s ease;
  width: 20px;
  height: auto;
}
.Accordion .accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}
.Accordion .accordion-panel p {
  font-size: 1rem;
  padding-left: 14%;
  padding-bottom: 2%;
}
.Accordion .accordion-header.active .arrow img {
  transform: rotate(180deg);
}
@media only screen and (max-width: 599px) {
  .Accordion h1 {
    font-size: 38px;
    padding-bottom: 20px;
  }
  .Accordion .left {
    padding-right: 0;
  }
  .Accordion .accordion {
    gap: 10px;
  }
  .Accordion .icon img {
    height: 35px;
    width: 35px;
  }
  .Accordion .title {
    font-size: 22px;
    padding-left: 10px;
  }
}
.base-template__wrapper {
  max-width: 1560px;
}
.base-template__text {
  margin-bottom: 60px;
}
.swiper {
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.emotions-slider {
  --color-gray: #818181;
  --color-gray-dark: #ccc;
  padding-inline: 98px;
  position: relative;
}
.emotions-slider__slide {
  display: flex;
  align-items: center;
  min-height: 550px;
}
@media screen and (max-width: 767.9px) {
  .emotions-slider {
    padding: 0;
    margin-inline: 20px;
  }
}
.slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  z-index: 1;
  pointer-events: none;
}
.slider-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 48px;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.slider-nav__item.disabled {
  cursor: default;
  opacity: 0.5;
}
.slider-nav__item path {
  stroke: currentColor;
}
@media (hover: hover) and (pointer: fine) {
  .slider-nav__item:not(.disabled):hover {
    color: var(--color-blue);
  }
}
@media (hover: none) {
  .slider-nav__item:not(.disabled):active {
    color: var(--color-blue);
  }
}
@media screen and (max-width: 767.9px) {
  .slider-nav {
    display: none;
  }
}
.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 40px;
}
.swiper-pagination-lock {
  display: none !important;
}
.slider-pagination__item {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--orange-color);
  transition: all 0.3s ease-out;
  opacity: 0.2;
}
.slider-pagination__item.active {
  width: 30px;
  opacity: 1;
}
.swiper-slide {
  width: auto;
  height: auto;
}
@-webkit-keyframes btn-arrow-move {
  0% {
    translate: 0;
  }
  100% {
    translate: 100% -100%;
  }
}
@keyframes btn-arrow-move {
  0% {
    translate: 0;
  }
  100% {
    translate: 100% -100%;
  }
}
.emotions-slider-item {
  --border-radius: 10px;
  width: calc(100dvw - 60px);
  max-width: 400px;
  background: var(--black-color);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}
.emotions-slider-item__badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px 4px 5px;
  background: #00000066;
  border-bottom-right-radius: var(--border-radius);
  font-size: 14px;
  line-height: calc(24 / 14);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.emotions-slider-item__badge::before {
  content: "";
  flex-shrink: 0;
  display: block;
  aspect-ratio: 1;
  width: 18px;
  background: url("https://bato-web-agency.github.io/bato-shared/img/slider-1/icon-star.svg")
    center center no-repeat;
  background-size: 100%;
}
.emotions-slider-item__image {
  aspect-ratio: 400 / 270;
  overflow: hidden;
}
.emotions-slider-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.emotions-slider-item__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}
.emotions-slider-item__header,
.emotions-slider-item__footer {
  max-height: 50px;
  overflow: hidden;
  transition: max-height 0.6s ease-in;
}
.emotions-slider-item__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}
.emotions-slider-item__price {
  font-weight: 600;
  font-size: 22px;
  line-height: calc(24 / 22);
  color: var(--white-color);
}
.emotions-slider-item__author {
  display: flex;
  align-items: center;
  gap: 4px;
}
.emotions-slider-item__author-image {
  flex-shrink: 0;
  aspect-ratio: 1;
  width: 20px;
  border-radius: 100%;
  overflow: hidden;
}
.emotions-slider-item__author-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.emotions-slider-item__author-name {
  font-family: var(--font-family-montserrat);
  font-size: 14px;
  line-height: calc(20 / 14);
  color: var(--color-gray);
}
.emotions-slider-item__info h2 {
  font-weight: 600;
  font-size: 30px !important;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--orange-color) !important;
}
.emotions-slider-item__info p {
  font-size: 18px;
  color: var(--white-color);
}
.emotions-slider-item__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 18px;
  color: var(--orange-color);
  text-decoration: none;
}
.emotions-slider-item__btn-icon {
  flex-shrink: 0;
  display: block;
  aspect-ratio: 1;
  width: 24px;
  position: relative;
  overflow: hidden;
}
.emotions-slider-item__btn-icon::before,
.emotions-slider-item__btn-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("https://bato-web-agency.github.io/bato-shared/img/slider-1/icon-btn-arrow.svg")
    center center no-repeat;
  background-size: 100%;
}
.emotions-slider-item__btn-icon::after {
  position: absolute;
  top: 100%;
  right: 100%;
}
.emotions-slider__slide:not(.swiper-slide-active) .emotions-slider-item__header,
.emotions-slider__slide:not(.swiper-slide-active)
  .emotions-slider-item__footer {
  max-height: 0;
}
@media (hover: hover) and (pointer: fine) {
  .emotions-slider-item__btn:hover .emotions-slider-item__btn-icon::before,
  .emotions-slider-item__btn:hover .emotions-slider-item__btn-icon::after {
    -webkit-animation: btn-arrow-move 0.4s ease forwards;
    animation: btn-arrow-move 0.4s ease forwards;
  }
}
@media (hover: none) {
  .emotions-slider-item__btn:active .emotions-slider-item__btn-icon::before,
  .emotions-slider-item__btn:active .emotions-slider-item__btn-icon::after {
    -webkit-animation: btn-arrow-move 0.4s ease forwards;
    animation: btn-arrow-move 0.4s ease forwards;
  }
}
