/*=============== GOOGLE FONTS ===============*/
@font-face {
  font-family: "NeutraText";
  src: url("/assets/fonts/Neutraface2Text-Book.woff") format("woff"),
    url("/assets/fonts/Neutraface2Text-Book.woff2") format("woff2");
}

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  /* Change favorite color to match images */
  /*Green dark 190 - Green 171 - Grren Blue 200*/
  --hue-color: 190;

  /* HSL color mode */
  --first-color: hsl(219, 51%, 44%);
  --first-color-second: hsl(var(--hue-color), 64%, 22%);
  --first-color-alt: hsl(var(--hue-color), 64%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 35%);
  --text-color-light: hsl(var(--hue-color), 8%, 60%);
  --input-color: rgb(245, 245, 245);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: "NeutraText";
  --title-font: "NeutraText";
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
  --img-transition: 0.3s;
  --img-hidden: hidden;
  --img-scale: scale(1.1);
}

@media screen and (min-width: 968px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--title-font);
}

p {
  font-size: 20px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--first-color);
}

img {
  max-width: 100%;
  height: auto;
}

input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

span {
  font-size: var(--normal-font-size);
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 2rem 0 4rem;
  scroll-margin-top: var(--header-height);
}

.section__title {
  font-size: var(--h1-font-size);
}

.section__subtitle {
  display: block;
  font-size: 17px;
  margin-bottom: var(--mb-2-5);
}

.section__title,
.section__subtitle {
  text-align: left;
}

