/******************************

FONTS / COLORS

  background-color: var(--color-background);
  color: var(--color-background);

*******************************/

:root {
  --font-default: "Nunito Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-primary: "Nunito Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-secondary: "Nunito Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

:root {
  --color-default: #fff;
  --color-header: #000;
  --color-primary: #3f75a3;
  --color-secondary: #fff;
  --color-background: #fff;
  --color-font: #222;
  --color-one: #fff;
  --color-two: #f8f8ec;
}

html {
  scroll-behavior: smooth;
}

html, body{
  width: 100%;
  height: 100%;
  background-color: var(--color-default);
  color: var(--color-font);
  font-family: var(--font-default);
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

/**.animated {
  animation-duration: 6s;
}**/

/**********

LOADING

***********/

.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: var(--color-default);
  z-index: 99999;
}

.sk-cube-grid {
  width: 600px;
  height: 600px;
  margin: 60px auto;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: var(--color-primary);
  float: left;
   -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
   animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube img {
  width: 100%;
}

.sk-cube-grid .sk-cube1 {
   -webkit-animation-delay: 0.2s;
   animation-delay: 0.2s; }
.sk-cube-grid .sk-cube2 {
   -webkit-animation-delay: 0.3s;
   animation-delay: 0.3s; }
.sk-cube-grid .sk-cube3 {
   -webkit-animation-delay: 0.4s;
   animation-delay: 0.4s; }
.sk-cube-grid .sk-cube4 {
   -webkit-animation-delay: 0.1s;
   animation-delay: 0.1s; }
.sk-cube-grid .sk-cube5 {
   -webkit-animation-delay: 0.2s;
   animation-delay: 0.2s; }
.sk-cube-grid .sk-cube6 {
   -webkit-animation-delay: 0.3s;
   animation-delay: 0.3s; }
.sk-cube-grid .sk-cube7 {
   -webkit-animation-delay: 0s;
   animation-delay: 0s; }
.sk-cube-grid .sk-cube8 {
   -webkit-animation-delay: 0.1s;
   animation-delay: 0.1s; }
.sk-cube-grid .sk-cube9 {
   -webkit-animation-delay: 0.2s;
   animation-delay: 0.2s; }

@-webkit-keyframes sk-cubeGridScaleDelay {
   0%, 70%, 100% {
       -webkit-transform: scale3D(1, 1, 1);
       transform: scale3D(1, 1, 1);
   } 35% {
         -webkit-transform: scale3D(0, 0, 1);
         transform: scale3D(0, 0, 1);
     }
}

@keyframes sk-cubeGridScaleDelay {
   0%, 70%, 100% {
       -webkit-transform: scale3D(1, 1, 1);
       transform: scale3D(1, 1, 1);
   } 35% {
         -webkit-transform: scale3D(0, 0, 1);
         transform: scale3D(0, 0, 1);
     }
}

/******************************

GO TO TOP

*******************************/

.gototop {
  position: fixed;
  display: block;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: opacity .3s ease, margin-right .5s ease-out;
  z-index: 15;
}

.gototop i {
  background-color: var(--color-primary);
  color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  font-weight: 700;
  margin: 10px;
  text-decoration: none;
  transition: 0.5s ease-in-out;
}

.gototop i:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #ababab, 4px 4px 10px #ababab;
}

.visible {
  transition: opacity .3s ease, margin-right .5s ease-out;
  margin-right: 0px;
  opacity: 1;
}

/******************************

MENU

*******************************/

.top {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--color-primary);
  top: 60px;
  left: 0;
  height: 30px;
  width: 100%;
  z-index: 8;
}

.top a {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin: 0px 0px 0px 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  /**opacity: 0;
  animation: fade-in 1s ease forwards;**/
}

/**.top a:nth-child(1) {
  animation-delay: 2.25s;
}

.top a:nth-child(2) {
  animation-delay: 1.75s;
}**/

.top i {
  margin: 0px 10px 0px 0px;
  background-color: #fff;
  color: var(--color-primary);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
}

.top.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.main-header {
  position: fixed;
  top: 0;
  max-height: 40px;
  z-index: 9;
  width: 100%;
  padding-top: 17px;
  overflow: hidden;
  opacity: 1;
  padding-bottom: 6px;
  background-color: var(--color-header);
  border-bottom: 2px solid var(--color-primary);
}

.open-nav {
  max-height: 400px !important;
}

.sticky {
  opacity: 1;
  top: 0px;
  background-color: var(--color-header);
  border-bottom: 2px solid var(--color-primary);
}

.main-header .navigator .logo {
  width: 142px;
  height: auto;
  margin: 0px 0px 0px 10px;
  /**opacity: 0;
  animation: fade-in 1s ease forwards;**/
}

/**.main-header .navigator .logo:nth-child(1) {
  animation-delay: 1s;
}**/

.main-header .navigator nav {
  float: right;
  width: 680px;
  margin: -10px 40px 0px 0px;
}

.main-header .navigator nav ul {
  list-style: none;
  overflow: hidden;
  text-align: left;
  float: left;
}

.main-header .navigator nav ul li {
  display: inline-block;
  margin: 0px 25px 0px 0px;
  /**opacity: 0;
  animation: fade-in 1s ease forwards;**/
}

/**@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.main-header .navigator nav ul li:nth-child(1) {
  animation-delay: 3.5s;
}

.main-header .navigator nav ul li:nth-child(2) {
  animation-delay: 3s;
}
.main-header .navigator nav ul li:nth-child(3) {
  animation-delay: 2.5s;
}

.main-header .navigator nav ul li:nth-child(4) {
  animation-delay: 2s;
}

.main-header .navigator nav ul li:nth-child(5) {
  animation-delay: 1.5s;
}

.main-header .navigator nav ul li span {
  font-weight: 800;
}**/

.main-header .navigator nav ul a {
  color: var(--color-default);
  font-size: 18px;
  text-decoration: none;
}

.main-header .navigator nav ul i {
  color: #e7a300;
}

.main-header .navigator ul li ul {
  position: absolute;
  top: -18px;
  left: 0;
  width: 50%;
  height: 100vh;
  background-color: var(--color-header);
  visibility: hidden;
  opacity: 0;
  display: none;
}

/**.main-header .navigator ul li:hover > ul,
.main-header .navigator ul li:focus-within > ul,
.main-header .navigator ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}**/

