/* ------------------------------------------------------------ ROOT ------------------------------------------------------------ */

:root {
    --white: #ffffff;
    --black: #000000;
    --gray:#bdbdbd;
    --light-gray:#f5f5f5;
    --orange: #E87717;
    --green: #006637;

    --font: "OpenSans";

    --transition:all 0.25s linear;
}

/* ------------------------------------------------------------ FONT FAMILLY ------------------------------------------------------------ */

@font-face {
    font-family: "OpenSans";
    src: url(/fonts/OpenSans-var.ttf);
}

/* ------------------------------------------------------------ TYPOGRAPGY ------------------------------------------------------------ */

h1 {
	font-family: var(--font);
	font-size: calc(25px + (58 - 25) * ((100vw - 300px) / (1600 - 300)));
	font-weight: 900;
	line-height: 100%;
	color: var(--black);
	margin: 0;
	text-transform: uppercase;
}

h2 {
    font-family: var(--font);
    font-size: calc(24px + (48 - 24) * ((100vw - 300px) / (1600 - 300)));
    font-weight: 900;
    line-height: 100%;
    color: var(--black);
    margin: 0 ;
    text-transform: uppercase;
}

h3 {
    font-family: var(--font);
    font-size: calc(24px + (38 - 24) * ((100vw - 300px) / (1600 - 300)));
    font-weight: 900;
    line-height: 100%;
    color: var(--black);
    margin: 0 ;
    text-transform: uppercase;
    padding: 10px 0px 10px 0px;
}

h4 {
    font-family: var(--inter);
    color:var(--black);
    font-size: calc(22px + (24 - 22) * ((100vw - 300px) / (1600 - 300)));
    line-height: 120%;
    padding: 10px 0px 0px 0px;
    text-transform: uppercase;
    font-weight: 900;
}

h5 {
    font-family: var(--inter);
    color:var(--black);
    font-size: 16px;
    line-height: 120%;
    margin: 0 0 10px;
}

p {
    font-family: var(--font);
    font-weight: 300;
    color:var(--black);
    font-size: 16px;
    line-height: 150%;
    margin:0;
    padding: 5px 0px 5px 0px;
}
@media(max-width: 1600px) {
    p {
        font-size: 16px;
    }
}

.module-text p {
    margin:0 0 10px;
}

.module-text p:last-of-type {
    margin:0;
}

a {
    font-family: var(--font);
    font-weight: 300;
    color:var(--orange);
    font-size: 18px;
    line-height: 120%;
    width: fit-content;
    transition:var(--transition);
}

a:hover {
    color:var(--green);
    text-decoration:none;
}

a:hover * {
    color:var(--green);
}

ul {
    margin:0;
    padding:0;
    list-style-position: inside;
}

ul li {
    font-family: var(--font);
    font-weight:300;
    color:var(--black);
    font-size: 16px;
    line-height: 100%;
    padding: 5px 0px 5px 0px;
}

ul li:last-of-type {
    margin:0;
}

ol li {
    font-family: var(--font);
    font-weight:300;
    color:var(--black);
    font-size: 18px;
    line-height: 120%;
    margin:0 0 10px;
}

ol li:last-of-type {
    margin:0;
}

/* ------------------------------------------------------------ COMMON ------------------------------------------------------------ */

/* ------ DIVERSE ------ */

.container {
    max-width:90vw;
    width:100%;
}

.padding-section {
    padding-top:calc(5vh + 5vw);
    padding-bottom:calc(5vh + 5vw);
}

body,
.content-wrapper {
    overflow-x:unset;
}

/* ------ COOKIE NOTICE ------ */

#cookie_notice {
    background-color: var(--orange);
    transition: var(--transition);
    padding: 20px;
}

#cookie_notice .cookie_notice_container {
    gap: 20px;
    color: unset;
}

#cookie_notice .cookie_notice_container p {
    font-size:16px;
}

#cookie_notice .cookie_notice_container p a {
    color: var(--white);
}

#cookie_notice .cookie_notice_container button {
    margin: 0;
    padding: 10px 40px;
    border-radius: 30px;
    background-color: var(--white);
    border: none;
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    outline: none !important;
    box-shadow: none!important;
    transition: var(--transition);
}

#cookie_notice .cookie_notice_container button:hover {
    background-color:var(--black);
    color:var(--white);
}

/* ------ BUTTON PRIMARY ------ */