.container {
  max-width: 968px;
  margin-left: var(--mb-1);
  margin-right: var(--mb-1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: white;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__toggle {
  color: var(--text-color);
}

.nav__logo {
  display: grid;
  transform: translateY(0.01rem);
  width: 280px;
}

.nav__toggle {
  font-size: 1.2rem;
  cursor: pointer;
}

.nav__menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem;
    transition: 0.4s;
    backdrop-filter: blur(10px);
  }

  .nav__link::after {
    display: none;
  }

  .active-link::before {
    display: none;
  }

  .active-link {
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    color: var(--white-color);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    margin: -0.75rem -1.25rem;
    transform: scale(1.02);
    box-shadow:
      0 8px 25px rgba(72, 123, 181, 0.4),
      0 4px 10px rgba(72, 123, 181, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: mobilePulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
  }

  .active-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.5s ease;
    animation: shimmer 2s ease-in-out infinite;
  }

  @keyframes mobilePulse {

    0%,
    100% {
      box-shadow:
        0 8px 25px rgba(72, 123, 181, 0.4),
        0 4px 10px rgba(72, 123, 181, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    50% {
      box-shadow:
        0 12px 35px rgba(72, 123, 181, 0.6),
        0 6px 15px rgba(72, 123, 181, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
  }

  @keyframes shimmer {
    0% {
      left: -100%;
    }

    100% {
      left: 100%;
    }
  }

  .nav__link {
    padding: 0.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav__link:hover:not(.active-link) {
    background-color: hsla(219, 51%, 44%, 0.1);
    padding: 0.5rem 1rem;
    margin: 0 -1rem;
    transform: translateX(10px);
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.nav__link {
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav__link:hover:not(.active-link) {
  color: var(--first-color-alt);
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(72, 123, 181, 0.3);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 1px;
}

.nav__link:hover:not(.active-link)::after {
  transform: scaleX(1);
  box-shadow: 0 0 10px rgba(72, 123, 181, 0.5);
}

/* Hide hover pseudo-element on active links */
.active-link::after {
  display: none;
}

.nav__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* show menu */
.show-menu {
  right: 0;
}

/* Change background header */
.scroll-header {
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link */
.active-link {
  position: relative;
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(72, 123, 181, 0.3);
}

/* Prevent hover effects on active links */
.active-link:hover {
  color: var(--first-color) !important;
  transform: none !important;
  text-shadow: 0 0 10px rgba(72, 123, 181, 0.3) !important;
}

.active-link::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  width: 100%;
  height: 3px;
  bottom: -0.75rem;
  left: 0;
  border-radius: 2px;
  transform: scaleX(1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 8px rgba(72, 123, 181, 0.4), 0 0 20px rgba(72, 123, 181, 0.2);
  animation: glow 2s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes glow {
  from {
    box-shadow: 0 2px 8px rgba(72, 123, 181, 0.4), 0 0 20px rgba(72, 123, 181, 0.2);
  }

  to {
    box-shadow: 0 2px 12px rgba(72, 123, 181, 0.6), 0 0 30px rgba(72, 123, 181, 0.3);
  }
}

/*=============== HOME ===============*/
.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 45%;
}

.home__container {
  position: relative;
  height: calc(100vh - var(--header-height));
  align-content: center;
  row-gap: 3rem;
  padding-top: 7rem;
  min-height: 500px;
  /* Ensure minimum height for small screens */
}

.home {
  padding-bottom: 4rem;
  margin-top: 0;
  /* Ensure no additional top margin */
  position: relative;
  scroll-margin-top: var(--header-height);
}

.home__data-title,
.home__data-subtitle {
  color: black;
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-2-5);
}

.home__data-title {
  display: grid;
  font-size: 50px;
  font-weight: var(--body-font);
  margin-bottom: var(--mb-2-5);
}

.timings {
  display: flex;
  justify-content: space-between;
  width: 60%;
}

.timing_title,
.timing {
  color: black;
  font-weight: var(--font-medium);
  font-size: 22px;
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 0.7rem 1rem;
  transition: 0.3s;
  border-radius: 8px;
}

.button__home {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 0.5rem 1.5rem;
  transition: 0.3s;
  border-radius: 8px;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button__home:hover {
  background-color: var(--first-color-alt);
}

.button--flex {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
}

.button--link {
  background: none;
  padding: 0;
}

.button--link:hover {
  background: none;
}

.button__icon-home {
  display: inline-block;
  font-size: 1.25rem;
  transform: translateY(0.1rem);
  margin-left: var(--mb-0-5);
  transition: 0.3s;
}

.button__icon {
  font-size: 1.25rem;
  margin-left: var(--mb-0-5);
  transition: 0.3s;
}

.home__scroll-button {
  color: var(--first-color);
  transition: 0.3s;
}

.home__scroll-button:hover {
  transform: translateY(0.25rem);
}

.send-button {
  border: none;
  outline: none;
  cursor: pointer;
}

.send-button:hover .button__icon {
  transform: translateX(0.2rem);
}

.home__scroll-mouse {
  font-size: 2rem;
}

.home__scroll-name {
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-right: var(--mb-0-25);
}

.home__scroll-arrow {
  display: inline-block;
  font-size: 1rem;
  transform: rotate(45deg);
}

.home__scroll {
  transform: translateY(-6rem);
  justify-content: center;
}

/*=============== ABOUT ===============*/

.section__title-about {
  font-size: var(--h1-font-size);
}

.section__subtitle-about {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-2);
}

.section__title-about,
.section__subtitle-about {
  text-align: left;
}

.about__content {
  grid-template-columns: repeat(2, 1fr);
}

.about__data {
  font-size: large;
}

.about__img {
  width: 450px;
  transform: translateX(-3rem);
}

/*==================== SERVICES ====================*/
.services__container {
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.services__content {
  position: relative;
  background-color: #3760aa;
  padding: 1.5rem 0.5rem 1.25rem 1.5rem;
  border-radius: 0.25rem;
  /* box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px rgba(94, 104, 121, .288); */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.services__content:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.services__icon {
  display: block;
  font-size: 6rem;
  color: white;
  margin-bottom: var(--mb-1);
}

.services__title {
  color: #fff;
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
}

.services__description {
  color: #fff;
  font-size: var(--normal-font-size);
  margin-bottom: var(--mb-1-25);
}

.services__button {
  cursor: pointer;
  font-size: var(--font-medium);
  color: #fff;
}

.overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(to right bottom,
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0.5));
  backdrop-filter: blur(0.35rem);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: 0.5s ease;
  border-radius: 5px;
  text-align: center;
}

.over_icon {
  font-size: 7rem;
  color: rgb(8, 8, 34);
}

.text,
.coming_soon {
  color: rgb(8, 8, 34);
}

.text {
  font-size: 2rem;
  transform: translateY(-1.5rem);
}

.coming_soon {
  font-size: 3rem;
  color: #fff;
}

.services__content:hover .overlay {
  bottom: 0;
  height: 100%;
  cursor: pointer;
}

.services__description-overlay {
  color: #fff;
  font-size: 1.5rem;
}

/*==================== CONTACT ME ====================*/
.contact__container {
  grid-template-columns: 3fr 1fr;
}

.contact__information {
  display: flex;
  margin-bottom: var(--mb-2);
}

.contact__icon {
  font-size: 2rem;
  color: var(--first-color);
  margin-right: var(--mb-0-75);
}

.contact__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
}

.contact__subtitle {
  font-size: 20px;
}

.contact__content {
  background-color: var(--input-color);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem 0.25rem;
}

.contact__lable {
  font-size: var(--small-font-size);
  color: var(--title-color);
}

.contact__input {
  width: 100%;
  background-color: var(--input-color);
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  border: none;
  outline: none;
  padding: 0.25rem 0.5rem 0.5rem 0;
}

.contact__inputs {
  grid-template-columns: repeat(2, 1fr);
}

.contact__form {
  width: 460px;
}

/*==================== FOOTER ====================*/
.footer {
  padding-top: 2rem;
}

.footer__icons {
  font-size: 2rem;
}

.footer__container {
  row-gap: 2rem;
  text-align: center;
  justify-content: center;
}

.footer__bg {
  background-color: rgb(8, 8, 34);
  padding: 2rem 0 3rem;
  justify-content: center;
}

.footer__links {
  font-size: 18px;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  column-gap: 1.5rem;
}

.email,
.email__alt,
.footer__links,
.footer__text,
.footer__address,
.footer__social {
  color: #fff;
}

.email:hover,
.footer__link:hover {
  color: var(--first-color);
}

.footer__social {
  font-size: 1.25rem;
  margin-right: var(--mb-1-5);
}

.footer__social:hover {
  color: var(--first-color-lighter);
}

.footer__copy {
  font-size: var(--font-medium);
  text-align: center;
  color: var(--text-color-light);
  margin-top: var(--mb-2-5);
}

.footer__title,
.footer__subtitle,
.footer__link,
.footer__social {
  color: #fff;
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 2rem;
  bottom: -20%;
  background-color: var(--first-color);
  padding: 0.5rem;
  display: flex;
  opacity: 0.9;
  z-index: var(--z-tooltip);
  transition: 0.4s;
  border-radius: 5px;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}

/* Show scroll */
.show-scroll {
  bottom: 4rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (min-width: 340px) {}

/* For medium devices */
@media screen and (max-width: 568px) {
  .nav__logo {
    width: 220px;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
  }

  .services__container {
    display: flex;
    flex-direction: column;
  }

  .home__img {
    height: 100vh;
  }

  .about__img {
    transform: translateX(3.3rem);
    width: 450px;
  }

  .order-img img {
    width: 320px !important;
  }

  .team__container {
    grid-template-columns: 1fr !important;
  }

  .team__contact {
    text-align: center;
  }

  .timings {
    display: none;
  }

  .contact__container {
    grid-template-columns: 1fr;
  }

  .services__icon {
    font-size: 8rem;
    margin-bottom: -0.5rem;
  }

  .contact__inputs {
    grid-template-columns: 1fr;
  }

  .contact__form {
    width: auto;
  }

  .over_icon {
    font-size: 20rem;
  }
}

@media screen and (min-width: 768px) {
  :root {
    --header-height: 5rem;
    /* Increased header height for desktop */
  }

  body {
    margin: var(--header-height) 0 0 0;
    /* Ensure body margin accounts for larger header */
  }

  .section {
    scroll-margin-top: calc(var(--header-height) + 1.5rem);
  }

  .home {
    scroll-margin-top: calc(var(--header-height) + 1.5rem);
  }

  .nav {
    height: calc(var(--header-height) + 1rem);
  }

  .nav__link {
    color: var(--first-color);
    text-transform: initial;
    font-weight: var(--font-medium);
    transition: all 0.3s ease;
    position: relative;
  }

  .nav__link:hover:not(.active-link) {
    color: var(--first-color-alt);
    transform: translateY(-2px);
  }

  .nav__link::after {
    content: "";
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 1px;
  }

  .nav__link:hover:not(.active-link)::after {
    transform: scaleX(1);
  }

  /* Hide hover pseudo-element on active links in desktop */
  .active-link::after {
    display: none;
  }

  .nav__menu {
    display: flex;
    column-gap: 0.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 2.5rem;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .active-link {
    color: var(--first-color);
  }

  .active-link::before {
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    height: 3px;
    transform: scaleX(1);
    animation: activeSlide 0.5s ease;
  }

  @keyframes activeSlide {
    from {
      transform: scaleX(0);
      opacity: 0;
    }

    to {
      transform: scaleX(1);
      opacity: 1;
    }
  }

  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr 0.5fr;
    padding-top: 9rem;
  }

  .home__data {
    align-self: flex-end;
  }

  .home__info {
    bottom: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    scroll-margin-top: calc(var(--header-height) + 0.5rem);
  }

  .home {
    scroll-margin-top: calc(var(--header-height) + 0.5rem);
  }

  .about__content {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
  }

  .nav__logo {
    width: 220px;
  }

  .home__data-title {
    font-size: 1.7rem;
  }

  .home__data-subtitle {
    font-size: 1.2rem;
  }

  .home__container {
    padding-top: 2rem;
  }

  .timings {
    width: 80%;
  }

  .about__img {
    width: 320px;
    transform: translateX(1.5rem);
  }

  .section__title,
  .section__title-about,
  .section__subtitle-about,
  .section__subtitle {
    text-align: center;
  }

  .over_icon {
    font-size: 6rem;
  }

  .text {
    padding-top: 1rem;
  }

  .coming_soon {
    font-size: 2rem;
  }

  .services__description-overlay {
    font-size: 1.3rem;
    padding: 0 5px;
    transform: translateY(-0.5rem);
  }
}

/* For extra small mobile devices */
@media screen and (max-width: 480px) {
  .home__container {
    padding-top: 5rem;
  }

  .home__data-title {
    font-size: 1.5rem;
  }

  .home__data-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }

  .timings {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .timing_heading,
  .timing {
    text-align: center;
  }
}

/* For tablet devices */
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .section {
    scroll-margin-top: calc(var(--header-height) + 1.2rem);
  }

  .home {
    scroll-margin-top: calc(var(--header-height) + 1.2rem);
  }

  .home__container {
    padding-top: 7rem;
  }

  .home__data-title {
    font-size: 2.2rem;
  }

  .home__data-subtitle {
    font-size: 1.3rem;
  }

  .timings {
    width: 70%;
  }
}

/* For mobile landscape orientation */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .home__container {
    padding-top: 4rem;
    height: calc(100vh - var(--header-height));
  }

  .home__data-title {
    font-size: 1.8rem;
  }

  .home__data-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .home__container {
    grid-template-rows: 2fr 0.5fr;
    padding-top: 5rem;
  }

  .home__data-subtitle {
    margin-bottom: 2rem;
  }

  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: 2rem;
  }

  .home__info-title {
    font-size: var(--normal-font-size);
  }

  .home__info-img {
    width: 240px;
  }
}

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

/* For tall screens on mobiles y desktop*/
@media screen and (min-height: 721px) {

  .home__container,
  .home__img {
    height: 740px;
  }
}

.clinic-table {
  border-collapse: collapse;
  margin: 25px 25px;
  font-size: 1rem;
  border-radius: 5px;
  color: black;
  border: 1px solid black;
  padding: 5px 0;
  transform: translateY(-1rem);
}

.clinic-table li {
  padding: 5px;
  text-align: center;
  border-bottom: 1px solid black;
}

.clinic-table li:last-child {
  border-bottom: none;
}

.collection_table {
  overflow-y: scroll;
  height: 150px;
}

.collection_table::-webkit-scrollbar {
  width: 0.2rem;
  background-color: transparent;
}

.collection_table::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: 25px;
}

.presc-upload {
  padding: 10px 0;
}

.presc-upload {
  margin: 10px 0;
  padding: 1.5rem;
  border: 2px dashed var(--title-color);
  border-radius: 10px;
  background-color: var(--body-color);
  transition: background-color 0.3s ease;
  width: 100%;
}

.presc-upload:hover {
  background-color: var(--scroll-bar-color);
}

.order-img img {
  width: 400px;
  max-width: 600px;
}

.hidden {
  display: none;
}

.team__container {
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.team__content {
  padding: 2.5rem 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.team__title {
  font-size: 1.5rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
}

.team__description {
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-1);
}

.team__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  margin-top: var(--mb-2-5);
}