@import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond:300,400,600|Tulpen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Modern+Antiqua&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand: #4a6fa5;
  --brand-ink: #2e4b73;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --card: #ffffff;
  --ring: #e2e8f0;
  --shadow: 0 10px 30px rgba(2, 6, 23, .06);
  --radius: 16px;
}

@font-face {
  font-family: font5;
  src: url(../font/NotoMono/NotoMono-Regular.ttf);

}

html,
body {
  margin: 0;
  height: 100%;
  overflow-x: hidden;
}


body {
  font-family: 'Open Sans', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}



ul {
  list-style-type: none;
}

/*header*/
#header {
  width: 100%;
  position: fixed;
  z-index: 100;
}

.header_top,
.header_bottom {
  background-color: transparent;
  color: #fff;
}

.header_top,
.header_top_outer,
.header_bottom {
  position: relative;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
}

.header_top_outer {
  background-color: rgba(255, 255, 255, 0.1);
}

.header_top_inner {
  width: 1200px;
  display: flex;
  justify-content: space-evenly;

}

.header_top_left {
  height: 100%;
  width: 100%;
  margin-left: 11%;
}

/* Header - butoane */
.cta-book,
.cta-book-blue {
  text-align: center;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: transparent;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 0.5rem 1.25rem rgba(100, 116, 139, .2);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.cta-book:hover {
  background: #C03232;
  /* background: #b91c1c; */
  box-shadow: 0 0.7rem 1.4rem rgba(185, 28, 28, .28);
  transform: translateY(-1px);
}

.cta-book:active {
  transform: none;
}

.cta-book svg {
  display: block;
}

.cta-book-blue:hover {
  background: rgb(48, 101, 181);
  box-shadow: 0 0.7rem 1.4rem rgb(33, 71, 130);
  transform: translateY(-1px);
  color: white;
}

a.chestionar-link:hover {
  color: #C03232 !important;
}

@media (max-width: 768px) {

  .cta-book,
  .cta-book-blue {
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
  }
}


/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  /* background-color: DodgerBlue; */
  background: #fff linear-gradient(180deg, #efefef 0%, #fff 70%);
  color: #666;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #666 transparent transparent transparent;
}


.select-selected.select-arrow-active:after {
  border-color: transparent transparent #666 transparent;
  top: 7px;
}


.select-items div,
.select-selected {
  color: #666;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}


.select-items {
  position: absolute;
  background: #fff linear-gradient(180deg, #efefef 0%, #fff 70%);
  color: #666;
  bottom: 90%;
  left: 0;
  right: 0;
  z-index: 99;
}

#id_select_limba {
  background: #fff linear-gradient(180deg, #efefef 0%, #fff 70%);
  color: #666;
}

#id_select_limba option {
  position: absolute;
  background: #fff linear-gradient(180deg, #efefef 0%, #fff 70%);
  color: #666;
  bottom: 90%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}


.meta_wrap {
  font-size: 0.9rem;
  line-height: 20px;
  position: relative;
  text-align: left;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 43%;
  font-weight: 600;
}

.meta_wrap a:hover {
  color: white !important;
}

.header_bottom_outer {
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  background-color: rgba(43, 160, 195, 0.5);
  /* background-color: rgba(176, 224, 224, 0.4); */
}

.header_bottom_inner {
  margin-left: 11%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 5.5rem;


}

.header_bottom_left {
  display: flex;
  align-items: center;
  width: 44%;
  gap: 3rem;
}

.header_bottom_left a {
  color: white;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.header_bottom_left img {
  width: 4rem;
  margin-right: 0.5rem;
}

.header_bottom_right {
  width: 73%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  list-style-type: none;
  align-items: center;
  margin-left: 6%;
}

.header_bottom_right p {
  text-align: center;
}

.header_1 img {
  width: 100vw;
  height: 37vh;
}

/*dropdown menu*/
.dropbtn {
  background-color: transparent;
  padding: 0 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.dropbtn:hover {
  transform: scale(1.2);
}

.dropbtn a {
  color: #ffffff;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 0.9rem;
}



/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 6px 12px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f1f1f1
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .drop-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: -20rem;
  width: 38rem;
  padding: 1rem;
  gap: 0.4rem;
}

.dropdown:hover .drop-grid-3 a {
  margin: 0;
  text-align: left;
  font-size: 13px;
  width: 11rem;
}

/* links when the dropdown is shown */
.dropdown:hover .dropdown-content a,
.dropdown:hover .drop-info a {
  color: #222222;
  font-size: 13px;
}

#middle {
  background-color: #fbfbfb;
  border-bottom: 1px solid #e3e3e3;

}

.middle-row {
  width: 1200px;
  margin: 0 auto;
}

.middle-row-outer {
  padding-top: 1.3%;
  padding-bottom: 9%;
}

.middle-row-inner {
  width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

#icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box-heading {
  color: rgba(58, 58, 58, 0.6);
  font-size: 14px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
}

.icon-box-text span {
  color: #2a2d32;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
}

.middle-icon {
  font-size: 32px;
  line-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #3eb8d7;
  background-color: rgba(255, 255, 255, 0);
  margin-right: 1.5rem;
}

.no-gap {
  gap: 0;
}

.middle-cards {
  display: flex;
  flex-direction: row;
  width: 80%;
  margin-top: -5rem;
  margin-left: 14%;

}

.colored-card {
  height: 19.2rem;
  width: 33.3%;
  padding: 2rem;
}

