/* -=+=-=+=-=+=- UNIVERSAL -=+=-=+=-=+=- */
/**/

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.5s;
}

html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--COLOR-01);
  display: flex;
  flex-flow: column nowrap;
  font-family: var(--FONT-STYLE-01);
  line-height: var(--FONT-HEIGHT);
  margin: 0;
  padding: 0;
}

main {
  flex-grow: 1;
  min-width: 0;
}

section {
  scroll-margin-top: 1rem;
}

img {
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.nowrap {
  text-wrap: nowrap;
}

.service--container,
.doctor--container,
.location--container,
.footer_container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/**/
/* -=+=-=+=-=+=-  ANIMATION -=+=-=+=-=+=- */
/**/

/* HOME */
.ANIMATION-00-HOME {
  animation: var(--ANIMATION-01-SLIDE);
}
@keyframes slideup {
  from {
    transform: translateY(40%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* SLIDE UP */
.ANIMATION-01-SLIDE.is-visible {
  animation: var(--ANIMATION-01-SLIDE);
}
@keyframes slideup {
  from {
    transform: translateY(150%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* FADE IN */
.ANIMATION-02-FADE {
  overflow: hidden;
  opacity: 0;
}
.ANIMATION-02-FADE.is-visible {
  animation: var(--ANIMATION-02-FADE);
  animation-delay: calc(var(--fade) * 0.1s);
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/**/
/* -=+=-=+=-=+=-  ROOTS FOR VAR -=+=-=+=-=+=- */
/**/

:root {
  /* COLOR */
  --COLOR-01: #0d1b2a;
  --COLOR-02: #ce9d2c;
  --COLOR-03: #c49e85;
  --COLOR-01-01: #1b263b;
  --COLOR-01-02: #415a77;
  --COLOR-02-01: #e4c681;
  --COLOR-02-02: #7e601b;
  --COLOR-02-03: #544012;
  --COLOR-02-04: #2a2009;
  --COLOR-03-01: #674732;
  --COLOR-03-02: #ac7753;
  --COLOR-03-03: #dec8ba;
  --COLOR-03-04: #eee4dd;
  --COLOR-EXTRA-01: #ffffff;
  --COLOR-EXTRA-02: #000000;

  /* FONT STYLE */
  --FONT-SIZE--TITLE: 2.618rem;
  --FONT-SIZE--SUBTITLE: 1.618rem;
  --FONT-SIZE--TEXT: 1rem;

  --FONT-SIZE--TITLE--NOREM: 2.618;
  --FONT-SIZE--SUBTITLE--NOREM: 1.618;
  --FONT-SIZE--TEXT--NOREM: 1;

  --FONT-STYLE-01: Verdana, Geneva, Tahoma, sans-serif;
  --FONT-HEIGHT: 1.618;
  --FONT-INDENT: 2em;
  --FONT-BOLD: 800;
  --FONT-NORMAL: 400;

  /* MODIFIER */
  --SHADOWS: 2px 2px 10px var(--COLOR-EXTRA-02);
  --GLOW: 0px 0px 8px 2px var(--COLOR-EXTRA-01);

  --BORDER-HEAVY: 5px solid var(--COLOR-EXTRA-01);
  --BORDER-SHADOW: 0 2px 10px var(--COLOR-EXTRA-02);

  /* GLASSMORPHISM */
  --GLASS-DARK-BG: rgb(from var(--COLOR-EXTRA-02) r g b / 0.1);
  --GLASS-DARK-BACKDROP: blur(8px) saturate(160%);
  --GLASS-DARK-BORDER: 1px solid rgb(from var(--COLOR-EXTRA-02) r g b / 0.25);
  --GLASS-SHADOW:
    0 10px 30px rgb(0 0 0 / 15%), inset 0 1px 1px rgb(255 255 255 / 40%);
  --GLASS-RADIUS: 12px;
  --GLASS-HIGHLIGHT: linear-gradient(
    135deg,
    rgb(255 255 255 / 20%),
    transparent 40%
  );

  --GLASS-LIGHT-BG: rgb(from var(--COLOR-EXTRA-01) r g b / 0.1);
  --GLASS-LIGHT-BORDER: 1px solid rgb(from var(--COLOR-EXTRA-01) r g b / 0.25);

  --GLASS-GOLD-BORDER: 1px solid rgb(from var(--COLOR-02-01) r g b / 0.6);
  --GLASS-GOLD-SHADOW:
    0 10px 30px rgb(from var(--COLOR-02-01) r g b / 0.3),
    inset 0 1px 1px rgb(255 255 255 / 40%);

  /* ANIMATION */
  --ANIMATION-01-SLIDE: slideup 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  --ANIMATION-02-FADE: fadein 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/**/
/* -=+=-=+=-=+=-  A. HEADER -=+=-=+=-=+=- */
/**/

.header {
  border-bottom: var(--BORDER-HEAVY);
}
.header_container {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
}

.header img {
  height: auto;
  object-fit: contain;
  padding-left: 1rem;
  width: clamp(200px, 200px + 1vw, 300px);
}
.header ul {
  display: flex;
  flex-flow: column nowrap;
  font-size: var(--FONT-SIZE--SUBTITLE);
  font-weight: calc(var(--FONT-BOLD) / 2);
  list-style: none;
  margin: 0 0 1rem 0;
  padding-left: 1rem;
  text-align: left;
}

.header_nav--contact {
  align-content: center;
  background-color: var(--COLOR-03);
  font-weight: var(--FONT-BOLD);
  height: 40px;
  text-align: center;
  text-wrap: nowrap;
  width: 200px;
  border-radius: 15px;
  box-shadow: var(--SHADOWS);
}

.header nav li:nth-child(5) a:any-link {
  color: var(--COLOR-EXTRA-01);
  transform: none;
}

/* HAMBURGER NAV: START */

.header_menu-button {
  align-items: center;
  background-color: transparent;
  border: none;
  display: flex;
  height: 48px;
  justify-content: center;
  padding-right: 2rem;
  position: relative;
  width: 48px;
}

.header nav {
  animation: showmenu 0.5s ease-in-out forwards;
  display: none;
  transform-origin: top center;
}
.header nav li a:any-link {
  color: var(--COLOR-02);
}
.header nav li :is(a:hover, a:focus) {
  color: var(--COLOR-02);
  display: inline-block;
  filter: brightness(1.2);
  transform: scale(1.1);
  transition: all 0.3s;
}

.header_menu-icon,
.header_menu-icon::before,
.header_menu-icon::after {
  background-color: var(--COLOR-EXTRA-01);
  border-radius: 5px;
  height: 5px;
  position: absolute;
  transition: all 0.5s ease-in-out;
  width: 40px;
}
.header_menu-icon::before,
.header_menu-icon::after {
  content: "";
  position: absolute;
}
.header_menu-icon::before {
  transform: translate(-20px, -12px);
}
.header_menu-icon::after {
  transform: translate(-20px, 12px);
}

@keyframes showmenu {
  0% {
    transform: scaleY(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

:is(header:hover, header:focus-within) .header_menu-icon {
  background-color: transparent;
  transform: rotate(720deg);
}
:is(header:hover, header:focus-within) .header_menu-icon::before {
  background-color: transparent;
  transform: translatex(-20px) rotate(-45deg);
}
:is(header:hover, header:focus-within) .header_menu-icon::after {
  background-color: transparent;
  transform: translatex(-20px) rotate(45deg);
}
:is(header:hover, header:focus-within) nav {
  display: block;
}

/* HAMBURGER NAV: END */

@media (min-width: 768px) {
  .header {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
  }
  .header_menu-button {
    display: none;
  }
  .header nav {
    animation: none;
    display: inline;
  }
  .header_nav--contact {
    height: 30px;
    width: clamp(120px, 120px + 1vw, 150px);
  }
  .header_nav--contact:hover,
  .header_nav--contact:focus {
    display: inline-block;
    transform: scale(1.1);
    transition: all 0.3s;
  }

  .header ul {
    display: flex;
    flex-flow: row nowrap;
    font-size: var(--FONT-SIZE--TEXT);
    gap: clamp(0.5rem, 0.5rem + 1vw, 2rem);
    margin: 0;
    padding-right: clamp(1rem, 1rem + 1vw, 4rem);
  }
  .header li {
    border: none;
  }
}

/**/
/* -=+=-=+=-=+=-  01. HERO -=+=-=+=-=+=- */
/**/

/* .home {
  border-bottom: var(--BORDER-HEAVY);
} */
.home h1,
.home p {
  padding: 0;
  margin: 0;
}

.home--container {
  align-content: center;
  background-image: url(IMAGES/HERO/HERO-01--BACKGROUND--2160x1440.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 50vh;
  text-align: left;
  width: auto;
  border-bottom: var(--BORDER-HEAVY);
}
.home--body {
  align-content: center;
  background-color: rgb(from var(--COLOR-EXTRA-02) r g b / 0.6);
  height: 100%;
  min-height: 60vh;
  overflow: hidden;
}

/*animation*/
.home--body--box {
  align-content: center;
  justify-items: center;
  transform: translateY(150%);
  opacity: 0;
}
/**/

.home--body--title {
  color: var(--COLOR-02);
  font-size: var(--FONT-SIZE--TITLE);
  margin: 0;
  padding: 0.5rem;
}
.home--body--subtitle {
  color: var(--COLOR-EXTRA-01);
  font-size: var(--FONT-SIZE--SUBTITLE);
  margin: 0;
  padding: 0.5rem;
  text-align: center;
}
.home--body--text {
  color: rgb(from var(--COLOR-EXTRA-01) r g b / 0.8);
  filter: brightness(1.2);
  font-size: var(--FONT-SIZE--TEXT);
  text-shadow: var(--SHADOWS);
  margin: 0.5rem 1.5rem;
  text-align: center;
}
.home--body--contact {
  align-content: center;
  background-color: var(--COLOR-03);
  border-radius: 50px;
  box-shadow: var(--SHADOWS);
  font-size: var(--FONT-SIZE--TEXT);
  font-weight: var(--FONT-BOLD);
  height: 30px;
  text-align: center;
  text-wrap: nowrap;
  width: clamp(150px, 200px + 1vw, 250px);
}

.home--body--contact a:any-link {
  color: var(--COLOR-EXTRA-01);
}

@media screen and (min-width: 768px) and (orientation: portrait) {
  .home--body--title {
    font-size: calc(1rem * var(--FONT-SIZE--SUBTITLE--NOREM) * pow(1.618, 1));
  }
  .home--body--subtitle {
    font-size: calc(1rem * var(--FONT-SIZE--SUBTITLE--NOREM) * pow(1.618, 0));
  }
  .home--body--contact {
    font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 1));
    height: 45px;
    width: clamp(300px, 300px + 1vw, 500px);
  }
  .home--body--text {
    font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 1));
  }
}

@media (min-width: 1024px) {
  .home--body--title {
    font-size: calc(1rem * var(--FONT-SIZE--SUBTITLE--NOREM) * pow(1.618, 1.5));
  }

  .home--body--subtitle {
    font-size: calc(1rem * var(--FONT-SIZE--SUBTITLE--NOREM) * pow(1.618, 1.5));
  }
  .home--body--contact {
    font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 1.5));
    height: 60px;
    width: clamp(450px, 450px + 1vw, 500px);
  }
  .home--body--text {
    font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 1.5));
  }
}

@media (orientation: landscape) {
  .home--body {
    padding: 5rem;
  }
}

/**/
/* -=+=-=+=-=+=-  02. SERVICES  -=+=-=+=-=+=- */
/**/

.service--container {
  padding: 1rem;
}

.service_header--title {
  color: var(--COLOR-02);
  font-size: var(--FONT-SIZE--SUBTITLE);
  margin: 0;
  padding: 0;
}
.service_header--subtitle {
  color: var(--COLOR-EXTRA-01);
  font-size: var(--FONT-SIZE--TEXT);
  margin: 0;
  padding: 0;
}

.service_body {
  align-items: stretch;
  display: grid;
  gap: 1.5rem;
  grid-auto-rows: minmax(200px, auto);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0 1rem 0;
}

.service_body_box {
  background-color: var(--COLOR-03);
  border-radius: 20px;
  box-shadow: var(--SHADOWS);
  box-sizing: border-box;
  display: inline-block;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  padding-bottom: 1.5rem;
  text-align: center;
}

/* ANIMATION */
.service_body :is(:hover, :focus) {
  transform: scale(1.02);
  box-shadow: var(--GLOW);
  background-color: var(--COLOR-02);
  border-radius: 20px;
}
.service_body_box :is(:hover, :focus) {
  transform: none;
  box-shadow: none;
}
/**/

.service_body_box--image {
  border-radius: 20px 20px 0 0;
  height: auto;
  object-fit: cover;
  max-width: 100%;
  margin-bottom: 0.5rem;
}
.service_body_box--title {
  color: var(--COLOR-EXTRA-02);
  font-size: var(--FONT-SIZE--TEXT);
  font-weight: var(--FONT-BOLD);
  margin: 0;
  padding: 0.5rem;
}
.service_body_box--text {
  color: var(--COLOR-EXTRA-01);
  font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) / pow(1.618, 0));
  margin: 0;
  padding: 0.5rem;
}

.service_footer_container {
  align-content: center;
  background-image: url(IMAGES/SERVICE/SERVICE-08--GENERAL--1920x1080.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: var(--BORDER-HEAVY);
  border-top: var(--BORDER-HEAVY);
  height: 100%;
  justify-items: center;
  min-height: 30vh;
  padding: 2rem;
  text-align: center;
  width: auto;
}
.service_footer_contact {
  -webkit-backdrop-filter: var(--GLASS-DARK-BACKDROP);
  backdrop-filter: var(--GLASS-DARK-BACKDROP);
  background: var(--GLASS-DARK-BG);
  border-radius: var(--GLASS-RADIUS);
  border: var(--GLASS-DARK-BORDER);
  box-shadow: var(--GLASS-SHADOW);
  padding: 4rem 2rem;
  justify-items: center;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.service_footer_contact--text {
  font-size: var(--FONT-SIZE--SUBTITLE);
  color: var(--COLOR-EXTRA-01);
  font-weight: var(--FONT-BOLD);
  text-shadow: var(--SHADOWS);
  margin: 0 0 1rem;
}
.service_footer_contact--link {
  align-items: center;
  background-color: #25d366;
  border-radius: 50px;
  box-shadow: var(--SHADOWS);
  color: var(--COLOR-EXTRA-01);
  display: inline-flex;
  font-size: var(--FONT-SIZE--TEXT);
  font-weight: var(--FONT-BOLD);
  height: 50px;
  justify-content: center;
  padding: 0 1.5rem;
  text-wrap: nowrap;
  width: clamp(200px, 200px + 1vw, 300px);
  margin-bottom: 1rem;
}
.service_footer_contact--download {
  align-items: center;
  background-color: var(--COLOR-01-02);
  border-radius: 50px;
  box-shadow: var(--SHADOWS);
  color: var(--COLOR-EXTRA-01);
  display: inline-flex;
  font-size: var(--FONT-SIZE--TEXT);
  font-weight: var(--FONT-BOLD);
  height: 50px;
  justify-content: center;
  padding: 0 1.5rem;
  text-wrap: nowrap;
  width: clamp(200px, 200px + 1vw, 300px);
}
.service_footer_contact img {
  display: inline;
  height: 70%;
  width: auto;
  filter: invert(1);
}
.service_footer_contact a:any-link {
  color: var(--COLOR-EXTRA-01);
}

.service_footer_contact a:is(:hover, :focus) {
  transform: scale(1.02);
  box-shadow: var(--GLOW);
  background-color: #20ba5a;
}
.service_footer_contact a:is(:hover, :focus):nth-child(3) {
  transform: scale(1.02);
  box-shadow: var(--GLOW);
  background-color: var(--COLOR-01-01);
}

@media (min-width: 768px) and (orientation: portrait) {
  .service_header--title {
    font-size: calc(1rem * var(--FONT-SIZE--SUBTITLE--NOREM) * pow(1.618, 0.5));
  }
  .service_header--subtitle {
    font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 0.5));
  }
  .service_body {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service_body_box--title {
    font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 1));
  }
  .service_body_box--text {
    font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 0.5));
  }
}

