/* fonty */

@font-face  {font-family: "SourceSans";	src: url("../fonts/SourceSans/SourceSansPro-Light.ttf");             font-weight: 300;}
@font-face  {font-family: "SourceSans";	src: url("../fonts/SourceSans/SourceSansPro-LightItalic.ttf");       font-weight: 300;   font-style: italic;}

@font-face  {font-family: "SourceSans";	src: url("../fonts/SourceSans/SourceSansPro-Regular.ttf");}
@font-face  {font-family: "SourceSans";	src: url("../fonts/SourceSans/SourceSansPro-Italic.ttf");                                font-style: italic;}

@font-face  {font-family: "SourceSans";	src: url("../fonts/SourceSans/SourceSansPro-SemiBold.ttf");              font-weight: 600;}
@font-face  {font-family: "SourceSans";	src: url("../fonts/SourceSans/SourceSansPro-SemiBoldItalic.ttf");        font-weight: 600;	font-style: italic;}

@font-face  {font-family: "SourceSans";	src: url("../fonts/SourceSans/SourceSansPro-Bold.ttf");              font-weight: bold;}
@font-face  {font-family: "SourceSans";	src: url("../fonts/SourceSans/SourceSansPro-BoldItalic.ttf");        font-weight: bold;	font-style: italic;}

@font-face  {font-family: "SourceSans";	src: url("../fonts/SourceSans/SourceSansPro-Black.ttf");             font-weight: 900;}
@font-face  {font-family: "SourceSans";	src: url("../fonts/SourceSans/SourceSansPro-Blacktalic.ttf");        font-weight: 900;	font-style: italic;}

/*@import url("/../fonts/awesome/css/font-awesome.min.css");*/

/* normalize */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
  display: block;
}
article,aside,details,div,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
  box-sizing: border-box;
}
audio,canvas,progress,video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,strong {
  font-weight: bold;
}
i,em {
  font-style: italic;
  color: inherit;
}
dfn {
  font-style: italic;
}
mark {
  color: #000;
  background: #ff0;
}
small {
  font-size: 80%;
}
sub,sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  height: 0;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
pre {
  overflow: auto;
}
code,kbd,pre,samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,input,optgroup,select,textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}
button {
  overflow: visible;
}
button,select {
  text-transform: none;
}
button,html input[type="button"],input[type="reset"],input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}
legend {
  padding: 0;
  border: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}



/* premenné */
:root {
    --SEDA05: #F2F2F2;
    --SEDA10: #E7E7E7;
    --SEDA20: #CFCFCF;
    --SEDA30: #B7B7B7;
    --SEDA40: #9F9F9F;
    --SEDA50: #878787;
    --SEDA60: #6C6C6C;
    --SEDA70: #515151;
    --SEDA80: #363636;
    --SEDA90: #1B1B1B;
    
    --ORCHID: #C637C3;
    --PURPUR: #FF00FF;
    --MODRA: #5957DD;
    --TMAVAMODRA: #07004C;
    --TMAVABELASA: #3490dd;
    --NAVYBLUE: #0C0080;
    --STREDNAMODRA: #4020D6;
  
}




/* základné */

body
  {
    font-family: 'SourceSans', sans-serif;
    font-size: 26px;
    font-weight: normal;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: var(--SEDA60); 
    background-color: white;
    position: relative;
    margin: 0px;
    padding: 0px;
    text-rendering: geometricPrecision;
    font-kerning: normal;
  }
