/*---------------------------------------------------------------------------------------------------- Roots ----------------------------------------------------------------------------------------------------*/

:root {
    --white: #ffffff;
    --black: #0a0a0a;
    --gray: #555555;
    --light-gray: #e9e9e9;
    --green: #31bb89;
    --blue: #005687;
    --red:#A50000;
    --dark-blue: #001f30;

    --font-light: GuardianSans Light;
    --font-hairline: GuardianSans Hairline;
    --font-medium: GuardianSans Medium;
    --font-semibold: GuardianSans Semibold;
    --font-bold: GuardianSans Bold;
    --font-title: 'Ploiestii';

    --margin-top: 50px;
    --dynamic-height: calc(var(--vh, 1vh) * 100);
    --transition: all .15s linear;
}

/*---------------------------------------------------------------------------------------------------- Font ----------------------------------------------------------------------------------------------------*/

@font-face {
    font-family: GuardianSans Bold;
    src: url('/fonts/GuardianSansRO-Bold.otf');
}

@font-face {
    font-family: GuardianSans Light;
    src: url('/fonts/GuardianSansRO-Light.otf');
}

@font-face {
    font-family: GuardianSans Medium;
    src: url('/fonts/GuardianSansRO-Medium.otf');
}

@font-face {
    font-family: GuardianSans Hairline;
    src: url('/fonts/GuardianSansRO-Hairline.otf');
}

@font-face {
    font-family: GuardianSans Semibold;
    src: url('/fonts/GuardianSansRO-Semibold.otf');
}

@font-face {
    font-family: Passion;
    src: url('/fonts/PassionsConflict-Regular.ttf');
    font-weight: 300;
}




@font-face {
    font-family: 'Ploiestii';
    src: url('/fonts/ploiestiiweb-regular.woff2');
    font-weight: 300;
}
@font-face {
    font-family: 'Ploiestii';
    src: url('/fonts/ploiestiiweb-medium.woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Ploiestii';
    src: url('/fonts/ploiestiiweb-bold.woff2');
    font-weight: 500;
}


/*---------------------------------------------------------------------------------------------------- Comune ----------------------------------------------------------------------------------------------------*/

body {
  font-family: 'Ploiestii';
  font-size: 16px;
  font-weight: 300;
}

body, .content-wrapper {
  overflow: inherit;
}

body.popup-opened,
body.menu-opened {
    overflow: hidden;
}

.btn-primary {
    font-family: var(--font-medium);
    padding:10px 40px;
    color:var(--black);
    transition:var(--transition);
    border:none;
    outline:none!important;
    box-shadow:none!important;
    text-decoration: none!important;
}

.btn-primary:hover {
    background-color:var(--black);
    color:var(--white);
}


.section-title h2 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    /* text-transform: uppercase; */
    gap: 10px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-family: var(--font-title);
    font-size: calc(25px + (32 - 25) * ((100vw - 300px) / (1600 - 300)));
    letter-spacing: 2px;
}
.section-title-xl > * {
    font-size: calc(2vh + 2vw);
    margin-bottom: 10px;
    letter-spacing: 2px;
    /* text-transform: uppercase; */
    font-family: var(--font-title);
    font-weight: 500;
}
.section-subtitle > * {
  font-size: 20px;
}
/*
.intro-title-col .section-title-xl {
    content: '';
    display: block;
    height: 5px;
    width: 60px;
    background-color: var(--green);
    margin: auto;
    margin-top: 20px;
} */
/* .intro-title-col p {
    margin-bottom: 0;
} */
.intro-title-col .section-title-xl:after {
    content: '';
    display: block;
    height: 5px;
    width: 60px;
    background-color: var(--green);
    margin: auto;
    margin-top: 20px;
}

.section-title.white-title h2 {
    color: var(--white);
}

.section-title h2:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
}

.no-display {
    display: none !important;
}

.container {
    max-width: 1300px;
    padding: 0;
    width: 90%;
}

.news-hour {
    display:none;
}

main {
    min-height: calc(100vh - var(--margin-top));
    padding-top: 62px;
}

/*---------------------------------------------------------------------------------------------------- Header ----------------------------------------------------------------------------------------------------*/

header {
    position: fixed;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    transition: var(--transition);
    box-shadow: 0 0 20px -15px #000;
    padding: 5px 0;
}

/* header .container {
    width: 95%;
    max-width: 1600px;
} */

.header-content {
    display:flex;
    justify-content: space-between;
    transition: var(--transition);
}

.header-brand {
    display: flex;
    align-items: center;
    width: auto;
    max-width: 130px;
    margin-right: 30px;
    transition: var(--transition);
}
.header-brand img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    transition: var(--transition);
}

#main-navbar {
  width: 100%;
  padding: 0;
}


#main-navbar .navbar-nav {
    width: 100%;
    align-items: center;
    column-gap: 20px;
}
#main-navbar .main-nav-item {
  position: relative;
}
#main-navbar .main-nav-item.dropdown {
  display: flex;
  align-items: center;
}
#main-navbar .main-nav-item.dropdown .dropdown-icon {
  display: flex;
  align-items: center;
  margin-left: 5px;
}
#main-navbar .main-nav-item.dropdown svg {
  width: 15px;
  height: auto;
}
#main-navbar .main-nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
#main-navbar .nav-link {
  position: relative;
  color: #000;
  font-size: 14px;
  /* text-transform: uppercase; */
  font-family: var(--font-title);
  font-weight: 400;
  padding: 20px 0;
  transition: var(--transition);
  letter-spacing: 1px;
}
#main-navbar .main-nav > .nav-item > .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 0;
  height: 2px;
  width: 100%;
  background-color: var(--green);
  transition: var(--transition);
}
#main-navbar > .nav-item:hover > .nav-link:before {
    max-width: 100%;
}

#main-navbar .dropdown-menu .nav-link:hover {
    color: var(--green);
}
#main-navbar .main-nav .nav-link:hover:before {
    max-width: 100%;
}

.dropdown-menu {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: #fff;
  top: calc(100% - 3px);
  min-width: 200px;
  box-shadow: 0px 2px 5px rgb(0 0 0 / 40%);
  z-index: 9;
}
.dropdown-menu .nav-item .nav-link {
  display: block;
  color: #000;
  /* line-height: 1.3; */
  padding: 5px 15px !important;
  white-space: nowrap;
}
.dropdown-menu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background-color: var(--green);
    transition: var(--transition);
}
#main-navbar .nav-item:hover > .dropdown-menu:before {
    width: 100%;
}


.secondary-header-menu .nav-item > .dropdown-menu .nav-link {
    padding: 10px 15px;
    justify-content: flex-start;
    border-bottom: 1px solid #00000012;
}
.secondary-header-menu .nav-item .nav-link {
    position: relative;
    padding: 20px 0;
    font-size: 14px;
    font-family: var(--font-title);
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    letter-spacing: 1px;
}

.secondary-header-menu .nav-item .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 0;
    height: 2px;
    width: 100%;
    background-color: var(--green);
    transition: var(--transition);
}