@media (min-width: 1024px) {
  .service_header--title {
    font-size: var(--FONT-SIZE--TITLE);
  }
  .service_header--subtitle {
    font-size: var(--FONT-SIZE--SUBTITLE);
  }

  .service_body {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .service_body_box--title {
    font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 1));
  }
  .service_body_box--text {
    font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 0.5));
  }

  .service_footer_contact--text {
    font-size: var(--FONT-SIZE--TITLE);
  }

  .service_footer_contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 0rem;
  }
  .service_footer_contact--text {
    grid-column: span 2;
  }
  .service_footer_contact--link {
    margin-bottom: 0;
  }

  .service_footer_contact--link,
  .service_footer_contact--download {
    font-size: var(--FONT-SIZE--SUBTITLE);
    width: clamp(250px, 250px + 5vw, 350px);
  }
}

/**/
/* -=+=-=+=-=+=-  03. DOCTOR p1&2 (Place & Profile) -=+=-=+=-=+=- */
/**/

.doctor--container {
  background-color: var(--COLOR-01);
  padding: 2rem 1rem;
}

.doctor_info--container01,
.doctor_info--container02 {
  background-color: var(--COLOR-02-04);
  border: 2px solid var(--COLOR-02);
  margin-bottom: 2rem;
  transform: translateY(40%);
  opacity: 0;
}