.btn-primary {
    position: relative;
    height: 50px;
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 0 20px 0 40px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 18px;
    background-color: transparent;
    line-height: 100%;
    color: var(--black)!important;
    border: none!important;
    outline: none!important;
    box-shadow: none!important;
    transition: var(--transition);
    z-index: 10;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:hover {
    background-color:transparent;
}

.btn-primary div {
    position:relative;
    position: absolute;
    overflow: hidden;
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    border-radius: 50px;
    top: 0;
    left: 0;
    padding: 0 10px;
    transition: var(--transition);
}

.btn-primary:hover div {
    width:100%;
}

.btn-primary div span {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    color: var(--white);
}

.btn-primary div span svg {
    width: 30px;
    stroke:var(--white);
}

/* ------ BUTTON SECONDARY ------ */

.btn-secondary {
    position: relative;
    height: 50px;
    width: fit-content;
    display: flex;
    align-items: center;
    padding: 0 20px 0 40px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 18px;
    background-color: transparent;
    line-height: 100%;
    color: var(--white);
    border: none!important;
    outline: none!important;
    box-shadow: none!important;
    transition: var(--transition);
    z-index: 10;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary:hover {
    background-color:transparent;
}

.btn-secondary div {
    position: absolute;
    overflow: hidden;
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    border-radius: 50px;
    top: 0;
    left: 0;
    padding: 0 10px;
    transition: var(--transition);
}

.btn-secondary:hover div {
    width:100%;
}
.container-prezentare{
    padding: 4rem 0re,;
}

.deschide-pdf {
    display:flex;
    justify-content:center;
}

.btn-secondary div span {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    color: var(--black);
}

.btn-secondary div span svg {
    width: 30px;
    stroke:var(--black);
}

/* ------ ZONA TEXT ------ */

.text-content {
    height: fit-content;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.content-pretitle {
    position: relative;
    width: fit-content;
}

.content-pretitle > * {
    position:relative;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 5px;
    margin-left: 4px!important;
    line-height: 100%;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.content-pretitle> *:after {
    content: '';
    height: 1px;
    width: 150px;
    background-color: var(--black);
}

.content-description {
    margin: 40px 0 50px;
}

/* ------ IMAGINE ABSOLUTA ------ */

.image-absolute {
    padding: 0;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: calc(var(--vw, 1vw) * 100);
    flex: auto;
    max-width: unset;
}

.image-absolute:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0 0 0 / 55%) 25%, rgb(255 255 255) 96%);
    border-radius: calc(2.5vw + 2.5vh);
    /* border-radius: 55px; */
}
.main_categories_404_page .image-absolute:after,
.main_categories_404_page .image-absolute .module-image {
    border-radius: unset !important;
}

.image-absolute .module-image {
    height: 80vh;
    border-radius: calc(2.5vw + 2.5vh);
    overflow: hidden;
}

.image-absolute .module-image img {
    height: 100%;
    object-fit: cover;
}

/* ------ IMAGINE ABSOLUTA ------ */

.section-top-common {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 65vh;
    padding-top: 20vh;
    border-radius: 0 0 calc(2.5vw + 2.5vh) calc(2.5vw + 2.5vh);
    overflow: hidden;
}

.section-top-common:after {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background-color:#120e00a6;
    z-index:1;
}

.section-top-common .content-pretitle> *:after {
    background-color: var(--white);
}

.section-top-common .content-pretitle > * {
    color: var(--white);
}

.section-top-common .content-title {
    max-width:50%;
}

.section-top-common .content-title > * {
    color: var(--white);
}

.section-top-common .content-description {
    max-width:50%;
}

.section-top-common .content-description > * {
    color:var(--white);
}

/* ------------------------------------------------------------ HEADER ------------------------------------------------------------ */

/* ---------------- FIXED ---------------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 0px 5px 2px #00000000;
    transition: var(--transition);
}

.navbar {
    position:relative;
    padding:0;
    height: 100%;
    transition: var(--transition);
}

.navbar > .container {
    height: 15vh;
    transition: var(--transition);
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: block;
    width: 7vw;
}

.logo {
    max-height: fit-content;
    width: 7vw;
    transition: var(--transition);
}

.navbar-collapse {
    position:relative;
    padding-right:7vw;
    transition: var(--transition);
}

.navbar-collapse .menu-line-left,
.navbar-collapse .menu-line-right {
    position: relative;
    flex: 1;
    height: 50px;
    width: 100%;
    pointer-events: none;
}

.navbar-collapse .menu-line-left span {
    position:absolute;
    top: 0;
    left: auto;
    right: 20px;
    bottom: 0;
    width: calc(100% - 60px);
    margin:auto;
    height:2px;
    background-color:var(--white);
}

.navbar-collapse .menu-line-right span {
    position:absolute;
    top:24px;
    left:20px;
    width: calc(100% + (7vw - 20px));
    height: calc(15vh + 15vw);
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    border-top-right-radius: calc(2.5vw + 2.5vh);
    transition: var(--transition);
}

.navbar-nav {
    margin:auto;
    gap: 15px;
    transition: var(--transition);
}

.navbar-nav .nav-item {
    margin:0;
}

.nav-item-level-1 .nav-link {
	position: relative;
	padding: 0 20px;
	color: var(--white);
	font-weight: 700;
	text-transform: uppercase;
	height: 50px;
	display: flex;
	align-items: center;
	transition: var(--transition);
	font-size: 16px;
}
@media(max-width: 1600px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0 15px;
        font-size: 15px;
    }
}

.navbar-expand-lg .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    height: 100%;
    width: 100%;
    border-radius: 40px;
    background-color: transparent;
    transition: var(--transition);
    z-index: -1;
}
.navbar-expand-lg .navbar-nav  path {
    transition: var(--transition);
}


.navbar-expand-lg .navbar-nav .nav-link:hover, 
.navbar-expand-lg .navbar-nav .nav-link:hover path {
    color:var(--green);
    stroke: var(--green);
}

.navbar-expand-lg .navbar-nav .nav-link:hover:before {
    background-color: var(--white);
}

.search-toggle:before {
    border:none;
}

.search-toggle:after {
    display:none;
}

.navbar-expand-lg .navbar-nav .nav-link.search-toggle svg {
    stroke:var(--white);
    transition:var(--transition);
}

.navbar-expand-lg .navbar-nav .nav-link.search-toggle:hover svg {
    stroke:var(--green);
}

.search-wrapper {
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100%;
    padding: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow:none;
}

.search-wrapper.show {
    left:0;
}

.search-wrapper .search-header-wrapper {
	position: relative;
	height: 100px;
	width: 100%;
	max-width: 650px;
	margin: auto;
	margin-top: 90px;
}

.search-wrapper #search {
	width: calc(100% - 30px);
}
.search-wrapper #search:focus {
	width: 100%;
}
.search-wrapper #search, .search-wrapper #search:focus {
	height: 100%;
	padding: 20px;
	font-family: var(--font);
	font-weight: 700;
	font-size: 18px;
	border: 1px solid var(--green);
}

.search-wrapper a.search-hide {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
    width: 30px;
    height: 30px;
}

.search-wrapper a.search-hide:before,
.search-wrapper a.search-hide:after {
    content: '';
    width: 4px;
    height: 30px;
    background-color: var(--black);
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin: auto;
}

.search-wrapper .search-results {
    width: 100%;
    padding: 20px;
    height: calc(100% - 100px);
    overflow-y: scroll;
    overflow-x: hidden;
}

.search-wrapper .search-results ul {
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    flex-direction: row;
}

.search-wrapper .search-results ul li {
    padding: 20px;
    border: 1px solid #e8771730;
    margin: 0;
    display: flex;
    flex-direction: row;
    width: calc(50% - 20px);
    height: auto;
}

.search-wrapper .search-results ul li:first-child {
    padding-top:20px;
}

.search-wrapper .search-results ul li .result-image {
    display: block;
    height: auto;
    aspect-ratio: 1/1;
    width: 35%;
}

.search-wrapper .search-results ul li img{
    width: 100%;
    margin-right: 0;
    height: 100%;
    object-fit: cover;
}

.search-wrapper .search-results ul li .result-details {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.search-wrapper .search-results ul li .result-details p {
    font-size:18px;
    text-transform: uppercase;
    font-weight: 700;
}

.useful_links {
    width: calc(100% - 30px);
	max-width: 650px;
	text-align: left;
	margin: auto;
	margin-top: 15px;
}
.useful_links h3 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 15px;
	text-transform: inherit;
}
.useful_links li {
	list-style: none;
	margin-bottom: 20px;
}
.useful_links li a {
    font-size: 16px;
}

/* ---------------- ON SCROLL ---------------- */

header.header-scroll {
    height:80px;
    background-color:var(--white);
    box-shadow: 0px 0px 5px 2px #00000029;
}

header.header-scroll .navbar > .container {
    height:100%;
}

header.header-scroll .logo {
    width: 4vw;
}

header.header-scroll .navbar-collapse .menu-line-right span {
    border-top-right-radius: 0;
    height: 0;
}

header.header-scroll .navbar-expand-lg .navbar-nav .nav-link,
header.header-scroll .navbar-expand-lg .navbar-nav .nav-link path {
    color:var(--black);
    stroke: var(--black);
}



header.header-scroll .navbar-expand-lg .navbar-nav .nav-link:hover:before {
    background-color:var(--green);
}

header.header-scroll .navbar-expand-lg .navbar-nav .nav-link.search-toggle svg  {
    stroke:var(--black);
}



@media(min-width: 1500px) {
    #submenu-47 {
        width: 85vw;
    }
}
@media(max-width: 1500px) {
    #submenu-47 {
        width: 92vw;
    }
}
@media(min-width: 992px) {
    header.header-scroll .navbar-expand-lg .navbar-nav .nav-link:hover,
    header.header-scroll .navbar-expand-lg .navbar-nav .nav-link:hover path {
        color:var(--white);
        stroke: white;
    }
    header.header-scroll .navbar-expand-lg .navbar-nav .nav-link.search-toggle:hover svg {
        stroke:var(--white);
    } 
    .dropdown:hover .first_child_dropdown {
        display: flex !important;
    }
    #submenu-47 {
        top: 100%;
        position: absolute;
        margin: auto;
        left: calc(12.5vw - var(--space-left));
        right: 0px;
        padding: 50px;
        background: #F8F8F8;
        border-bottom: 2px solid var(--green);
        border-top: 2px solid var(--orange);
        border-radius: 70px;
        height: 415px;
        overflow: hidden;
        flex-direction: column;
        flex-wrap: wrap;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        gap: 0;
    }
    .nav-item-level-2 > a {
        height: 40px !important;
    }
    .nav-item-level-2 > a:hover {
        color: #000 !important;
    }
    .nav-item-level-2 > a::before {
        content: unset !important;
    }
    .nav-item-level-3 {
        width: fit-content !important;
    }

    .nav-item-level-3 > a::before {
        content: unset !important;
    }

    .nav-item-level-3 > a:hover {
        color: var(--green) !important;
    }

    .dropdown-menu {
        background: unset ;
    }
    #submenu-47 .dropdown-menu {
        border: unset;
    }
    .first_child_dropdown .nav-item-level-2 > a,
    .header-scroll .nav-item-level-2 > a {
        color: var(--green) !important;
    }

    .nav-item-level-2 > a:hover {
        color: #000 !important;
        border-radius: unset !important;
    }
    .first_child_dropdown .nav-item-level-2.dropdown > a {
        border-bottom: 3px solid #0005;
    }
    .nav-item-level-3 > a {
        color: #000 !important;
        font-size: 14px !important;
        height: 100% !important;
        min-height: 0 !important;
        transition: all .1s linear !important;
        padding: 5px 10px !important;
    }
}

