@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

html {
  scroll-behavior: smooth;
}

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

/* preloader */

.preloader {
  background-color: #271e4f;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  align-items: center;

  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 5;
}
@keyframes shade {
  0% {
    background-position-x: -500%;
  }
  100% {
    background-position-x: 500%;
  }
}

.preloader p {
  text-align: center;
  font-size: 10vmin;
  line-height: 1;
  letter-spacing: 4px;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #271e4f, #fff, #271e4f);
  background-size: 70% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  animation: shade 2s linear infinite;
}

:root {
  --primary-color: #271e4f;
  --secondary-color: #2a518c;
  --third-color: #fff;
  --fourth-color: #afafaf;
}

a {
  text-decoration: none;
}

.btn {
  background-color: var(--primary-color);
  color: var(--third-color);
  padding: 1rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--third-color);
}
h1,
h2,
h3 {
  color: var(--primary-color);
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f2f6f9;
}

header {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1920' height='1080' preserveAspectRatio='none' viewBox='0 0 1920 1080'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1000%26quot%3b)' fill='none'%3e%3crect width='1920' height='1080' x='0' y='0' fill='rgba(242%2c 246%2c 249%2c 1)'%3e%3c/rect%3e%3cpath d='M299.02 1084.98C606.34 1016.71 728.76 213.4 1201.58 206.85 1674.4 200.3 1865.34 515.64 2104.14 520.05' stroke='rgba(51%2c 121%2c 194%2c 0.07)' stroke-width='2'%3e%3c/path%3e%3cpath d='M744.26 1159.51C906.25 1121.28 810.33 714.64 1214.08 687.79 1617.83 660.94 1905.28 368.3 2153.72 363.79' stroke='rgba(51%2c 121%2c 194%2c 0.07)' stroke-width='2'%3e%3c/path%3e%3cpath d='M608.22 1115.24C847.07 1051.29 938.49 392.66 1282.18 391.33 1625.86 390 1754.07 824.46 1956.13 844.93' stroke='rgba(51%2c 121%2c 194%2c 0.07)' stroke-width='2'%3e%3c/path%3e%3cpath d='M273.51 1206.6C580.36 1151.9 734.67 389.16 1213.43 387.47 1692.2 385.78 1892.71 829.41 2153.36 841.07' stroke='rgba(51%2c 121%2c 194%2c 0.07)' stroke-width='2'%3e%3c/path%3e%3cpath d='M1038.22 1147.73C1256.32 1029.75 1262.32 314.65 1551.26 298.85 1840.19 283.05 1914.5 600 2064.29 612.05' stroke='rgba(51%2c 121%2c 194%2c 0.07)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1000'%3e%3crect width='1920' height='1080' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e")
    no-repeat center center/cover;
  height: 100vh;
}

/* Navbar */
#navbar {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-content: space-around;
  height: 5rem;
}

#navbar .logo a {
  display: flex;
  align-items: center;
}

#navbar .logo img {
  width: 3rem;
  margin-right: 0.4rem;
}

#navbar .logo p {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
}

#navbar ul {
  display: flex;
}

#navbar ul li {
  list-style: none;
  margin: 0 0.7rem;
}

#navbar ul li a {
  color: var(--primary-color);
  font-weight: bold;
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
}

#navbar ul li .current {
  color: var(--secondary-color);
}

#navbar ul li .current::after {
  content: "";
  background-color: var(--secondary-color);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: block;
  margin: 5px auto 0 auto;
}
#navbar ul li a:hover {
  color: var(--secondary-color);
}

#navbar ul li .btn {
  color: var(--third-color);
}
#navbar ul li .btn:hover {
  background-color: var(--secondary-color);
  color: var(--third-color);
}

#navbar ul li a i {
  display: none;
}

/* Showcase */
#showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  align-items: center;
  height: 90%;
  margin: 0 5rem;
}

#showcase .sdata {
  width: 100%;
}

#showcase .sdata h1 {
  font-size: 3vw;
  display: block;
  width: 60%;
}

#showcase .sdata p {
  color: var(--secondary-color);
  margin: 2rem 0;
  width: 50%;
  font-size: 1vw;
}

#showcase .simg img {
  max-width: 100%;
  height: auto;
}

/* About */

#about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  margin: 0 5rem;
}

#about div {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 2rem;
  line-height: 2.5rem;
}

#about div p,
#about div p a {
  color: var(--secondary-color);
}

#about div:nth-child(2),
#about div:nth-child(2) h2 {
  background-color: var(--primary-color);
  color: var(--third-color);
}

