/* =========================================
   UIIKCG THEME (10K Design Override)
   ========================================= */

/* Imports 
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;600&display=swap');
*/
:root {
    --el-navy: #1E293B;
    --el-dark: #1E293B;
    --el-gold: #D4AF37;
    --el-light: #f0f2f4;
    --el-gray: #334155;
    --el-lightblue: #eff6ff;
}
/* SiteOrigin/Theme Fixes for Full Width */
.page-template-page_front-page .site-main {
    padding: 0 !important;
    margin: 0 !important;
}
.page-template-page_front-page .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
}

/* Typography Overrides */
.elevate-wrap {
    font-family: 'Inter', sans-serif;
    color: var(--el-gray);
    line-height: 1.6;
}
.elevate-wrap h1, .elevate-wrap h2, .elevate-wrap h3, .elevate-wrap h4 {
    font-family: 'Playfair Display', serif;
    color: var(--el-navy);
    font-weight: 500;
}
/* Sections */
.el-section {
    padding: 3% 0 5%;
    position: relative;
    width: 100%;
    clear: both;
}
.el-bg-light { background-color: var(--el-light); }
.el-bg-dark { background-color: var(--el-navy); color: #fff; }
.el-bg-dark h2, .el-bg-dark p { color: #fff; }

/* Hero Section */
.el-hero {
    padding: 2% 0 5%;
    text-align: center;
}
.el-hero-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--el-lightblue);
    color: var(--el-navy);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 2px solid #DBEAFE;
}
.el-hero h1 {
    font-size: 5.6rem; /* Skeleton scale */
    line-height: 1.1;
    margin-bottom: 25px;
}
.el-hero p.subtitle {
    font-size: 2rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #64748B;
}