.doctor_info--box {
  padding-bottom: 1rem;
}
.doctor_info--box h1 {
  padding: 0 1rem;
  margin: 0;
}
.doctor_info--box :is(h2, p) {
  padding: 0 1rem 1rem 1rem;
  margin: 0;
}

.doctor_info--box--image {
  height: auto;
  margin-bottom: 0.5rem;
  object-fit: cover;
  width: 100%;
}
.doctor_info--box--image img {
  box-shadow: var(--BORDER-SHADOW);
}
.doctor_info--box--title {
  color: var(--COLOR-03);
  font-size: calc(1rem * var(--FONT-SIZE--TITLE--NOREM) / pow(1.618, 2));
  font-weight: var(--FONT-NORMAL);
  text-decoration: underline;
}
.doctor_info--box--subtitle {
  color: var(--COLOR-02);
  font-size: var(--FONT-SIZE--SUBTITLE);
  font-weight: var(--FONT-BOLD);
}
.doctor_info--box--text {
  color: var(--COLOR-EXTRA-01);
  font-size: var(--FONT-SIZE--TEXT);
}

/**/

@media (min-width: 768px) and (orientation: portrait), (min-width: 1024px) {
  .doctor_info--container01,
  .doctor_info--container02 {
    display: grid;
    grid-auto-rows: minmax(200px, auto);
    grid-template-columns: repeat(2, 1fr);
  }
  .doctor_info--container02 .doctor_info--box:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    text-align: right;
  }
  .doctor_info--box {
    align-self: center;
    padding-bottom: 0;
    text-align: left;
  }
  .doctor_info--box--image {
    height: auto;
    justify-self: left;
    margin-bottom: 0;
    width: 100%;
  }
  .doctor_info--box:nth-child(3) .doctor_info--box--image {
    justify-self: right;
  }
  .doctor_info--box--title {
    font-size: clamp(
      calc(1rem * var(--FONT-SIZE--TITLE--NOREM) / pow(1.618, 2)),
      1.5vw,
      calc(1rem * var(--FONT-SIZE--TITLE--NOREM) / pow(1.618, 1))
    );
  }
  .doctor_info--box--subtitle {
    font-size: clamp(
      calc(1rem * var(--FONT-SIZE--SUBTITLE--NOREM)),
      3vw,
      calc(1rem * var(--FONT-SIZE--SUBTITLE--NOREM) * pow(1.618, 1))
    );
  }
  .doctor_info--box--text {
    font-size: clamp(
      var(--FONT-SIZE--TEXT),
      2vw,
      calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 1))
    );
  }
}