.colored-card p {
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.colored-card a {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.colored-card img {
  width: 10rem;
  height: 10rem;
  border-radius: 11px;
}

p.apel {
  font-weight: 700;
  font-size: 1.4rem;
}

/*turcoaz*/
.despre {
  background-color: #C7EFEF;
}

.servicii {
  background-color: #9DD5D5;
}

.informatii {
  background-color: #85C8C8;
}

.despre-noi {
  width: 88%;
  padding: 2rem 3rem;
  margin-left: 11%;
  background-color: #fbfbfb;
}

.despre-noi h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  color: #3eb8d7;
  text-align: center;
  margin-bottom: 2%;
}

.despre-noi p {
  text-indent: 30px;
  font-size: 1.2rem;
  color: #747474;
}

.despre-noi ul {
  list-style-type: square;
  color: #747474;
  margin-left: 4.3%;
}

.despre-noi ul li {
  font-size: 1.2rem;
}

.despre-noi h2 {
  font-size: 1.6rem;
}

.substatii-main {
  width: 100%;
  margin-left: 5%;
}

.header1_p {
  margin-top: -7rem;
  margin-left: 12.2%;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: normal;
  z-index: 2;
}


.substatii {
  width: 80%;
  margin-left: 11%;
  display: flex;
  margin-bottom: 5%;
}

.substatii-stanga h1 {
  font-size: 26px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 6%;
}


.substatii-stanga {
  padding: 35px;
  text-align: left;
  background-color: #3065b5;
  width: 21.6%;
  margin-right: 1.5%;
}

.h2-like {
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  color: #ffffff;
}

.loc>summary {
  list-style: none;
  cursor: pointer;
  padding: .25rem 0;
}

.loc>summary::-webkit-details-marker {
  display: none;
}

.loc>h3 {
  font-size: 14px;
  font-weight: normal;
  font-size: normal;
  color: #b5cbed;
  margin-bottom: 2%;
}

.substatii-dreapta {
  width: 71.6%;
  height: 110%;
  text-align: left;
}

.substatii-dreapta img {
  object-fit: cover;

}

.substatii-dreapta h3 {
  font-size: 24px;
  font-weight: normal;
  font-style: normal;
  color: #3eb8d7;
  margin-left: 3%;
  margin-top: 1%;
}


.active,
.dot:hover {
  background-color: #717171;
}

/*voluntariat*/
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 5%;
  width: auto;
  margin-top: -40px;
  padding: 6px 10px;
  font-weight: bold;
  font-size: 14px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  color: #999999;
}

.next {
  right: 7rem;
  border-radius: 3px 0 0 3px;
  border: 1px solid #e0e0e0;
  border-left: none;
}

.prev {
  right: 8.5rem;
  border-radius: 3px 0 0 3px;
  border: 1px solid #e0e0e0;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.text {
  color: #f2f2f2;
  font-size: 1.3rem;
  padding: 8px 12px;
  position: absolute;
  bottom: 3px;
  width: 100%;
  text-align: center;
  right: 2.7rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
    0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.4);

}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fader {
  width: 52rem;
  height: 26rem;
  animation-name: fader;
  animation-duration: 1.5s;
}

.fader img {
  height: 25rem;
  object-fit: cover;
  margin: 3%;
}

@keyframes fader {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}



/*sectii*/
.dotari-main #flx-column img {
  width: 100% !important;
  height: auto !important;
}

.dotari-main h2 {
  font-size: 22px;
}

.dotari-main h1 {
  text-align: center;
  margin-bottom: 4%;
}

.containerl .carte-vizita2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40%;
}

.hgt-8 {
  height: 8rem;
}

.meta_wrap a {
  color: white;
}


.comp {
  width: 19rem;
}

.comp-img {
  height: 12rem !important;
  width: 17.1rem !important;
}



.showclass {
  opacity: 1;
  -moz-transform: translate3d(10.5px, 0px, -60px);
  -webkit-transform: translate3d(10.5px, 0px, -60px);
  -o-transform: translate(10.5px, -60px);
  -ms-transform: translate(10.5px, -60px);
  transform: translate3d(10.5px, 0px, -60px);
  z-index: 3
}

.hideclass {
  opacity: 0;
  -moz-transition: all 1000ms linear;
  -webkit-transition: all 1000ms linear;
  -o-transition: all 1000ms linear;
  transition: all 800ms linear;

  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  z-index: -1;
}

.side-icons {
  position: fixed;
  z-index: 2;
  left: 40rem;
  width: 65vw;
}

.asistadiv {
  z-index: 1;
  filter: alpha(opacity=100);
  height: 30px;
  background-color: #006600;
  color: white;
  text-align: center;
  align-content: center;
  border-radius: 8px;
  position: absolute;
  width: 100%;
}

#asistaclass p {
  font-size: 1.3rem;
}

.asista-iconita {
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  padding: 0px 20px 0px 11px;
  border-radius: 8px;
  display: block;
  font-family: "Noto Sans Mono", monospace;

}

.asista-iconita p {
  color: white;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2em;

}

.side-icons:hover p {
  text-align: center;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  background: #006600;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 0.5rem 1.25rem rgba(100, 116, 139, .2);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

#expand {
  color: whitesmoke;
  width: 0;
  background-color: #0046FF;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  padding: 10px 25px 10px 15px;
  border-radius: 8px;
  border: none;
  margin: 0;
  height: 100%;

}

#expand :hover {
  color: #0000009a;
}

#unhide {
  position: fixed;
  z-index: 1;
  top: 43.4%;
  right: 40px;
  background-color: white;
}

#unhide div {
  margin: 0;
}

/* Ecrane mari (min-width: 980px) */
@media (min-width: 981px) {
  .asistadiv p {
    margin: 0;
    text-align: center;
    font-size: 1.8em;
  }
}

/* Ecrane medii (641px - 980px) */
@media (min-width: 641px) and (max-width: 980px) {
  .asistadiv p {
    margin: 0;
    text-align: center;
    font-size: 15px;
  }
}

/* Ecrane mici (max-width: 640px) */
@media (max-width: 640px) {
  .asistadiv p {
    margin: 0;
    text-align: center;
    font-size: 10px;
  }
}

#userwayAccessibilityIcon {
  top: 90vh;
  bottom: 13px;
  right: 0px;
  left: auto;
}


.btn-gradient {
  box-shadow: 0 6px 16px rgba(0, 0, 0, .15), 0 2px 6px rgba(0, 0, 0, .08);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 3%;
  width: 10%;
  font-size: 1rem;
}

/* highlight lucios */
.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 55%;
  border-radius: 10px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.btn-gradient:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18), 0 4px 10px rgba(0, 0, 0, .10);
  transform: translateY(-1px);
}

.btn-gradient:active {
  transform: translateY(0);
  filter: brightness(.97);
}

/*prima pagina*/
.video-div {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}



video {
  width: 100%;
  height: 100%;
  background-color: white;
  position: relative;
  object-fit: cover;
}

.video-div.video-blue>video {
  filter: brightness(2.8) saturate(.06);
}

.video-div.video-blue::after {
  background: #b9e3ff;
  opacity: .25;
  mix-blend-mode: multiply;
}



.lozinca {
  position: absolute;
  top: 28rem;
  left: 2rem;
  font-weight: 700;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.9);
  z-index: 10;
}

.icon-box-text a {
  color: #2a2d32;
}

.icon-box-text a:hover {
  color: #007acc;

}

.despre .prim-ajutor-image {
  object-fit: cover;
  width: 70%;
}

.platforma {
  text-align: center;
  margin-left: 5%;
  margin-top: 5%;
}

.platforma p {
  text-align: center;
}