a {
    color: var(--ORCHID);
    text-decoration: none;
    cursor: pointer;
    transition: color .3s;
}
a:hover {
    color: var(--PURPUR);
    text-decoration: none;
}
article a {
    color: var(--ORCHID);
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: color .3s, background-color .3s;
}
article a:hover {
    color: var(--PURPUR);
    text-decoration: none;
}
article .WEtext a {
}
h1 {
    font-family: 'SourceSans', sans-serif;
    font-weight: bold;
    font-size: 60px;
    margin-top: -4px;
    margin-bottom: 78px;
    /*letter-spacing: 0.01em;*/
    line-height: 1.1;
    color: var(--NAVYBLUE);
}
h2 {
    font-size: 46px;
    margin-top: 58px;
    line-height: 1.1;
}
h3 {
    font-size: 41.5px;
    margin-top: 54px;
    line-height: 1.1;
}
h4 {
    font-size: 37px;
    margin-top: 48px;
    line-height: 1.2;
}
h5 {
    font-size: 32.5px;
    margin-top: 44px;
    line-height: 1.3;
}
h6 {
    font-size: 28px;
    line-height: 1.3;
    margin-top: 40px;
}
h2, h3, h4 {
    /*letter-spacing: 0.03em;*/
}
h5, h6 {
    /*letter-spacing: 0.02em;*/
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'SourceSans', sans-serif;
    font-weight: bold;
    text-align: left;
}
h2, h3, h4 {
    color: var(--NAVYBLUE);
}
h5, h6 {
    color: var(--STREDNAMODRA);
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: -10px;
}
h2, h3, h4, h5, h6 {
    /*letter-spacing: 0.02em;*/
    margin-bottom: 12px;
}
h1 + h2 {
    margin-top: 31px;
}
p {
    font-size: 26px;
    /*margin-top: 12px;*/
    margin-bottom: 12px;
    font-weight: normal;
}
p + ol, p + ul {
    margin-top: 8px;
    margin-bottom: 12px;
}
.perex {
    max-width: 100vw;
    max-width: calc(100vw - 20px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 6px;
    margin-bottom: 28px;
}
.perex, .perex p {
    font-size: 19px;
    font-weight: bold;
    color: var(--SEDA80);
    line-height: 140%;
    letter-spacing: 0.02em;
}
.obsah ul, .obsah ol {
    margin-top: 16px;
    margin-bottom: 24px;
}
.obsah ul {
/*    list-style-type: disc;
    list-style-position: outside;*/
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
}
.obsah ul li {
    background: url('../img/bullet-blue.svg') no-repeat 0px 13px transparent;
    background-size: 9px 18px;
    background-position: 0 13px;
    padding-left: 30px;
    margin-left: 20px;
}
.obsah ul li, .obsah ol li {
    font-size: 104%;
}
.obsah li {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 10px;
    padding-top: 2px;
}
.obsah ol {
    padding-left: 48px;
}
hr {
    background-color: #DDD;
    height: 1px;
    border: none;
    border-color: #DDD;
}
.WEurl, .WEartc {
    width: 1400px;
    padding: 17px 0 15px 0; 
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.WEalst .WEartc {
    width: auto;
    display: inline-block;
    padding: 4px 0; 
}
.WEhr {
    background-color: transparent;
    height: 0px;
    border-top: solid 1px var(--SEDA30);
}
.HR100text {
    width: 1400px;
    max-width: calc(100vw - 20px);
    margin: 20px auto;
    border-top: solid 1px var(--SEDA30);
    background-color: transparent;
    height: 0px;
}
hr.bodkovana {
    background-color: transparent;
    width: 100%;
    height: 0px;
    border: none;
    border-top: 7px dotted var(--SEDA30);
    margin: 40px auto 40px auto;
}
.WEtext, .WEalst, .WEyoutube, .WEfile {
    width:100%;
    margin: 0 auto; 
    position: relative;
}
.WEfile a {
    margin-left: 0;
    padding-left: 0;
}
.WEfile a:before {
    padding-right: 15px;
    font-family:'FontAwesome';
    font-style: normal;
    color: var(--TMAVA);
}
.WEfile.nastiahnutie a:before {
    content: '';
}
.WEfile.subor a:before {
    content: '';
}
.WEfile.suborObrazok a:before {
    content: '';
}

.WEyoutube iframe {
    max-width: 100%;
}
.WEimg {
    margin-top: 6px;
    margin-bottom: 20px;
    max-width: 100%;
}
.imgRight {
    width: 36%;
    height: auto;
    float: right;
    margin-right: 3%;
}
.imgLeft {
    width: 36%;
    height: auto;
    float: left;
    margin-right: 3%;
}
article img.obrVlavo, article img[align="left"], .WEimgLeft {
	margin: 15px 40px 20px 0px !important;
	float:left;
}
article img.obrVpravo, article img[align="right"], .WEimgRight {
	margin: 15px 0px 20px 40px;
	float:right;
}
.WEimgAlone, .WEimgAlone.WEimgRight, .WEimgAlone.WEimgLeft {
    clear: both;
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding-left: calc((100% - 1400px) / 2);
    padding-right: calc((100% - 1400px) / 2);
    float: none;
}
article .WEimgAlone a {
    display: block;
}
.WEimgLeft {
    clear: both;
    display: inline-block;
    margin: 10px 30px 20px 0;
    padding-left: calc((100% - 1400px) / 2);
}
.WEimgRight {
    clear: both;
    display: inline-block;
    margin: 10px 0 20px 30px;
    padding-right: calc((100% - 1400px) / 2);
}
.WEimgLeft a, .WEimgRight a {
    position: relative;
    z-index: 10;
}
.sectionLeft {
    width: 60%;
    float: left;
}
.sectionRight {
    width: 60%;
    float: right;
}
.txtCelaSirka {
    width: 100%;
}
.wideImage {
    display: block;
    width: 100%;
    height: auto;
}
.tl {
    text-align: left;
}
.tr {
    text-align: right;
}
.tc {
    text-align: center;
}
.tj {
    text-align: justify;
}

.obsah {
/*    width: 750px;
    float: left;    */
}
article {
    /*margin-top: 60px;*/
}
.poznamka {
    font-size: 81%;
    color: var(--SEDA40);
    padding-top: 20px;
    border-top: solid 1px var(--SEDA40);
    margin-top: 30px;
    margin-bottom: 20px;
}
.popis {
    font-style: italic;
    font-size: smaller;
    font-weight: 300;
    color: var(--SEDIVA);
}

.fl {
    float: left;
}
.fr {
    float: right;
}
.cl {
    clear: both;
}
.vyrazny {
    color: var(--TMAVA);
    font-weight: bold;
    font-size: 106%;
    letter-spacing: .03em;
}
.mt {
    margin-top: 30px;
}
.mt60 {
    margin-top: 60px;
}
.mt15 {
    margin-top: 15px;
}
.mb {
    margin-bottom: 30px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb15 {
    margin-bottom: 15px;
}
.pt {
    padding-top: 30px;
}
.pt20 {
    padding-top: 20px;
}
.pt10 {
    padding-top: 10px;
}
.pb {
    padding-bottom: 30px;
}
.pb20 {
    padding-bottom: 20px;
}
.pb10 {
    padding-bottom: 10px;
}
.skryte {
    width: 0;
    height: 0;
    position: absolute;
    bottom:0;
    left: 0;
}
.zobrazene {
    display: block;
    opacity: 1;
}
.nezobrazene {
    display: none;
    opacity: 0;
}

/* layout */
.wrapper {
    width: 1400px;
    margin: 0 auto; 
}
.wrapperWide {
    width: 100%;
    margin: 0; 
}
.container {
    width: 1400px;
    padding: 0; 
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
header {
    width: 100%;
    /*height: 100px;*/
    position: relative;
    margin-bottom: 0px;
}
footer {
    overflow: hidden;
}
.home header {
    margin-bottom: 0;
}

.lista {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    opacity: 1;
}
#stick {
    display: block;
    z-index: 200;
    position: fixed;
    top: -51px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--TMAVAMODRA);
    text-align: center;
    -webkit-transition: top 1s;
    transition: top 1s;
}
.home #stick {
    /*display:none;*/
}
#stick.vidno {
    top: 0;
}
#stick .mainMenu {
    position: relative;
    width: 100%;
    bottom: 0;
    right: 0;
    margin: 4px auto 0;
    text-align: center;    
}
#stick .mainMenu ul {
    display: inline-block;
    padding: 0;
    margin: 0 auto;
    text-align: center;    
}
#stick .mainMenu li, #stick .mainMenu .stickMeno {
    display: inline-block;
    padding: 0;
    margin: 0 16px;
    font-size: 21px;
    color: var(--TMAVABELASA);
}
#stick .mainMenu li.stickMeno {
    margin-right: 50px;
}
#stick .mainMenu li a {
    display: block;
    font-family: 'SourceSans';
    font-size: 21px;
    text-transform: uppercase;
    color: white;
}
#stick .mainMenu li a:hover {  
    color: var(--MODRA);
}
#stick .mainMenu {
    top: 0;
}

