.display-none {
  display: none;
}

/* Global */
:root {
  --white: #ffffff;
  --black: #161619;
  /* --green:#1D4935; */
  --green: #9ccd4b;
  --yellow: #1d79af;
  --blue: #1d79af;
  --gray: #bbbbbb;
  --light-gray: #d6d6d6;
  --type-gray: #767689;
}

@font-face {
  font-family: "Roboto Thin";
  src: url("/fonts/Roboto-thin.ttf");
  font-display: swap;

}

@font-face {
  font-family: "Roboto Light";
  src: url("/fonts/Roboto-Light.ttf");
 font-display: swap;

    
}

@font-face {
  font-family: "Roboto Regular";
  src: url("/fonts/Roboto-Regular.ttf");
font-display: swap;

    
}

@font-face {
  font-family: "Roboto Medium";
  src: url("/fonts/Roboto-Medium.ttf");
font-display: swap;

    
}

@font-face {
  font-family: "Roboto Bold";
  src: url("/fonts/Roboto-Bold.ttf");
font-display: swap;

    
}

body {
  font-family: "Roboto Light";
}

.py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

a {
  color: var(--white);
  font-size: 16px;
  font-family: "Roboto Regular";
  text-transform: uppercase;
}

.categ-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 50px;
  line-height: 1.6;
}

a:hover {
  color: var(--yellow);
  transition: all 0.25 linear;
  text-decoration: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

h1 {
  font-family: "Roboto Medium";
  font-size: 24px;
}

h3,
h4 {
  color: var(--black);
  font-size: 18px;
  font-family: "Roboto Medium";
}

p,
label {
  font-size: 16px;
  font-family: "Roboto Light";
  color: var(--black);
}

img {
  height: auto;
}
.news_title {
  color: #161619;
}

.btn-primary {
  background: black;
  border-radius: 0;
  font-family: "Roboto Medium";
  padding: 0.5rem 4rem;
  font-size: 14px;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--green);
  transition: all 0.25s linear;
  border-color: transparent;
  box-shadow: none;
}

.title-bg {
  margin-bottom: 1rem;
}

.title-bg h2 {
  font-size: 24px;
  font-family: "Robot Bold";
  color: var(--black);
}
.help-block {
  margin-top: 10px;
  font-size: 14px;
  color: var(--green);
}

.fa {
  color: var(--type-gray);
}

/* ===== Scrollbar  ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: var(--black) #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border: 3px solid #ffffff;
}
/* gallery news content */
.product-gallery-2 {
  transition: 0.1s;
  transform: none !important;
}
.product-gallery-2 .row {
  gap: 5px;
}

input[type="checkbox"],
input[type="radio"] {
  width: 20px;
  height: 20px;
  position: relative;
  top: 3px;
}
/*end gallery new content*/

@media (min-width: 1440px) {
  .container {
    max-width: 1300px !important;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 90vw !important;
  }
}

.categ-title {
  padding: 30px 10px 10px 10px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  height: 85px;
  background-color: rgba(29, 73, 53, 0.9);
}

.categ-image-wrapper {
  overflow: hidden;
}

.post-date {
  position: absolute;
  bottom: 50px;
  color: var(--light-gray);
  z-index: 100;
  left: 10px;
}

.post-date h4 {
  font-size: 14px;
  font-family: "Roboto-Light";
  color: var(--yellow);
}

.pagination {
  justify-content: space-between;
  width: fit-content;
  margin-left: -1.2rem;
}

.pagination a {
  color: var(--black);
  margin: 0 5px;
  padding: 7px 15px;
  border: 1px solid var(--black);
}

.pagination li.active a {
  background-color: var(--black);
  color: var(--white);
}

.pagination .prev,
.pagination .next {
  display: none;
}
/* ---------------------------------------Header---------------------------------------------------------- */
.header-scroll {
  position: fixed;
  width: 100%;
  z-index: 101;
  background: black;
  top: 0;
  transition: all 0.25s linear;
}