.apel-112 {
  border: 1px solid rgba(230, 223, 197, 0.6);
  /* margin-left:25rem; */
  margin-bottom: 2%;
  margin: 2rem 0 2rem 24rem;
  width: 65%;
  height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  background-color: rgba(250, 245, 215, 0.8);
  padding: 30px;
  border-radius: 10px;
  box-shadow: inset 0 0 8px rgba(230, 223, 197, 0.6);
}

.apel-112 h2 {
  font-weight: 600;
  color: rgb(42, 45, 50);
  font-size: 34px;
  margin-bottom: 1.5%;
}

.apel-112 p {
  font-weight: 400;
  color: rgb(42, 45, 50);
  font-size: 24px;
}

.apel-112 span {
  color: #cc0000;
  font-weight: 800;
  font-size: 36px;
}




/*prim-ajutor*/
.prim-ajutor .wrap {
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 20px;
}

.prim-ajutor .page-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.prim-ajutor .kicker {
  color: #4c8fbf;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.prim-ajutor .hint {
  color: #5b6b7a;
  font-size: .98rem;
}

.prim-ajutor .card {
  background: #ffffff;
  border: 1px solid #dfe8f1;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(3, 27, 78, .06), 0 1px 2px rgba(3, 27, 78, .06);
  overflow: hidden;
}

.prim-ajutor .accordion {
  display: grid;
}

.prim-ajutor details {
  border-top: 1px solid #dfe8f1;
  position: relative;
  transition: background .25s ease;
}

.prim-ajutor details:first-of-type {
  border-top: 0;
}

.prim-ajutor details[open] {
  background: linear-gradient(180deg, rgba(0, 150, 199, .06), transparent 120%);
}

.prim-ajutor summary {
  list-style: none;
}

.prim-ajutor summary::-webkit-details-marker {
  display: none;
}

.prim-ajutor .row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  color: #2a2d32;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.prim-ajutor details:hover .row {
  background: rgba(0, 0, 0, .02);
}

.prim-ajutor .row:focus-visible {
  outline: 3px solid rgba(0, 150, 199, .35);
  border-radius: 10px;
}

.prim-ajutor .chev {
  order: -1;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #dfe8f1;
  border-radius: 999px;
  flex: 0 0 22px;
  transition: transform .25s ease, border-color .2s ease;
}

.prim-ajutor .chev svg {
  width: 14px;
  height: 14px;
}

.prim-ajutor details[open] .chev {
  transform: rotate(90deg);
  border-color: rgba(0, 150, 199, .35);
}

.prim-ajutor a {
  color: #2a2d32;
  text-underline-offset: 2px;
}

.prim-ajutor a:hover {
  color: #0096c7;
}

.prim-ajutor .content {
  padding: 0 20px 22px 20px;
  color: #33414f;
  line-height: 1.6;
}

.prim-ajutor .content p {
  margin: 0 0 14px;
}

.prim-ajutor .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(3, 27, 78, .06), 0 1px 2px rgba(3, 27, 78, .06);
}

.prim-ajutor .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.prim-ajutor details::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: transparent;
  transition: background .25s ease;
  border-radius: 3px 0 0 3px;
}

.prim-ajutor details:hover::after {
  background: rgba(0, 150, 199, .35);
}

.prim-ajutor details[open]::after {
  background: #007acc;
}

/*apel la 112*/
.apel-la-112 .wrap {
  max-width: 900px;
  margin: 36px auto;
  padding: 0 18px
}

.apel-la-112 .page {
  background: #fff;
  border: 1px solid #dbe6f4;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(3, 27, 78, .06), 0 1px 2px rgba(3, 27, 78, .06);
  position: relative;
  overflow: hidden
}

.apel-la-112 .page:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: #e53935
}

.apel-la-112 header {
  padding: 20px 22px 6px
}

.apel-la-112 .kicker {
  color: #5e8ec6;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: .82rem
}

.apel-la-112 h1 {
  margin: 6px 0 16px;
  color: #0d3a8b;
}

.apel-la-112 section {
  padding: 14px 22px 22px;
  border-top: 1px solid #e6eef8
}

.apel-la-112 h2 {
  margin: 8px 0 10px;
  color: #0d3a8b;
  font-size: 1.25rem
}

.apel-la-112 h3 {
  margin: 18px 0 10px;
  color: #0d3a8b;
  font-size: 1.05rem
}

.apel-la-112 p {
  margin: 0 0 12px;
  line-height: 1.6
}

.apel-la-112 .lead {
  font-weight: 700
}

.apel-la-112 ul {
  margin: 10px 0 12px 0;
  padding: 0 0 0 22px
}

.apel-la-112 li {
  margin: 6px 0
}

.apel-la-112 .diamond {
  list-style: none;
  padding: 0;
  margin: 6px 0 10px
}

.apel-la-112 .diamond li {
  position: relative;
  padding-left: 14px;
  margin: 10px 0
}

.apel-la-112 .diamond li:before {
  content: "♦";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d3a8b
}

.apel-la-112 .note {
  background: #f2f6fb;
  border: 1px solid #e1eaf7;
  border-radius: 10px;
  padding: 12px 14px
}

/*anunturi prima pagina*/
.anunturi-pr #flx-column img {
  width: 100% !important;
  height: auto !important;
}

.anunturi-pr h2 {
  font-size: 1.6rem;
  color: #3eb8d7;
  text-align: center;
  margin: 2% 0 3% 8%;
}

.grid-2-anunturi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 68%;
  margin: 2% 21%;
}


.containerl .carte-vizita2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40%;
}

.carte-vizita2 {
  width: 23.75rem;
  height: 21rem;
  padding: 1% 1%;
  margin: 5% auto;
  margin-top: 0;
  position: relative;
  overflow: auto;
  outline: 2px solid #B9C2C9;
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 40%), 0 7px 20px 0 rgb(0 0 0 / 20%);
}

.carte-vizita2 img {
  width: 20rem;
  height: 13rem;
  margin: 0 auto;
  display: block;
  padding: 3%;
  object-fit: cover;
  margin-top: 3%;
}

.carte-vizita2 a {
  color: #3065b5;
  transition: color 0.3s ease-in-out;
}

.carte-vizita2 a:hover {
  color: #999999;
}

.carte-vizita2 p,
.carte-vizita p {
  text-align: center;
  padding: 1%;
}

/*transport medical asistat/neasistat*/
.transport-medical {
  padding: 0;
  color: #21343a;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: .1px;
  width: 74.3%;
  margin: 3rem 19rem;
  text-align: center;
}

.transport-medical a {
  color: #2c7f84;
  font-weight: 600;
  text-underline-offset: 3px;
  transition: color .2s;
}

.transport-medical a:hover,
.transport-medical a:focus {
  color: #6cc7c7;
}

@media (min-width:992px) {
  .transport-medical {
    font-size: 18px;
  }
}


