.hover-effect::after {
  right: 0;
  bottom: 0;
  transition-duration: 0.4s;
}
.hover-effect p::after {
  right: 0;
  bottom: 0;
  transition-duration: 0.4s;
}
.hover-effect::before {
  left: 0;
  top: 0;
  transition-duration: 0.4s;
}
.hover-effect p::before {
  left: 0;
  top: 0;
  transition-duration: 0.4s;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  height: 100vh;
  font-family: "Open Sans", sans-serif;
}
html h1 {
  margin-top: 15px;
  text-transform: uppercase;
  text-align: center;
}
html .underline {
  width: 50px;
  border-bottom: 3px solid #387e3a;
  margin: 10px auto;
}
html .parallax {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
html body {
  width: 100%;
  overflow-x: hidden;
}
html body .mobile-nav {
  transform: translateY(-100%);
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 50%;
  height: 100vh;
  transition: transform 300ms ease-out;
}
html body .mobile-nav__items {
  list-style: none;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
html body .mobile-nav__items--item {
  margin: 1rem 0;
}
html body .mobile-nav__items--item a {
  font-size: 1.5rem;
}
html body header {
  position: fixed;
  z-index: 100;
  width: 100%;
}
html body header .bonita-top-nav {
  background: rgba(0, 0, 0, 0.7);
}
html body header .navbar {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
html body header .navbar .nav__content-box {
  height: 70px;
}
html body header .navbar .nav__content-box--menu {
  margin-right: 20px;
  float: right;
}
.navbar-list.page-menu--list {
  position: relative;
  top: 22px;
}
@media (max-width: 992px) {
  .navbar-list.page-menu--list {
    position: relative;
    top: 0;
  }
}
html body header .navbar .nav__content-box--menu ul {
  list-style: none;
  margin-top: 0;
}
html body header .navbar .nav__content-box--menu ul li {
  display: inline-block;
}
html body header .navbar .nav__content-box--menu ul li a {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 15px;
  text-decoration: none;
}
html body header .navbar .nav__content-box--menu ul li a:hover,
html body header .navbar .nav__content-box--menu ul li a:active {
  color: #63b965;
  transition: all 0.3s ease-out;
}
html body header .navbar .nav__content-box--header button {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid #fff;
  outline: 0;
  cursor: pointer;
}
html body header .navbar .nav__content-box--header button i {
  color: #fff;
}
html body #home .home__content-box {
  height: 40vh;
  background-image: url(img/main-img.jpg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
html body #home .home__content-box--heading {
  margin: 0 auto;
}
@media (max-width: 600px) {
  html body #home .home__content-box--heading {
    text-align: center;
  }
  html body #home .home__content-box--heading h3 {
    font-size: 20px;
  }
}
html body #home .home__content-box--heading h3 {
  font-size: 3rem;
  color: #fff;
}
@media (max-width: 600px) {
  html body #home .home__content-box--heading h3 {
    font-size: 35px;
  }
}
html body #home .home__content-box--heading h4 {
  font-size: 2.5rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 600px) {
  html body #home .home__content-box--heading h4 {
    font-size: 25px;
  }
}
html body #home .home__content-box--container {
  display: flex;
}
html body #home .home__content-box--tab {
  overflow: hidden;
  width: 100vw;
  display: flex;
  justify-content: center;
}
html body #home .home__content-box--tab button {
  background-color: rgba(0, 0, 0, 0.3);
  float: left;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #fff;
  width: 200px;
  text-transform: uppercase;
}
html body #home .home__content-box--tab button:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #63b965;
}
html body #home .home__content-box--tab button.active {
  background-color: rgba(0, 0, 0, 0.8);
}
html body #home .home__content-box--tabcontent {
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 6px 12px;
  border-top: 0;
  width: 100vw;
  text-align: center;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html body #home .home__content-box--container {
  position: absolute;
  top: 520px;
}
html body #about .about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  html body #about .about__container {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  html body #about .about__container {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
html body #about .about__container--left {
  display: table;
  height: 1;
  margin: 10px;
  background-color: rgba(56, 126, 58, 0.1);
  -webkit-transition: -webkit-all 0.5s ease;
  -moz-transition: -moz-all 0.5s ease;
  -o-transition: -o-all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  border: 0;
  color: #000;
  background: rgba(56, 126, 58, 0.1);
}
html body #about .about__container--left p {
  display: table-cell;
  vertical-align: middle;
  padding: 15px;
  width: 60vw;
  text-align: justify;
  text-justify: inter-word;
}
@media (max-width: 768px) {
  html body #about .about__container--left p {
    width: 100vw;
  }
}
@media (max-width: 600px) {
  html body #about .about__container--left p {
    width: 100vw;
  }
}
html body #about .about__container--left::before,
html body #about .about__container--left::after {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  transition: all 0.4s linear;
  background: rgba(56, 126, 58, 0.6);
}
html body #about .about__container--front img {
  height: auto;
  max-width: 300px;
}
html body #about .about__container--right {
  display: table;
  height: 300px;
  margin: 10px;
  background-color: rgba(56, 126, 58, 0.1);
  -webkit-transition: -webkit-all 0.5s ease;
  -moz-transition: -moz-all 0.5s ease;
  -o-transition: -o-all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  border: 0;
  color: #000;
  cursor: pointer;
  background: rgba(56, 126, 58, 0.1);
}
html body #about .about__container--right p {
  display: table-cell;
  vertical-align: middle;
  padding: 15px;
  width: 33vw;
  text-align: justify;
  text-justify: inter-word;
}
html body #about .about__container--right p::before,
html body #about .about__container--right p::after {
  content: "";
  width: 3px;
  height: 0;
  position: absolute;
  transition: all 0.4s linear;
  background: rgba(56, 126, 58, 0.6);
}
html body #about .about__container--right::before,
html body #about .about__container--right::after {
  content: "";
  width: 0;
  height: 3px;
  position: absolute;
  transition: all 0.4s linear;
  background: rgba(56, 126, 58, 0.6);
}
html body #about .about__container--right:hover {
  background-color: rgba(56, 126, 58, 0.3);
}
html body #about .about__container--right:hover::before,
html body #about .about__container--right:hover::after {
  width: 100%;
}
html body #about .about__container--right:hover p::before,
html body #about .about__container--right:hover p::after {
  height: 100%;
}
html body #therapy .therapy__container-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  html body #therapy .therapy__container-top {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
html body #therapy .therapy__container-top .therapy__container-top--left img {
  height: auto;
  max-width: 500px;
}
@media (max-width: 992px) {
  html body #therapy .therapy__container-top .therapy__container-top--left img {
    width: 400px;
  }
}
@media (max-width: 768px) {
  html body #therapy .therapy__container-top .therapy__container-top--left img {
    width: auto;
  }
}
@media (max-width: 600px) {
  html body #therapy .therapy__container-top .therapy__container-top--left img {
    width: 300px;
  }
}
html body #therapy .therapy__container-top .therapy__container-top--right {
  display: table;
  height: 100%;
  margin: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}