header a {
  color: var(--white);
  font-size: 14px;
  font-family: "Roboto Medium";
}

.header-bottom {
  margin-bottom: 1.5rem;
  transition: all 0.25s linear;
}

header .top {
  display: flex;
  justify-content: space-around;
  height: 40px;
  position: relative;
}

header .top::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: var(--gray);
  opacity: 0.5;
  bottom: -3px;
  left: 0;
  z-index: 1;
}

header .main-nav-item {
  z-index: 10;
}

header .main-nav-item:focus-visible,
header .main-nav-item a:focus-visible {
  outline: none;
}

header .dropdown-menu {
  background-color: var(--green);
}

.top .social {
  display: flex;
  align-items: center;
}

.top .social .social-media-items a {
  color: var(--green);
  font-size: 18px;
  text-decoration: none;
}

.top .social .nav-item-log-in a {
  color: var(--green);
}

.top .social a:hover {
  color: var(--yellow);
}

.top .container {
  display: flex;
  justify-content: space-between;
}
.top .user {
  list-style: none;
  margin: auto;
  padding: 0;
}

.top .user .nav-item {
  margin-left: 20px;
}

.top .social ul .nav-item a:hover::before {
  color: var(--yellow);
}

.top .user .nav-item a::before {
  content: "\f007";
  font-family: "FontAwesome";
  color: var(--green);
  font-size: 20px;
}

.top .user a {
  display: flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
}

.top .time {
  font-family: "Roboto Light";
  display: flex;
  align-items: center;
}

.top .social-media-items {
  gap: 10px;
}

.logo-row .navbar-light {
  background-color: transparent !important;
  height: 130px;
}
/* .logo-row .logo {
    max-height: 60px;
    width: 80px;
    height: auto;
  } */
.logo-row .logo {
  /* max-height: 60px; */
  width: 130px;
  height: auto;
  object-fit: cover;
}
.brand-name {
  font-size: 25px;
  color: #fff;
  display: flex;
  font-family: "Roboto Medium";
}

#main-navbar {
  background-color: var(--black);
  height: 60px;
}
#main-navbar .container {
  flex-wrap: nowrap;
}

/* Logo mobile */
.container_logo_mobile {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  width: 180px;
}
.container_logo_mobile .brand-name {
  color: #fff;
  font-size: 16px;
}
.container_logo_mobile .logo {
  max-height: 40px;
}

#main-navbar-collapse .nav-item .nav-link {
  position: relative;
}

#main-navbar-collapse .nav-item-level-1.active .nav-link::before,
#main-navbar-collapse
  .navbar-nav:first-of-type
  .nav-item:first-of-type
  .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: -15px;
  width: 100%;
  height: 182%;
  background-color: var(--green);
  z-index: -1;
}

#main-navbar-collapse .nav-item-level-1.active .dropdown-toggle::after,
.despre-noi-2
  #main-navbar-collapse
  .nav-item-level-1:nth-child(1)
  .nav-link::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  margin: auto;
  top: 27px;
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 53%;
  opacity: 0.5;
  border: none;
}

#main-navbar-collapse .nav-item-level-2.active a {
  color: var(--yellow);
}

#main-navbar-collapse .nav-item-dropdown.active .dropdown-toggle::before,
#main-navbar-collapse .nav-item-dropdown.active .dropdown-toggle::after,
#main-navbar-collapse .nav-item-level-2.active .nav-link::after,
#main-navbar-collapse .nav-item-level-2.active .nav-link::before {
  content: none !important;
}

#main-navbar-collapse .dropdown-menu .nav-item .nav-link::before {
  content: none !important;
}

#submenu-24 {
  background-color: var(--green);
  border-radius: 0;
}

.nav-item-dropdown .dropdown-toggle {
  color: transparent;
  position: relative;
}

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown::before {
  content: "\f078";
  font-family: "FontAwesome";
  position: absolute;
  color: var(--white);
  right: 0px;
  left: 12px;
  top: 3px;
  bottom: 0;
  margin: auto;
  z-index: 1;
  font-size: 18px;
}

