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

FONTS / COLORS

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

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

:root {
  --color-default: #fff;
  --color-header: #fff;
  --color-primary: #1F2F46;
  --color-primary-rgb: 31, 47, 70;
  --color-primary-light: #C62828;
  --color-primary-dark: #B01313;
  --color-secondary: #fff;
  --color-background: #fff;
  --color-font: #222;
  --color-one: #fff;
  --color-two: #e0e0e0;
}

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

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

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999999;
  transition: opacity 0.5s ease;
}

#preloader img {
  max-width: 150px;
  height: auto;
}

body.preloader-hidden #preloader {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

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

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: fixed;
  top: 0;
  left: 0;
  height: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--color-primary);
  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;
  padding: 18px 0px 18px 0px;
  top: -100px;
  max-height: 40px;
  z-index: 9;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  z-index: 999999;
}

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

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

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

.main-header .navigator .logo {
  width: 150px;
  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: 820px;
  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);
  }
}
***/

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(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: #000;
  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;
  z-index: 1;
}

.main-header .navigator .mobile-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 37, 37,0.4), transparent 70%);
  animation: hamburger-pulse 2s infinite ease-out;
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
}

@keyframes hamburger-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(204, 37, 37,0.5), 0 0 0 0 rgba(176, 19, 19,0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
    box-shadow: 0 0 10px 10px rgba(204, 37, 37,0.3), 0 0 0 0 rgba(176, 19, 19,0.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
    box-shadow: 0 0 30px 30px rgba(204, 37, 37,0), 0 0 0 0 rgba(176, 19, 19,0);
  }
}

.main-header .navigator .mobile-toggle span {
  width: 30px;
  height: 2px;
  margin: 8px;
  border-radius: 1000px;
  background-color: var(--color-primary-dark);
  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;
}

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: 10px;
  color: var(--color-primary);
}

.main-header .navigator .effect1:before, .main-header .navigator .effect1:after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
  border-color: var(--color-primary-light);
}

.main-header .navigator .effect1:before {
  border-width: 2px 0 2px 0;
  transform: scaleX(0);
}

.main-header .navigator .effect1:after {
  border-width: 0 2px 0 2px;
  transform: scaleY(0);
}

.main-header .navigator .effect1:hover:before, .main-header .navigator .effect1:hover:after {
  transform: scale(1, 1);
  color: #fff !important;
}

.drop {
  display: none;
  position: fixed; 
  z-index: 6; 
  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;
  margin: 90px auto;
  height: 680px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-one);
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: moveBackground 30s linear infinite;
  border-bottom: 2px solid var(--color-primary-dark);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(var(--color-primary-rgb), 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 80px;
  background-color: rgba(var(--color-primary-rgb), 0.6);
  border: 1px solid var(--color-primary-dark);
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  backdrop-filter: blur(4px);
  transition: backdrop-filter 0.4s ease;
}

.hero-content.blur-level-1 {
  backdrop-filter: blur(2px);
}

.hero-content.blur-level-2 {
  backdrop-filter: blur(4px);
}

.hero-content.blur-level-3 {
  backdrop-filter: blur(6px);
}

.hero-content.blur-level-4 {
  backdrop-filter: blur(8px);
}

.hero-set {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.hero-set.active {
  display: flex;
}

.hero-set h1,
.hero-set h2,
.hero-set h3,
.hero-set p {
  opacity: 0;
  filter: blur(15px);
  animation-name: blurFadeIn;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.hero-set h1 {
  font-size: 32px;
  animation-delay: 0s;
  animation-duration: 1.5s;
}

.hero-set h2 {
  font-size: 26px;
  animation-delay: 0.6s;
  animation-duration: 1.5s;
}

.hero-set h3 {
  font-size: 22px;
  animation-delay: 1.2s;
  animation-duration: 1.5s;
}

.hero-set p {
  font-size: 18px;
  animation-delay: 1.8s;
  animation-duration: 1.5s;
}

@keyframes blurFadeIn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

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

TITLES

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

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

.section {
  position: relative;
  margin: auto;
  width: 100%;
  height: auto;
  overflow: hidden;
}

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

.section-primary {
  padding: 80px 0px 0px 0px;
  background-color: var(--color-primary-dark);
  color: var(--color-one) !important;
}

.section-primary .box h3,
.section-primary .box h4 {
  color: var(--color-two) !important;
}

.section-primary .box h5,
.section-primary .box h6 {
  color: var(--color-one) !important;
}

.section-primary .gradient-line {
  background: var(--color-two);
}

.section-primary .box a {
  color: var(--color-one) !important;
}

.section-two {
  padding: 80px 0 0 0;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 5%,
    var(--color-two) 20%,
    var(--color-two) 80%,
    #ffffff 95%,
    #ffffff 100%
  );
}

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

.section-qta {
  position: relative;
  padding: 100px 0;
  background-image: url("../img/go-3.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: moveBackground 20s linear infinite;
  border-top: 2px solid var(--color-primary-dark);
  border-bottom: 2px solid var(--color-primary-dark);
}

.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.8);
  z-index: 1;
}

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

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

