/* CSS Document */
/* css reset -------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 15px;
    font: inherit;
    color: inherit;
    vertical-align: baseline;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

html { height: 101%; font-family: 'Helvetica', sans-serif; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; } 
table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; } 
  
p, li { font-size: 0.9rem; line-height: 1.5rem; }
  
h1 {font-size:1.5em; font-weight: bold; line-height: 120%; margin: 30px; }
h2 {font-size:1em; font-weight: bold; line-height: 110%; }

#body {
    min-height:100%;
    height:100%;
    width: 100%;
    position: relative;
    top: 0px;
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-family: 'Nanum Gothic', sans-serif;
    text-align: left;
}


/* HEADER N MENU ================================================== */
header {
   height: 65px;     
   width: 100%;
   padding-top: 20px;
   position: fixed;
   z-index: 900;
   background-color: rgba(0,0,0); 
}
#header-langswitch {
   position: fixed;
   top: 25px;
   right: 25px;	
}

#header-menu {
   margin: 0 auto;
   width: 50%;
   height: 65px;
   & ul {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      & li {
         padding: 0;
         align-self: center; 
         & a {
            color: #fff;
            font-size: 1.0rem;
            line-height: 1.5em;
            font-family: 'Advent', Tahoma;
            font-weight: bold;
            -moz-transition: all 0.5s;
            -webkit-transition: all 0.5s;
            transition: all 0.5s;
            & span { 
               margin-right: 5px;
               font-size: 0.9em;
            } 
         }   
         & :hover a { 
            color: #f00;
         } 
      } 
   }
}     

/* MISC ============================================ */ 
.anchor {
   padding: 65px 0 30px 0;    /*same height as header*/
   clear: both;
}
.content-white {
   background-color: #fff;
	color: #0C0C0C;
   text-align: center;
}
.content-black {
   background-color: #0C0C0C;
   color: #fff;
   text-align: center;
}

.content-white > div,
.content-black > div {
   width: 80%;
   margin: 0 auto;
}

.txtred {color: #ff0000;}
.bld {font-weight: bold;}
p {margin-bottom: 20px;}

/* SEPARATOR TABLE ================================= */ 
.separator-table {
   display: table;
   width: 100%;
   text-align: center;
   color: #f00;
 }
  .separator-table div:nth-child(1),
  .separator-table div:nth-child(3)  {
    display: table-cell;
    background: url(../images/separator-background.png) repeat-x center center; 
 }
 
 .separator-table div:nth-child(2),
 .separator-table-wh div:nth-child(2) {
    display: table-cell;
    width: 50px; 
    font-size: 1.5em;
 }    



/* COLUMNS ============================================== */
 .col-30 {
   width: 30%;
 }
 .col-70 {
   width: 66%;
 }
 .col-left {
   float: left;
   text-align: justify;
 }
 .col-right {
   float: right;
   text-align: justify;
 }


/* brand-icons ================================================ */
#oferta-brand-icons > ul {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

/* CONTENT kontakt ============================================ */
#kontakty {
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   position: relative;
   top: 30px;
   margin-bottom: 30px;
}
#kontakty > div {
   width: 200px;
}





@media only screen and (max-width: 50em) {
		
#header-menu {width: 90%;}

#header-langswitch {
   top: 5px;
   right: 5px;	
   & img {
      width: 130% !important;
   }
}

.col-left,
.col-right {float: none; text-align: justify;}

.col-30,
.col-70 {width: 100%;}

.img_mobile {display: none;}

#kontakty {
   flex-direction: column;
   position:unset;
   margin-bottom: 0px;
   & > div {
      width: 100%;
      margin-top: 20px;
      & > div {
         vertical-align: middle;
         display: inline;
      }
   }
}
.anchor {padding: 35px 0 20px 0;}
}