.secondary-header-menu .nav > .nav-item:hover > .nav-link {
    color:var(--green);
}

.secondary-header-menu .nav > .nav-item:hover > .nav-link:before {
    max-width:100%;
}

.social-wrapper {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);  
    z-index: 999;
}
.social-wrapper ul {
    flex-direction: column;
}
.social-wrapper svg {
    border-radius: 100%;
    background: var(--green);
}


.header-content .extra-content {
    display:flex;
    flex-direction:row;
    align-items: center;
    column-gap: 10px;
}

.header-content .extra-content .extra-icon:last-of-type {
    border: none;
    padding-right: 0;
}

.header-content .extra-content .extra-icon .extra-icon-link {
    position:relative;
    height:30px;
    color: var(--blue);
    font-family: var(--font-medium);
    font-size:18px;
    text-decoration:none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:5px;
    line-height: 1;
    transition: var(--transition);
}

.header-content .extra-content .extra-icon.youtube .extra-icon-link {
    color: var(--red);
    margin-right: 10px;
}



/* Search icon menu */
.item-search {
    list-style-type: none;
}
.item-search .search-toggle {
    padding-top: 6px;
    list-style-type: none;
}
.item-search .search-toggle > svg path {
    transition: 0.2s;
}
.search-toggle:before,
.search-toggle:after {
  display: none;
}
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: .5s opacity,transform ease-in-out;
    will-change: opacity;
    backface-visibility: hidden;
    background: #fff;
    z-index: 5001;
    opacity: 0;
    pointer-events: none;
    overflow-x: hidden;
    overflow-y: auto;
}
.search-overlay.popped {
    opacity: 1;
    pointer-events: auto;
}
.search-header {
    position: absolute;
    padding: 10px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.search-close {
    position: relative;
    float: right;
    cursor: pointer;
    font-size: 0;
    padding: 10px;
}
.search-section {
    padding-top: 160px;
}
.search-section .container {
    max-width: 1200px;
}
.search-input {
    position: relative;
    font-size: 1.001em;
    line-height: normal;
    letter-spacing: .5px;
    padding: 20px;
    padding-right: 20px;
    padding-right: 60px;
    height: auto;
    margin-bottom: 0;
    border: none!important;
    background-color: #fff;
    box-sizing: border-box;
}
.search-input:before {
    content: '';
    position: absolute;
    border: 1px solid #cec6bb;
    transition: .25s;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    opacity: 0;
    pointer-events: none;
}
.popped .search-input:before {
    transition-delay: .2s;
    transition-duration: .5s;
    width: 100%;
    left: 0;
    opacity: 1;
}
.popped .search-input .search-icon,
.popped .search-input input {
    transition-duration: .5s;
    transition-delay: .8s;
    opacity: 1;
    transform: translateY(0);
}
.search-input .search-icon,
.search-input input {
    transition: .2s;
    opacity: 0;
    transform: translateY(-7px);
}
.search-input input {
    width: 100%;
    border: 0!important;
    outline: 0!important;
}
.search-input .search-icon {
    position: absolute;
    font-size: 0;
    right: 20px;
    top: calc(50% - 12px);
    cursor: pointer;
}
.search-input svg {
    transition: 1s;
}
.search-icon:after {
    display: block;
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    border-top: 1px solid #e31e24;
    border-left: 1px solid #f7a707;
    border-right: 1px solid #000;
    border-radius: 24px;
    top: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    animation: rotate 1s infinite;
}
.result-image {
    position: relative;
    width: 150px;
    flex-shrink: 0;
}
.result-image figure {
  padding-top: 70%;
  margin-bottom: 0;
}
.result-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-results h3 {
    display: flex;
    align-items: center;
    column-gap: 20px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
    line-height: 1.3em;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 0;
    margin: 0;
}
.search-results a {
    display: block;
    color: #000;
    font-size: 1em;
    padding: 20px 0;
    transition: color .2s;
}
.search-quicklinks,
.search-results {
    margin-top: 30px;
    margin-left: 20px;
    transition: .2s ease-in-out;
    transform: translateY(30px);
}
.search-quicklinks nav {
    margin-top: 20px;
}
.search-quicklinks ul {
    display: block;
}
.search-quicklinks ul li a {
    display: inline-block;
    font-weight: 500;
    color: #000;
    padding-left: 0;
    background: 0 0!important;
    min-width: 200px;
    max-width: 100%;
    transition: .3s;
    padding: 10px 0;
}
.popped .search-quicklinks {
    opacity: 1;
    transform: translateY(0);
    transition-duration: .5s;
    transition-delay: .3s;
}
.search-results {
    margin-top: 0;
}

.nav-item-log-in,
.nav-item-account {
  list-style-type: none;
}
.nav-item-log-in a,
.myaccount_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0000000f;
  border-radius: 3px;
  padding: 5px;
  width: 35px;
  height: 35px;
  border: none;
}

.myaccount_btn svg path:last-child {
  fill: #32bb88;
  stroke: #32bb88
}


/*---------------------------------------------------------------------------------------------------- Pagina Search Results ----------------------------------------------------------------------------------------------------*/

.search-results-wrapper {
    padding:calc(15px + var(--margin-top)) 0 50px;
}

.search-results-wrapper .search-bar-content {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--green);
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-results-wrapper .search-bar-content h1 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 10px;
    letter-spacing: 1px;
    font-family: var(--font-semibold);
    color: var(--black);
    font-size: calc(25px + (32 - 25) * ((100vw - 300px) / (1600 - 300)));
}

.search-results-wrapper .search-bar-content h1:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
    margin-top: 5px;
}

.search-results-wrapper .search-bar-content p {
    font-family: var(--font-light);
    color: var(--black);
    font-size: 20px;
    line-height: 1.2;
    margin:0;
    transition: var(--transition);
}

.search-results-wrapper .search-bar-content p span {
    font-family: var(--font-bold);
    color:var(--green);
}

.search-results-wrapper .results-content-wrapper .news-item-wrapper {
    padding:15px;
}

.search-results-wrapper .results-content-wrapper .news-item-wrapper .news-image {
    display: flex;
    flex-direction: column;
    height: 250px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.search-results-wrapper .results-content-wrapper .news-item-wrapper .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.search-results-wrapper .results-content-wrapper .news-item-wrapper .news-item .news-image span {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--black);
    text-transform: uppercase;
    transition: var(--transition);
}

.search-results-wrapper .results-content-wrapper .news-item-wrapper .news-item .news-title {
    padding: 10px 0 0;
    transition: var(--transition);
}

.search-results-wrapper .results-content-wrapper .news-item-wrapper .news-date {
    font-family: var(--font-light);
    display: block;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 5px;
}

.search-results-wrapper .results-content-wrapper .news-item-wrapper .news-item .news-title a {
    font-family: var(--font-medium);
    color: Var(--black);
    margin: 0;
    font-size: 16px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
}

.search-results-wrapper .results-content-wrapper .news-item-wrapper .news-description {
    display: none;
}

.search-results-wrapper .results-content-wrapper .message {
    font-family: var(--font-medium);
    color: var(--black);
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
    margin-left:15px;
}