.navbar-nav {
  gap: 30px;
  margin-left: 0 !important;
}

#main-navbar-collapse {
  justify-content: space-between;
}

#main-navbar .search-wrapper {
  position: unset;
  width: 200px;
  background: transparent;
  position: relative;
  box-shadow: none;
}

#main-navbar .search-wrapper::after {
  content: "\f002";
  font-family: "FontAwesome";
  position: absolute;
  color: var(--black);
  font-size: 24px;
  right: 17px;
  top: 17px;
}

.toggle-menu {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.toggle-menu:focus {
    outline: none;
}
.navbar-toggler{
background-color: #ffffff;
    border: 1px solid #fff9f9;
}

#search::placeholder {
    color: #fff; 
    opacity: 1;  
}
.search-wrapper #search,
.search-wrapper #search:focus {
  border: none;
  background: white;
  margin: 0;
  width: 100%;
  font-family: "Roboto Light";
}
.search-wrapper #search::placeholder {
    color: #000;
    opacity: 1;
}

.search-wrapper #search::-webkit-input-placeholder {
    color: #000;
}

.search-wrapper #search::-moz-placeholder {
    color: #000;
    opacity: 1;
}

.search-wrapper #search:-ms-input-placeholder {
    color: #000;
}
.search-wrapper .search-results ul li.message {
  text-align: center;
  font-size: 12px;
  color: #000;
}
.search-loading.loader {
  position: absolute;
  right: 15px;
  top: 9px;
}

/* ---------------------------------------------------Section 1------------------------------------------------------------- */
.section-1 {
  padding: 0 15px;
}

.section-1 a {
  font-size: 18px;
}

.left-side .categories-item-wrapper {
  flex: 0 0 100%;
  max-width: 100%;
  height: calc(59vh + 0.6rem);
  overflow: hidden;
  padding-left: 0;
}

.left-side img {
  height: 100%;
}

.section-1-home .right-side {
  max-width: 48%;
}

.section-1-home .news_description {
  display: none;
}

.right-side img {
  height: 29.55vh;
}

.right-side .categories-grid {
  gap: 8px;
  justify-content: space-between;
}

.right-side .categories-item-wrapper {
  flex: 0 0 49%;
  max-width: 49%;
  padding: 0;
}

