@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --emerald: #047857;
  --emerald-light: #d1fae5;
  --emerald-dark: #065f46;
  --sand: #faf8f5;
  --warm: #f5f0eb;
  --peach: #fff7ed;
  --text: #111827;
  --body: #4b5563;
  --muted: #9ca3af;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .04);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .08);
  --r: 20px;
  --rs: 12px;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --serif: 'DM Serif Display', serif;
  --sans: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--body);
  line-height: 1.7;
  overflow-x: hidden
}

h1,
h2,
h3 {
  font-family: var(--serif);
  color: var(--text);
  font-weight: 400
}

a {
  text-decoration: none;
  color: inherit
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px
}

.section {
  padding: 110px 0
}

/* LOADER */
#ld {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s
}

#ld.off {
  opacity: 0;
  pointer-events: none
}

#ld .bar {
  width: 60px;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden
}

#ld .bar::after {
  content: '';
  display: block;
  width: 30px;
  height: 100%;
  background: var(--emerald);
  border-radius: 3px;
  animation: ldbar 1s ease infinite
}

@keyframes ldbar {
  0% {
    transform: translateX(-30px)
  }

  100% {
    transform: translateX(60px)
  }
}

/* PROGRESS */
.prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), #10b981, var(--emerald));
  background-size: 200% 100%;
  animation: progShimmer 2s linear infinite;
  z-index: 10001;
  width: 0;
  transition: width .12s
}

@keyframes progShimmer {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: .3s
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px
}

.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--text)
}

.logo em {
  font-style: italic;
  color: var(--emerald)
}

.nav-l {
  display: flex;
  gap: 32px;
  list-style: none
}

.nav-l a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: .3s;
  letter-spacing: .3px;
  position: relative
}

.nav-l a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: .3s
}

.nav-l a:hover,
.nav-l a.on {
  color: var(--text)
}

.nav-l a:hover::after,
.nav-l a.on::after {
  width: 100%
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  transition: .3s;
  font-family: var(--sans)
}

.nav-btn.fill {
  background: var(--emerald);
  color: #fff
}

.nav-btn.fill:hover {
  background: var(--emerald-dark)
}

.ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative
}

.ham span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s
}

.ham span:nth-child(1) {
  top: 0
}

.ham span:nth-child(2) {
  top: 9px
}

.ham span:nth-child(3) {
  top: 18px
}

.mob {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px
}

.mob.on {
  display: flex
}

.mob a {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text);
  transition: .3s
}

.mob a:hover {
  color: var(--emerald)
}

.mob-x {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text)
}

/* HERO */
.hero {
  background: var(--sand);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 120, 87, .06), transparent 70%);
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, .05), transparent 70%);
  pointer-events: none
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end
}

.hero-txt {
  padding-bottom: 80px
}

.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald);
  margin-bottom: 28px
}

.hero-sub::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--emerald)
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.5px
}

.hero h1 em {
  color: var(--emerald);
  font-style: italic
}

.hero-p {
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.8;
  color: var(--body)
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: .35s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  font-family: var(--sans)
}

.btn-em {
  background: var(--emerald);
  color: #fff
}

.btn-em:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 120, 87, .2)
}

.btn-o {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text)
}

.btn-o:hover {
  border-color: var(--emerald);
  color: var(--emerald)
}

.hero-img {
  position: relative
}

.hero-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--r) var(--r) 0 0
}

.h-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--rs);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem
}

.h-float .big {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--emerald)
}

.h-float-1 {
  top: 40px;
  left: -30px;
  animation: bob 3s ease infinite
}

.h-float-2 {
  bottom: 80px;
  right: -20px;
  animation: bob 3s ease infinite 1.5s
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* MARQUEE */
.marq {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: var(--white)
}

.marq-track {
  display: flex;
  gap: 48px;
  animation: marqScroll 20s linear infinite;
  width: max-content
}

.marq-track:hover {
  animation-play-state: paused
}

.marq-i {
  white-space: nowrap;
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: .3s;
  cursor: default
}

.marq-i:hover {
  color: var(--emerald);
  transform: scale(1.05)
}

.marq-i::before {
  content: '◆';
  font-size: .45rem;
  color: var(--emerald);
  opacity: .6;
  transition: .3s
}

.marq-i:hover::before {
  opacity: 1;
  transform: rotate(45deg)
}

@keyframes marqScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* STATS */
.stats {
  padding: 60px 0;
  background: var(--white)
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r)
}

.st {
  text-align: center;
  padding: 36px 16px;
  position: relative
}

.st:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border)
}