.siteMenu ul ul li {
    padding-left: 30px;
    /*height: 30px;*/
    line-height: 1.5;
}
.siteMenu ul ul li a {
    font-size: 22px;
    font-weight: 600;
}
.siteMenu ul ul ul li a {
    font-size: 20px;
    font-weight: normal;
}
.siteMenu ul li a {
    color: var(--ORCHID);
}
/*.siteMenu ul li:hover a, .siteMenu ul li:focus a, .siteMenu ul li:active a {*/
.siteMenu a:hover, .siteMenu a:focus, .siteMenu a:active {
    color: var(--PURPUR);
}
.siteMenu .uk-accordion-title::before {
    background-image: url("../img/ikona-dole-mala.svg");
    background-size: 20px 20px;
}
.siteMenu .uk-open > .uk-accordion-title::before {
    background-image: url("../img/ikona-hore-mala.svg");
    background-size: 20px 20px;
}
.blockBodyInside ul.SecondItemMenu {
    margin-top: 20px;
}
.ikonyMenu.flexContainer, #stick.vidno .ikonyMenu.flexContainer {
/*    display: none;*/
}
.siteMenu > ul > div.uk-accordion {
    margin-top: 20px;
}
#jazycek {
    position: absolute;
    top: -34px;
    left: 20vw;
    z-index: 101;
    cursor: pointer;
}

.meno {
    position: absolute;
    top: 31px;
    left: 60px;
    font-family: 'SourceSans', sans-serif;
    font-weight: 600;
    font-size: 53px;
    text-align: left;
    letter-spacing: 0;    
    color: white;
}
.portret {
    position: absolute;
    bottom: 60px;
    left: 60px;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border: solid 3px white;
}
.portret img {
    display: block;
    width: 100%;
    height: auto;
}

.logo {
    display: block;
    position: absolute;
    left: 0;
    top: 40px;
    width: 41px;
}
.logo img {
    display: block;
    width: 100%;
    height: auto;
}

.LogoFEI {
    display: block;
    position: absolute;
    top: 24px;
    left: 60px;
    width: 96px;
    height: auto;
}
.LogoUMIKT {
    display: block;
    position: absolute;
    top: 24px;
    left: 200px;
    width: 100px;
    height: auto;
}

.mainMenu {
    position: absolute;
    right: 60px;
    top: 29px;
    text-align: right;
}
.mainMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mainMenu ul.flexContainer {
    gap: 35px;
    justify-content: space-between;
}
.mainMenu li {
    /*display: inline-block;*/
    /*margin-left: 35px;*/
}
.mainMenu ul li a {
    font-size: 33px;
    color: white;
    text-transform: uppercase;
}
.mainMenu ul li:hover a {
    color: var(--TMAVABELASA);
}
.mainMenu > ul > li {
    position: relative;
    padding-bottom: 20px;
}
.mainMenu ul ul {
    display: none;
    position: absolute;
    width: 200px;
    top: 50px;
    left: 0;
    background-color: white;
    border: solid 1px var(--MODRA);
    margin: 0;
    z-index: 1000;
}
.mainMenu > ul > li:last-child ul {
    left: auto;
    right: 0;
}
.mainMenu ul ul li {
    margin: 0;
    padding: 0 10px 0 20px;
    text-align: left;
}
.mainMenu ul ul li:first-child {
    margin-top: 6px;
}
.mainMenu ul ul li:last-child {
    margin-bottom: 6px;
}
.mainMenu ul ul li a {
    font-size: 23px;
    color: var(--MODRA);
    text-transform: none;
    text-align: left;
    margin: 0;
}
.mainMenu ul ul li:hover a {
    color: var(--ORCHID);
}
.mainMenu > li {
    position: relative;
}
.mainMenu > ul > li:hover ul, .mainMenu > ul > li:focus-within ul {
    display: block;
}
#menu_bars {
    position: absolute;
    right: 30px;
    top: 25px;
    text-align: right;
    cursor: pointer;
}
#menu_bars img {
    width: 30px;
    height: auto;
}
.socialMenu {
    position: absolute;
    top: 18px;
    right: 0;
    text-align: right;
}
.socialMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.socialMenu li {
    display: inline-block;
    margin-left: 24px;
}
.socialMenu li a {
    display: block;
    opacity: 0.6;
}
.socialMenu li a:hover {
    opacity: 1;
}
.socialMenu li a img {
    display: block;
    height: 21px;
    width: auto;
}
.sekcia {
    padding-bottom: 20px;
    padding-top: 20px;
}