html,
body {
  margin: 0;
  overflow-x: clip;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/*Membrii comitetului director*/
.membrii .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.membrii .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.membrii .card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 14px 34px rgba(6, 44, 62, 0.12);
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}

.membrii .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #2b7ca6, #56b6c2);
  opacity: .95;
}

.membrii .card:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 20px 42px rgba(6, 44, 62, 0.16);
}

.membrii .role {
  margin: 0 0 6px 0;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #2b7ca6;
  font-weight: 700;
}

.membrii .name {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  color: #0b2a3b;
}

.membrii .card.thin {
  border-radius: 18px;
  margin: 1% 0;
}

.membrii .card+.card {
  margin-top: 2px;
}

.membrii a {
  color:#1581e0 !important;
}

.membrii a:hover {
  color:#29a3ff !important;
}


@media (min-width:900px) {
  .membrii .name {
    font-size: 1.6rem;
  }

  .membrii .card {
    padding: 26px 30px;
  }
}

/*Contact si audiente*/
.twocol {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width:1000px) {
  .twocol {
    grid-template-columns: 1.1fr .9fr;
  }
}

.contact-name {
  margin: 10px 0 6px 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #6b7c86;
}

.contact-phone {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 24px;
  color: #6b7c86;
}

.aud-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(13, 58, 80, 0.08);
}

.aud-row:first-of-type {
  border-top: none;
}

.name.tight {
  margin: 0;
  font-size: 1.2rem;
  color: #146C94;
}

.days {
  color: #d93025;
  text-decoration: none;
  font-weight: 700;
  text-transform: lowercase;
}


.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acc-link {
  display: block;
  padding: 16px 18px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(6, 44, 62, .10);
  border-left: 6px solid #2b7ca6;
  font-weight: 800;
  color: #0b2a3b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.acc-link:hover {
  box-shadow: 0 16px 32px rgba(6, 44, 62, .16);
}

.petitii h3 {
  font-size: 1.2rem;
  margin: 2% 0;
}

/*Legislatie si documente*/
.section-title {
  margin: 0 0 16px 0;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #2b7ca6;
  font-weight: 800;
}

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.doc-item {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px 16px 56px;
  box-shadow: 0 10px 24px rgba(6, 44, 62, 0.10);
  margin-bottom: 12px;
}

.doc-item::before {
  content: attr(data-num) ".";
  position: absolute;
  left: 18px;
  top: 19px;
  font-size: 16px;
  font-weight: 800;
  color: #2b7ca6;
}

.doc-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
  color: #0b2a3b;
  font-weight: 700;
}

.doc-title:hover {
  color: #2b7ca6;
  transform: translateX(4px);
}

@media (min-width:900px) {
  .doc-title {
    font-size: 18px
  }

  .doc-item {
    padding: 18px 20px 18px 58px
  }
}

.two-cols {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.two-cols .comunicat {
  flex: 1 1 45%;
  max-width: 500px;
  background: #ffffff;
  border: 1px solid #d7dce0;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.com-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 800;
  color: #0b2a3b;
}

.com-text {
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 10px 0;
  color: #34495e;
  flex-grow: 1;
}

.com-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #2b7ca6;
  text-decoration: none;
  margin-bottom: 8px;
}

.com-link:hover {
  text-decoration: underline;
}

.com-date {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

@media (max-width: 800px) {
  .two-cols {
    flex-direction: column;
  }

  .two-cols .comunicat {
    max-width: 100%;
  }
}

/*HOTĂRÂREA NR. 156 din 23.10.2021*/
.post-title {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 800;
  color: #2b7ca6;
}

.post-meta {
  font-size: 13px;
  color: #57717f;
  margin-bottom: 14px;
}

.post-body h4 {
  margin: 18px 0 8px 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #2b7ca6;
}

.post-body p {
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #163545;
}

.post-body strong {
  color: #0e2a3a;
}

.sidebar {
  position: sticky;
  top: 20px
}

@media (max-width:1000px) {
  .layout-2 {
    grid-template-columns: 1fr
  }

  .sidebar {
    position: static
  }
}

.important-links {
  background: #f9fcfd;
  border-left: 4px solid #2b7ca6;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  max-width: 700px;
}

.important-item {
  margin-bottom: 16px;
}

.important-title {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  color: #003366;
  text-decoration: none;
  transition: color 0.2s;
}

.important-title:hover {
  color: #2b7ca6;
  text-decoration: underline;
}

.important-desc {
  margin: 3px 0 0;
  font-size: 14px;
  color: #333;
}

.note {
  font-size: 13px;
  color: #555;
  margin-left: 6px;
}

.hot {
  margin-bottom: 7%;
}

/*Legislație voluntariat*/
.section-kicker {
  margin: 0 0 14px 0;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5f7180;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.section-kicker::after {
  content: "";
  display: block;
  height: 4px;
  width: 110%;
  margin-top: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, #2b7ca6, #56b6c2, #8fd3db);
  opacity: .9;
}

.vol-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #dfeaf0;
  background:
    linear-gradient(180deg, rgba(143, 211, 219, .18), transparent 40%),
    #ffffff;
  box-shadow: 0 14px 28px rgba(6, 44, 62, .12);
  margin-bottom: 28px;
}

.vol-headline {
  font-size: 22px;
  font-weight: 900;
  color: #0b2a3b;
  margin: 2px 0 2px 0;
}

.vol-open {
  color: #2b7ca6;
  text-decoration: none;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px dashed #56b6c2;
  background: #f5fbfc;
}

.vol-open:hover {
  background: #e9f6fb
}

.law-azure {
  background:
    linear-gradient(135deg, #8fd3db 0%, #2b7ca6 100%),
    radial-gradient(#ffffff22 20%, transparent 21%) 0 0/10px 10px,
    #8fd3db;
}

.law-azure-light {
  background:
    linear-gradient(135deg, #7fcde0 0%, #3d95b8 100%),
    radial-gradient(#ffffff22 20%, transparent 21%) 0 0/10px 10px,
    #7fcde0;
  color: #ffffff;
}


.law-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7fcde0 0%, #3d95b8 100%);
}

.law-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background 0.3s ease, transform 0.2s ease;
}

.law-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
}

.law-link svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;

}

/*Primiri voluntari*/
.pv-hero {
  background: linear-gradient(135deg, #f4fbfe 0%, #ffffff 60%);
  text-align: center;
}

.pv-hero-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e9f7ff;
  color: #1e5563;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.pv-hero-title {
  margin: 10px 0 6px 0;
  font-size: 26px;
  color: #27434a;
  font-weight: 900;
}

.pv-hero-sub {
  margin: 0;
  font-size: 15px;
  color: #5b7680;
}

.pv-section {
  margin: 0 0 12px 0;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #5b727b;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 3px solid #ffb74d;
}

.pv-subsection {
  margin: 16px 0 8px 0;
  font-size: 15px;
  color: #2f6a74;
  font-weight: 700;
}

.pv-subcenter {
  margin: 4px 0;
  text-align: center;
  color: #2e5962;
  font-weight: 800;
}


.pv-two {
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .pv-two {
    grid-template-columns: 1fr 1fr;
  }
}


.pv-two a,
.pv-note a {
  color: #2f7fa8;
  /* color:#3da9d4; */
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.pv-two a:hover,
.pv-note a:hover {
  color: #256683;
  /* color: #ff9800;  */
}

.pv-link {
  display: inline-block;
  margin: 6px 0 10px 0;
}

.pv-sep {
  border: none;
  height: 1px;
  background: #eef4f7;
  margin: 14px 0;
}


.pv-note {
  color: #33535a;
  background: #fcfefe;
  border: 1px solid #e6f1f5;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  margin: 12px 0;
  box-shadow: 0 4px 12px rgba(77, 182, 226, .08);
}


.pv-list-wrap {
  background: #fff;
  border: 1px solid #e6f1f5;
  border-radius: 12px;
  padding: 12px 14px;
  max-height: 340px;
  overflow: auto;
  box-shadow: 0 6px 16px rgba(77, 182, 226, .12);
}

.pv-list {
  margin: 0;
  padding-left: 18px;
  color: #2f3e46;
  line-height: 1.6;
}


.pv-bullets {
  margin: 6px 0 10px 18px;
  color: #3f4e55;
}

.pv-bullets li {
  margin: 4px 0;
}


.pv-forms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.pv-doc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  color: #285e6d;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid #cfe7ec;
  box-shadow: 0 4px 12px rgba(77, 182, 226, .12);
  transition: all .2s ease;
}

.pv-doc-link:hover {
  background: #f6fbfc;
  border-color: #a9dff0;
  box-shadow: 0 6px 16px rgba(77, 182, 226, .18);
  transform: translateY(-2px);
}

.pv-doc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #eaf7fd;
  border: 1px solid #cfeaf6;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .04);
}