.st .num {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--emerald)
}

.st .lbl {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px
}

/* ABOUT */
.about {
  background: var(--sand)
}

.abt-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center
}

.abt-imgs {
  position: relative
}

.abt-imgs .pri {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.abt-imgs .pri img {
  width: 100%;
  height: 440px;
  object-fit: cover
}

.abt-imgs .sec {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  border-radius: var(--rs);
  overflow: hidden;
  border: 5px solid var(--sand);
  box-shadow: var(--shadow)
}

.abt-imgs .sec img {
  width: 100%;
  height: 200px;
  object-fit: cover
}

.tag {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--emerald);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px
}

.tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--emerald)
}

.s-t {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
  line-height: 1.15
}

.s-d {
  font-size: .98rem;
  color: var(--body);
  max-width: 500px;
  line-height: 1.85
}

.checks {
  list-style: none;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text)
}

.checks li::before {
  content: '✓';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--emerald-light);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0
}

/* SERVICES */
.services {
  background: var(--white)
}

.sh {
  text-align: center;
  margin-bottom: 56px
}

.sh .s-d {
  margin: 0 auto
}

.srv-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.sc {
  background: var(--sand);
  border: 1px solid transparent;
  border-radius: var(--r);
  padding: 36px 28px;
  transition: .4s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden
}

.sc::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r);
  background: linear-gradient(135deg, transparent, var(--emerald), transparent);
  opacity: 0;
  transition: .4s;
  z-index: -1
}

.sc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), #10b981);
  transform: scaleX(0);
  transition: .4s;
  transform-origin: left
}

.sc:hover {
  background: var(--white);
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.sc:hover::before {
  opacity: .15
}

.sc:hover::after {
  transform: scaleX(1)
}

.sc-i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: .4s
}

.sc:hover .sc-i {
  background: var(--emerald);
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 8px 20px rgba(4, 120, 87, .2)
}

.sc:hover .sc-i span {
  filter: brightness(10)
}

.sc h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px
}

.sc p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65
}

/* DOCTOR */
.doctor {
  background: var(--sand)
}

.doc-g {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center
}

.doc-img {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg)
}

.doc-img img {
  width: 100%;
  height: 500px;
  object-fit: cover
}

.doc-bdg {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--rs)
}

.doc-bdg .big {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--emerald)
}

.doc-bdg small {
  font-size: .72rem;
  color: var(--body);
  display: block
}

.doc-txt h3 {
  font-size: 1.6rem;
  margin-bottom: 4px
}

.doc-txt .ql {
  color: var(--emerald);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 20px
}

/* TESTIMONIALS */
.testi {
  background: var(--white)
}

.t-wrap {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  position: relative
}

.t-track {
  display: flex;
  transition: .5s var(--ease)
}

.tc {
  min-width: 100%;
  padding: 32px;
  text-align: center
}

.tc-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px
}

.tc-q {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 24px;
  font-style: italic;
  position: relative
}

.tc-q::before {
  content: '\201C';
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--emerald);
  opacity: .1;
  font-style: normal;
  font-family: var(--serif)
}

.tc-name {
  font-weight: 600;
  color: var(--emerald);
  font-size: .9rem
}

.tc-role {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 2px
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px
}

.td {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: .3s
}

.td.on {
  background: var(--emerald);
  width: 24px;
  border-radius: 4px
}

/* FORM */
.booking {
  background: linear-gradient(135deg, var(--emerald-light), var(--peach))
}

.bk-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.bk-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--shadow-lg)
}

.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.fg.fw {
  grid-column: span 2
}

.fg label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px
}

.fg input,
.fg select {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--rs);
  font-size: .9rem;
  font-family: var(--sans);
  transition: .3s;
  background: var(--sand);
  color: var(--text)
}

.fg input:focus,
.fg select:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, .08)
}

.f-sub {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: var(--emerald);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  transition: .3s;
  margin-top: 8px;
  font-family: var(--sans)
}

.f-sub:hover {
  background: var(--emerald-dark);
  box-shadow: 0 8px 24px rgba(4, 120, 87, .2)
}

.f-ok {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--emerald);
  font-weight: 600;
  font-size: 1.1rem
}

/* FAQ */
.faq {
  background: var(--sand)
}

.fq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.fq {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rs);
  overflow: hidden;
  transition: .3s
}

.fq.on {
  border-color: var(--emerald)
}

.fq-q {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: .92rem
}

.fq-q:hover {
  color: var(--emerald)
}

.fq-q .arr {
  transition: .3s;
  font-size: 1rem;
  color: var(--muted)
}

