/** dc-info **/

.dc-info {
}

.dc-ctn {
  display: grid;
  overflow: hidden;
  border-radius: 3vw;
  grid-template-columns: repeat(2,1fr);
}

.dc-ctn .img {
  display: grid;
  overflow: hidden;
  background-color: var(--deep_blue);
}

.dc-ctn .img img {
  display: flex;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.dc-ctn .book-now {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.dc-ctn .book-now a {
  background-color: var(--deep_blue);
  display: flex;
  width: 60%;
  justify-content: center;
  color: white;
  border-radius: 1.5vw;
  font-weight: 600;
  padding: 0.5vw 0.7vw;
  border: 0.2vw solid var(--deep_blue);
}

.dc-ctn .book-now a:hover {
  background-color: white;
  color: var(--deep_blue);
  font-weight: 600;
  border: 0.2vw solid var(--deep_blue);
}

.dc-ctn .details {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 5%;
}

.dc-ctn .details h2 {
  font-size: 1.5vw;
  color: var(--deep_blue);
}

.dc-ctn .details .especialización {
  color: var(--deep_blue);
  font-weight: 600;
}

.dc-ctn .details ul {
  margin-left: 1vw;
}

.dc-ctn .details ul li::marker {
  color: var(--deep_blue);
}

@media (max-width: 996px) {
  .dc-ctn {
    grid-template-columns: 100%;
  }

  .dc-ctn .details {
    gap: 3vw;
  }

  .dc-ctn .details ul {
    margin-left: 4vw;
  }

  .dc-ctn .details h2 {
    font-size: 4vw;
  }
}


/** request appointment section **/

.request-appointment {
}

.request-appointment .request-ctn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.request-appointment .request-ctn img {
  position: absolute;
  left: -30%;
  bottom: -20%;
  transform: scale(1.4);
}

.request-appointment .content {
  display: grid;
  transform: translateX(4vw);
  grid-template-columns: repeat(2, 1fr);
  width: 50vw;
  height: 30vw;
  border-radius: 3vw;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  background-color: var(--soft_blue);
}

.request-appointment .content .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2vw;
  width: 100%;
  height: 100%;
}

.request-appointment .content .img {
  position: relative;
}

.request-appointment .content .txt h2 {
  color: white;
}

.request-appointment .content .txt a {
  background-color: var(--soft_blue);
  display: flex;
  width: 60%;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 1.5vw;
  font-weight: 600;
  padding: 0.5vw 0.7vw;
  border: 0.2vw solid white;
}

.request-appointment .content .txt a:hover {
  background-color: white;
  transform: translateY(-0.2vw);
  color: var(--soft_blue);
  font-weight: 600;
  border: 0.2vw solid white;
}

@media (max-width: 996px) {
  .request-appointment .content {
    width: 100%;
    height: 100%;
    transform: translate(0);

    align-items: center;
    justify-items: center;
    grid-template-columns: 100%;
  }

  .request-appointment .request-ctn img {
    width: 40vw;
    transform: scale(1.5);
    transform-origin: bottom;
    position: relative;
    bottom: 0;
    left: 0;
  }

  .request-appointment .content .txt  {
    padding: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .request-appointment .content .txt a {
    width: 80%;
    padding: 3vw 8vw;
    font-size: 3.5vw;
  }
}

/** 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%;
  }
}
