@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Stilul pentru întregul scrollbar */
::-webkit-scrollbar {
  width: 12px;
  /* Lățimea scroll bar-ului */
  height: 12px;
  /* Înălțimea scroll bar-ului (pentru scrolling orizontal) */
}

/* Fundalul scrollbar-ului */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Culoarea fundalului */
  border-radius: 10px;
  /* Colțuri rotunjite */
  background-color: rgba(167, 251, 255, 0.8078431373);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

/* Thumb-ul (bara care se mișcă) */
::-webkit-scrollbar-thumb {
  background: rgba(24, 182, 255, 0.6431372549);
  /* Culoarea thumb-ului */
  border-radius: 10px;
  /* Colțuri rotunjite */
}

/* Thumb-ul când este apăsat sau hover */
::-webkit-scrollbar-thumb:hover {
  background: #00a2ff;
  /* Culoare mai închisă la hover */
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: aliceblue;
  overflow-x: hidden;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Nunito", sans-serif;
}
body h1 {
  text-transform: uppercase;
}
body p,
body ul,
body a,
body span,
body strong,
body input,
body label {
  font-family: "PT Sans", sans-serif;
}

.hero {
  width: 100%;
  height: 100dvh;
  background-image: url("./assets/img/cursuri/hero1.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero .continut {
  background-color: rgba(0, 53, 68, 0.7411764706);
  padding: 5vh 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5vh;
}
.hero .continut h1 {
  font-size: 1.75rem;
  font-weight: 900;
  color: yellow;
}
.hero .continut h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: yellow;
}
.hero .continut p {
  margin: 2.5vh 0 0;
  color: white;
}
.hero .continut .aldoileaparagraf {
  margin: 1.5vh 0 0;
}
.hero .continut button {
  width: 50%;
  padding: 0.25rem 1rem;
  background-color: #9e0000;
  color: white;
}
@media screen and (min-width: 768px) {
  .hero .continut button {
    padding: 0.25rem 2rem;
    font-size: 0.9vw;
  }
}
@media screen and (min-width: 768px) {
  .hero {
    background-image: url("./assets/img/cursuri/hero1-desk.jpg");
    background-size: 70%;
    background-position: right 35%;
    height: 75vh;
  }
  .hero .continut {
    padding: 0 5vw;
    width: 60%;
    -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
    border-bottom: 5vh solid yellow;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  .hero .continut h1 {
    font-size: 1.5vw;
    font-weight: 700;
    margin-top: 6vh;
  }
  .hero .continut h2 {
    font-size: 1.25vw;
  }
  .hero .continut p {
    width: 80%;
    font-size: 1vw;
    line-height: 1.5;
  }
  .hero .continut button {
    width: 10vw;
  }
}

.informatii {
  padding-top: 1vh;
}
@media screen and (min-width: 768px) {
  .informatii {
    display: flex;
    justify-content: space-between;
    padding-top: 0;
  }
  .informatii > * {
    flex: 1;
  }
}
.informatii > div {
  display: flex;
  align-items: center;
  gap: 5vw;
  padding: 2.5vh 2.5vw;
  position: relative;
}
.informatii > div i {
  font-size: 1.5rem;
}
.informatii > div div strong {
  font-size: 1.25rem;
}
.informatii .instructor-container {
  display: block;
  position: relative;
  padding: 0;
}
.informatii .instructor-container .instructor {
  padding: 2.5vh 2.5vw;
  display: flex;
  gap: 5vw;
  align-items: center;
}
.informatii .instructor-container .instructor div {
  align-self: flex-start;
}
.informatii .instructor-container .despre-lector {
  margin-top: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3019607843);
  width: 100%;
  text-align: center;
}
.informatii .pret {
  font-size: large;
}
.informatii .pret span {
  font-weight: 400;
}
.informatii > :nth-child(1) {
  background-color: aqua;
}
.informatii > :nth-child(2) {
  background-color: #060056;
  color: white;
}
.informatii > :nth-child(3) {
  background-color: #ffd900;
}
.informatii > :nth-child(4) {
  background-color: #003544;
  color: white;
}