.section-qta h5 {
  margin: auto auto 50px auto !important; 
  color: var(--color-one); 
}

.section-qta p {
  padding: 0px 22px 0px 22px;
  font-size: 16px;
  text-align: center;
  color: var(--color-one); 
}

.section-qta .qta-btn a {
  position: relative;
  padding: 10px 25px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
}

.section-qta .qta-btn a span {
  position: relative;
  z-index: 99999;
  color: var(--color-font);
  font-size: 14px;   
}

.section-qta .qta-btn 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;
}

.section-qta .qta-btn:hover a .liquid {
  top: -120px;
}

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

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

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

.section-qta ul {
  padding: 0px 22px 0px 22px;
  margin: auto;
  display: table;
  text-align: center;
}

.section-qta ul li {
  list-style: none;
  position: relative;
  color: var(--color-one);
}

.wave-top, .wave-bottom {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: visible;
}

.wave-top {
  background-color: var(--color-primary-dark);
  clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.25);
}

.wave-bottom {
  background-color: var(--color-one);
  clip-path: polygon(0 0%, 100% 50%, 100% 100%, 0% 100%);
  box-shadow: 0 -8px 10px rgba(0, 0, 0, 0.25);
}

.section h1,
.section h2 {
  margin: 0px 0px 30px 0px;
  text-align: center;
  font-size: 28px;
}

.typing-container {
  border-right: 2px solid black;
  margin-left: 0.25em;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  animation: blinkCursor 0.7s steps(2) infinite;
}

.section .white {
  color: var(--color-two);
}

@keyframes blinkCursor {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--color-font); }
}

.section .white-title {
  margin: 0px 0px 30px 0px;
  text-align: center;
  color: #f0f0f0;
}

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

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

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

.section h6 {
  text-align: left;
  margin: auto;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-font);
}

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

.section .border {
  background: var(--color-primary);
  height: 1px;
  width: 90%;
  margin: 30px auto;
  position: relative;
}

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

.section .border::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-primary-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2;
}

.section .border::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary-dark);
  opacity: 0;
  z-index: 1;
  animation: pulseRing 1.5s infinite ease-out;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--color-font), var(--color-two), var(--color-primary));
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 4s linear infinite;
}

@keyframes gradient-move {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: -200% center;
  }
}

.gradient-line {
  height: 1px;
  width: 60%;
  margin: 0 auto 30px auto;
  background: var(--color-primary);
  background-size: 200% auto;
  animation: stretch-line 10s ease-in-out infinite;
  border-radius: 3px;
}

@keyframes stretch-line {
  0% {
    width: 60%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 60%;
  }
}

@keyframes moveBackground {
  0% {
    background-position: center top;
  }
  50% {
    background-position: center bottom;
  }
  100% {
    background-position: center top;
  }
}

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

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;
  aspect-ratio: 16 / 9;
  margin: 34px 0px 0px 34px;
}

.container .box h1,
.container .card h1 {
  font-size: 24px;
  text-align: right;
  color: #000;
  margin: 20px 0px 20px 0px;
}

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

.container .box h3,
.container .card h3 {
  text-align: left;
  margin: 20px 0px 20px 0px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.container .box h4,
.container .card h4 {
  text-align: left;
  margin: 20px 0px 20px 0px;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--color-primary);
}