#about div:nth-child(2) p {
  color: var(--fourth-color);
}

/* Our Services */

#service {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 5rem;
}

#service span {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
  /* opacity: 0.9; */
}

#service h1 {
  color: var(--secondary-color);
}

#service .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
  margin: 3rem 0 0 0;
}

#service .cards div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

#service .cards div img {
  max-width: 30%;
  height: auto;
}

#service .cards div h3 {
  margin: 1.2rem;
}

#service .cards div p {
  text-align: center;
  color: var(--secondary-color);
}

#service .cards div:nth-child(2) {
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Appointment */

#appointment {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1920' height='1080' preserveAspectRatio='none' viewBox='0 0 1920 1080'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1000%26quot%3b)' fill='none'%3e%3crect width='1920' height='1080' x='0' y='0' fill='rgba(242%2c 246%2c 249%2c 1)'%3e%3c/rect%3e%3cuse xlink:href='%23SvgjsSymbol1007' x='0' y='0'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsSymbol1007' x='0' y='720'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsSymbol1007' x='720' y='0'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsSymbol1007' x='720' y='720'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsSymbol1007' x='1440' y='0'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsSymbol1007' x='1440' y='720'%3e%3c/use%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1000'%3e%3crect width='1920' height='1080' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cpath d='M-1 0 a1 1 0 1 0 2 0 a1 1 0 1 0 -2 0z' id='SvgjsPath1003'%3e%3c/path%3e%3cpath d='M-3 0 a3 3 0 1 0 6 0 a3 3 0 1 0 -6 0z' id='SvgjsPath1002'%3e%3c/path%3e%3cpath d='M-5 0 a5 5 0 1 0 10 0 a5 5 0 1 0 -10 0z' id='SvgjsPath1001'%3e%3c/path%3e%3cpath d='M2 -2 L-2 2z' id='SvgjsPath1005'%3e%3c/path%3e%3cpath d='M6 -6 L-6 6z' id='SvgjsPath1004'%3e%3c/path%3e%3cpath d='M30 -30 L-30 30z' id='SvgjsPath1006'%3e%3c/path%3e%3c/defs%3e%3csymbol id='SvgjsSymbol1007'%3e%3cuse xlink:href='%23SvgjsPath1001' x='30' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='30' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='30' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='30' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='30' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='30' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='30' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='30' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='30' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='30' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='30' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='30' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='90' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='90' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='90' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='90' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1006' x='90' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='90' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='90' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='90' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='90' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='90' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='90' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='90' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='150' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='150' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='150' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='150' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='150' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='150' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='150' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='150' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1006' x='150' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='150' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='150' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='150' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='210' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='210' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='210' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='210' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='210' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='210' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='210' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='210' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='210' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='210' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1006' x='210' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1006' x='210' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='270' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='270' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='270' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='270' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='270' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='270' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='270' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='270' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='270' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='270' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='270' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='270' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='330' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='330' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='330' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='330' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='330' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1006' x='330' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='330' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='330' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='330' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='330' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='330' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='330' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='390' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='390' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='390' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='390' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='390' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='390' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='390' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='390' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='390' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='390' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='390' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='390' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='450' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='450' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='450' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='450' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='450' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='450' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='450' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='450' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='450' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='450' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='450' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='450' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='510' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='510' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='510' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='510' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='510' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='510' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='510' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='510' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='510' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='510' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='510' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='510' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='570' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='570' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='570' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='570' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='570' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1006' x='570' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='570' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='570' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='570' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='570' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='570' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='570' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='630' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1003' x='630' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='630' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='630' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='630' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='630' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='630' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1006' x='630' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='630' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='630' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='630' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='630' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='690' y='30' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1005' x='690' y='90' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1006' x='690' y='150' stroke='rgba(4%2c 67%2c 135%2c 0.13)' stroke-width='3'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='690' y='210' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='690' y='270' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1002' x='690' y='330' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='690' y='390' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1004' x='690' y='450' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='690' y='510' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='690' y='570' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='690' y='630' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsPath1001' x='690' y='690' stroke='rgba(4%2c 67%2c 135%2c 0.13)'%3e%3c/use%3e%3c/symbol%3e%3c/svg%3e")
    no-repeat center center/cover;
  height: 70vh;
}

#appointment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin: 0 5rem;
}

#appointment .aimg img {
  max-width: 60%;
  height: auto;
}

#appointment .adata {
  max-width: 70%;
}

#appointment .adata span {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

#appointment .adata h1 {
  color: var(--secondary-color);
  margin: 1vw 0;
}

