@font-face {
  font-family: 'Roboto';
  src: url('/oapp-res/Roboto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: 'Roboto';
  src: local('Lato'),
    url('/oapp-res/Roboto-Black.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap
}
@font-face {
  font-family: 'Engrave';
  src: local('Lato'),
    url('/oapp-res/engrave.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap
}

* {box-sizing: border-box; border: none; margin: 0px; padding: 0px; font-family: 'Roboto';}

body {
  font-size: 16px;
  font-family: 'Roboto';
  background: #fff;
  min-width: 370px;
  margin-top: 6rem;
  overflow-x: hidden;
}

#navbt {
  --size: 30px;
  width: var(--size);
  height: calc(var(--size) * .75);
  position: absolute;
  top: 10px;
  right: 0px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
}
#navbt span {
  display: block;
  position: absolute;
  height: calc(var(--size) * .15);
  width: 100%;
  background: #35acea;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
  transform-origin: left center;
}
#navbt span:nth-child(1) { top: 0; }
#navbt span:nth-child(2) { top: calc(var(--size) * .3); }
#navbt span:nth-child(3) { top: calc(var(--size) * .6); }
#navbt.open span:nth-child(1) {
  transform: rotate(45deg);
  top: calc(var(--size) * -.05);
  left: calc(var(--size) * .13);
}
#navbt.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#navbt.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: calc(var(--size) * .65);
  left: calc(var(--size) * .13);
}

header {
  height: 6rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  color: #222;
}
header > a {
  display: inline-block;
  height: 80px;
  margin: 8px 16px;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  filter: hue-rotate(0);
  z-index: 13;
}
header > a > img { height: 80px; width: 260px; }
header > a:hover { filter: hue-rotate(180deg); }

header > div {
  position: absolute;
  top: 6px;
  right: 35px;
}

