* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.hidex {
  top: -150px !important;

}

.toys {
  position: absolute;
}

.toys canvas {
  display: block;
  position: relative;
  left: 0;
  top: 0;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}



@font-face {
  font-family: 'pp_pangram_sansbold';
  src: url('../fonts/pppangramsans-bold-webfont.woff2') format('woff2'),
    url('../fonts/pppangramsans-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;

}




@font-face {
  font-family: 'pp_pangram_sanssemibold';
  src: url('../fonts/pppangramsans-semibold-webfont.woff2') format('woff2'),
    url('../fonts/pppangramsans-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;

}




@font-face {
  font-family: 'pp_pangram_sansmedium';
  src: url('../fonts/pppangramsans-medium-webfont.woff2') format('woff2'),
    url('../fonts/pppangramsans-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}




@font-face {
  font-family: 'pp_pangram_sansregular';
  src: url('../fonts/pppangramsans-regular-webfont.woff2') format('woff2'),
    url('../fonts/pppangramsans-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;

}




@font-face {
  font-family: 'pp_pangram_sanslight';
  src: url('../fonts/pppangramsans-light-webfont.woff2') format('woff2'),
    url('../fonts/pppangramsans-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;

}




@font-face {
  font-family: 'pp_pangram_sansthin';
  src: url('../fonts/pppangramsans-thin-webfont.woff2') format('woff2'),
    url('../fonts/pppangramsans-thin-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}




@font-face {
  font-family: 'pp_pangram_sansextrabold';
  src: url('../fonts/pppangramsans-extrabold-webfont.woff2') format('woff2'),
    url('../fonts/pppangramsans-extrabold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.nav_bar {
  background-color: var(--primary-black1);

  opacity: 1;
  width: 100%;
  height: 81px;
  position: fixed;
  top: -2px;
  left: 0;
  z-index: 2;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.173);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.173);
  transition: all 300ms ease-in-out;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  position: absolute;
  top: 27px;
  right: 30px;
  z-index: 2;
}

.menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 24px;
  cursor: pointer;
}

.menu-line {
  width: 24px;
  height: 3px;
  background-color: var(--secondary-white1);
  border-radius: 2px;
  -webkit-transition: all 250ms ease-in-out;
  -o-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;

}

.menu-line:first-child {
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  width: 34px;
}

.menu-line:last-child {
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  width: 28px;
}

.hamburger-menu.open .menu-line:first-child {
  -webkit-transform: translate(0, -2px) rotate(45deg);
  -ms-transform: translate(0, -2px) rotate(45deg);
  transform: translate(0, -2px) rotate(45deg);
  width: 34px;
}

.hamburger-menu.open .menu-line:last-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 34px;
}

.hamburger-menu.open .menu-line:nth-child(2) {
  opacity: 0;

}

/* Menu Overlay Styles */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-black1);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
  transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out;
}

.hamburger-menu.open .menu-overlay {
  opacity: 1;
  visibility: visible;

}

/* Menu Links Styles */

.fejdo {
  opacity: 1 !important;
}

.menu-links {
  list-style: none;
  width: 100%;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */


}

.menu-links li {
  width: 80%;
  border-bottom: 1px solid var(--primary-black3);
  text-align: right;
  margin: 0 auto;

  -webkit-transform: translateY(-10px);

  -ms-transform: translateY(-10px);

  transform: translateY(-10px);
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;

  opacity: 0;
  -webkit-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;

}

.menu-links a {
  font-family: 'pp_pangram_sanssemibold';
  font-size: 2.2rem;
  text-decoration: none;
  color: var(--secondary-white1);
  line-height: 4rem;
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;

}

.menu-links a:hover {
  color: #F3D116;
}

.menu-links li span {
  text-align: left;
  color: var(--secondary-white1);
  float: left;
  font-size: 1rem;
  line-height: 4rem;
  display: inline-block;
}

.menu-links li:nth-child(1) {
  -webkit-transition-delay: 0.05s;
  -o-transition-delay: 0.05s;
  transition-delay: 0.05s;

}

.menu-links li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;

}

.menu-links li:nth-child(3) {
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;


}

.menu-links li:nth-child(4) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;

}

.menu-links li:nth-child(5) {
  -webkit-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

.overlay.open ul li {
  opacity: 1;
}




.no-scroll {
  overflow: hidden;

  margin-right: 15px;

}

.margleft {
  margin-right: 15px;
}



html {
  scroll-behavior: initial;
}

html,
body {
  min-height: 100%;
  height: auto !important;
}


#preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  position: fixed;
  background-color: var(--primary-black1);
}

#loading-animation {
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  position: absolute;
  margin: -100px 0 0 -100px;
  background: url('../img/logo.svg') center center no-repeat;

}