.search-results-wrapper .extra-news-wrapper h2 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 10px;
    letter-spacing: 1px;
    font-family: var(--font-semibold);
    color: var(--black);
    font-size: calc(25px + (32 - 25) * ((100vw - 300px) / (1600 - 300)));
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--green);
}

.search-results-wrapper .extra-news-wrapper h2:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
    margin-top: 5px;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper {
    max-width: 100%;
    flex: auto;
    padding: 15px;
    height: 129px;
    border-bottom: 1px solid #42a50057;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper:last-of-type {
    margin-bottom: 15px;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-hour {
    max-width: 65px;
    margin-right: 20px;
    flex: auto;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-hour span {
    font-family: var(--font-semibold);
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-hour span:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
    margin-top: 2px;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-image {
    pointer-events: none;
    height: 20px;
    max-width: calc(100% - 65px);
    width: 100%;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-image img {
    display:none;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-image .category-badge {
    display: block;
    font-family: var(--font-medium);
    color: var(--blue);
    text-transform: uppercase;
    transition: var(--transition);
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-title {
    max-width: calc(100% - 65px);
    width: 100%;
    margin-bottom: .5rem;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-title .news-date {
    display:none;
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-title a {
    font-family: var(--font-medium);
    color: var(--black);
    font-size: 16px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
    margin-top: 5px;
    transition: var(--transition);
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-title a:hover {
    color:var(--green);
}

.search-results-wrapper .extra-news-wrapper .news-item-wrapper .news-description {
    display:none;
}

/*---------------------------------------------------------------------------------------------------- Footer ----------------------------------------------------------------------------------------------------*/

footer {
    background-color:var(--black);
    padding:50px 0;
}

.footer-logo {
  max-width: 150px;
}

.footer-menu-title p {
    font-size:20px;
    color:Var(--white);
    font-family: var(--font-semibold);
    margin:0 0 20px;
    padding:0 0 20px;
    position:relative;
    text-transform: uppercase;
    display: flex;
    gap:10px;
    align-items: center;
}

.footer-menu-title p:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--green);
    border: 5px solid var(--white);
    position: relative;
    margin-top: -3px;
}

.footer-menu-title p:after {
    content:'';
    position: absolute;
    bottom: 0;
    left:0;
    max-width:120px;
    width:100%;
    height: 1px;
    background-color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
}
.footer-content > ul {
  gap: 20px;
}
.footer-categories-menu ul {
  justify-content: space-between;
}
.footer-content .footer-menu .secondary-menu ul {
  display: flex;
  flex-direction: column;
}
.footer-content .secondary-menu > ul a,
.footer-content .secondary-menu .dropdown-menu .nav-item .nav-link {
    padding: 5px 0 !important;
}
.footer-content .secondary-menu .dropdown-menu .nav-item .nav-link {
  color: #ffffffb8;
  font-weight: 300;
}
.footer-content .secondary-menu .dropdown-menu .nav-item .nav-link:hover {
  color: #fff;
}
.footer-content .secondary-menu a {
    color: #fff;
    font-weight: 400;
}
.footer-content .dropdown-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 100%;
    top: 0;
    padding: 0;
    background: transparent;
}

.footer-menu ul li {
    width:100%;
}

.col-lg-5.footer-col .footer-menu ul li {
    /* max-width:30%; */
    width: 100%;
}

.footer-menu ul li .nav-link,
.footer-social ul li a {
    padding:0;
    /* height:40px; */
    display:flex;
    align-items: center;
    color:var(--white);
    text-decoration: none;
    font-family: var(--font-medium);
}

.footer-copyright {
    margin-top:50px;
}

.footer-copyright p {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-family: var(--font-light);
    margin:0;
}

.footer-copyright p a {
    color:Var(--green);
    text-decoration: none;
}

/*---------------------------------------------------------------------------------------------------- Login ----------------------------------------------------------------------------------------------------*/



.site-login-wrapper,
.site-reset-pwd-wrapper {
    margin: auto;
    height: calc(100vh - var(--margin-top));
    display: flex;
}

.site-login-content,
.site-reset-pwd-content {
    margin: auto;
    padding: 0;
    max-width: 350px;
    width: 100%;
}

.site-login-content .section-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid vaR(--green);
}

.site-login-content .section-title h1 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: var(--font-semibold);
    color: var(--black);
    font-size: calc(25px + (32 - 25) * ((100vw - 300px) / (1600 - 300)));
}

.site-login-content .section-title p {
    margin: 0;
    font-size: 18px;
    color: var(--black);
}

.form-control {
    background-color: rgb(242, 242, 242);
    border: none;
    font-size: 14px;
    font-weight: 300;
}

.help-block-error {
    color: #ce1d3f;
    font-size: 12px;
}

.form-group label {
    font-size: 13px;
}
.site-login-content .section-login-form form .form-group:not(.field-loginform-rememberme) label {
    color: var(--black);
    margin-bottom: 5px;
    font-weight: 400;
}

.site-login-content .section-login-form form .form-group:not(.field-loginform-rememberme) input {
    font-size: 18px;
}

.site-login-content .section-login-form form .form-group.field-loginform-rememberme label {
    color: var(--black);
    margin: 0;
}

.field-loginform-rememberme {
    margin-bottom: 0;
}

.auth-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    box-shadow: 0 1px 0 0 rgba(92,102,111,0.2);
}
.auth-header .buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 1px 0 0 rgba(92,102,111,0.2);
    margin-bottom: 15px;
}
.auth-header .buttons > * {
    padding: 5px 10px;
    margin-bottom: 0;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    box-shadow: 0 1px 0 0 #5c666f;
    width: 100%;
    text-align: center;
}
.auth-header .buttons a {
    color: rgba(76,76,76,.6);
    box-shadow: none;
}
.auth-header .message > * {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
}
.site-login-content .section-login-form form .login-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom:20px;
}
.site-login-content .section-login-form form .login-links a {
    color: #000;
    font-size: 13px;
    text-decoration: underline;
}

.site-login-content .section-login-form form .login-links p {
    margin: 0;
    font-size: 18px;
    color: var(--black);
}

.site-login-content .section-login-form form .login-links p a {
    color:vaR(--blue);
    text-decoration: none;
    transition: var(--transition);
}

.site-login-content .section-login-form form .login-links p a:hover {
    color:var(--green);
}

.site-login-content form .btn[type="submit"],
.site-reset-pwd-content .btn[type="submit"] {
  width: 100%;
  border-radius: 5px;
}
.site-reset-pwd-content .btn[type="submit"] {
  margin-top: 20px;
}

/*---------------------------------------------------------------------------------------------------- Signup ----------------------------------------------------------------------------------------------------*/

.site-signup-wrapper {
    margin: auto;
    margin-top: calc(var(--margin-top) + 100px);
    min-height: calc(100vh - var(--margin-top));
    display: flex;
    margin-bottom: 100px;
}

.site-signup-content {
    margin: auto;
    padding: 0;
    max-width: 500px;
    width: 100%;
}

.site-signup-content .section-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid vaR(--green);
}