#appointment .adata p {
  margin: 1.5vw 0;
  color: var(--secondary-color);
}

#appointment .adata .btn-a {
  margin: 10rem 0;
  background-color: var(--primary-color);
  color: var(--third-color);
  padding: 0.5rem 1rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--third-color);
}

/* Doctor */

#doc h1 {
  text-align: center;
  font-size: 2rem;
  margin-top: 1rem;
}

.swiper {
  /* height: 100vh; */
  margin: 0 5rem;
  padding: 3rem 0.5rem;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--primary-color);
  height: auto;
  width: 50%;
  background: #f2f6f9;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  line-height: 2.5rem;
}

.swiper-slide .card-d {
  padding-bottom: 1rem;
}

.swiper-slide .card-d p a {
  background-color: var(--primary-color);
  color: var(--third-color);
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.swiper-slide .card-d p a:hover {
  background-color: var(--secondary-color);
}
.swiper-slide .card-i img {
  width: 100%;
  max-height: 300px;
  border-radius: 10px 10px 0 0;
}

.swiper h1 {
  text-align: center;
  margin: 0 0 2rem 0;
}

.swiper-button {
  color: var(--primary-color);
}

/* Instruction */

#instruction {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1000%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='rgba(242%2c 246%2c 249%2c 1)'%3e%3c/rect%3e%3cuse xlink:href='%23SvgjsG1004' transform='translate(0%2c 0)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1004' transform='translate(0%2c 320)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1004' transform='translate(320%2c 0)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1004' transform='translate(320%2c 320)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1004' transform='translate(640%2c 0)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1004' transform='translate(640%2c 320)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1004' transform='translate(960%2c 0)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1004' transform='translate(960%2c 320)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1004' transform='translate(1280%2c 0)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1004' transform='translate(1280%2c 320)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1000'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cg id='SvgjsG1002'%3e%3cpath d='M3.474 10.969C3.474 7.665 8.077 0.361 8.077 0.361s4.602 7.305 4.602 10.608c0 2.247-1.506 4.771-4.602 4.771-3.095 0-4.603-2.524-4.603-4.771z' fill-rule='evenodd'%3e%3c/path%3e%3c/g%3e%3cg id='SvgjsG1001'%3e%3cpath d='M7.713 15.485C3.459 15.485 0 12.025 0 7.768 0 3.513 3.459 0.051 7.713 0.051S15.432 3.513 15.432 7.768c0 4.257-3.465 7.716-7.719 7.717z m0-1.91c3.201 0 5.81-2.604 5.81-5.809 0-3.199-2.61-5.807-5.81-5.807-3.202 0-5.804 2.609-5.804 5.807-0.001 3.206 2.602 5.809 5.804 5.809z'%3e%3c/path%3e%3cpath d='M7.753 8.787a0.574 0.574 0 0 1-0.554-0.042 0.578 0.578 0 0 1-0.259-0.399L6.931 3.862a0.58 0.58 0 0 1 1.162 0v3.478l2.975-1.4a0.578 0.578 0 0 1 0.773 0.275c0.138 0.292 0.011 0.637-0.276 0.774l-3.81 1.798z'%3e%3c/path%3e%3c/g%3e%3cg id='SvgjsG1003'%3e%3cpath d='M11.986 8.245a46.749 46.749 0 0 1-0.521-0.411c-0.146-0.116-0.293-0.233-0.44-0.348-0.88-0.688-1.797-1.316-2.816-1.407A2.815 2.815 0 0 0 7.954 6.067c-0.086 0-0.171 0.011-0.255 0.018-1.022 0.093-1.942 0.717-2.826 1.408l0.093 0.073c0.108 0.085 0.213 0.168 0.32 0.252C6.165 7.137 7.021 6.576 7.954 6.576c0.93 0 1.784 0.558 2.66 1.236a35.098 35.098 0 0 1 0.535 0.421c0.142 0.113 0.283 0.226 0.426 0.338C12.532 9.32 13.531 10 14.658 10c0.437 0 0.854-0.104 1.257-0.273v-0.557c-0.409 0.197-0.825 0.32-1.257 0.32-0.934 0-1.792-0.563-2.672-1.245z'%3e%3c/path%3e%3cpath d='M11.574 7.496c0.029 0.023 0.059 0.046 0.088 0.07 0.109 0.087 0.216 0.17 0.325 0.256 0.318-0.246 0.635-0.476 0.952-0.67v1.37c0.17 0.111 0.34 0.214 0.51 0.301V6.878c0.315-0.147 0.634-0.248 0.96-0.283v2.537c0.078 0.01 0.157 0.018 0.237 0.018 0.091 0 0.183-0.009 0.273-0.021V6.592c0.34 0.037 0.67 0.144 0.996 0.3V6.336C15.514 6.17 15.099 6.067 14.664 6.067c-1.128 0-2.13 0.68-3.09 1.429z m-7.248 1.08c-0.034-0.027-0.068-0.053-0.102-0.08-0.104-0.083-0.207-0.162-0.31-0.245-0.877 0.678-1.733 1.238-2.665 1.238C0.82 9.49 0.407 9.36 0 9.152v0.562C0.401 9.891 0.815 10 1.249 10c1.124 0 2.122-0.677 3.077-1.423z'%3e%3c/path%3e%3cpath d='M0.989 9.133c0.084 0.011 0.17 0.019 0.254 0.02 0.086 0 0.171-0.008 0.256-0.02V6.592c0.329 0.035 0.65 0.136 0.967 0.285-0.002 0.012-0.007 0.023-0.007 0.036v1.903a5.818 5.818 0 0 0 0.51-0.303V7.152c0.487 0.3 0.971 0.684 1.467 1.08C5.525 9.101 6.652 10 7.948 10c1.123 0 2.121-0.675 3.078-1.42l-0.106-0.084c-0.103-0.082-0.205-0.161-0.306-0.242-0.313 0.242-0.622 0.466-0.934 0.658V7.564A5.816 5.816 0 0 0 9.17 7.261v1.893c0 0.01 0.004 0.019 0.005 0.029-0.316 0.149-0.637 0.252-0.965 0.288V6.937a1.97 1.97 0 0 0-0.267-0.02c-0.082 0-0.163 0.008-0.243 0.017v2.541c-0.33-0.035-0.652-0.136-0.969-0.283 0.002-0.013 0.006-0.024 0.006-0.039V7.248a5.629 5.629 0 0 0-0.51 0.302v1.368c-0.49-0.299-0.976-0.686-1.474-1.083C3.666 6.966 2.539 6.067 1.243 6.067c-0.432 0-0.844 0.096-1.243 0.251v0.55c0.324-0.144 0.652-0.244 0.989-0.278V9.133z'%3e%3c/path%3e%3c/g%3e%3cg id='SvgjsG1004'%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(0%2c 0) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(0%2c 32) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(0%2c 64) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(0%2c 96) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(0%2c 128) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(0%2c 160) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(0%2c 192) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(0%2c 224) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(0%2c 256) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(0%2c 288) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(32%2c 0) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(32%2c 32) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(32%2c 64) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(32%2c 96) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(32%2c 128) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(32%2c 160) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(32%2c 192) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(32%2c 224) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(32%2c 256) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(32%2c 288) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(64%2c 0) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(64%2c 32) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(64%2c 64) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(64%2c 96) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(64%2c 128) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(64%2c 160) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(64%2c 192) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(64%2c 224) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(64%2c 256) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(64%2c 288) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(96%2c 0) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(96%2c 32) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(96%2c 64) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(96%2c 96) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(96%2c 128) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(96%2c 160) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(96%2c 192) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(96%2c 224) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(96%2c 256) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(96%2c 288) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(128%2c 0) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(128%2c 32) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(128%2c 64) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(128%2c 96) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(128%2c 128) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(128%2c 160) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(128%2c 192) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(128%2c 224) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(128%2c 256) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(128%2c 288) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(160%2c 0) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(160%2c 32) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(160%2c 64) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(160%2c 96) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(160%2c 128) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(160%2c 160) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(160%2c 192) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(160%2c 224) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(160%2c 256) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(160%2c 288) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(192%2c 0) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(192%2c 32) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(192%2c 64) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(192%2c 96) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(192%2c 128) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(192%2c 160) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(192%2c 192) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(192%2c 224) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(192%2c 256) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(192%2c 288) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(224%2c 0) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(224%2c 32) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(224%2c 64) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(224%2c 96) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(224%2c 128) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(224%2c 160) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(224%2c 192) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(224%2c 224) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(224%2c 256) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(224%2c 288) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(256%2c 0) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(256%2c 32) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(256%2c 64) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(256%2c 96) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(256%2c 128) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(256%2c 160) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(256%2c 192) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(256%2c 224) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(256%2c 256) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(256%2c 288) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(288%2c 0) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(288%2c 32) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(288%2c 64) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(288%2c 96) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1001' transform='translate(288%2c 128) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(288%2c 160) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(288%2c 192) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(288%2c 224) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1003' transform='translate(288%2c 256) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3cuse xlink:href='%23SvgjsG1002' transform='translate(288%2c 288) scale(0.8)' fill='rgba(217%2c 224%2c 229%2c 1)'%3e%3c/use%3e%3c/g%3e%3c/defs%3e%3c/svg%3e")
    no-repeat center center/cover;
}