a[href^="tel:"] {
  color: var(--primary-black3);
}

a[href^="mailto:"] {
  color: var(--primary-black3);
}





::-moz-selection {
  color: var(--primary-black1);
  background: #F3D116;
}

::selection {
  color: var(--primary-black1);
  background: #F3D116;
}

body {
  font-family: 'pp_pangram_sansregular';
  height: 100vh;
  margin: 0;
  padding: 0;
  overscroll-behavior-y: none;
}

.block {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: hidden;


}

html {
  min-height: -webkit-fill-available;

}

:root {
  --primary-black1: #1c1c1c;
  --primary-black3: #7A7A7A;
  --secondary-white1: #F2F1E4;

}

.logo {
  position: absolute;
  width: 150px;
  left: 30px;
  top: 25px;
  z-index: 3;
}

.logo img {
  width: 140px;
  height: 30px;
}




/* .frame {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 1900px;


  overflow: hidden;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
} */

/* .trigger {
  position: absolute;
  left: 50%;
  top: 25%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  width: 20em;
  text-align: center;
  z-index: 1;
  font-size: 2vh;
} */


/* .image {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  margin: 0 auto;
  text-align: center;
  left: 0px;
  top: 0px;
  height: 100vh;
  display: block;


} */


/* @-webkit-keyframes mover {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-8px);
  }
}


@keyframes mover {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-8px);
  }
} */

.hero {

  background-color: var(--primary-black1);
  width: 100%;
  height: 100vh;

  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.hero_txt .nm {
  font-family: 'pp_pangram_sanssemibold';
  display: block;
  line-height: 34px !important;
  font-size: 18px;
  text-transform: uppercase;
  /* font-weight:300; */
  /* letter-spacing: 1px; */
}

.hero_txt {
  position: relative;
  z-index: 1;
  text-align: left;

  margin: 0;

  /* font-weight: 800; */
  color: var(--secondary-white1);



}

/* .hero h1 {
  text-align: left;
  position: absolute;

  -webkit-text-stroke-width: 2px;
  margin: 0;

  font-weight: 800;
  color: var(--secondary-white1);



} */


.hero_txt span {
  font-family: 'pp_pangram_sansextrabold';
  text-align: left;
  font-size: 5vw;
  text-transform: uppercase;
  line-height: 4.5vw;

  display: block;
  text-shadow: 0px 10px 88px rgba(0, 0, 0, 0.9);


}

.podcrtaj {
  position: relative;
  display: inline;
  z-index: 1;
  color: #F3D116;
}

.podcrtaj:hover {
  color: #F3D116;
}

.podcrtaj::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1.2vw;
  width: 102%;
  height: 16px;
  -webkit-transform: skew(-12deg) translateX(-2%);
  -ms-transform: skew(-12deg) translateX(-2%);
  transform: skew(-12deg) translateX(-2%);
  /* background: #F3D116; */
  z-index: -1;
}

.start {
  font-family: 'pp_pangram_sansregular';
  width: 100%;
  height: auto;
  background: rgb(0, 0, 0);
  background: -o-linear-gradient(top, var(--primary-black1) 0%, var(--primary-black1) 24%, rgba(255, 255, 255, 1) 24%);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--primary-black1)), color-stop(24%, var(--primary-black1)), color-stop(24%, rgba(255, 255, 255, 1)));
  background: linear-gradient(180deg, var(--primary-black1) 0%, var(--primary-black1) 24%, rgba(255, 255, 255, 1) 24%);
}

.wrapper {

  padding: 0 25px;
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
  height: auto;
}

.wrapper2 {
  padding: 150px 25px;

  max-width: 2000px;
  margin: 0px auto 0px auto;

  height: auto;
  /* border:1px solid gray; */
  /* background-color:red; */
}

.intro {
  margin: 0px 0px 100px 0px;
  padding-top: 50px;
  padding-top: 80px;
  font-size: 34px;
  line-height: 56px;

  color: var(--secondary-white1);


}

.intro p {
  max-width: 68%;
}