/* @media(min-width: 991px) {
    .nav-item-produse.dropdown:hover #submenu-47 {
        display: block;
    }
} */

/* ------------------------------------------------------------ FOOTER ------------------------------------------------------------ */

.pre-footer {
    height:50px;
    position: relative;
    display:none;
}

body.acasa .pre-footer {
    display: block;
}

.pre-footer:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50vh;
    background-color: var(--orange);
    z-index: -2;
    transform: translate(0, -50%);
}
footer {
    border-radius: 0;
    background-image: url('/uploads/imagini/absolute-image.webp');
    background-size: cover;
    background-position: bottom;
    position: relative;
}
footer::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	/* background-color: #0009; */
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0.7091037098433124) 20%, rgba(0,0,0,0.9051821412158614) 100%);
}

footer .footer-content {
	padding: 50px 0 1.5rem 0;
}

footer .footer-content .footer-logo-wrapper .footer-logo {
	max-width: 150px;
	margin-bottom: 10px;
}
footer p {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

footer .footer-content .menu-title > * {
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	line-height: 100%;
	text-transform: uppercase;
	margin: 0 0 10px;
	width: fit-content;
	position: relative;
}
@media(max-width: 1440px) {
    footer .footer-content .menu-title > * {
        font-size: 16px;
    }
    footer .nav-link {
        font-size: 16px;
    }
}

footer .footer-content .footer-menu .menu-list ul {
    flex-direction: column;
    gap: 5px;
}

footer .footer-content .footer-menu .menu-list ul li {
    margin:0;
}

footer .footer-content .footer-menu .menu-list ul li a {
	padding: 5px 0;
	color: #fff;
	font-weight: 500;
	font-size: 15px;
    position: relative;
    transition: all .2s linear;
}
.footer_anpc_logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1.5rem;
	gap: 7.5px;
	border-top: 1px solid #fff;
	padding-top: 1.5rem;
}
.footer_anpc_logo .module-image {
	max-width: 200px;
}
.footer_anpc_logo .module-image img {
    width: 100%;
}

/* ------------------------------------------------------------ ACASA ------------------------------------------------------------ */

.section-hero {
    position:relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display:flex;
    align-items: center;
    height: 100vh;
    padding-top: 20vh;
    border-radius: 0 0 calc(2.5vw + 2.5vh) calc(2.5vw + 2.5vh);
    overflow: hidden;
}

.section-hero:after {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background-color:#120e00a6;
    z-index:1;
}

.section-hero .content-pretitle> *:after {
    background-color: var(--white);
}

.section-hero .content-pretitle > * {
    color: var(--white);
}

.section-hero .content-title {
    max-width:50%;
}

.section-hero .content-title > * {
    color: var(--white);
}

.section-hero .content-description {
    max-width:50%;
}

.section-hero .content-description > * {
    color:var(--white);
}

.section-2-home {
    padding-top: calc(8vh + 8vw);
    padding-bottom: calc(8vh + 8vw);
}

.section-2-home .image-content {
    position:relative;
}

.section-2-home .image-content img {
    height:100%;
    object-fit: cover;
}

.section-2-home .small-image {
    position: absolute;
    width: 40%;
    min-width: 250px;
    bottom: 0;
    top: 0;
    margin: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: calc(2vw + 2vh);
    left: 10%;
    z-index: 1;
    box-shadow: 0px 0px 10px 2px #08080860;
}

.section-2-home .tall-image {
    position: absolute;
    width: 70%;
    min-width: 250px;
    bottom: calc((-10vh - 10vw) - (2vh + 2vw));
    aspect-ratio: 1/1.5;
    overflow: hidden;
    border-radius: calc(2vw + 2vh);
    right: 15px;
    box-shadow: 0px 0px 10px 2px #08080860;
}

.section-3-home {
    position: relative;
    gap:30px;
}

.section-3-home .text-content {
    align-items: center;
    gap:20px;
    padding-bottom: calc(5vh + 5vw - 30px);
}

.section-3-home .text-content .content-pretitle > * {
    color:var(--white);
}

.section-3-home .text-content .content-pretitle> *:before {
    content: '';
    height: 1px;
    width: 150px;
    background-color: var(--white);
}

.section-3-home .text-content .content-pretitle> *:after {
    background-color: var(--white);
}

.section-3-home .text-content .content-title > * {
    color:var(--white);
}

.section-3-home .category-item {
    max-width: calc(33.333333% - 20px);
    height: calc((100vh / 3) - 20px - (80px / 3));
    padding: 0px;
    overflow:hidden;
}

.section-3-home .category-item-1 {
    border-top-left-radius: calc(2vw + 2vh);
}

.section-3-home .category-item-3 {
    border-top-right-radius: calc(2vw + 2vh);
}

.section-3-home .category-item-7 {
    border-bottom-left-radius: calc(2vw + 2vh);
}

.section-3-home .category-item-9 {
    border-bottom-right-radius: calc(2vw + 2vh);
}

.section-3-home .category-item .item-image {
    position:relative;
    height: 100%;
    width: 100%;
    overflow:hidden;
}

.section-3-home .category-item .item-image:after {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:#0808082e;
    transition:var(--transition);
}

.section-3-home .category-item:hover .item-image:after {
    background-color:#E8771785;
}

.section-3-home .category-item .item-image img {
    height: 100%;
    object-fit: cover;
}