/**/
/* -=+=-=+=-=+=-  03. DOCTOR p3 (why & gallery) -=+=-=+=-=+=- */
/**/

.doctor_info--container03 {
  -webkit-backdrop-filter: var(--GLASS-BACKDROP);
  backdrop-filter: var(--GLASS-DARK-BACKDROP);
  background: var(--GLASS-LIGHT-BG);
  border: var(--GLASS-LIGHT-BORDER);
  box-shadow: var(--GLASS-SHADOW);

  margin-bottom: 2rem;
}
.doctor_info--container03 .doctor_info--box--subtitle {
  padding: 0 1rem;
}
.doctor_info--container03 .doctor_info--box,
.doctor_info--container04 .doctor_info--box {
  text-align: center;
  margin-bottom: 1rem;
}

.doctor_info--gallery {
  display: grid;
  gap: 1rem;
  grid-auto-rows: minmax(300px, auto);
  grid-template-columns: repeat(2, 1fr);
  padding: 1rem;
  text-align: center;
}

.doctor_info--gallery--item--image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doctor_info--gallery--item:nth-child(3) {
  grid-column: span 2;
  grid-row: span 1;
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.doctor_info--gallery--item:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 1024px) {
  .doctor_info--gallery {
    display: grid;
    gap: 1rem;
    grid-auto-rows: minmax(300px, auto);
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .doctor_info--gallery--item--image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .doctor_info--gallery--item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 2;
  }
  .doctor_info--gallery--item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .doctor_info--gallery--item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .doctor_info--gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  .doctor_info--gallery--item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 2;
  }
  .doctor_info--gallery--item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
}