.instruction {
  margin: 2rem 5rem;
  padding: 1rem;
}

#instruction h1 {
  text-align: center;
  margin-top: 1.2rem;
}

#instruction .in {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

#instruction .in .i-data .data1 {
  display: flex;
  gap: 1.2rem;
}

#instruction .in .i-data .data1:nth-child(1) span {
  padding: 1.1rem 1.3rem;
}
#instruction .in .i-data .data1 span {
  background-color: var(--primary-color);
  max-width: auto;
  height: fit-content;
  padding: 1rem 1.2rem;
  border-radius: 50%;
  color: var(--third-color);
}

#instruction .in .i-data .data1 .data {
  margin: 0 0 2rem 0;
}

#instruction .in .i-data .data1 .data p {
  color: var(--secondary-color);
}
#instruction .in .i-img img {
  max-width: 100%;
  height: auto;
}

/* Testimonials */

#testi {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 5rem;
}

#testi span {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
  /* opacity: 0.9; */
}

#testi h1 {
  color: var(--secondary-color);
}

#testi .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
  margin: 3rem 0 0 0;
}

#testi .cards div {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  padding: 2rem;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

#testi .cards div img {
  max-width: 25%;
  height: auto;
}

#testi .cards div h3 {
  margin: 1.2rem 0 0 0;
}