html body #therapy .therapy__container-top .therapy__container-top--right p {
  display: table-cell;
  vertical-align: middle;
  padding: 15px;
  width: 50vw;
  text-align: justify;
  text-justify: inter-word;
}
@media (max-width: 768px) {
  html body #therapy .therapy__container-top .therapy__container-top--right p {
    width: 100vw;
  }
}
html body #therapy .therapy__container-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  html body #therapy .therapy__container-bottom {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
html body #therapy .therapy__container-bottom--left {
  display: table;
  height: 100%;
  margin: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}
html body #therapy .therapy__container-bottom--left p {
  display: table-cell;
  vertical-align: middle;
  padding: 15px;
  width: 50vw;
  text-align: justify;
  text-justify: inter-word;
}
@media (max-width: 768px) {
  html
    body
    #therapy
    .therapy__container-bottom
    .therapy__container-bottom--left
    p {
    width: 100vw;
  }
}
html body #therapy .therapy__container-bottom--right img {
  height: auto;
  max-width: 500px;
}
@media (max-width: 600px) {
  html
    body
    #therapy
    .therapy__container-bottom
    .therapy__container-bottom--right
    img {
    width: 300px;
  }
}
html body #target .target__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.1);
}
html body #target .target__container--desc {
  width: 70vw;
  text-align: left;
  margin: 15px 0;
  background-color: rgba(255, 255, 255, 0.07);
  padding: 15px;
}
@media (max-width: 768px) {
  html body #target .target__container--desc {
    width: 90vw;
    margin: 0;
    padding: 12px;
  }
}
@media (max-width: 600px) {
  html body #target .target__container--desc {
    width: 90vw;
    margin: 0;
    padding: 12px;
  }
}
html body #target .target__container--list {
  width: 70vw;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion {
  margin: 3px 0;
  outline: 0;
  cursor: pointer;
  background: #eee;
  width: 100vw;
  border: 0;
  transition: 0.4s;
  height: 40px;
}
.accordion:hover {
  background: #63b965;
  color: #fff;
}
html body #target .target__container--list .target-list {
  list-style-type: none;
}
html body #target .target__container--list .target-list li::before {
  content: "\25E6";
  color: #387e3a;
  font-size: 25px;
  position: relative;
  top: 4px;
}
html body #freedom .freedom__parallax {
  width: 100vw;
  height: 400px;
  background-image: url(img/img-4.jpg);
}
@media (max-width: 600px) {
  html body #freedom .freedom__parallax {
    height: 250px;
  }
}
html body #pricing .pricing__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 600px) {
  html body #pricing .pricing__container {
    flex-direction: column;
    -ms-flex-direction: column;
  }
}
html body #pricing .pricing__container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(img/img-5.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0.2;
}
html body #pricing .pricing__container--offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  text-align: center;
  background: #fff;
  width: 30vw;
  box-shadow: 0 0 40px 0 #838383;
  margin: 150px 50px;
  height: 250px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  html body #pricing .pricing__container--offer {
    width: 80vw;
    margin: 15px;
  }
}
@media (max-width: 600px) {
  html body #pricing .pricing__container--offer {
    width: 80vw;
    margin: 15px;
  }
}
html body #pricing .pricing__container--offer > p {
  width: 100%;
}
html body #pricing .pricing__container--offer p {
  padding: 10px;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