/**/

.doctor_info--why {
  display: grid;
  grid-auto-rows: minmax(100px, auto);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 1rem;
  gap: 1rem;
}

.doctor_info--why--item {
  justify-items: center;
  text-align: center;
}

.doctor_info--why--img {
  justify-items: center;
  margin-bottom: auto;
}
.doctor_info--why--img img {
  filter: invert(1);
  height: auto;
  padding: 0 1rem;
  width: 60%;
}

/* .doctor_info--why--check {
  color: var(--COLOR-03);
  font-size: calc(1rem * var(--FONT-SIZE--SUBTITLE-NOREM) * pow(1.618, 0.5));
} */

@media (min-width: 768px) and (orientation: portrait), (min-width: 1024px) {
  .doctor_info--why {
    padding: 0 5%;
  }
  .doctor_info--why--img img {
    width: 30%;
  }
}

/**/
/* -=+=-=+=-=+=-  03. DOCTOR p4 (Reviews) -=+=-=+=-=+=- */
/**/

.doctor_info--container04 {
  background-color: var(--COLOR-02-04);
  border: 2px solid var(--COLOR-02);
  margin-bottom: 2rem;
  margin: 0;
}
.doctor_info--container04 .doctor_info--box {
  margin: 0;
  padding: 0;
}
.doctor_info--reviews {
  display: grid;
  gap: 1rem;
  grid-auto-rows: minmax(100px, auto);
  grid-template-columns: repeat(1, 1fr);
  min-height: 100px;
  padding: 0 1rem 1rem;
}