.site-signup-content .section-title h1 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: var(--font-semibold);
    color: var(--black);
    font-size: calc(25px + (32 - 25) * ((100vw - 300px) / (1600 - 300)));
}


.site-signup-content .section-title p {
    margin: 0;
    font-size: 18px;
    color: var(--black);
}

.site-signup-content .section-signup-form form .form-group:not(.field-signupform-author):not(.field-signupform-acceptance) label {
    color: var(--black);
    margin-bottom: 5px;
    font-weight: 400;
}

.site-signup-content .section-signup-form form .form-group:not(.field-signupform-author):not(.field-signupform-acceptance) input {
    padding: 0 10px;
    /* height: 45px; */
    /* border: 1px solid rgb(10 10 10 / 25%); */
    /* border-radius: 0; */
    /* background-color: var(--white)!important; */
    /* outline: none!important; */
    /* box-shadow: none!important; */
    /* font-family: var(--font-light); */
    font-size: 18px;
}

.site-signup-content .section-signup-form form .form-group textarea {
    padding: 20px;
    /* border: 1px solid rgb(10 10 10 / 25%); */
    /* border-radius: 0; */
    /* font-family: var(--font-light); */
    color: var(--black);
    height: 150px;
    outline: none!important;
    box-shadow: none!important;
    font-size: 18px;
}
.site-signup-content .section-signup-form form .form-group textarea::placeholder {
  font-size: 15px;
}

.site-signup-content .section-signup-form form .form-group.field-signupform-author label,
.site-signup-content .section-signup-form form .form-group.field-signupform-acceptance label {
    color: var(--black);
    margin: 0;
}

.site-signup-content .section-signup-form .btn[type="submit"] {
    border-radius: 5px;
    width: 100%;
    margin-top: 20px;
}

/*---------------------------------------------------------------------------------------------------- Contul meu ----------------------------------------------------------------------------------------------------*/

/* ---------------- Navigatie ---------------- */

.section-my-account .myaccount-navigation .list-group-item {
    border: 1px solid rgb(10 10 10 / 25%);
}

.section-my-account .myaccount-navigation .list-group-item.active {
    background-color:var(--green);
    border:1px solid var(--green);
}

.section-my-account .myaccount-navigation .list-group-item a {
    color:var(--black);
    font-family:var(--font-medium);
    text-decoration:none;
    transition:var(--transition);
}

.section-my-account .myaccount-navigation .list-group-item.active a {
    color:var(--black)!important;
}

/* ---------------- Dashboard ---------------- */

.section-my-account {
    margin: auto;
    margin-top: calc(var(--margin-top) + 50px);
    min-height: calc(100vh - var(--margin-top));
    margin-bottom: 50px;
}

.section-my-account .myaccount .title  {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid vaR(--green);
}

.section-my-account .myaccount .title  h2 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 10px;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: var(--font-semibold);
    color: var(--black);
    font-size: calc(25px + (32 - 25) * ((100vw - 300px) / (1600 - 300)));
}

.section-my-account .myaccount .title h2:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
}

.section-my-account .myaccount .title  p {
    margin: 0;
    font-family: var(--font-light);
    font-size: 18px;
    color: var(--black);
}

.section-my-account .myaccount .account-info .account-info-content h5{
    font-family: var(--font-medium);
    text-transform: uppercase;
    color: var(--black);
    margin-bottom:10px;
}

.section-my-account .myaccount .account-info .account-info-content .card {
    border: 1px solid rgb(10 10 10 / 25%);
    border-radius: 0;
}

.section-my-account .myaccount .account-info .account-info-content .card .card-header {
    background-color: var(--black);
    border-radius: 0;
    color: var(--white);
    background-color: var(--black);
    border-radius: 0;
    font-family: var(--font-light);
}

.section-my-account .myaccount .account-info .account-info-content .card .card-body {
    color: var(--black);
    font-family: var(--font-light);
}

.section-my-account .myaccount .account-image .profile-image {
    width: 100%;
    aspect-ratio: 1/1;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--green);
}

.section-my-account .myaccount .account-image .profile-image img {
    display: block;
    position: absolute;
    height: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: auto;
}

/*---------------------------------------------------------------------------------------------------- Homepage ----------------------------------------------------------------------------------------------------*/

.section-1-homepage {
    /*min-height: 100vh;*/
    padding-top: 60px;
    justify-content: space-between;
}

.section-1-homepage .content .news-grid {
    display: grid;
    grid-template-columns: 35% 1fr;
    row-gap: 15px;
}

.section-1-homepage .news-item-wrapper {
    max-width: 100%;
}
.section-1-homepage .news-item {
    position: relative;
    display: flex;
    height: 100%;
}
.section-1-homepage .news-item-wrapper:not(:first-of-type) .news-item:hover .news-title a {
    text-decoration: underline;
}
.section-1-homepage .news-item .news-image-wrapper {
    width: 130px;
    flex-shrink: 0;
}
.section-1-homepage .news-item .news-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 70%;
    height: 100%;
}
.section-1-homepage .news-item .news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    object-position: top;
}
.section-1-homepage .news-item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
}
.section-1-homepage .news-item-info .category-badge {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-family: var(--font-title);
    font-weight: 500;
}
.section-1-homepage .news-item .news-title {
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
}
.section-1-homepage .news-item .news-title a {
    color: #000;
    margin: 0;
    font-size: 16px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
    font-family: var(--font-medium);
}
.section-1-homepage .news-item .news-description p {
    font-family: var(--font-light);
    font-size: 16px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-details {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.section-1-homepage .news-item .news-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}
.section-1-homepage .news-item .news-date,
.section-1-homepage .news-item .author,
.news-date,
.author {
    font-size: 12px;
    color: #0000008c;
    font-weight: 400;
}

.section-1-homepage .news-item-wrapper:first-of-type {
    grid-column: 2/3;
    grid-row: 1/5;
    padding-left: 0;
}
.section-1-homepage .news-item-wrapper:first-of-type .news-item:hover img {
    transform: scale(1.05);
}
.section-1-homepage .news-item-wrapper:first-of-type .news-image-wrapper {
    width: 100%;
}
.section-1-homepage .news-item-wrapper:first-of-type .news-image {
    padding-top: 0;
}
.section-1-homepage .news-item-wrapper:first-of-type .news-image:before {
    content: "";
    position: absolute;
    background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,1)),color-stop(80%,transparent));
    background-image: -o-linear-gradient(bottom,rgba(0,0,0,.9) 0,transparent 80%);
    bottom: 0;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
}

.section-1-homepage .news-item-wrapper:first-of-type .news-item-info {
    position: absolute;
    bottom: 0;
    padding: 20px;
    z-index: 2;
}
.section-1-homepage .news-item-wrapper:first-of-type .category-badge {
    color: #fff;
}
.section-1-homepage .news-item-wrapper:first-of-type .news-date,
.section-1-homepage .news-item-wrapper:first-of-type .author {
    /* color: #ffffff8c; */
    color: #cacaca;
}
.section-1-homepage .news-item-wrapper:first-of-type .news-item .news-title a {
    font-size: 35px;
    font-weight: 400;
    color: #fff;
}
.section-1-homepage .news-item-wrapper:first-of-type .news-item .news-description {
    display: block;
}