.container .box h5,
.container .card h5 {
  text-align: left;
  margin: 20px 0px 20px 0px;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary-dark);
}

.preview-text + .hidden-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.preview-text + .hidden-text.open {
  max-height: 2000px;
}

.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 .accordion {
  background-color: var(--color-two);
  color: var(--color-primary);
  cursor: pointer;
  padding: 18px;
  margin: 0px 0px 10px 0px;
  width: 100%;
  border: 1.4px solid var(--color-primary);
  border-radius: 8px;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.container .box .active, .container .accordion:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-two);
}

.container .accordion:after {
  content: '\002B';
  color: var(--color-primary);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.container .box .active:after {
  content: "\2212";
  color: var(--color-two);
}

.container .box .panel {
  padding: 0 18px;
  background-color: var(--color-background);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.container .box .panel p {
  font-size: 14px;
}

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

.container .box .bot-image {
  position: relative;
  margin: 50px auto;
  display: block;
  width: 150px;
  height: 150px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: ai-pulse 2.5s infinite;
}

.container .box .bot-image img {
  width: 100%;
}

.container .box #chat-bubble {
  position: relative;
  background-color: var(--color-two);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  font-family: sans-serif;
  max-width: 320px;
  z-index: 100;
}

.container .box #chat-bubble img {
  position: relative;
  display: inline;
  margin: 0;
  padding: 0;
  float: left;
  width: 40px;
}

.container .box #chat-text {
  font-size: 16px;
  margin-bottom: 12px;
  min-height: 22px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(var(--color-primary-rgb), 0) 0%,
    rgba(var(--color-primary-rgb), 0.2) 50%,
    rgba(var(--color-primary-rgb), 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 5.5s infinite;
  pointer-events: none;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomBreath 6s ease-in-out infinite alternate;
  will-change: transform, filter;
  transform-origin: center center;
}
  
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.container .box ul,
.container .card ul {
  padding-left: 0;
}

.container .box ul li,
.container .card ul li {
  list-style: none;
  position: relative;
  padding: 3px 0px 3px 34px;
}

.container .box ul li::before,
.container .card ul li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  color: var(--color-one);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  animation: softPulse 2s infinite ease-in-out;
}

.container .card:hover ul li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--color-one);
  color: var(--color-primary);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  animation: softPulse 2s infinite ease-in-out;
}

.container .card {
  position: relative;
  margin: 0px 0px 20px 28px;
  float: left;
  width: 350px;
  height: auto;
  background: linear-gradient(to top, var(--color-one), var(--color-two));
  border-radius: 0;
  overflow: hidden;
  z-index: 1;
  transition: box-shadow 0.3s ease-in-out;
}

.container .card::before,
.container .card::after {
  content: '';
  position: absolute;
  background: var(--color-primary-light);
  z-index: 2;
  pointer-events: none;
}

.container .card::before {
  top: 0;
  left: -100%;
  height: 1px;
  width: 100%;
  animation: borderLoopX 4s linear infinite;
}

.container .card::after {
  top: -100%;
  left: 0;
  height: 100%;
  width: 1px;
  animation: borderLoopY 4s linear infinite;
  animation-delay: 2s;
}

.container .card:hover::before,
.container .card:hover::after {
  animation: none !important;
  opacity: 0;
}

.container .card:hover {
  box-shadow: 0 0 25px 5px var(--color-primary-light);
}


@keyframes borderLoopX {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes borderLoopY {
  0% { top: -100%; }
  100% { top: 100%; }
}

.container .card:hover {
  background: linear-gradient(to top, var(--color-primary-dark), var(--color-primary), var(--color-primary-light));
}

.container .card:hover .content {
  color: var(--color-one);
}

.section .card:hover .content .contentBx h3,
.section .card:hover .content .contentBx h4,
.section .card:hover .content .contentBx h5 {
  color: var(--color-one);
}

.container .card:hover .content .imgBlog,
.container .card:hover .content .imgBx {
  opacity: 0.4;
}

.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: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(0,0,0,0.25);
}

.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 .icon img {
  width: 120px;
  height: 100%;
}

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

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

a.bez {
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  font-size: 18px !important;
  text-transform: none !important;
  color: var(--color-primary-dark) !important;
  border: none !important;
  border-radius: 0 !important;
  display: inline !important;
  vertical-align: middle;
}

