/* 
Core V.1.6.0 
Designed by Live Design
https://livedesign.ro
*/

/*----------------------------- RESET & UTILITIES -----------------------------*/
html, body, div, span, iframe, object, h1, h2, h3, h4, h5, h6, p, blockquote, small, strong, sub, sup, var, dl, dt, dd, ul, li, fieldset, form, label, legend, table, caption, pre, a, abbr, address, cite, code, del, dfn, em, ins, kbd, q, s, samp, tbody, tfoot, thead, tr, th,
td              {margin:0; padding:0; border:0; outline:0; vertical-align:baseline; background:transparent;}
img             {margin:0; padding:0; border:0; outline:0; text-decoration:none; background:transparent;}
ul              {list-style: none;}
strong          {font-weight: bold;}
:focus          {outline: 0;}
:focus-visible  {outline: 2px solid var(--lvd-color-primary); outline-offset: 3px; border-radius: 2px;}
* 			    {touch-action: manipulation; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box;}
.lvd-noclass    {}
.lvd-clear      {clear: both;}
.lvd-scrolloff  {overflow-y:hidden; position:fixed; top:0; left:0; right:0; bottom:0;}
.lvd-anchor     {position:absolute; z-index:-1; left:0; margin-top:-100px;}



/*----------------------------- TYPOGRAPHY -----------------------------*/
.lvd-text-bold 			{font-weight:700;}
.lvd-text-regular 	    {font-weight:400;}
.lvd-text-underline     {text-decoration: underline;}
.lvd-text-italic 		{font-style: italic;}

.lvd-text-left          {text-align:left;}
.lvd-text-center        {text-align:center;}
.lvd-text-right         {text-align:right;}



/*----------------------------- MEDIA -----------------------------*/
/* Image responsive */
.lvd-img-responsive     {max-width:100%; height:auto; vertical-align:bottom;}
.lvd-img-responsive img {max-width:100%; height:auto; vertical-align:bottom;}

/* Image cover */
.lvd-img-cover          {background-size:cover !important; background-position:center !important; background-repeat:no-repeat !important;}
.lvd-img-fit img        {object-fit: cover;}

/*Image blending — doar pe imagine, NU pe overlay-uri (badge/play/CTA) care pot sta în același wrapper*/
.lvd-image-blending img {mix-blend-mode: multiply;}

/* Aspect ratio */
.lvd-ratio-16-9         {aspect-ratio: 16 / 9;}
.lvd-ratio-4-3          {aspect-ratio: 4 / 3;}
.lvd-ratio-1-1          {aspect-ratio: 1 / 1;}

