/** 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;
}

.banner-ctn .txt h1 {
  font-size: 3vw;
  color: white;
}

.banner-ctn .img {
  background-image: url("../media/jpg/blog-banner.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: 140vw;
    grid-template-rows: 40% 1fr;
  }

  .banner-ctn .txt {
    order: 1;
  }

  .banner-ctn .txt h1 {
    font-size: 7vw;
  }

  .banner-ctn .img {
    background-size: cover;
    background-position: right;
  }
}

/** blogs-section **/
.blogs-section {
}

.blogs-ctn {
  display: grid;
  gap: 5vw;
  grid-template-columns: repeat(2, 1fr);
}

.blog_1 {
  box-shadow: 3px 3px 10px #00000050;
  align-items: center;
  height: 20vw;
  display: grid;
  border-radius: 3vw;
  background-position: left;
  padding: 2vw;
  background-size: cover;
  grid-template-columns: 60% 40%;
  background-image: url("../media/jpg/pelvis_blog.jpg");
}

.blog_1 a {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--soft_blue);
  border-radius: 1.5vw;
  font-weight: 600;
  padding: 0.5vw 0.7vw;
  border: 2px solid white;
}

.blog_1 a:hover {
  background-color: transparent;
  transform: translateY(-0.2vw);
  color: white;
  font-weight: 600;
  border: 2px solid white;
}

.blog_1 .txt {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.blog_1 h2 {
  font-size: 1.7vw;
  color: white;
}

.blog_2 {
  box-shadow: 3px 3px 10px #00000050;
  align-items: center;
  height: 20vw;
  border-radius: 3vw;
  display: grid;
  padding: 2vw;
  background-position: left;
  background-size: cover;
  grid-template-columns: 60% 40%;
  background-image: url("../media/jpg/cerebro_blog.jpg");
}

.blog_2 a {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--soft_blue);
  border-radius: 1.5vw;
  font-weight: 600;
  padding: 0.5vw 0.7vw;
  border: 2px solid white;
}

.blog_2 a:hover {
  background-color: transparent;
  transform: translateY(-0.2vw);
  color: white;
  font-weight: 600;
  border: 2px solid white;
}

.blog_2 h2 {
  color: white;
  font-size: 1.7vw;
}

.blog_2 .txt {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

@media (max-width: 996px) {
  .blogs-ctn {
    grid-template-columns: 100%;
  }

  .blog_1 {
    height: 40vw;
  }

  .blog_1 h2 {
    font-size: 4vw;
  }

  .blog_1 a {
    font-size: 3vw;
  }

  .blog_2 {
    height: 40vw;
  }

  .blog_2 a {
    font-size: 3vw;
  }

  .blog_2 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%;
  }
}
