/***
    The new CSS reset - version 1.5.1 (last updated 1.3.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;700;900&display=swap");
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
  text-decoration: none;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

b {
  font-weight: 700;
}

.pa-0 {
  padding: 0rem;
}

.pl-0 {
  padding-left: 0rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pr-0 {
  padding-right: 0rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pv-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.ph-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.pa-1 {
  padding: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pv-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.ph-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.pa-2 {
  padding: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pv-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.ph-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.pa-3 {
  padding: 1rem;
}

.pl-3 {
  padding-left: 1rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pr-3 {
  padding-right: 1rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pv-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.ph-3 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.pa-4 {
  padding: 1.5rem;
}

.pl-4 {
  padding-left: 1.5rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pr-4 {
  padding-right: 1.5rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pv-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.ph-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.pa-5 {
  padding: 2rem;
}

.pl-5 {
  padding-left: 2rem;
}

.pt-5 {
  padding-top: 2rem;
}

.pr-5 {
  padding-right: 2rem;
}

.pb-5 {
  padding-bottom: 2rem;
}

.pv-5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.ph-5 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.pa-6 {
  padding: 3rem;
}

.pl-6 {
  padding-left: 3rem;
}

.pt-6 {
  padding-top: 3rem;
}

.pr-6 {
  padding-right: 3rem;
}

.pb-6 {
  padding-bottom: 3rem;
}

.pv-6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.ph-6 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.ma-0 {
  margin: 0rem;
}

.ml-0 {
  margin-left: 0rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.mv-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.mh-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.ma-1 {
  margin: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mv-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.mh-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.ma-2 {
  margin: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mv-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mh-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.ma-3 {
  margin: 1rem;
}

.ml-3 {
  margin-left: 1rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mr-3 {
  margin-right: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mv-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mh-3 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.ma-4 {
  margin: 1.5rem;
}

.ml-4 {
  margin-left: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mr-4 {
  margin-right: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mv-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mh-4 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.ma-5 {
  margin: 2rem;
}

.ml-5 {
  margin-left: 2rem;
}

.mt-5 {
  margin-top: 2rem;
}

.mr-5 {
  margin-right: 2rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.mv-5 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mh-5 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.ma-6 {
  margin: 3rem;
}

.ml-6 {
  margin-left: 3rem;
}

.mt-6 {
  margin-top: 3rem;
}

.mr-6 {
  margin-right: 3rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.mv-6 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mh-6 {
  margin-left: 3rem;
  margin-right: 3rem;
}

img {
  max-width: 100%;
}

.pointer {
  cursor: pointer;
}

.full-container {
  width: 100%;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.d-none {
  display: none;
}

.mb10rem {
  margin-bottom: 10rem;
}

.buttonMain {
  border: none;
  padding: .75em 1em;
  font-size: 1rem;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.buttonMain:hover {
  background-color: var(--main-color);
}

.titleMain {
  font-size: 3rem;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: .5em;
}

.download-link {
  border: none;
  background-color: #e0e0e0;
  padding: 1rem 2rem;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.download-link:hover {
  background-color: var(--main-color);
}

.download-link:hover span {
  color: #FFF;
}

.download-link span {
  font-weight: 600;
  color: #383838;
  font-size: 1.15rem;
}

.download-link span b {
  font-weight: 700;
}

.download-link img {
  height: 3rem;
  margin-right: 1rem;
}

form {
  font-family: inherit;
}

form input:not([type='checkbox']), form textarea {
  font-family: "Open Sans";
  border: 1px solid #CCC;
  border-radius: 5px;
  padding: .75em 1.5em;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}

form input[type='checkbox'] {
  width: 1rem;
  height: 1rem;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

html,
body {
  font-size: 16px;
  font-family: "Open Sans";
}

.separator-green {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border-right: 98vw solid transparent;
  border-bottom: 6vw solid var(--main-color);
  margin-top: -5.9vw;
  z-index: 100;
  position: relative;
  overflow: hidden;
}

.separator-pink {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border-right: 98vw solid transparent;
  border-bottom: 300px solid var(--accent-color);
  margin-top: -300px;
  z-index: 100;
  position: relative;
  overflow: hidden;
}

.section-green {
  background-color: var(--main-color);
  padding: 2em 0;
  color: #FFF;
}

section {
  padding: 5rem 0;
}

.cool-shadow {
  -webkit-box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
          box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

nav {
  position: fixed;
  z-index: 500;
  width: 100%;
  background-color: var(--main-color);
  height: 100px;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

nav .nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

nav .top-logo {
  background-color: var(--accent-color);
  display: block;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 50px 50px;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

nav .nav-items-container {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

nav .nav-items-container .nav-item a,
nav .nav-items-container .nav-item a:visited {
  font-family: "Poppins";
  color: #FFF;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  padding: .25em .5em;
  position: relative;
}

nav .nav-items-container .nav-item a::first-letter,
nav .nav-items-container .nav-item a:visited::first-letter {
  font-size: 1.2em;
}

nav .nav-items-container .nav-item a.normal:before, nav .nav-items-container .nav-item a.normal:after,
nav .nav-items-container .nav-item a:visited.normal:before,
nav .nav-items-container .nav-item a:visited.normal:after {
  content: '';
  position: absolute;
  -webkit-transition: -webkit-transform .25s ease;
  transition: -webkit-transform .25s ease;
  transition: transform .25s ease;
  transition: transform .25s ease, -webkit-transform .25s ease;
}

nav .nav-items-container .nav-item a.normal:before,
nav .nav-items-container .nav-item a:visited.normal:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: white;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

nav .nav-items-container .nav-item a:hover:before,
nav .nav-items-container .nav-item a:visited:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

nav .nav-items-container .nav-item a.nav-offer,
nav .nav-items-container .nav-item a:visited.nav-offer {
  background-color: var(--accent-color);
  border-radius: .5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
          box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

nav.sticky .top-logo {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 30px 40px;
}

.white-on-pink,
.white-on-green {
  color: #FFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.pink-button {
  display: inline-block;
  font-family: "Poppins";
  color: #FFF;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  text-decoration: none;
  padding: .25em 1em;
  position: relative;
  background-color: var(--accent-color);
  border-radius: .5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
          box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

footer {
  padding: 5rem 0;
}

footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .left .footer-logo {
  display: inline-block;
  border-radius: 2rem;
  padding: 2rem;
}

footer .center .footer-menu .nav-item a,
footer .center .footer-menu .nav-item a:visited {
  font-family: "Poppins";
  color: var(--main-color);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  text-decoration: none;
  position: relative;
}

footer .center .footer-menu .nav-item a::first-letter,
footer .center .footer-menu .nav-item a:visited::first-letter {
  font-size: 1.2em;
}

footer .center2 {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .center2 .contact-line {
  color: #585858;
  font-weight: 600;
  line-height: 2rem;
}

footer .center2 .contact-line span {
  vertical-align: middle;
  color: var(--main-color);
}

footer .right {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .right .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

footer .right .social-icons a {
  margin: 0 .5rem;
}

footer .right .social-icons a img {
  height: 32px;
  border-radius: 2px;
}

.copyright {
  text-align: center;
  font-family: Poppins;
  font-size: 12px;
  padding: .25rem 0;
}

.home-hero {
  width: 100%;
  height: 50vh;
  min-height: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.home-hero .hero-image {
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  -webkit-animation-name: heroBg;
          animation-name: heroBg;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes heroBg {
  0% {
    -webkit-transform: scale(1.1) translateX(-10px);
            transform: scale(1.1) translateX(-10px);
  }
  50% {
    -webkit-transform: scale(1.2) translateX(10px);
            transform: scale(1.2) translateX(10px);
  }
  100% {
    -webkit-transform: scale(1.1) translateX(-10px);
            transform: scale(1.1) translateX(-10px);
  }
}

@keyframes heroBg {
  0% {
    -webkit-transform: scale(1.1) translateX(-10px);
            transform: scale(1.1) translateX(-10px);
  }
  50% {
    -webkit-transform: scale(1.2) translateX(10px);
            transform: scale(1.2) translateX(10px);
  }
  100% {
    -webkit-transform: scale(1.1) translateX(-10px);
            transform: scale(1.1) translateX(-10px);
  }
}

.home-hero .hero-content {
  z-index: 20;
  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-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 10rem;
  width: 100rem;
  max-width: 75vw;
  text-align: right;
}

.home-hero .hero-content h2 {
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

.home-hero .hero-content h2 b {
  font-weight: 900;
  font-size: 5rem;
}

.home-hero .hero-content p {
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 55ch;
  font-weight: 600;
  border-top: 1px solid var(--main-color);
  color: #FFF;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

.home-intro {
  position: relative;
  z-index: 120;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0;
}

.home-intro .intro-woman {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  height: 400px;
  margin-top: -170px;
}

.home-intro > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-intro .text-intro {
  margin-top: -80px;
  padding: 0 5%;
}

.home-intro .text-intro h2 {
  color: #354B45;
  font-family: Poppins;
  line-height: 2em;
}

.home-intro .text-intro h2 b {
  font-size: 1rem;
}

.home-intro .text-intro h2 span {
  font-size: 2em;
  color: #FFF;
  z-index: 11;
  position: relative;
}

.home-intro .formular-rapid {
  text-align: center;
  background-color: var(--main-color);
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  padding: 2rem;
  width: 30%;
  min-width: 300px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 330px;
  margin-top: -100px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.21);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.21);
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  background-blend-mode: multiply;
  background-size: 100%;
  background-size: cover;
  background-position: center center;
}

.home-intro .formular-rapid:hover {
  height: 350px;
  margin-top: -120px;
}

.home-intro .formular-rapid h2 {
  font-size: 1.25rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
}

.home-servicii {
  position: relative;
}

.home-servicii .servicii-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3rem;
  text-transform: uppercase;
  margin: 0 auto 2rem auto;
  padding: 0;
  font-weight: 900;
  color: var(--main-color);
  line-height: 1em;
  font-family: Poppins;
}

.home-servicii .servicii-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}

.home-servicii .servicii-container .serviciu-container {
  width: 25%;
  padding: 1rem;
}

.home-servicii .servicii-container .serviciu-container .title {
  color: #383838;
  font-family: Poppins;
  line-height: 1.1em;
  margin: 2rem 0;
}

.home-servicii .servicii-container .serviciu-container .icon span {
  font-size: 4rem;
  color: var(--main-color);
  background-color: var(--accent-color);
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  padding: 2rem;
  color: #FFF;
}

.home-servicii .servicii-container .serviciu-container .description {
  color: #585858;
  font-size: .9rem;
  font-weight: 500;
}

.home-tarife .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home-tarife .man-work-container {
  position: relative;
  width: 33%;
}

.home-tarife .man-work-container .man-work {
  position: absolute;
  bottom: -2rem;
  -webkit-filter: drop-shadow(15px 15px 50px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(15px 15px 50px rgba(0, 0, 0, 0.5));
}

.home-tarife .container-tarife {
  padding: 0 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home-tarife .container-tarife h2 {
  display: inline-block;
  font-size: 3rem;
  text-transform: uppercase;
  margin: 2rem auto 2rem auto;
  padding: 0;
  font-weight: 900;
  color: #FFF;
  line-height: 1em;
  font-family: Poppins;
}

.home-tarife .container-tarife .lista-tarife .titlu-tarif {
  color: #FFF;
  font-weight: 600;
  font-family: Poppins;
  font-size: 1.25rem;
}

.home-tarife .container-tarife .lista-tarife .tarif {
  color: #FFF;
  margin-bottom: .5rem;
  font-style: italic;
  padding-left: .5rem;
}

.home-tarife .poze-tarife {
  border-radius: 50px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 25%;
  position: relative;
  margin: -50px 0;
}

.home-tarife .poze-tarife .poza {
  height: 205px;
  width: 50%;
  background-size: cover;
  background-position: center center;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
}

@media screen and (max-width: 800px) {
  .nav-items-container {
    position: fixed;
    left: 200%;
    top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #fff;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    margin: 0;
    padding: 0;
  }
  .nav-items-container.active {
    right: 0;
    left: auto;
  }
  .nav-item {
    margin: 0;
    border-bottom: 1px solid #EEE;
  }
  .nav-item.with-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-item.with-dropdown > .nav-link {
    width: 175px;
    pointer-events: none;
  }
  .sub-nav-items-container {
    position: relative !important;
    opacity: 1 !important;
    padding: 0 !important;
    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-shadow: none !important;
            box-shadow: none !important;
  }
  .hamburger {
    display: block;
    cursor: pointer;
    margin: 1rem;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

.underlined {
  /*   background: red; */
  position: relative;
  z-index: 10;
}