.onlyWideScreen {
    display: block;
}
.onlyNarrowScreen {
    display: none;
}
.inlineBlock {
    display: inline-block;
}
#top {
    position: relative;
}

#map_canvas {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 90vh;
}

.splitter.flexContainer {
    justify-content: space-between;
    gap: 50px;
}
aside {
    width: 420px;
    /*margin-bottom: 60px;*/
}
main {
    width: 920px;
    margin-bottom: 70px;    
}
.sideBlock {
    margin-bottom: 70px;
}
.blockHead {
    /*height: 58px;*/
    background-color: var(--STREDNAMODRA);
    padding: 10px 50px 10px 60px;
    font-size: 30px;
    font-weight: 900;
    color: white;
    background-image: url('../img/roh-lh2.svg');
    background-repeat: no-repeat;
    background-size: 29px 31px;
    background-position: -1px -1px;
}
.blockBody {    /* vonkajšia časť rámu */
    background-color: var(--STREDNAMODRA);
    position: relative;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 34px),
      calc(100% - 26px) 100%,
      0% 100%,
      0% 0%
    );
}
.blockBody:before {    /* vnútorná časť rámu */
    content: "";
    position: absolute;
    top: 0;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 2px);
    background-color: white;
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 33.3px),
      calc(100% - 25.4px) 100%,
      0% 100%,
      0% 0%
    );
}
.blockBodyInside {      /* obsah */
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: transparent;
    padding: 45px 50px 45px 60px;
    font-size: 22px;
    font-weight: normal;
    color: var(--SEDA60);
}
.sideMenu .blockHead {
    background-color: var(--TMAVAMODRA);
    background-image: url('../img/roh-lh2.svg'), url('../img/topbar2-bg.png');
    background-repeat: no-repeat, no-repeat;
    background-size: 29px 31px, 1000px auto;
    background-position: -1px -1px, -468px 0px;
}
.sideMenu .blockBody {
    background-color: var(--NAVYBLUE);
    color: white;
}
.sideMenu .blockBody:before {
    display: none;
}
.blockBodyInside ul { 
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.blockBodyInside li {
    vertical-align: top;
}
.blockBodyInside li a {
    font-size: 24px;
    font-weight: bold;
}
.blockBodyInside a {
    font-size: 26px;
    font-weight: bold;
}
.blockBodyInside .hodnota {
    font-size: 26px;
    font-weight: bold;
    color: var(--MODRA);
}
.blockBodyInside p {
    font-size: 22px;
    line-height: 1.23;
}
.blockBodyInside p:last-child {
    margin-bottom: 0;
}

.stop {
    width: 130px;
    height: 32px;
    display: inline-block;
}

/* mobile menu */
.mobileMenuScreen {
    display: block;
    width: 400px;
    max-width: 80vw;
    max-height: calc(100vh - 200px);
    position: fixed;
    top: 100px;
    left: calc(-80vw - 2px);
    left: -250px;
    left: -402px;
    z-index: 155;
    -moz-transition: left 0.8s, width 0.8s;
    transition: left 0.8s, width 0.8s;
}
.mobileMenuScreenContent {
    width: auto;
    max-height: calc(100vh - 200px);
    position: relative;
    top: 0;
    left: 0;
    overflow: scroll;
    padding: 30px 30px 30px 30px;
    border: solid 1px var(--STREDNAMODRA);
    background-color: var(--TMAVAMODRA);
}
.mobileMenuScreenContent ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobileMenuScreenContent ul li {
    margin-top: 0;
}
.mobileMenuScreenContent ul li a {
    font-size: 24px;
    font-weight: bold;
}
.mobileMenuScreenContent > ul > li > a {
    text-transform: uppercase;
    font-size: 22px;
}
.mobileMenuScreenContent ul ul {
    margin-left: 20px;
}
.mobileMenuScreenContent ul ul li a {
    /*color: white;*/
}
.mobileMenuScreenContent ul ul li:hover a {
    /*color: var(--PURPUR);*/
}
.mobileMenuScreenContent ul ul ul li a {
    font-size: 20px;
}
.mobileMenuScreenContent .siteMenu > ul:first-child > li {
    /*margin-top: 20px;*/
    margin-bottom: 20px;
}
.mobileMenuScreen .ucho {
    width: 40px;
    position: absolute;
    top: -37px;
/*    left: calc(50vw - 20px);*/
    right: 62px;
    z-index: 160;
    cursor: pointer;
}
.mobileMenuScreen.vysunute {
    left: -2px;
}
.bars {
    position: absolute;
    right: 0;
    top: 40px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.menu_close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 156;
}
.menu_close img {
    /*display: none;*/
    width: 30px;
    height: auto;
    transform: rotate(0);
    -webkit-transition: all 1s;
    transition: all 1s;
}
.menu_close:hover img, .menu_close:active img, .menu_close:focus img {
    transform: rotate(180deg);
}

.lang {
    position: absolute;
    right: 60px;
    top: 30px;
    display: block;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: white;
    border: solid 2px white;
    padding: 4px;
    line-height: 1;
}
/* flex content */

/*.flexContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}*/
.gridContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}
.gridItem {
    min-width: 200px;
    padding: 0px;
}
.gridItem img {
    max-width: 100%;
}