.doctor_info--reviews--card {
  background-color: var(--COLOR-EXTRA-01);
  border-radius: 20px;
  box-shadow: var(--SHADOWS);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.doctor_info--reviews--card--title {
  position: relative;
}
.doctor_info--reviews--card--title h2 {
  margin: 0;
}

.doctor_info--reviews--card--google {
  position: absolute;
  top: 8px;
  right: 8px;
  width: clamp(1.25rem, 1.5vw, 1.75rem);
  height: clamp(1.25rem, 1.5vw, 1.75rem);
  display: block;
}
.doctor_info--reviews--card--google img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.doctor_info--reviews--card--user--rate {
  font-size: calc(1rem * var(--FONT-SIZE--SUBTITLE--NOREM) * pow(1.618, 0));
  color: var(--COLOR-02);
}
.doctor_info--reviews--card--user--title {
  font-size: calc(1rem * var(--FONT-SIZE--TITLE--NOREM) / pow(1.618, 1.5));
  font-weight: var(--FONT-BOLD);
  line-height: 1.25;
  min-height: calc(2 * 1.25em);
}

.doctor_info--reviews--card--user--comment {
  font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 0));
}

.doctor_info--reviews--card--user {
  font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) * pow(1.618, 0.1));
  font-weight: var(--FONT-BOLD);
  margin-top: auto;
}
.doctor_info--reviews--card--user--role {
  color: rgb(from var(--COLOR-EXTRA-02) r g b / 0.6);
  font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) / pow(1.618, 0.5));
  font-weight: var(--FONT-NORMAL);
}