/* ---------------------------------------------------------Section 2 ------------------------------------------------------------- */
.news-info_description {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-info_description a {
  color: var(--yellow);
}

.section-2 .categories-grid {
  flex-direction: column;
  gap: 10px;
}

.news_description h2 {
  font-size: 18px;
  font-weight: 600;
}

.section-2 .category-item,
.section-2 .category-item-inner {
  max-height: 290px;
}

.section-2 .product-gallery-other-images {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.section-2 a.change-main-image-src {
  display: block;
  border: 1px solid #e2e2e2;
}

.section-2 .col-md-6 {
  flex: 0 0 43%;
}

.section-2 .author_news i {
  font-family: Roboto Regular;
  font-style: normal;
}

.news-info_details,
.container_categories {
  display: flex;
  gap: 15px;
  align-items: center;
}
.container_categories {
  max-width: 600px;
  width: 100%;
  overflow: auto;
  flex-wrap: nowrap;
}
.container_categories::-webkit-scrollbar {
  width: 0;
}

.viwes i,
.comments i,
.viwes,
.comments {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.comments {
  display: none !important;
}

.type {
  /* background-color: var(--green); */
  background-color: var(--blue);
  color: var(--white);
  padding: 4px 25px;
  font-family: Roboto Light;
}

.info_news {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-2 .right-side {
  flex: 0 0 55%;
}

.page-loaded .category-item-inner,
.page-loaded .gallery-content {
  display: flex;
}

/* ---------------------------------------------------------Pagina stire---------------------------------------------------------- */

.type-stire .col-md-3 .gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.type-stire .col-md-3 figure {
  overflow: hidden;
}
.type-stire .col-md-3 figure img {
  height: 100%;
}

.product-gallery-2 {
  display: flex;
}

.product-gallery-2 img {
  width: 100%;
}

.product-gallery-2 .row {
  flex-wrap: nowrap;
}

.product-gallery-2 .product-gallery-other-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stire-content .col-md-8,
.stire-content .col-lg-12,
.stire-content .col-md-4 {
  padding: 0;
}

.product-gallery-2 .col-8 {
  max-width: 60%;
}

.product-gallery-2 .col-4 .product-gallery-other-images {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 10px;
  max-height: 510px;
  overflow-y: auto;
}

.stire-content .product-gallery-2 .col-8 img {
  width: 100%;
}

.stire-content .form-group textarea {
  border-radius: 0;
  min-height: 20vh;
}

.title-area {
  display: flex;
  flex: 0 0 84%;
  flex-direction: column;
}
.title-area::after {
  content: "";
  height: 4px;
  width: 100px;
  background-color: var(--green);
  margin-bottom: 1.5rem;
}

/* ---------------------------------------------------- Login -------------------------------------------- */
.site-login a,
.site-signup a {
  color: var(--green);
  font-size: 16px;
}

.site-login a:hover {
  color: var(--black);
}

/* --------------------------------------------- Members ------------------------------------------------ */
.member-bg .fickle-image {
  order: -1;
  border: 2px solid var(--green);
  height: 220px;
  overflow: hidden;
}

/* featured news */
#featured_posts_hp_row {
  height: 60vh;
  overflow: hidden;
}
#featured_posts_hp_row .col-lg-12,
#featured_posts_hp_row .categories-grid,
#featured_posts_hp_row .categories-grid .news-item,
#featured_posts_hp_row .categories-grid .news-item_inner,
#featured_posts_hp_row .categories-grid .news-item_inner .news_image {
  height: 100%;
  overflow: hidden;
}

.news-item:hover img {
  transform: scale(1.1);
  transition: all 0.45s linear;
}

#featured_posts_hp_row .categories-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 50% 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

#featured_posts_hp_row .news-item:first-child {
  grid-column: 1/2;
  grid-row: 1/3;
}

#featured_posts_hp_row .news-item {
  position: relative;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

#featured_posts_hp_row .news-item_inner {
  display: flex;
  align-items: flex-end;
}

#featured_posts_hp_row .news_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#featured_posts_hp_row .news_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s linear;
}

.section-1-home .news-info_title a {
  font-size: 13px !important;
  max-height: 25px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#featured_posts_hp_row .news-info {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  width: 100%;
  padding: 15px 20px;
  background: #f7f7f7;
  opacity: 0.9;
  z-index: 9;
}
#featured_posts_hp_row .news-info div:not(.featured_info),
#featured_posts_hp_row .news-info .news_date {
  display: none;
}

#featured_posts_hp_row .news-info .news-info_title h3 {
  margin-bottom: 0;
}

/* bulk news */
@media (min-width: 800px) {
  .bulk-news-hp-row .categories-grid {
    margin-left: 0;
  }
}

.bulk-news-hp-row .news-item {
  width: 100%;
  margin-bottom: 20px;
  height: 30vh;
  min-height: 250px;
}
.bulk-news-hp-row .news-item_inner {
  display: grid;
  grid-template-columns: 40% 1fr;
  height: 100%;
  gap: 10px;
  align-items: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}
.bulk-news-hp-row .news-item .news_image {
  width: 100%;
  background: #f7f7f7;
  overflow: hidden;
  height: 100%;
}

.bulk-news-hp-row .news-item .news_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s linear;
}

.bulk-news-hp-row .news-item .news-info {
  overflow: hidden;
  padding-right: 2rem;
}

.news_title {
  font-family: "Roboto Medium";
}

