:root {
  --grapefruit: #e22b71;
  --light-pink: #ffafad;
  --sadistic-purple: #220d3f;
}

.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: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

p {
  text-align: left;
  margin-bottom: 10px;
}

a {
  color: var(--grapefruit);
  font-weight: 700;
  text-decoration: none;
}

.logo {
  z-index: 99;
  height: 120px;
  margin-right: 40px;
  position: absolute;
}

.logo.hover {
  z-index: 110;
  width: 10em;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  opacity: 1;
  filter: saturate(200%);
  padding: 10px;
  position: relative;
}

.navbutton {
  opacity: 1;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: color .5s, padding .5s cubic-bezier(.075, .82, .165, 1), box-shadow .5s cubic-bezier(.075, .82, .165, 1);
}

.navbutton:hover {
  color: var(--light-pink);
  padding-top: 6px;
  padding-bottom: 12px;
}

.navbutton:active {
  border-bottom: 1px solid var(--light-pink);
}

.navbutton.w--current {
  border-bottom: 2px solid var(--light-pink);
}

.navbutton.w--current:hover {
  color: var(--light-pink);
}

.navbutton.w--current:active {
  border-bottom-color: var(--light-pink);
  color: var(--light-pink);
}

.navbutton.nohover:hover {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbutton.mobile, .navbutton.hidefrommenu {
  display: none;
}

.navbutton.programare {
  background-color: #ffafad;
}

.navbutton.programare:hover {
  background-color: var(--sadistic-purple);
  color: #fff;
}

.hero {
  z-index: 50;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(rgba(0, 0, 0, .53), rgba(0, 0, 0, .53)), url('../images/WhatsApp-Image-2020-12-15-at-12.52.29.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: visible;
}

.hero.subpage {
  height: 40vh;
  min-height: 600px;
  background-image: url('../images/70120370_472769926641559_345415593660252160_n.jpg');
  background-position: 50% 84%;
  background-size: cover;
}

.hero_tagline {
  z-index: 99;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  background-color: rgba(0, 0, 0, 0);
  margin-top: auto;
  margin-bottom: 40px;
  font-family: Source Sans Pro, sans-serif;
  font-size: 86px;
  font-weight: 700;
  line-height: 120px;
  position: relative;
}

.hero_tagline.subpage {
  text-transform: uppercase;
  font-family: Cormorantunicase, sans-serif;
  font-size: 72px;
  font-weight: 300;
}

.body {
  flex-direction: column;
  align-items: center;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 26px;
  display: flex;
}

.background-video {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero_cta {
  width: 90%;
  height: 90%;
  min-height: 400px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 100px;
  font-size: 16px;
  display: flex;
  position: absolute;
}

.hero_cta.subpage {
  width: auto;
}

.h1_span {
  color: #fff;
  font-family: Source Sans Pro, sans-serif;
  font-style: italic;
  font-weight: 400;
}

.button {
  z-index: 99;
  background-color: var(--sadistic-purple);
  color: #fff;
  letter-spacing: 1px;
  border-radius: 10px;
  margin-top: 20px;
  margin-right: 20px;
  padding: 15px 35px;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  transition: background-color .2s cubic-bezier(.994, .003, .58, 1);
  position: relative;
}

.button:hover {
  background-color: var(--light-pink);
}

.button.invert {
  background-color: var(--light-pink);
  color: #fff;
  transition: color .2s, background-color .2s cubic-bezier(.994, .003, .58, 1);
}

.button.invert:hover {
  background-color: var(--sadistic-purple);
  color: #fff;
}

.button.invert.pagination {
  width: 150px;
  text-align: center;
  margin-left: 0;
  margin-right: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.button.nomargintop {
  margin-top: 0;
}

.navbar {
  z-index: 100;
  justify-content: center;
  align-items: center;
  margin-top: 3.7vh;
  margin-bottom: auto;
  padding-top: 0;
  padding-right: 0;
  display: flex;
  position: static;
}

.button_container {
  align-items: flex-start;
  margin-bottom: auto;
  display: flex;
}

.section_content {
  width: 100%;
  max-width: none;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 100px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
}

.section_content.child {
  z-index: 20;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.section_content.post_content {
  justify-content: center;
  margin-top: 0;
  display: flex;
}

.section_content.footer {
  background-color: #aaa;
  margin-top: auto;
  padding-top: 50px;
}

.h2 {
  color: #000;
  text-transform: uppercase;
  font-family: Cormorantunicase, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 72px;
}

.h2.invert {
  color: #fff;
}

.content_grid {
  grid-column-gap: 0px;
  grid-template: ". ."
                 ". ."
                 ". Area"
                 / 1fr 1fr;
  grid-auto-rows: auto;
  align-items: center;
  margin-bottom: 100px;
}

.content_grid.logos {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.content_grid.subpage {
  grid-row-gap: 16px;
  align-items: start;
}

.content_grid.blogroll {
  grid-row-gap: 4px;
  grid-template-columns: 1fr;
}

.image-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 50%;
  border-radius: 10px;
  display: none;
  overflow: hidden;
}

.image-2.subpage {
  width: 100%;
  overflow: visible;
}

.feature_container.promooo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph {
  color: #000;
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Source Sans Pro, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.paragraph.invert {
  color: #ddd;
}

.paragraph.blog_post_details {
  margin-right: 5px;
  font-family: Open Sans, sans-serif;
}

.paragraph.blog_post_details.invert.hide {
  display: none;
}

.h2_divider {
  width: 80px;
  height: 4px;
  background-color: var(--light-pink);
  margin-top: 20px;
}

.h3 {
  color: var(--light-pink);
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Georgia, Times, Times New Roman, serif;
  line-height: 42px;
}

.link {
  color: var(--sadistic-purple);
  padding-bottom: 3vh;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.link.phone {
  margin-left: 5px;
}

.link.button.invert {
  width: 14vw;
  text-align: center;
  background-image: url('../images/WhatsApp-Image-2020-12-15-at-12.51.39-5.jpeg');
  background-position: 50%;
  background-size: cover;
  flex-direction: row;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link.button.invert:hover {
  background-color: var(--sadistic-purple);
  color: #fff;
}

.link.button.invert.mani {
  width: 20vw;
  height: 20vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Manichiura-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.link.button.invert.pedi {
  width: 20vw;
  height: 20vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Pedichiura-min.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
}

.link.button.invert.art {
  width: 20vw;
  height: 20vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/WhatsApp-Image-2020-12-15-at-12.52.16.jpeg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
}

.link.button.invert.spa {
  width: 20vw;
  height: 20vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/WhatsApp-Image-2020-12-15-at-12.51.39-5.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.link.button.invert.trat {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/WhatsApp-Image-2020-12-15-at-12.53.43-1.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.link.button.invert.cosmetica {
  width: 20vw;
  height: 20vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Cosmetica-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.link.button.invert.cosmetica.curs {
  width: 50vw;
  height: 30vh;
  background-image: linear-gradient(rgba(0, 0, 0, .48), rgba(0, 0, 0, .48)), url('../images/Portofoliu-Cursuri-min.jpeg');
  background-position: 0 0, 50%;
}

.link.button.invert.coafura {
  width: 20vw;
  height: 20vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Coafura-min.JPG');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.link.button.invert.coafura.curs {
  width: 50vw;
  height: 30vh;
}

.link.button.invert.curs {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/129875053_773331529918729_4341271400707599023_o.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.link.button.invert.tratamente {
  width: 20vw;
  height: 20vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Tratamente-faciale-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.link.button.invert.tratamente.curs {
  width: 50vw;
  height: 30vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Manichiura-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.link.button.invert.extensii {
  width: 20vw;
  height: 20vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Extensii-gene-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.link.button.invert.manipedispa {
  width: 20vw;
  height: 20vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Mani-pedi-SPA-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.link.button.invert.masaj {
  width: 20vw;
  height: 20vh;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Masaj-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.collection-item {
  text-align: left;
  padding-left: 40px;
}

.div-block {
  z-index: 99;
  background-image: linear-gradient(#fff 5%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%, #fff 95%);
  display: none;
  position: relative;
}

.collection-list-wrapper {
  z-index: 20;
  position: relative;
  overflow: hidden;
}

.grid_contact {
  z-index: 10;
  grid-column-gap: 10px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 4fr 1.5fr;
}

.textarea {
  min-height: 100px;
  border: 2px solid #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: border .35s;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, .1);
}

.textarea:focus {
  border-color: #f3eaea;
}

.text-block-4 {
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 200;
}

.map {
  width: 100%;
  border-bottom: 6px solid var(--grapefruit);
  margin-top: 100px;
}

.success-message {
  background-color: #80a7c1;
}

.form_input {
  height: 45px;
  border: 2px #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: border .35s;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, .1);
}

.form_input:focus {
  border: 2px solid #f3eaea;
}

.copyright {
  margin-top: 5.6em;
  font-size: .8em;
  display: flex;
}

.field-label {
  color: #333;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.copyright__text {
  color: var(--light-pink);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 40px;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
}

.section_full {
  width: 100%;
  min-height: 100px;
  background-color: var(--sadistic-purple);
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 0;
  padding: 100px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.parallaxbg {
  z-index: 1;
  height: 200%;
  max-width: none;
  min-width: 100%;
  opacity: .1;
  margin-top: -800px;
  position: absolute;
}

.partnerlogos {
  width: 150px;
  max-width: 100%;
}

.rich-text-block {
  margin-top: 40px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.bg_overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Manichiura-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.bg_overlay.tratamente {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Tratamente-faciale-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.bg_overlay.cursuri {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Portofoliu-manichiura-2-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.bg_overlay.spa {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Masaj-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.bg_overlay.art {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Mani-pedi-SPA-min.jpg');
  background-position: 0 0, 50% 58%;
  background-size: auto, cover;
}

.bg_overlay.pedi {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Pedichiura-min.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
}

.bg_overlay.coafura {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Coafura-min.JPG');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.bg_overlay.cosmetica {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Cosmetica-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.bg_overlay.extensiigene {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Servicii_Extensii-gene-min.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.bg_overlay.despre {
  background-image: url('../images/Background_Promotii-min.jpg');
  background-position: 50%;
  background-size: cover;
}

.bg_overlay.contact {
  background-image: url('../images/WhatsApp-Image-2020-12-15-at-12.52.29.jpeg');
  background-position: 50%;
  background-size: cover;
}

.blog_post_details {
  margin-bottom: 20px;
  display: flex;
}

.collection-list-wrapper-2 {
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.collection-list-wrapper-2.hide {
  display: none;
}

.blogroll_grid {
  flex-flow: column;
  align-items: flex-start;
  padding-left: 0;
  display: flex;
}

.grid {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
}

.grid.staff {
  border: 1px #000;
  border-bottom-color: #a7a2a2;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  margin-left: 100px;
  margin-right: 100px;
  padding: 100px 0 60px;
}

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

.grid.resources.borderbottom {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 40px;
}

.collection-item-2 {
  margin-bottom: 100px;
}

.text-block-5 {
  color: var(--sadistic-purple);
  font-weight: 700;
}

.text-block-5.staff {
  margin-bottom: 20px;
}

.photo_container {
  border-radius: 10px;
  overflow: hidden;
}

.social-media__button {
  width: 2.9em;
  height: 2.9em;
  background-color: var(--light-pink);
  color: var(--light-pink);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-left: .3em;
  margin-right: .3em;
  display: flex;
}

.social-media__button.social-media__button--black {
  background-color: var(--sadistic-purple);
  color: #fff;
  margin-left: 0;
  margin-right: 10px;
  text-decoration: none;
  transition: background-color .25s, color .25s;
}

.social-media__button.social-media__button--black:hover {
  background-color: var(--grapefruit);
}

.social-media__button.social-media__button--black.contactcta {
  z-index: 999;
  background-color: var(--grapefruit);
  margin-right: 10px;
  position: relative;
}

.social-media__button.social-media__button--black.contactcta:hover {
  background-color: var(--sadistic-purple);
}

.social-media__button.social-media__button--black.contactcta:focus, .social-media__button.social-media__button--black.contactcta:visited {
  background-color: var(--grapefruit);
}

.social-media__button.social-media__button--black {
  color: #fff;
  background-color: #24383f;
  margin-left: 0;
  margin-right: 10px;
  text-decoration: none;
  transition: background-color .25s, color .25s;
}

.social-media__button.social-media__button--black:hover {
  background-color: #daaf52;
}

.social-media__button.social-media__button--black.contactcta {
  z-index: 999;
  background-color: #daaf52;
  margin-right: 10px;
  position: relative;
}

.social-media__button.social {
  background-color: #c32aa3;
}

.social-media__button.facebook {
  background-color: #3b5998;
}

.social-media__icon {
  font-family: "Fa brands 400";
  text-decoration: none;
}

.social_media_container {
  margin-top: 0;
  padding-top: 20px;
  display: flex;
}

.dropdown-link {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
}

.dropdown-link:hover, .dropdown-link.w--current {
  color: var(--grapefruit);
}

.dropdown-list {
  background-color: var(--sadistic-purple);
}

.dropdown-list.w--open {
  background-color: #666;
  border-radius: 10px;
  box-shadow: 1px 1px 50px rgba(36, 56, 63, .6);
}

.staff_container {
  flex-direction: column;
  display: flex;
}

.rich-text-block-2 {
  direction: ltr;
  column-count: 1;
  white-space: normal;
  font-family: Source Sans Pro, sans-serif;
  font-weight: 400;
}

.link-block {
  flex: none;
}

.link-block.w--current {
  color: var(--light-pink);
  flex: none;
}

.svg_icon {
  padding: 12px;
}

.svg_icon.phone {
  border-radius: 0;
}

.text-block-6 {
  font-size: 14px;
}

.paragraph-2 {
  column-count: 2;
  margin-top: 20px;
  line-height: 30px;
}

.h4 {
  color: var(--sadistic-purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pagination-2 {
  justify-content: flex-start;
}

.image-3 {
  color: var(--light-pink);
  padding-left: 10px;
  padding-right: 10px;
}

.image-4 {
  padding-left: 11px;
  padding-right: 11px;
}

.phone_block {
  z-index: 999;
  align-items: center;
  display: none;
  position: absolute;
  top: 83px;
  right: 20px;
}

.link-2 {
  color: #daaf52;
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 260px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.dropdown-link-2 {
  color: #f1f1f1;
  text-transform: uppercase;
}

.dropdown-link-2:hover {
  color: var(--light-pink);
}

.servicii {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.link-3 {
  padding-bottom: 3vh;
}

.titlu {
  font-family: Source Sans Pro, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.link-4 {
  color: #ffe8e7;
}

.link-4:hover {
  color: #000;
}

.paragraph-3 {
  color: var(--grapefruit);
  font-family: Georgia, Times, Times New Roman, serif;
  font-weight: 800;
}

.link-5 {
  color: var(--grapefruit);
}

.text-span, .text-span-2 {
  color: var(--light-pink);
  background-color: rgba(0, 0, 0, 0);
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 200;
}

.text-span-3 {
  font-style: italic;
  font-weight: 400;
}

.italic-text {
  color: #fff;
  -webkit-text-fill-color: inherit;
  background-color: rgba(0, 0, 0, 0);
  background-clip: border-box;
  font-family: Source Sans Pro, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.section_content-2 {
  width: 100%;
  max-width: 1600px;
  margin-top: 100px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
}

.content_grid-2 {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  align-items: center;
}

.content_grid-2.blogroll {
  grid-template-columns: 1fr;
}

.image-6 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 50%;
  border-radius: 10px;
  overflow: hidden;
}

.image-6.subpage {
  width: 100%;
  overflow: visible;
}

.h3-2 {
  color: #000;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Source Sans Pro, sans-serif;
  font-weight: 300;
  line-height: 42px;
}

.text-block-10 {
  color: #220d3f;
  font-weight: 700;
}

.text-block-10.staff {
  margin-bottom: 20px;
}

.paragraph-4 {
  color: #000;
  text-align: justify;
  padding-right: 35px;
  font-family: Source Sans Pro, sans-serif;
  font-size: 19px;
  font-weight: 400;
}

.titlu-echipa {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 100px;
  font-family: Cormorantunicase, sans-serif;
  font-size: 45px;
  font-weight: 300;
}

.heading {
  text-align: center;
  margin-top: 150px;
}

.slide {
  background-image: url('../images/Portofoliu-manichiura-1-min.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide._1 {
  background-image: url('../images/Portofoliu-manichiura-1-min.jpg');
}

.slider {
  width: 100%;
  height: 70vh;
}

.slide2mani {
  background-image: url('../images/Portofoliu-manichiura-min.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide3mani {
  background-image: url('../images/Portofoliu-manichiura-2-min.jpg');
  background-position: 50%;
  background-size: cover;
}

.heading-2 {
  text-align: center;
}

.slide1tratamente {
  background-image: url('../images/Portofoliu-tratamente-faciale-1-min.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide2tratamente {
  background-image: url('../images/Portofoliu-tratamente-faciale-2-min.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide1coafura {
  background-image: url('../images/Portofoliu-Coafura-1-min.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide2coafura {
  background-image: url('../images/Portofoliu-Coafura-2-min.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide1cosmetica {
  background-image: url('../images/Portofoliu-cosmetica-min.jpg');
  background-position: 50%;
  background-size: cover;
}

.curs {
  margin-bottom: 100px;
  margin-left: 100px;
  margin-right: 100px;
}

.heading-3 {
  text-align: center;
}

.heading-3.titlu-curs {
  margin-top: 50px;
  margin-bottom: 40px;
  font-family: Source Sans Pro, sans-serif;
  font-size: 33px;
}

.paragraph-5 {
  text-align: left;
  padding-top: 20px;
}

.paragraph-5.semicurs {
  font-family: Source Sans Pro, sans-serif;
}

.bold-text {
  text-align: left;
  font-size: 20px;
}

.bold-text-2 {
  font-weight: 400;
}

.list {
  font-family: Source Sans Pro, sans-serif;
}

.list-item, .list-item-2 {
  font-weight: 400;
}

.heading-4 {
  text-align: center;
  margin-bottom: 100px;
  font-size: 44px;
}

.vouchere {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin: 100px;
  display: flex;
}

.paragraph-6 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.list-item-3, .list-item-4, .list-item-5 {
  text-align: left;
}

.manidescriere {
  font-family: Source Sans Pro, sans-serif;
  font-size: 30px;
  line-height: 40px;
}

.bold-text-3 {
  color: #000;
  text-transform: uppercase;
  font-family: Source Sans Pro, sans-serif;
  font-weight: 300;
}

.bold-text-4 {
  font-weight: 300;
}

.promo {
  width: 90%;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 5%;
  display: flex;
}

.image-14 {
  max-width: 70%;
  text-align: left;
  padding: 5%;
}

.promotii {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.cutie {
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  margin-bottom: 5%;
  padding: 50px;
  display: flex;
  position: relative;
}

.button-2 {
  z-index: 99;
  color: #fff;
  letter-spacing: 1px;
  background-color: #220d3f;
  border-radius: 10px;
  margin-top: 20px;
  margin-right: 20px;
  padding: 15px 35px;
  font-family: Georgia, Times, Times New Roman, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  transition: background-color .2s cubic-bezier(.994, .003, .58, 1);
  position: relative;
}

.button-2:hover {
  background-color: #ffafad;
}

.button-2.invert {
  color: #fff;
  background-color: #ffafad;
  transition: color .2s, background-color .2s cubic-bezier(.994, .003, .58, 1);
}

.button-2.invert:hover {
  color: #fff;
  background-color: #220d3f;
}

.dropdown-link-5 {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
}

.dropdown-link-5:hover, .dropdown-link-5.w--current {
  color: #e22b71;
}

.dropdown-list-2 {
  background-color: #220d3f;
}

.dropdown-list-2.w--open {
  background-color: #666;
  border-radius: 10px;
  box-shadow: 1px 1px 50px rgba(36, 56, 63, .6);
}

.dropdown-link-6 {
  color: #f1f1f1;
  text-transform: uppercase;
}

.dropdown-link-6:hover {
  color: #ffafad;
}

.navbutton-2 {
  opacity: 1;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: color .5s, padding .5s cubic-bezier(.075, .82, .165, 1), box-shadow .5s cubic-bezier(.075, .82, .165, 1);
}

.navbutton-2:hover {
  color: #ffafad;
  padding-top: 6px;
  padding-bottom: 12px;
}

.navbutton-2:active {
  border-bottom: 1px solid #ffafad;
}

.navbutton-2.w--current {
  border-bottom: 2px solid #ffafad;
}

.navbutton-2.w--current:hover {
  color: #ffafad;
}

.navbutton-2.w--current:active {
  color: #ffafad;
  border-bottom-color: #ffafad;
}

.navbutton-2.nohover:hover {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbutton-2.programare {
  background-color: #ffafad;
}

.navbutton-2.programare:hover {
  color: #fff;
  background-color: #220d3f;
}

.navbutton-2.mobile {
  display: none;
}

.link-block-2 {
  flex: none;
}

.link-block-2.w--current {
  color: #ffafad;
  flex: none;
}

.image-15 {
  display: block;
}

.div-block-2 {
  justify-content: center;
  align-items: center;
  padding: 5%;
  display: flex;
}

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

.footer-content.legalstuff {
  justify-content: center;
  margin-top: 40px;
  padding-left: 30%;
  padding-right: 30%;
}

.image-22 {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.image-23 {
  width: 100%;
  max-width: 100%;
}

.link-block-3 {
  margin-right: 10px;
}

.link-block-4 {
  margin-left: 10px;
}

.link-block-5 {
  margin-right: 10px;
}

.image-24 {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.link-block-6 {
  margin-left: 10px;
}

@media screen and (max-width: 991px) {
  .logo.hover {
    width: 8.4em;
    margin-left: 20px;
    margin-right: 10px;
    padding-left: 10px;
  }

  .navbutton {
    letter-spacing: 1px;
    white-space: nowrap;
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    display: none;
  }

  .navbutton.w--current {
    letter-spacing: 0;
    white-space: nowrap;
    display: none;
  }

  .navbutton.mobile {
    justify-content: flex-start;
    display: flex;
    position: relative;
  }

  .navbutton.mobile.servicii {
    width: auto;
  }

  .hero {
    height: 70vh;
  }

  .hero_tagline {
    padding-left: 5vw;
    font-size: 62px;
    line-height: 60px;
  }

  .hero_cta {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero_cta.subpage {
    width: 100%;
  }

  .navbar {
    width: 100%;
    background-color: #000;
    flex-direction: row;
    flex: 0 auto;
    order: 0;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-self: flex-start;
    align-items: center;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .button_container {
    padding-left: 5vw;
  }

  .section_content {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  .h2 {
    margin-right: 40px;
    font-size: 42px;
  }

  .content_grid {
    flex-direction: column;
    grid-template: ". ."
                   ". ."
                   ". Area"
                   ". ."
                   ". ."
                   / 1fr 1fr;
    display: flex;
  }

  .content_grid.whyus {
    grid-template-columns: 2fr 1fr;
  }

  .paragraph {
    font-size: 16px;
  }

  .h3 {
    font-size: 22px;
    line-height: 24px;
  }

  .link {
    font-size: 16px;
    line-height: 18px;
  }

  .link.button.invert {
    width: 100%;
    font-size: 22px;
  }

  .link.button.invert.mani, .link.button.invert.pedi, .link.button.invert.cosmetica, .link.button.invert.coafura, .link.button.invert.tratamente, .link.button.invert.extensii, .link.button.invert.manipedispa, .link.button.invert.masaj {
    width: 70vw;
  }

  .textarea {
    border-color: #f1f1f1;
  }

  .map {
    width: 100vw;
    margin-left: -40px;
  }

  .form_input {
    z-index: 20;
    border-style: solid;
    border-color: #f1f1f1;
    position: relative;
  }

  .copyright__text {
    letter-spacing: 1px;
  }

  .footer_ctatext {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    display: flex;
  }

  .bg_overlay {
    background-position: 0 0, 50%;
  }

  .grid.staff {
    flex-direction: column;
    display: flex;
  }

  .social-media__button.social-media__button--black.contactcta {
    background-color: var(--grapefruit);
    margin-right: 10px;
  }

  .social_media_container {
    margin-left: 40px;
  }

  .dropdown-link.mobile {
    text-align: center;
    padding-bottom: 50px;
    font-size: 30px;
    line-height: 30px;
  }

  .dropdown-link.mobile:hover {
    color: var(--light-pink);
  }

  .dropdown-link.mobile.coaf {
    font-size: 35px;
  }

  .dropdown-link.mobile.coaf.w--current {
    text-align: center;
    font-size: 30px;
  }

  .dropdown-link.hidefrommenu {
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
    line-height: 30px;
  }

  .dropdown-link.hidefrommenu:hover {
    color: var(--light-pink);
  }

  .dropdown-list {
    margin-top: 5vh;
  }

  .dropdown-list.w--open {
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .dropdown-list.servicii {
    z-index: 100;
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    display: none;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .dropdown-list.servicii.w--open {
    display: block;
  }

  .rich-text-block-2 {
    column-count: 1;
  }

  .icon {
    margin-right: 0;
  }

  .text-block-6 {
    margin-right: 10px;
  }

  .text-block-7, .icon-2 {
    color: #fff;
  }

  .dropdown-toggle {
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 14px;
  }

  .dropdown-toggle.servicii {
    width: auto;
    margin-left: 0;
    margin-right: auto;
  }

  .phone_block {
    display: none;
    right: 10px;
  }

  .link-2 {
    font-size: 16px;
    line-height: 18px;
  }

  .servicii {
    width: 100%;
  }

  .dropdown {
    display: none;
  }

  .section_content-2 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .content_grid-2 {
    grid-column-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .h3-2 {
    font-size: 22px;
    line-height: 24px;
  }

  .dropdown-link-5.mobile {
    text-align: center;
    padding-bottom: 50px;
    font-size: 30px;
    line-height: 30px;
  }

  .dropdown-link-5.mobile:hover {
    color: #ffafad;
  }

  .dropdown-link-5.hidefrommenu {
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
    line-height: 30px;
  }

  .dropdown-link-5.hidefrommenu:hover {
    color: #ffafad;
  }

  .dropdown-list-2 {
    margin-top: 5vh;
  }

  .dropdown-list-2.w--open {
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .dropdown-list-2.servicii {
    z-index: 100;
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    display: none;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .dropdown-list-2.servicii.w--open {
    display: block;
  }

  .navbutton-2 {
    letter-spacing: 1px;
    white-space: nowrap;
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    display: none;
  }

  .navbutton-2.w--current {
    letter-spacing: 0;
    white-space: nowrap;
    display: none;
  }

  .navbutton-2.mobile {
    justify-content: flex-start;
    display: flex;
    position: relative;
  }

  .navbutton-2.mobile.servicii {
    width: auto;
  }

  .footer-content {
    flex-wrap: wrap;
  }

  .footer-content.legalstuff {
    flex-direction: row;
    align-content: stretch;
    justify-content: center;
    align-items: stretch;
  }

  .link-block-3 {
    margin-right: 0;
  }

  .link-block-4 {
    margin-left: 0;
  }

  .link-block-5 {
    margin-right: 0;
  }

  .image-24 {
    margin-bottom: 10px;
  }

  .link-block-6 {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .logo {
    margin-right: 100%;
  }

  .logo.hover {
    width: 8em;
    height: auto;
    max-width: 300px;
    margin-top: auto;
    padding: 10px;
  }

  .navbutton {
    display: none;
  }

  .navbutton.mobile {
    justify-content: space-between;
    margin-left: auto;
    display: flex;
  }

  .navbutton.mobile.servicii, .navbutton.mobile.meniu {
    margin-left: 0;
  }

  .hero_cta {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .hero_cta.subpage {
    width: 100%;
  }

  .navbar {
    width: 100%;
    flex-flow: row;
    flex: 0 auto;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .content_grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .content_grid.logos {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .content_grid.whyus {
    grid-template-columns: 2fr;
  }

  .link.button.invert {
    width: 100%;
  }

  .map {
    margin-top: 40px;
  }

  .copyright {
    text-align: left;
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
  }

  .footer_ctatext {
    flex-direction: column;
    align-items: flex-start;
  }

  .bg_overlay {
    background-position: 0 0, 50%;
  }

  .grid, .grid.staff {
    grid-template-columns: 1fr;
  }

  .social_media_container {
    margin-left: 0;
    padding-bottom: 20px;
  }

  .dropdown-link.mobile {
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .dropdown-link.mobile.coaf.w--current {
    padding-bottom: 50px;
  }

  .dropdown-link.hidefrommenu {
    display: block;
  }

  .dropdown-list.w--open {
    margin-top: 48px;
  }

  .paragraph-2 {
    column-count: 1;
  }

  .text-block-7, .icon-2 {
    color: #fff;
  }

  .dropdown-toggle {
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .dropdown-toggle.w--open {
    border-radius: 10px;
  }

  .mobilemenu_services {
    padding-left: 20px;
  }

  .text-block-8 {
    padding-left: 20px;
    font-weight: 700;
  }

  .dropdown {
    justify-content: space-between;
    display: none;
  }

  .content_grid-2 {
    grid-template-columns: 1fr;
  }

  .list-2 {
    padding-left: 0;
  }

  .dropdown-link-5.mobile {
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .dropdown-link-5.hidefrommenu {
    display: block;
  }

  .dropdown-list-2.w--open {
    margin-top: 48px;
  }

  .navbutton-2 {
    display: none;
  }

  .navbutton-2.mobile {
    justify-content: space-between;
    margin-left: auto;
    display: flex;
  }

  .navbutton-2.mobile.meniu, .navbutton-2.mobile.servicii {
    margin-left: 0;
  }

  .footer-content {
    max-width: 575px;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    height: auto;
    max-width: 120px;
    margin-right: 0%;
  }

  .logo.hover {
    max-width: 300px;
    margin-left: auto;
    padding-top: 10px;
    display: block;
  }

  .navbutton, .navbutton.nohover {
    display: none;
  }

  .navbutton.mobile {
    width: 50%;
    min-height: 48px;
    object-fit: fill;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .hero {
    width: 100%;
    height: 100vh;
    min-height: 400px;
  }

  .hero.subpage {
    height: 40vh;
    min-height: auto;
    background-position: 50%;
    background-size: cover;
  }

  .hero_tagline {
    font-size: 40px;
    line-height: 48px;
  }

  .hero_tagline.subpage {
    font-size: 30px;
    font-weight: 700;
  }

  .hero_cta {
    width: 100%;
    height: 90%;
    max-width: 100%;
    min-height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero_cta.subpage {
    width: 100%;
  }

  .button {
    margin-right: 10px;
    padding: 10px 15px;
    font-size: 16px;
  }

  .navbar {
    width: 100%;
    height: 10vh;
    background-color: #000;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    display: flex;
    position: static;
  }

  .section_content {
    margin-top: 10vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  .h2 {
    margin-right: 0;
    font-size: 45px;
    line-height: 52px;
  }

  .content_grid {
    flex-direction: column;
    display: flex;
  }

  .content_grid.logos {
    grid-template-columns: 1fr 1fr;
  }

  .link.button.invert {
    width: 80vw;
    height: 5vh;
    margin-right: 0;
    font-size: 23px;
  }

  .link.button.invert.cosmetica.curs, .link.button.invert.coafura.curs, .link.button.invert.tratamente.curs {
    width: 80vw;
    margin-left: 0;
  }

  .collection-item {
    padding-left: 20px;
  }

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

  .map {
    margin-left: -20px;
  }

  .form_input {
    margin-bottom: 10px;
  }

  .copyright {
    margin-right: 20px;
  }

  .field-label {
    margin-bottom: 0;
  }

  .copyright__text {
    text-align: center;
  }

  .footer_ctatext {
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }

  .form {
    margin-right: 20px;
  }

  .bg_overlay {
    background-position: 0 0, 50%;
    margin-top: 10vh;
    position: relative;
  }

  .grid.staff {
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 30px;
  }

  .social-media__button.social-media__button--black.contactcta {
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
    top: 20px;
    right: 10px;
  }

  .dropdown-link.mobile {
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 50px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 20px;
    line-height: 20px;
    position: relative;
  }

  .dropdown-link.mobile:hover, .dropdown-link.mobile:active, .dropdown-link.mobile:focus {
    color: var(--light-pink);
  }

  .dropdown-link.mobile:visited {
    color: #fff;
  }

  .dropdown-link.mobile.coaf.w--current {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 20px;
    line-height: 20px;
  }

  .dropdown-link.mobile.acasa.w--current {
    padding-top: 0;
  }

  .dropdown-link.hidefrommenu {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 20px;
    line-height: 20px;
  }

  .dropdown-link.hidefrommenu:hover, .dropdown-link.hidefrommenu:active, .dropdown-link.hidefrommenu:focus {
    color: var(--light-pink);
  }

  .dropdown-link.hidefrommenu:visited {
    color: #fff;
  }

  .dropdown-list {
    flex-direction: row;
    margin-top: 25vh;
    padding-top: 0;
    padding-left: 0;
    display: none;
  }

  .dropdown-list.w--open {
    width: 100vw;
    height: 100vh;
    order: 0;
    align-self: auto;
    margin-top: 0;
    padding-top: 100px;
    display: block;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .dropdown-list.servicii.w--open {
    width: 100vw;
    height: 100vh;
    flex: 0 auto;
    order: 0;
    align-self: center;
    margin-top: 0;
    margin-right: 0;
    padding-top: 100px;
    padding-right: 0;
    display: block;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .rich-text-block-2 {
    padding-top: 20px;
  }

  .dropdown-toggle {
    width: auto;
    min-height: 0;
    min-width: 100px;
    background-color: rgba(0, 0, 0, 0);
    flex-direction: row;
    align-items: stretch;
    margin-top: 0;
    font-size: 13px;
    display: block;
  }

  .dropdown-toggle.w--open {
    margin-top: auto;
  }

  .text-block-8 {
    color: #fff;
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
  }

  .phone_block {
    flex-direction: column;
    align-items: flex-end;
    top: 20px;
  }

  .text-block-9 {
    display: none;
  }

  .servicii {
    text-align: left;
    justify-content: center;
    align-items: center;
  }

  .dropdown {
    padding-right: 0;
    display: none;
    position: absolute;
  }

  .link-4 {
    text-decoration: none;
  }

  .image-5 {
    max-width: 110%;
  }

  .section_content-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-4 {
    padding-right: 0;
    font-size: 17px;
  }

  .titlu-echipa {
    font-size: 30px;
  }

  .slider {
    height: 40vh;
  }

  .curs {
    margin-left: 20px;
    margin-right: 20px;
  }

  .heading-3.titlu-curs.stilcurs {
    font-size: 24px;
    line-height: 33px;
  }

  .vouchere {
    margin-left: 20px;
    margin-right: 20px;
  }

  .dropdown-link-3, .dropdown-link-4, .text-block-11, .icon-3 {
    color: #fff;
  }

  .manidescriere {
    font-size: 20px;
    line-height: 25px;
  }

  .image-7, .image-8, .image-9, .image-10, .image-11, .image-12, .image-13 {
    max-width: 110%;
  }

  .button-2 {
    margin-right: 10px;
    padding: 10px 15px;
    font-size: 16px;
  }

  .dropdown-link-5.mobile {
    text-align: center;
    letter-spacing: 0;
    margin-bottom: 50px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 20px;
    line-height: 20px;
    position: relative;
  }

  .dropdown-link-5.mobile:hover, .dropdown-link-5.mobile:active, .dropdown-link-5.mobile:focus {
    color: #ffafad;
  }

  .dropdown-link-5.mobile:visited {
    color: #fff;
  }

  .dropdown-link-5.mobile.acasa.w--current {
    padding-top: 0;
  }

  .dropdown-link-5.hidefrommenu {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 20px;
    line-height: 20px;
  }

  .dropdown-link-5.hidefrommenu:hover, .dropdown-link-5.hidefrommenu:active, .dropdown-link-5.hidefrommenu:focus {
    color: #ffafad;
  }

  .dropdown-link-5.hidefrommenu:visited {
    color: #fff;
  }

  .dropdown-list-2 {
    flex-direction: row;
    margin-top: 25vh;
    padding-top: 0;
    padding-left: 0;
    display: none;
  }

  .dropdown-list-2.w--open {
    width: 100vw;
    height: 100vh;
    order: 0;
    align-self: auto;
    margin-top: 0;
    padding-top: 100px;
    display: block;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .dropdown-list-2.servicii.w--open {
    width: 100vw;
    height: 100vh;
    flex: 0 auto;
    order: 0;
    align-self: center;
    margin-top: 0;
    margin-right: 0;
    padding-top: 100px;
    padding-right: 0;
    display: block;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .navbutton-2, .navbutton-2.nohover {
    display: none;
  }

  .navbutton-2.mobile {
    width: 50%;
    min-height: 48px;
    object-fit: fill;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .footer-content.legalstuff {
    padding-left: 10%;
    padding-right: 10%;
  }

  .image-22 {
    padding-bottom: 10px;
  }

  .link-block-3 {
    margin-right: 0;
  }

  .link-block-4 {
    margin-left: 0;
  }

  .link-block-5 {
    margin-right: 0;
  }

  .image-24 {
    padding-bottom: 10px;
  }

  .link-block-6 {
    margin-left: 0;
  }
}

#w-node-_8668cd87-f573-4e2a-9fc2-8424228b1aca-aaa3297a {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-ab6b2ee7-abd7-16dc-74d7-9aca10373ebf-aaa3297a {
  order: 0;
  grid-area: span 2 / span 1 / span 2 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-_2f84fc33-8452-fd38-60d4-9d7f510194a0-aaa3297a, #w-node-ca182121-9226-5d0c-15b1-a2d17a82a081-aaa3297a {
  justify-self: center;
}

#w-node-_16b87b63-89d5-3ab3-6d7c-efcb05e9df34-2b1927c4 {
  align-self: center;
}

#w-node-f2df1f58-347c-4959-9d2c-fa582b1927ef-2b1927c4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-e6404a5b-f615-2249-698b-12f895cb8cf8-f8a32980, #w-node-_689048a7-0a38-7369-d2f3-1dad4e81b8bd-f8a32980 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_93222522-db12-f314-50bf-839fed82ba55-f8a32980 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c2487bc0-aad3-98f2-7789-30826baafa18-f8a32980 {
  align-self: start;
}

#w-node-c2487bc0-aad3-98f2-7789-30826baafa1f-f8a32980 {
  align-self: center;
}

#w-node-ebc86a6c-596a-d5b4-6d2f-041f2312d00e-f8a32980 {
  align-self: start;
}

#w-node-ebc86a6c-596a-d5b4-6d2f-041f2312d017-f8a32980 {
  align-self: center;
}

#w-node-_6bc7268d-ea41-1de9-9fe7-f4bcf0015fb0-f8a32980 {
  align-self: start;
}

#w-node-_6bc7268d-ea41-1de9-9fe7-f4bcf0015fb9-f8a32980 {
  align-self: center;
}

#w-node-fab420fb-19d7-d5ee-3e3c-bdb32ff73794-f8a32980 {
  align-self: start;
}

#w-node-fab420fb-19d7-d5ee-3e3c-bdb32ff7379d-f8a32980 {
  align-self: center;
}

#w-node-_8f2afff5-9b41-b279-bed6-bc68ffb8e0bd-f8a32980 {
  align-self: start;
}

#w-node-_8f2afff5-9b41-b279-bed6-bc68ffb8e0c6-f8a32980 {
  align-self: center;
}

#w-node-_37452924-d7f0-5c51-d7b4-2d3d98f9cbf7-00d314b7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-00d314b7 {
  order: 0;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-b52efa78-b4a2-675a-8791-993a68932c36-00d314b7 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a0530248-c69b-52b2-a5c7-8b06cc35fad9-00d314b7 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-56802673 {
  order: 0;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-_87c71880-cb5d-a76a-771c-c74b9509c1fc-56802673 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-cf0b4282 {
  order: 0;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-_593f0bc9-cdce-127d-8af2-c701c18d3cbb-cf0b4282, #w-node-c7260383-124c-c030-3228-4a60d9f9e868-cf0b4282 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-870f1984 {
  order: 0;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-_92a9bef6-9456-ec31-fb0e-16f540df4dc9-870f1984, #w-node-_4af02577-049b-9334-8802-4bb6de1d8440-53537581 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-53537581 {
  order: 0;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-_0b981dd7-04f7-2154-cbc5-4a274e9c2393-53537581 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8907e9d3-476c-5d4b-80bd-f177313b6a86-53537581 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-66418550 {
  order: 0;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-_99a5473a-b5af-7d9b-add1-f6b1307c18ac-66418550, #w-node-_2df34729-7040-4d92-b9f8-ece49e95492b-66418550 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a83ce382-d2d2-6682-aa92-a5bbc84a9bc4-66418550 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-6c62f812 {
  order: 0;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-_73223c3a-e23b-1d57-0cb4-34b4879c0855-6c62f812, #w-node-bb5b6ff9-170a-5c0d-b32d-760ddf5e4d1f-6c62f812 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_274bb1b2-aaed-d02d-d9a4-d4f05533c348-6c62f812 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_7db3fd2a-ab6f-e163-9d12-2fc195f945fc-45b7583f {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-0b50645a {
  order: 0;
  grid-area: span 3 / span 1 / span 3 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-_4177fa52-b1bc-a287-27ba-520649239d66-0b50645a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_660dc490-4ef0-17a7-3128-286fdd987266-88dad2de {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_660dc490-4ef0-17a7-3128-286fdd987287-88dad2de {
  order: 0;
  grid-area: span 2 / span 1 / span 2 / span 1;
  align-self: stretch;
  justify-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_8668cd87-f573-4e2a-9fc2-8424228b1aca-aaa3297a {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-ab6b2ee7-abd7-16dc-74d7-9aca10373ebf-aaa3297a {
    order: 0;
    grid-area: span 4 / span 2 / span 4 / span 2;
    align-self: stretch;
    justify-self: center;
  }

  #w-node-f2df1f58-347c-4959-9d2c-fa582b1927c6-2b1927c4, #w-node-_16b87b63-89d5-3ab3-6d7c-efcb05e9df34-2b1927c4 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    align-self: center;
  }

  #w-node-f2df1f58-347c-4959-9d2c-fa582b1927ef-2b1927c4 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: center;
  }

  #w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-00d314b7, #w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-56802673, #w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-cf0b4282, #w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-870f1984, #w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-53537581, #w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-66418550, #w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-6c62f812, #w-node-_4eea07c1-0588-e764-8527-2a52e1e4d58b-0b50645a {
    grid-row: span 1 / span 1;
  }

  #w-node-_660dc490-4ef0-17a7-3128-286fdd987266-88dad2de {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_660dc490-4ef0-17a7-3128-286fdd987287-88dad2de {
    order: 0;
    grid-area: span 4 / span 2 / span 4 / span 2;
    align-self: stretch;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_8668cd87-f573-4e2a-9fc2-8424228b1aca-aaa3297a, #w-node-_660dc490-4ef0-17a7-3128-286fdd987266-88dad2de {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f2df1f58-347c-4959-9d2c-fa582b1927c6-2b1927c4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: start;
  }

  #w-node-f2df1f58-347c-4959-9d2c-fa582b1927ef-2b1927c4 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }
}


@font-face {
  font-family: 'Cormorantunicase';
  src: url('../fonts/CormorantUnicase-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantunicase';
  src: url('../fonts/CormorantUnicase-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantunicase';
  src: url('../fonts/CormorantUnicase-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantunicase';
  src: url('../fonts/CormorantUnicase-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantunicase';
  src: url('../fonts/CormorantUnicase-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}