@font-face {
  font-family: Gill Sans;
  src: url('../fonts/Gill-Sans.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gill Sans Italic;
  src: url('../fonts/Gill-Sans-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --dark-khaki: #9eaa3d;
  --goldenrod: #ffba00;
  --red: #ff0131;
  --dark-slate-grey: #47503e;
  --saddle-brown: #624e39;
  --dark-slate-blue: #2b3445;
  --brown: #623939;
  --tan: #cfb982;
  --cornflower-blue: #83abce;
  --rosy-brown: #ce8683;
  --dark-khaki-2: #bdce82;
  --dark-slate-grey-2: #2d3436;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.body {
  color: #e2e2e2;
  flex-flow: column;
  font-family: zeitung-micro, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}

.div-top-bar {
  background-color: var(--dark-khaki);
  flex-direction: row;
  justify-content: flex-start;
  height: 100px;
  padding-left: 8%;
  padding-right: 8%;
  display: flex;
}

.logo {
  z-index: 21;
  width: 30%;
  position: absolute;
  top: -56px;
}

.top-bar-text-container {
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.top-bar-text {
  color: #fff;
  align-self: center;
  margin-top: 10px;
  margin-right: 50px;
  font-family: Gill Sans, sans-serif;
  font-size: 24px;
}

.div-grand-hotel {
  align-self: center;
  display: flex;
}

.grand-hotel-text {
  color: #fff;
  margin-top: 10px;
  margin-right: 10px;
  font-family: Gill Sans, sans-serif;
  font-size: 24px;
}

.star {
  width: 16px;
  margin-left: 2px;
  margin-right: 2px;
}

.div-header {
  background-image: url('../images/tabara-de-vindecare-header.webp'), linear-gradient(#000, #000);
  background-position: 50% 0, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  padding: 320px 8% 100px;
}

.main-heading {
  color: #fff;
  margin-right: 400px;
  font-family: Gill Sans, sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 64px;
}

.header-description {
  margin-top: 70px;
  margin-bottom: 100px;
  margin-right: 60%;
  font-size: 21px;
  line-height: 26px;
}

.text-span {
  color: var(--goldenrod);
}

.cta_header {
  border: 2px solid var(--dark-khaki);
  background-color: #42461c4d;
  border-radius: 7px;
  justify-content: space-between;
  padding: 30px 50px;
  display: flex;
}

.cta-heading {
  color: #fff;
  margin-bottom: 0;
  font-family: Gill Sans, sans-serif;
  font-size: 40px;
  font-weight: 400;
}

.cta-date {
  color: var(--goldenrod);
  margin-top: 10px;
  margin-bottom: 40px;
  font-family: Gill Sans, sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.div-cost {
  display: flex;
}

.div-cost-container {
  margin-left: 10px;
}

.image {
  align-self: flex-start;
  margin-top: -4px;
}

.cost {
  font-size: 21px;
  font-weight: 300;
  line-height: 24px;
}

.red-strike {
  color: #ff4848;
  text-decoration: line-through;
  display: none;
}

.red-strike.transparent {
  color: #ffffff4d;
}

.cost-description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
}

.cost-description.center {
  text-align: center;
  line-height: 21px;
}

.cost-description.center.sold-out {
  margin-bottom: 1rem;
}

.cost-description.center.sold-out.hide {
  display: none;
}

.cost-description.small {
  font-size: .75rem;
}

.cost-description.small.hide {
  display: none;
}

.cta-buttons {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  margin-left: 50px;
  display: flex;
}

.button-single-yellow {
  background-color: var(--goldenrod);
  color: #000;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 17px 60px;
  font-family: zeitung-micro, sans-serif;
  font-size: 21px;
  font-weight: 700;
  transition: all .2s;
}

.button-single-yellow:hover {
  transform: scale(1.1);
}

.button-single-yellow.white {
  background-color: #fff;
}

.button-couple {
  background-color: var(--red);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  align-self: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-top: 17px;
  padding-bottom: 17px;
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: none;
}

.button-couple:hover {
  transform: scale(1.1);
}

.text-block {
  text-decoration: none;
}

.button-description {
  color: #ffffffb5;
  text-transform: none;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
}

._2-scop {
  background-color: var(--dark-slate-grey);
  padding: 75px 8% 60px;
}

.quick-stack {
  grid-column-gap: 200px;
  padding: 0;
  font-weight: 400;
}

.feeling-list {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}

.smiley {
  align-self: flex-start;
  margin-top: 1px;
  margin-right: 10px;
}

.gold {
  color: var(--goldenrod);
}

.paragraph {
  margin-top: 10px;
  font-weight: 300;
}

.paragraph-2 {
  font-family: zeitung-micro, sans-serif;
  font-weight: 300;
}

.paragraph-2.black {
  color: #000;
  flex-direction: row;
  justify-content: flex-end;
  width: 45%;
  display: flex;
}

.paragraph-3, .text-block-2, .text-block-3, .text-block-4 {
  font-weight: 300;
}

._3-sistemul {
  background-image: linear-gradient(94deg, #000 7%, #0000 60%), url('../images/story3-resized.jpg');
  background-position: 0 0, 75% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding: 50px 0% 0;
}

.heading {
  color: #fff;
  margin-top: 100px;
  margin-bottom: 30px;
  font-family: Gill Sans, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 42px;
}

.heading.black {
  color: #000;
}

.heading.black.trainer {
  margin-top: 0;
}

.div-container1 {
  margin-bottom: 200px;
  margin-left: 8%;
  margin-right: 50%;
}

._4-rani {
  z-index: 1;
  margin-top: -200px;
  margin-left: 10%;
  margin-right: 10%;
  position: relative;
}

.cell {
  background-color: var(--saddle-brown);
  border-radius: 5px 50px;
  flex-direction: column;
  padding: 50px;
}

.cell-2 {
  background-color: var(--dark-slate-blue);
  border-radius: 50px 5px;
  padding: 50px;
}

.cell-3 {
  background-color: var(--brown);
  border-radius: 50px 5px;
  padding: 50px;
}

.cell-4 {
  background-color: #47503e;
  border-radius: 5px 50px;
  justify-content: flex-start;
  padding: 50px;
}

.rana-heading {
  color: #fff;
  flex: 0 auto;
  margin-bottom: 5px;
  font-family: Gill Sans, sans-serif;
  font-size: 40px;
  font-weight: 400;
}

.yellow {
  color: var(--tan);
}

.lipsa {
  color: var(--cornflower-blue);
  margin-bottom: 50px;
}

.lipsa.yellow {
  color: var(--tan);
}

.div-block-2 {
  margin-top: 5px;
  margin-bottom: 5px;
  display: flex;
}

.image-2 {
  align-self: flex-start;
  margin-top: 4px;
  margin-right: 15px;
}

.quick-stack-2 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  padding: 0;
}

.blue {
  color: var(--cornflower-blue);
}

.red {
  color: var(--rosy-brown);
}

.green {
  color: var(--dark-khaki-2);
}

._5-sad {
  z-index: 0;
  background-color: var(--dark-slate-grey-2);
  background-image: linear-gradient(to bottom, #2d343600 37%, var(--dark-slate-grey-2) 52%), url('../images/sad-optimised.jpg');
  -webkit-text-fill-color: inherit;
  background-position: 0 0, 0 -100px;
  background-repeat: repeat, no-repeat;
  background-size: auto, 100%;
  background-attachment: scroll, scroll;
  background-clip: border-box;
  margin-top: -150px;
  padding: 0 0%;
  position: relative;
}

.paragraph-4 {
  margin-top: 400px;
  margin-left: 8%;
  margin-right: 8%;
}

.paragraph-4.right {
  margin-left: 0%;
  margin-right: 0%;
}

.cta_green {
  background-color: var(--dark-slate-grey);
  border-radius: 5px;
  justify-content: space-between;
  margin-left: 8%;
  margin-right: 8%;
  padding: 40px 50px;
  display: flex;
  position: relative;
  bottom: -120px;
}

.cta_green.no-margin {
  margin-left: 0%;
  margin-right: 0%;
  padding-left: 50px;
  padding-right: 50px;
}

.cta_green.no-margin.green-bg {
  background-color: #2c2f1c;
}

.cta_green.blue-bg {
  background-color: var(--dark-slate-blue);
}

._6-cum-se-desfasoara {
  background-color: #000;
  background-image: url('../images/story2-resized.jpg');
  background-position: -200px 0;
  background-repeat: no-repeat;
  background-size: 80%;
  padding-top: 120px;
}

.quote {
  color: var(--cornflower-blue);
  border-left-style: none;
  padding-top: 30px;
  padding-bottom: 30px;
  font-family: zeitung-micro, sans-serif;
  font-style: italic;
  font-weight: 300;
}

.text-span-3 {
  margin-left: -6px;
}

.div-text-container {
  margin-bottom: 100px;
  margin-left: 40%;
  margin-right: 10%;
}

._7-nevoia-de-vindecare {
  background-color: #fff;
  padding-bottom: 100px;
  padding-left: 8%;
  padding-right: 8%;
}

.image-5 {
  width: 120%;
  max-width: 120%;
  margin-left: -8px;
  overflow: hidden;
}

.div-columns {
  justify-content: space-between;
  display: flex;
}

._8-story1 {
  background-image: linear-gradient(to top, #000 28%, #0000 64%), url('../images/story1-resized.jpg');
  background-position: 0 0, 100% -200px;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-bottom: 100px;
}

._9-story2 {
  background-image: linear-gradient(to top, #000 50%, #0000 79%), url('../images/story4-resized.jpg');
  background-position: 0 0, 0 -175px;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto 1000px;
  padding: 100px 8% 0;
}

._10-story3 {
  background-color: #000;
  background-image: linear-gradient(to top, #000 15%, #0000), url('../images/story5-resized.jpg');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, 1000px;
  padding: 101px 8% 100px;
}

._11-story4 {
  background-image: linear-gradient(to right, #e2e1dc, #e2e1dc00 38%), url('../images/story6d-resized.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  padding-top: 100px;
}

.paragraph-5 {
  color: #000;
  margin-bottom: 100px;
  margin-left: 8%;
  margin-right: 55%;
}

._12-trainer {
  background-color: #fff;
  margin-top: -3px;
  margin-bottom: -3px;
  padding: 50px 8% 75px;
  display: flex;
}

.marius {
  flex: 0 auto;
}

.div-trainer-content {
  margin-left: 150px;
}

.marius-heading {
  color: var(--dark-khaki);
  margin-top: 50px;
  font-family: Gill Sans, sans-serif;
  font-size: 32px;
  font-weight: 400;
}

.paragraph-6 {
  color: var(--dark-slate-grey-2);
}

.very-green {
  color: var(--dark-khaki);
}

.text-block-5 {
  color: var(--dark-slate-blue);
}

._13-zile-de-vindecare {
  background-color: var(--brown);
}

.quick-stack-3 {
  grid-column-gap: 100px;
  margin: 100px 15% 0;
}

.big-text {
  text-align: right;
  font-family: Gill Sans, sans-serif;
  font-size: 92px;
  font-weight: 400;
  line-height: 84px;
}

._14-psihologia-relatiei {
  margin: 250px 8% 50px;
}

.quick-stack-4 {
  grid-column-gap: 75px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.cell-6 {
  background-color: #623939;
  border-radius: 5px;
  padding: 50px;
}

.cell-7 {
  background-color: #2b3445;
  border-radius: 5px;
  padding: 50px;
}

.text-block-6 {
  color: #fff;
  margin-top: 20px;
}

.text-block-6.top {
  margin-top: -20px;
}

.semi-title {
  color: var(--rosy-brown);
  margin-top: 50px;
  margin-bottom: 15px;
}

.semi-title.blue {
  color: var(--cornflower-blue);
}

._15-de-ce-tabara {
  background-color: var(--saddle-brown);
}

.image-9 {
  margin-top: -5px;
  transform: rotate(180deg);
}

.div-content {
  margin-bottom: 0;
  margin-left: 8%;
  margin-right: 8%;
}

.quick-stack-5 {
  grid-column-gap: 150px;
}

._16-footer {
  background-color: #212121;
  padding-top: 175px;
}

._17-copyright {
  background-color: #000;
}

.copyright {
  text-align: center;
  padding: 20px 20px 30px;
}

.div-footer {
  border-top: 1px solid #4a4a4a;
  justify-content: space-between;
  margin-left: 8%;
  margin-right: 8%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.sal-sol {
  flex-direction: column;
  margin-right: 50px;
  display: flex;
}

.salsol {
  margin-top: 5px;
  margin-bottom: 5px;
}

.div-termeni {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.link {
  color: var(--tan);
  margin-top: 5px;
  margin-bottom: 5px;
}

.boostetic {
  order: 0;
}

.div-footer-content {
  display: flex;
}

.text-block-7 {
  text-align: center;
  margin-bottom: 20px;
}

.wrapper {
  width: 100%;
  overflow: hidden;
}

.html-embed {
  text-align: center;
  margin: 2rem 0%;
}

.html-embed.lower {
  margin-left: 0%;
  margin-right: 0%;
}

.embed {
  margin-top: 2rem;
}

.grid_videos_2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-left: 15%;
  margin-right: 15%;
}

.grid-testimoniale-3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 2rem;
  margin-left: 15%;
  margin-right: 15%;
}

.testimonial {
  border-radius: .5rem;
  overflow: hidden;
}

.test-img {
  min-width: 100%;
}

.grid-testimoniale-2 {
  grid-template-rows: auto auto;
  margin-top: 1rem;
  margin-left: 15%;
  margin-right: 15%;
}

.text-span-4 {
  font-size: .85rem;
}

.text-span-4.hide {
  display: none;
}

.old-price {
  font-size: 16px;
  text-decoration: line-through;
}

.keep {
  white-space: nowrap;
}

@media screen and (min-width: 1280px) {
  .cta-content {
    margin-right: 100px;
  }

  ._5-sad {
    background-image: url('../images/sad-optimised.jpg');
    background-position: 500px -100px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-attachment: scroll;
  }

  .paragraph-4 {
    margin-top: 150px;
    margin-right: 55%;
  }

  .paragraph-4.right {
    margin-top: 75px;
    margin-left: 50%;
  }

  .paragraph-4.right.lower {
    margin-top: 100px;
  }

  ._9-story2 {
    background-image: linear-gradient(270deg, #000 50%, #0000 79%), url('../images/story4-resized.jpg');
    background-position: 0 0, -250px -100px;
    background-repeat: repeat, no-repeat;
    background-size: auto, auto 110%;
  }
}

@media screen and (min-width: 1440px) {
  .div-header, ._2-scop {
    padding-left: 10%;
    padding-right: 10%;
  }

  .div-container1 {
    margin-left: 10%;
  }

  ._5-sad {
    background-position: 500px -200px;
  }

  .paragraph-4 {
    margin-left: 10%;
  }

  .cta_green {
    margin-left: 10%;
    margin-right: 10%;
  }

  ._6-cum-se-desfasoara {
    background-position: -300px 0;
  }

  ._7-nevoia-de-vindecare, ._9-story2, ._10-story3 {
    padding-left: 10%;
    padding-right: 10%;
  }

  .paragraph-5 {
    margin-left: 10%;
  }

  ._12-trainer {
    padding-left: 10%;
    padding-right: 10%;
  }

  ._14-psihologia-relatiei, .div-content, .div-footer {
    margin-left: 10%;
    margin-right: 10%;
  }
}

@media screen and (min-width: 1920px) {
  .div-top-bar {
    padding-left: 18%;
    padding-right: 18%;
  }

  .logo {
    width: 25%;
    top: -80px;
  }

  .top-bar-text {
    margin-right: 100px;
  }

  .div-header {
    padding-top: 350px;
    padding-left: 18%;
    padding-right: 18%;
  }

  .cta_header {
    padding-left: 50px;
    padding-right: 50px;
  }

  .red-strike.transparent {
    color: #ffffff4d;
  }

  .cta-content {
    margin-right: 50px;
  }

  .button-single-yellow.white {
    background-color: #fff;
  }

  ._2-scop {
    padding-left: 18%;
    padding-right: 18%;
  }

  .div-container1 {
    margin-left: 18%;
  }

  ._4-rani {
    margin-top: -246px;
    margin-left: 18%;
    margin-right: 18%;
  }

  ._5-sad {
    background-position: 600px;
    background-size: 100%;
  }

  .paragraph-4 {
    margin-left: 18%;
    margin-right: 60%;
  }

  .image-4 {
    width: 120%;
    margin-top: -25px;
  }

  .cta_green {
    margin-left: 18%;
    margin-right: 18%;
    padding-left: 50px;
    padding-right: 50px;
  }

  .cta_green.no-margin {
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 50px;
    padding-right: 50px;
  }

  .cta_green.no-margin.green-bg, .cta_green.blue-bg {
    padding-left: 50px;
    padding-right: 50px;
  }

  ._6-cum-se-desfasoara {
    background-position: -400px -500px;
  }

  .div-text-container {
    margin-left: 48%;
    margin-right: 18%;
  }

  ._7-nevoia-de-vindecare {
    padding-left: 18%;
    padding-right: 18%;
  }

  .image-5 {
    margin-bottom: -5px;
  }

  ._8-story1 {
    background-image: linear-gradient(to top, #000 21%, #0000 64%), url('../images/story1-resized.jpg');
    background-position: 0 0, 100% -200px;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  ._9-story2 {
    background-position: 0 0, 0 -100px;
    padding-left: 18%;
    padding-right: 18%;
  }

  .image-6 {
    margin-top: -5px;
  }

  .image-7 {
    margin-bottom: -5px;
  }

  ._10-story3 {
    padding-left: 18%;
    padding-right: 18%;
  }

  ._11-story4 {
    background-image: linear-gradient(90deg, #e2e1dc 50%, #e2e1dc00 70%), url('../images/story6d-resized.jpg');
    background-position: 0 0, 100% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, contain;
  }

  .paragraph-5 {
    margin-left: 18%;
  }

  ._12-trainer {
    padding: 50px 18% 75px;
  }

  .quick-stack-3 {
    margin-left: 18%;
    margin-right: 18%;
  }

  .image-8 {
    margin-top: -5px;
  }

  ._14-psihologia-relatiei {
    margin-left: 18%;
    margin-right: 18%;
  }

  .image-9 {
    margin-top: -5px;
  }

  .div-content, .div-footer, .grid_videos_2, .grid-testimoniale-3, .grid-testimoniale-2 {
    margin-left: 18%;
    margin-right: 18%;
  }
}

@media screen and (max-width: 991px) {
  .div-top-bar {
    justify-content: flex-end;
    height: 120px;
  }

  .logo {
    width: 40%;
    inset: -4% auto auto 7%;
  }

  .top-bar-text-container {
    flex-direction: column;
    flex: 0 auto;
    order: 0;
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .top-bar-text {
    text-align: right;
    margin-bottom: 0;
    margin-right: 0;
    font-size: 24px;
  }

  .grand-hotel-text {
    font-size: 24px;
  }

  .div-header {
    background-image: url('../images/tabara-de-vindecare-header.webp'), linear-gradient(#080606, #080606);
    background-position: 50% 0, 0 0;
    background-size: 1200px, auto;
    padding-top: 180px;
  }

  .main-heading {
    margin-right: 190px;
    font-size: 72px;
    line-height: 60px;
  }

  .header-description {
    margin-right: 40%;
  }

  .cta_header {
    flex-direction: column;
  }

  .cta-heading, .cta-date {
    text-align: center;
  }

  .div-cost {
    justify-content: center;
    margin-bottom: 50px;
  }

  .cta-buttons {
    width: 100%;
    margin-left: 0;
  }

  .button-single-yellow {
    text-align: center;
  }

  .paragraph-2.black {
    width: 100%;
  }

  ._3-sistemul {
    background-image: linear-gradient(to top, #1a0f03 50%, #1a0f0300 72%), url('../images/story3-resized.jpg'), linear-gradient(#1a0f03, #1a0f03);
    background-position: 0 0, 75% 0, 0 0;
    background-repeat: repeat, no-repeat, repeat;
    background-size: auto, 120%, auto;
    background-attachment: scroll, scroll, scroll;
  }

  .heading {
    line-height: 42px;
  }

  .div-container1 {
    margin-bottom: 300px;
    margin-right: 45%;
  }

  ._4-rani {
    margin-top: -270px;
  }

  ._5-sad {
    background-image: linear-gradient(to bottom, #2d343600 31%, var(--dark-slate-grey-2) 47%), url('../images/sad-optimised.jpg');
    background-position: 0 0, 30% 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, 130%;
  }

  .paragraph-4 {
    margin-top: 500px;
    margin-right: 8%;
  }

  .paragraph-4.less-margin {
    margin-top: 400px;
  }

  .paragraph-4.right {
    margin-top: 400px;
    margin-left: 0%;
    margin-right: 0%;
  }

  .paragraph-4.right.lower {
    margin-top: 500px;
  }

  .cta_green {
    flex-direction: column;
  }

  ._6-cum-se-desfasoara {
    background-position: 50% -200px;
    background-size: 120%;
    padding-top: 300px;
  }

  .div-text-container {
    margin-left: 8%;
    margin-right: 8%;
  }

  ._8-story1 {
    background-image: linear-gradient(#0000 36%, #000 68%), url('../images/story1-resized.jpg');
    background-position: 0 0, 80% -150px;
    background-repeat: repeat, no-repeat;
    background-size: auto, 1800px;
  }

  ._9-story2 {
    background-image: linear-gradient(to top, #000 62%, #0000 75%), url('../images/story4-resized.jpg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, 1000px;
  }

  ._11-story4 {
    background-image: linear-gradient(to top, #0f141a 40%, #0f141800 75%), url('../images/story6m-resized.jpg');
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding-top: 475px;
  }

  .paragraph-5 {
    color: #fff;
    margin-right: 8%;
  }

  ._12-trainer {
    flex-direction: column;
  }

  .marius {
    align-self: flex-start;
    max-width: none;
  }

  .div-trainer-content {
    margin-top: 50px;
    margin-left: 0;
  }

  .quick-stack-3 {
    margin-left: 8%;
    margin-right: 8%;
  }

  .big-text {
    text-align: left;
    align-self: flex-start;
    font-size: 75px;
    line-height: 60px;
  }

  .cell-5 {
    align-items: flex-end;
  }

  .quick-stack-4 {
    grid-column-gap: 30px;
    padding: 0;
  }

  .quick-stack-5 {
    padding: 0;
  }

  .div-footer {
    flex-direction: column;
  }

  .boostetic {
    align-self: flex-start;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .html-embed {
    margin-top: 0;
    margin-bottom: 0;
  }

  .grid_videos_2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin: 2rem 8% -50px;
  }

  .grid-testimoniale-3, .grid-testimoniale-2 {
    margin-left: 8%;
    margin-right: 8%;
  }
}

@media screen and (max-width: 767px) {
  .div-top-bar {
    z-index: 25;
    height: 100px;
    position: relative;
  }

  .logo {
    width: 60%;
    inset: 5% auto auto 6%;
  }

  .top-bar-text-container {
    flex: 1;
  }

  .top-bar-text {
    margin-bottom: 0;
  }

  .div-header {
    background-image: url('../images/tabara-de-vindecare-header.webp'), linear-gradient(#0b0a09, #0b0a09);
    background-position: 50% 15%, 0 0;
    background-size: 780px, auto;
    padding-top: 45vw;
  }

  .main-heading {
    font-size: 60px;
  }

  .header-description {
    margin-right: 0%;
  }

  .cost {
    line-height: 24px;
  }

  .paragraph-2.black {
    width: 100%;
    margin-top: 10px;
  }

  ._3-sistemul {
    background-image: linear-gradient(to top, #1a0f03 66%, #1a0f0300 82%), url('../images/story3-resized.jpg'), linear-gradient(#0000, #0000);
    background-position: 0 0, 100% -10%, 0 0;
    background-size: auto, 200%, auto;
    padding-top: 75vw;
  }

  .div-container1 {
    margin-right: 8%;
  }

  ._4-rani {
    margin-top: -220px;
  }

  .image-2 {
    align-self: flex-start;
    margin-top: 5px;
  }

  .quick-stack-2 {
    grid-row-gap: 30px;
    padding: 0;
  }

  ._5-sad {
    background-image: linear-gradient(#2d343600 22%, #2d3436 40%), url('../images/sad-optimised.jpg');
    background-position: 0 0, 30% -15%;
    background-repeat: repeat, no-repeat;
    background-size: auto, 1000px;
  }

  .paragraph-4 {
    margin-top: 414px;
    margin-right: 8%;
  }

  ._6-cum-se-desfasoara {
    background-position: 50% 0;
  }

  .div-columns {
    flex-direction: column;
  }

  ._9-story2 {
    background-image: linear-gradient(to top, #000 65%, #0000 81%), url('../images/story4-resized.jpg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, 1000px;
  }

  ._11-story4 {
    background-image: linear-gradient(to top, #0f141a 53%, #0f141800 82%), url('../images/story6m-resized.jpg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, contain;
  }

  .marius {
    width: 70%;
    height: 70%;
  }

  .quick-stack-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .big-text {
    font-size: 72px;
    line-height: 65px;
  }

  .grid-testimoniale-3, .grid-testimoniale-2 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .body {
    font-size: 16px;
    line-height: 22px;
    overflow: visible;
  }

  .div-top-bar {
    height: 80px;
    position: relative;
  }

  .logo {
    width: 75%;
    top: 2%;
    left: 53px;
    overflow: hidden;
  }

  .top-bar-text {
    margin-bottom: 0;
    font-size: 21px;
  }

  .grand-hotel-text {
    margin-top: 6px;
    font-size: 21px;
  }

  .star {
    width: 16px;
  }

  .div-header {
    background-image: url('../images/tabara-de-vindecare-header.webp'), linear-gradient(#0d0a0a, #0d0a0a);
    background-position: 75% 18%, 0 0;
    background-size: 650px, auto;
    padding-top: 100vw;
    padding-left: 7%;
    padding-right: 7%;
  }

  .main-heading {
    margin-right: 0;
    font-size: 48px;
    line-height: 48px;
  }

  .header-description {
    margin-top: 50px;
    margin-bottom: 70px;
    font-size: 16px;
    line-height: 22px;
  }

  .cta_header {
    margin-left: -5px;
    margin-right: -5px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-heading {
    font-size: 30px;
    line-height: 30px;
  }

  .cta-date {
    margin-top: 5px;
    font-size: 24px;
  }

  .cost {
    white-space: pre-wrap;
    word-break: keep-all;
    font-size: 18px;
  }

  .cost-description {
    overflow-wrap: break-word;
  }

  .button-single-yellow {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 18px;
    line-height: 21px;
  }

  .text-block {
    font-size: 18px;
  }

  .button-description {
    margin-top: 0;
    font-size: 12px;
  }

  ._2-scop {
    padding-left: 7%;
    padding-right: 7%;
  }

  .quick-stack {
    padding: 0;
  }

  .paragraph {
    font-size: 16px;
    line-height: 22px;
  }

  .paragraph-2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
  }

  .paragraph-2.black {
    font-weight: 300;
  }

  .paragraph-3, .text-block-2, .text-block-3, .text-block-4 {
    font-size: 16px;
    line-height: 22px;
  }

  ._3-sistemul {
    background-image: linear-gradient(to top, #1a0f03 74%, #1a0f0300 87%), url('../images/story3-resized.jpg'), linear-gradient(#0000, #0000);
    background-position: 0 0, 95% -20%, 0 0;
    background-size: auto, 1000px, auto;
    padding-top: 60vw;
  }

  .heading {
    font-size: 30px;
    line-height: 32px;
  }

  .div-container1 {
    margin-left: 7%;
    margin-right: 7%;
  }

  ._4-rani {
    margin-left: 3%;
    margin-right: 3%;
  }

  .cell, .cell-2, .cell-3, .cell-4 {
    padding: 40px 30px 45px;
  }

  .rana-heading {
    font-size: 28px;
    line-height: 30px;
  }

  .image-2 {
    margin-top: 3px;
  }

  .quick-stack-2 {
    grid-row-gap: 20px;
  }

  ._5-sad {
    background-image: linear-gradient(#2d343600 25%, #2d3436 37%), url('../images/sad-optimised.jpg');
    background-position: 0 0, 30% 23%;
    background-repeat: repeat, no-repeat;
    background-size: auto, 120%;
    margin-top: -350px;
  }

  .paragraph-4 {
    margin-top: 500px;
    margin-left: 7%;
    margin-right: 7%;
  }

  .paragraph-4.less-margin {
    margin-top: 250px;
  }

  .paragraph-4.right {
    margin-top: 239px;
  }

  .paragraph-4.right.lower {
    margin-top: 350px;
  }

  .image-4 {
    margin-top: -16px;
  }

  .cta_green {
    border-radius: 7px;
    margin-left: 5%;
    margin-right: 5%;
    padding: 30px 20px;
    bottom: -60px;
  }

  .cta_green.no-margin, .cta_green.no-margin.green-bg {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  ._6-cum-se-desfasoara {
    padding-top: 180px;
  }

  .quote {
    font-size: 16px;
  }

  .div-text-container {
    margin-left: 7%;
    margin-right: 7%;
  }

  ._7-nevoia-de-vindecare {
    padding-left: 7%;
    padding-right: 7%;
  }

  .image-5 {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  ._8-story1 {
    background-image: linear-gradient(to top, #000 61%, #0000 86%), url('../images/story1-resized.jpg');
    background-position: 0 0, 80% -150px;
    background-repeat: repeat, no-repeat;
    background-size: auto, 1200px;
  }

  ._9-story2 {
    background-image: linear-gradient(to top, #000 78%, #0000 86%), url('../images/story4-resized.jpg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, 600px;
    padding-left: 7%;
    padding-right: 7%;
  }

  .image-6 {
    margin-top: -16px;
  }

  ._10-story3 {
    background-position: -50px 0;
    background-size: 700px;
    padding-left: 7%;
    padding-right: 7%;
  }

  ._11-story4 {
    background-image: linear-gradient(to top, #0f141a 69%, #0f141800 90%), url('../images/story6m-resized.jpg');
    background-position: 0 0, 0 0;
    background-repeat: repeat, no-repeat;
    background-size: auto, contain;
    padding-top: 300px;
  }

  .paragraph-5 {
    margin-left: 7%;
    margin-right: 7%;
  }

  ._12-trainer {
    padding-left: 7%;
    padding-right: 7%;
  }

  .marius {
    width: 100%;
    height: 100%;
  }

  .quick-stack-3 {
    margin-top: 75px;
    margin-left: 7%;
    margin-right: 7%;
    padding-left: 0;
    padding-right: 0;
  }

  .big-text {
    font-size: 48px;
    line-height: 42px;
  }

  .image-8 {
    margin-top: -10px;
  }

  ._14-psihologia-relatiei {
    margin-top: 150px;
    margin-left: 7%;
    margin-right: 7%;
  }

  .quick-stack-4 {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 0;
    padding-right: 0;
  }

  .cell-6, .cell-7 {
    padding: 25px;
  }

  .div-content {
    margin-left: 7%;
    margin-right: 7%;
  }

  .image-10 {
    width: 200px;
  }

  .div-footer {
    margin-left: 7%;
    margin-right: 7%;
  }

  .div-termeni {
    margin-top: 30px;
  }

  .boostetic {
    width: 40%;
    height: 40%;
    margin-bottom: 20px;
    margin-left: 0%;
  }

  .div-footer-content {
    flex-direction: column;
  }

  .html-embed {
    margin-bottom: 0;
  }

  .grid_videos_2 {
    margin-left: 7%;
    margin-right: 7%;
  }
}

#w-node-_6918d4b1-d418-0c79-899c-0b958b644ced-c5755219 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_6918d4b1-d418-0c79-899c-0b958b644cee-c5755219, #w-node-_6918d4b1-d418-0c79-899c-0b958b644cef-c5755219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1bd435d-d49b-773f-34e0-ccd7dcf1273e-c5755219 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-e1bd435d-d49b-773f-34e0-ccd7dcf1273f-c5755219, #w-node-e1bd435d-d49b-773f-34e0-ccd7dcf12740-c5755219, #w-node-d4584b5e-d078-831f-8db7-1521707dc604-c5755219, #w-node-_47e868f9-29cf-f8d7-1494-b6165ff1a12d-c5755219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bc063a93-d64c-db94-9839-0b2feb0d0c25-c5755219 {
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

#w-node-bc063a93-d64c-db94-9839-0b2feb0d0c26-c5755219, #w-node-bc063a93-d64c-db94-9839-0b2feb0d0c27-c5755219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_186e6406-280d-84cc-a2c6-d240ccb212ce-c5755219, #w-node-_27bf06ea-f10f-7108-db48-c405ff980ff7-c5755219, #w-node-_9297cf8f-78f7-8838-7f91-38176a9002a3-c5755219, #w-node-b7c8b96b-b497-84b0-0407-9f8150e382cf-c5755219, #w-node-_9297cf8f-78f7-8838-7f91-38176a9002a5-c5755219, #w-node-_46c3d472-0917-4434-b1a0-e4ea633b4ee4-c5755219 {
  align-self: start;
}

#w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bba-c5755219 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bbb-c5755219, #w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bbc-c5755219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5030a517-4424-ea03-fe0c-4174080f6de9-c5755219 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_5030a517-4424-ea03-fe0c-4174080f6dea-c5755219, #w-node-_5030a517-4424-ea03-fe0c-4174080f6deb-c5755219 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6918d4b1-d418-0c79-899c-0b958b644ced-a533ff08 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_6918d4b1-d418-0c79-899c-0b958b644cee-a533ff08, #w-node-_6918d4b1-d418-0c79-899c-0b958b644cef-a533ff08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e1bd435d-d49b-773f-34e0-ccd7dcf1273e-a533ff08 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-e1bd435d-d49b-773f-34e0-ccd7dcf1273f-a533ff08, #w-node-e1bd435d-d49b-773f-34e0-ccd7dcf12740-a533ff08, #w-node-d4584b5e-d078-831f-8db7-1521707dc604-a533ff08, #w-node-_47e868f9-29cf-f8d7-1494-b6165ff1a12d-a533ff08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bc063a93-d64c-db94-9839-0b2feb0d0c25-a533ff08 {
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

#w-node-bc063a93-d64c-db94-9839-0b2feb0d0c26-a533ff08, #w-node-bc063a93-d64c-db94-9839-0b2feb0d0c27-a533ff08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bba-a533ff08 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bbb-a533ff08, #w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bbc-a533ff08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5030a517-4424-ea03-fe0c-4174080f6de9-a533ff08 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_5030a517-4424-ea03-fe0c-4174080f6dea-a533ff08, #w-node-_5030a517-4424-ea03-fe0c-4174080f6deb-a533ff08 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_6918d4b1-d418-0c79-899c-0b958b644ced-c5755219 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_6918d4b1-d418-0c79-899c-0b958b644cee-c5755219, #w-node-_6918d4b1-d418-0c79-899c-0b958b644cef-c5755219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e1bd435d-d49b-773f-34e0-ccd7dcf1273e-c5755219 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e1bd435d-d49b-773f-34e0-ccd7dcf1273f-c5755219, #w-node-e1bd435d-d49b-773f-34e0-ccd7dcf12740-c5755219, #w-node-d4584b5e-d078-831f-8db7-1521707dc604-c5755219, #w-node-_47e868f9-29cf-f8d7-1494-b6165ff1a12d-c5755219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-bc063a93-d64c-db94-9839-0b2feb0d0c25-c5755219 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-bc063a93-d64c-db94-9839-0b2feb0d0c26-c5755219, #w-node-bc063a93-d64c-db94-9839-0b2feb0d0c27-c5755219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bba-c5755219 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bbb-c5755219, #w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bbc-c5755219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5030a517-4424-ea03-fe0c-4174080f6de9-c5755219 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5030a517-4424-ea03-fe0c-4174080f6dea-c5755219, #w-node-_5030a517-4424-ea03-fe0c-4174080f6deb-c5755219 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6918d4b1-d418-0c79-899c-0b958b644ced-a533ff08 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_6918d4b1-d418-0c79-899c-0b958b644cee-a533ff08, #w-node-_6918d4b1-d418-0c79-899c-0b958b644cef-a533ff08 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e1bd435d-d49b-773f-34e0-ccd7dcf1273e-a533ff08 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e1bd435d-d49b-773f-34e0-ccd7dcf1273f-a533ff08, #w-node-e1bd435d-d49b-773f-34e0-ccd7dcf12740-a533ff08, #w-node-d4584b5e-d078-831f-8db7-1521707dc604-a533ff08, #w-node-_47e868f9-29cf-f8d7-1494-b6165ff1a12d-a533ff08 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-bc063a93-d64c-db94-9839-0b2feb0d0c25-a533ff08 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-bc063a93-d64c-db94-9839-0b2feb0d0c26-a533ff08, #w-node-bc063a93-d64c-db94-9839-0b2feb0d0c27-a533ff08 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bba-a533ff08 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bbb-a533ff08, #w-node-_9aaff3ee-7306-d30b-0378-2c55ece84bbc-a533ff08 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5030a517-4424-ea03-fe0c-4174080f6de9-a533ff08 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5030a517-4424-ea03-fe0c-4174080f6dea-a533ff08, #w-node-_5030a517-4424-ea03-fe0c-4174080f6deb-a533ff08 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Gill Sans';
  src: url('../fonts/Gill-Sans.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gill Sans Italic';
  src: url('../fonts/Gill-Sans-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}