@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat",sans-serif;
  line-height: 1.5;
  color: rgba(12, 3, 27, 0.7);
  background: rgba(103, 143, 254, 0.1);
  user-select: none;
}

.container {
  width: 82%;
  margin: 0 auto;
}

img {
  display: block;
  width: 100%;
}

h1, h2, h3, h4, h5 {
  line-height: 1.2;
}

section {
  margin-top: 6rem;
}

section > h2 {
  text-align: center;
}

section > p {
  text-align: center;
  width: 42%;
  margin: 0.6rem auto 2.5rem;
}

.btn {
  display: inline-block;
  width: fit-content;
  padding: 0.75rem 1rem;
  border-radius: 0.4rem;
  background: #FF725E;
  color: #DBE5FF;
  cursor: pointer;
  transition: all 400ms ease;
}

.btn:hover {
  background: #ffcbc4;
  box-shadow: 0 1rem 1.6rem rgba(12, 3, 27, 0.15);
}

.btn-primary {
  display: inline-block;
  width: fit-content;
  padding: 0.75rem 1rem;
  border-radius: 0.4rem;
  background: #091534;
  color: #DBE5FF;
  cursor: pointer;
  transition: all 400ms ease;
}

.btn-primary:hover {
  background: #18388b;
  box-shadow: 0 1rem 1.6rem rgba(12, 3, 27, 0.15);
}

@media screen and (max-width: 1024px) {
  .container {
    width: 80%;
  }
}

@media screen and (max-width: 600px) {
  section > p {
    width: 90%;
  }
}

nav {
  width: 100vw;
  height: 5rem;
  position: fixed;
  z-index: 10;
  display: grid;
  place-items: center;
  box-shadow: 0 1rem 1rem rgba(12, 3, 27, 0.1);
  background: linear-gradient(135deg, #091534, #678FFE);
  color: #DBE5FF;
  /*navbar styles using js*/
}

nav h1, nav h2, nav h3, nav h4, nav h5 {
  color: #DBE5FF;
}

nav.window-scroll {
  background: #DBE5FF;
}

nav.window-scroll .container button {
  color: #0c031b;
}

nav.window-scroll .container a {
  color: #0c031b;
}

nav.window-scroll .container a > h3 {
  color: #0c031b;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .container ul {
  display: flex;
  gap: 3rem;
  align-items: center;
}

nav .container button {
  display: none;
}

nav .container a {
  color: #DBE5FF;
  font-weight: 400;
  font-size: 0.9rem;
}

nav .container .nav__logo h3 {
  color: #DBE5FF;
}

nav .container img {
  width: 24px;
  height: 24px;
  padding-right: 0.1rem;
}

nav .container .company_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  nav {
    /* navbar style on scroll using js*/
  }
  nav.window-scroll .container a {
    color: #DBE5FF;
  }
  nav .container button {
    display: inline-block;
    background: transparent;
    color: #DBE5FF;
    font-size: 2rem;
    cursor: pointer;
  }
  nav .container button#close__nav-btn {
    display: none;
  }
  nav .container ul {
    position: fixed;
    right: 5%;
    top: 5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    display: none;
    perspective: 300px;
  }
  nav .container ul li {
    width: 100%;
    opacity: 0;
    animation: flipNavItem 300ms ease forwards;
    transform-origin: top;
  }
  nav .container ul li:nth-child(2) {
    animation-delay: 200ms;
  }
  nav .container ul li:nth-child(3) {
    animation-delay: 400ms;
  }
  nav .container ul li:nth-child(4) {
    animation-delay: 600ms;
  }
  nav .container ul li:nth-child(5) {
    animation-delay: 800ms;
  }
  @keyframes flipNavItem {
    0% {
      transform: rotateX(90deg);
    }
    100% {
      transform: rotateX0deg();
      opacity: 1;
    }
  }
  nav .container ul li a {
    color: #DBE5FF;
    height: 100%;
    display: block;
    padding: 1.5rem 2rem;
    border-radius: 0;
    background: linear-gradient(#678FFE, #2a62fe);
  }
  nav .container ul li a.btn {
    background: #FF725E;
  }
}