.section-3-home .category-item .item-button {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.section-3-home .category-item .item-button a {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 24px;
    outline: none!important;
    box-shadow: none!important;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    transition:var(--transition);
}

.section-3-home .category-item .item-button div {
    display:none;
}

.section-4-home .text-content {
    align-items: center;
    gap:20px;
    margin-bottom: 50px;
}

.section-4-home .text-content .content-pretitle> *:before {
    content: '';
    height: 1px;
    width: 150px;
    background-color: var(--black);
}

.section-4-home .text-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.section-4-home .text-card .icon {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap:10px;
}

.section-4-home .text-card .icon:before,
.section-4-home .text-card .icon:after {
    content:'';
    width:100px;
    height: 1px;
    background-color:var(--black);
}

.section-4-home .text-card .icon svg {
    width: 70px;
    height: 70px;
    stroke: var(--orange);
}

.section-quick-contact {
    position:relative;
    min-height:70vh;
    justify-content: space-between;
}

.section-quick-contact .image-absolute {
    height:100%;
}

.section-quick-contact .image-absolute:after {
    background: #120e00a6;
}

.section-quick-contact .image-absolute .module-image {
    height:100%;
}

.section-quick-contact .text-content {
    height:unset;
    justify-content: center;
}

.section-quick-contact .content-pretitle > *,
.section-quick-contact .content-title > *,
.section-quick-contact .content-description > * {
    color:var(--white);
}

.section-quick-contact .content-pretitle> *:after {
    background-color: var(--white);
}

.section-quick-contact .content-description {
    margin-bottom:0;
}

.section-quick-contact .quick-contact {
    position: relative;
}

.section-quick-contact .contact-content {
    position: absolute;
    width: calc(100% - 30px);
    padding: 50px;
    background-color: var(--white);
    box-shadow: 0px 0px 10px 2px #08080860;
    border-radius: calc(2.5vw + 2.5vh);
    bottom: calc(-3.5vh - 3.5vw);
    left: 15px;
}

.section-quick-contact .contact-form .content .form-text {
    margin:0 0 20px;
}

.section-quick-contact .contact-form .content .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.section-quick-contact .contact-form .content .form-group label {
    font-family: var(--font);
    margin: 0 0 4px 1px;
    color: var(--black);
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 100%;
    display: flex;
    align-items: baseline;
    gap: 0;
    order: 1;
}

.section-quick-contact .contact-form .content .form-group input {
    border: 1px solid var(--black);
    border-radius: 0 40px 40px 40px;
    opacity: 0.25;
    height: 50px;
    padding: 5px 20px;
    font-family: var(--font);
    font-weight: 700;
    transition:var(--transition);
    order: 3;
}

.section-quick-contact .contact-form .content .form-group.not-empty input {
    border: 1px solid var(--green);
    opacity: 1;
    color: var(--green);
}

.section-quick-contact .contact-form .content .form-group.c-has-error input {
    border: 1px solid var(--red);
    opacity: 1;
}

.section-quick-contact .contact-form .content .form-group input:focus {
    opacity:1;
    outline:none!important;
    box-shadow:none!important;
    border: 1px solid var(--orange);
}

.section-quick-contact .contact-form .content .form-group textarea {
    border: 1px solid var(--black);
    border-radius: 0 40px 40px 40px;
    opacity: 0.25;
    height: 150px;
    padding: 5px 20px;
    font-family: var(--font);
    font-weight: 700;
    transition:var(--transition);
    order: 3;
}

.section-quick-contact .contact-form .content .form-group.not-empty textarea {
    border: 1px solid var(--green);
    opacity: 1;
    color: var(--green);
}

.section-quick-contact .contact-form .content .form-group.c-has-error textarea {
    border: 1px solid var(--red);
    opacity: 1;
}

.section-quick-contact .contact-form .content .form-group textarea:focus {
    opacity:1;
    outline:none!important;
    box-shadow:none!important;
    border: 1px solid var(--orange);
}

.section-quick-contact .contact-form .content .form-group .c-error {
    font-family: var(--font);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    order: 2;
    margin: 0 20px 4px 0;
    line-height: 100%;
    display: flex;
    align-items: flex-end;
}

.section-quick-contact .item-acceptance {
    margin-bottom:20px;
}

.section-quick-contact .item-acceptance label {
    margin:0;
}

.section-quick-contact .item-acceptance .checkbox-text {
    font-family: var(--font);
    font-weight:200;
    color:var(--black);
    font-size:16px;
}

/* ------------------------------------------------------------ DESPRE NOI ------------------------------------------------------------ */

body.despre-noi .pre-footer {
    display:block;
}

.section-about-us {
    align-items: center;
}

.section-about-us .image-content .module-image {
    height: 60vh;
    width: 100%;
    border-radius: calc(2.5vw + 2.5vh);
    overflow: hidden;
    box-shadow: 0px 0px 10px 2px #08080860;
}

.section-about-us .image-content .module-image img {
    height: 100%;
    object-fit: cover;
}

.section-about-gallery {
    position: relative;
}

.section-about-gallery:after {
    content:'';
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 0;
    height:100%;
    transform: translate(-50%, 0);
    width: calc(var(--vw, 1vw) * 100);
    flex: auto;
    max-width: unset;
    background-color:var(--orange);

}

.section-about-gallery .module-gallery {
    padding:0 70px;
}

.section-about-gallery .module-gallery figure {
    margin:0;
    aspect-ratio: 1/1;
    margin:0 20px;
}

.section-about-gallery .module-gallery figure a {
    display: block;
    width:100%;
    height: 100%;
    overflow: hidden;
    border-radius:50px;
    box-shadow: 0px 0px 10px 2px #08080860;
}

.section-about-gallery .module-gallery figure a img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.section-about-gallery .module-gallery .slick-prev {
    left:0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.section-about-gallery .module-gallery .slick-prev:hover {
    background-color: var(--black);
}

.section-about-gallery .module-gallery .slick-prev:before {
    content:'\f053';
    font-family: "FontAwesome";
    color: var(--orange);
    position: relative;
    left: -1px;
    transition: var(--transition);
}

.section-about-gallery .module-gallery .slick-prev:hover:before {
    color: var(--white);
}

.section-about-gallery .module-gallery .slick-next {
    right:0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.section-about-gallery .module-gallery .slick-next:hover {
    background-color: var(--black);
}

.section-about-gallery .module-gallery .slick-next:before {
    content:'\f054';
    font-family: "FontAwesome";
    color: var(--orange);
    position: relative;
    right: -3px;
    transition: var(--transition);
}

.section-about-gallery .module-gallery .slick-next:hover:before {
    color: var(--white);
}

/* ------------------------------------------------------------ CONTACT ------------------------------------------------------------ */

.section-contact .text-content {
    height: auto;
    gap: 10px;
}

.section-contact .text-content .content-description {
    margin:10px 0;
}

.section-contact .text-content .module-fickle {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    width: fit-content;
}

.section-contact .text-content .module-fickle .fickle-text-content p {
    font-weight: unset;
    font-family: unset;
    font-size: unset;
    line-height: unset;
}

.section-contact .text-content .module-fickle .fickle-text-content p a {
    padding: 0;
    font-weight: 700;
    color: var(--black);
    transition: var(--transition);
}

.section-contact .text-content .module-fickle:hover .fickle-text-content p a {
    color:var(--orange);
}

.section-contact .text-content .module-fickle .fickle-additional-html-code {
    background-color: var(--orange);
    padding: 10px;
    border-radius: 50%;
    transition: var(--transition);
}

.section-contact .text-content .module-fickle:hover .fickle-additional-html-code {
    background-color: var(--black);
}

.section-contact .text-content .module-fickle .fickle-additional-html-code svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
}

.section-contact .text-content .map-content {
    height: 100%;
    display: block;
    margin-top:10px;
}

.section-contact .text-content .map-content iframe {
    border: 0;
    height: 100%;
    width: 100%;
    border-radius: calc(2.5vw + 2.5vh);
}

.section-contact .contact-content {
	padding: 50px;
	background-color: var(--green);
	border-radius: calc(2.5vw + 2.5vh);
}
@media(max-width: 575.99px) {
    .section-contact .contact-content {
        padding: 16px;
        background-color: var(--green);
        border-radius: calc(2.5vw + 2.5vh);
    }
}

.section-contact .contact-content .module-code {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-contact .contact-content .module-code .c-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font);
    font-weight: 200;
    font-size: 18px;
    color: var(--white);
}

.section-contact .contact-content .module-code .c-form-success span {
    font-weight: 700;
    font-size: 28px;
}

.section-contact .contact-form .content .form-text {
    margin:0 0 20px;
}

.section-contact .contact-form .content .form-text > * {
    color:var(--white);
}

.section-contact .contact-form .content .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.section-contact .contact-form .content .form-group label {
    font-family: var(--font);
    margin: 0 0 4px 1px;
    color: var(--white);
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 100%;
    display: flex;
    align-items: baseline;
    gap: 0;
    order: 1;
}

.section-contact .contact-form .content .form-group input {
    border: 1px solid var(--white);
    border-radius: 0 40px 40px 40px;
    opacity: 0.25;
    height: 50px;
    padding: 5px 20px;
    font-family: var(--font);
    font-weight: 700;
    transition:var(--transition);
    order: 3;
    background-color:var(--white);
}

.section-contact .contact-form .content .form-group.not-empty input {
    border: 1px solid var(--green);
    opacity: 1;
    color: var(--green);
    background-color:var(--white);
}

.section-contact .contact-form .content .form-group.c-has-error input {
    border: 1px solid var(--red);
    opacity: 1;
}

.section-contact .contact-form .content .form-group input:focus {
    opacity:1;
    outline:none!important;
    box-shadow:none!important;
    border: 1px solid var(--black);
}

.section-contact .contact-form .content .form-group textarea {
    border: 1px solid var(--white);
    border-radius: 0 40px 40px 40px;
    opacity: 0.25;
    height: 150px;
    padding: 5px 20px;
    font-family: var(--font);
    font-weight: 700;
    transition:var(--transition);
    order: 3;
    background-color:var(--white);
}

.section-contact .contact-form .content .form-group.not-empty textarea {
    border: 1px solid var(--green);
    opacity: 1;
    color: var(--green);
    background-color:var(--white);
}

.section-contact .contact-form .content .form-group.c-has-error textarea {
    border: 1px solid var(--red);
    opacity: 1;
}

.section-contact .contact-form .content .form-group textarea:focus {
    opacity:1;
    outline:none!important;
    box-shadow:none!important;
    border: 1px solid var(--black);
}

.section-contact .contact-form .content .form-group .c-error {
    font-family: var(--font);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    order: 2;
    margin: 0 20px 4px 0;
    line-height: 100%;
    display: flex;
    align-items: flex-end;
}

.section-contact .item-acceptance {
    margin-bottom:20px;
}

.section-contact .item-acceptance input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid var(--black)!important;
    transition: var(--transition);
    background-color: var(--white);
}