.main-header .navigator ul li ul li {
  margin: 28px 25px 0px 0px;
}

.main-header .navigator .mobile-toggle {
  display: none;
  cursor: pointer;
  float: right;
  position: relative;
  margin: 0px 30px 0px 0px;
  -webkit-transition: all 500ms ease-in;
  -moz-transition: all 500ms ease-in;
  transition: all 500ms ease-in;
}

.main-header .navigator .mobile-toggle span {
  width: 30px;
  height: 2px;
  margin: 8px;
  border-radius: 1000px;
  background-color: var(--color-primary);
  display: block;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.open-nav .mobile-toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
  position: relative;
}

.open-nav .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.open-nav .mobile-toggle span:nth-child(3) {
  transform: rotate(-45deg);
  top: -10px;
  position: relative;
}

.main-header .navigator .mobile-toggle span:nth-child(1) {
  animation-delay: 3s;
}

.main-header .navigator .mobile-toggle span:nth-child(2) {
  animation-delay: 3.5s;
}

.main-header .navigator .mobile-toggle span:nth-child(3) {
  animation-delay: 4s;
}

.main-header .navigator {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 2%;
}

a {
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: 24px;
}

a:before, a:after {
  content: '';
  position: absolute;
  transition: transform .5s ease;
}

.main-header .navigator .effect1 {
  padding-top: 10px;
}

.main-header .navigator .effect1:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transform: scaleX(0);
}

.main-header .navigator .effect1:hover:before {
  transform: scaleX(1);
}

.main-header .navigator #toggleDrop {
  position: relative;
  padding: 3px 4px;
  margin: 0px 8px 0px 0px;
  border-radius: 100px;
  background-color: var(--color-primary);
  color: var(--color-background);
}

.drop {
  display: none;
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4);
}

.drop-content {
  position: fixed; 
  left: 0;
  top: 90px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding: 34px 0px 34px 0px;
  background-color: #fefefe;
  border: 1px solid #888;
}

.drop-content .drop-list {
  position: relative;
  float: left;
  width: 16%;
  height: auto;
  margin: 0.333% 0.333% 0.333% 0.333%;
  background-color: var(--color-background);
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 6px -6px #777;
  -moz-box-shadow: 0 10px 6px -6px #777;
  box-shadow: 0 10px 6px -6px #777;
}