/* obsah */
.publications-author {
    color: var(--SEDA80); 
    margin-top: 34px;
    display: inline-block;
}
.publications-name {
    color: var(--MODRA);   
    font-weight: 600;
}
.publications-year {
    color: var(--SEDA40); 
    font-size: 87%;
}

/* panorama */
.panorama {
    width: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.panorama, .panorama .container {
    height: 500px;
}
.poster {
    width: 100%;
}
.poster, .poster .container {
    height: auto;
}
.headlineContainer, .buttonContainer {
    padding: 50px 20px 40px;
    position: absolute;
}
.top {
    top:0;
}
.bottom {
    bottom:0;
}
.left {
    left:0;
}
.left * {
    text-align: left;
}
.right {
    right: 0;
}
.right * {
    text-align: right;
}


/* úprava sekcií pre WE */
section.sekcia {
    width: 100%;
    padding-left: calc((100% - 1400px) / 2);
    padding-right: calc((100% - 1400px) / 2);
}

/* header */
.TopBar {
    position: relative;
    width: 100%;
    height: 92px;
    background: var(--TMAVAMODRA);
/*    background-image: url('../img/topbar-bg.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;*/
    clip-path: polygon(
        0 0,               
        100% 0,
        100% calc(100% - 31px), 
        calc(100% - 24px) 100%,
        0 100%
    );
    background-clip: padding-box;
}
.insider {
    width: 100%;
    height: 100%;
    position: relative;
}

.TopBar2 {
    position: relative;
    width: 100%;
    height: 100px;
    margin-top: 8px;
    background-image: url('../img/roh-pd.svg'), url('../img/roh-lh2.svg'), url('../img/topbar2-bg.png');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 152px 42px, 29px 31px, 1400px 140px;
    background-position: calc(100% + 1px) calc(100% + 1px), -1px -1px, left top;
}

.HomeBanner {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 8px;
    margin-bottom: 84px;
    background-image: url('../img/roh-pd.svg'), url('../img/roh-lh2.svg'), url('../img/home-banner-bg-2800x1408.jpg');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 152px 42px, 29px 31px, 1400px 704px;
    background-position: calc(100% + 1px) calc(100% + 1px), -1px -1px, 0 -4px;
}


/* orezy nepoužité */
svg {
    position: absolute;
    width: 0;
    height: 0;
}

/* omrvinky */
.breadcrumbs {
    margin: 32px 0 84px;
    padding: 0 60px;
    font-size: 22px;
    font-weight: 600;
    color: var(--SEDA30);
}
.breadcrumbs a {
    font-size: 22px;
    font-weight: 600;
    color: var(--ORCHID);
}
.breadcrumbs a:hover, .breadcrumbs a:active {
    color: var(--PURPUR);
}
.breadcrumbs .breadSeparation {
    margin: 0 10px;
}
.breadcrumbs .breadName {
    font-size: 22px;
    font-weight: 600;
    color: var(--TMAVABELASA);
}

/* projekt */
.projekt {
    width: 240px;
    max-width: 100%;
}
.projekt a, .projekt img, .projekt h2 {
    display: block;
    width: 100%;
}
.projekt a, .projekt h2 {
    text-align: center;
}
.projekt a, .projekt h2 {
    font-family: 'SourceSans';
    font-size: 24px;
    color: var(--SEDA60);  
}
.projekt a {
    padding: 0;
}
.projekt a, .projekt a h2 {
    transition: color .3s;
}
.projekt a:hover, .projekt a:hover h2 {
    background-color: transparent;
    color: var(--MODRA);
}
.home .projekt a:hover img {
    transition: filter 1s;
}
.home .projekt a:hover img {
    filter: saturate(300%);
}


/* formulár */
.formular {
    margin-top: 0;
    margin-bottom: 0;
}
.formular .form-riadok {
    margin-bottom: 30px;
}
.formular label {
    color: var(--TMAVA);
    display: block;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 15px;
    cursor: pointer;	
}
.formular input, .formular textarea {
    font-family: 'SourceSans', sans-serif;
    width: 100%;
    font-size: 21px;
    font-weight: normal;
    color: var(--TMAVA);
    background-color: var(--TELOVA);
    border: solid 2px var(--ZLTA);
    border-radius: 0;
    padding: 6px 12px;
    box-sizing: border-box;
}
.formular textarea {
    height: 250px;
}
.formular .button {
    margin-top: 40px;
    max-width: 100%;
}
.formular .button:hover {
    cursor: pointer;
}
.formular input.checkbox {
    
}

.formular input[type="checkbox"].checkbox {
}

.formular input[type="checkbox"].checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;	
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;	
    background-image: url('/img/symbol-unchecked.svg');
    background-size: 30px 30px;
    -webkit-transition: background 1s;
    -moz-transition: background 1s;
    transition: background 1s;
}

