/* -----------------------------------------
BASIC SETUP 
---------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.example::-webkit-scrollbar {
  display: none;
}

html,
body {
  background-color: #fff;
  color: #555;
  font-family: "Lato", "Arial", "sans-serif";
  font-weight: 300;
  font-size: 20px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  
}


.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}
/* -----------------------------------------
REUSABLE COMPONENTS
---------------------------------------- */
.row {
  max-width: 1140px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
}

.box {
  padding: 1%;
}

ion-icon {
  font-size: 250%;
  display: block;
  color: #e67e22;
  margin-bottom: 10px;
}

/* naslovi h1 u dugmicima */

h1,
h2,
h3 {
  font-weight: 350%;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #fff;
  font-size: 240%;
  margin-bottom: 20px;
  word-spacing: 4px;
  letter-spacing: 1px;
}

h2 {
  font-size: 180%;
  word-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

h2::after {
  display: block;
  height: 2px;
  background-color: #e67e22;
  content: " ";
  width: 100px;
  margin: 0 auto;
  margin-top: 30px;
}

h3 {
  font-size: 110%;
  margin-bottom: 15px;
}

/* PARAGRAFI*/
.long-copy {
  line-height: 145%;
  width: 70%;
  margin-left: 15%;
}
.box p {
  font-size: 90%;
  line-height: 145%;
}

/* DUGMICI*/
.btn:link,
.btn:visited,
input[type="submit"] {
  display: inline-block;
  padding: 10px 30px;
  font-weight: 300;
  text-decoration: none;
  border-radius: 200px;
  transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type="submit"] {
  background-color: #e67e22;
  border: 1px solid #e67e22;
  color: #fff;
  margin-right: 15px;
}
.btn-ghost:link,
.btn-ghost:visited {
  border: 1px solid #e67e22;
  color: #e67e22;
}
.btn:hover,
.btn:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  background-color: #cf6d17;
}
.btn-full:hover,
.btn-full:active {
  border: 1px solid #cf6d17;
}
.btn-ghost:hover,
.btn-ghost:active {
  border: 1px solid #cf6d17;
  color: #fff;
}
/* -----------------------------------------
HEADER  
---------------------------------------- */

header {
  background-image: linear-gradient(#000000b9, #000000b9),
    url(img/hydrographicsuisse2-min.jpg);

  height: 100vh;

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-text-box {
  position: absolute;
  width: 1140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.logo {
  height: 125px;
  width: auto;
  float: left;
  margin-top: 20px;
}
.logo-black {
  display: none;
  height: 55px;
  width: auto;
  float: left;
  margin-top: 5px;
}

/* +++++++++++++++++++++++ MAIN NAVI+++++++++++++++++++++++++ */
.main-nav {
  float: right;
  list-style: none;
  margin-top: 55px;
}

.main-nav li {
  display: inline-block;
  margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
  padding: 8px 0;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 90%;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s;
  -webkit-transition: border-bottom 0.2s;
  -moz-transition: border-bottom 0.2s;
  -ms-transition: border-bottom 0.2s;
  -o-transition: border-bottom 0.2s;
}
.main-nav li a:hover,
.main-nav li a:active {
  border-bottom: 1px solid #e67e22;
}


/* +++++++++++++++++++++++ mobile NAVI+++++++++++++++++++++++++ */

.mobile-nav-icon{
  float: right;
  margin-top: 30px;
  cursor: pointer;
  display: none;
}

.mobile-nav-icon ion-icon {
  font-size: 200%;
  color: #fff;
}





/* +++++++++++++++++++++++ sticky NAVI+++++++++++++++++++++++++ */
.stycky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.911);
  box-shadow: 0 2px 2px #efefef;
  z-index: 9999;
}

.stycky .main-nav {
  margin-top: 20px;
}

.stycky .main-nav li a:link,
.stycky .main-nav li a:visited {
  padding: 9px 0;
  color: #555;
}

.stycky .logo {
  display: none;
}
.stycky .logo-black {
  display: block;
}



/* _________________________________________
buducnost
---------------------------------------- */

.section-features .long-copy {
  margin-bottom: 30px;
}

/* _________________________________________
slike
---------------------------------------- */

.meals-showcase {
  list-style: none;
  width: 100%;
}
.meals-showcase li {
  display: block;
  float: left;
  width: 25%;
}

.meal-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background-color: #000;
}

.meal-photo img {
  opacity: 0.7;
  width: 100%;
  height: auto;
  transform: scale(1.15);
  transition: transform 0.5s, opacity 0.5s;
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
}