@media (min-width: 1024px) {
  .doctor_info--reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**/

.doctor_footer_container {
  align-content: center;
  background-image: linear-gradient(
    -45deg,
    var(--COLOR-03-02) 30%,
    var(--COLOR-01-02) 80%
  );
  border-bottom: var(--BORDER-HEAVY);
  border-top: var(--BORDER-HEAVY);
  height: 100%;
  justify-items: center;
  min-height: 30vh;
  padding: 2rem;
  text-align: center;
  width: auto;
}
.doctor_footer_contact {
  -webkit-backdrop-filter: var(--GLASS-DARK-BACKDROP);
  backdrop-filter: var(--GLASS-DARK-BACKDROP);
  background: var(--GLASS-DARK-BG);
  border-radius: var(--GLASS-RADIUS);
  border: var(--GLASS-GOLD-BORDER);
  box-shadow: var(--GLASS-GOLD-SHADOW);
  padding: 4rem 2rem;
  justify-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctor_footer_contact--text {
  font-size: var(--FONT-SIZE--SUBTITLE);
  color: var(--COLOR-EXTRA-01);
  font-weight: var(--FONT-BOLD);
  text-shadow: var(--SHADOWS);
  margin: 0 0 1rem;
}
.doctor_footer_contact--link {
  align-items: center;
  background-color: #25d366;
  border-radius: 50px;
  box-shadow: var(--SHADOWS);
  color: var(--COLOR-EXTRA-01);
  display: inline-flex;
  font-size: var(--FONT-SIZE--TEXT);
  font-weight: var(--FONT-BOLD);
  height: 50px;
  justify-content: center;
  padding: 0 1.5rem;
  text-wrap: nowrap;
  width: clamp(200px, 200px + 1vw, 300px);
  margin-bottom: 1rem;
}
.doctor_footer_contact--download {
  align-items: center;
  background-color: var(--COLOR-01-02);
  border-radius: 50px;
  box-shadow: var(--SHADOWS);
  color: var(--COLOR-EXTRA-01);
  display: inline-flex;
  font-size: var(--FONT-SIZE--TEXT);
  font-weight: var(--FONT-BOLD);
  height: 50px;
  justify-content: center;
  padding: 0 1.5rem;
  text-wrap: nowrap;
  width: clamp(200px, 200px + 1vw, 300px);
}

.doctor_footer_contact a:any-link {
  color: var(--COLOR-EXTRA-01);
}
.doctor_footer_contact img {
  display: inline;
  height: 70%;
  width: auto;
  filter: invert(1);
}

.doctor_footer_contact a:is(:hover, :focus) {
  transform: scale(1.02);
  box-shadow: var(--GLOW);
  background-color: #20ba5a;
}
.doctor_footer_contact a:is(:hover, :focus):nth-child(3) {
  transform: scale(1.02);
  box-shadow: var(--GLOW);
  background-color: var(--COLOR-01-01);
}

@media (min-width: 1024px) {
  .doctor_footer_contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .doctor_footer_contact--text {
    font-size: var(--FONT-SIZE--TITLE);
    grid-column: 2 span;
  }
  .doctor_footer_contact--link,
  .doctor_footer_contact--download {
    font-size: var(--FONT-SIZE--SUBTITLE);
    margin-bottom: 0;
    width: clamp(250px, 250px + 5vw, 350px);
  }
}

/**/
/* -=+=-=+=-=+=-  04. LOCATION -=+=-=+=-=+=- */
/**/

.location--container {
  padding: 0 0 1rem 0;
}

.location_header {
  padding: 1.5rem 1rem 1rem;
}
.location_header--title {
  color: var(--COLOR-02);
  font-size: var(--FONT-SIZE--SUBTITLE);
  margin: 0;
  padding: 0;
}

.location_header--subtitle {
  color: var(--COLOR-EXTRA-01);
  font-size: var(--FONT-SIZE--TEXT);
  margin: 0;
  padding: 0;
}

.location_body--container {
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 1rem;
}
.location_body--container ul {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.location_body--container ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
}
.location_body--container ul li:nth-child(2) {
  color: var(--COLOR-03);
}
.location_body--container img {
  display: block;
  height: 2rem;
  width: auto;
  object-fit: contain;
  filter: invert(1);
}
.location_body--container :is(a:any-link, address, p, li) {
  color: var(--COLOR-EXTRA-01);
  font-style: normal;
  text-decoration: none;
}

/**/

.location_body_container--item--time {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 400px;
}

.location_body_container--item--time--slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/**/

.location_body_container--map {
  border-radius: 12px;
  box-shadow: var(--SHADOWS);
  overflow: hidden;
  height: 100%;
  align-self: center;
}
.location_body_container--map iframe {
  min-height: 200px;
  height: 100%;
  width: 100%;
}

@media (min-width: 768px), (min-width: 1024px) {
  .location_body--container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 1rem;
  }
}

/**/
/* -=+=-=+=-=+=-  B. FOOTER -=+=-=+=-=+=- */
/**/

.footer {
  margin: 1rem 2%;
  color: var(--COLOR-EXTRA-01);
  font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) / pow(1.618, 1));
}
.footer_container {
  align-items: center;
  display: grid;
  grid-auto-rows: minmax(1px, auto);
  grid-template-columns: repeat(1, 1fr);
  min-height: 100px;
  width: 100%;
  border-top: 1px solid var(--COLOR-EXTRA-01);
}
.footer_container img {
  height: auto;
  object-fit: contain;
  width: clamp(150px, 150px + 1vw, 200px);
  padding-top: 1rem;
}