.formular input[type="checkbox"].checkbox:checked {
    background-image: url('/img/symbol-checked.svg');
}
.formular label.label-vpravo {
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
}
#newsletter_formular_box {  /* form na podstránkach */
    display: none;
}

.alert, .alert.uk-alert-danger {
    position: fixed;
    top:40px;
    left:40px;
    z-index: 10000;
    width: calc(100% - 80px);
    margin: 0;
    padding: 20px;
    text-align: center;
    border: solid 2px var(--ZLTA);
    background-color: var(--CERVENA);
    color: white;
    box-shadow: 0 0 20px black;
}
.alert p, .odberNoviniek .alert p {
    color: white;
}

/* úprava simplelightbox */
.sl-prev, .sl-next, .sl-close {
    font-family:'FontAwesome';
    color: var(--TMAVA);
}


/* úprava uikit */
.uk-alert {
    font-weight: bold;
}
.uk-alert-danger {
    border: solid 1px #f0506e;
    border-radius: 5px;
}
.uk-navbar-nav > li > a {
    color: white;
    text-transform: none;
}
.uk-navbar-item, .uk-navbar-nav > li > a, .uk-navbar-toggle {
    min-height: 63px;
    padding: 0 15px;
    font-size: 1.28rem;
    font-family: 'SourceSans', sans-serif;
    font-weight: 300;
    text-decoration: none;
}
.uk-navbar-nav > li:hover > a, .uk-navbar-nav > li > a.uk-open, .uk-navbar-nav > li > a:focus {
    color: #FAC541; /* zlatá */
}
.uk-navbar-dropdown {
    padding: 15px;
}
.uk-navbar-dropdown-nav > li {
    padding-left: 10px;
    padding-right: 10px;
}
.uk-navbar-dropdown-nav > li:hover {
    background-color: #FFF4CC; /* jemná zlatá */
}
.uk-navbar-dropdown-nav > li > a {
    color: #6C5D47;
}
.uk-navbar-toggle {
    color: #FAC541;
}
.uk-navbar-toggle:hover {
    color: #FAC541;
}
.uk-offcanvas-bar {
    background: #6C5D47; /* hnedá */
}
.uk-offcanvas-bar .uk-nav-default > li > a, .uk-offcanvas-bar .uk-nav-default .uk-nav-sub a {
    color: rgba(250, 197, 65, .8); /* zlatá */
}
.uk-offcanvas-bar .uk-nav-default > li > a:hover, .uk-offcanvas-bar .uk-nav-default .uk-nav-sub a:hover {
    color: rgba(250, 197, 65, 1); /* zlatá */
}
.uk-grid {
  margin-left: -30px;
}
.uk-lightbox {
  background: #fff;
}
article .galeriaNahlady a:hover {
    background-color: transparent;
}
.uk-card {
  padding: 0 10px;
}
.uk-accordion-title:focus, .uk-accordion-title:hover {
  color: var(--PURPUR);
}



/* button */
button, .button {
    box-sizing: border-box;
    text-align: center;
    border: 2px solid var(--SEDA20);
    font-family: 'SourceSans', sans-serif;
    font-size: 21px;
    font-weight: normal;
    color: black;
    line-height: 120%;
    text-transform: uppercase;
    display: block;
    position: relative;
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
    padding: 10px 20px;
    background-color: transparent;
}
.button.transp {
    background: none;
}
.button.semitransp {
    background: rgba(0,0,0,.3);
}
button:hover, .button:hover {
}
button.transp:hover, .button.transp:hover, button.semitransp:hover, .button.semitransp:hover {

}
.buttonContainer .button {
    display: inline-block;
}
.buttonContainer.right .button {
    margin-left: 20px;
}
.buttonContainer.left .button {
    margin-right: 20px;
}
.button.maly {
    font-weight: 300;
    font-size: 16px;
    padding: 4px 10px;
    border-width: 1px;
}


#totop {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-image: url("/img/totop.png");
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: background-image 1s, opacity 1s;
    transition: background-image 1s, opacity 1s;
    opacity: 0;
}
#totop:hover {
    background-image: url("/img/totop_hover.png");
}
#totop.show {
    opacity: 1;
}

/* XCC cookies */
button.xcc_button {
    text-transform: none;
}

/* karty */
.WEcardWrap {
    clear: both;
/*    margin-top: 60px;*/
}
.uk-card-body h2:first-child, .uk-card-body h3:first-child, .uk-card-body h4:first-child, .uk-card-body h5:first-child {
    margin-top: 0;
}
a .uk-card-body p {
    font-weight: normal;
}
.uk-card-body h2 {
    font-size: 24px;
}
.uk-card-body h3 {
    font-size: 22px;
}
.uk-card-body h4 {
    font-size: 20px;
    font-style: normal;
}
.uk-card-body h5 {
    font-size: 18px;
}
.uk-card-body p, .uk-card-body p.vyrazny {
    font-size: 18px;
}
.tabPolozka table td {
    vertical-align: top;
}