.drop-content .drop-list img {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.drop-content .drop-list p {
  padding: 2px 0px 2px 16px !important;
}

/******************************

HERO

*******************************/
.hero  {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 90px 0px 0px 0px;
  width: 100%;
  height: 100vh;
  background-image: url("img/reinigungsdienstleistungen-in-hamburg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.base {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width: 1200px;
  height: auto;
  padding-bottom: 34px;
}

.base .side {
  position: relative;
  float: left;
  width: 550px;
  height: auto;
  margin: 34px 0px 0px 34px;
}

.base .side h1 {
  font-size: 24px;
  text-align: right;
  color: #000;
  padding: 0px 12px 12px 12px;
}

.base .side h3 {
  text-align: left;
  margin: 0px 0px 20px 0px;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.5;
}

.base .side img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}

/******************************

TITLES

*******************************/

.break {
  position: relative;
  bottom: 140px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 1px;
}

.section {
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin: auto;
}

.section-page {
  margin: 90px 0px 0px 0px !important;
  padding: 70px 0px 0px 0px !important;
  overflow: hidden;
}

.section-qta {
  position: relative;
  padding: 100px 0;
  background-image: url("img/sld-1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-qta .qta-btn {
  position: relative;
  margin: 30px 0px 0px 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.section-qta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.section-qta * {
  position: relative;
  z-index: 2;
}

.section-qta h1 {
  color: var(--color-one); 
}

.section-qta h5 {
  color: var(--color-one); 
}

.section-qta a {
  position: relative;
  padding: 6px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  font-size: 12px;
  display: block;
  overflow: hidden;
  width: 180px;
  height: auto;
  text-transform: uppercase;
  border: 2px solid var(--color-primary);
  border-radius: 100px;
  color: var(--color-primary);
}

.section-qta a:hover {
  color: #fff !important;
}

.section-one {
  padding: 20px 0px 0px 0px;
  background-color: var(--color-one);
}

.section-two {
  padding: 20px 0px 0px 0px;
  background-color: var(--color-two);
}

.section-dark {
  background-color: #000;
  margin: 90px 0px 0px 0px !important;
  padding: 70px 0px 0px 0px !important;
  overflow: hidden;
}
	
.section h1 {
  margin: 30px 0px 30px 0px;
  text-align: center;
  font-size: 28px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section .white-title {
  margin: 0px 0px 30px 0px;
  text-align: center;
  font-size: 28px;
  color: #f0f0f0;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.section span {
  color: var(--color-primary);
}

.section h5 {
  text-align: center;
  width: 90%;
  margin: auto;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.5;
}

.section h5 span {
  font-weight: 700;
  color: var(--color-font);
}

.section h6 {
  text-align: center;
  width: 90%;
  margin: auto;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.5;
  color: #f0f0f0;
}

.section .line-a {
  background-color: var(--color-primary);
  height: 2px;
  width: 280px;
  margin: -20px auto;
  position: relative
}

.section .line-b {
  background-color: var(--color-primary);
  height: 2px;
  width: 220px;
  margin: 30px auto;
  position: relative
}

/******************************

SECTIONS

*******************************/

.container {
  position: relative;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  height: auto;
  padding-bottom: 34px;
}

.container .box {
  position: relative;
  float: left;
  width: 550px;
  height: auto;
  margin: 34px 0px 0px 34px;
}

.container .box h1 {
  font-size: 24px;
  text-align: right;
  color: #000;
  padding: 0px 12px 12px 12px;
}

.container .box h2 {
  text-align: left;
  margin: 20px 0px 20px 0px;
  font-size: 20px;
}

.container .box h3 {
  text-align: left;
  margin: 0px 0px 20px 0px;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.5;
}

.container .box h4 {
  text-align: left;
  margin: 20px 0px 20px 0px;
  font-size: 18px;
}

.container .box .line-c {
  background-color: var(--color-primary);
  float: right;
  height: 1px;
  width: 280px;
  margin: 0px auto;
  position: relative
}

.container .box .line-e {
  background-color: var(--color-primary);
  height: 1px;
  width: 220px;
  margin: 30px auto;
  position: relative
}

.container .box img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}

.container .card {
  position: relative;
  margin: 0px 0px 20px 28px;
  float: left;
  width: 350px;
  height: auto;
  transition: 0.5s ease-in-out;
  background-color: var(--color-two);
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 6px -6px #777;
  -moz-box-shadow: 0 10px 6px -6px #777;
  box-shadow: 0 10px 6px -6px #777;
}

.container .card .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 14px 20px 14px;
}

.container .card .content .imgBx {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.container .card .content .icon {
  width: 70px;
  height: 100%;
}

.container .card .content .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .card .content .imgBlog {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.container .card .content .imgBlog img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container .card .content .contentBx h3 {
  color: var(--color-font);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin: 20px 0 10px;
  line-height: 1.1em;
}

.container .card .content .contentBx p {
  font-size: 16px; 
  font-weight: 300;
  text-transform: initial;
}

/**.container .card a {
  position: relative;
  padding: 10px 25px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
}

.container .card  a span {
  position: relative;
  z-index: 1;
  color: var(--color-font);
  font-size: 14px;   
}

.container .card a .liquid {
  position: absolute;
  left: 0;
  top: -90px;
  width: 200px;
  height: 200px;
  background-color: var(--color-primary);
  box-shadow: inset 0 0 50px rgba(0,0,0,.5);
  transition: 0.5s;
}

.container .card:hover a .liquid {
  top: -120px;
}

.container .card a .liquid:before,
.container .card a .liquid:after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
}

.container .card a .liquid:before {
  border-radius: 45%;
  background-color: var(--color-two);
  animation: animate 5s linear infinite;
}

.container .card a .liquid:after {
  border-radius: 40%;
  background-color: var(--color-two);
  animation: animate 10s linear infinite;   
}

@keyframes animate {
   0% {
       transform:translate(-50%, -75%) rotate(0deg);
   }
   100% {
       transform:translate(-50%, -75%) rotate(360deg);
   }
}**/

.container .card a {
  position: relative;
  padding: 6px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  font-size: 12px;
  display: block;
  overflow: hidden;
  width: 180px;
  height: auto;
  text-transform: uppercase;
  border: 2px solid var(--color-primary);
  border-radius: 100px;
  color: var(--color-primary);
}

.container .card a:hover {
  color: #fff !important;
}

*:before,
*:after {
  z-index: -1;
}

.swipe:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.swipe:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.container .poravnanje {
  font-size: 18px;
  text-align: left;
  margin: 12px 12px 0px 12px;
}

.zoom-effect {
  display: inline-block;
  overflow: hidden;
}

.zoom-effect img {
  transition: transform 4s;
}

.zoom-effect:hover img {
  transform: scale(1.2);
}

.container .link-btn {
  position: relative;
  padding: 8px 22px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  background-color: var(--color-primary);
  float: right;
  color: #000;
  border-radius: 26px;
  border: 1px solid #000;
  font-size: 18px;
  transition: all 0.5s ease-in-out;
}

.container .link-btn:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #ababab, 4px 4px 10px #ababab;
}

.container .link-a {
  position: relative;
  width: 280px;
  padding: 8px 22px;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  background-color: var(--color-primary);
  float: none;
  color: #000;
  border-radius: 26px;
  border: 1px solid #000;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}

.container .link-a:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #ababab, 4px 4px 10px #ababab;
}

.container .fa-angle-double-right,
.container .fa-question-circle-o {
  cursor: pointer;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: var(--color-background);
  color: var(--color-primary);
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  margin: 0px 0px 0px 10px;
}

.container .box p,
.container-b .box-b p {
  font-size: 18px;
  margin: 6px auto;
}

.container .box .white-font {
  color: var(--color-default);
}

.container span {
  font-weight: 700;
}

.line-up {
  border-top: 1px solid #f0f0f0;
}

.cube-o {
  position: relative;
  margin: 50px auto;
  width: 100%;
  height: auto;
}

.container-b {
  position: relative;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  height: auto;
  background-color: transparent;
  color: #f0f0f0;
  padding-bottom: 34px;
}

.container-b .box-b {
  position: relative;
  float: left;
  width: 350px;
  height: auto;
  font-size: 18px;
  margin: 34px 0px 0px 34px;
  text-align: center;
}

.container-b .box-b p {
  font-size: 16px;
  text-align: left;
  margin: 12px 0px 0px 0px;
}

.container .box i,
.container-b .box-b i {
  background-color: var(--color-primary);
  color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px;
}

.container-b .box-b h4 {
  font-size: 36px;
  color: var(--color-primary);
  text-align: center;
  margin: 6px auto;
}

.container-b .box-b .web {
  color: var(--color-primary);
}

#call-icons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9999;
}

#call-icons img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  -webkit-filter: drop-shadow(5px 5px 5px #090909);
  filter: drop-shadow(5px 5px 5px #090909);
  cursor: pointer;
  transition: transform 0.3s ease;
}

#call-icons img:hover {
  transform: scale(1.1);
}

.telefon-icon {
  position: fixed;
  padding: 6px 32px 6px 32px;
  bottom: 0;
  right: 15px;
  cursor: pointer;
  background-color: var(--color-primary);
}

.notification {
  width: 10px;
  height: 10px;
  background-color: #d50808;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  right: 5px;
  transition: background-color 0.5s ease;
}

.notification.pulsate {
  animation: pulsate 1s infinite;
}

@keyframes pulsate {
    0% {
      box-shadow: 0 0 5px 0px #0e9916;
    }
    50% {
      box-shadow: 0 0 20px 10px rgba(0, 128, 0, 0);
    }
    100% {
      box-shadow: 0 0 5px 0px #0e9916;
    }
}

/******************************

GALLERY

*******************************/

.gallery-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0px 0px 0px;
  margin: 50px auto;
  width: 1200px;
  height: auto;
  border-radius: 8px;
}

.gallery-container h4 {
  position: relative;
  width: 100%;
  padding: 0px 0px 10px 0px;
  text-align: center;
  font-size: 18px;
  color: var(--color-primary);
}

.filter-buttons {
  text-align: center;
  margin: 20px 0px 20px 0px;
}

.filter-btn {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--color-font);
  color: var(--color-default);
  transition: background-color 0.3s;
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-default);
}

.gallery-container .gallery-item {
  position: relative;
  margin: 0px 0px 20px 20px;
  float: left;
  width: 275px;
  height: 280px;
  transition: 0.5s ease-in-out;
}