/* Section-2-homepage */
.section-program-list {
  display: none;
}

.section-2-homepage .content .news-grid .news-item-wrapper {
    max-width: 20%;
    flex: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.section-2-homepage .content .news-grid .news-description p {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    margin-top: 5px;
}

.section-2-homepage .content .news-grid .news-item-wrapper:last-of-type {
    border-right:none;
}

.news-grid {
  row-gap: 30px;
}
.news-item {
  border-radius: 5px;
  overflow: hidden;
  background-color: #f8f8f8;
  height: 100%;
}
.section-2-homepage .content .news-item {
    padding: 15px;
}
.section-2-homepage .content .news-item .news-content {
    padding: 0;
}
.section-2-homepage .content .news-item .news-details {
    display: none;
}

.section-2-homepage .content .news-image,
.section-2-homepage .content .news-date,
.section-2-homepage .content .author {
    display:none;
}

.section-2-homepage .content .news-title a {
    color:var(--black);
    font-size: 16px;
    font-weight: 400;
    display:block;
    text-decoration:none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
    min-height: 72px;
}

.section-2-homepage .content .news-title a:hover {
    color:var(--green);
}

.section-3-homepage {
    height:auto;
    background-size:cover;
    background-position: center;
    margin-bottom:50px;
    padding:50px 0;
    position:relative;
}

.section-3-homepage:after {
    content:'';
    position:absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #16222A;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #3A6073, #16222A);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #3A6073, #16222A); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    opacity:0.85;
    z-index: 1;
}

.section-3-homepage .content {
    z-index:2;
}

.banner-wide {
  height: 100%;
}
.banner-wide img {
  height: 100%;
  object-fit: cover;
}
.banner img {
  border-radius: 5px;
}
.section-3-homepage .module.module-image.banner-image  img {
    width: 100%;
}

.section-3-homepage .content h2 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    /* text-transform: uppercase; */
    gap: 10px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-3-homepage .content h2:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
    margin-top: -5px;
}

.section-3-homepage .news-item-wrapper {
    padding:15px;
}

.section-3-homepage .news-item-wrapper .news-image {
    position: relative;
    padding-top: 66%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
}

.section-3-homepage .news-item-wrapper .news-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: var(--transition);
}

.section-3-homepage .news-item-wrapper .news-item .news-image span {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    padding: 10px 15px;
    background-color: #fff;
    font-family: var(--font-title);
    font-size: 13px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}
.section-3-homepage .news-item-wrapper .news-item .news-image span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-bottom: 2px solid var(--green);
    border-left: 2px solid var(--green);
    transition: var(--transition);
}
.section-3-homepage .news-item-wrapper .news-item:hover .news-image img {
    transform: scale(1.05);
}

.section-3-homepage .news-item-wrapper .news-item .news-image:hover span:before {
  width: 100%;
  height: 100%;
}

.section-3-homepage .news-item-wrapper .news-item .news-content {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 15px;
  transition: var(--transition);
}

.section-3-homepage .news-item-wrapper .news-item .news-title .news-details {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  color: #0000008c;
  font-weight: 400;
  margin-top: 10px;
}

.section-3-homepage .news-item-wrapper .news-item .news-title a {
    color: #000;
    text-decoration: none;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
    font-weight: 400;
    min-height: 50px;
}

.section-3-homepage .news-item-wrapper .news-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 0;
}
.section-3-homepage .news-item-wrapper .news-description p {
    margin-bottom: 0;
}

.inline-homepage-section {
    height: auto;
    position: relative;
}

.inline-homepage-section .content {
    z-index:2;
}

.inline-homepage-section .content-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;
}

.inline-homepage-section .news-item-wrapper {
    padding:15px;
}

.inline-homepage-section .news-item-wrapper .news-image {
    display: flex;
    flex-direction: column;
    padding-top: 66%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.inline-homepage-section .news-item-wrapper .news-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: var(--transition);
}
.news-item .news-image img {
    transition: var(--transition);
}
.news-item:hover .news-image img {
    transform: scale(1.05);
}

.inline-homepage-section .news-item-wrapper .news-item .news-image span {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    padding: 10px 15px;
    background-color: var(--white);
    color: var(--black);
    text-transform: uppercase;
    transition: var(--transition);
}
.inline-homepage-section .news-item-wrapper .news-item .news-image span:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transition: var(--transition);
}
.inline-homepage-section .news-item-wrapper .news-item:hover .news-image span:before {
    width: 100%;
    height: 100%;
}

.inline-homepage-section .news-item-wrapper .news-item .news-title {
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.inline-homepage-section .news-item-wrapper .news-item .news-title .news-details {
  display: flex;
  margin-bottom: 5px;
  width: 100%;
  justify-content: space-between;
}

.inline-homepage-section .news-item-wrapper .news-date,
.inline-homepage-section .news-item-wrapper .author {
    font-size: 12px;
    margin-top: 5px;
    font-weight: 400;
    color: #828282;
    margin-top: 0;
    margin-bottom: 5px;
}

.inline-homepage-section .news-item-wrapper .news-item .news-title a {
    font-family: var(--font-medium);
    color: Var(--black);
    margin: 0;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
}

.inline-homepage-section .news-item-wrapper .news-description p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 0;
}

.inline-homepage-section .view-category-button,
.section-3-homepage .view-category-button {
    margin-top:20px;
    float: right;
}

.inline-homepage-section .view-category-button a,
.section-3-homepage .view-category-button a {
    padding:0;
    font-family: var(--font-semibold);
    text-transform: uppercase;
    color:var(--blue);
    display:flex;
    align-items:center;
    gap: 10px;
    transition: var(--transition);
}
.section-3-homepage .view-category-button a {
  color: #fff !important;
}

.inline-homepage-section .view-category-button a:after,
.section-3-homepage .view-category-button a:after {
    content:'\f054';
    position:relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color:var(--blue);
    text-decoration:none;
    font-size:16px;
    transition: var(--transition);
    line-height: 100%;
    padding-bottom: 2px;
}
.section-3-homepage .view-category-button a:after {
  color: #fff;
}

.inline-homepage-section .view-category-button a:hover,
.inline-homepage-section .view-category-button a:hover:after {
    color:var(--green);
}

/* -------------------------------------------------------------------- */

.two-category-homepage-section {
    height: auto;
    position: relative;
}

.two-category-homepage-section .banner-content {
    padding: 0;
    height: 250px;
    flex-direction: column;
}

.two-category-homepage-section .banner-content .module.module-image img {
    width:auto;
}