/*zoznam */
.WEalst {
    clear: both;
    margin-top: 15px;
    margin-bottom: 30px;
}
.WEalst .odkaz {
    margin-bottom: 20px;
}
.WEartc {
    text-align: left;
    display: block;
}

/* footer */
footer {
    width: 100%;
    padding: 100px 0 60px;
    margin-top: 30px;
    background-color: var(--TMAVAMODRA);
}

footer, footer p {
    font-size: 22px;
    font-weight: normal;
    color: white;
    line-height: 145%;
}
footer p {
    margin: 0 0 10px;
}
footer a {
    color: var(--ORCHID);
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}
footer a:hover {
    color: var(--PURPUR);
    text-decoration: none;
}
.flexContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
    row-gap: 60px;
}
.flexContainer.footerMenu {
    gap: 50px;
    row-gap: 10px;
    justify-content: center;
}
.footerMenu, .footerMenu a {
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
}
#navratHore {
    display: block;
    position: fixed;
    right: 0;
    bottom: 120px;
    z-index: 121;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
#navratHore.show {
    opacity: 1;
}
.ikonaHore {
    height: 38px;
    display: inline-block;
    vertical-align: text-top;
    opacity: .6;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
footer a:hover .ikonaHore {
    opacity: 1;
} 
footer h6 {
    color: var(--MODRA);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 22px;
    margin-top: 46px;
} 
footer h6:first-child {
    margin-top: 0;
}
.copyright {
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
}
/* galeria */
.galeriaClanok {
    clear: both;
    width: 100%;
}
.galeriaClanok a {
    overflow: hidden;
    display: inline-block;
    box-sizing: border-box;
    width: 23%;
    width: calc(25% - 10px);
    height: 23%;
    height: calc(25% - 10px);
    float: left;
    margin: 5px;
    padding: 0;
}
article .albumy a {
  padding-left: 0;
  padding-right: 0;
}
.albumy .uk-card {
    overflow: hidden;
    
}
.uk-lightbox-toolbar.uk-position-top.uk-text-right.uk-transition-slide-top.uk-transition-opaque {
    width: 50px;
    top:0;
    right: 0;
    left: auto;
}
.galeria .perex {
    font-weight: 300;
}
.albumy {
    margin-bottom: 30px;
}
.galeriaNahlady.uk-grid > * {
  padding-left: 20px;
}






@media only screen and ( max-width: 1420px ) 
{
    .wrapper {
        width: 100%;
    }
    .container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .WEurl, .WEartc {
        width: 90%;
        width: calc(100% - 20px);
        padding: 17px 20px 30px 30px;
        box-sizing: border-box;
        /*margin-left: 20px;*/
    }
    header {
/*        padding-left: 20px;
        padding-right: 20px;*/
    }
    .headlineContainer, .buttonContainer {
      padding-left: 20px;
      padding-right: 20px;
    } 
    footer, footer a, footer p {
      font-size: 20px;
    }    
    .gridItem {
        /*min-width: 25%;*/
    }
    section.sekcia, .WEimgAlone, .WEimgAlone.WEimgRight, .WEimgAlone.WEimgLeft {
        width: 100%;
    }
    .uk-grid {
        margin-left: -50px;
        margin-right: -30px;
    }
    main {
        width: calc(100% - 390px);
    }
    .flexContainer {
        gap: 50px;
    }
    .splitter.flexContainer {
        gap: 30px;
    }
    h1 {
        font-size: 56px;
    }
    h2 {
        font-size: 41px;
    }
    h3 {
        font-size: 37px;
    }
    h4 {
        font-size: 33px;
    }
    h5 {
        font-size: 29px;
    }
    h6 {
        font-size: 25px;
    }
    p, body {
        font-size: 23px;
    }
    .LogoFEI {
        left: 30px;
    }
    .LogoUMIKT {
        left: 170px;
    }
    .mainMenu {
        right: 30px;
    }
    .meno {
        left: 30px;
    }
    .HomeBanner .meno {
        left: 60px;
    }
    .breadcrumbs {
        padding: 0 30px;
    }
    .blockHead {
        padding: 10px 25px 10px 30px;
    }
    .blockBodyInside {
        padding: 45px 25px 45px 30px;
    }
    .sideMenu .blockHead {
        background-position: -2px -2px, -468px 0px;
    }
    aside {
        width: 360px;
    }
    .blockBodyInside a {
      font-size: 24px;
    }
    .blockBodyInside p {
      font-size: 21px;
    }
    .blockBodyInside .hodnota {
      font-size: 24px;
    }  
    .blockHead {
      font-size: 25px;
    }  
    #stick {
        height: 44px;
    }
    .lang {
        right: 30px;
    }
}

@media only screen and ( max-width: 1000px ) 
{
    h1 {
        font-size: 54px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 36px;
    }
    h4 {
        font-size: 32px;
    }
    h5 {
        font-size: 28px;
    }
    h6 {
        font-size: 24px;
    }
    p, body {
        font-size: 22px;
    }
    .mainMenu ul li a {
        font-size: 30px;
    }
    .breadcrumbs, .breadcrumbs .breadName,.breadcrumbs a {
      font-size: 20px;
    }
    aside {
        width: 300px;
    }
    main {
        width: calc(100% - 330px);
    }
    #stick {
        height: 42px;
    }


}