.section-contact .item-acceptance input:checked {
    background-color: var(--black);
}

.section-contact .item-acceptance label {
    margin:0;
}

.section-contact .item-acceptance .checkbox-text {
    font-family: var(--font);
    font-weight:200;
    color:var(--white);
    font-size:18px;
}

.section-contact .item-acceptance .checkbox-text a {
    color:var(--black);
    font-weight: 200;
}

.section-contact .btn-primary div {
    background-color: var(--black);
}

/* ------------------------------------------------------------ SERVICII ------------------------------------------------------------ */

body.servicii .pre-footer {
    display:block;
}

.section-services {
    align-items: center;
}

.section-services .text-content ul {
    columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
@media(max-width: 750px) {
    .section-services .text-content ul {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
        margin-bottom: 2rem;
    }
}

.section-services .text-content ul li::marker {
    color:var(--orange);
}

.section-services .image-content .module-image {
    height: 100%;
    width: 100%;
    border-radius: calc(2.5vw + 2.5vh);
    overflow: hidden;
    box-shadow: 0px 0px 10px 2px #08080860;
}

.section-services .image-content .module-image img {
    height: 100%;
    object-fit: cover;
}

.section-services-cards .text-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.section-services-cards .text-card .icon {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap:10px;
}

.section-services-cards .text-card .icon:before,
.section-services-cards .text-card .icon:after {
    content:'';
    width:50px;
    height: 1px;
    background-color:var(--black);
}

.section-services-cards .text-card .icon > * {
    color: var(--orange);
    font-size: calc(24px + (28 - 24) * ((100vw - 300px) / (1600 - 300)));
}

/* ------------------------------------------------------------ CATEGORIE PORTOFOLIU ------------------------------------------------------------ */

.portofoliu-grid {
    gap:30px 0;
}

.portofoliu-item-wrapper .portofoliu-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: calc(1vw + 1vh);

}

.portofoliu-item-wrapper .portofoliu-item .portofoliu-image {
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
}

.portofoliu-item-wrapper .portofoliu-item .portofoliu-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.portofoliu-item-wrapper .portofoliu-item .portofoliu-details {
    position: absolute;
    bottom: 0;
    padding: 20px 30px 30px;
    max-width: 600px;
    background-color: var(--orange);
    border-top-right-radius: calc(1vw + 1vh);
}

.portofoliu-item-wrapper .portofoliu-item .portofoliu-details .portofoliu-title {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
}

.portofoliu-item-wrapper .portofoliu-item .portofoliu-details .portofoliu-short-description > * {
    color: Var(--white);
    font-size: 16px;
    line-height: 140%;
}

.portofoliu-item-wrapper .portofoliu-item .portofoliu-btn {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:var(--transition);
}

.portofoliu-item-wrapper .portofoliu-item:hover .portofoliu-btn {
    background-color:var(--black);
}

.portofoliu-item-wrapper .portofoliu-item .portofoliu-btn svg {
    stroke:var(--orange);
    transition:var(--transition);
}

.portofoliu-item-wrapper .portofoliu-item:hover .portofoliu-btn svg {
    stroke:var(--white);
}

/* ------------------------------------------------------------ PORTOFOLIU ------------------------------------------------------------ */

.portofoliu-header-wrapper {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 75vh;
    padding: 20vh 0 5vh;
    border-radius: 0 0 calc(2.5vw + 2.5vh) calc(2.5vw + 2.5vh);
    overflow: hidden;
}

.portofoliu-header-wrapper:after {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background-color:#120e00a6;
    z-index:1;
}

.portofoliu-header-content {
    width: 100%;
    position: relative;
    margin: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.portofoliu-header-content h1 {
    color: var(--white);
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.portofoliu-header-content .portofoliu-share-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.portofoliu-header-content .portofoliu-share-wrapper p {
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    color:var(--white);
}

.portofoliu-header-content .portofoliu-share-wrapper .share-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.portofoliu-header-content .portofoliu-share-wrapper .share-buttons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.portofoliu-header-content .portofoliu-share-wrapper .share-buttons a:hover {
    background-color:var(--black);
}

.portofoliu-header-content .portofoliu-share-wrapper .share-buttons a i {
    color:var(--white);
}

.portofoliu-column-wrapper .galerie-portofoliu {
    position:sticky;
    top:90px;
}

.portofoliu-column-wrapper .galerie-portofoliu .slick-prev {
    left:20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    border-radius: 50%;
    opacity: 1;
    z-index: 100;
    transition: var(--transition);
}

.portofoliu-column-wrapper .galerie-portofoliu .slick-prev:hover {
    background-color: var(--orange);
}

.portofoliu-column-wrapper .galerie-portofoliu .slick-prev:before {
    content:'\f053';
    font-family: "FontAwesome";
    color: var(--white);
    position: relative;
    left: -1px;
    transition: var(--transition);
}

.portofoliu-column-wrapper .galerie-portofoliu .slick-prev:hover:before {
    color: var(--white);
}

.portofoliu-column-wrapper .galerie-portofoliu .slick-next {
    right:20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    border-radius: 50%;
    opacity: 1;
    z-index: 100;
    transition: var(--transition);
}

.portofoliu-column-wrapper .galerie-portofoliu .slick-next:hover {
    background-color: var(--orange);
}

.portofoliu-column-wrapper .galerie-portofoliu .slick-next:before {
    content:'\f054';
    font-family: "FontAwesome";
    color: var(--white);
    position: relative;
    right: -3px;
    transition: var(--transition);
}

.portofoliu-column-wrapper .galerie-portofoliu .slick-next:hover:before {
    color: var(--white);
}

.portofoliu-column-wrapper .galerie-portofoliu .slick-list {
    margin:0 -20px;
}

.portofoliu-column-wrapper .galerie-portofoliu .gallery-slide {
    height: 50vh;
    border-radius: 50px;
    overflow: hidden;
    margin: 0 20px;
}

.portofoliu-column-wrapper .galerie-portofoliu .gallery-slide img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}

.portofoliu-column-wrapper .portofoliu-details-table {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    background-color: var(--green);
    border-radius: 40px;
}

.portofoliu-column-wrapper .portofoliu-details-table p.portofoliu-table-item {
    display: flex;
    height: 60px;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid var(--white);
    color:var(--white)
}

.portofoliu-column-wrapper .portofoliu-details-table p.portofoliu-table-item span {
    font-weight: 300;
    text-transform: initial;
    width: 200px;
    font-family: var(--font);
    font-size: 18px;
    color: var(--white);
}

.portofoliu-column-wrapper .portofoliu-details-table .portofoliu-materials {
    display: flex;
    gap: 20px;
    min-height: 60px;
    padding: 10px 0;
}

.portofoliu-column-wrapper .portofoliu-details-table .portofoliu-materials span {
    font-weight: 300;
    text-transform: initial;
    width: 200px;
    font-family: var(--font);
    font-size: 18px;
    color: var(--white);
    height: 40px;
    display: flex;
    align-items: center;
}

.portofoliu-column-wrapper .portofoliu-details-table .portofoliu-materials .materiale-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    width: calc(100% - 200px - 20px);
}