header {
  background: linear-gradient(135deg, #091534, #678FFE);
  color: #DBE5FF;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

header h1, header h2, header h3, header h4, header h5 {
  color: #DBE5FF;
}

header .container {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 46% 46%;
  align-items: center;
  gap: 8%;
  justify-content: space-between;
}

header .container .header__content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -3px;
  font-weight: 300;
}

header .container .header__content p {
  margin: 1rem 0 2rem;
  color: rgba(219, 229, 255, 0.7);
  font-size: 1.1rem;
}

@keyframes glowing {
  0% {
    background-color: #2ba805;
    box-shadow: 0 0 5px #2ba805;
  }
  50% {
    background-color: #49e819;
    box-shadow: 0 0 20px #49e819;
  }
  100% {
    background-color: #2ba805;
    box-shadow: 0 0 5px #2ba805;
  }
}

.wp_fab_ic {
  position: fixed;
  right: 94%;
  bottom: 5%;
  animation: glowing 1300ms infinite;
  border-radius: 100%;
}

.wp_fab_ic a i {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #28D146;
  height: 50px;
  width: 50px;
  font-size: 2.5rem;
  color: #DBE5FF;
}

@media screen and (max-width: 1024px) {
  header {
    height: 60vh;
  }
  header .container {
    gap: 1rem;
  }
  header .container .header__content h1 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 600px) {
  header {
    height: 100vh;
    padding-top: 2rem;
  }
  header .container {
    margin-top: 1rem;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .wp_fab_ic {
    left: 85%;
    bottom: 5%;
  }
}

#services .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

#services .container article {
  background: linear-gradient(135deg, #091534, #678FFE);
  color: #DBE5FF;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  gap: 1.5rem;
  height: fit-content;
  transition: all 400ms ease;
}

#services .container article h1, #services .container article h2, #services .container article h3, #services .container article h4, #services .container article h5 {
  color: #DBE5FF;
}

#services .container article:hover {
  margin-top: -0.5rem;
}

#services .container article i {
  font-size: 1.7rem;
}

#services .container article div h4 {
  margin-bottom: 1rem;
}

@media screen and (max-width: 1024px) {
  #services .container {
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
  #services .container article {
    padding: 1.2rem;
    gap: 0.8rem;
  }
  #services .container article:hover {
    margin: 0;
  }
}

@media screen and (max-width: 600px) {
  #services .container {
    grid-template-columns: 1fr;
  }
  #services .container article div h4 {
    margin-bottom: 0.8rem;
  }
}

#specialist .container {
  width: 68%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

#specialist .container article {
  background: #DBE5FF;
  border-radius: 1rem;
  box-shadow: 0 1.5rem 1.5rem rgba(12, 3, 27, 0.1);
  position: relative;
  transition: all 700ms ease;
}

#specialist .container article:hover {
  box-shadow: none;
}

#specialist .container article:hover .specialist__img::before {
  left: 0;
  border-radius: 1rem;
}

#specialist .container article:hover .specialist__socials {
  opacity: 1;
  visibility: visible;
}

#specialist .container article .specialist__img {
  height: 20rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

#specialist .container article .specialist__img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  left: -100%;
  background: linear-gradient(135deg, rgba(9, 21, 52, 0.8), rgba(103, 143, 254, 0.8));
  border-radius: 50%;
  transition: all 1s ease;
}

#specialist .container article .specialist__details {
  margin: 1.5rem 0;
  text-align: center;
}

#specialist .container article .specialist__socials {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 1s 400ms ease;
}

#specialist .container article .specialist__socials a {
  background: #DBE5FF;
  color: #091534;
  padding: 0.4rem;
  display: flex;
  font-size: 1rem;
  border-radius: 50%;
  transition: all 400ms ease;
}

