/** 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/contact_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: 45vh;
    grid-template-rows: 40% 1fr;
  }

  .banner-ctn .img {
    background-position: center bottom 70%;
  }
}

/** forms section **/

.form-section {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  justify-content: center;
  align-items: center;
}

.contact_ctn {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  padding: 3vw;
  transition: all 0.4s;
}

.contact_ctn:hover {
  box-shadow: 3px 3px 10px #00000050;
  border-radius: 2vw;
}

.form-ctn {
  display: flex;
  gap: 2vw;
  flex-direction: column;
}

.form-ctn input {
  border: none;
  color: var(--gray);
  background-color: #efefee;
  padding: 1vw 1.5vw;
  border-radius: 5vw;
  outline: none;
  width: 40vw;
}

.form-ctn select {
  border: none;
  color: var(--gray);
  background-color: #efefee;
  padding: 1vw 1.5vw;
  border-radius: 5vw;
  outline: none;
  width: 40vw;
}

.form-ctn .first-column {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.form-ctn .second-column {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.form-ctn .second-column .select-service {
  width: 100%;
}

.form-ctn .message {
  border: none;
  color: var(--gray);
  background-color: #efefee;
  padding: 1vw 1.5vw;
  border-radius: 1vw;
  outline: none;
  width: 40vw;
}

.form-section .send_form {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  align-items: center;
}

.form-section .send_form .notify_box .message_box p {
  color: var(--deep_blue);
  font-weight: 600;
}

.form-section .send_form button {
  background-color: var(--deep_blue);
  color: white;
  display: flex;
  gap: 0.5vw;
  width: 20vw;
  border: 2px solid var(--deep_blue);
  border-radius: 1.5vw;
  padding: 0.5vw 0.7vw;
  justify-content: center;
  align-items: center;
}

.form-section .send_form button:hover {
  background-color: white;
  transform: translateY(-0.2vw);
  color: var(--deep_blue);
}

@media (max-width: 996px) {
  .form-section {
    gap: 5vw;
    padding: 10% 10% 20% 10%;
  }

  .contact_ctn {
    gap: 3vw;
  }

  .form-ctn {
    grid-template-columns: 100%;
    gap: 5vw;
  }

  .form-ctn input {
    width: 100%;
    padding: 3vw 8vw;
  }

  .form-ctn .first-column {
    gap: 5vw;
  }

  .form-ctn .second-column .select-service {
    padding: 3vw 8vw;
  }

  .form-ctn .second-column {
    gap: 5vw;
  }

  .form-section .send_form button {
    width: 30vw;
  }

  .form-ctn .message {
    width: 100%;
    padding: 2vw 3vw;
    border-radius: 3vw;
  }
}

/** map section **/

.map_section {
  padding: 0 10% 10% 10%;
}

.map_ctn iframe {
  width: 100%;
  height: 30vw;
  border: none;
  border-radius: 1vw;
}

@media (max-width: 996px) {
  .map_ctn iframe {
    height: 65vw;
  }
}

/** 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;
  grid-template-columns: repeat(2, 1fr);
  width: 50vw;
  transform: translateX(4vw);
  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 {
    padding: 30% 10% 10% 10%;
  }

  .request-appointment .content {
    width: 100%;
    transform: translate(0);

    height: 100%;
    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%;
  }
}