.meal-photo img:hover {
  transform: scale(1.03);
  opacity: 1;
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
}

/* ------------------------------------------------------------------------------------
TRECA SEKCIJA
-------------------------------------------------------------------------------- */
.section-steps {
  background-color: #f4f4f4;
}
.steps-box:first-child {
  text-align: right;
  padding-right: 3%;
  margin-top: 30px;
}
.steps-box:last-child {
  text-align: left;
  padding-left: 3%;
  margin-top: 70px;
}
.app-screen {
  width: 40%;
}

.works-step {
  margin-bottom: 50px;
}

.zadnji {
  margin-bottom: 120px;
}

.works-step div {
  color: #e67e22;
  border: 2px solid #e67e22;
  display: block;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  text-align: center;
  float: left;
  font-size: 150%;
  margin-right: 25px;
  padding-top: 8px;
}
/* .works-step div p{
  display: inline-block
} */

.btn-app img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

/* -----------------------------------------
komentari klijenata  
---------------------------------------- */
.section-komentariKlijenata {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(img/dron_1-min.jpg);
  background-size: cover;
  color: white;
  background-attachment: fixed;
}

blockquote {
  padding: 2%;
  font-style: italic;
  line-height: 145%;
  position: relative;
  margin-top: 40px;
}
blockquote:before {
  content: "\201C";
  font-size: 500%;
  display: block;
  position: absolute;
  top: -5px;
  left: -5px;
}

cite {
  font-size: 90%;
  margin-top: 25px;
  display: block;
}

cite img {
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* -----------------------------------------
sekcija za komentare 
---------------------------------------- */

.contact-form {
  width: 60%;
  margin: 0 auto;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 7px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

input[type="checkbox"] {
  margin: 10px 5px 10px 0px;
}
*:focus {
  outline: none;
}

.success{
background-color:#8effac;
text-align:center;
padding:5px 0;
margin-bottom:13px; 
font-weight: 200;
color: black;
}

.error{
background-color:#ff0000;
text-align:center;
padding:5px 0;
margin-bottom:13px; 
font-weight: 200;
color: black;
}


/* ------------------------------------------------------------------------------------
SEKCIJJA ZA KONTAKT STRANCICE
-------------------------------------------------------------------------------- */
/* .contact-left{
float: left;
 }
   */
.contact-right {
  padding-top: 40px;
  padding-left: 55px;
}
.contact-right p {
  padding: 3px;
}
#broj {
  padding-top: 30px;
}

.contact-page {
  background-color: #f4f4f4;
}
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* -----------------------------------------
footer
---------------------------------------- */
footer {
  background-color: #333;
  padding: 50px;
  font-size: 80%;
}

.footer-nav {
  list-style: none;
  float: left;
}
.social-links {
  list-style: none;
  float: right;
}

.footer-nav li,
.social-links li {
  display: inline-block;
  margin-right: 20px;
}
.footer-nav li:last-child,
.social-links li:last-child {
  margin: 0;
}

/* a:-webkit-any-link {
  color: white;
  cursor: pointer;
  text-decoration: none;
} */
.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
  text-decoration: none;
  border: 0;
  color: #888;
}

.footer-nav li a:hover,
.footer-nav li a:active {
  color: #ddd;
}

.social-links li a :link,
.social-links li a :visited {
  font-size: 50%;
}
#fejs {
  color: #888;
  font-size: 170%;
}
#fejs:hover {
  color: #3b5998;
}
#insta {
  color: #888;
  font-size: 170%;
}
#insta:hover {
  color: #c32aa3;
}
#you {
  color: #888;
  font-size: 170%;
}
#you:hover {
  color: #ff0000;
}
#tik {
  color: #888;
  font-size: 170%;
}
#tik:hover {
  color: #010101;
}
#fejs,
#insta,
#you,
#tik {
  transition: color 0.4s;
}
footer p {
  color: #888;
  text-align: center;

  margin-top: 20px;
}

/* -----------------------------------------
animations animirane stvari na stanici
---------------------------------------- 
*/

.bez {
  opacity: 0;
}


.sa{
  opacity: 1;
}

/* -----------------------------------------
 popup
---------------------------------------- 
*/

.swal2-shown {padding-right: 0 !important;}
.swal2-shown {padding-left: 0 !important;}
.swal2-height-auto{padding-right: 0 !important;}
.swal2-height-auto{padding-left: 0 !important;}

.swal2-popup{
  position: absolute !important;
}