/** banner section **/

.banner-section {
  padding: 5% 5% 0 5%;
}

.banner-ctn {
  height: 50vh;
  display: grid;
  border-radius: 2vw;
  overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
}

.banner-ctn .txt {
  padding: 5%;
  display: flex;
  gap: 2vw;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  background-color: var(--soft_blue);
}

.banner-ctn .txt p {
  color: white;
  font-weight: 500;
 }

.banner-ctn .txt span {
 font-weight: 600;
 color: var(--soft_blue);
}

.banner-ctn .txt h1 {
  font-size: 3vw;
  color: white;
}

.banner-ctn .img {
  background-image: url("../media/jpg/pelvis_blog.jpg");
  background-position: center;
  background-size: cover;
}

@media (max-width: 996px) {
  .banner-section {
    padding: 5% 5% 10% 5%;
  }

  .banner-ctn {
    grid-template-columns: 100%;
    height: 45vh;
    grid-template-rows: 40% 1fr;
  }

  .banner-ctn .txt{
    justify-content: center;
    align-items: center;
}



.banner-ctn .txt h1{
    font-size: 6vw;
    text-align: center;
}

  .banner-ctn .img {
    background-position: center bottom 70%;
  }
}

/** blog section **/

.blog-section {
  padding: 5% 10%;
}

.blog-ctn {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.blog-ctn span {
  color: var(--deep_blue);
  font-weight: 600;
}

.blog-ctn h1,h2 {
    color: var(--deep_blue);
}

.blog-ctn h2 {
  font-size: 1.5vw;
}


.blog-ctn ul {
    margin-left: 2vw;
    display: flex;
    flex-direction: column;
    grid-area: 1vw;
}

.blog-ctn ul li::marker {
    color: var(--deep_blue);
}

@media (max-width: 996px) {

  .blog-ctn h2{
    font-size: 4vw;
  }

}



/** insurance section **/

.insurances-section {
  padding: 5%;
}

.insurances-ctn .title h2 {
  text-align: center;
  color: var(--deep_blue);
  margin-bottom: 3vw;
}

.insurance-item{
  padding: 2vw;
}

.insurances-ctn .slick-track {
  overflow: visible;
}

@media (max-width: 996px) {
  .insurances-section {
    padding: 10%;
  }
}