a.bez::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary-light);
  transition: transform 0.3s ease;
  transform: scaleX(1);
  transform-origin: left;
}

a.bez:hover {
  color: var(--color-primary) !important;
  background-color: transparent !important;
  border-color: var(--color-primary);
  transform: none !important;
  box-shadow: none !important;
}

/**
.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 .box a,
.container .card a,
.section-qta .qta-btn a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0.5rem auto;
  padding: 6px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  color: var(--color-primary-light);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  cursor: pointer;
}

.container .box a:hover,
.section-qta .qta-btn a:hover {
  color: var(--color-background);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.container .card a:hover {
  color: var(--color-two) !important;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.container .card:hover a {
  color: var(--color-primary);
  background-color: var(--color-two);
  border-color: var(--color-two);
  transform: translateY(-3px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.container .card a .liquid,
.container .box a .liquid,
.section-qta .qta-btn 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,
.container .box:hover a .liquid,
.section-qta .qta-btn:hover a .liquid {
  top: -120px;
}

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

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

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

.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%);
  z-index: -1;
}

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

.dia-swipe:before {
  content: '';
  position: absolute;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid var(--color-primary);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: -1;
}

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

.dou-close:before, .dou-close:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 80px solid var(--color-primary);
  z-index: -1;
}

.dou-close:before {
  right: -50px;
  border-right: 50px solid transparent;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.dou-close:after {
  left: -50px;
  border-left: 50px solid transparent;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.dou-close:hover:before {
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}

.dou-close:hover:after {
  -webkit-transform: translateX(40%);
          transform: translateX(40%);
}

.container .post {
  width: 94%;
  margin: 20px auto;
}

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

.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 var(--color-primary-light);
}

.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-b .box-b a {
  color: var(--color-two);
}

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

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

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

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

CHAT PLUGIN

*******************************/
#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: w-pulse 2.5s infinite;
  z-index: 1000;
}

@keyframes w-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

#whatsapp-question {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

#whatsapp-question.show {
  opacity: 1;
  transform: translateY(0);
}

#whatsapp-icon img {
  width: 100%;
}

#chat-popup {
  position: fixed;
  top: 120px;
  bottom: 90px;
  right: 20px;
  width: 300px;

  overflow-y: auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  z-index: 1000;
}

#chat-header {
  background-color: #25d366;
  color: white;
  padding: 12px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-size: 16px;
  font-weight: bold;
}

.chat-body {
  padding: 15px;
}

.chat-question {
  background-color: #f1f1f1;
  padding: 10px;
  margin: 5px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.chat-question.active {
  background-color: #f0f0f0;
  border-left: 3px solid #25D366;
  padding-left: 10px;
}

.chat-question:hover {
  background-color: #e0e0e0;
}

.chat-answer {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

#whatsapp-support {
  display: none;
  margin-top: 15px;
  text-align: center;
}

#whatsapp-support a {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

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

AI PLUGIN

*******************************/
#ai-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: ai-pulse 2.5s infinite;
  z-index: 1000;
}

@keyframes ai-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(var(--color-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0);
  }
}

#ai-question {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: var(--color-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

#ai-question.show {
  opacity: 1;
  transform: translateY(0);
}

#ai-icon img {
  width: 100%;
}

#ai-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  font-family: Arial, sans-serif;
  z-index: 1000;
}

#ai-header {
  background-color: var(--color-primary-dark);
  color: white;
  padding: 12px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-size: 16px;
  font-weight: bold;
}

.ai-body {
  padding: 15px;
}

#ai-response {
  margin-top: 10px;
  font-size: 14px;
  background-color: var(--color-two);
  padding: 10px;
  border-radius: 8px;
}

#ai-support {
  display: none;
  margin-top: 15px;
  text-align: center;
}

#ai-support a {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

#ai-input {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
  border: 1px solid var(--color-primary-dark);
  border-radius: 6px;
  box-sizing: border-box;
  resize: none;
  overflow: hidden;
  transition: height 0.2s;
}

#ai-btn {
  width: 100%;
  padding: 8px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.ai-bubble {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 8px;
  margin-top: 5px;
}

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

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: 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: 9999999;
}