.gallery-container .gallery-item:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #ababab, 4px 4px 10px #ababab;
}

.gallery-container .gallery-item img {
  width: 100%;
  height: 100%;
}

.lightbox {
  position: fixed;
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;              
  overflow: auto;
  top: 0;
  left: 0;
  z-index: 9999;
}

.lightbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 0.3s ease;
}


.lightbox-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  margin: auto;
}

.lightbox-content img {
  border-radius: 8px;
  box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
  border: 2px solid #252525;
  width: 520px;
  height: auto;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.lightbox-content img:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #000, 4px 4px 10px #000;
}

.lightbox-prev,
.lightbox-next {
  position: absolute !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
  background-color: var(--color-primary);
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 10px !important;
  color: #303A48 !important;
  border: 2px solid #252525;
  top: 45% !important;
  cursor: pointer !important;
}

.lightbox-next {
  margin: 0px -120px 0px 0px;
  right: 0;
  opacity: 0.5;
}

.lightbox-prev {
  margin: 0px 0px 0px -120px;
  left: 0;
  opacity: 0.5;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  top: 30px;
  right: 30px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background-color: var(--color-primary);
  color: var(--color-default);
  font-size: 28px;
  border: 2px solid #252525;
  border-radius: 100px;
  z-index: 1000;
}

/******************************

FOOTER

*******************************/

.footer {
  background-color: #000;
  padding: 50px 0px 0px 0px;
}

.copyright {
  position: relative;
  width: 100%;
  height: 42px;
  float: left;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
}

.copyright .border-line {
  position: relative;
  display: block;
  margin: auto;
  width: 70%;
  height: 1px;
  background-color: #f0f0f0;
}

.copyright p {
  margin: 10px auto;
  color: #f0f0f0;
  font-size: 14px;
}

/******************************

FORMS

*******************************/

#open-form-button {
  position: fixed;
  left: 10px;
  bottom: 10px;
  width: 320px;
  padding: 8px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  background-color: var(--color-primary);
  float: none;
  color: #000;
  border-radius: 26px;
  border: 1px solid #000;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}

#open-form-button:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #ababab, 4px 4px 10px #ababab;
}

#open-form-button i {
  cursor: pointer;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: var(--color-background);
  color: var(--color-primary);
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  margin: 0px 0px 0px 10px;
}

.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
}

.close-popup {
  position: fixed;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  font-size: 30px;
  text-align: center;
  line-height: 50px;
  transition: all 0.5s ease-in-out;
  z-index: 999;
}

.popup-container h2 {
  text-align: center;
  color: var(--color-secondary);
  font-size: 18px;
}

form {
  width: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  margin: 0 auto;
  background-color: #0d0d0c;
  padding: 0;
  border: 1px solid #252525;
  border-radius: 5px;
}

label {
  display: block;
  margin: 25px 10px 15px 10px;
  color: var(--color-default);
  font-size: 16px;
  font-weight: 600;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
  position: relative;
  width: 320px;
  height: 40px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: transparent;
  float: none;
  color: var(--color-default);
  border-radius: 5px;
  border: 1px solid #252525;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}

input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
input[type="number"]:hover,
select:hover,
textarea:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #000, 4px 4px 10px #000;
}

textarea {
  height: 100px;
}

input[type="submit"] {
  background-color: var(--color-primary);
  color: var(--color-default);
  padding: 10px 20px;
  border: none;
  border: 2px solid #252525;  
  border-radius: 3px;
  cursor: pointer;
  margin: 25px 10px 15px 10px;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}

input[type="submit"]:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #000, 4px 4px 10px #000;
}

.captcha img {
  width: 140px !important;
}


/******************************

PAGE HEADER

*******************************/

.page-header {
  position: relative;
  margin: 90px auto;
  width: 100%;
  height: 180px;
}

/******************************

COOKIES

*******************************/

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a18;
  color: var(--color-secondary);
  text-align: center;
  border-top: 2px solid #252525;
  font-size: 10px;
  padding: 15px;
  z-index: 1000;
}

#cookie-content {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

#cookie-content p {
  text-align: left;
}

#cookie-options {
  margin: 30px 0 30px 0;
}

#cookie-options label {
  display: inline;
  text-align: center;
  margin-bottom: 15px;
  color: var(--color-secondary);
  font-size: 10px;
}

#cookie-buttons button {
  background-color: var(--color-primary);
  color: var(--color-default);
  padding: 10px 20px;
  border: none;
  border: 2px solid #252525;
  border-radius: 3px;
  cursor: pointer;
  margin: 25px 10px 15px 10px;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}

#cookie-buttons button:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #000, 4px 4px 10px #000;
}

#close-button {
  position: relative;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 40px;
  height: 40px;
  margin: 0 0 10px 0;
  font-size: 20px;
  color: var(--color-secondary);
  background-color: #20201e;
  border: 2px solid #252525;
  border-radius: 100px;
  cursor: pointer;
}

.hidden {
  display: none;
}

/******************************

ANIME ENVELOPE

*******************************/

#envelope {
  position: relative;
  width: 280px;
  height: 180px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  margin-left: auto;
  margin-right: auto;
  top: 80px;
  background-color: #00334c;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.front {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 3;
}

.flap {
  border-left: 140px solid transparent;
  border-right: 140px solid transparent;
  border-bottom: 82px solid transparent;
  /* a little smaller */
  border-top: 98px solid #00334c;
  /* a little larger */
  -webkit-transform-origin: top;
  transform-origin: top;
}

.pocket {
  border-left: 140px solid #0077B2;
  border-right: 140px solid #0077B2;
  border-bottom: 90px solid #006da3;
  border-top: 90px solid transparent;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.letter {
  position: relative;
  background-color: #fff;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  height: 90%;
  top: 5%;
  border-radius: 6px;
  box-shadow: 0 2px 26px rgba(0, 0, 0, 0.12);
}

.letter:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgba(255, 255, 255, 0)), color-stop(55%, rgba(215, 227, 239, 0.7)), to(#d7e3ef));
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(215, 227, 239, 0.7) 55%, #d7e3ef 100%);
}

.words {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 30%;
  background-color: #EEEFF0;
  z-index: 3;
}

.words a {
  position: relative;
  padding: 6px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  font-size: 12px;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  text-transform: uppercase;
  border: 2px solid var(--color-primary);
  border-radius: 100px;
  color: var(--color-primary);
}