.pv-doc-icon svg {
  width: 14px;
  height: 14px;
  fill: #E21C1C;
  /* fill: #4db6e2; */
}


.pv-acc {
  border: 1px solid #e0f2f1;
  border-radius: 12px;
  background: #fff;
  margin: 10px 0;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(77, 182, 226, .15);
}

.pv-acc>summary {
  list-style: none;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 800;
  color: #2f4d55;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(0deg, #fbfeff 0%, #ffffff 100%);
}

.pv-acc>summary::-webkit-details-marker {
  display: none;
}

.pv-acc>summary:after {
  content: "+";
  font-size: 1.15rem;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: #eaf7fd;
  color: #4db6e2;
  font-weight: 900;
  border: 1px solid #d6edf7;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.pv-acc[open]>summary:after {
  content: "–";
  background: #fff6e9;
  color: #ffb74d;
  border-color: #ffe4bd;
}

.pv-acc p,
.pv-acc ul {
  padding: 0 16px 14px 16px;
  margin: 8px 0 0 0;
  color: #3f4e55;
  background: linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
}


@media (max-width: 480px) {
  .pv-hero-title {
    font-size: 22px;
  }

  .pv-doc-link {
    width: 100%;
  }
}

/*Pregătire voluntari*/
.pregatire-voluntari .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pregatire-voluntari h2 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #2C6E91;
  /* color:#3e5f6e; */
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pregatire-voluntari .line {
  width: 36rem;
  height: 2px;
  background: #f6c27d;
  margin: 0 auto 24px auto;
  border-radius: 2px;
}

.pregatire-voluntari .image {
  margin: 0 auto 20px auto;
  max-width: 640px;
}

.pregatire-voluntari .image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.pregatire-voluntari p {
  font-size: 20px;
  font-weight: 700;
  color: #344c57;
  margin: 12px 0 18px 0;
}

.pregatire-voluntari .btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #2f7fa8;
  border: 2px solid #2f7fa8;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.pregatire-voluntari .btn:hover {
  background: #2f7fa8;
  color: #fff;
}

/*Anunturi voluntari*/
.anunturi-voluntari .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 22px;
}

.anunturi-voluntari .ann-section-title {
  margin: 18px 0 10px 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #566a74;
  padding-bottom: 6px;
  border-bottom: 1px solid #f6c27d;
}

.anunturi-voluntari .ann-item {
  border: 1px solid #d0dce5;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 15px;
  background: #f9fcfd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.anunturi-voluntari .ann-item summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  color: #2f5d8a;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.anunturi-voluntari .ann-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: bold;
  color: #2f5d8a;
  transition: transform 0.3s ease;
}

.anunturi-voluntari .ann-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.anunturi-voluntari .ann-item a {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #444;
  padding-left: 5px;
  font-weight: 600;
}

/*Relatii publice*/
.relatii-publice .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px;
}

.relatii-publice .section-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #566a74;
  padding-bottom: 8px;
  border-bottom: 1px solid #f6c27d;
  margin: 8px 0 16px 0;
}

.relatii-publice .layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}

@media (max-width:900px) {
  .relatii-publice .layout {
    grid-template-columns: 1fr;
  }
}

.relatii-publice .card {
  background: #f7fbfd;
  border: 1px solid #e3edf2;
  border-radius: 14px;
  padding: 18px 18px;
}

.relatii-publice .person {
  font-size: 22px;
  font-weight: 900;
  color: #1e4657;
  margin: 0 0 6px 0;
}

.relatii-publice .phone {
  font-size: 18px;
  font-weight: 800;
  color: #204a5c;
  margin: 2px 0 0 0;
}

.relatii-publice .box {
  background: #ffffff;
  border: 1px solid #dfeaf0;
  border-radius: 12px;
  padding: 16px 16px;
  margin-top: 14px;
}

.relatii-publice .box h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 900;
  color: #244d5c;
  text-transform: uppercase;
}

.relatii-publice .addr p {
  margin: 6px 0;
}

.relatii-publice .hint {
  color: #e59866;
  font-weight: 900;
  margin: 10px 0 2px 0;
}

.relatii-publice .email a,
.relatii-publice .phone a {
  color: #1581e0;
  font-weight: 700;
  text-decoration: none;
}

.relatii-publice .email a:hover,
.relatii-publice .phone a:hover {
  color: #29a3ff;
}


.relatii-publice .formular-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
}

