.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 p {
  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-text-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.blog-content-text-wrap p {
  flex-basis: 60%;
}
.blog-content-text-wrap .img-wrapper {
  flex-basis: 40%;
  text-align: center;
}
.blog-content-text-wrap .img-wrapper img {
  width: 50%;
}

@media (max-width: 810px) {
  .blog-hero {
    display: block;
  }
  .blog-content-text-wrap {
    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;
  }
}