.words a:hover {
  color: #fff !important;
}

.words.line1 {
  top: 15%;
}

.words.line2 {
  top: 30%;
}

.words.line3 {
  top: 50%;
}

.words.line4 {
  top: 70%;
}

.open .flap {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-transition: z-index .6s, -webkit-transform .4s ease;
  transition: z-index .6s, -webkit-transform .4s ease;
  transition: transform .4s ease, z-index .6s;
  transition: transform .4s ease, z-index .6s, -webkit-transform .4s ease;
  z-index: 1;
}

.close .flap {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transition: z-index 1s, -webkit-transform .4s .6s ease;
  transition: z-index 1s, -webkit-transform .4s .6s ease;
  transition: transform .4s .6s ease, z-index 1s;
  transition: transform .4s .6s ease, z-index 1s, -webkit-transform .4s .6s ease;
  z-index: 5;
}

.close .letter {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: z-index 1s, -webkit-transform .4s ease;
  transition: z-index 1s, -webkit-transform .4s ease;
  transition: transform .4s ease, z-index 1s;
  transition: transform .4s ease, z-index 1s, -webkit-transform .4s ease;
  z-index: 1;
}

.open .letter {
  -webkit-transform: translateY(-60px);
  transform: translateY(-60px);
  -webkit-transition: z-index .6s, -webkit-transform .4s .6s ease;
  transition: z-index .6s, -webkit-transform .4s .6s ease;
  transition: transform .4s .6s ease, z-index .6s;
  transition: transform .4s .6s ease, z-index .6s, -webkit-transform .4s .6s ease;
  z-index: 2;
}

.hearts {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 2;
}

.heart {
  position: absolute;
  bottom: 0;
  right: 10%;
}

.heart:before,
.heart:after {
  position: absolute;
  content: "";
  left: 25px; /* Centriranje za okrugli oblik */
  top: 25px;  /* Centriranje za okrugli oblik */
  width: 50px;
  height: 50px;
  background: #D00000;
  border-radius: 50%; /* Okrugli oblik */
}

.heart:after {
  left: 75px; /* Pomera drugi krug desno */
  top: 25px;  /* I dalje na istoj visini */
}


.close .heart {
  opacity: 0;
  -webkit-animation: none;
  animation: none;
}

.a1 {
  left: 20%;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  opacity: 1;
  -webkit-animation: slideUp 4s linear 1, sideSway 2s ease-in-out 4 alternate;
  -moz-animation: slideUp 4s linear 1, sideSway 2s ease-in-out 4 alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
}

.a2 {
  left: 55%;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-animation: slideUp 5s linear 1, sideSway 4s ease-in-out 2 alternate;
  -moz-animation: slideUp 5s linear 1, sideSway 4s ease-in-out 2 alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
}

.a3 {
  left: 10%;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 1;
  -webkit-animation: slideUp 7s linear 1, sideSway 2s ease-in-out 6 alternate;
  -moz-animation: slideUp 7s linear 1, sideSway 2s ease-in-out 6 alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
}

@-webkit-keyframes slideUp {
  0% {
    top: 0;
  }

  100% {
    top: -600px;
  }
}

@keyframes slideUp {
  0% {
    top: 0;
  }

  100% {
    top: -600px;
  }
}

@-webkit-keyframes sideSway {
  0% {
    margin-left: 0px;
  }

  100% {
    margin-left: 50px;
  }
}

@keyframes sideSway {
  0% {
    margin-left: 0px;
  }

  100% {
    margin-left: 50px;
  }
}

.envlope-wrapper {
  height: 310px;
}

.reset {
  text-align: center;
}

.reset button {
  font-weight: 800;
  font-style: normal;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
  -webkit-appearance: none;
  background-color: transparent;
  border: solid 2px #0077B2;
  border-radius: 4px;
  color: #0077B2;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  margin: 5px;
  padding: 10px;
  line-height: 1em;
  text-decoration: none;
  min-width: 120px;
}

.reset button:hover {
  background-color: #0077B2;
  color: #fff;
}

/******************************

RESPONSIVE

*******************************/

@media only screen and (max-width: 1080px) {

  .main-header .navigator nav {
    width: 100%;
    padding: 12px 0px 12px 20px;
    margin: 0;
  }
  
  .main-header .navigator nav ul {
    padding: 12px;
    margin: 0;
    border-top: 2px solid #252525;
    float: none;
  }
  
  .main-header .navigator nav ul li {
    margin: 22px 0px 0px 0px;
    text-align: left; 
    display: block;
  }
  
  .main-header .navigator nav ul a {
    font-size: 18px;
  }
  
  .main-header .navigator .mobile-toggle {
    display: block;
  }
  
  .container {
    width: 750px;
  }
  
  .container .box {
    margin: 34px 0px 0px 100px;
  }
  
  .base {
    width: 750px;
  }
  
  .base .side {
    margin: 34px 0px 0px 100px;
  }
  
  .container .card {
    width: 320px;
  }
  
  .container-b {
    width: 750px;
  }
  
  .container-b .box-b {
    width: 320px;
  }
  
  .gallery-container {
    width: 720px;
  }
  
  .gallery-container .gallery-item {
    width: 330px;
  }

}