.two-category-homepage-section .banner-content .banner-text {
    max-width: calc(100% - 330px);
    flex: auto;
    height: calc(100% - 90px);
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.two-category-homepage-section .banner-content .banner-text p {
    font-family: var(--font-light);
    color: var(--black);
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
    transition: var(--transition);
}

.two-category-homepage-section .banner-content .banner-long {
    max-width: calc(100% - 330px);
    flex: auto;
    height: 90px;
    position: relative;
}

.two-category-homepage-section .banner-content .banner-square {
    max-width: calc(100% - 330px);
    flex: auto;
    height: 90px;
    position: relative;
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-item {
    display: flex;
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper:nth-child(-n+2) .news-item {
    display: block;
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-image {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 40%;
    padding-top: 30%;
    overflow: hidden;
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper:nth-child(-n+2) .news-image {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 66%;
    width: 100%;
    overflow: hidden;
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-item .news-image span {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
    transition: var(--transition);
}
.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-item .news-image span:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transition: var(--transition);
}
.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-item:hover .news-image span:before {
  width: 100%;
  height: 100%;
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-item .news-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper:nth-child(-n+2) .news-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-date {
    display: block;
    font-size: 12px;
    margin-top: 0;
    font-weight: 400;
    color: #828282;
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-item .news-title a {
    font-family: var(--font-medium);
    color: var(--black);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper:nth-child(-n+2) .news-item .news-title a {
    -webkit-line-clamp: 2;
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-item .news-title a:hover {
    color:var(--green);
}

.two-category-homepage-section .content-news-wrap .news-item-wrapper .news-description {
    display: none;
}

/* -------------------------------------------------------------------- */

.two-category-homepage-section .content-news-row .news-item-wrapper {
    max-width: 100%;
    flex: auto;
}

.two-category-homepage-section .content-news-row .news-item-wrapper:last-of-type {
    margin-bottom: 15px;
}

.content-news-row .news-grid {
    row-gap: 15px;
}
.two-category-homepage-section .content-news-row .news-item-wrapper .news-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    background-color: #00000007;
    border-radius: 5px;
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-hour {
    max-width: 65px;
    margin-right: 20px;
    flex: auto;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-hour span {
    font-family: var(--font-semibold);
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-hour span:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
    margin-top: -2px;
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-image {
    pointer-events: none;
    height: 20px;
    max-width: calc(100% - 65px);
    width: 100%;
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-image img {
    display:none;
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-image .category-badge {
    display: block;
    font-family: var(--font-medium);
    color: var(--blue);
    text-transform: uppercase;
    transition: var(--transition);
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-content {
  padding: 0;
}
.two-category-homepage-section .content-news-row .news-item-wrapper .news-title {
    width: 100%;
    margin-bottom: .5rem;
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-title .news-date {
    display:none;
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-title a {
    font-family: var(--font-medium);
    color: var(--black);
    font-size: 16px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
    margin-top: 5px;
    transition: var(--transition);
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-title a:hover {
    color:var(--green);
}

.two-category-homepage-section .content-news-row .news-item-wrapper .news-description {
    display:none;
}

.two-category-homepage-section .view-category-button {
    margin-top: 30px;
}

.two-category-homepage-section .view-category-button a {
    padding:0;
    font-family: var(--font-semibold);
    text-transform: uppercase;
    color:var(--blue);
    display:flex;
    align-items:center;
    gap:5px;
    transition: var(--transition);
}

.two-category-homepage-section .view-category-button a:after {
    content:'\f054';
    position:relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color:var(--blue);
    text-decoration:none;
    font-size:18px;
    transition: var(--transition);
}

.two-category-homepage-section .view-category-button a:hover,
.two-category-homepage-section .view-category-button a:hover:after {
    color:var(--green);
}

.section-parteneri {
    padding:0 0 50px;
}

.section-parteneri .content .slick-slide {
    aspect-ratio: 2/1;
    overflow: hidden;
    margin: 0 15px;
    padding: 10px 0;
}
.section-parteneri .content .slick-slide img {
  height: 100%;
  object-fit: contain;
}

/*---------------------------------------------------------------------------------------------------- View Stire ----------------------------------------------------------------------------------------------------*/

.news-post-section {
    margin-top:calc(var(--margin-top) + 20px);
}

.news-post-top-wrapper {
    height: calc(100vh - var(--margin-top) - 80px);
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid var(--green);
}

.news-post-top-wrapper .news-post-image {
    height: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.news-post-top-wrapper .news-post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.25s linear;
}

.news-post-top-wrapper .news-post-image .news-social-share {
    position: absolute;
    z-index: 10;
    right: 0;
    padding: 15px;
    background-color: var(--white);
    display: flex;
    flex-direction: row;
    gap: 15px;
    display: none;
}

.news-post-top-wrapper .news-post-image .news-social-share a {
    display: flex;
    justify-content: center;
    align-items: center;
    height:30px;
    width:30px;
    background-color:var(--green);
    color:var(--black);
    transition: var(--transition);
}

.news-post-top-wrapper .news-post-image .news-social-share a:hover {
    background-color:var(--black);
    color:var(--white);
}


.news-post-top-wrapper .news-post-image .news-post-category {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--black);
    text-transform: uppercase;
    z-index:10;
}

.news-post-category,
.category-badge {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  font-family: var(--font-title);
}

.news-post-top-wrapper .news-post-title {
    padding:20px 0;
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
}

.news-post-top-wrapper .news-post-title h1 {
    position: relative;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    font-family: var(--font-semibold);
    color: var(--black);
    font-size: calc(24px + (34 - 24) * ((100vw - 300px) / (1600 - 300)));
    width: 100%;
}

.news-post-top-wrapper .news-post-title h1:before {
    content: '';
    display: block;
    max-width: 20px;
    width: 100%;
    height: 20px;
    background-color: var(--white);
    border: 6px solid var(--green);
    position: relative;
    margin-top: 8px;
}

.news-post-top-wrapper .news-post-title .extra-info-title {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.news-post-top-wrapper .news-post-title .extra-info-title .author {
    white-space: nowrap;
    margin-top: 0;
}

.news-post-top-wrapper .news-post-title .extra-info-title span,
.news-post-section .latest-news-wrapper .news-item-wrapper .news-date {
    color: #828282;
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
}


.news-post-section .news-post-content-wrapper .news-post-content {
    padding:20px 0;
    color: var(--black);
    margin: 0;
    padding-right: 20px;
}
.news-post-section .news-post-content-wrapper .news-post-content h1,
.news-post-section .news-post-content-wrapper .news-post-content h2,
.news-post-section .news-post-content-wrapper .news-post-content h3 {
  font-size: 25px;
}
.news-post-section .news-post-content-wrapper .news-post-content img {
    width: 100%;
    height: auto;
}

.news-post-section .news-post-content-wrapper .news-post-tags-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-style: italic;
}

.news-post-section .news-post-content-wrapper .news-post-tags-wrapper h3 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-size: 14px;
}

.news-post-section .news-post-content-wrapper .news-post-tags-wrapper .news-post-tags {
    display:flex;
    flex-wrap: wrap;
    gap:10px;
}

.news-post-section .news-post-content-wrapper .news-post-tags-wrapper .news-post-tags a {
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    display: block;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.news-post-section .news-post-content-wrapper .news-post-tags-wrapper .news-post-tags a:hover {
    color:var(--green);
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper {
    padding-top: 20px;
    border-top: 2px solid var(--green);
    margin-top: 20px;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content h3 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    /* text-transform: uppercase; */
    gap: 10px;
    letter-spacing: 1px;
    font-family: var(--font-semibold);
    color: var(--black);
    font-size:22px;
    margin-bottom: 20px;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content h3:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content h3 span {
    font-family: var(--font-light);
    color: Var(--blue);
    font-size: 16px;
    font-style: italic;
    text-transform: none;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .add-comment {
    display:flex;
    flex-direction: row;
    gap:10px;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .add-comment .btn-adauga-comentariu-guest {
    color: var(--blue);
    font-family: var(--font-medium);
    font-weight: 700;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .add-comment .btn-adauga-comentariu-guest:hover {
    color:var(--green);
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .add-comment span {
    font-family: var(--font-light);
    color: Var(--black);
    font-size: 16px;
    font-style: italic;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content textarea {
    padding: 20px;
    border: 1px solid rgb(10 10 10 / 25%);
    border-radius: 0;
    font-family: var(--font-light);
    color: var(--black);
    height: 150px;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .lista-comentarii {
    margin-top:20px;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .comment-item {
    display:flex;
    flex-direction: row;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .comment-item .comment-author {
    min-width: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding-right: 10px;
    border-right: 1px solid var(--green);
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .comment-item .comment-author img {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    object-fit: cover;
    object-position: center;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .comment-item .comment-author .author {
    font-family: var(--font-light);
    font-size: 14px;
    color: var(--black);
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .comment-item .comment-content {
    padding-left:20px;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .comment-item .comment-content .comment-text {
    font-family: var(--font-medium);
    font-size: 16px;
    margin: 0 0 10px;
}

.news-post-section .news-post-content-wrapper .news-post-comment-wrapper .news-post-comment-content .comment-item .comment-content .comment-date {
    font-family: var(--font-light);
    color: Var(--black);
    font-size: 16px;
    font-style: italic;
}

.news-content {
    padding: 15px;
}
.news-post-section .latest-news-wrapper .latest-news-content {
    position: sticky;
    top: 100px;
    padding:20px 0 0 20px;
}

.news-post-section .latest-news-wrapper .news-item-wrapper {
    padding: 0 15px;
}

.news-post-section .latest-news-wrapper .news-item-wrapper:last-of-type {
    padding-bottom:0;
}
.news-post-section .news-grid {
    row-gap: 10px;
}
.news-post-section .latest-news-wrapper .news-item-wrapper .news-item {
    /* padding: 20px 0; */
    /* border-bottom: 1px solid #42a50057; */
    display: flex;
    gap: 20px;
}


.news-gallery-wrapper h3 {
    font-family: var(--font-semibold);
    font-size: 22px;
}
.news-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}
.news-gallery figure {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 0;
}
.news-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-post-section .latest-news-wrapper .news-item-wrapper .news-image {
    display: flex;
    flex-direction: column;
    /* height: 98px; */
    position: relative;
    overflow: hidden;
    width: 40%;
    height: 120px;
}

.news-post-section .latest-news-wrapper .news-item-wrapper .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.news-post-section .latest-news-wrapper .news-item-wrapper .news-item .news-image span {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    padding: 10px 20px;
    font-size: 10px;
    background-color: var(--white);
    color: var(--black);
    text-transform: uppercase;
    transition: var(--transition);
}
.news-post-section .latest-news-wrapper .news-item-wrapper .news-item .news-image span:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border-bottom: 2px solid var(--green);
    border-left: 2px solid var(--green);
    transition: var(--transition);
}

.news-post-section .latest-news-wrapper .news-item-wrapper .news-item .news-content {
    padding: 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}


.news-post-section .latest-news-wrapper .news-item-wrapper .news-date {
    margin: 0;
}

.news-post-section .latest-news-wrapper .news-item-wrapper .news-item .news-title a {
    font-family: var(--font-medium);
    color: var(--black);
    font-size: 14px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* line-height: 1.2; */
    transition: var(--transition);
}

.news-post-section .latest-news-wrapper .news-item-wrapper .news-item .news-title a:hover {
    color:var(--green);
}

.news-post-section .latest-news-wrapper .news-item-wrapper .news-description {
    display: none;
}

/*---------------------------------------------------------------------------------------------------- Cookie Notice ----------------------------------------------------------------------------------------------------*/

.cookie_notice_container a {
    color: var(--green);
}

.cookie_notice_container a:hover {
    color: var(--blue);
}

#cookie_notice {
    background-color: var(--black);
    font-family: var(--font-medium);
    padding: 40px;
    left: 0;
    right: 0;
    margin: auto;
    letter-spacing: 1px;
    font-size: 18px;
}

#cookie_notice .cookie_notice_container button {
    background-color: var(--green);
    border: none;
    border-radius: 0;
    color: var(--black);
    padding: 5px 30px;
    font-family: var(--font-medium);
    letter-spacing: 1px;
    font-size: 14px;
}

/*---------------------------------------------------------------------------------------------------- Despre noi ----------------------------------------------------------------------------------------------------*/

.section-about {
    margin-top:calc(15px + var(--margin-top));
    /*display: grid;*/
    /*grid-template: 1fr / 1fr 1fr;*/
    row-gap: 50px;
    padding-bottom:50px;
}

.section-about .image-content {
    display:flex;
    align-items: center;
}

.section-about .full-width-row {
    grid-column: span 2;
}

.section-about .grid-row {
    position:relative;
    display: grid;
    grid-template: 1fr / 1fr 1fr;
    grid-gap:50px;
    padding: 50px 0;
}

.section-about .grid-row:before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    background-color: var(--black);
    width: 200%;
    height: 100%;
    z-index: -1;
}

.section-about .text-content {
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.section-about .text-content h1,
.section-about .text-content h2,
.section-about .text-content h3,
.section-about .full-width-row h2,
.section-about .full-width-row h3 {
    font-family: var(--font-semibold);
    color: var(--black);
    font-size: calc(25px + (32 - 25) * ((100vw - 300px) / (1600 - 300)));
    text-transform: uppercase;
    /* margin: 0; */
}

.section-about .text-content .module-text p,
.section-about .full-width-row p {
    margin: 0;
    transition: var(--transition);
}

.section-about .grid-row .text-content > * {
    color:var(--white);
}

.section-about .grid-row .text-content a {
    color:var(--green);
    text-decoration:none;
}

.section-about .grid-row .video-content iframe {
    width: 100%;
    aspect-ratio: 1/0.56;
}

.section-about .text-content .subscribe-button p a {
    display: block;
    color: var(--black);
    text-transform: uppercase;
    background-color: Var(--green);
    padding: 20px 40px;
    font-family: var(--font-semibold);
    width: fit-content;
    text-decoration: none;
}
.subscribe-button a {
    display: block;
    color: var(--black);
    text-transform: uppercase;
    background-color: Var(--green);
    padding: 20px 40px;
    font-family: var(--font-semibold);
    width: fit-content;
    text-decoration: none;
}
.about-video iframe {
    min-height: 400px;
    width: 100%;
}
.padding {
    padding-left: 10vw;
    padding-right: 10vw;
}
.team {
    margin-bottom: 3rem;
}
.team:not(.reverse) .col-lg-6:nth-child(2),
.team.reverse .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.display-none {
    display: none;
}

/*---------------------------------------------------------------------------------------------------- Lista programe ----------------------------------------------------------------------------------------------------*/

.guest-program-list {
    display: grid;
    grid-template:1fr / 1fr;
    border: 1px solid #5555553d;
}

.guest-program-list .program-item {
    display: grid;
    grid-template: 1fr /150px 1fr 1fr 50px;
    padding:10px 0;
    border-top:1px solid var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.guest-program-list .program-item:first-of-type {
    border-top:none;
}

.guest-program-list .program-item .program-item-data {
    padding: 0 20px;
    border-right: 1px solid #5555553d;
    transition: var(--transition);
}

.guest-program-list .program-item .program-item-data.program-info {
    border-right:0;
}

.guest-program-list .program-item p {
    font-family: var(--font-bold);
    color:Var(--black);
    margin:0;
    text-transform: uppercase;
    font-size:16px;
    transition: var(--transition);
}

.guest-program-list .program-item .program-date p {
    font-family: var(--font-semibold);
}

.guest-program-list .program-item span {
    font-family: var(--font-light);
    color:Var(--black);
    margin:0;
    font-size:16px;
    transition: var(--transition);
}

.guest-program-list .program-guest span,
.guest-program-list .program-guest p {
    color:var(--blue);
}

.guest-program-list .program-item:hover {
    background-color:var(--light-gray);
}

.guest-program-list .program-item:hover p,
.guest-program-list .program-item:hover span {
    color:var(--blue);
}

.guest-program-list .program-item svg {
    transition: var(--transition);
}

.guest-program-list .program-item:hover svg {
    stroke:var(--blue);
}

/*---------------------------------------------------------------------------------------------------- Pagina lista programe ----------------------------------------------------------------------------------------------------*/

.section-program-wrapper {
    padding:calc(15px + var(--margin-top)) 0 50px;
}

.section-program-wrapper .title {
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid var(--green);
}

.section-program-wrapper .title h1 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 10px;
    letter-spacing: 1px;
    font-family: var(--font-semibold);
    color: var(--black);
    font-size: calc(25px + (32 - 25) * ((100vw - 300px) / (1600 - 300)));
}

.section-program-wrapper .title h1:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
    margin-top: 5px;
}

.section-program-wrapper .title p {
    font-family: var(--font-light);
    color: var(--black);
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    transition: var(--transition);
}

/*---------------------------------------------------------------------------------------------------- Categorie tag-uri stiri / Categorii stiri ----------------------------------------------------------------------------------------------------*/

.dynamic-category-wrapper {
    padding:calc(15px + var(--margin-top)) 0 35px;
}

.dynamic-category-wrapper h1 {
    font-family: var(--font-semibold);
    font-size: calc(25px + (34 - 25) * ((100vw - 300px) / (1600 - 300)));
    letter-spacing: 1px;
    color: var(--black);
    margin:0;
}

.dynamic-category-wrapper h1.dynamic-category-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.dynamic-category-wrapper h1.dynamic-category-title:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
    margin-top: -5px;
}

.dynamic-category-wrapper h1 span {
    color:var(--green);
}

.dynamic-category-wrapper .info-category-message {
    font-family: var(--font-medium);
    color: Var(--black);
    margin: 0 0 20px;
    font-size: 16px;
    border-bottom: 1px solid var(--green);
    padding-bottom: 20px;
}

.dynamic-category-wrapper .news-item-wrapper .news-image {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 65%;
}

.dynamic-category-wrapper .news-item-wrapper .news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dynamic-category-wrapper .news-item-wrapper .news-item .news-image span {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    padding: 10px 15px;
    background-color: var(--white);
    color: var(--black);
    text-transform: uppercase;
    transition: var(--transition);
}

.dynamic-category-wrapper .news-item-wrapper .news-item .news-title {
    transition: var(--transition);
}

.dynamic-category-wrapper .news-item-wrapper .news-item .news-title a {
    color: #000;
    font-weight: 400;
    margin: 0;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 39px;
}

.dynamic-category-wrapper .news-item-wrapper .news-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    margin-top: 5px;
}
.dynamic-category-wrapper .news-item-wrapper .news-description p {
  margin-bottom: 0;
}

/*---------------------------------------------------------------------------------------------------- 404 Error ----------------------------------------------------------------------------------------------------*/

.site-error-wrapper {
    padding: calc(15px + var(--margin-top)) 0 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-error-wrapper .site-error-content {
    padding: 20px;
    border: 1px solid var(--green);
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-error-wrapper .site-error-content h1 {
    margin: 0 0 20px;
    font-size: calc(64px + (135 - 64) * ((100vw - 300px) / (1600 - 300)));
    font-family: var(--font-bold);
    color: Var(--black);
    line-height: .55;
    display: flex;
    align-items: baseline;
}

.site-error-wrapper .site-error-content p {
    margin: 0;
    font-family: var(--font-light);
    font-size: 20px;
    color: var(--black);
}

.site-error-wrapper .site-error-content p span {
    color:var(--green);
    font-family: var(--font-bold);
}

.site-error-wrapper .site-error-content .btn-group {
    margin-top:20px;
    gap:20px;
}

/*---------------------------------------------------------------------------------------------------- Pagini Utile ----------------------------------------------------------------------------------------------------*/

.section-utile {
    margin-top:calc(15px + var(--margin-top));
    padding-bottom:50px;
}

.section-utile h1 {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    /* text-transform: uppercase; */
    gap: 10px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: var(--font-semibold);
    color: var(--black);
    font-size: calc(25px + (32 - 25) * ((100vw - 300px) / (1600 - 300)));
}

.section-utile h1:before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    border: 5px solid var(--green);
    position: relative;
    /* margin-top: 5px; */
}

.section-utile h3 {
    font-family:var(--font-semibold);
    font-size:18px;
}


.section-utile a {
    text-decoration: none;
    color:var(--green);
    font-family: var(--font-semibold);
}

.pagination {
  column-gap: 10px;
  margin-top: 30px;
}
.pagination .disabled {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
}
.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    width: 40px;
    height: 40px;
    color: #000;
    text-decoration: none;
    transition: var(--transition);
}
.pagination li a:hover {
  background-color: #000;
  color: #fff;
}
.pagination li.active a {
  background-color: #000;
  color: #fff;
}

.lb-data .lb-caption {
  display: none !important;
}


/* Contact Page */
.contact_form_module .container {
    width: 100% !important
}


.menu-social-wrapper {
    display: none;
}

@media(max-width: 650px) {
    .contact_page_title h1 {
        font-size: 25px;
    }
    
    .social-wrapper {
        display: none;
    }
    
    #main-navbar-collapse.show {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .menu-social-wrapper {
        padding: 0 20px 10px;
        display: flex;
    }
    .menu-social-wrapper ul {
        display: flex;
        gap: 15px;
    }
}