#testi .cards div p {
  /* text-align: center; */
  color: var(--secondary-color);
  margin: 1.2rem 0 0 0;
}

/* Doctor */

#doctor {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin: 3rem 5rem;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-color: var(--third-color);
  padding: 3rem 4rem;
}

#doctor .dr-data p {
  margin: 2rem 0;
}

#doctor .dr-data p {
  color: var(--secondary-color);
}

#doctor .dr-img {
  text-align: center;
}

#doctor .dr-img img {
  width: 80%;
  height: auto;
}

/* Contact Us */

#contact {
  display: block;
  text-align: center;
  margin: 3rem 5rem;
  /* box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2); */
}

#contact span {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
  /* opacity: 0.9; */
}

#contact h1 {
  color: var(--secondary-color);
}

.contact {
  margin: 2rem 0 0 0;
}
#contact .contact #form input {
  width: 100%;
  padding: 12px 20px;
  margin: 0.5rem 0;
  border: 1px #fff solid;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

#contact .contact #form textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  margin: 0.5rem 0;
  border: 1px #fff solid;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}

::placeholder {
  color: #c1c1c1;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

#contact .contact button {
  background-color: var(--primary-color);
  color: var(--third-color);
  padding: 1rem 2rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  font-family: "poppins";
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

#contact .contact button:hover {
  background-color: var(--secondary-color);
  color: var(--third-color);
}

/* Footer */

footer {
  background-color: var(--primary-color);
  color: var(--third-color);
}

#footer {
  display: grid;
  grid-template-columns: repeat(2, auto);
  padding: 3rem;
}

#footer .info {
  width: 35%;
}

#footer .info .logo a {
  font-size: 1.5rem;

  font-weight: 600;
  margin-bottom: 1rem;
}

#footer .info .logo a {
  color: var(--third-color);
}

#footer .info p {
  margin-bottom: 1rem;
}

#footer .c-detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

#footer .c-detail .first p {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

#footer .c-detail ul {
  list-style: none;
  line-height: 2rem;
}

#footer .c-detail ul li a {
  color: var(--third-color);
  transition: 0.3s all ease-in-out;
}

#footer .c-detail ul:nth-child(2) {
  margin-top: 1rem;
  line-height: 2.5rem;
}

#footer .c-detail ul:nth-child(2) li a {
  background-color: var(--third-color);
  color: var(--primary-color);
  padding: 0.4rem 2rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  font-weight: bold;
}

#footer .c-detail ul:nth-child(2) li a:hover {
  background-color: var(--fourth-color);
  color: var(--primary-color);
}
#footer .c-detail ul li a:hover {
  color: var(--fourth-color);
}

.develop {
  text-align: center;
  padding-bottom: 1.5rem;
}

/* Mobile Responsive Design */

.hamburger {
  display: none;
}