@media only screen and (max-width: 770px) {

  .sk-cube-grid {
    width: 300px;
    height: 300px;
    margin: 160px auto;
  }
  .top {
    height: 60px;
  }
  
  .top a {
    margin: 0px 0px 0px 10px;
  }

  .top i {
    margin: 0px 3px 0px 0px;
  }
  
  .main-header .navigator nav ul a {
    font-size: 16px;
  }

  .info-line {
    height: 56px;
  }

  .info-line p {
    font-size: 16px;
    margin: 4px 0px 0px 2px;
  }

  .info-line i {
    margin: 0px 2px 0px 0px;
  }

  .main-header .navigator header nav li a {
    width: 70%;
    font-size: 16px;
  }
  
  .drop-content {
    height: 500px;
    overflow-y: auto;
  }
  
  .drop-content .drop-list {
    width: 48%;
    margin: 0.66% 0.66% 0.66% 0.66%;
  }

  .section h1 {
    font-size: 22px;
    margin: 0px 8px 30px 8px;
  }

  .section h5 {
    font-size: 16px;
  }

  .container .box h3 {
    font-size: 16px;
  }
  
  .base .side h3 {
    font-size: 16px;
  }

  .section .line-a,
  .section .bor-border {
    width: 70%;
  }

  .container {
    width: 100%;
  }

  .container .box {
    width: 360px;
    margin: 20px auto;
  }
  
  .hero  {
	height: auto;
  }

  .base {
    width: 100%;
  }

  .base .side {
    width: 360px;
    margin: 50px auto;
  }
  
  .container .card {
    width: 360px;
    margin: 20px auto;
  }

  .container .box h1 {
    font-size: 20px;
  }

  .container .box .line-c {
    float: left;
  }

  .container .box p,
  .container-b .box-b p {
    font-size: 16px;
  }

  .container .poravnanje {
    font-size: 16px;
  }

  .form-control {
    width: 94%;
    font-size: 16px;
  }

  .container-b .box-b h6 {
    margin: 6px 0px 6px 0px;
    font-size: 16px;
  } 

  .submit {
    width: 110px;
    font-size: 16px ;
  }

  .container-b .box-b h5 {
    font-size: 16px;
  }

  .container-b {
    width: 98%;
  }

  .container-b .box-b {
    width: 360px;
    margin: 20px auto;
    font-size: 16px;
  }

  .gallery-container {
    width: 100%;
    padding: 2% 0px 0px 0px;
  }

  .gallery-container .gallery-item {
    width: 47%;
    height: 200px;
    margin: 0px 0px 2% 2%;
  }

  .lightbox-content {
    width: 84%;
    margin: 100px auto;
  }

  .gallery-container .gallery-item a.info {
    top: 140px;
    right: 0px;
  }
  
  .lightbox-content img {
    width: 100%;
  }
  
  -webkit-transform: scale(1);
    transform: scale(1);
  }

  .lightbox-next {
    margin: 0;
    right: 0;
  }

  .lightbox-prev {
    margin: 0;
    left: 0;
  }

  #call-icons {
    bottom: 80px;
  }

  #cookie-options label {
    display: block;
  }

  .copyright {
    font-size: 16px;
  }
  
  input.captcha-btn {
    margin: 20px 0 20px 0 !important;
 }
}

@media only screen and (max-width: 380px) {
  .container .box {
   width: 310px;
  }

  .container .box img {
    width: 290px;
  }

  .base .side {
   width: 310px;
  }

  .base .side img {
    width: 290px;
  }

  .gallery-container .gallery-item {
    width: 310px;
  }
}/******************************

SLIDER

*******************************/

.mySlides {
  display: none;
}

.slideshow-container {
  width: 100%;
  height: 650px !important;
  position: relative;
  margin: 88px auto;
  border-bottom: 2px solid var(--color-primary);
}