.bulk-news-hp-row .news-info .news_date.featured_info {
  display: none;
}

.bulk-news-hp-row .news-info {
  margin-left: 1rem;
}

.news_description h1 a {
  font-size: 24px;
  font-family: "Roboto Light";
  font-weight: 100;
}
/* ---------------------------------Contact------------------------------------------- */

.news_description a {
  color: var(--yellow);
}

.news_description img {
  width: 100%;
  margin: 1rem 0;
  object-fit: contain;
}
#player-video-single-youtube {
  position: relative;
}

#player-video-single-youtube iframe {
  width: 100%;
  height: 100%;
}

.product-gallery-main-image img {
  height: 500px;
  /* object-fit: contain; */
  object-fit: cover;
}

.product-gallery-other-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 155px;
}

/* .product-gallery-main-image {
    background: #000000;    
} */

/* Search bar */
.search-wrapper .search-results {
  width: 700px;
  position: absolute;
  top: 65px;
  padding: 10px;
  display: block;
  background-color: var(--green);
  left: -469px;
}
.search-results a:hover {
  color: #fff;
}
@media (max-width: 700px) {
  .search-results {
    position: fixed !important;
    /* top: 125px !important; */
    width: 100% !important;
  }
}

.search-wrapper .search-results ul {
  max-height: 50vh;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

#featured_posts_hp_row .col-lg-12,
#featured_posts_hp_row .categories-grid {
  overflow: visible;
}

.section-1-home .slick-prev:before,
.section-1-home .slick-next:before {
  content: "/f054";
  font-family: "FontAwesome";
  color: var(--gray);
  font-size: 20px;
}

/* Pages */
.title_page {
  margin-top: 15px;
  margin-bottom: 20px;
}
.title_page h1 {
  max-width: fit-content;
  position: relative;
}
.title_page h1::before {
  content: "";
  position: absolute;
  background: var(--green);
  height: 2px;
  width: 30%;
  bottom: -3px;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .navbar-nav {
    gap: 5px !important;
  }
}

@media (max-width: 360px) {
  .navbar-brand {
    margin-left: 1rem;
    padding: 0;
    max-width: 100px !important;
  }
  #main-navbar .search-wrapper {
    width: 120px !important;
    max-width: 120px !important;
  }
}

/* GDPR pages */
.gdpr_page h2 {
  font-size: 20px;
  font-weight: 600;
}

/* News refferences */
.source_title {
  font-size: 17px;
  font-family: "Roboto Regular";
  position: relative;
  width: fit-content;
}
.source_title::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 40%;
  background: var(--green);
  bottom: -4px;
}
.photo_source a {
  color: var(--green);
  text-decoration: underline;
  text-transform: initial;
}

/* Banner */
.banner {
  overflow: hidden;
  height: fit-content;
  padding: 0;
}
.banner a {
  display: flex;
  height: 250px;
  margin-bottom: 30px;
  margin-top: 30px;
  padding: 0;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Related news */
.articole_asemanatoare .categories-grid {
  display: grid;
  grid-template: auto / repeat(2, calc(50% - 10px));
  gap: 20px;
}

.articole_asemanatoare .categories-grid .news_image {
  margin-bottom: 15px;
}
.articole_asemanatoare .categories-grid img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

@media(max-width: 991px) {
  .articole_asemanatoare .categories-grid img {
    height: 300px;
  }
}
@media(max-width: 768px) {
  .articole_asemanatoare .categories-grid {
    display: grid;
    grid-template: auto / 100%;
    gap: 20px;
  }
}

.container_categories span {
	white-space: nowrap !important;
}

.articole_asemanatoare .categories-grid .news-item:hover img {
  transform: unset !important;
}
.articole_asemanatoare .categories-grid .news-item {
	border: 1px solid #0005;
	padding: 15px;
}
.articole_asemanatoare .categories-grid .news-item_inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
.articole_asemanatoare .categories-grid .news-info {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