.rotate {
  position: absolute;
  top: 76px;
  right: 40px;
  display: inline-block;

}

.rotate img {
  width: 140px;
  height: 140px;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

.showreel {
  width: 100%;
  height: 860px;
  background-color: gray;
  position: relative;
  background: url("../img/image_bg.jpg");
  z-index: 0;
  background-size: cover;
  background-position: center center;
  /* margin-bottom: 200px; */
}

.showreel::after {
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);

}

.showreel:hover::after {
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.play {
  z-index: 2;
  background: var(--secondary-white1) url("../img/arrow.svg") fixed;
  background-position: 55% 50%;
  background-size: 30% 30%;
  background-repeat: no-repeat;
  width: 160px;
  height: 160px;
  border-radius: 100px;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}

.play:hover {
  z-index: 2;
  background: var(--secondary-white1) url("../img/arrow.svg");
  background-position: 55% 50%;
  background-size: 30% 30%;
  background-repeat: no-repeat;
  width: 174px;
  height: 174px;
  border-radius: 100px;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

}



.meta_txt {

  font-family: 'pp_pangram_sanssemibold';
  font-size: 18px;

  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.black {
  color: var(--primary-black1);
}

.white {
  color: var(--secondary-white1);
}

.bl {
  border: 1px solid var(--primary-black1);
  background-color: var(--primary-black1);
}

.wl {
  border: 1px solid var(--secondary-white1);
  background-color: var(--secondary-white1);
}

.meta_line {
  margin-left: 20px;
  margin-top: 10px;
  width: 100px;
  height: 2px;

}



.wleft {
  width: 30%;
  float: left;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

}

.wleft span {
  display: inline;
}

.wright {
  width: 70%;
  float: left;

}

.wright h2 {
  font-family: 'pp_pangram_sanslight';
  font-size: 82px;
  letter-spacing: -2px;

  margin: 0px 150px 50px 0px;
  padding: 0;
}

.wright h2 strong {
  font-family: 'pp_pangram_sansbold';
}

.wright h2 span {
  /* padding: 0px 0 8px; */
  position: relative;
  display: inline-block;
  z-index: 0;
}

.wright h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 100%;
  height: 14px;
  -webkit-transform: skew(-12deg) translateX(-2%);
  -ms-transform: skew(-12deg) translateX(-2%);
  transform: skew(-12deg) translateX(-2%);
  background: #F3D116;
  z-index: -1;
}

.wright p {
  font-family: 'pp_pangram_sansregular';
  font-size: 22px;
  line-height: 40px;
  width: 80%;

}

#what {
  width: 100%;
  height: auto;
  padding-top: 150px;
}

.what {
  margin-bottom: 200px;
}

.what_items {
  margin-top: 100px;
  float: left;
  width: 30%;

}

.what_items span {
  font-size: 12px;
  /* border: 2px solid var(--primary-black1); */
  background-color: #F2F2F2;
  color: var(--primary-black1);
  padding: 2px 13px;
  margin-right: 15px;
  margin-bottom: 12px;
  /* border-radius:20px; */
  display: inline-block;
  /* -webkit-box-shadow: 1px 1px 0px var(--primary-black1);
  box-shadow: 1px 1px 0px var(--primary-black1); */
}

.what_items img {
  margin-bottom: 10px;
  width: 60px;
  height: 60px;
}

.what_items h3 {
  font-family: 'pp_pangram_sanssemibold';
  font-size: 28px;
  margin: 0px 0px 15px 0px;
}

.what_items p {
  font-family: 'pp_pangram_sanssemibold';
  font-size: 13px;
  letter-spacing: 1px;

  line-height: 28px;
  padding-right: 60px;


}

.help {
  width: 100%;
  height: auto;
  background-color: #F2F2F2;
  overflow: hidden;
  padding-bottom: 50px;
}



.help h2 {
  font-family: 'pp_pangram_sanslight';
  font-size: 82px;

  margin: 0px 0px 80px 0px;
  padding: 0;
  letter-spacing: -1px;

}

.help h2 strong {
  font-family: 'pp_pangram_sansbold';
}

.help_item {
  padding: 40px;
  font-family: 'pp_pangram_sansregular';
}

.help_item h3 {
  font-family: 'pp_pangram_sansbold';
  font-size: 30px;

  margin: 20px 0px 20px 0px;
  padding: 0;
}

.help_item p strong {
  font-weight: bold;
}