.slide1 {
  background-image: url("img/sld-1.jpg");
  width: 100%;
  height: 650px !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide2 {
  background-image: url("img/sld-2.jpg");
  width: 100%;
  height: 650px !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide3 {
  background-image: url("img/sld-3.jpg");
  width: 100%;
  height: 650px !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fade {
  animation-name: fade;
  animation-duration: 2.5s;
}

@keyframes fade {
  from {opacity: 0} 
  to {opacity: 1}
}

.caption {
  position: absolute;
  padding: 12px 62px;
  text-align: center;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: slide-in 3s forwards, slide-up 3s forwards;
  z-index: 2;
}

@keyframes slide-in {
  from {
    transform: translate(-100%, 0);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.caption h3 {
  font-size: 28px;
  color: var(--color-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: color-change 2s infinite;
}

@keyframes color-change {
  0% {
    color: var(--color-primary);
  }
  50% {
    color: #f6f6f6; /* Druga boja */
  }
  100% {
    color: var(--color-primary);
  }
}

.caption p {
  font-size: 18px;
  color: #f6f6f6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-page {
  position: relative;
  margin: 120px auto;
  padding: 20px 0px 0px 0px;
  background-color: #f6f6f6;
}

.section-page h1 {
  text-align: center;
  font-size: 28px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-page span {
  color: var(--color-primary);
}

.section-page h5 {
  text-align: center;
  width: 90%;
  margin: auto;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.5;
}

.section-page h5 span {
  font-weight: 700;
  color: #222;
}

.section-page h6 {
  text-align: center;
  width: 90%;
  margin: auto;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.5;
  color: #f0f0f0;
}

.section-page .bor {
  background: var(--color-primary);
  height: 2px;
  width: 280px;
  margin: -20px auto;
  position: relative
}

.section-page .bor-2 {
  background: var(--color-primary);
  height: 2px;
  width: 220px;
  margin: 30px auto;
  position: relative
}

/**@keyframes slide-up {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30%;
    opacity: 1;
  }
}**/

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 1%;
  background-color: var(--color-primary) !important;
  width: 380px !important;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.popup-content {
  text-align: center;
  font-size: 16px;
  color: #000;
}

.waves {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 90px;
z-index: 1;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

@media only screen and (max-width: 1080px) {

  .slideshow-container {
    height: 360px !important;
  }
  
  .slide1, .slide2, .slide3 {
    height: 360px !important;
  }
  
  .caption {
    padding: 6px 30px;
    left: 2%;
    right:2%;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(145%);
  }
  
  /**@keyframes slide-up {
    from {
      bottom: 0;
      opacity: 0;
  }
    to {
      bottom: 50%;
      opacity: 1;
    }
  }**/
}



/**
.caption {
  position: absolute;
  padding: 12px 62px;
  text-align: center;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: slide-in 3s forwards, slide-up 3s forwards;
  z-index: 2;
}
**/



@media only screen and (max-width: 767px) {

  .slideshow-container {
    height: 260px !important;
  }
  
  .slide1, .slide2, .slide3 {
    height: 260px !important;
  }
  
  .caption {
    padding: 6px 30px;
    left: 2%;
    right:2%;
	bottom: -32%;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(110%);
  }
  
@keyframes slide-in {
  from {
    transform: translate(-100%, 0);
    opacity: 0;
  }
  to {
    transform: translate(0%, 0);
    opacity: 1;
  }
}
  
  /**@keyframes slide-up {
    from {
      bottom: 0;
      opacity: 0;
  }
    to {
      bottom: 50%;
      opacity: 1;
    }
  }**/
  
  .caption h3 {
    font-size: 18px;
  }
  
  .caption p {
    font-size: 16px;
  }
  
  .previous_btn {
    left: 50px;
  }
  .next_btn {
    right: 50px;
  }
  
  .popup {
    width: 320px !important;
  }
  
  .waves {
	  display: none;
  }

}/******************************

ANIMATIONS

// auto
wow fadeIn animated
wow bounceInLeft

// manual
animation-element slide-left
animation-element bounce-up
animation-element multi-step-left
animation-element multi-step-right

*******************************/

.bounce-up {
  opacity: 0;
  -moz-transition: all 2000ms ease-out;
  -webkit-transition: all 2000ms ease-out;
  -o-transition: all 2000ms ease-out;
  transition: all 2000ms ease-out;
  -moz-transform: translate3d(0px, 200px, 0px);
  -webkit-transform: translate3d(0px, 200px, 0px);
  -o-transform: translate(0px, 200px);
  -ms-transform: translate(0px, 200px);
  transform: translate3d(0px, 200, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bounce-up.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-left {
 opacity: 0;
 -moz-transition: all 500ms linear;
 -webkit-transition: all 500ms linear;
 -o-transition: all 500ms linear;
 transition: all 500ms linear;
 -moz-transform: translate3d(-100px, 0px, 0px);
 -webkit-transform: translate3d(-100px, 0px, 0px);
 -o-transform: translate(-100px, 0px);
 -ms-transform: translate(-100px, 0px);
 transform: translate3d(-100px, 0px, 0px);
}
.animation-element.slide-left.in-view {
 opacity: 1;
 -moz-transform: translate3d(0px, 0px, 0px);
 -webkit-transform: translate3d(0px, 0px, 0px);
 -o-transform: translate(0px, 0px);
 -ms-transform: translate(0px, 0px);
 transform: translate3d(0px, 0px, 0px);
}

@-moz-keyframes left_animation {
  0% {
    opacity: 0;
    -moz-transform: rotate(180deg) translate3d(100%, 100%, 0);
  }
  75% {
    opacity: 0.8;
    -moz-transform: rotate(-40deg);
  }
  100% {
    opacity: 1;
    -moz-transform: rotate(0deg) translate3d(0%, 0%, 0);
  }
}

@-webkit-keyframes left_animation {
  0% {
    opacity: 0;
    -webkit-transform: rotate(180deg) translate3d(100%, 100%, 0);
  }
  75% {
    opacity: 0.8;
    -webkit-transform: rotate(-40deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) translate3d(0%, 0%, 0);
  }
}

@keyframes left_animation {
  0% {
    opacity: 0;
    transform: rotate(180deg) translate3d(100%, 100%, 0);
  }
  75% {
    opacity: 0.8;
    transform: rotate(-40deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) translate3d(0%, 0%, 0);
  }
}

@-moz-keyframes right_animation {
  0% {
    opacity: 0;
    -moz-transform: rotate(180deg) translate3d(-100%, -100%, 0);
  }
  75% {
    opacity: 0.8;
    -moz-transform: rotate(40deg);
  }
  100% {
    opacity: 1;
    -moz-transform: rotate(0deg) translate3d(0%, 0%, 0);
  }
}

@-webkit-keyframes right_animation {
  0% {
    opacity: 0;
    -webkit-transform: rotate(180deg) translate3d(-100%, 100%, 0);
  }
  75% {
    opacity: 0.8;
    -webkit-transform: rotate(40deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) translate3d(0%, 0%, 0);
  }
}

@keyframes right_animation {
  0% {
    opacity: 0;
    transform: rotate(180deg) translate3d(-100%, -100%, 0);
  }
  75% {
    opacity: 0.8;
    transform: rotate(40deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) translate3d(0%, 0%, 0);
  }
}

.multi-step-left.in-view {
  -moz-animation: left_animation 1300ms ease-in both;
  -webkit-animation: left_animation 1300ms ease-in both;
  animation: left_animation 1300ms ease-in both;
}

.multi-step-right.in-view {
  -moz-animation: right_animation 1300ms linear both;
  -webkit-animation: right_animation 1300ms linear both;
  animation: right_animation 1300ms linear both;
}

.fly {
transform: translateY(0px);
animation: float 12s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}
/* ===== ICON SYSTEM (zamena za Font Awesome - bez spoljnih fontova/biblioteka) ===== */
.fa{
  display:inline-block;
  width:1em;
  height:1em;
  background-color: currentColor;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:center;
  mask-position:center;
  -webkit-mask-size:contain;
  mask-size:contain;
  vertical-align:middle;
  -webkit-mask-mode:alpha;
  mask-mode:alpha;
}
.fa-phone{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M6.62%2010.79c1.44%202.83%203.76%205.14%206.59%206.59l2.2-2.2c.27-.27.67-.36%201.02-.24%201.12.37%202.33.57%203.57.57.55%200%201%20.45%201%201V20c0%20.55-.45%201-1%201-9.39%200-17-7.61-17-17%200-.55.45-1%201-1h3.5c.55%200%201%20.45%201%201%200%201.25.2%202.45.57%203.57.11.35.03.74-.25%201.02z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M6.62%2010.79c1.44%202.83%203.76%205.14%206.59%206.59l2.2-2.2c.27-.27.67-.36%201.02-.24%201.12.37%202.33.57%203.57.57.55%200%201%20.45%201%201V20c0%20.55-.45%201-1%201-9.39%200-17-7.61-17-17%200-.55.45-1%201-1h3.5c.55%200%201%20.45%201%201%200%201.25.2%202.45.57%203.57.11.35.03.74-.25%201.02z%22/%3E%3C/svg%3E");}
.fa-envelope-o{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%204H4c-1.1%200-1.99.9-1.99%202L2%2018c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm0%204-8%205-8-5V6l8%205%208-5z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20%204H4c-1.1%200-1.99.9-1.99%202L2%2018c0%201.1.9%202%202%202h16c1.1%200%202-.9%202-2V6c0-1.1-.9-2-2-2zm0%204-8%205-8-5V6l8%205%208-5z%22/%3E%3C/svg%3E");}
.fa-link{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M3.9%2012c0-1.71%201.39-3.1%203.1-3.1h4V7H7c-2.76%200-5%202.24-5%205s2.24%205%205%205h4v-1.9H7c-1.71%200-3.1-1.39-3.1-3.1zM8%2013h8v-2H8v2zm9-6h-4v1.9h4c1.71%200%203.1%201.39%203.1%203.1s-1.39%203.1-3.1%203.1h-4V17h4c2.76%200%205-2.24%205-5s-2.24-5-5-5z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M3.9%2012c0-1.71%201.39-3.1%203.1-3.1h4V7H7c-2.76%200-5%202.24-5%205s2.24%205%205%205h4v-1.9H7c-1.71%200-3.1-1.39-3.1-3.1zM8%2013h8v-2H8v2zm9-6h-4v1.9h4c1.71%200%203.1%201.39%203.1%203.1s-1.39%203.1-3.1%203.1h-4V17h4c2.76%200%205-2.24%205-5s-2.24-5-5-5z%22/%3E%3C/svg%3E");}
.fa-facebook{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13%2021v-8h2.6l.4-3H13V8.2c0-.9.3-1.5%201.6-1.5H16V4.1C15.7%204%2014.8%204%2013.7%204%2011.4%204%209.9%205.4%209.9%207.9V10H7v3h2.9v8z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13%2021v-8h2.6l.4-3H13V8.2c0-.9.3-1.5%201.6-1.5H16V4.1C15.7%204%2014.8%204%2013.7%204%2011.4%204%209.9%205.4%209.9%207.9V10H7v3h2.9v8z%22/%3E%3C/svg%3E");}
.fa-instagram{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7%202h10a5%205%200%200%201%205%205v10a5%205%200%200%201-5%205H7a5%205%200%200%201-5-5V7a5%205%200%200%201%205-5zm0%202a3%203%200%200%200-3%203v10a3%203%200%200%200%203%203h10a3%203%200%200%200%203-3V7a3%203%200%200%200-3-3zm5%203.5A5.5%205.5%200%201%201%206.5%2013%205.5%205.5%200%200%201%2012%207.5zm0%202A3.5%203.5%200%201%200%2015.5%2013%203.5%203.5%200%200%200%2012%209.5zM18%206a1%201%200%201%201-1%201%201%201%200%200%201%201-1z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7%202h10a5%205%200%200%201%205%205v10a5%205%200%200%201-5%205H7a5%205%200%200%201-5-5V7a5%205%200%200%201%205-5zm0%202a3%203%200%200%200-3%203v10a3%203%200%200%200%203%203h10a3%203%200%200%200%203-3V7a3%203%200%200%200-3-3zm5%203.5A5.5%205.5%200%201%201%206.5%2013%205.5%205.5%200%200%201%2012%207.5zm0%202A3.5%203.5%200%201%200%2015.5%2013%203.5%203.5%200%200%200%2012%209.5zM18%206a1%201%200%201%201-1%201%201%201%200%200%201%201-1z%22/%3E%3C/svg%3E");}
.fa-question{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm1%2017h-2v-2h2zm2.07-7.75-.9.92c-.65.66-1.17%201.42-1.17%202.83h-2v-.5c0-1.1.45-2.1%201.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41%200-1.1-.9-2-2-2s-2%20.9-2%202H8c0-2.21%201.79-4%204-4s4%201.79%204%204c0%20.88-.36%201.68-.93%202.25z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%202C6.48%202%202%206.48%202%2012s4.48%2010%2010%2010%2010-4.48%2010-10S17.52%202%2012%202zm1%2017h-2v-2h2zm2.07-7.75-.9.92c-.65.66-1.17%201.42-1.17%202.83h-2v-.5c0-1.1.45-2.1%201.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41%200-1.1-.9-2-2-2s-2%20.9-2%202H8c0-2.21%201.79-4%204-4s4%201.79%204%204c0%20.88-.36%201.68-.93%202.25z%22/%3E%3C/svg%3E");}
.fa-star{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%202l2.9%206.6L22%209.3l-5%204.9%201.2%207.1L12%2017.8l-6.2%203.5L7%2014.2%202%209.3l7.1-.7z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%202l2.9%206.6L22%209.3l-5%204.9%201.2%207.1L12%2017.8l-6.2%203.5L7%2014.2%202%209.3l7.1-.7z%22/%3E%3C/svg%3E");}
.fa-times{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.3%205.71%2012%2012l6.3%206.29-1.41%201.42L10.59%2013.4%204.3%2019.71%202.88%2018.3%209.17%2012%202.88%205.71%204.3%204.29l6.29%206.3%206.29-6.3z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M18.3%205.71%2012%2012l6.3%206.29-1.41%201.42L10.59%2013.4%204.3%2019.71%202.88%2018.3%209.17%2012%202.88%205.71%204.3%204.29l6.29%206.3%206.29-6.3z%22/%3E%3C/svg%3E");}
.fa-angle-left{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.41%207.41%2014%206l-6%206%206%206%201.41-1.41L10.83%2012z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M15.41%207.41%2014%206l-6%206%206%206%201.41-1.41L10.83%2012z%22/%3E%3C/svg%3E");}
.fa-angle-right{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M8.59%2016.59%2010%2018l6-6-6-6-1.41%201.41L13.17%2012z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M8.59%2016.59%2010%2018l6-6-6-6-1.41%201.41L13.17%2012z%22/%3E%3C/svg%3E");}
.fa-home{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%203%202%2012h3v8h6v-6h2v6h6v-8h3z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%203%202%2012h3v8h6v-6h2v6h6v-8h3z%22/%3E%3C/svg%3E");}
.fa-map-marker{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%202a7%207%200%200%200-7%207c0%205.25%207%2013%207%2013s7-7.75%207-13a7%207%200%200%200-7-7zm0%209.5A2.5%202.5%200%201%201%2012%206.5a2.5%202.5%200%200%201%200%205z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%202a7%207%200%200%200-7%207c0%205.25%207%2013%207%2013s7-7.75%207-13a7%207%200%200%200-7-7zm0%209.5A2.5%202.5%200%201%201%2012%206.5a2.5%202.5%200%200%201%200%205z%22/%3E%3C/svg%3E");}
.fa-clock-o{-webkit-mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%202a10%2010%200%201%200%200%2020%2010%2010%200%200%200%200-20zm0%2018a8%208%200%201%201%200-16%208%208%200%200%201%200%2016zm.5-13H11v6l5.2%203.1.8-1.3-4.5-2.7z%22/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M12%202a10%2010%200%201%200%200%2020%2010%2010%200%200%200%200-20zm0%2018a8%208%200%201%201%200-16%208%208%200%200%201%200%2016zm.5-13H11v6l5.2%203.1.8-1.3-4.5-2.7z%22/%3E%3C/svg%3E");}