@media only screen and ( max-width: 900px ) 
{
    .onlyWideScreen {
        display: none;
    }
    .onlyNarrowScreen {
        display: block;
    }
    .gridContainer {
      gap: 20px;
    }
    aside {
        width: 100%;
        order: 2;
    }
    main {
        width: 100%;
        order: 1;
    }
    .breadcrumbs {
        padding: 0;
        margin-bottom: 60px;
    }
    h1 {
        font-size: 48px;
        margin-top: 58px;
        margin-bottom: 30px;
    }
    h2 {
        font-size: 36px;
        margin-top: 48px;
    }
    h3 {
        font-size: 33px;
        margin-top: 45px;
    }
    h4 {
        font-size: 30px;
        margin-top: 42px;
    }
    h5 {
        font-size: 27px;
        margin-top: 39px;
    }
    h6 {
        font-size: 24px;
        margin-top: 36px;
    }
    h2, h3, h4, h5, h6 {
        margin-bottom: 8px;
    }
    p {
        margin-top: 6px;
    }
    footer {
        padding: 60px 0 60px;
    }
    footer .flexContainer {
        justify-content: space-around;
    }
    footer .col1, footer .col2, footer .col3, footer h6 {
        text-align: center;
    }
    main {
        margin-bottom: 30px;
    }
}


@media only screen and ( max-width: 680px ) 
{
    .gridContainer {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .blok.gridContainer {
        grid-template-columns: 1fr;
    }    
    .gridItem > img {
        margin: 0 auto;
    }    
    .blok .gridContainer, .blok.gridContainer {
        gap: 10px;
    }    
    .HomeBanner {
        height: 485px;
        background-position: calc(100% + 1px) calc(100% + 1px), -1px -1px, -93px -70px;
    }
    .HomeBanner .meno {
        font-size: 45px;
        top: 30px;
        left: 30px;
    }
    .portret {
        bottom: 30px;
        left: 30px;
        width: 200px;
        height: 200px;
    }
    .breadcrumbs, .breadcrumbs a,.breadcrumbs .breadSeparation,.breadcrumbs .breadName {
        font-size: 18px;
    }
    h1 {
        font-size: 42px;
        margin-top: 52px;
        margin-bottom: 30px;
    }
    h2 {
        font-size: 33px;
        margin-top: 42px;
    }
    h3 {
        font-size: 30px;
        margin-top: 39px;
    }
    h4 {
        font-size: 27px;
        margin-top: 36px;
    }
    h5 {
        font-size: 24px;
        margin-top: 33px;
    }
    h6 {
        font-size: 21px;
        margin-top: 30px;
    }
    p, body {
        font-size: 20px;
    }
    p {
        margin-top: 6px;
        margin-bottom: 12px;
    }
    footer {
        padding: 60px 0 60px;
    }
    footer .flexContainer {
        justify-content: space-around;
    }
    footer .col1, footer .col2, footer .col3, footer h6 {
        text-align: center;
    }
    footer h6 {
        font-size: 24px;
    }
    footer, footer a, footer p {
        font-size: 18px;
    }
    main {
        margin-bottom: 30px;
    }

}

@media only screen and ( max-width: 630px ) 
{
    #stick {
        display: none;
    }
    .meno {
        font-size: 45px;
    }
}


@media only screen and ( max-width: 520px ) 
{
    .TopBar2 {
        background: var(--TMAVAMODRA);
        background-image: url('../img/roh-lh2.svg'), url('../img/topbar2-bg.png');
        background-repeat: no-repeat, no-repeat;
        background-size: 29px 31px, 1400px 140px;
        background-position: -1px -1px, left top;
        clip-path: polygon(
            0 0,               
            100% 0,
            100% calc(100% - 31px), 
            calc(100% - 24px) 100%,
            0 100%
        );
        background-clip: padding-box;
    }

}

@media only screen and ( max-width: 460px ) 
{
    .portret {
        bottom: 60px;
    }
    .HomeBanner {
        height: 360px;
        background-position: calc(100% + 1px) calc(100% + 1px), -1px -1px, -93px -70px;
    }
    .HomeBanner .meno {
        font-size: 40px;
    }
    .lang {
        top: 104px;
    }
}


@media only screen and ( max-width: 420px ) 
{
    .LogoFEI {
        top: 18px;
        width: 76px;
    }
    .LogoUMIKT {
        top: 18px;
        width: 90px;
        left: 135px;
    }
    .TopBar {
        height: 72px;
    }
    #menu_bars {
        top: 17px;
    }
    .TopBar2 {
        height: 72px;
        background-size: 29px 31px, 1120px 112px;
        background-position: -1px -1px, -10px -10px;
    }
    .HomeBanner .meno, .meno {
        font-size: 37px;
        top: 20px;
    }
}


@media only screen and ( max-width: 360px ) 
{
    .HomeBanner .meno, .meno {
        font-size: 33px;
        top: 20px;
    }
    .HomeBanner {
        height: 385px;
    }
    .lang {
        top: 74px;
    }
}


@media only screen and ( max-width: 340px ) 
{
    .LogoFEI {
        top: 18px;
        width: 74px;
    }
    .LogoUMIKT {
        top: 18px;
        width: 85px;
        left: 120px;
    }

}