.help_item p {
  font-size: 20px;
  line-height: 36px;
  margin: 0px 80px 40px 0px;
  padding: 0;
}

.help_item ul {
  margin: 0px 0px 100px 1px;
  padding: 0;
  list-style-type: none;
}

.help_item ul li {
  font-size: 18px;
  line-height: 30px;

  /* text-indent: -18px; */
  background: url('../img/bullet.svg') no-repeat;
  background-position: 0px 8px;
  padding-left: 25px;
  padding-bottom: 10px;



}

.help_item a {
  color: #fff;
  text-decoration: none;
  background-color: var(--primary-black1);
  border: 2px solid var(--primary-black1);
  display: inline-block;
  padding: 20px 60px;

  position: absolute;
  bottom: 30px;
  -webkit-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-box-shadow: 4px 4px 14px 0 rgb(0 0 0 / 20%);
  box-shadow: 4px 4px 14px 0 rgb(0 0 0 / 20%);

}

.help_item a:hover {
  background-color: transparent;
  border: 2px solid var(--primary-black1);
  color: var(--primary-black1);
  display: inline-block;
  padding: 20px 60px;

  position: absolute;
  bottom: 30px;
}

/* .help_item ul li:before {
  content: "✓";
  padding-right: 5px;
} */


.how {
  width: 100%;
  height: auto;
  background-color: var(--primary-black1);

}

.dd {
  text-align: center;
  margin: 180px 0;
}

.dd img {
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
}

.image_full {
  display: block;

}

.image_mobile {
  display: none;
}

.process_item {
  font-family: 'pp_pangram_sansregular';
  width: 25%;
  float: left;
  padding-right: 80px;
  word-break: break-word;

}

.process_item ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.process_item li {
  font-size: 15px;
  line-height: 22px;
  background: url('../img/bullet_gray.svg') no-repeat;
  background-position: 0px 4px;
  padding-left: 25px;
  padding-bottom: 10px;
  color: #9a9a9a;
}





/* .process_item:hover > img {
  opacity:0.7;
} */