.footer_container-card-01 {
  display: flex;
  flex-flow: row;
  justify-content: center;
}

.footer_container-card-02,
.footer_container-card-03 {
  text-align: center;
}

.footer_container-card-03 a:any-link {
  color: var(--COLOR-EXTRA-01);
}
.footer_container-card-03-underline {
  text-decoration: underline;
}

@media (min-width: 769px) {
  .footer {
    font-size: calc(1rem * var(--FONT-SIZE--TEXT--NOREM) / pow(1.618, 0));
  }
  .footer br {
    display: none;
  }
  .footer p {
    margin: 0;
  }
  .footer_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer_container-card-01 {
    grid-row: span 2;
    justify-self: left;
    padding-left: 2rem;
  }
  .footer_container-card-02 {
    align-self: flex-end;
    padding-right: 2rem;
    text-align: right;
  }
  .footer_container-card-03 {
    align-self: flex-start;
    padding-right: 2rem;
    text-align: right;
  }
}

/**/
/* -=+=-=+=-=+=-  WHATSAPP FLOATING ICON -=+=-=+=-=+=- */
/**/

.wa {
  position: fixed;
  z-index: 20;
  bottom: 15px;
  right: 15px;
}
.wa a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px #000000;
}
.wa a:hover {
  transform: scale(1.2);
  background-color: #20ba5a;
  box-shadow: var(--GLOW);
}