.portofoliu-column-wrapper .portofoliu-details-table .portofoliu-materials .materiale-wrapper .material-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: fit-content;
    gap: 10px;
}

.portofoliu-column-wrapper .portofoliu-details-table .portofoliu-materials .materiale-wrapper .material-item p {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    transition:var(--transition);
}

.portofoliu-column-wrapper .portofoliu-details-table .portofoliu-materials .materiale-wrapper .material-item:hover p {
    color:var(--orange)
}

.portofoliu-column-wrapper .portofoliu-details-table .portofoliu-materials .materiale-wrapper .material-item .material-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.portofoliu-column-wrapper .portofoliu-details-table .portofoliu-materials .materiale-wrapper .material-item .material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portofoliu-column-wrapper .portofoliu-description {
    margin-top:20px;
}

/* ------------------------------------------------------------ CATEGORIE PRODUSE ------------------------------------------------------------ */

.product-category-header {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 65vh;
    padding-top: 20vh;
    border-radius: 0 0 calc(2.5vw + 2.5vh) calc(2.5vw + 2.5vh);
    overflow: hidden;
    margin-bottom:50px;
}

.product-category-header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #120e00a6;
    z-index: 1;
}

.product-category-header .content {
    z-index: 2;
}

.product-category-header .content .category-breadcrumbs {
    width: fit-content;
}

.product-category-header .content .category-breadcrumbs .breadcrumb {
    background-color:transparent;
    padding: 0;
    height: fit-content;
    gap: 10px;
    margin:0;
}

.product-category-header .content .category-breadcrumbs .breadcrumb li {
    margin:0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-category-header .content .category-breadcrumbs .breadcrumb li a,
.product-category-header .content .category-breadcrumbs .breadcrumb li.active {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--white);
    line-height: unset;
    transition:var(--transition);
}

.product-category-header .content .category-breadcrumbs .breadcrumb li a:hover {
    color:var(--orange);
}

.product-category-header .content  h1 {
    color:var(--white);
}