/* Video responsive */
.lvd-video              {position: relative; padding-bottom: 56.25%; margin: 0 auto; height: 0; overflow: hidden;}
.lvd-video iframe	    {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
.lvd-video video	    {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}



/*----------------------------- LAYOUT -----------------------------*/
/* Container */
.lvd-width-full       {width:100%;}
.lvd-width-stopper    {max-width: var(--lvd-width-stopper); width:100%; margin-left:auto; margin-right:auto;}
.lvd-width-fullhd     {max-width: var(--lvd-width-fullhd); margin-left:auto; margin-right:auto;}
.lvd-width-widescreen {max-width: var(--lvd-width-widescreen); margin-left:auto; margin-right:auto;}
.lvd-width-desktop    {max-width: var(--lvd-width-desktop); margin-left:auto; margin-right:auto;}
.lvd-width-tablet     {max-width: var(--lvd-width-tablet); margin-left:auto; margin-right:auto;}

/* Display */
.lvd-none             {display: none;}
.lvd-block            {display: block;}
.lvd-inline           {display: inline;}
.lvd-inline-block     {display: inline-block;}
.lvd-flex             {display: flex;}
.lvd-inline-flex      {display: inline-flex;}
.lvd-grid             {display: grid;}

/* Overflow */
.lvd-overflow-hidden    {overflow:hidden;}
.lvd-overflow-x-hidden  {overflow-x:hidden;}

/* Pointer events */
.lvd-pointer-events-none {pointer-events:none;}

/* FLEX */
.lvd-flex-row         {flex-direction: row;}
.lvd-flex-col         {flex-direction: column;}
.lvd-flex-wrap        {flex-wrap: wrap;}

.lvd-flex-grow        {flex-grow: 1;}
.lvd-flex-grow0       {flex-grow: 0;}

.lvd-flex-shrink      {flex-shrink: 1;}
.lvd-flex-shrink0     {flex-shrink: 0;}

/* Flex Columns — gap-aware (CSS gap property)
   Formula: calc(n/12 * 100% - var(--lvd-gap) * (12-n)/12)
   Funcționează corect pe rânduri uniforme; pentru layout-uri mixte → CSS Grid */
.lvd-flex-col-1       {max-width:calc(8.3333%  - var(--lvd-gap) * 11 / 12); width:100%;}
.lvd-flex-col-2       {max-width:calc(16.6667% - var(--lvd-gap) * 10 / 12); width:100%;}
.lvd-flex-col-3       {max-width:calc(25%       - var(--lvd-gap) * 9  / 12); width:100%;}
.lvd-flex-col-4       {max-width:calc(33.3333% - var(--lvd-gap) * 8  / 12); width:100%;}
.lvd-flex-col-5       {max-width:calc(41.6667% - var(--lvd-gap) * 7  / 12); width:100%;}
.lvd-flex-col-6       {max-width:calc(50%       - var(--lvd-gap) * 6  / 12); width:100%;}
.lvd-flex-col-7       {max-width:calc(58.3333% - var(--lvd-gap) * 5  / 12); width:100%;}
.lvd-flex-col-8       {max-width:calc(66.6667% - var(--lvd-gap) * 4  / 12); width:100%;}
.lvd-flex-col-9       {max-width:calc(75%       - var(--lvd-gap) * 3  / 12); width:100%;}
.lvd-flex-col-10      {max-width:calc(83.3333% - var(--lvd-gap) * 2  / 12); width:100%;}
.lvd-flex-col-11      {max-width:calc(91.6667% - var(--lvd-gap) * 1  / 12); width:100%;}
.lvd-flex-col-12      {max-width:100%; width:100%;}

/* Wings columns — permit micșorarea sub lățimea intrinsecă a conținutului (ex. <img> mare).
   Fără min-width:0, flex item-ul folosește min-width:auto = lățimea naturală a imaginii
   și împinge coloana 2 pe rând nou pe tabletă. Paritate cu grid-ul (minmax(0,1fr)). */
.lvd-column-image,
.lvd-column-content   {min-width:0;}

/* GRID */
.lvd-grid-flow-row    {grid-auto-flow: row;}
.lvd-grid-flow-col    {grid-auto-flow: column;}

/* Grid columns */
.lvd-grid-col-1       {grid-template-columns: repeat(1, minmax(0, 1fr));}
.lvd-grid-col-2       {grid-template-columns: repeat(2, minmax(0, 1fr));}
.lvd-grid-col-3       {grid-template-columns: repeat(3, minmax(0, 1fr));}
.lvd-grid-col-4       {grid-template-columns: repeat(4, minmax(0, 1fr));}
.lvd-grid-col-5       {grid-template-columns: repeat(5, minmax(0, 1fr));}
.lvd-grid-col-6       {grid-template-columns: repeat(6, minmax(0, 1fr));}
.lvd-grid-col-7       {grid-template-columns: repeat(7, minmax(0, 1fr));}
.lvd-grid-col-8       {grid-template-columns: repeat(8, minmax(0, 1fr));}

/* Justify content */
.lvd-justify-start    {justify-content: flex-start;}
.lvd-justify-center   {justify-content: center;}
.lvd-justify-center-safe {justify-content: safe center;}
.lvd-justify-end      {justify-content: flex-end;}
.lvd-justify-end-safe {justify-content: safe flex-end;}
.lvd-justify-between  {justify-content: space-between;}
.lvd-justify-around   {justify-content: space-around;}
.lvd-justify-evenly   {justify-content: space-evenly;}
.lvd-justify-stretch  {justify-content: stretch;}
.lvd-justify-baseline {justify-content: baseline;}
.lvd-justify-normal   {justify-content: normal;}

/* Justify items */
.lvd-justify-items-start    {justify-items: start;}
.lvd-justify-items-center   {justify-items: center;}
.lvd-justify-items-center-safe {justify-items: safe center;}
.lvd-justify-items-end      {justify-items: end;}
.lvd-justify-items-end-safe {justify-items: safe end;}
.lvd-justify-items-stretch  {justify-items: stretch;}
.lvd-justify-items-normal   {justify-items: normal;}

/* Align content */
.lvd-align-content-normal  {align-content: normal;}
.lvd-align-content-center  {align-content: center;}
.lvd-align-content-start   {align-content: flex-start;}
.lvd-align-content-end     {align-content: flex-end;}
.lvd-align-content-between {align-content: space-between;}
.lvd-align-content-around  {align-content: space-around;}
.lvd-align-content-evenly  {align-content: space-evenly;}
.lvd-align-content-baseline {align-content: baseline;}
.lvd-align-content-stretch {align-content: stretch;}

/* Align items */
.lvd-align-items-start 	    {align-items: flex-start;} 
.lvd-align-items-end     	{align-items: flex-end;}
.lvd-align-items-center 	{align-items: center;}
.lvd-align-items-stretch 	{align-items: stretch;}
.lvd-align-items-baseline   {align-items: baseline;}

/* Align self */
.lvd-align-self-start       {align-self: flex-start;}
.lvd-align-self-end 	    {align-self: flex-end;}
.lvd-align-self-center 	    {-ms-grid-row-align:center; align-self:center;} 

/* Order */
.lvd-order-1          {order:1;}
.lvd-order-2          {order:2;}
.lvd-order-3          {order:3;}
.lvd-order-4          {order:4;}
.lvd-order-5          {order:5;}
.lvd-order-6          {order:6;}
.lvd-order-7          {order:7;}
.lvd-order-8          {order:8;}

/* Position */
.lvd-relative         {position: relative;}
.lvd-absolute         {position: absolute;}
.lvd-fixed            {position: fixed;}
.lvd-sticky           {position: sticky;}
.lvd-inset-0          {top: 0px; right: 0px; bottom: 0px; left: 0px;}

/* Container center */
.lvd-align-center     {margin:0 auto;}

/* Place */
.lvd-place-lt { justify-content: flex-start; align-items: flex-start; } 
.lvd-place-lc { justify-content: flex-start; align-items: center; }    
.lvd-place-lb { justify-content: flex-start; align-items: flex-end; }  

.lvd-place-ct { justify-content: center; align-items: flex-start; }  
.lvd-place-cc { justify-content: center; align-items: center; }       
.lvd-place-cb { justify-content: center; align-items: flex-end; }    

.lvd-place-rt { justify-content: flex-end; align-items: flex-start; } 
.lvd-place-rc { justify-content: flex-end; align-items: center; }    
.lvd-place-rb { justify-content: flex-end; align-items: flex-end; }   


/*############################# MOBILE (bm-) #############################*/
@media (min-width:1px) and (max-width:767px)
{

/*----------------------------- LAYOUT -----------------------------*/
/* Display */
.bm-lvd-none             {display: none;}
.bm-lvd-block            {display: block;}
.bm-lvd-inline           {display: inline;}
.bm-lvd-inline-block     {display: inline-block;}
.bm-lvd-flex             {display: flex;}
.bm-lvd-inline-flex      {display: inline-flex;}
.bm-lvd-grid             {display: grid;}

/* Flex Columns */
.bm-lvd-flex-col-1       {max-width:calc(8.3333%  - var(--lvd-gap) * 11 / 12); width:100%;}
.bm-lvd-flex-col-2       {max-width:calc(16.6667% - var(--lvd-gap) * 10 / 12); width:100%;}
.bm-lvd-flex-col-3       {max-width:calc(25%       - var(--lvd-gap) * 9  / 12); width:100%;}
.bm-lvd-flex-col-4       {max-width:calc(33.3333% - var(--lvd-gap) * 8  / 12); width:100%;}
.bm-lvd-flex-col-5       {max-width:calc(41.6667% - var(--lvd-gap) * 7  / 12); width:100%;}
.bm-lvd-flex-col-6       {max-width:calc(50%       - var(--lvd-gap) * 6  / 12); width:100%;}
.bm-lvd-flex-col-7       {max-width:calc(58.3333% - var(--lvd-gap) * 5  / 12); width:100%;}
.bm-lvd-flex-col-8       {max-width:calc(66.6667% - var(--lvd-gap) * 4  / 12); width:100%;}
.bm-lvd-flex-col-9       {max-width:calc(75%       - var(--lvd-gap) * 3  / 12); width:100%;}
.bm-lvd-flex-col-10      {max-width:calc(83.3333% - var(--lvd-gap) * 2  / 12); width:100%;}
.bm-lvd-flex-col-11      {max-width:calc(91.6667% - var(--lvd-gap) * 1  / 12); width:100%;}
.bm-lvd-flex-col-12      {max-width:100%; width:100%;}

/* Grid columns */
.bm-lvd-grid-col-1      {grid-template-columns: repeat(1, minmax(0, 1fr));}
.bm-lvd-grid-col-2      {grid-template-columns: repeat(2, minmax(0, 1fr));}
.bm-lvd-grid-col-3      {grid-template-columns: repeat(3, minmax(0, 1fr));}

/* Order */
.bm-lvd-order-1       {order:1;}
.bm-lvd-order-2       {order:2;}
.bm-lvd-order-3       {order:3;}

/* Place */
.bm-lvd-place-lt { justify-content: flex-start; align-items: flex-start; }
.bm-lvd-place-lc { justify-content: flex-start; align-items: center; }
.bm-lvd-place-lb { justify-content: flex-start; align-items: flex-end; }

.bm-lvd-place-ct { justify-content: center; align-items: flex-start; }
.bm-lvd-place-cc { justify-content: center; align-items: center; }
.bm-lvd-place-cb { justify-content: center; align-items: flex-end; }

.bm-lvd-place-rt { justify-content: flex-end; align-items: flex-start; }
.bm-lvd-place-rc { justify-content: flex-end; align-items: center; }
.bm-lvd-place-rb { justify-content: flex-end; align-items: flex-end; }

}
/*############################# END MOBILE (bm-) #############################*/




/*############################# TABLET (bt-) #############################*/
@media (min-width:768px) and (max-width:1024px)
{
/*----------------------------- LAYOUT -----------------------------*/
/* Flex Columns */
.bt-lvd-flex-col-1       {max-width:calc(8.3333%  - var(--lvd-gap) * 11 / 12); width:100%;}
.bt-lvd-flex-col-2       {max-width:calc(16.6667% - var(--lvd-gap) * 10 / 12); width:100%;}
.bt-lvd-flex-col-3       {max-width:calc(25%       - var(--lvd-gap) * 9  / 12); width:100%;}
.bt-lvd-flex-col-4       {max-width:calc(33.3333% - var(--lvd-gap) * 8  / 12); width:100%;}
.bt-lvd-flex-col-5       {max-width:calc(41.6667% - var(--lvd-gap) * 7  / 12); width:100%;}
.bt-lvd-flex-col-6       {max-width:calc(50%       - var(--lvd-gap) * 6  / 12); width:100%;}
.bt-lvd-flex-col-7       {max-width:calc(58.3333% - var(--lvd-gap) * 5  / 12); width:100%;}
.bt-lvd-flex-col-8       {max-width:calc(66.6667% - var(--lvd-gap) * 4  / 12); width:100%;}
.bt-lvd-flex-col-9       {max-width:calc(75%       - var(--lvd-gap) * 3  / 12); width:100%;}
.bt-lvd-flex-col-10      {max-width:calc(83.3333% - var(--lvd-gap) * 2  / 12); width:100%;}
.bt-lvd-flex-col-11      {max-width:calc(91.6667% - var(--lvd-gap) * 1  / 12); width:100%;}
.bt-lvd-flex-col-12      {max-width:100%; width:100%;}

/* Grid columns */
.bt-lvd-grid-col-1       {grid-template-columns: repeat(1, minmax(0, 1fr));}
.bt-lvd-grid-col-2       {grid-template-columns: repeat(2, minmax(0, 1fr));}
.bt-lvd-grid-col-3       {grid-template-columns: repeat(3, minmax(0, 1fr));}
.bt-lvd-grid-col-4       {grid-template-columns: repeat(4, minmax(0, 1fr));}

}
/*############################# END TABLET (bt-) #############################*/








/*############################# ACCESSIBILITY #############################*/
.lvd-sr-only    {position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;}

@media (prefers-reduced-motion: reduce) {
    .lvd-animate-on-scroll {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none;
    }
}
/*############################# END ACCESSIBILITY #############################*/