.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-two);
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 10px !important;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary-light);
  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-two);
  color: var(--color-primary);
  font-size: 28px;
  border: 2px solid var(--color-primary-light);
  border-radius: 100px;
  z-index: 1000;
}

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

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

#showMoreButton:hover {
    background-color: var(--color-primary-dark);
}

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

FOOTER

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

.footer {
  background-color: var(--color-primary);
  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: var(--color-primary-light);
}

.copyright p {
  margin: 10px auto;
  color: var(--color-two);
  font-size: 14px;
}

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

COOKIES

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

.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
}

.cookie-content {
  background-color: var(--color-two);
  color: var(--color-font);
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
}

.cookie-option {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.cookie-option label {
  color: var(--color-primary-dark);
  display: block;
  margin: 25px 10px 15px 10px;
  font-size: 16px;
  font-weight: 600;
}

.cookie-option.disabled {
  opacity: 0.5;
}

.cookie-content h2 {
  font-size: 18px;
  color: var(--color-primary-dark);
}

.cookie-content p {
  font-size: 14px;
}

.cookie-content a {
  font-size: 12px;
  color: var(--color-primary-dark);
}

.cookie-content a:hover {
  color: var(--color-font);
}

button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background-color: var(--color-primary-dark);
  color: var(--color-one);
  transition: transform 2.5s ease;
  font-size: 14px;
}

button:hover {
  background-color: var(--color-primary);
  color: var(--color-one);
}

.switch-cookie {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch-cookie input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-cookie {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary-light);
  transition: .4s;
}

.slider-cookie:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-one);
  transition: .4s;
}

input:checked + .slider-cookie {
  background-color: var(--color-primary-dark);
}

input:focus + .slider-cookie {
  box-shadow: 0 0 1px var(--color-primary-dark);
}

input:checked + .slider-cookie:before {
  transform: translateX(26px);
}

.slider-cookie.round {
  border-radius: 34px;
}

.slider-cookie.round:before {
  border-radius: 50%;
}

@keyframes fadeInBanner {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOutBanner {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.95); }
}

.cookie-fade-in {
  animation: fadeInBanner 0.4s ease-out forwards;
}

.cookie-fade-out {
  animation: fadeOutBanner 0.3s ease-in forwards;
}

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

ANFRAGE PLUGIN

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

.telefon-icon {
  position: fixed;
  padding: 6px 32px 6px 32px;
  bottom: 35px;
  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;
    }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
  color: var(--color-primary-dark);
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: var(--color-primary);
}

.fullscreen-popup {
  display: none;
  position: fixed;
  padding: 20px 0px 50px 0px;
  justify-content: center;
  z-index: 1000;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.8);
}
  
.anfrage {
  position: relative;
  margin: auto;
  width: 1200px;
  height: auto;
  padding-bottom: 34px;
  background-color: var(--color-default);
}

.anfrage h2 {
  margin: 30px 0px 30px 50px;
  text-align: left;
  color: var(--color-primary);
  font-size: 22px;
}

.anfrage .services {
  position: relative;
  margin: 50px 0px 0px 0px;
  width: 100%;
}

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

.anfrage .service img {
  width: 60px;
  height: 60px;
  margin: 20px 0px 0px 20px;
}

.anfrage .service label {
  padding: 0px 0px 0px 10px;
  display: block;
  font-size: 18px;
  color: var(--color-font);
}

.anfrage .service .details {
  position: absolute;
  padding: 0;
  margin: 0;
  top: 20px;
  right: 60px;
}

.anfrage .service input {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0px 0px 0px 20px;
  background-color: var(--color-default);
  float: none;
  color: var(--color-font);
  border-radius: 5px;
  border: 1px solid var(--color-font);
  font-size: 16px;
}

.anfrage .service.active-service {
  background-color: var(--color-primary);
}

.anfrage .service input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: background-color 0.3s, border-color 0.3s;
}

.anfrage .service input[type="checkbox"]:checked {
  background-color: #007BFF;
  border-color: #007BFF;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 16 16" fill="white" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M13.6 4.2l-7.6 7.6-3.6-3.6L4.8 7 6 8.2l6.4-6.4L13.6 4.2z"%3E%3C/path%3E%3C/svg%3E');
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.anfrage button {
  width: 320px;
  padding: 15px;
  margin: 30px 0px 30px 20px;
  background-color: var(--color-primary);
  color: var(--color-font);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

.anfrage button:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-one);
}

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