.relatii-publice .formular-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #8dbbd9, #5f91b7);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.relatii-publice .formular-btn:hover {
  background: linear-gradient(135deg, #a3cce6, #6da3cc);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/*Avertizori în interes public*/
.avertizori .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px;
}

.avertizori .list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.avertizori .doc-card {
  background: #ffffff;
  border: 1px solid #e3edf2;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(9, 44, 64, .08);
}

.avertizori .doc-card h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 900;
  color: #243e4a;
}

.avertizori .doc-link {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 800;
  text-decoration: none;
  color: #1581e0;
  transition: color .15s;
}

.avertizori .doc-link:hover {
  color: #29a3ff;
}

.avertizori .doc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #58707b;
}

.avertizori a {
  color: #1581e0 !important;
  font-weight: 700;
}

.avertizori a:hover {
  color: #29a3ff !important;
}

/*rapoarte*/
.rapoarte .wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 20px 40px;
}

.rapoarte .page-title {
  font-size: 28px;
  font-weight: 900;
  color: #2C6E91;
  text-align: left;
  margin-left: 5px;
}

.rapoarte .page-title+.rule {
  height: 4px;
  width: 18%;
  background: #2C6E91;
  opacity: .55;
  border-radius: 3px;
  margin: 8px 0 22px 5px;
}

.rapoarte .year {
  border: 1px solid #e3edf2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(9, 44, 64, .08);
  overflow: hidden;
}

.rapoarte .year {
  margin-top: 16px;
}

.rapoarte .year>summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 58px 18px 18px;
  font-size: 18px;
  font-weight: 800;
  position: relative;
  user-select: none;
  background: linear-gradient(135deg, #c8e6f1, #a9d3e2);
  color: #1f4d68;
}

.rapoarte .year>summary::-webkit-details-marker {
  display: none;
}

.rapoarte .year>summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .35);
  font-weight: 900;
  font-size: 18px;
}

.rapoarte .year[open]>summary::after {
  content: "–";
}

.rapoarte .year-content {
  padding: 16px 16px 6px;
  animation: fadeIn .18s ease;
}

@keyframes fadeIn {
  from {
    opacity: .3;
    transform: translateY(-2px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.rapoarte .reports {
  display: grid;
  gap: 14px;
}

.rapoarte .report {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #e6eef3;
  border-radius: 12px;
  padding: 14px 16px;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.rapoarte .report:hover {
  box-shadow: 0 10px 22px rgba(9, 44, 64, .12);
  border-color: #d6e6ef;
}

.rapoarte .report a.title {
  font-weight: 900;
  color: #1581e0;
  text-decoration: none;
  text-underline-offset: 3px;
}

.rapoarte .report a.title:hover {
  color: #29a3ff;
}

.rapoarte .report .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #344e5a;
  text-decoration: none;
}

.rapoarte .report .more::after {
  content: "▸";
  transform: translateY(1px);
}

.rapoarte .report .more:hover {
  color: #0b3c6d
}

@media (min-width:740px) {
  .rapoarte .reports {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width:1020px) {
  .rapoarte .reports {
    grid-template-columns: repeat(3, 1fr)
  }
}

/*Informatii utile*/
.informatii-utile .wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  text-align: center;
}

.informatii-utile .rule {
  width: 23rem;
  height: 4px;
  background: #2C6E91;
  opacity: .55;
  border-radius: 3px;
  margin: 0 auto 1rem;
}


.informatii-utile .stations {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.informatii-utile details.station {
  width: 100%;
  max-width: 700px;
  border: 1px solid #e3edf2;
  border-radius: 14px;
  background: #f9fbfc;
  box-shadow: 0 6px 18px rgba(9, 44, 64, .08);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.informatii-utile details.station[open] {
  border-color: #cde2ec;
  box-shadow: 0 10px 22px rgba(9, 44, 64, .12);
}

.informatii-utile details.station summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #9ac3d6, #7eb3c9);
  /* degrade nou */
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  user-select: none;
}

.informatii-utile details.station summary::-webkit-details-marker {
  display: none
}

.informatii-utile .station-content {
  padding: 16px 22px;
  background: #ffffff;
  color: #2f4e5a;
  text-align: left;
  animation: fadeIn .2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-3px)
  }

  to {
    opacity: 1;
    transform: none
  }
}


.informatii-utile .links {
  margin-top: 60px;
}

.informatii-utile .links h2 {
  font-size: 24px;
  font-weight: 800;
  color: #2C6E91;
  margin-bottom: 16px;
}

.informatii-utile .links-list {
  display: grid;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.informatii-utile .links-list a {
  text-decoration: none;
  color: #0f4a88;
  background: #f8fbfd;
  border: 1px solid #e2edf3;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all .2s ease;
}

.informatii-utile .links-list a:hover {
  background: #e8f2fa;
  color: #0b3c6d;
}

/*Posturi vacante scoase la concurs*/
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

/* Titlu */
h1 {
  margin: 0 0 10px 0;
  font-size: 28px;
  font-weight: 900;
  color: #2C6E91;
  text-align: center;
}

.rule {
  width: 90px;
  height: 4px;
  border-radius: 4px;
  margin: 10px auto 36px;
  background: #2C6E91;
  opacity: 0.55;
}

/* GRID carduri */
.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* CARD */
.card {
  display: block;
  text-decoration: none;
  color: #123b55;
  background: linear-gradient(135deg, #a9d3e2, #7eb3c9);
  border: 1px solid rgba(95, 145, 183, 0.18);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(9, 44, 64, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}


.card:focus-visible {
  outline: 3px solid #2C6E91;
  outline-offset: 3px;
}

/* Structură internă */
.card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

/* Iconă */
.ico {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 12px;
  background: #ffffffd1;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(23, 72, 99, 0.15);
}

.ico svg {
  width: 26px;
  height: 26px;
  fill: #1f516e;
}

/* Titlu card */
.card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  color: #2c4e64;
}

/* Text suplimentar */
.card__meta {
  margin-top: 8px;
  font-size: 14px;
  color: #24516f;
  opacity: 0.8;
}

/* Mic text indicativ */
.hint {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 12px;
  color: #1f4d68;
  opacity: 0.7;
}

/*Cariere si voluntariat - concursuri*/
.cariere-concursuri .wrap {
  max-width: 52rem;
}

.cariere-concursuri .rule {
  width: 26%;
  height: 4px;
  border-radius: 4px;
  margin: 10px auto 30px;
  background: #2C6E91;
  opacity: .55;
}

.cariere-concursuri .jobs {
  display: grid;
  gap: 16px;
}

.cariere-concursuri .job {
  background: #ffffff;
  border: 1px solid #e3edf2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(9, 44, 64, .08);
}

.cariere-concursuri .job>summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 64px 18px 18px;
  background: linear-gradient(135deg, #c8e6f1, #a9d3e2);
  color: #1f4d68;
  font-weight: 900;
  font-size: 18px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  user-select: none;
}

.cariere-concursuri .job>summary::-webkit-details-marker {
  display: none
}

.cariere-concursuri .job>summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #bfe2ee, #8fbfd4);
  color: #19445f;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(9, 44, 64, .12);
  transition: transform .25s ease, background .25s ease;
}

.cariere-concursuri .job[open]>summary::after {
  content: "×";
  transform: translateY(-50%) rotate(180deg);
}

.cariere-concursuri .job>summary:hover {
  background: linear-gradient(135deg, #d6eef6, #bfe2ee);
}

.cariere-concursuri .job .body {
  padding: 16px 16px 18px 16px;
  background: #ffffff;
}

.cariere-concursuri .doc-list {
  display: grid;
  gap: 12px;
}

.cariere-concursuri .doc {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #12435c;
  background: #f7fcff;
  border: 1px solid #e5eef4;
  border-radius: 12px;
  padding: 12px 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.cariere-concursuri .doc:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(9, 44, 64, .10);
}

.cariere-concursuri .doc .pdf-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  background: #D32F2F;
  box-shadow: 0 6px 12px rgba(211, 47, 47, .35);
}

.cariere-concursuri .doc .pdf-ico svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.cariere-concursuri .doc .txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cariere-concursuri .doc .title {
  font-weight: 800;
  font-size: 15px;
  color: #3881c2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cariere-concursuri .doc .meta {
  font-size: 12px;
  color: #597587;
}

.cariere-concursuri .doc .hint {
  margin-left: auto;
  font-size: 12px;
  color: #24516f;
  opacity: .65;
}


@media (max-width:560px) {
  .cariere-concursuri .job>summary {
    padding-right: 56px
  }
}

/*Formare profesionala + Voluntariat*/
.dotari-main #flx-column img {
  width: 100% !important;
  height: auto !important;
}

.dotari-main {
  margin-top: 5rem !important;
}

.dotari-main h2 {
  font-size: 22px;
}

.dotari-main h1 {
  text-align: center;
  margin-bottom: 4%;
}



.container-cdc {
  position: relative;
  width: 27.33%;
  margin: 0 2% 1px 2%;
  height: 400px;
  border-radius: 10px 10px 0 0;
}

.containerl .carte-vizita2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40%;
}

.formare-profesionala .carte-vizita2 {
  width: 13.75rem;
  height: 13rem;
  padding: 1% 1%;
  margin: 5% auto;
  margin-top: 0;
  position: relative;
  overflow: auto;
  outline: 2px solid #B9C2C9;
  box-shadow: 0 5px 10px 0 rgb(0 0 0 / 40%), 0 7px 20px 0 rgb(0 0 0 / 20%);
}

.formare-profesionala .carte-vizita2 img {
  width: 12rem;
  height: 8rem;

  margin: 0 auto;
  display: block;
  padding: 3%;
  object-fit: cover;
  margin-top: 3%;
}

.formare-profesionala .carte-vizita2 a {
  color: #1581e0;
  transition: color 0.3s ease-in-out;
}

.formare-profesionala .carte-vizita2 a:hover {
  color: #29a3ff;
}

.carte-vizita2 p,
.carte-vizita p {
  text-indent: 0px !important;
}

.text-mare-carte {
  font-size: 1.1em !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1%;
}

.formare-profesionala .carte-vizita2 {
  min-height: 12rem;
}

.formare-profesionala .lg-ct {
  width: 97%;
  height: auto;
}

.formare-profesionala .lg-ct img {
  width: 90%;
  height: 16rem;
  object-fit: fill;
}

.container-cdc a {
  color: #1581e0;
}

.container-cdc a:hover {
  color: #29a3ff;
}

/*Pagina pacientului*/
.pagina-pacient .topbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
}

