.b-intro-title {
  position: relative;
}
.b-intro-title__box {
  margin: 0 9rem;
  background: #fff;
  padding: 2rem 1rem 3rem;
}
@media all and (max-width: 768px) {
  .b-intro-title__box {
    margin: 0 1.5rem;
  }
}
.b-intro-title__title {
  position: relative;
  text-align: center;
  z-index: 15;
}
.b-intro-title__title > h1, .b-intro-title__title > h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 3.5rem;
}
.b-intro-title__title_left {
  text-align: left;
}
@media all and (max-width: 1024px) {
  .b-intro-title__title > h1, .b-intro-title__title > h2 {
    font-size: 3.5rem;
    line-height: 3rem;
  }
}
@media all and (max-width: 768px) {
  .b-intro-title__box {
    display: block;
  }
  .b-intro-title__title {
    text-align: left;
  }
  .b-intro-title__title br {
    display: none;
  }
}
@media all and (max-width: 480px) {
  .b-intro-title__title > h1, .b-intro-title__title > h2 {
    font-size: 2rem;
    line-height: 2rem;
  }
}

.b-blog {
  margin: 0 0 4rem;
  font-weight: 500;
}
.b-blog__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 1.5rem;
}
.b-blog__item {
  display: block;
  color: inherit;
  text-decoration: none;
}
.b-blog__item:hover img {
  transform: scale(1.05);
}
.b-blog__image {
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.b-blog__image picture, .b-blog__image img {
  display: block;
  width: 100%;
  height: auto;
  transition: 3s ease-out;
}
.b-blog__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.3rem;
  max-width: 30rem;
}
.b-blog__desc {
  font-size: 1rem;
  line-height: 1.2rem;
  text-align: justify;
}
@media all and (max-width: 768px) {
  .b-blog__items {
    padding: 1rem;
    gap: 2rem;
  }
}
@media all and (max-width: 480px) {
  .b-blog__items {
    grid-template-columns: 1fr;
  }
}