.fq.on .arr {
  transform: rotate(180deg);
  color: var(--emerald)
}

.fq-a {
  max-height: 0;
  overflow: hidden;
  transition: .4s var(--ease);
  padding: 0 24px
}

.fq.on .fq-a {
  max-height: 200px;
  padding: 0 24px 18px
}

.fq-a p {
  font-size: .88rem;
  color: var(--body);
  line-height: 1.7
}

/* CONTACT */
.contact {
  background: var(--white)
}

.cn-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start
}

.cn-cards {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.cn-c {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--rs);
  transition: .3s;
  background: var(--sand)
}

.cn-c:hover {
  border-color: var(--emerald);
  transform: translateX(4px)
}

.cn-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0
}

.cn-c h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px
}

.cn-c p {
  font-size: .85rem;
  color: var(--body)
}

.cn-c a {
  color: var(--emerald);
  font-weight: 500
}

.map-w {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 380px
}

.map-w iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none
}

/* FOOTER */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, .5);
  padding: 56px 0 20px
}

.ft-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px
}

.ft-b h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px
}

.ft-b h3 em {
  color: var(--emerald);
  font-style: italic
}

.ft-b p {
  font-size: .86rem;
  line-height: 1.7;
  max-width: 300px
}

.ft-soc {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

.ft-soc a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: .3s;
  color: rgba(255, 255, 255, .4)
}

.ft-soc a:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
  transform: translateY(-3px)
}

.ft-c h4 {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px
}

.ft-c ul {
  list-style: none
}

.ft-c li {
  margin-bottom: 8px
}

.ft-c a {
  color: rgba(255, 255, 255, .4);
  font-size: .86rem;
  transition: .3s
}

.ft-c a:hover {
  color: var(--emerald);
  padding-left: 4px
}

.ft-btm {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: 8px
}

/* FLOATS */
.floats {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.fl {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: .35s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  position: relative
}

.fl::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: fl-ping 2s ease infinite
}

.fl:hover {
  transform: scale(1.1)
}

.fl.wa {
  background: #25D366
}

.fl.wa::after {
  border-color: #25D366
}

.fl.ph {
  background: var(--emerald)
}

.fl.ph::after {
  border-color: var(--emerald)
}

@keyframes fl-ping {
  0% {
    transform: scale(1);
    opacity: .4
  }

  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

.btt {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 900;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: .4s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  font-size: .9rem
}

.btt.show {
  opacity: 1;
  pointer-events: all
}

.btt:hover {
  background: var(--emerald);
  color: #fff;
  border-color: var(--emerald)
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: .7s var(--ease)
}

.rv.v {
  opacity: 1;
  transform: none
}

.rl {
  opacity: 0;
  transform: translateX(-28px);
  transition: .7s var(--ease)
}

.rl.v {
  opacity: 1;
  transform: none
}

.rr {
  opacity: 0;
  transform: translateX(28px);
  transition: .7s var(--ease)
}

.rr.v {
  opacity: 1;
  transform: none
}

/* SMOOTH CURSOR GLOW */
.c-glow {
  position: fixed;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 120, 87, .04), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left .15s, top .15s
}

@media(max-width:768px) {
  .c-glow {
    display: none
  }
}

/* SECTION DIVIDER */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), #10b981);
  border-radius: 3px;
  margin: 0 auto 20px
}

.sh .divider {
  margin-top: 12px
}

/* SMOOTH SELECTION */
::selection {
  background: var(--emerald-light);
  color: var(--emerald-dark)
}

/* RESPONSIVE */
@media(max-width:1024px) {

  .hero-inner,
  .abt-grid,
  .doc-g,
  .bk-g,
  .cn-g {
    grid-template-columns: 1fr
  }

  .hero-img img {
    height: 400px;
    border-radius: var(--r)
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .ft-g {
    grid-template-columns: 1fr 1fr
  }

  .checks {
    grid-template-columns: 1fr
  }

  .abt-imgs .sec {
    right: 10px
  }
}

@media(max-width:768px) {

  .nav-l,
  .nav-btn {
    display: none
  }

  .ham {
    display: block
  }

  .section {
    padding: 70px 0
  }

  .srv-g {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 60px 0 0
  }

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

  .fg.fw {
    grid-column: span 1
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 2.2rem
  }

  .hero-btns {
    flex-direction: column
  }

  .stats-row {
    grid-template-columns: 1fr 1fr
  }

  .ft-g {
    grid-template-columns: 1fr
  }

  .tc-q {
    font-size: 1.15rem
  }
}