.pagina-pacient .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: #0b2f66;
}

.pagina-pacient .brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  background: conic-gradient(from 0deg, #22c55e, #fde047, #ef4444, #0ea5e9, #22c55e);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.28);
}

.pagina-pacient .brand-badge::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 6px;
  background: #fff;
}

.pagina-pacient .navlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.pagina-pacient .navlinks a {
  text-decoration: none;
  color: #0b2f66;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
}

.pagina-pacient .navlinks a:hover {
  background: #e9f6ff;
}

.pagina-pacient .hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 28px 24px;
}

.pagina-pacient .hero p {
  color: #5b6b8b;
  font-size: 18px;
  margin: 0;
}

.pagina-pacient .grid {
  max-width: 1200px;
  margin: 8px auto 48px;
  padding: 0 24px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 0.8fr;
}


.pagina-pacient .card {
  background: #ffffff;
  border: 1px solid #e9eef7;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(2, 8, 23, 0.04);
}

.pagina-pacient .card-pacient {
  background: #ffffff;
  border: 1px solid #e9eef7;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(2, 8, 23, 0.04);
  width: 67%;
  margin: 5% auto;
  padding: 2%;
}

.pagina-pacient .card .hd {
  padding: 18px 20px;
  border-bottom: 1px solid #eef3fb;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pagina-pacient .card .bd {
  padding: 18px 20px;
}

.pagina-pacient .lead-quote {
  font-size: 20px;
  line-height: 1.4;
  color: #14383e;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pagina-pacient .muted {
  color: #5b6b8b;
}

.pagina-pacient .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #c9e8fb;
  background: #e9f8ff;
  color: #0b2f66;
  font-weight: 700;
  text-decoration: none;
}

.pagina-pacient .cta:hover {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.4);
}

.pagina-pacient .linklist {
  display: grid;
  gap: 12px;
}

.pagina-pacient .linkitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid #e6eef8;
  border-radius: 14px;
  background: #ffffff;
  text-decoration: none;
  color: #1581e0;
  font-weight: 700;
}

.pagina-pacient .linkitem:hover {
  border-color: #29a3ff;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.08);
  transform: translateY(-1px);
}

.pagina-pacient .section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

/*Norme lege 46*/
.norme-lege .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #e9f8ff;
  border: 1px solid #c9e8fb;
  color: #0b2f66;
  font-weight: 700;
  text-decoration: none;
}

.norme-lege .linklist {
  display: grid;
  gap: 12px;
}

.norme-lege .linkitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e6eef8;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: #0b2f66;
  font-weight: 700;
}

.norme-lege .linkitem:hover {
  border-color: #0ea5e9;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.08);
  transform: translateY(-1px);
}

