.blog-hero {
  display: flex;
  padding: 40px 0;
}

.blog-hero .text-wrapper {
  flex-basis: 50%;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-hero .text-wrapper h1 {
  color: var(--logoBrown);
  font-size: 3rem;
}

.blog-hero .text-wrapper p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: var(--buttonSelect);
  font-weight: 600;
}

.blog-hero .text-wrapper .btn-wrapper {
  display: flex;
  justify-content: start;
}

.blog-hero .img-wrapper {
  flex-basis: 50%;
  text-align: center;
}

.blog-hero .img-wrapper img {
  width: 80%;
  border-radius: 50px;
}

.blog-content {
  padding: 10px 40px;
}

.blog-content h2,
.blog-content h3 {
  font-family: "Open Sans", serif;
  margin-bottom: 30px;
}

.blog-content .queries-wrapper {
  display: flex;
  gap: 40px;
}
.blog-content .queries-wrapper .text-wrapper {
  display: flex;
  align-items: center;
}
.blog-content .queries-wrapper .text-wrapper h4 {
  font-size: 2.3rem;
  color: var(--logoBrown);
}

.blog-content p .blog-content {
  margin-bottom: 30px;
}

@media (max-width: 810px) {
  .blog-hero {
    display: block;
  }
}
@media (max-width: 574px) {
  .blog-content .queries-wrapper {
    display: block;
    gap: 40px;
  }
  .blog-content .queries-wrapper .text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.gallery {
  margin-bottom: 30px;
}

.swiper {
  width: 100%;
  margin: 0 auto;
}

.swiper-slide {
  aspect-ratio: 1/1 !important;
}

.swiper-img {
  width: 100%;
}
:root {
  --swiper-navigation-size: 40px;
}
.swiper-btn {
  color: var(--logoRed);
  font-size: 5px !important;
  font-weight: 1000;
}
.swiper-btn:hover {
  color: var(--feetGreen);
}
