html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 62.5%;
    font-size: 10px;
}
/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    width: 100%;
    height: 80px;
    position: fixed;
    line-height: 65px;
    text-align: center;
    z-index: 300;
}

.nav div.logo {
    float: left;
    width: 30%;
    height: auto;
    padding-left: 3rem;
    margin-top: -20px;
    top: -1%;
}


/* Home section */

.home {
    width: 100%;
    height: 100vh;
    background-image: url(slike/naslovna1.jpg);
    background-position: center top;
	background-size:cover;
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Media qurey section */

@media screen and (max-width:768px) {
    .nav {
        height: 10%;
    }
    .navTrigger {
        display: block;
    }
    .nav div.logo {
        margin-left: 15px;
        width: 80%;
    }

    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: rgba(51, 51, 51, 0.88);
        /*same background color of navbar*/
        background-position: center top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .nav div.main_list ul li a {
                top: 80px;
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav div.media_button {
        display: block;
    }
}

@media screen and (max-width:1327px) {
    .nav div.logo {
        width: 40%;
    }
}

@media screen and (max-width:1075px) {
    .nav div.logo {
        width: 50%;
    }
}

@media screen and (max-width:784px) {
    .nav div.logo {
        width: 80%;
    }
}

@media screen and (max-width:683px) {
    .nav div.logo {
        width: 100%;
    }
}

@media screen and (max-width:496px) {
    .nav div.logo {
        width: 120%;
    }
}




/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: #111;
}






.myH2 {
	text-align:center;
	font-size: 4rem;
}
.myP {
	text-align: justify;
	padding-left:15%;
	padding-right:15%;
	font-size: 20px;
}
@media all and (max-width:700px){
	.myP {
		padding:2%;
	}
}

img {
	width: 30%;
	float:left;
	margin:1.66%;
}



.tps-section {
  width: 100%;
  height: 500px;
  -webkit-perspective: 10em;
  -moz-perspective: 10em;
  -ms-perspective: 10em;
  -o-perspective: 10em;
  perspective: 10em;
  -webkit-perspective-origin: center bottom;
  -moz-perspective-origin: center bottom;
  -ms-perspective-origin: center bottom;
  -o-perspective-origin: center bottom;
  perspective-origin: center bottom;
  -webkit-perspective-origin: 50% 50%;
  -moz-perspective-origin: 50% 50%;
  -ms-perspective-origin: 50% 50%;
  -o-perspective-origin: 50% 50%;
  perspective-origin: 50% 50%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.tps-wrapper {
  float: left;
  width: 100%;
  height: 100%;

}

html {
  height: 100%;
}

body {
  background: #cacaca;
  padding: 0;
  text-align: center;
  position: relative;
  margin: 0;
  height: 100%;
}

.wrapper {
  height: auto !important;
  margin-top:100px !important;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

a {
  text-decoration: none;
}

h1, h2 {
  width: 100%;
  float: left;
}

h1 {
  margin-top: 100px;
  color: #999;
  margin-bottom: 5px;
  font-size: 70px;
  font-weight: 100;
}

h2 {
  padding: 00px 20px 30px 20px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  letter-spacing: 0px;
  color: #888;
  font-size: 20px;
  line-height: 160%;
  font-weight: 100;
  margin-top: 10px;
  margin-bottom: 0;
}

.pointer {
  color: #00B0FF;
  font-size: 24px;
  margin-top: 15px;
  position: absolute;
  top: 130px;
  right: -40px;
}

.pointer2 {
  color: #00B0FF;
  font-size: 24px;
  margin-top: 15px;
  position: absolute;
  top: 130px;
  left: -40px;
}

pre {
  margin: 80px auto;
}

pre code {
  padding: 35px;
  border-radius: 5px;
  font-size: 15px;
  background: rgba(0, 0, 0, 0.1);
  border: rgba(0, 0, 0, 0.05) 5px solid;
  max-width: 500px;
}

.main {
  float: left;
  width: 100%;
  margin: 0 auto;
}

.main h1 {
  padding: 20px 50px 10px;
  float: left;
  width: 100%;
  font-size: 60px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-weight: 100;
  margin: 0;
  padding-top: 55px;
  letter-spacing: -1px;
  text-transform: capitalize;
}

.main h1.demo1 {
  background: #1ABC9C;
}

.reload.bell {
  font-size: 12px;
  padding: 20px;
  width: 45px;
  text-align: center;
  height: 47px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
}

.reload.bell #notification {
  font-size: 25px;
  line-height: 140%;
}

.reload, .btn {
  display: inline-block;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  display: inline-block;
  line-height: 100%;
  padding: 0.7em;
  text-decoration: none;
  width: 100px;
  line-height: 140%;
  font-size: 17px;
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #4D90FE;
  background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed);
  background-image: -webkit-moz-gradient(top, #4d90fe, #4787ed);
  background-image: linear-gradient(top, #4d90fe, #4787ed);
  border: 1px solid #3079ED;
  color: #FFF;
}

.reload:hover {
  background: #317af2;
}

.btn {
  width: 200px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #4D90FE;
  background-image: -webkit-linear-gradient(top, #4d90fe, #4787ed);
  background-image: -moz-linear-gradient(top, #4d90fe, #4787ed);
  background-image: linear-gradient(top, #4d90fe, #4787ed);
  border: 1px solid #3079ED;
  color: #FFF;
}

.clear {
  width: auto;
}

.btn:hover, .btn:hover {
  background: #317af2;
}

.btns {
  float: left;
  width: 100%;
  margin: 50px auto;
}

.credit {
  text-align: center;
  color: #888;
  padding: 10px 10px;
  margin: 0 0 0 0;
  background: #f5f5f5;
  float: left;
  width: 100%;
}

.credit a {
  text-decoration: none;
  font-weight: bold;
  color: black;
}

.back {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  display: block;
  padding: 7px;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #f5f5f5;
  font-weight: bold;
  font-size: 13px;
  color: #888;
  -webkit-transition: all 200ms ease-out;
  -moz-transition: all 200ms ease-out;
  -o-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.back:hover {
  background: #eee;
}

.page-container {
  float: left;
  width: 100%;
  margin: 0 auto 300px;
  position: relative;

}

.panorama {
  width: 100%;
  float: left;
  margin-top: -5px;
  height: 700px;
}

.panorama .credit {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 12px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  float: right;
}

.main {
  margin-bottom: 350px;
  overflow: hidden;

}

.tps-section {
  width: 100% !important;
  max-width: 1000px;
  margin: 0 auto;
  height: 500px;
}

.tps-section .tps-wrapper {
  border-radius: 5px;
                box-shadow: 3px 3px 10px black;
}

.tps-section .tps-wrapper h1 {
  position: relative;
  height: 100%;
  position: absolute;
}

.tps-section .tps-wrapper h1 a {
  color: white;
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  top: 0;
  padding-top: 225px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  left: 0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 20px;
  font-size: 14px;
  line-height: 190%;
}

.tps-section .tps-wrapper h1 a small {
  text-transform: none;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 14px;
}

.tps-section:nth-child(1n+1) .tps-wrapper {
  background: url(slike/00650028ff-2000x1326.jpg) center center;
  background-size: cover;
}

.tps-section:nth-child(2n+1) .tps-wrapper {
  background: url(slike/00650035ff-2000x1326.jpg) center center;
  background-size: cover;
}

.tps-section:nth-child(3n+1) .tps-wrapper {
  background: url(slike/austija.jpg) center center;
  background-size: cover;
}

.tps-section:nth-child(4n+1) .tps-wrapper {
  background: url(slike/DSC5757-2000x1331.jpg) center center;
  background-size: cover;
}

.tps-section:nth-child(5n+1) .tps-wrapper {
  background: url(slike/DSC5801-2000x1331.jpg) center center;
  background-size: cover;
}

.tps-section:nth-child(6n+1) .tps-wrapper {
  background: url(slike/DSC5816-2000x1331.jpg) center center;
  background-size: cover;
}

.tps-section:nth-child(7n+1) .tps-wrapper {
  background: url(slike/josua.jpg) center center;
  background-size: cover;
}

.tps-section:nth-child(8n+1) .tps-wrapper {
  background: url(slike/okej.jpg) center center;
  background-size: cover;
}

.tps-section:nth-child(9n+1) .tps-wrapper {
  background: url(slike/svirka.jpg) center center;
  background-size: cover;
}

.tps-section:nth-child(10n+1) .tps-wrapper {
  background: url(slike/supertalent.jpg) center center;
  background-size: cover;
}

.tps-section:nth-child(11n+1) .tps-wrapper {
  background: url(slike/spancir_ulica-2000x1125.jpg) center center;
  background-size: cover;
}

.header {
  overflow: hidden;
  clear: both;
}

.main {
    margin-top: 10%;
}

textarea {
	resize: none;
}
.form-label {
	font-size: 12px;
	color: #5e9bfc;
	margin: 0;
	display: block;
	opacity: 1;
	-webkit-transition: .333s ease top, .333s ease opacity;
	transition: .333s ease top, .333s ease opacity;
}
.form-control {
	border-radius: 0;
	border-color: #ccc;
   	border-width: 0 0 2px 0;
   	border-style: none none solid none;
   	box-shadow: none;
}
.form-control:focus {
	box-shadow: none;
	border-color: #5e9bfc;
}
.js-hide-label {
	opacity: 0; 	
}
.js-unhighlight-label {
	color: #999 
}
.btn-start-order {
	background: 0 0 #ffffff;
    border: 1px solid #2f323a;
    border-radius: 3px;
    color: #2f323a;
    font-size: 16px;
    line-height: inherit;
    margin: 30px 0;
    padding: 10px 50px;
    text-transform: uppercase;
    transition: all 0.25s ease 0s;
}
.btn-start-order:hover,.btn-start-order:active, .btn-start-order:focus {
	border-color: #5e9bfc;
	color: #5e9bfc;
}

.prva{
    position: absolute;
    top: 98%;
    left: 40%;
    width: 23px;
    z-index: 300;
}

.druga{
    position: absolute;
    top: 98%;
    left: 47%;
    width: 26px;
    z-index: 300;
}

.treca{
    position: absolute;
    top: 98%;
    left: 54%;
    width: 26px;
    z-index: 300;
}

.cetvrta{
    position: absolute;
    top: 98%;
    left: 62%;
    width: 26px;
    z-index: 300;
}