.forma > * {
  padding: 2.5vh 5vw;
}
.forma > :first-child {
  background-color: #003544;
  color: white;
}
.forma > :first-child h2 {
  font-size: 1.75rem;
}
.forma > :first-child h2 span {
  color: yellow;
}
.forma form {
  background-color: #99C0C0;
}
.forma form .tip {
  display: flex;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .forma form .tip label {
    font-size: 1rem;
  }
}
.forma form .nume,
.forma form .juridicaFields {
  display: flex;
  justify-content: space-around;
}
.forma form .nume input,
.forma form .juridicaFields input {
  width: 100%;
  padding: 0.25rem 0;
}
.forma form .nume > :first-child,
.forma form .juridicaFields > :first-child {
  margin-right: 1vw;
}
.forma form .nume input::-moz-placeholder, .forma form .juridicaFields input::-moz-placeholder {
  padding-left: 0.5rem;
}
.forma form .nume input::placeholder,
.forma form .juridicaFields input::placeholder {
  padding-left: 0.5rem;
}
.forma form .juridicaFields {
  display: none;
}
.forma form .juridicaFields > *:first-child {
  margin-bottom: 0.5rem;
}
.forma form .perioada option {
  display: flex;
  flex-direction: column;
}
.forma form > * {
  width: 100%;
  margin-top: 0.5rem;
  text-align: left;
  font-size: 0.9rem;
  padding: 0.25rem 0;
}
.forma form > *::-moz-placeholder {
  padding-left: 0.5rem;
}
.forma form > *::placeholder {
  padding-left: 0.5rem;
}
.forma form .document {
  padding: 0;
}
.forma form .checkbox {
  width: -moz-fit-content;
  width: fit-content;
}
.forma form label {
  font-size: 0.75rem;
}
.forma form .submit {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 1rem;
  background-color: #9e0000;
  color: white;
  margin-top: 1rem;
  border: 1px solid rgb(82, 82, 82);
}
@media screen and (min-width: 768px) {
  .forma {
    background-color: #99C0C0;
    min-height: 50vh;
    display: flex;
    justify-content: space-between;
  }
  .forma > * {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .forma > :first-child {
    -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  }
  .forma > :first-child h2 {
    font-size: 3vw;
  }
  .forma > :first-child p {
    font-size: 1.25rem;
    width: 30vw;
    margin-top: 2rem;
    line-height: 1.5;
  }
  .forma form .nume input,
  .forma form .juridicaFields input {
    padding: 0.5rem 1rem;
  }
  .forma form input {
    padding: 0.5rem 1rem;
  }
  .forma form input.checkbox {
    width: 1rem;
    height: 1rem;
  }
  .forma form .submit {
    padding: 0.5rem 2rem;
  }
}

.acte-necesare {
  padding: 2.5vh 5vw;
  background-color: #d8e0e2;
}
.acte-necesare p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.acte-necesare ul {
  list-style-position: inside;
}
@media screen and (min-width: 768px) {
  .acte-necesare {
    padding: 10vh 5vw;
    line-height: 2;
  }
  .acte-necesare h2 {
    font-size: 3vw;
  }
  .acte-necesare p {
    font-size: 1.5rem;
  }
  .acte-necesare ul {
    font-size: 1.5rem;
  }
}

.despre-curs {
  padding: 2.5vh 5vw;
  background-color: aqua;
}
.despre-curs h2 {
  font-weight: 800;
  border-bottom: 2px solid black;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .despre-curs {
    padding: 10vh 5vw;
  }
  .despre-curs h2 {
    font-size: 3vw;
  }
  .despre-curs p {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.competente {
  padding: 2.5vh 2.5vw;
  background-image: url("./assets/img/cursuri/hero.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.competente .glassmorphism {
  background-color: rgba(0, 53, 68, 0.6235294118);
  color: white;
  padding: 1.5vh 5vw;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.competente .glassmorphism h2 {
  font-weight: 800;
}
.competente .glassmorphism p {
  margin-top: 1rem;
}
.competente .glassmorphism ol,
.competente .glassmorphism ul {
  list-style-position: inside;
}
.competente .glassmorphism ol li,
.competente .glassmorphism ul li {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.competente .glassmorphism ol li strong,
.competente .glassmorphism ul li strong {
  font-size: 1.2rem;
  color: #8cd5ff;
}
@media screen and (min-width: 768px) {
  .competente .glassmorphism ol li strong,
  .competente .glassmorphism ul li strong {
    font-size: 2vw;
  }
}
@media screen and (min-width: 768px) {
  .competente {
    padding: 10vh 5vw;
  }
  .competente .glassmorphism {
    padding: 10vh 5vw;
  }
  .competente .glassmorphism h2 {
    font-size: 3vw;
  }
  .competente .glassmorphism p {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .competente .glassmorphism ol,
  .competente .glassmorphism ul {
    font-size: 1.5rem;
    margin-top: 2.5vh;
  }
  .competente .glassmorphism ol li,
  .competente .glassmorphism ul li {
    border-bottom: 1px solid rgba(212, 212, 212, 0.363);
  }
}

.legislatie {
  padding: 2.5vh 5vw;
}
.legislatie h2 {
  margin: 1.5rem 0;
}
.legislatie .legi {
  background-color: #003544;
}
.legislatie .legi > * {
  padding: 1.5vh 5vw;
  color: white;
}
.legislatie ul {
  list-style-position: inside;
}
.legislatie .flex-cert {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.legislatie .flex-cert .certificat {
  width: 100%;
  height: 35vh;
  background-image: url("./assets/img/autorizatii/diploma-competente.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.legislatie .flex-cert .certificat-achizitii {
  background-image: url("./assets/img/autorizatii/achizitii-publice.webp");
}
.legislatie .flex-cert .certificat-formator {
  background-image: url("./assets/img/autorizatii/certificat-formator.webp");
}
@media screen and (min-width: 768px) {
  .legislatie {
    padding: 2.5vh 5vw;
  }
  .legislatie h2 {
    font-size: 3vw;
  }
  .legislatie .legi {
    padding: 5vh;
  }
  .legislatie .legi h4 {
    font-size: 1.2rem;
  }
  .legislatie .legi p {
    font-size: 1.5rem;
  }
  .legislatie ul,
  .legislatie h4,
  .legislatie p {
    font-size: 1.25rem;
  }
  .legislatie ul li:not(:last-child),
  .legislatie h4 li:not(:last-child),
  .legislatie p li:not(:last-child) {
    margin-bottom: 1rem;
  }
  .legislatie .flex-cert {
    flex-direction: row;
    gap: 5vw;
    align-items: center;
  }
  .legislatie .flex-cert > * {
    flex: 1;
  }
  .legislatie .flex-cert .certificat {
    height: 50vh;
    background-position: right center;
  }
}

.operatori,
.autorizare {
  padding: 2.5vh 5vw;
  list-style-position: inside;
}
.operatori ul li,
.autorizare ul li {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .operatori,
  .autorizare {
    padding: 10vh 5vw;
  }
  .operatori h2,
  .autorizare h2 {
    font-size: 3vw;
  }
  .operatori ul li,
  .autorizare ul li {
    font-size: 1.5rem;
  }
  .operatori p,
  .autorizare p {
    font-size: 1.25rem;
  }
}

.autorizare {
  background-color: #003544;
  color: white;
}

footer form {
  align-items: flex-start;
}

.ham {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .ham {
    display: none;
  }
}

.hamburger-menu {
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-menu .bar {
  width: 1.5rem;
  height: 2px;
  border-radius: 2px;
  background-color: darkblue;
  transition: 0.5s;
  position: relative;
}

.hamburger-menu .bar::before,
.hamburger-menu .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: inherit;
  height: inherit;
  background-color: darkblue;
  transition: 0.5s;
}

.hamburger-menu .bar::before {
  transform: translateY(-6px);
}

.hamburger-menu .bar::after {
  transform: translateY(6px);
}

.ham.active .bar {
  transform: rotate(360deg);
  background-color: transparent;
}

.ham.active .bar::before {
  transform: translateY(0) rotate(45deg);
}

.ham.active .bar::after {
  transform: translateY(0) rotate(-45deg);
}

.ham.active .main {
  animation: main-animation 0.5s ease;
  cursor: pointer;
  transform: perspective(1300px) rotateY(20deg) translateY(10px) translateZ(310px) scale(0.5);
}

header {
  position: fixed;
  top: 0;
  z-index: 10;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  background-color: #f0f8ff;
  border-bottom: 1px solid aqua;
}
header .logo-container {
  padding: 0.5rem;
}
header .logo {
  width: 50vw;
  height: 6vh;
  background-image: url("./logo-desk.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  header .logo {
    width: 15vw;
  }
}
header .nivel0 {
  width: 50vw;
}
header .nivel0 li {
  padding: 0.5rem 0;
}
header .nivel0 > li > a,
header .nivel0 > li div {
  font-size: 1rem;
  color: #000;
  position: relative;
  text-decoration: none;
}
header .nivel0 > li > a i,
header .nivel0 > li div i {
  margin-left: 0.5rem;
}
header .nivel0 > li > a::before,
header .nivel0 > li div::before {
  background-color: hsl(187, 100%, 70%);
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}
header .nivel0 > li > a:hover::before,
header .nivel0 > li div:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
header .nivel0 > li > div {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
header ul li {
  width: 100%;
  position: relative;
}
header ul li > * {
  padding: 0.5rem;
}
header ul li a,
header ul li div {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
}
header ul li a:hover,
header ul li div:hover {
  color: darkblue;
  font-weight: bold;
}
header .nivel1 {
  position: absolute;
  width: 25vw;
  flex-wrap: wrap;
  visibility: hidden;
  transition: 0.3s;
  transition-delay: 0.3s;
  left: 0;
  top: -600%;
}
header .nivel1 li {
  text-align: left;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(107, 107, 107, 0.2666666667);
}
header .nivel1 li strong {
  font-size: 1.2rem;
}
header .nivel2 {
  position: absolute;
  width: 25vw;
  flex-wrap: wrap;
  display: none;
  visibility: hidden;
  transition: 0.3s;
  transition-delay: 0.5s;
  left: 0;
  top: -600%;
}
header .nivel2 li {
  text-align: left;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(107, 107, 107, 0.2666666667);
}
header .nivel2 li strong {
  font-size: 1.2rem;
}
header .nivel1 {
  background-color: #f0f8ff;
}
header .nivel1 li div {
  display: flex;
  justify-content: space-around;
}
header .nivel2 {
  background-color: rgba(240, 248, 255, 0.7450980392);
  border-bottom: 1px solid aqua;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
header ul li:hover .nivel1 {
  visibility: visible;
  pointer-events: all;
  top: 115%;
}
@media screen and (max-width: 768px) {
  header ul li:hover .nivel1 {
    top: 0;
  }
}
header .nivel2 {
  max-height: 90vh;
  left: 150%;
  width: 100%;
  top: -25%;
  flex-wrap: wrap;
  transition: 0.3s;
  transition-delay: 0.5s;
  display: none;
  visibility: hidden;
  pointer-events: none;
  padding-left: 0.5rem;
  overflow-y: scroll;
}
header .nivel1 > li:hover .nivel2 {
  left: 100%;
  display: block;
  visibility: visible;
  pointer-events: all;
}
header .nivel1 {
  width: 20vw;
}
header .nivel1 li div {
  text-align: left;
}
header .nivel1 li:first-child {
  margin-top: 0.75rem;
}
header .menu-header {
  display: none;
}
header .button-container {
  display: none;
}
@media screen and (min-width: 769px) {
  header .button-container {
    display: block;
  }
}
header .button-container button {
  position: relative;
  padding: 0.25rem 1.2rem;
  background-color: transparent;
  border-radius: 3px;
  border: none;
  border: 3px solid transparent;
  transition: all 0.5s ease-in;
  overflow: hidden;
  border-top: #32323c solid 1px;
  border-bottom: #32323c solid 1px;
}
@media screen and (min-width: 768px) {
  header .button-container button {
    display: block;
  }
  header .button-container button:hover {
    background-color: rgba(0, 0, 63, 0.631372549);
    color: white;
  }
  header .button-container button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s, border 0.3s;
  }
  header .button-container button:hover::before {
    opacity: 0;
  }
  header .button-container button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: #32323c;
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  }
  header .button-container button:hover::after {
    opacity: 1;
    transform-origin: 100px 100px;
    transform: scale(1) translate(-10px, -70px);
  }
}
@media screen and (max-width: 768px) {
  header .menu-content {
    display: none;
  }
}

.pleosc {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: rgba(0, 255, 255, 0.685);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transform: translateX(-150%);
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  .pleosc {
    display: none;
  }
}
.pleosc .fa-xmark {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
}
.pleosc .nivel0 {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 2rem;
  list-style: none;
}
.pleosc .nivel0 li {
  padding-bottom: 0.25rem;
  font-weight: bold;
}
.pleosc .nivel0 li div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.pleosc .nivel0 li a {
  text-decoration: none;
  color: black;
}
.pleosc .nivel0 .pleosc-nivel1 {
  width: 80vw;
  margin-top: 1rem;
  list-style: none;
  display: none;
}
.pleosc .nivel0 .pleosc-nivel1 li {
  width: 100%;
  padding-bottom: 0.5rem 0;
  border-top: 1px solid rgba(75, 75, 75, 0.39);
  border-bottom: 1px solid rgba(75, 75, 75, 0.39);
  font-weight: lighter;
}
.pleosc .nivel0 .pleosc-nivel1 li a {
  color: red;
  text-transform: capitalize;
}
.pleosc .nivel0 .pleosc-nivel1 li:not(:last-child) {
  margin-bottom: 1rem;
}
.pleosc .nivel0 .haiNivel1 {
  display: block;
}
.pleosc .haiDrop {
  transform: translateY(0%);
}

.haiPleosc {
  transform: translateX(0%);
}

.verticale {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1000;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.verticale a {
  text-decoration: none;
  color: darkblue;
}
.verticale a i {
  background-color: rgba(0, 255, 255, 0.5568627451);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px 0 0 3px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media screen and (min-width: 768px) {
  .verticale {
    display: none;
  }
}

.popup {
  width: 90%;
  min-height: 50%;
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  background-color: rgba(240, 248, 255, 0.7176470588);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 9;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
}
@media screen and (min-width: 768px) {
  .popup {
    min-height: -moz-fit-content;
    min-height: fit-content;
    width: 30vw;
  }
}
.popup .fa-xmark {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgba(0, 95, 112, 0.699);
  cursor: pointer;
}
.popup div {
  font-family: "Nunito", sans-serif;
  font-size: 7.5vw;
  font-weight: 800;
  color: darkblue;
}
@media screen and (min-width: 768px) {
  .popup div {
    font-size: 2vw;
  }
}
.popup p {
  margin: 0;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .popup p {
    font-size: 1.2rem;
  }
}
.popup strong {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
}
.popup ul {
  list-style-position: inside;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .popup ul {
    font-size: 1rem;
  }
}
.popup form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.popup form input {
  padding: 0.25rem 2rem 0.25rem 0.5rem;
}
.popup form input:last-child {
  background-color: yellow;
  color: darkblue;
  font-weight: 700;
}
.popup p:last-child {
  font-size: 0.75rem;
}

.modal-newsletter {
  width: 90%;
  min-height: 50%;
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  background-color: rgba(240, 248, 255, 0.7176470588);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 9;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
}
@media screen and (min-width: 768px) {
  .modal-newsletter {
    min-height: -moz-fit-content;
    min-height: fit-content;
    width: 30vw;
  }
}
.modal-newsletter .fa-xmark {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgb(0, 95, 112);
  cursor: pointer;
}
.modal-newsletter div {
  font-family: "Nunito", sans-serif;
  font-size: 7.5vw;
  font-weight: 800;
  color: darkblue;
}
@media screen and (min-width: 768px) {
  .modal-newsletter div {
    font-size: 2vw;
  }
}
.modal-newsletter p {
  margin: 0;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .modal-newsletter p {
    font-size: 1.2rem;
  }
}
.modal-newsletter strong {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
}
.modal-newsletter ul {
  list-style-position: inside;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .modal-newsletter ul {
    font-size: 1rem;
  }
}
.modal-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.modal-newsletter form input {
  padding: 0.25rem 2rem 0.25rem 0.5rem;
}
.modal-newsletter form input:last-child {
  background-color: yellow;
  color: darkblue;
  font-weight: 700;
}
.modal-newsletter p:last-child {
  font-size: 0.75rem;
}

.popup-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.treicasute {
  padding: 2.5vh 5vw;
  display: flex;
  gap: 5vw;
}
@media screen and (max-width: 768px) {
  .treicasute {
    flex-direction: column;
  }
}

.treicasute * {
  list-style: none;
  line-height: 1.75;
}

.treicasute i {
  color: red;
  padding-right: 0.25rem;
}

.line-clamp {
  display: -webkit-box;
  line-clamp: 10;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}

.line-clamp.expanded {
  line-clamp: unset;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.vezi {
  cursor: pointer;
  font-style: italic;
  margin-top: 10px;
}

.vezi {
  font-style: italic;
  cursor: pointer;
  margin-top: 1rem;
  display: inline-block;
}

footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2.5rem 0 0;
  background-color: rgb(0, 6, 24);
  color: white;
}
footer .sus {
  padding: 0 1.2rem 1rem;
}
@media screen and (min-width: 768px) {
  footer .sus {
    padding: 0 10vw 2.5rem;
    display: flex;
    justify-content: space-around;
  }
}
footer .sus .stanga .logo img {
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  footer .sus .stanga .logo img {
    width: 35%;
  }
}
footer .sus .stanga nav ul {
  list-style: none;
}
footer .sus .stanga nav ul li {
  margin-top: 1rem;
}
footer .sus .stanga nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}
footer .sus .stanga nav ul li a:hover {
  color: yellow;
}
@media screen and (min-width: 768px) {
  footer .sus .stanga nav ul {
    display: flex;
    gap: 1rem;
  }
}
footer .sus .dreapta > * {
  margin-top: 1rem;
}
footer .sus .dreapta h5 {
  font-size: 1.5rem;
}
footer .sus .dreapta form input {
  padding: 0.5rem;
}
footer .sus .dreapta form .submit {
  background-color: yellow;
}
footer .sus .dreapta p {
  font-size: 0.5rem;
}
footer .sus .dreapta p a {
  margin-left: 1ch;
  color: white;
}
@media screen and (min-width: 768px) {
  footer .sus .dreapta p {
    font-size: 0.8rem;
  }
}
footer .sus .dreapta .social {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .sus .dreapta .social a {
  text-decoration: none;
  color: white;
}
footer .jos {
  background-color: rgb(59, 62, 65);
  padding: 1.5rem 1.2rem;
  font-size: 0.5rem;
  display: flex;
  justify-content: space-between;
}
footer .jos a {
  text-decoration: none;
  color: antiquewhite;
}
@media screen and (min-width: 768px) {
  footer .jos {
    font-size: 0.8rem;
    padding: 1.5rem 10vw 1.5rem;
  }
}/*# sourceMappingURL=cursuri.css.map */