html body #pricing .pricing__container--offer p span {
  color: #838383;
}
html body #pricing .pricing__container--offer p:first-child {
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}
.highlighted {
  background: linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 35px;
}
html body #contact {
  background-color: #41464b;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  margin-top: 30px;
}
html body #contact .contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}
@media (max-width: 768px) {
  html body #contact .contact__container {
    height: auto;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  html body #contact .contact__container {
    height: auto;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
html body #contact .contact__container--address {
  color: #fff;
  background-image: url(img/world-map-2.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 768px) {
  html body #contact .contact__container--address {
    height: auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  html body #contact .contact__container--address {
    height: auto;
    margin: 10px;
  }
}
html body #contact .contact__container--address h3 {
  margin: 15px;
}
@media (max-width: 992px) {
  html body #contact .contact__container--map iframe {
    width: 50vw;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  html body #contact .contact__container--map iframe {
    width: 90vw;
  }
}
@media (max-width: 600px) {
  html body #contact .contact__container--map iframe {
    padding: 30px;
    width: 100vw;
  }
}
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  z-index: 1000;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media (max-width: 600px) {
  html body .cookies {
    flex-direction: column;
  }
}

.cookies .cookies-href {
  text-decoration: none;
  color: inherit;
}

.cookies #accept-cookies {
  margin-left: 10px;
  border: 1px solid black;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 600px) {
  html body .cookies #accept-cookies {
    margin-top: 10px;
  }
}