.product-subcategory-wrapper {
    padding: 0 0 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.product-subcategory-wrapper .subcategory-content-title {
    text-align: center;
    font-size: 32px;
    line-height: 80%;
}

.product-subcategory-wrapper .subcategory-content-title span {
    font-weight:700;
}

.product-subcategory-wrapper .subcategories-content {
    /* display: flex;
    flex-direction: row;
    gap: 15px; */
    width: 100%;
}
.subcategories-content .subcat_cart {
    padding: 15px;
}
@media(max-width: 767.99px) {
    .subcategories-content .subcat_cart {
        padding: 7.5px;
    }
}
.inner_content_subcateg {
	position: relative;
	padding-top: 60%;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: all .1s linear;
}
.eye_svg {
	position: absolute;
	top: 0;
	z-index: 1;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 0;
	top: 0;
    transition: all .1s linear;
    opacity: 0;
}
.inner_content_subcateg::after {
    content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: #0005;
	z-index: 0;
	top: 0;
	backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    transition: all .1s linear;
    /* visibility: hidden; */
    opacity: 0;
}

@media(min-width: 1200px) {
    .inner_content_subcateg:hover {
        transform: scale(1.02);
        cursor: pointer;
    }
    .inner_content_subcateg:hover::after,
    .inner_content_subcateg:hover .eye_svg {
        /* visibility: visible; */
        opacity: 1;
    }
}
.inner_content_subcateg:hover::after,
.inner_content_subcateg:hover .eye_svg {
    pointer-events: none;
}
.inner_content_subcateg img {
	position: absolute;
	top: 0;
	object-fit: cover;
	height: 100%;
	z-index: 0;
}

.product-subcategory-wrapper .subcategories-content .btn-load-subcategory {
	padding: 10px 15px;
	background-color: var(--green);
	/* font-weight: 500; */
	text-transform: uppercase;
	font-size: 15px;
	color: var(--white);
	transition: var(--transition);
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	border-radius: 0 !important;
	font-weight: 700;
}

.product-subcategory-wrapper .subcategories-content .btn-load-subcategory:hover {
    background-color: var(--orange);
}

.product-category-body {
    padding-bottom: calc(5vh + 5vw);
}

.product-category-body .no-products {
    height: calc(100vh - 65vh - 50px - (5vh + 5vw));
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.product-category-body .no-products p {
    font-size: 28px;
    font-weight: 700;
}

.products-grid {
    gap:50px 0;
}

.categories-item-wrapper .item-image-wrapper {
    border-radius: calc(1.5vw + 1.5vh);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.75/1;
}

.categories-item-wrapper .item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories-item-wrapper .category-item .item-body {
    padding:0;
}

.categories-item-wrapper .category-item .item-body h3 {
    font-size: 24px;
    margin:10px 0;
}

/* ------------------------------------------------------------ PRODUS ------------------------------------------------------------ */

.product-header-wrapper {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 75vh;
    padding: 20vh 0 5vh;
    border-radius: 0 0 calc(2.5vw + 2.5vh) calc(2.5vw + 2.5vh);
    overflow: hidden;
}

.product-header-wrapper:after {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    background-color:#120e00a6;
    z-index:1;
}

.product-header-content {
    width: 100%;
    position: relative;
    margin: auto;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-header-content .product-header-details {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-header-content .product-breadcrumbs .breadcrumb {
    background-color:transparent;
    padding: 0;
    height: fit-content;
    gap: 10px;
}

.product-header-content .product-breadcrumbs .breadcrumb li {
    margin:0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-header-content .product-breadcrumbs .breadcrumb li a,
.product-header-content .product-breadcrumbs .breadcrumb li.active {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    transition:var(--transition);
}

.product-header-content .product-breadcrumbs .breadcrumb li a:hover {
    color:var(--orange);
}

.product-header-content h1 {
    color:var(--white);
    margin: 0 0 30px;
}

.product-header-content .product-short-description {
    max-width:800px;
}

.product-header-content .product-short-description p {
    color:var(--white);
}

.product-header-content .product-header-actions {
    display:flex;
    flex-direction: row;
    align-items: center;
    gap:50px;
}

.product-header-content .btn-demand {
    display: block;
    border: none;
    padding: 0 50px;
    height: 60px;
    border-radius: 60px;
    background-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content;
    transition: var(--transition);
}

.product-header-content .btn-demand:hover {
    background-color:var(--orange);
}

.product-header-content .product-share-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.product-header-content .product-share-wrapper p {
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    color:var(--white);
}

.product-header-content .product-share-wrapper .share-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.product-header-content .product-share-wrapper .share-buttons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-header-content .product-share-wrapper .share-buttons a:hover {
    background-color:var(--black);
}

.product-header-content .product-share-wrapper .share-buttons a i {
    color:var(--white);
}

.product-nav {
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-nav .nav-buttons {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2vw;
    background-color: var(--white);
    transition: var(--transition);
    z-index: 99;
}

.product-nav .nav-buttons.nav-scroll {
    position:fixed;
    top:80px;
    background-color: var(--orange);
    gap: 1vw;
    height: 6vh;
    min-height: 55px;
    align-items: center;
}

.product-nav a {
    border: 2px solid var(--orange);
    padding: 0 50px;
    height: 6vh;
    display: flex;
    align-items: center;
    border-radius: 60px;
    margin: 0;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--transition);
}

.product-nav .nav-buttons.nav-scroll a {
    border-color: var(--white);
    color: var(--white);
    padding: 0 20px;
    font-size: 14px;
    height: 40px;
}

.product-nav a:hover,
.product-nav .nav-buttons.nav-scroll a:hover {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.product-body {
    display:flex;
    flex-direction:column;
    gap:10vh;
    padding-bottom: calc(5vh + 5vw);
}

.product-body .product-body-element {
    position:relative;
    display:flex;
    flex-direction: row;
}

.product-body .product-body-element .element-title {
    height: fit-content;
    position: sticky;
    top: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product-body .product-body-element .element-title .icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-body .product-body-element .element-title .icon:before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: var(--black);
    opacity: 0.25;
}

.product-body .product-body-element .element-title .icon:after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: var(--black);
    opacity: 0.25;
}

.product-body .product-body-element .element-title .icon svg {
    stroke: var(--orange);
    width: 20px;
    height: 20px;
}

.product-body .product-body-element .element-title p {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.product-body .product-body-element .element-content {
    border-left:1px solid #e877175c;
}

.product-body .product-body-element.specificatii .element-content > * {
    margin-bottom:10px;
}

.product-body .product-body-element.specificatii .element-content > *:last-child {
    margin-bottom:0;
}

.product-body .product-body-element.culori .element-content {
    display:flex;
    flex-wrap: wrap;
    gap:30px;
}

.product-body .product-body-element.culori .element-content .img-content {
    max-width: calc((100% / 3) - 20px);
    width: 100%;
}

.product-body .product-body-element.culori .element-content .img-content a {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	height: 100%;
}

.product-body .product-body-element.culori .element-content .img-content .image {
    border-radius: calc(1.5vw + 1.5vh);
    box-shadow: 0px 0px 7px 2px #08080836;
    aspect-ratio: 1.5/1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-body .product-body-element.culori .element-content .img-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body .product-body-element.culori .element-content .img-content p {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.product-body .product-body-element.documentatie .element-content {
    display:flex;
    flex-direction: column;
}

.product-body .product-body-element.documentatie .element-content .pdf-item {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gray);
    height: 70px;
}

.product-body .product-body-element.documentatie .element-content .pdf-item p {
    font-weight: 300;
    width: 100%;
    font-size: 16px;
}

.product-body .product-body-element.documentatie .element-content .pdf-item .item-actions {
    width: max-content;
    display: flex;
    flex-direction: row;
    max-width: 100%;
    gap: 30px;
    align-items: center;
}

.product-body .product-body-element.documentatie .element-content .pdf-item .item-actions span {
    width: max-content;
    display: none;
    padding: 7px 12px;
    border: 1px solid var(--orange);
    border-radius: 30px;
    font-size: 12px;
    font-family: var(--font);
    line-height: 80%;
    font-weight: 400;
    color: Var(--black);
    height: fit-content;
}

.product-body .product-body-element.documentatie .element-content .pdf-item .item-actions a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.product-body .product-body-element.video iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
    margin: auto;
    border-radius: calc(2.5vw + 2.5vh);
}

.product-body .product-body-element.studiu-de-caz .element-gallery .slick-slide {
    height: 50vh;
    overflow: hidden;
    border-radius: calc(2.5vw + 2.5vh);
    box-shadow: 0px 0px 10px 2px #08080860;
    margin:0 20px;
}

.product-body .product-body-element.studiu-de-caz .element-gallery .slick-slide a {
    height: 100%;
}

.product-body .product-body-element.studiu-de-caz .element-gallery .slick-slide img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-body .product-body-element.studiu-de-caz .element-gallery .slick-prev,
.product-body .product-body-element.studiu-de-caz .element-gallery .slick-next{
    top: 0;
    bottom: 0;
    margin: auto;
    transform: none;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    border: none;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition:var(--transition);
}

.product-body .product-body-element.studiu-de-caz .element-gallery .slick-prev {
    left: 50px;
}

.product-body .product-body-element.studiu-de-caz .element-gallery .slick-next {
    right:50px;
}

.product-body .product-body-element.studiu-de-caz .element-gallery .slick-prev:before,
.product-body .product-body-element.studiu-de-caz .element-gallery .slick-next:before {
    font-family:'FontAwesome';
    opacity:1;
    font-size: 28px;
}

.product-body .product-body-element.studiu-de-caz .element-gallery .slick-prev:before {
    content:'\f104';
}

.product-body .product-body-element.studiu-de-caz .element-gallery .slick-next:before {
    content:'\f105';
}

.related-products-title {
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #e877175c;
}

.related-products-title h2 {
    font-size:32px;
}

.product-modal .modal-dialog {
    height: 100%;
    margin: auto;
    display: flex;
}

.product-modal .modal-dialog .modal-content {
    margin:auto;
    border: none;
    border-radius: calc(1.5vw + 1.5vh);
}

.product-modal .modal-dialog .modal-content .modal-header {
    padding: 0 40px;
    height: 70px;
    align-items: center;
}

.product-modal .modal-dialog .modal-content .modal-header h5 {
    font-size: 18px;
    line-height: 100%;
    font-weight: 700;
    text-transform: uppercase;
}

.product-modal .modal-dialog .modal-content .modal-header .close {
    margin: 0;
    padding: 0;
    outline: none!important;
    box-shadow: none!important;
    font-size: unset;
    opacity: 1;
    width: 100%;
    max-width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    border-radius: 50%;
    transition: var(--transition);
}

.product-modal .modal-dialog .modal-content .modal-header .close:hover {
    background-color:var(--orange);
}

.product-modal .modal-dialog .modal-content .modal-body {
    padding: 0px 20px;
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups {
    padding:20px;
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups .form-group label {
    font-family: var(--font);
    margin: 0 0 4px 1px;
    color: var(--black);
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 100%;
    display: flex;
    align-items: baseline;
    gap: 0;
    order: 1;
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups .form-group input {
    border: 1px solid var(--black);
    border-radius: 0 40px 40px 40px;
    opacity: 0.25;
    height: 50px;
    padding: 5px 20px;
    font-family: var(--font);
    font-weight: 700;
    transition:var(--transition);
    order: 3;
    background-color:var(--white);
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups .form-group.not-empty input {
    border: 1px solid var(--green);
    opacity: 1;
    color: var(--green);
    background-color:var(--white);
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups .form-group.c-has-error input {
    border: 1px solid var(--red);
    opacity: 1;
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups .form-group input:focus {
    opacity:1;
    outline:none!important;
    box-shadow:none!important;
    border: 1px solid var(--black);
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups .form-group textarea {
    border: 1px solid var(--black);
    border-radius: 0 40px 40px 40px;
    opacity: 0.25;
    height: 150px;
    padding: 5px 20px;
    font-family: var(--font);
    font-weight: 700;
    transition:var(--transition);
    order: 3;
    background-color:var(--white);
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups .form-group.not-empty textarea {
    border: 1px solid var(--green);
    opacity: 1;
    color: var(--green);
    background-color:var(--white);
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups .form-group.c-has-error textarea {
    border: 1px solid var(--red);
    opacity: 1;
}

.product-modal .modal-dialog .modal-content .modal-body .form-groups .form-group textarea:focus {
    opacity:1;
    outline:none!important;
    box-shadow:none!important;
    border: 1px solid var(--black);
}

.product-modal .modal-dialog .modal-content .modal-body .details {
    padding:20px;
}

.product-modal .modal-dialog .modal-content .modal-body .details .product-image {
    display: block;
    height: 35vh;
    border-radius: calc(1.5vw + 1.5vh);
    overflow: hidden;
}

.product-modal .modal-dialog .modal-content .modal-body .details .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal .modal-dialog .modal-content .modal-body .modal-gdpr {
    margin:20px auto;
}

.product-modal .modal-dialog .modal-content .modal-body .modal-gdpr input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid var(--black)!important;
    transition: var(--transition);
    background-color: var(--white);
}

.product-modal .modal-dialog .modal-content .modal-body .modal-gdpr input:checked {
    background-color: var(--black);
}

.product-modal .modal-dialog .modal-content .modal-body .modal-gdpr label {
    margin:0;
    font-family: var(--font);
    font-weight:200;
    color:var(--black);
    font-size:18px;
}

.product-modal .modal-dialog .modal-content .modal-body .modal-gdpr label a {
    color:var(--orange);
    font-weight: 200;
}

.scroll-to-top-product {
    position: fixed;
    bottom: 75px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: none;
}

.scroll-to-top-product a {
    width: 100%;
    height: 100%;
    background: var(--black);
    color: var(--white);
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.scroll-to-top-product a:hover {
    color:var(--white);
    background-color:var(--orange);
}

.scroll-to-top-product a:hover * {
    color:var(--white);
}

/* ------------------------------------------------------------ THANK YOU PAGE ------------------------------------------------------------ */

body.thank-you-page .navbar-expand-lg .navbar-nav .nav-link {
    color:var(--black);
}


.thank-you-wrapper {
    height: 100vh;
    padding-top: 10vh;
    display: flex;
    align-items: center;
}

.thank-you-row {
    width: 100%;
    margin: auto;
}

.thank-you-row .content-column {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:20px;
    text-align:center;
}

.thank-you-row .content-column .btn-wrapper {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.thank-you-row .image-column {
    padding:0;
}

.thank-you-row .image-column img {
    width: 100%;
    aspect-ratio: 1.75/1;
    border-radius: calc(2.5vw + 2.5vh);
}
/* Error page 404 */
/* .site-error {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
    background-color: #00000080;
}
.not-found-page-header h1,
.not-found-page-header h3 {
    color: white;
} */
.main_categories_404_page {
    max-width: 85vw;
    margin: auto;
    padding-top: 200px;
}
@media(max-width: 1500px) {
    .main_categories_404_page {
        max-width: unset;
        margin: auto;
        padding-top: 200px;
    }

}
.text_content_404 h1 {
	color: #fff;
}
.text_content_404 h2 {
	font-size: 22px;
	margin-top: 15px;
	color: #fff;
	text-transform: inherit;
}

.animated_header #submenu-47 {
	border-radius: 0 0 70px 70px !important;
	border-top: unset;
	box-shadow: unset;
	background: #fff;
}


/* Legal pages */
.legal_pages_content {
	max-width: 1440px;
	margin: auto;
	margin-top: 3rem;
	margin-bottom: 3rem;
	background: #0001;
	padding: 50px;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media(max-width: 1440px) {
    .legal_pages_content {
        padding: 15px 7.5px !important;
    }
}
.legal_pages_content h2 {
	color: var(--green);
	font-size: 25px;
	margin-top: 25px;
	margin-bottom: 10px;
}

/* Banner homepage css */
.row_banner {
	min-height: 500px;
	align-items: center;
	padding: 0 5vw;
	background-repeat: no-repeat;
	background-size: cover;
}
@media(max-width: 750px) {
    .row_banner {
        padding: 0 !important;
    }
}
.row_banner::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgb(0 0 0 / 55%) 25%, rgb(255 255 255) 96%);
}
.col_text_banner {
    z-index: 1;
}
.col_text_banner h2,
.col_text_banner p {
    color: #fff
}
.col_text_banner h2,
.col_text_banner p:last-child {
    margin-bottom: 25px !important;}
.col_text_banner p {
    font-weight: 400;
}

/* Lightbox */
.lb-number {
	display: none !important;
}
.lb-data .lb-caption {
	font-size: 18px !important;
}
.lb-data .lb-details {
	margin-top: 5px;
}

.title_product_page {
    margin-top: 60px;
    border-bottom: 2px solid #fff5;
    padding-bottom: 20px;
}
.title_product_page h1 {
    text-align: center;
    margin-bottom: 80px;
}
.title_product_page h2{
    font-size: 30px;
    margin-top: 15px;
    color: #fff;
    text-transform: inherit;
}

/* Contact header */
.contact_header {
    display: flex;
    gap: 15px;
}
.nav-link.header_phone {
	gap: 10px;
}


/* Dropdown menu */
.first_child_dropdown .dropdown .dropdown-menu {
	display: block;
	position: relative;
}

body.thankyou-page .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--black);
}


.thankyou-page {
    margin-top: 140px;
}

.thankyou-page .thank-you-row {
    margin-bottom: 150px;
}

.row.builder-row.thank-you-row.thankyou-page.my-5.py-5 .module-button {
    display: inline-block !important;
    margin-left: 30%;
}








.blog-item-wrapper {
    transition: transform 0.2s ease;
}

.blog-category-item {
    height: 100%;
}

.blog-item-inner {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--green);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-item-inner:hover {
    border-color: var(--orange);
}

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--light-gray);
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.blog-item-inner:hover .blog-image {
    transform: scale(1.05);
}

.blog-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-grow: 1;
    background: var(--white);
}

.title-description {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin: 0 0 0.5rem 0;
    transition: color 0.2s ease;
}

.title-description:hover {
    color: var(--orange) !important;
}

.post-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-arrow {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem 0.5rem 1rem;
     background-color: rgba(232, 119, 23, 0.05);
    border-radius: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.back-arrow:before {
    content: '←';
    font-size: 1.2rem;
    margin-right: 0.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.back-arrow:hover {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.back-arrow:hover:before {
    transform: translateX(-3px);
}

.blog-title-inner a {
    text-decoration: none;
    color: var(--orange);
}

.blog-title-inner a:hover .title-description {
    color: var(--green);
}

.short-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--black);
    margin: 0.75rem 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.date-clock {
    display: flex;
    justify-content: space-between;
    padding-inline: 1rem;
    gap: 1rem;
}

.blog-date, .blog-hour {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--green);
    align-items: center;
    letter-spacing: 0.02em;
    vertical-align: middle;
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background-color: rgba(0, 102, 55, 0.08);
    border-radius: 2rem;
    border: 1px solid var(--green);
}

.blog-date svg, .blog-hour svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
    opacity: 0.9;
    margin-right: 0.35rem;
}

.blog-title-inner a {
    position: relative;
    display: inline-block;
}

.blog-title-inner a:hover::after {
    width: 100%;
}

hr {
    border: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, var(--gray), transparent);
    margin: 1rem 0 0 !important;
    opacity: 0.3;
}


.page-header-background-blog {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 65vh;
    padding-top: 20vh;
    border-radius: 0 0 calc(2.5vw + 2.5vh) calc(2.5vw + 2.5vh);
    overflow: hidden;
}

.page-header-background-blog::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #120e00a6;
    z-index: 1;
}

.page-header-background-blog > * {
    position: relative;
    z-index: 2;
}

h1.post-title {
    color: var(--white);
}