.norme-lege .linkicon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0ea5e9, #60a5fa);
  color: #fff;
  font-weight: 900;
}

.norme-lege h4 {
  margin: 1.2% 0 0.3% 0;
  color: #194381;
}

.norme-lege ul {
  margin-left: 1%;
}

/*PNRR*/
#banner-UE-top {
  display: block;
  margin: auto;
  margin-bottom: 40px;
  max-width: 70%;
  min-width: 80%;
}

.p-size {
  width: fit-content;
}

.imagine-articol1 {
  width: 50%;
  margin: 0 25%;
  height: auto;
  position: relative;

}

.imagine-articol3 {
  width: 70%;
  margin: 0 15%;
  height: auto;
  position: relative;

}



.p-size span {
  color: #194381;
  font-size: 1.2rem;
  font-weight: 700;
}


.calendar-concurs-img {
  transform: rotate(0.7deg)
}

.promovari {
  margin-left: 4rem;
  width: 130%;
  margin-top: 4rem;
}


.promovari .faq__content a {
  color: #009BD4 !important;
}



.formare-prof {
  border: 2px solid #00107D;
  margin-left: 17rem;
  width: 65%;
  height: 13rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  background-color: whitesmoke;
  padding: 30px;
  border-radius: 10px;

}

.formare-prof p {
  font-weight: 600;
  color: #00107D;
  font-size: 20px;
}

.formare-prof button {
  font-size: 20px;
  font-weight: 600;
  color: #00107D;
  border-color: #00107D !important;
  border-right-color: #00107D !important;
  border-bottom-color: #00107D !important;
  align-self: center;
  padding: 10px;
  border-radius: 3px;
}

.bg-color1 {
  background-color: #FFF;
}

.bg {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 20em;
}

.margin-top-bottom {
  padding: 40px 0;
}

.div-class-center {
  width: 90%;
  margin: 2% 5%;
  text-align: justify;
}

.div-class-center h2 {
  text-align: justify;
  font-size: 1em;
  text-indent: 20px;
}

.div-class-center p {
  text-indent: 30px;
}

.centered {
  text-align: center !important;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.mb-xxs {
  margin-bottom: 0.3% !important;
}

.left a:hover,
.p-size a:hover {
  color: #112646;
}

.pnrr a{
color:#1581e0 !important;
font-weight: 600;
}

.pnrr a:hover{
color:#29a3ff !important;
}

/*Ghiduri si protocoale si Tehnici*/
.ghiduri-protocoale .topbar {
  position: relative;
}

.ghiduri-protocoale .topbar::after {
  content: "";
  position: absolute;
  left: 17%;
  width: 65%;
  bottom: 0;
  height: 1px;
  background: #e6eef9;
  pointer-events: none;
}

.ghiduri-protocoale .hero {
  max-width: 71rem;
  margin: 0 auto;
  padding: 36px 28px 28px;
}

.ghiduri-protocoale .wrap {
  max-width: 75rem;
  margin: 8px auto 60px;
  padding: 0 24px;
}

.ghiduri-protocoale .toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ghiduri-protocoale .search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e6eef8;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 4px 12px rgba(2, 8, 23, .03);
}

.ghiduri-protocoale .search input {
  border: none;
  outline: none;
  min-width: 240px;
  font-size: 14px;
}

.ghiduri-protocoale .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #e9f8ff;
  border: 1px solid #c9e8fb;
  color: #0b2f66;
  font-weight: 700;
  text-decoration: none;
}


.ghiduri-protocoale .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ghiduri-protocoale .card {
  background: #ffffff;
  border: 1px solid #e9eef7;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(2, 8, 23, .04);
  display: flex;
  flex-direction: column;
}

.ghiduri-protocoale .card .hd {
  padding: 16px 16px 8px;
  border-bottom: 1px solid #eef3fb;
  font-weight: 800;
  letter-spacing: -.01em;
}

.ghiduri-protocoale .card .bd {
  padding: 12px 16px 16px;
}

.ghiduri-protocoale .linklist {
  display: grid;
  gap: 10px;
}

.ghiduri-protocoale .linkitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border: 1px solid #e6eef8;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: #0b2f66;
  font-weight: 700;
}

.ghiduri-protocoale .linkitem:hover {
  border-color: #0ea5e9;
  box-shadow: 0 6px 16px rgba(2, 132, 199, .08);
  transform: translateY(-1px);
}

.ghiduri-protocoale .pdficon {
  width: 28px;
  height: 34px;
  flex: 0 0 28px;
  display: block;
}

.ghiduri-protocoale .video-wrap {
  margin: 0 auto;
  border-radius: 10px;
}

.ghiduri-protocoale a.muted {
  margin: 2% 0 4% 10%;
  display: inline-block;
  font-weight: 800;
  color: #0b2f66;
  text-decoration: none;
}


/*Prezentare*/
.prezentare .wrap {
  max-width: 1200px;
  margin: 22px auto 60px;
  padding: 0 24px;
}

.prezentare .section {
  margin-bottom: 26px;
}

.prezentare .section h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: #0b2f66;
}

.prezentare .lead {
  color: #5b6b8b;
  font-size: 15px;
  margin: 0 0 12px;
}

.prezentare .card {
  background: #ffffff;
  border: 1px solid #e6eef7;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(2, 8, 23, 0.05);
  overflow: hidden;
}

.prezentare .card .hd {
  padding: 16px 18px;
  border-bottom: 1px solid #eef3fb;
  font-weight: 800;
  color: #0b2f66;
}

.prezentare .card .bd {
  padding: 16px 18px;
}

.prezentare .highlight {
  background: #e9f6ff;
  border: 1px solid #c9e8fb;
  color: #0b2f66;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 12px 0;
  font-weight: 600;
}

.prezentare .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0;
}

.prezentare .stat {
  background: linear-gradient(135deg, #4fd4ee 0%, #7ab8f6 100%);
  color: #ffffff;
  border: 1px solid #cfeaff;
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.14);
  inset: 0;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 18px rgba(2, 132, 199, 0.14);
}

.prezentare .stat b {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.prezentare .stat span {
  opacity: .95;
  font-size: 12px;
}

.prezentare .stat:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 22px rgba(2, 132, 199, 0.18);
}

.prezentare a {
  color: #1581e0;
  /* color: #1e88e5; */
  font-weight: 700;
}

.prezentare a:hover {
  color: #29a3ff;
  outline: none;
}

.prezentare p {
  margin-bottom: 1%;
}


h1,
h2,
h3 {
  /* color: #0F7C8E; */
  color: #146C94;
  /* color: #2C6E91; */
}

h1 {
  font-size: 2.1rem;
}