header > div > a {
  display: inline-block;
  padding: 5px;
  margin: 0 2px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

header > div > a:hover { background: #35acea; }

nav {
  display: block;
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2rem;
  border-top: 4px solid #35acea;
  z-index: 11;
}


nav > ul {
  list-style-type: none;
  margin: .25rem 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
nav > ul > li { display: inline; margin: 0; margin-top: .5rem; }
nav > ul > li > a {
  text-decoration: none;
  color: #454545;
  padding: .5rem;
  padding-top: 12px;
  transition: color .3s ease-out;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-top: 4px solid #35acea;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: all .3s ease-out;
}
nav > ul > li > a:hover, nav > ul > li > a.active { color: #35acea; border-top: 4px solid #454545; background: #35acea11;}

@media (max-width: 1100px) {
  nav > ul { gap: .7rem; }
  nav > ul > li > a { font-size: .9rem; padding: .3rem; padding-top: 13px; }
}

@media (max-width: 860px) {
  header > div { top: 10px; right: 30px; left: 30px; }
  header > div > a { border-radius: 3px; }
  #navbt { display: block; }
  nav { top: 66px; }
  header > a { margin: 0; top: 40px; left: calc(50vw - 130px); }
  nav > ul {
    margin: 4rem 1rem 1rem .5rem;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 1rem;
  }
  nav > ul > li > a { border: none; padding: .3rem; font-weight: bold; }
  nav > ul > li > a:hover { border: none; background: #fff; }
  header.open { height: 22rem; max-height: 22rem; }
  header { background: #fff; height: 8rem; max-height: 8rem; overflow: hidden; }
  body { margin-top: 8rem; }
}

footer { background: #474747; color: #fff; padding: 0rem; margin-top: 0; line-height: 2em;}
footer a { color: #fff; text-decoration: none; }
footer a:hover { color: #ea7435; }
footer > div { padding: 1rem; }

footer > div:first-of-type { display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }

footer > div:first-of-type > div:nth-of-type(2) { text-align: center; }
footer > div:first-of-type > div:nth-of-type(3) { text-align: right; }

footer > div:last-of-type { background: #222; font-size: .9rem; }
footer > div:last-of-type > a { color: #fff; text-decoration: none; }
footer > div:last-of-type > a:hover { color: #ea7435; }


@media (max-width: 660px) {
  footer > div:first-of-type { flex-direction: column; }
  footer > div:first-of-type > div:nth-of-type(1),
  footer > div:first-of-type > div:nth-of-type(3) { text-align: center; }
}

p { line-height: 1.5rem; }
.tCenter { text-align: center; }


.disclaimer {
  background: #5a67ac;
  color: #fff;
  font-size: .8rem;
  padding: 2rem;
  padding-left: 5rem;
  text-align: center;
  position: relative;
  line-height: 2em;
}
.disclaimer::before {
  content: 'DISCLAIMER';
  color: #5a67ac;
  text-shadow: 1px 1px 10px #fff4;
  font-weight: bold;
  font-size: 1.7rem;
  transform: rotate(-90deg);
  position: absolute;
  bottom: 78px;
  left: -40px;
}

.disclaimer > p { margin: 10px auto; max-width: 1000px; }
@media (max-width: 1000px) {
  .disclaimer::before { position: static; }
  .disclaimer { padding: 2rem; text-align: justify; }
}

.hero {
  height: 600px;
  background-image: url('/oapp-res/home-bg1.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-bottom-left-radius: 50% 7%;
  border-bottom-right-radius: 50% 7%;
}

.hero > h1 {
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 3rem;
    color: #454646;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 4px 4px 10px #45464699;
    letter-spacing: .2rem;
}
.hero > a {
  position: absolute;
  top: 220px;
  left: 50px;
  display: block;
  background: #35acea;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 2.25rem;
  font-size: 2rem;
  transition: background .3s ease-out;
}
.hero > a:hover { background: #454646; }
@media (max-width: 1100px) {
  .hero { height: 400px; }
  .hero > h1 { font-size: 2rem; }
  .hero > a { top: 170px; font-size: 1rem; }
}
@media (max-width: 800px) {
  .hero { height: 300px; }
  .hero > h1 { font-size: 1.5rem; letter-spacing: .1rem; }
  .hero > a { top: 150px; }
}

@media (max-width: 560px) {
  .hero { height: 300px; }
  .hero > h1 { top: 30px; left: 20px; font-size: 1rem; text-shadow: 4px 4px 7px #222; }
  .hero > a { left: 20px; top: 90px; }
}

.srv-intro { max-width: 1000px; padding: 2rem 1rem; margin: 0 auto; }
.srv-intro > p { margin-bottom: 2rem; line-height: 1.5rem; }

.srv-benefits { padding: 1rem; text-align: center; display: flex; flex-direction: row; justify-content: space-evenly; gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem; background: #f7f7f7; }
.srv-benefits > h2 { width: 95%; margin-bottom: 2rem; font-family: 'Engrave'; font-size: 3rem; color: #454545; }
.srv-benefits > div { width: 300px; }
.srv-benefits > div > h2 { margin-bottom: .5rem; color: #3b61ea;}

.srv-cta { background: #35acea; color: #fff; padding: 2rem; text-align: center; }
.srv-cta > div { max-width: 1000px; margin: 0 auto; }
.srv-cta > div > h2 { font-size: 2rem; margin-bottom: 1rem; }
.srv-cta > div > a { display: inline-block; background: #fff; color: #35acea; border: 1px solid #fff; padding: 15px 30px; border-radius: 30px; text-decoration: none; margin-top: 2rem; margin-bottom: 1rem; transition: all .3s ease-out; font-size: 1.5rem; }
.srv-cta > div > a:hover { color: #fff; background: #35acea; }
@media (max-width: 550px) { .srv-cta > div > h2 { font-size: 1.5rem;}}

.srv-wellness { padding: 3rem 2rem; max-width: 1000px; margin: 0 auto; }
.srv-wellness > h2 { margin-bottom: .25rem; font-family: 'Engrave'; font-size: 2.75rem; color: #454545; text-align: center; }
.srv-wellness > h3 { margin-bottom: 1.55rem; font-size: 1.25rem; color: #454545; text-align: center; }
.srv-wellness > p { margin-bottom: 1rem; line-height: 1.5rem; }


.srv-info { padding: 2rem; max-width: 1000px; margin: 0 auto; }
.srv-info > h3 { color: #454545; }
.srv-info > h3:not(:first-of-type) { margin-top: 3rem; }
.srv-info > p { margin: 1rem 0; }



.hero.hero-bg2 { background-image: url('/oapp-res/home-bg2.webp'); }
.hero.hero-bg3 { background-image: url('/oapp-res/home-bg3.webp'); }
.hero.hero-bg4 { background-image: url('/oapp-res/home-bg4.webp'); }
.hero.hero-bg5 { background-image: url('/oapp-res/home-bg5.webp'); background-position: center top 10%;}
.hero.hero-bg6 { background-image: url('/oapp-res/home-bg6.webp'); }
.hero.hero-bg7 { background-image: url('/oapp-res/home-bg7.webp'); }
.hero.hero-bg8 { background-image: url('/oapp-res/home-bg8.webp'); }

.hero.hero-bg3 > h1,
.hero.hero-bg4 > h1,
.hero.hero-bg5 > h1,
.hero.hero-bg6 > h1 { color: #f7f7f7; }


.srv-treatments { padding: 1rem; text-align: center; padding-bottom: 3rem; background: #f7f7f7; }
.srv-treatments > div { display: flex; flex-direction: row; justify-content: space-evenly; gap: 2rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; }
.srv-treatments > h2 { width: 95%; margin-bottom: 2rem; font-family: 'Engrave'; font-size: 3rem; color: #454545; }

.srv-treatments > div > a { display: block; text-decoration: none; width: 340px; background: #fff; border: 1px solid #35acea; border-radius: 10px; padding: 10px; }
.srv-treatments > div > a > h2 { margin-bottom: .5rem; color: #454545; border-bottom: 3px solid #35acea; }
.srv-treatments > div > a > p { color: #454545; line-height: 1.5rem; }

.srv-treatments > div > a:hover { background: #35acea; border: 1px solid #454545; }
.srv-treatments > div > a:hover > img { filter: brightness(3); }
.srv-treatments > div > a:hover > h2,
.srv-treatments > div > a:hover > p { color: #fff; border-color: #454545; }


.short { padding: 2rem; text-align: center; }
.short > h1 { color: #454545; font-family: 'Engrave'; font-size: 2.75rem; }
.short > h1 > span { color: #35acea; font-family: 'Engrave'; font-size: 2.75rem; }
@media (max-width: 630px) { .short > h1, .short > h1 > span { font-size: 2rem; } }
@media (max-width: 430px) { .short > h1, .short > h1 > span { font-size: 1.5rem; } }

.pricing { max-width: 800px; margin: 1rem auto; padding: 1rem; }

.pricing > a { display: block; color: #35acea; border-bottom: 3px solid #454545; text-decoration: none; margin-bottom: .5rem; font-size: 1.2rem; font-weight: bold; padding-bottom: .25rem;}
.pricing > a:hover { color: #454545; border-bottom: 3px solid #35acea; }
.pricing > div { color: #454545; margin: 5px 0; padding: .5rem; clear: both; }
.pricing > div:nth-child(odd) { background: #f7f7f7; }
.pricing > div:hover { background: #eee; }
.pricing > div > span { color: #35acea; float: right; }

.terms > ol { margin-left: 1rem; }
.terms > ol > li > ul { margin-left: 1rem; }










.home-connect {
  background: #35acea;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  line-height: 2rem;
}

.home-connect a { color: #222; text-decoration: none; }
.home-connect a:hover { color: #000; }
.home-connect > div > p { margin: 2rem; }

.home-connect > img {
  width: 400px;
  height: 400px;
  padding: 25px
}

@media (max-width: 950px) { .home-connect > div > p { margin: 1rem; text-align: justify; } }
@media (max-width: 770px) { .home-connect { flex-direction: column; } }


.home-benefits {
  padding: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  margin: 2rem 0;
}
@media (max-width: 1300px) { .home-benefits { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 670px) { .home-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .home-benefits { grid-template-columns: 1fr; } }

.home-benefits > div { text-align: center; width: 200px; place-self: center; }
.home-benefits > div > h2 { font-weight: normal; color: #35acea; margin-bottom: .7rem; transition: all .3s ease-out;}
.home-benefits > div > img { width: 120px; height: 120px; transition: all .3s ease-out; }
.home-benefits > div > p { font-size: .9rem; }

.home-benefits > div:hover > h2 { color: #222; }
.home-benefits > div:hover > img { filter: brightness(.2); }

.home-hero {
  height: 600px;
  background-image: url('/oapp-res/home-bg1.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.home-hero > h1 {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 8px 8px 14px #222;
    letter-spacing: .2rem;
}
.home-hero > h1 > strong { text-shadow: 8px 8px 14px #35acea; }

@media (max-width: 1100px) {
  .home-hero { height: 400px; }
  .home-hero > h1 { font-size: 2rem; }
}

@media (max-width: 800px) {
  .home-hero { height: 300px; }
  .home-hero > h1 { font-size: 1.5rem; letter-spacing: .1rem; }
}

@media (max-width: 560px) {
  .home-hero { height: 300px; }
  .home-hero > h1 { bottom: 30px; left: 20px; font-size: 1rem; text-shadow: 4px 4px 7px #222; }
  .home-hero > h1 > strong { text-shadow: 4px 4px 7px #35acea; }
}


.home-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4rem;
  gap: 4rem;
}

.home-info > div > img { width: 400px; max-width: 90vw; height: auto; }
.home-info > div > h2 { font-weight: normal; font-size: 1.5rem; color: #35acea; margin: 1rem 0; }
.home-info > div > p { margin-bottom: .7rem; line-height: 2rem; }
.home-info > div > a { display: inline-block; padding: 10px 20px; background: #35acea; color: #fff; border-radius: 5px; text-decoration: none; border: 1px solid #35acea; transition: all .3s ease-out; margin-bottom: 1rem; }
.home-info > div > a:hover { background: #fff; color: #35acea; }

@media (max-width: 1200px) {.home-info { flex-direction: column; } }
@media (max-width: 700px) {.home-info { padding: 2rem; gap: 2rem; } }
@media (max-width: 530px) {
  .home-info > div > h2 { font-size: 1rem; }
  .home-info > div > p { font-size: .8rem; line-height: 1.2rem; text-align: justify; }
}

.oawf-sec { display: none; }