.process_item img {
  width: 260px;
  /* height: 261px; */
  max-width: 100%;
  margin-bottom: 45px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.process_item:hover>img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.process_item h3 {
  font-family: 'pp_pangram_sanssemibold';
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 32px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  /* color:#F3D116; */
}


.process_item:hover>h3 {
  color: #F3D116;
}

.process_item:hover>.process_elements p span strong {
  color: #F3D116;
}

.process_item:hover>p,
.process_item:hover>.process_elements p span {
  color: #9a9a9a;
}

.process_item h3 span {
  font-size: 80px;
  margin-bottom: 20px;
  display: block;
  /* color:#F3D116; */
}

.process_item p {
  font-size: 16px;
  line-height: 30px;
  color: #9a9a9a;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  /* margin-bottom: 50px; */
}

.process_elements {
  margin-top: 30px;

}

.process_elements p {
  font-size: 15px !important;
}

.process_elements p span {
  display: block;
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.process_elements p span strong {
  font-family: 'pp_pangram_sanssemibold';
  color: var(--secondary-white1);
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.values {
  width: 100%;
  height: auto;

}

p.values_p {
  margin-bottom: 150px;
}

.values_item {
  font-family: 'pp_pangram_sansregular';
  width: 25%;
  float: left;
  padding-right: 80px;
  margin-bottom: 50px;
}

.values_item h3 {
  font-family: 'pp_pangram_sanssemibold';
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 10px;
  padding-left: 25px;
  letter-spacing: -1px;
}

.values_item h3 {
  content: "";
  display: block;
  background: url('../img/bullet.svg') no-repeat;
  background-position: 0px 9px;

}

.values_item h3 img {
  margin-right: 10px;
}

.values_item p {
  font-size: 16px;
  line-height: 28px;
  color: var(--primary-black1);
}

.testimonial {
  width: 100%;
  height: auto;
  background-color: var(--primary-black1);
}

.testimonial h2 {
  font-family: 'pp_pangram_sanslight';
  text-align: center;
  font-size: 82px;
  color: var(--secondary-white1);
}

.testimonial h2 strong {
  font-family: 'pp_pangram_sanssemibold';
}

blockquote {



  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
  font-size: 28px;
  line-height: 42px;
  text-align: left;
  margin: 100px auto 50px auto;
  padding-right: 10px;
  max-width: 70%;
  color: var(--primary-black3);

}

blockquote:before {
  color: #F3D116;
  content: open-quote;
  font-size: 120px;
  line-height: 10px;
  margin-right: 0.20em;
  vertical-align: -0.2em;
  font-family: "Times New Roman", Times, serif;

}

blockquote p {
  display: inline;
}

.testimonial span {
  text-align: center;
  margin: 0 auto;
  display: block;
  color: var(--secondary-white1);
  line-height: 26px;
  text-transform: uppercase;
}

.fadeIn {
  -webkit-animation: fadeIn 200ms;
  animation: fadeIn 200ms;
}

.fadeOut {
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}


@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 99;
  /* Sit on top */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: #141414e6;
  /* Black w/ opacity */
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}





/* Modal Content/Box */
.modal-content {

  -webkit-transition: all .2s ease;

  -o-transition: all .2s ease;

  transition: all .2s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* background-color: var(--primary-black1); */

  padding: 20px;
  width: 70%;

  height: auto;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: var(--secondary-white1);
  float: right;
  font-size: 64px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: var(--primary-black3);
  text-decoration: none;
  cursor: pointer;
}


.container {
  width: 100%;
  height: 100%;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.video-container {
  width: 100%;
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.playback-animation {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background-color: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
}


.hidden {
  display: none;
}

.carousel {
  margin: 0;
  padding: 0;
}

.carousel-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  min-height: 100%;

  width: 48%;
  /* min-height: 660px; */
  margin-right: 30px;
  color: var(--primary-black1) !important;
  background: #fff;
  border-radius: 5px;
  counter-increment: carousel-cell;
  overflow: hidden;
  -webkit-transition: background-color 300ms ease;
  -o-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
  -webkit-box-shadow: 0px 40px 80px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 40px 80px 10px rgba(0, 0, 0, 0.05);
}

.flickity-viewport {
  overflow: visible !important;
}

.carousel-cell.is-selected {
  -webkit-transition: background 300ms ease;
  -o-transition: background 300ms ease;
  transition: background 300ms ease;
  background: #F3D116;
}

.flickity-page-dots {
  bottom: -80px !important;
}

.flickity-page-dots .dot {
  height: 2px !important;
  width: 48px !important;
  margin: 0 2px !important;
  border-radius: 0 !important;

}

.flickity-button {
  display: none;
}


.contact {
  background-image: url("../img/contact_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.contact h2 {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contact p {
  font-size: 60px;
  line-height: 80px;
  font-weight: 300;
  width: 70%;
}

.contact span {
  position: relative;
  top:10px;
}

.contact a {
  font-family: 'pp_pangram_sanssemibold';
  padding: 4px 8px;
  background-color: #F3D116;
  text-decoration: none;
  color: var(--primary-black1);

  -webkit-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;

}

.contact a:hover {
  background-color: var(--primary-black1);
  color: var(--secondary-white1);
}

footer {
  width: 100%;
  height: auto;
  background-color: var(--primary-black1);
}

.footer a {
  color: var(--primary-black3) !important;
}

.footer a:hover {
  color: #F3D116;
}

.footer_logo {
  float: left;
  margin-right: 100px;

}

.footer_logo img {
  width: 160px;
  height: 34px;
}

.binfo {
  color: var(--secondary-white1);
  float: left;
  margin-right: 100px;
  margin-bottom: 100px;
}

.binfo a {
  color: var(--primary-black3) !important;
  -webkit-transition: all 150ms ease;
  -o-transition: all 150ms ease;
  transition: all 150ms ease;
}

.binfo a:hover {
  color: #F3D116 !important;
}

.binfo h3 {
  font-family: 'pp_pangram_sanssemibold';
  font-size: 22px;
  margin-bottom: 5px;
}

.binfo p {
  color: var(--primary-black3);
  line-height: 28px;
}

.bline {
  margin-top: 10px;
  width: 100%;
  height: 1px;
  background-color: var(--primary-black3);
}

.brk {

  height: 0;

}

@media only screen and (max-width: 1024px) {
  .no-scroll {
    overflow: hidden !important;
    margin-right: 0px !important;
  }

  .margleft {
    margin-right: 0px;
  }


  .process_item img {
    width: 190px !important;
    height: 190px;
    /* height: 191px; */
    margin: 0 auto;
    text-align: center;
    display: block;

  }

  .process_item h3 {
    text-align: center;
    margin-bottom: 6px;
  }

  .process_item p {
    font-size: 16px;
    line-height: 26px;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-wrap: break-word;
  }
  .contact h2 { 
font-size: 14px;
    letter-spacing: 2px;
  }

}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .brk {
    clear: both;
    height: 0;

  }

  .image {

    position: relative;
    top: 60px;
    left: -180px;
    height: 100vh;
    display: block;
    margin: auto;

  }

  .intro {

    font-size: 2vw;
    line-height: 4vw;
  }

  .rotate img {
    width: 110px;
    height: 110px;

  }

  .showreel {
    width: 100%;
    height: 460px;

  }

  .meta_txt {
    font-size: 16px;
  }

  .meta_line {
    margin-top: 7px;
  }

  .wright h2 {
    font-size: 60px;
    margin: 0px 20px 20px 0px;
  }

  .help h2,
  .testimonial h2 {
    font-size: 60px;
  }

  .process_item {
    width: 50%;
    padding-right: 30x;
  }

  .process_item p {
    font-size: 14px;
    line-height: 28px;
  }

  .contact {
    background-attachment: scroll;
  }

  .contact p {
    font-size: 40px;
    line-height: 58px;
    width: 80%;
  }
}



@media only screen and (max-width: 1024px) {
  .meta_txt {
    font-size: 14px;
  }

  .meta_line {
    margin-top: 7px;
  }

  .process_item:hover>img {
    opacity: 1 !important;
  }

  .rotate {
    display: none;
  }

  .contact {
    background-image: url("../img/contact_bg.png");
    background-repeat: no-repeat;
    background-position: 65% 30%;
    background-attachment: scroll;
  }

  .footer_logo {
    display: block;
    width: 100%;
    margin-bottom: 40px;
  }

  .binfo {
    display: block;
    width: 100%;
    margin-bottom: 50px;
  }

  .contact p {
    font-size: 24px;
    line-height: 38px;

    width: 100%;
  }

  .logo {
    left: 30px;
  }

  .hero {
    height: 75vh;
  }

  .hero_txt .nm {
    font-size: 14px;
  }

  .hero_txt {
    padding-left: 30px;
    margin: 0;
    color: var(--secondary-white1);

  }

  .hero_txt span {
    font-family: 'pp_pangram_sansextrabold';
    text-align: left !important;
    font-size: 45px;
    line-height: 48px;
    /* line-height: 11.5vw !important; */
    /* letter-spacing: 1px; */
    /* text-shadow: none; */
    text-shadow: none;


  }

  .podcrtaj {
    display: inline-block;
  }

  .podcrtaj::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1.4vw;
    width: 100%;
    height: 8px;
    -webkit-transform: skew(-12deg) translateX(-2%);
    -ms-transform: skew(-12deg) translateX(-2%);
    transform: skew(-12deg) translateX(-2%);
    z-index: -1;
  }

  .intro {
    margin: 0px 15px 80px 10px;
    padding-top: 60px;
    font-size: 20px;
    line-height: 32px;
    max-width: 100%;
  }

  .intro p {
    max-width: 100%;
  }

  .showreel {
    width: 100%;
    height: 340px;

  }

  #what {
    width: 100%;
    height: auto;
    padding-top: 140px;
  }

  .modal-content {
    width: 100%;
  }

  .play {
    z-index: 2;
    background: var(--secondary-white1) url("../img/arrow.svg") fixed;
    background-size: 30% 30%;
    background-position: 55% 50%;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }

  .play:hover {
    z-index: 2;
    background: var(--secondary-white1) url("../img/arrow.svg") fixed;
    background-size: 30% 30%;
    background-position: 55% 50%;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }

  .what {
    margin-bottom: 100px;
  }

  .wleft {
    width: 100%;
    margin-bottom: 40px;
  }

  .wright {
    width: 100%;

  }

  .wright h2 {
    font-size: 40px;
    margin: 0px 20px 40px 0px;
  }

  .wright h2 span::before {
    bottom: 5px;
  }

  .wright p {
    font-size: 18px;
    line-height: 32px;
    width: 95%;
    margin-bottom: 60px;
  }

  .what_items {
    margin-top: 0px;
    width: 100%;
    margin-bottom: 50px;
  }

  .what_items p {
    padding-right: 20px;
  }

  .help h2 {
    font-size: 40px;
    padding-right: 50px;
  }

  .carousel-cell {
    width: 94%;
    margin-right: 20px;
  }

  .help_item {
    padding: 25px;
  }

  .help_item h3 {
    font-size: 26px;
    margin: 0px 0px 20px 0px;
    padding: 0;
  }

  .help_item p {
    font-size: 15px;
    line-height: 24px;
    margin: 0px 10px 25px 0px;
    padding: 0;
  }

  .help_item ul li {
    font-size: 15px;
    line-height: 22px;
    background-position: 0px 3px;
    padding-bottom: 8px;
  }

  .dd {
    margin: 100px 0;
  }

  .process_item {
    width: 100%;
    padding-right: 10px;
    margin-bottom: 60px;

  }

  .process_item img {
    width: 260px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .image_full {
    display: none;
  }

  .image_mobile {
    display: block;
    width: 90%;
    max-width: 500px !important;
  }

  .values_item {
    width: 100%;
    padding-right: 20px;
    margin-right: 20px;
    margin-bottom: 30px;
  }

  .testimonial h2 {
    text-align: center;
    font-size: 40px;
    color: var(--secondary-white1);
  }

  blockquote {
    font-size: 18px;
    line-height: 32px;
    max-width: 97%;
  }

  blockquote:before {
    line-height: 0px;
  }

  .testimonial span {
    text-align: center;
    margin: 0 auto;
    display: block;
    color: var(--secondary-white1);
    line-height: 24px;
    text-transform: uppercase;
  }

  .frame {
    position: absolute;
    top: 0;
    left: 0x;
    width: 100%;
    height: 100vh;
    opacity: 0.7;
    overflow: hidden;
  }

  .image {
    position: relative;
    top: -240px;
    left: -600px;
    height: 100vh;
    display: block;
    margin: auto;

  }

  .contact span {
    display: block;
  }

}

.privacy a {
  float: right;
  font-size: 14px;
  color: var(--primary-black3);
  
  display:inline-block;
}
.privacy a:hover {
  color:#F3D116;
}
.privacy span {
  display:inline-block;
  float:right;
  margin:0 5px;
  color: var(--primary-black3);
}

.privacyp {
  margin: 0;
  padding: 20px 40px 60px 40px;
}

.privacyp h1,
.privacyp h2,
.privacyp h3 {
  margin: 40px 0px 20px 0px;
}

.privacyp p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 22px;
}

.privacyp ul {
  margin-left: 15px;
  padding: 0;
}

.privacyp ul li {
  font-size: 14px;
  line-height: 22px;
}

.privacyp a {
  color: var(--primary-black1);
  text-decoration: underline;
  font-family: 'pp_pangram_sanssemibold';
}

@media only screen and (min-width: 1200px) and (max-width: 1920px) {
  .wrapper {
    padding: 0 60px;
  }
  .wrapper2 {
    padding: 150px 60px;
  }
  .wright h2 {
    font-size: 62px;
}
.help h2 {
  font-size: 62px;
}
.testimonial h2 {
  font-size: 62px;
}
.contact p {
  font-size: 50px;
  line-height: 70px;
}

}

.hide_cookies {
  opacity:0 !important;
  display: none !important;
  }
  


/* Cookie Dialog */
#gdpr-cookie-message {
  position: fixed;
  right: 30px;
  bottom: 30px;
  max-width: 550px;
  background-color: var(--primary-black1);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  margin-left: 30px;
  z-index: 1000;
}

#gdpr-cookie-message h4 {
  color: var(--secondary-white1);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

#gdpr-cookie-message p {
  color: var(--secondary-white1);
  font-size: 13px;
  line-height: 1.5em;
  margin-bottom: 10px;
}

#gdpr-cookie-message p:last-child {
  margin-bottom: 0;
  text-align: right;
}

#gdpr-cookie-message a {
  color: var(--red);
  text-decoration: none;
  font-size: 15px;
  padding-bottom: 2px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease-in;
}

#gdpr-cookie-message a:hover {
  color: var(--secondary-white1);
  border-bottom-color: var(--red);
  transition: all 0.3s ease-in;
}

#gdpr-cookie-message button {
  border: none;
  background:var(--secondary-white1);
  color:var(--primary-black1);
  font-size: 15px;
  padding: 12px 27px;
  border-radius: 3px;
  margin-left: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

#gdpr-cookie-message button:hover {
  background: #F3D116;
  color: var(--primary-black1);
  transition: all 0.3s ease-in;
}