PAGE HEADER

*******************************/
.page-header {
  position: relative;
  margin: 105px auto;
  width: 100%;
  height: 280px;
  overflow: hidden;
  animation: moveBackground 20s linear infinite;
  z-index: 1;
  border-bottom: 1px solid var(--color-primary-dark);
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-primary-dark), var(--color-primary), var(--color-primary));
  opacity: 0.8;
  z-index: 2;
}

@keyframes moveBackground {
  0% {
    background-position: center top;
  }
  50% {
    background-position: center bottom;
  }
  100% {
    background-position: center top;
  }
}

.page-header-slider {
  position: relative;
  margin: 90px auto;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.page-header .page-header-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-header .page-header-container .page-header-content {
  padding: 0px 16px 0px 16px;
  color: var(--color-one);
  text-align: center;
  z-index: 3;
}

.page-header .page-header-container .page-header-content h2 {
  font-size: 28px;
  animation: h2-pulse 3s ease-in-out infinite;
}

@keyframes h2-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.page-header .page-header-container .page-header-content p {
  font-size: 20px;
}

.page-header-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.page-header-box.active {
  opacity: 1;
  z-index: 1;
}

.header-404 {
  position: relative;
  margin: 90px auto;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

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

INFO PLUGIN

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

.info-plugin {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px;
  left: 100px;
  bottom: 0;
  height: auto;
  background-color: #CC0A17;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

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

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;
  border-top: 98px solid var(--color-primary-dark);
  -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;
  top: 25px;
  width: 50px;
  height: 50px;
  background: #D00000;
  border-radius: 50%;
}

.heart:after {
  left: 75px;
  top: 25px;
}

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

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

TESTIMONIALS

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

#properties-2 {
  margin: 50px;
  position: relative;
  background: transparent;
  flex-wrap: wrap;
  align-items: stretch;
}

#properties-slider-2 img {
  margin: 20px 0px 20px 20px;
  width: 90px;
  height: auto;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 143, 185, 0.9);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(250, 143, 185, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 143, 185, 0);
  }
}

#properties-slider-2 .div-box {
  flex: 1 1 30%;
  padding: 8px;
  margin: 8px;
  border-radius: 8px;
  height: auto;
  background-color: var(--color-primary-dark);
  /**box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.8);**/
}

#properties-slider-2 .div-box h4 {
    margin: 0px 0px 6px 20px;
	font-size: 18px;
	color: var(--color-two);
}

#properties-slider-2 .div-box h5 {
    margin: 0px 0px 6px 20px;
	font-size: 16px;
	text-align: left !important;
	color: var(--color-one);
}

#properties-slider-2 .div-box h6 {
    margin: 0px 0px 6px 20px;
	font-size: 14px;
	text-align: left !important;
	color: var(--color-one);
}

#properties-2 .fa-star {
    margin: 16px 0px 16px 20px;
    font-size: 16px;
    color: var(--color-primary-light);
    display: inline-block;
    animation: scaleStars 2s infinite ease-in-out;
}

@keyframes scaleStars {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

#properties-2 .fa-star:nth-child(1) {
    animation-delay: 0s;
}
#properties-2 .fa-star:nth-child(2) {
    animation-delay: 0.2s;
}
#properties-2 .fa-star:nth-child(3) {
    animation-delay: 0.4s;
}
#properties-2 .fa-star:nth-child(4) {
    animation-delay: 0.6s;
}
#properties-2 .fa-star:nth-child(5) {
    animation-delay: 0.8s;
}

#properties-2 p {
    margin: 0px 0px 20px 20px;
	font-size: 14px;
	color: var(--color-one);
}

#properties-2 .container-2 {
    position: relative;
}

#properties-slider-2 a.slick-arrow {
    background-color: var(--color-one) !important;
	color: var(--color-primary-dark);
    position: absolute;
    top: -50px;
    right: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    text-decoration: none;
	width: 30px;
	height: 30px;
	border-radius: 100px;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

#properties-slider-2 a.slick-prev {
    right: 80px;
}

