/* 01 IZDELAVA:
SPLETOS
www.spletos.si
--------------------------------------------------------------- */

/* 02 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: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 03 GENERAL SETTINGS
--------------------------------------------------------------- */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clear{
	clear: both;
}

body {
	background: #fff;
	font-family: 'Poppins', sans-serif;
	color: #999;
    font-weight: 400;
}

p {
	line-height: 2;
}

a {
	color: #a67d4a;
	text-decoration: none;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear
}

a:hover { color: #999; }

img {
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6 {
    
}

h1 {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.2;
}

h3 {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 30px;
}

.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
    background: url('../images/bg.jpg') no-repeat fixed center center;
	background-size: cover;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.inner {
    margin-left: auto;
    margin-right: auto; 
    width: 960px;   
	text-align: center;
    position: relative;
}
.inner img.logo {
	padding: 40px 0 10px;
} 

.levo h1, .desno h1 {
    padding: 220px 70px 0;
}

.logo {
    left: 50%;
    position: absolute;
    z-index: 1;
    top: -20px;
    margin-left: -162px;
}

.logo img {
    width: 315px;
    height: auto;
}

.levo {
    background: #444;
    width: 480px;
    float: left;
    color: #fbf1cc;
    height: 500px;
    position: relative;
}

.desno {
    background: #f6e692;
    width: 480px;
    float: left;
    color: #313030;
    height: 500px;
    position: relative;
}

.gumb {
    width: 480px;
    position: absolute ;
    text-align: center;
    bottom: 50px;
}

a.gumb-vstopi {
    background: #b17168;
    padding: 14px 40px;
    line-height: 1;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
}

a.gumb-vstopi:hover {
    background: #000;
}

.jeziki {
    color: #fff;
    margin-top: 10px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.jeziki a {
    color: #fff;
    font-weight: 400;
    background: #444;
    padding: 6px 15px 5px;
    line-height: 1;
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
}

@media screen and (max-width: 1000px) {
    
  .inner {
      width: 90%;
  }
 
.levo, .desno {
  width: 50%;
}
 
  .gumb {
      width: 100%;
  }
}

@media screen and (max-width: 960px) {
    .levo h1, .desno h1 {
        font-size: 24px;
        padding: 220px 40px 0;
    }
    h3 {
        padding: 0 30px;
    }
}

@media screen and (max-width: 700px) {
    .levo h1, .desno h1 {
        font-size: 17px;
        padding: 180px 20px 0;
    }
    h3 {
        padding: 0 30px;
        font-size: 14px;
    }
    
    .logo img {
        width: 250px;
    }
    
    .logo { 
        top: -10px;
        margin-left: -125px;
    }
    
}

@media screen and (max-height: 600px) and (min-width: 600px) {
   .logo img {
       width: 300px;
   }
   
   .desno, .levo {
       height: 420px;
   }
   
   .levo h1, .desno h1 {
        padding-top: 185px;
    }
}





