.main #contact {
  padding: 3rem 0;
  background: linear-gradient(#D7D7D7 25%, #D7D7D7 25%, #fff 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.main #contact .top {
  width: 80%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--clr-secondary);
  border-radius: 1rem;
  color: #000;
  border: 1px solid rgba(241, 241, 241, 0.3);
  box-shadow: var(--bottom-box-shadow);
  margin: 2rem 0;
}
.main #contact .top .left {
  color: #000;
  font-weight: 600;
}
.main #contact .top .line-ctn {
  display: none;
}
.main #contact .top .line {
  width: 75%;
  background-color: #000;
  height: 2px;
  margin: 0.75rem 0 1.25rem;
}
.main #contact .top .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
}
.main #contact .top .right .time-block {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}
.main #contact .top .right .time-block .day {
  color: var(--clr-primary);
  font-weight: bold;
  text-align: right;
}
.main #contact .top .right .time-block .time-p {
  font-weight: 100;
}
.main #contact .top .right .time-block .day, .main #contact .top .right .time-block .time-p {
  font-size: 0.75rem;
  flex: 1;
  padding: 0 1rem;
  margin: 0.5rem 0;
  white-space: nowrap;
}
.main #contact .bottom {
  padding: 2rem 1rem 20rem;
  border: 1px solid #D7D7D7;
  box-shadow: var(--bottom-box-shadow);
  width: 95%;
  border-radius: 1rem;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main #contact .bottom::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: -2;
}
.main #contact .bottom::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: url(../../images/pages/contact/doctor-1.png) bottom left no-repeat;
  background-size: 15rem auto;
  background-position-x: -2rem;
  background-position-y: bottom;
}
.main #contact .bottom .left {
  margin: 2rem 0;
}
.main #contact .bottom .left .title-block {
  margin-left: 1rem;
}
.main #contact .bottom .left .title-block .contact-list {
  margin-left: 0.5rem;
}
.main #contact .bottom .left .title-block .contact-list .contact-block {
  margin: 0.125rem 0;
}
.main #contact .bottom .left .title-block .contact-list .img-ctn {
  width: 2rem;
}
.main #contact .bottom .left .title-block .contact-list .name {
  font-size: 0.65rem;
  font-weight: 600;
}
.main #contact .bottom .right {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.main #contact .bottom .right .title-block {
  margin-bottom: 2rem;
  margin-left: 2rem;
}
.main #contact .bottom .right #contact-form {
  align-self: center;
  border: 2px solid var(--clr-secondary);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  padding: 5rem 5%;
  width: 100%;
}
.main #contact .bottom .right #contact-form .center {
  display: flex;
  flex-direction: column;
}
.main #contact .bottom .right #contact-form .center input, .main #contact .bottom .right #contact-form .center textarea {
  font-size: 0.85rem;
  background-color: transparent;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-bottom: 3px solid var(--clr-secondary);
  margin: 0.25rem 0;
  resize: none;
}
.main #contact .bottom .right #contact-form .center input::-moz-placeholder, .main #contact .bottom .right #contact-form .center textarea::-moz-placeholder {
  color: var(--clr-tertiary-dark);
}
.main #contact .bottom .right #contact-form .center input:-ms-input-placeholder, .main #contact .bottom .right #contact-form .center textarea:-ms-input-placeholder {
  color: var(--clr-tertiary-dark);
}
.main #contact .bottom .right #contact-form .center input::placeholder, .main #contact .bottom .right #contact-form .center textarea::placeholder {
  color: var(--clr-tertiary-dark);
}
.main #contact .bottom .right #contact-form .center input:focus, .main #contact .bottom .right #contact-form .center input:active, .main #contact .bottom .right #contact-form .center input:focus-visible, .main #contact .bottom .right #contact-form .center textarea:focus, .main #contact .bottom .right #contact-form .center textarea:active, .main #contact .bottom .right #contact-form .center textarea:focus-visible {
  outline: none;
}
.main #contact .bottom .right #contact-form .btn-ctn {
  align-self: center;
  margin-top: 2rem;
}
@media screen and (min-width: 1024px) {
  .main #contact .bottom .right #contact-form {
    margin: 1rem 0;
    padding: 5rem 5rem;
    width: 90%;
  }
  .main #contact .bottom .right #contact-form .center input, .main #contact .bottom .right #contact-form .center textarea {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  .main #contact {
    padding: 3rem 0;
    background: linear-gradient(#D7D7D7 50%, #D7D7D7 50%, #fff 50%);
    margin-bottom: 10rem;
  }
  .main #contact .top {
    padding: 1rem 2rem;
    flex-direction: row;
    height: 10rem;
  }
  .main #contact .top .left {
    flex: 4;
    text-align: right;
    font-size: 2.5rem;
    padding: 0 2rem;
    margin-top: 2rem;
  }
  .main #contact .top > .line {
    display: none;
  }
  .main #contact .top .line-ctn {
    height: 95%;
    display: block;
  }
  .main #contact .top .line-ctn .line {
    width: 2px;
    height: 100%;
    margin: 0;
  }
  .main #contact .top .right {
    align-items: flex-start;
    width: auto;
    flex: 2;
    margin-top: 2rem;
  }
  .main #contact .top .right .time-block {
    width: 60%;
  }
  .main #contact .top .right .time-block .day {
    font-weight: bolder;
  }
  .main #contact .top .right .time-block .time-p {
    font-weight: 300;
  }
  .main #contact .top .right .time-block .day, .main #contact .top .right .time-block .time-p {
    font-size: 0.9rem;
    margin: 0.125rem 0;
  }
  .main #contact .bottom {
    padding: 6rem 4rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .main #contact .bottom::after {
    background: url(../../images/pages/contact/doctor-1.png) bottom left no-repeat;
    background-size: auto 85%;
    background-position-x: -3.75rem;
    pointer-events: none;
  }
  .main #contact .bottom .left, .main #contact .bottom .right {
    flex: 1;
  }
  .main #contact .bottom .left {
    margin: 0;
  }
  .main #contact .bottom .left .title-block .contact-list .img-ctn {
    width: 3rem;
  }
  .main #contact .bottom .left .title-block .contact-list .name {
    font-size: 1rem;
    font-weight: 300;
  }
  .main #contact .bottom .right .title-block {
    margin-left: 4rem;
  }
}/*# sourceMappingURL=contact.css.map */