#properties-slider-2 .slick-slide {
    padding: 0 15px;
}

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

POPUP

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

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 1%;
  width: 320px !important;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 99;
  background-color: var(--color-primary);
  animation: colorCycle 6s infinite ease-in-out;
}

@keyframes colorCycle {
  0%   { background-color: var(--color-primary); }
  33%  { background-color: var(--color-primary-dark); }
  66%  { background-color: var(--color-primary-light); }
  100% { background-color: var(--color-primary); }
}

.popup .popup-content img {
  position: relative;
  margin: auto 6px auto 6px;
  width: 50px !important;
  float: left;
}


.popup-content {
  text-align: left;
  font-size: 16px;
  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;
  }
  
  .blog-box {
    width: 750px;
  }
  
  .container .card {
    width: 320px;
  }
  
  .anfrage {
    width: 750px;
  }
  
  .anfrage .service {
    width: 362px;
	margin: 20px 0px 0px 20px;
  }
  
  .anfrage .user-details {
    margin: 50px 0px 50px 20px;
  }
  
  .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: 30px;
  }
  
  .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%;
  }
  
  .page-header .page-header-container .page-header-content p {
	font-size: 20px;
  }
  
  .page-header .page-header-container .page-header-content p {
	font-size: 16px;
  }

  .hero {
    height: 300px;
    animation: moveBackgroundX 40s linear infinite;
    z-index: 1;
    position: relative;
    overflow: visible;
	margin-bottom: 280px;
  }
  
  .hero::after {
    background-color: rgba(var(--color-primary-rgb), 0.3);
  }

  .hero-content {
    position: absolute;
    top: 70%;
    left: 0;
    padding: 0;
    margin: 0;
	width: 99%;
    z-index: 2;
	background-color: var(--color-primary-dark);
	border: 2px solid var(--color-primary);
  }

  .hero-set h1 {
    font-size: 26px;
  }

  .hero-set h2 {
    font-size: 22px;
  }

  .hero-set h3 {
    font-size: 18px;
  }

  .hero-set p {
    margin: 0px 22px 22px 22px;
	font-size: 16px;
  }

  .section h1,
  .section h2 {
    font-size: 22px;
    margin: 0px 8px 30px 8px;
  }
  
  .section .stop {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 80px;
    margin: 0 8px !important;
  }

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

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

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

  .container {
    width: 100%;
  }

  .container .box {
    width: 360px;
    margin: 20px auto;
  }
  
  .blog-box {
    width: 100%;
	padding: 0;
	margin: 20px auto;
  }
  
  .blog-box .blog-content {
	margin: 30px 15px 30px 15px;
  }
  
  .container .card {
    width: 360px;
    margin: 20px auto;
  }
  
  .anfrage {
    width: 100%;
  }
  
  .anfrage .service {
    width: 360px;
    margin: 20px 0px 0px 8px;
  }
  
  .anfrage .user-details {
    margin: 50px 0px 50px 8px;
  }

  .container .box h1 {
    font-size: 20px;
  }
  
  .container .box img,
  .image-wrapper {
    height: auto !important;
  }
  
  a.bez {
    font-size: 16px !important;
  }

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

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

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

  #call-icons {
    bottom: 120px;
  }
  
  .info-plugin {
	padding: 6px;
	font-size: 12px;
  }
  
  .telefon-icon {
	bottom: 90px;
  }

  .copyright {
    font-size: 16px;
  }
  
  input.captcha-btn {
    margin: 20px 0 20px 0 !important;
  }
  
  .page-header-slider {
	  margin: 120px auto;
	  height: 140px;
  }
  
  .section-qta {
    animation: moveBackgroundX 20s linear infinite;
  }

  .section-qta p,
  .section-qta ul {
	text-align: left !important; 
  }

  .page-header {
	height: 360px;
    animation: moveBackgroundX 20s linear infinite;
  }
  
  #properties-2 {
    width: 100% !important;
	margin: 50px auto !important;
  }

  @keyframes moveBackgroundX {
    0% {
      background-position: left center;
    }
    50% {
      background-position: right center;
    }
    100% {
      background-position: left center;
    }
  }
}

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

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

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

  .anfrage .service {
    width: 310px;
  }
}