/* Buttons (Overrides roll-button) */
.el-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--el-navy);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--el-navy);
    /* margin: 10px; */
    text-decoration: none;
    font-size: 1.4rem;
}
.el-btn:hover {
    background: #fff;
    color: var(--el-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.el-btn-outline {
    background: transparent;
    color: var(--el-navy) !important;
    border: 2px solid #CBD5E1;
}

#experts a.el-btn:hover {
    background: #fff;
    color: #222 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
#experts a.el-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #CBD5E1;
}

/* Cards (Curriculums & Features) */
.el-card {
    background: #fff;
    padding: 40px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: left;
}
.el-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    border-color: var(--el-gold);
}
.el-tag {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #94A3B8;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}
.el-card h3 { font-size: 2.7rem; margin-bottom: 15px; }
.el-card .el-desc { margin-bottom: 25px; font-size: 1.4rem; }
.el-link { color: var(--el-navy); font-weight: 600; font-size: 1.4rem; }

/* How It Works (Timeline) */
.el-step {
    padding: 20px;
    text-align: center;
}
.el-step-num {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #E2E8F0;
    border-radius: 50%;
    line-height: 45px;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin: 0 auto 20px;
    color: var(--el-gray);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* Experts */
.el-expert-card { text-align: left; }
.el-expert-img {
    width: 100%;
    padding-bottom: 125%; /* 4:5 Aspect Ratio */
    background-size: cover;
    background-position: center;
    background-color: #334155;
    border-radius: 8px;
    margin-bottom: 20px;
}
.el-accent { color: var(--el-gold)!important; font-size: 1.6rem; font-weight: 600; margin-bottom: 10px; }
.el-expert-card h3 {color: var(--el-light);}

/* Pricing */
.el-pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    text-align: center;
}
.el-pricing-card.featured {
    background: var(--el-navy);
    color: #fff;
    border: none;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}
.el-pricing-card.featured h3, .el-pricing-card.featured p { color: #fff; }
.el-price { font-size: 3rem; font-family: 'Playfair Display'; margin: 20px 0; }

/* Responsive Adjustments for Skeleton */
@media (max-width: 750px) {
    .el-hero h1 { font-size: 3.5rem; }
    .one-third.column, .three.columns { width: 100% !important; margin-left: 0; margin-bottom: 30px; }
    .el-pricing-card.featured { transform: scale(1); }
}
/* Dugme Meet all Experts / Masterclasses */
.el-experts-container .el-btn-outline {
    color: #fff !important;
}
/*
.el-experts-container .el-btn-outline:hover {
    background-color: #D4AF37;
    color: #fff !important;
}*/

/* Osiguranje da su kolone u arhivama poravnate */
.el-archive-item {
    float: left;
    min-height: 450px;
}
/* **************************************************
   SiteOrigin Panels Full-width & fluid layout
  *************************************************** */
/************* SITE ORIGIN ******************/
.panel-grid, .siteorigin-panels .main-content.container {
max-width: unset;
}
.page-template-template-elevate-home .main-content.container{
padding:0;
}
.siteorigin-panels-home .main-content.container{
padding:0;
}
@media (min-width: 550px) {
.siteorigin-panels .main-content.container {
width: 100%;
}
@media (max-width: 767px) {
    .siteorigin-panels .main-content.container {
        padding: 0;
    }
}
}
.siteorigin-panels .entry-content {
max-width:none !important;
}
/************* SITE ORIGIN ******************/

/* **************************************************
   RESPONSIVE NASLOVI I TEKSTOVI (750px breakpoint)
   ************************************************** */

/* .el-hero-badge */
@media (max-width: 750px) {
    .el-hero-badge {
        font-size: 11px;          /* mobilni */
        padding: 6px 16px;        /* malo manje paddinga na malim ekranima */
    }
}
@media (min-width: 751px) {
    .el-hero-badge {
        font-size: 14px;          /* desktop */
        padding: 8px 20px;
    }
}

/* .el-btn */
@media (max-width: 750px) {
    .el-btn {
        font-size: 1.4rem;        /* mobilni */
        padding: 10px 24px;       /* malo kompaktnije dugme */
    }
}
@media (min-width: 751px) {
    .el-btn {
        font-size: 1.6rem;        /* desktop */
        padding: 12px 28px;
    }
}

/* .el-card p */
@media (max-width: 750px) {
    .el-card p {
        font-size: 1.4rem;        /* mobilni */
        line-height: 1.5;
    }
}
@media (min-width: 751px) {
    .el-card p {
        font-size: 1.6rem;        /* desktop */
        line-height: 1.6;
    }
}

/* .el-link (pretpostavljam da je ovo klasa za linkove u karticama ili tekstu) */
@media (max-width: 750px) {
    .el-link {
        font-size: 1.4rem;        /* mobilni */
    }
}
@media (min-width: 751px) {
    .el-link {
        font-size: 1.6rem;        /* desktop */
    }
}
@media (max-width: 750px){ 
    .el-step-num {
    width: 50px;
    height: 50px;
    font-size: 3rem;
    }
}

/* **************************************************
   DODATNA POBOLJŠANJA (korisno dodati odmah)
   ************************************************** */

/* Bolji razmak izmedju sekcija na mobilnom */
@media (max-width: 750px) {
    .el-section {
        padding: 40px 0;          /* manje vertikalnog prostora na mobilnom */
    }
    .el-hero {
        padding: 0 0 40px;     /* hero malo kompaktniji */
    }
}

/* Centriranje i fluidnost dugmadi u redu na mobilnom */
@media (max-width: 750px) {
    .el-btn + .el-btn {
        margin-top: 12px; /* dugmad idu jedno ispod drugog sa razmakom */
    }
}

/* Manje paddinga na karticama na mobilnom */
@media (max-width: 750px) {
    .el-card,
    .el-pricing-card,
    .el-masterclass-card,
    .el-curriculum-card {
        padding: 20px 15px;
    }
}

/* Fluidna velicina naslova sekcija (h2) 
h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem); 
}*/

.el-card .number {
    font-family: 'Playfair Display';
    font-size: clamp(2.5rem, 8vw, 4rem);   /* fluidno: min 40px, max 64px */
    color: #0f1729;
    margin-bottom: 10px;
    line-height: 1;
}
.faq-question {
    margin-bottom: 5px;
    font-size: clamp(2rem, 4vw, 2.4rem);
}
/* *********************************************************************
   ANEKS  RESPONSIVE VRIJEDNOSTI (750px breakpoint)
   Dodaje se na kraj postojeceg elevate.css
   ******************************************************************* */

/* .el-hero-badge */
@media (max-width: 750px) {
    .el-hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
}
@media (min-width: 751px) {
    .el-hero-badge {
        font-size: 14px;
        padding: 8px 20px;
    }
}

/* .el-btn */
@media (max-width: 750px) {
    .el-btn {
        font-size: 1.4rem;
        padding: 10px 24px;
    }
}
@media (min-width: 751px) {
    .el-btn {
        font-size: 1.6rem;
        padding: 12px 28px;
    }
}

/* .el-card p */
@media (max-width: 750px) {
    .el-card p {
        font-size: 1.4rem;
        line-height: 1.5;
    }
}
@media (min-width: 751px) {
    .el-card p {
        font-size: 1.6rem;
        line-height: 1.6;
    }
}
/* .el-step-num p*/
@media (max-width: 750px) {
    .three.columns.el-step p {
        font-size: 1.4rem;
        line-height: 1.5;
    }
}
@media (min-width: 751px) {
    .three.columns.el-step p {
        font-size: 1.6rem;
        line-height: 1.6;
    }
}

/* .el-link (linkovi u karticama, tekstu, pricing-u itd.) */
@media (max-width: 750px) {
    .el-link,
    .el-card a,
    .el-pricing-card a,
    .el-masterclass-card a {
        font-size: 1.4rem;
    }
}
@media (min-width: 751px) {
    .el-link,
    .el-card a,
    .el-pricing-card a,
    .el-masterclass-card a {
        font-size: 1.6rem;
    }
}

/* Bonus * male korisne stvari koje se cesto traze */

/* Brojevi 01/02/03 * bolje fluidno nego fiksno 4rem */
.el-card .number {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1;
}

/* Mobilno: stack kolona + manji padding */
@media (max-width: 750px) {
    .one-third.column,
    .three.columns {
        width: 100% !important;
        margin-left: 0 !important;
        margin-bottom: 30px !important;
    }

    .el-card,
    .el-pricing-card {
        padding: 25px 15px;
    }

    .el-btn + .el-btn {
        margin-top: 15px;
        margin-left: 0;
    }
}
/* Responsive YouTube video embed */
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Hover efekat */
.video-wrapper:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
/* Expert Position Label - Elevate Style */
.expert-position-label {
    /* font-family: 'Inter', sans-serif; */
    color: var(--el-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    /* font-weight: 600; */
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: block;
}

/* Prilagodjavanje Marco Rossi artikla da ne bude plav */
/* .single-experts article.experts {
    background: #ffffff;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
} */
/* =========================================
   IMAGE STRIP / FRIZ SLIKA
   ========================================= */
.el-image-strip {
    display: flex;
    height: var(--strip-height, 340px);
    gap: var(--strip-gap, 5px);
    overflow: hidden;
    width: 100%;
}

.el-strip-item {
    flex: 1 1 0;
    min-width: 0;
    background-size: cover;
    background-position: center;
    transition: flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ritmicna varijacija sirina */
.el-strip-item:nth-child(4n+1) { flex: 1.5; }
.el-strip-item:nth-child(4n+2) { flex: 0.8; }
.el-strip-item:nth-child(4n+3) { flex: 1.2; }
.el-strip-item:nth-child(4n+4) { flex: 1.0; }

/* Hover expand efekt */
.el-strip-hover .el-strip-item:hover { flex: 2.4; }

/* Zaobljeni krajevi trake */
.el-strip-rounded .el-strip-item:first-child { border-radius: 10px 0 0 10px; }
.el-strip-rounded .el-strip-item:last-child  { border-radius: 0 10px 10px 0; }

/* Mobile fiksna visina, ne smanjuje se drasticno */
@media (max-width: 750px) {
    .el-image-strip {
        height: var(--strip-height-mobile, 180px) !important;
        gap: 3px;
    }
    /* Na mobilnom nema hover */
    .el-strip-hover .el-strip-item:hover { flex: unset; }
}
/* Mobile: prikazi samo prve 3 */
@media (max-width: 750px) {
    .el-image-strip {
        height: var(--strip-height-mobile, 180px) !important;
        gap: 3px;
    }
    .el-strip-hover .el-strip-item:hover { flex: unset; }
    .el-strip-item:nth-child(n+4) { display: none; }
}

/* Notebook (751 - 1024px): prikazi samo prve 4 */
@media (min-width: 751px) and (max-width: 1024px) {
    .el-strip-item:nth-child(n+5) { display: none; }
}

/* Manji desktop (1025px-1440px): prikazi samo prvih 5 */
@media (min-width: 1025px) and (max-width: 1440px) {
    .el-strip-item:nth-child(n+6) { display: none; }
}

/* Veliki desktop (>1440px): prikazi sve nema ogranicenja */
/*--------------------------------------------------------------
# ELEVATE EXPERT - KIRKI COMPATIBLE LAYOUT
--------------------------------------------------------------*/

/* Glavni kontejner zadrzava boju pozadine teme ili koristi vrlo blagi ofset */
.single-experts #experts-wrapper {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

/* Redizajn artikla bez mijenjanja fontova */
.single-experts article.experts {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
    background: transparent; /* PoÅ¡tuje pozadinu teme */
}

/* Lijeva strana: Slika */
.single-experts .entry-header {
    flex: 0 0 350px;
    max-width: 100%;
    margin-bottom: 0;
}

.single-experts .entry-thumb {
    position: relative;
    line-height: 0; /* Ubija whitespace ispod slike */
}

.single-experts .entry-thumb img {
    border-left: 3px solid #D4AF37; /* Diskretan zlatni potpis sa strane */
    box-shadow: 15px 15px 0px -2px rgba(15, 23, 42, 0.05); /* Suptilna "offset" sjenka */
}

/* Desna strana: SadrÅ¾aj */
.single-experts .entry-content {
    flex: 1;
    min-width: 300px;
}

/* Naslov: Boja iz brenda, velicina iz Kirki-ja */
.single-experts .entry-title {
    color: #0F172A;
    margin-top: 0;
    position: relative;
    padding-bottom: 15px;
}

/* Zlatna linija ispod naslova */
.single-experts .entry-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #D4AF37;
}

/* Prvi paragraf (obicno pozicija) dobija zlatni naglasak */
.single-experts .entry-content p:first-of-type {
    color: #D4AF37;
    font-weight: 600; /* Ako Kirki dozvoljava override */
}

/* Breadcrumb stilizacija */
.single-experts .breadcrumb {
/*     border-bottom: 1px solid #eee;
    padding-bottom: 1rem; */
    /* margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px; */
}

/* Mobilna adaptacija */
@media (max-width: 850px) {
    .single-experts article.experts {
        flex-direction: column;
    }
    .single-experts .entry-header {
        flex: 0 0 auto;
        width: 100%;
    }
    .single-experts .entry-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
/*     .single-experts {
        text-align: center;
    } */
    .single-experts .entry-meta {
        margin: 0 ;
	}
}
/* Expert Position Label - Stil */
.single-experts .expert-position-label {
    color: #D4AF37; /* Zlatna boja iz ELEVATE brenda */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: normal;
    margin-bottom: 10px;
    display: block;

    font-size: 0.9em; 
}

/* Pozicioniranje u layout-u */
.single-experts .entry-content .expert-position-label {
    margin-top: -10px; /* PrimiÄe poziciju naslovu */
    margin-bottom: 20px;
}
.entry-meta {
        margin: 0 ;
}
/* =========================================
   SINGLE EXPERT PAGE Typography fix
   ========================================= */

/* Reset svih paragrafa na single expert stranici */
.single-experts .entry-content p {
    color: var(--el-gray) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.6;
}

/* Responsive veličina - ista kao na ostatku sajta */
@media (max-width: 750px) {
    .single-experts .entry-content p {
        font-size: 1.4rem;
        line-height: 1.5;
    }
}
@media (min-width: 751px) {
    .single-experts .entry-content p {
        font-size: 1.6rem;
        line-height: 1.6;
    }
}

/* Samo pozicija (expert-position-label) zadrzava zlatnu boju */
.single-experts .entry-content .expert-position-label,
.single-experts .entry-content p.expert-position-label {
    color: var(--el-gold) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.4rem !important;
}
/* =========================================
   EQUAL HEIGHT GRID ZA EXPERTE (Flexbox Fix)
   ========================================= */

/* 1. Pretvaramo glavni red sa ekspertima u Flexbox kontejner */
#experts .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* 2. Gasimo "plutanje" i pretvaramo same kolone u vertikalne Flex kontejnere */
#experts .column, 
#experts .columns {
    float: none !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* 3. Tjramo karticu da se razvuče na 100% visine svoje kolone */
.el-expert-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%; 
}

/* Opciono: Gura posljednji element u kartici (npr. dugme ili tag) uvijek na dno */
.el-expert-card > *:last-child {
    margin-top: auto;
}
/* =========================================================
   EQUAL HEIGHT GRID - FINALNO I NAJPRECIZNIJE RJEŠENJE
   ========================================================= */

@media (min-width: 768px) {
    
    /* 1. Flexbox samo za redove koji sadrže kartice (el-card ili el-expert-card) */
    .elevate-wrap .row:has(.el-card),
    .elevate-wrap .row:has(.el-expert-card) {
        display: flex !important;
        flex-wrap: wrap;
    }

    /* 2. Osiguravamo da kolone u tim redovima budu jednake visine */
    .elevate-wrap .row:has(.el-card) > .column,
    .elevate-wrap .row:has(.el-card) > .columns,
    .elevate-wrap .row:has(.el-expert-card) > .column,
    .elevate-wrap .row:has(.el-expert-card) > .columns {
        display: flex !important;
        flex-direction: column;
        float: none !important;
    }

    /* 3. KLJUČNI FIX: Dugmad se NIKADA ne smiju rastezati u Flex redovima */
    .elevate-wrap .row .el-btn, 
    .elevate-wrap .row .el-btn-outline {
        flex: 0 0 auto !important; /* Sprječava rastezanje */
        width: auto !important;    /* Vraća na prirodnu širinu sadržaja */
        display: inline-block !important;
        align-self: center;    /* Poravnava dugme na početak, ne razvlači ga */
    }
}

/* 4. Kartice se rastežu da popune prostor kolone */
.elevate-wrap .el-card,
.elevate-wrap .el-expert-card {
    display: flex !important;
    flex-direction: column;
    height: 100% !important;
}

/* 5. Guranje zadnjeg elementa (npr. ul ili p) na dno kartice */
.elevate-wrap .el-card > ul:last-child,
.elevate-wrap .el-card > p:last-child,
.elevate-wrap .el-expert-card > *:last-child {
    margin-top: auto;
}
/* =========================================
   HOMEPAGE DODACI
   ========================================= */

.el-container {
    max-width  : 960px;
    margin     : 0 auto;
    width      : 100%;
    display    : flex;
    flex-wrap  : wrap;
    gap        : 40px;
    box-sizing : border-box;
    padding    : 0 20px;
}
.el-col-12 { width: 100%; }
.el-col-6  { width: calc(50% - 20px); }

.el-hero p.el-subtitle {
    font-size  : 2rem;
    font-weight: 300;
    max-width  : 700px;
    margin     : 0 auto 40px;
    color      : #64748B;
}

.el-image-placeholder img {
    width        : 100%;
    height       : auto;
    border-radius: 8px;
    box-shadow   : 0 15px 30px rgba(0,0,0,0.08);
    display      : block;
}

/* el-btn-outline na tamnoj pozadini */
.el-bg-dark .el-btn-outline {
    color        : #fff !important;
    border-color : rgba(255,255,255,0.45);
}
.el-bg-dark .el-btn-outline:hover {
    background   : #fff;
    color        : var(--el-navy) !important;
    border-color : #fff;
}

@media (max-width: 768px) {
    .el-col-6     { width: 100%; }
    .el-container { gap: 24px; }
}
.el-container {
    max-width: 960px; margin: 0 auto; width: 100%;
    display: flex; flex-wrap: wrap; gap: 40px;
    box-sizing: border-box; padding: 0 20px;
}
.el-col-12 { width: 100%; }
.el-col-6  { width: calc(50% - 20px); }
.el-hero p.el-subtitle {
    font-size: 2rem; font-weight: 300;
    max-width: 700px; margin: 0 auto 40px; color: #64748B;
}
.el-image-placeholder img {
    width: 100%; height: auto; border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); display: block;
}
.el-bg-dark .el-btn-outline {
    color: #fff !important; border-color: rgba(255,255,255,0.45);
}
.el-bg-dark .el-btn-outline:hover {
    background: #fff; color: var(--el-navy) !important;
}
@media (max-width: 768px) {
    .el-col-6 { width: 100%; }
    .el-container { gap: 24px; }
}
/* Zastave u meniju */
.lang-me > a::before,
.lang-en > a::before {
    content        : '';
    display        : inline-block;
    width          : 20px;
    height         : 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align : middle;
    margin-right   : 6px;
}
.lang-me > a::before {
    background-image: url('../images/flag-me.svg');
}
.lang-en > a::before {
    background-image: url('../images/flag-en.svg');
}
