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

FONTS / COLORS

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

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

:root {
  --font-default: "Nunito", sans-serif;
  --font-primary: "Nunito", sans-serif;
  --font-secondary: "Nunito", sans-serif;
}

:root {
  --color-default: #000;
  --color-header: #000;
  --color-primary: #cd5c1c;
  --color-primary-light: #e66e2a;
  --color-primary-dark: #ac470e;
  --color-secondary: #bdbdbd;
  --color-background: #000;
  --color-font: #bdbdbd;
  --color-one: #000;
  --color-two: #101010;
}

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: 55px;
  height: 55px;
  margin: 300px 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: -100px;
  max-height: 40px;
  z-index: 9;
  width: 100%;
  padding-top: 17px;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 6px;
}

.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: 155px;
  height: auto;
  margin: -12px 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: #fff;
  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/alu-4.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: 44px;
  text-align: right;
  color: var(--color-primary);
  padding: 0px 12px 12px 12px;
}

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

.base .side p {
  text-align: left;
  margin: 0px 0px 20px 0px;
  font-size: 18px;
}

.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: 0px;
}

.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;
  background-color: var(--color-one);
}

.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: 50px 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: var(--color-font);
  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: var(--color-font);
  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 #101010;
  -moz-box-shadow: 0 10px 6px -6px #101010;
  box-shadow: 0 10px 6px -6px #101010;
}

.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: 220px;
  overflow: hidden;
}

.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,
.container .box 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,
.container .box 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-font);
}

.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;
}

@keyframes softPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.container .box i,
.container-b .box-b i,
.container .card i {
  margin: 5px 5px 5px 0px;
  display: inline-block;
  color: var(--color-two);
  background-color: var(--color-primary-dark);
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  font-weight: 700;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  animation: softPulse 2s infinite ease-in-out;
}

.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);
}

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

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

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

.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;
}

.show-more-container {
    text-align: center;
    margin: 20px 0;
}

.show-more-container #showMoreButton {
    padding: 10px 20px;
    font-size: 16px;
    background-color: var(--color-primary);
    color: var(--color-one);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.show-more-container #showMoreButton:hover {
    background-color: var(--color-primary-dark);
}

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

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: var(--color-primary);
  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 var(--color-primary-dark);
  /* a little larger */
  -webkit-transform-origin: top;
  transform-origin: top;
}

.pocket {
  border-left: 140px solid var(--color-primary-light);
  border-right: 140px solid var(--color-primary-light);
  border-bottom: 90px solid var(--color-primary);
  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 var(--color-primary);
  border-radius: 4px;
  color: var(--color-primary);
  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: var(--color-primary);
  color: var(--color-one);
}

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

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) {

  .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;
  }
  
  .base .side h1 {
    font-size: 28px;
  }

  .base .side h3 {
    font-size: 20px;
  }

  .base .side p {
    font-size: 16px;
  }
  
  .base .side:nth-child(2) {
    width: 360px;
    margin: 0px 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;
  }
}