.underline-mask:after {
  content: '';
  position: absolute;
  top: 95%;
  width: 150%;
  aspect-ratio: 3 / 1;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  border-radius: 50%;
  border: 6px solid purple;
  /* Use a conic gradient mask to hide and show the bits you want */
  --spread: 140deg;
  --start: 290deg;
  -webkit-mask: conic-gradient(from var(--start), white 0 var(--spread), transparent var(--spread));
          mask: conic-gradient(from var(--start), white 0 var(--spread), transparent var(--spread));
}

.underline-overflow {
  display: inline-block;
  /* A little extra padding and overflow hidden   */
  overflow: hidden;
  padding-bottom: clamp(1rem, 2vmin, 2rem);
}

.underline-overflow:after {
  content: '';
  position: absolute;
  top: 100%;
  height: 150%;
  aspect-ratio: 2.5 / 1;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  border-radius: 50%;
  border: 6px solid red;
}

.underline-clip:after {
  z-index: 10;
  content: '';
  position: absolute;
  top: 95%;
  width: 150%;
  aspect-ratio: 3 / 1;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  border-radius: 50%;
  border: 6px solid var(--accent-color);
  /* Use a clip-path to hide and show the bits you want */
  -webkit-clip-path: polygon(0 0, 50% 50%, 100% 0);
          clip-path: polygon(0 0, 50% 50%, 100% 0);
}
/*# sourceMappingURL=style.css.map */