#specialist .container article .specialist__socials a:hover {
  background: #091534;
  color: #DBE5FF;
}

@media screen and (max-width: 600px) {
  #specialist .container {
    grid-template-columns: 1fr;
  }
}

.swiper {
  width: 82%;
}

.swiper .swiper-wrapper {
  margin-bottom: 4rem;
}

.swiper .swiper-wrapper .swiper-slide {
  background: linear-gradient(135deg, #091534, #678FFE);
  color: #DBE5FF;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  cursor: default;
  font-size: 0.9rem;
}

.swiper .swiper-wrapper .swiper-slide h1, .swiper .swiper-wrapper .swiper-slide h2, .swiper .swiper-wrapper .swiper-slide h3, .swiper .swiper-wrapper .swiper-slide h4, .swiper .swiper-wrapper .swiper-slide h5 {
  color: #DBE5FF;
}

.swiper .swiper-wrapper .swiper-slide p {
  margin-bottom: 1.5rem;
}

.swiper .swiper-wrapper .swiper-slide .patient {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.swiper .swiper-wrapper .swiper-slide .patient .avatar {
  width: 2.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.swiper .swiper-pagination-bullet {
  background: #091534;
}

@media screen and (max-width: 600px) {
  .swiper .swiper-wrapper .swiper-slide {
    padding: 1.5rem;
  }
}

#appointment .container {
  display: grid;
  grid-template-columns: 47% 47%;
  gap: 6%;
}

#appointment .container .info p {
  margin: 0.5rem 0 2rem;
}

#appointment .container .info article {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

#appointment .container .info article img {
  width: 60%;
}

#appointment .container form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

#appointment .container form .form__group label {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  display: inline-block;
  font-weight: 600;
}

#appointment .container form .form__group input, #appointment .container form .form__group textarea, #appointment .container form .form__group select {
  background: #DBE5FF;
  padding: 0.85rem 1rem;
  display: block;
  width: 100%;
  border-radius: 0.4rem;
  resize: none;
  appearance: none;
}

@media screen and (max-width: 600px) {
  #appointment .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #appointment .container .info h2, #appointment .container .info p {
    text-align: center;
  }
  #appointment .container .info article img {
    width: 100%;
  }
}

footer {
  background: #0c031b;
  color: rgba(219, 229, 255, 0.7);
  padding-top: 6rem;
  margin-top: 6rem;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  font-size: 0.9rem;
}

footer .container a {
  color: rgba(219, 229, 255, 0.7);
  transition: all 400ms ease;
}

footer .container a:hover {
  color: #DBE5FF;
}

footer .container a > h3 {
  color: #ffffff;
}

footer .container article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer .container article > div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

footer .container article > h3 {
  color: #ffffff;
}

footer .container .footer__socials {
  gap: 1rem;
  font-size: 1.4rem;
}

.copyright {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(219, 229, 255, 0.2);
  font-size: 0.9rem;
}

.copyright small a {
  text-decoration: underline;
  color: rgba(219, 229, 255, 0.7);
}

.copyright small a:hover {
  color: #DBE5FF;
}

.copyright div {
  margin-top: .5rem;
}

.copyright div a {
  color: rgba(219, 229, 255, 0.7);
}

.copyright div a:hover {
  color: #DBE5FF;
}

@media screen and (max-width: 1024px) {
  footer .container {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 600px) {
  footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  footer .container article > div {
    justify-content: center;
  }
}

.privacy > p {
  padding: .5rem 0;
}

.privacy h1 {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 2px solid #FF725E;
}

.p_container {
  padding: 0 4rem;
}

@media screen and (max-width: 600px) {
  .privacy h1 {
    font-size: 1.4rem;
  }
  .p_container {
    padding: 0 1rem;
  }
}
/*# sourceMappingURL=style.css.map */