@font-face {
  font-family: GoodPro;
  src: url(font/FontFont\ -\ GoodPro-CompUltra.otf);
}
@font-face {
  font-family: Trade Gothic Next T Pro Bold;
  src: url(font/Linotype\ -\ TradeGothicNextLTPro-Bd.otf);
}
@font-face {
  font-family: Trade Gothic Next T Prp Light;
  src: url(font/Linotype\ -\ TradeGothicNextLTPro-Lt.otf);
}
@font-face {
  font-family: Trade Gothic Next T Pro Regular;
  src: url(font/Linotype\ -\ TradeGothicNextLTPro-Rg.otf);
}
@font-face {
  src: url(font/Proxima_Nova_Regular.otf);
  font-family: "Proxima Nova Regular";
}
@font-face {
  src: url(font/Proxima_Nova_Black.otf);
  font-family: "Proxima Nova Black";
}
@font-face {
  src: url(font/Proxima_Nova_Bold.otf);
  font-family: "Proxima Nova Bold";
}
@font-face {
  src: url(font/Proxima_Nova_Light.otf);
  font-family: "Proxima Nova Light";
}
@font-face {
  src: url(font/Proxima_Nova_Semibold.otf);
  font-family: "Proxima Nova Semibold";
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Proxima Nova Black";
  font-size: 28px;
  color: #fff;
  position: relative;
  background-color: #27c4f4;
  background-image: url(img/bgr-min.png);
  background-size: 110%;
  background-repeat: no-repeat;
  animation: slide-bg 10s linear infinite alternate;
}

#no-scroll {
  width: 100vw;
  overflow: hidden;
  position: relative;
  background-image: url(img/dragees.png);
  background-size: contain;
  background-position: bottom;
}
#no-scroll #scroll {
  position: absolute;
  height: 120%;
  width: auto;
  top: -10%;
  pointer-events: none;
  z-index: -1000;
}

.container {
  width: 80%;
  margin: auto;
  max-width: 1440px;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  display: block;
  text-decoration: none;
}

h2 {
  font-family: "Proxima Nova Black";
  font-size: 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#nav {
  display: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  transition: 0.3s;
  background-color: #ffcc40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container .brand a {
  max-width: 240px;
  min-width: 170px;
  width: 100%;
}
header .container .nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .container .nav ul li:not(:first-child) {
  margin-left: 20px;
}
header .container .nav ul li a {
  text-decoration: none;
  color: #2c2d87;
}
header .container .nav .hamburger-icon {
  display: none;
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  z-index: 3;
  background-color: #ffcc40;
}

.frontPage h2 {
  text-transform: uppercase;
  margin-bottom: 80px;
  text-align: center;
}

.banner {
  padding-top: 7vh;
  overflow: hidden;
}
.banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  position: relative;
  height: 90vh;
}
.banner .container .lijevi {
  position: relative;
  align-self: flex-start;
  flex: 0 0 55%;
}
.banner .container .srednji {
  position: absolute;
  top: 40%;
}
.banner .container .srednji .roll {
  width: 800px;
}
.banner .container .drugi {
  transform: scale(0);
  position: absolute;
  width: 80%;
  left: 10%;
  animation: zoom-in-out 0.6s ease-in-out 0.5s forwards;
}
.banner .container .donji {
  transform: scale(1);
  align-self: flex-end;
}

.registruj {
  position: relative;
  overflow: hidden;
}
.registruj h2 {
  color: #ef4d91;
}
.registruj .container {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.registruj .container section {
  display: flex;
}
.registruj .container section article {
  flex: 0 0 50%;
  padding: 0 5vw;
}
.registruj .container section article form {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.registruj .container section article form label {
  color: #2c2d87;
}
.registruj .container section article form input,
.registruj .container section article form textarea {
  padding: 20px 10px;
  margin-bottom: 20px;
  outline: none;
  border: none;
}
.registruj .container section article form textarea {
  min-height: 200px;
}
.registruj .container section article form div p {
  display: flex;
  align-items: center;
  color: #2c2d87;
  margin-bottom: 10px;
}
.registruj .container section article form div p span {
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 20px;
  color: #2c2d87;
  cursor: pointer;
  background-color: #fff;
}
.registruj .container section article form div p .checked {
  background-color: #ffcc40;
  border: none;
}
.registruj .container section article form button {
  padding: 20px;
  color: #2c2d87;
  background-color: #ffcc40;
  border: none;
  font-size: 28px;
  font-family: "Proxima Nova Black";
  margin-top: 20px;
  cursor: pointer;
}
.registruj .container section article form #message {
  margin-top: 20px;
  text-align: center;
}

.pravila .container {
  padding: 80px 0;
}
.pravila .container h2 {
  color: #ef4d91;
}
.pravila .container section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.pravila .container section article:first-child img {
  width: 50%;
  margin: auto;
}
.pravila .container section article:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.pravila .container section article:nth-child(2) img {
  width: 40%;
}
.pravila .container section article:last-child {
  width: 40%;
  margin: auto;
}

.nagrade {
  position: relative;
  overflow: hidden;
}
.nagrade h2 {
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  color: #ef4d91;
}
.nagrade .desktop {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nagrade .desktop section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.nagrade .desktop section:nth-child(2) img:first-child {
  width: 100%;
}
.nagrade .desktop section:nth-child(2) img:last-child {
  width: 60%;
}
.nagrade .mobile {
  display: none;
}

footer {
  background-color: #ffcc40;
  padding: 10px 5vw;
  display: flex;
  justify-content: flex-start;
}
footer a {
  display: block;
  width: 50px;
}
footer a:not(:first-child) {
  margin-left: 20px;
}

.pravilnikPage {
  padding-top: 10vh;
  background-image: none;
  background-color: #2c2d87;
  font-weight: 400;
}
.pravilnikPage .container {
  padding: 50px 0;
}
.pravilnikPage .container h1 {
  margin: 50px 0;
  color: #ffcc40;
  text-align: center;
}
.pravilnikPage .container p {
  margin: 20px 0;
}
.pravilnikPage .container h3 {
  text-transform: uppercase;
  font-size: 32px;
  margin-bottom: 30px;
  margin-top: 50px;
}
.pravilnikPage .container .ul {
  margin-bottom: 0;
}
.pravilnikPage .container ul {
  padding-left: 50px;
}
.pravilnikPage .container .table {
  width: 100%;
  margin-bottom: 50px;
}
.pravilnikPage .container .right {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-align: right;
}
.pravilnikPage .container .right section {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 1500px) {
  body {
    background-image: url(img/bg-mob.png);
  }
}
@media (max-width: 1110px) {
  .banner .container {
    flex-direction: column;
    height: auto;
  }
  .banner .container .drugi {
    position: static;
    width: 100%;
  }
  .registruj .container section article {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 36px;
  }
  header {
    position: relative;
  }
  .hamburger-icon {
    display: block;
  }
  .icon-1,
  .icon-2,
  .icon-3 {
    position: absolute;
    left: 25%;
    top: 50%;
    width: 32px;
    height: 3px;
    background-color: black;
    transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
  }
  .icon-1 {
    transform: translateY(-8px);
    animation-delay: 100ms;
  }
  .icon-3 {
    transform: translateY(8px);
    animation-delay: 250ms;
  }
  .hamburger-icon {
    position: absolute;
    height: 60px;
    width: 60px;
    top: 0;
    left: 3%;
    z-index: 1000;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
    background: transparent;
  }
  .active.hamburger-icon .icon-1,
  .active.hamburger-icon .icon-2,
  .active.hamburger-icon .icon-3 {
    background-color: #2c2d87;
  }
  .icon-1.a {
    transform: rotate(40deg);
  }
  .icon-3.b {
    transform: rotate(-40deg);
  }
  .icon-2.c {
    opacity: 0;
  }
  .clear {
    clear: both;
  }
  #nav {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 7vh;
    left: 0;
    height: 100vh;
    width: 0%;
    z-index: 10;
    opacity: 0;
    transition: all 600ms cubic-bezier(0.62, 0.04, 0.3, 1.56);
    transition-delay: 100ms;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #nav ul {
    margin: 0;
  }
  #nav ul li {
    list-style: none;
    font-size: 24px;
    color: #fff;
    line-height: 2.2;
    text-transform: uppercase;
    letter-spacing: 1.7px;
  }
  #nav ul li a {
    color: #fff;
  }
  #nav.show {
    width: 100%;
    opacity: 1;
  }
  .dark-blue {
    position: absolute;
    top: 7vh;
    left: 0;
    background: transparent;
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    height: 100vh;
    width: 0%;
    transition: all 500ms cubic-bezier(0.62, 0.04, 0.3, 1.8);
    transition-delay: 50ms;
    z-index: 5;
    opacity: 1;
  }
  .dark-blue.slide {
    width: 100%;
    opacity: 1;
  }
  body {
    font-size: 20px;
  }
  header .container {
    justify-content: center;
  }
  header .container .nav ul {
    display: none;
  }
  header .container .nav .hamburger-icon {
    display: block;
  }
  header .container .brand a {
    width: 120px;
  }
  .banner .container {
    width: 100%;
  }
  .registruj .container {
    padding-bottom: 0;
  }
  .registruj .container section {
    flex-direction: column;
  }
  .registruj .container section article form button {
    font-size: 20px;
  }
  .pravila {
    position: relative;
    z-index: 0;
  }
  .pravila .container {
    padding-top: 40px;
  }
  .pravila .container section {
    flex-direction: column;
  }
  .pravila .container section article:first-child {
    margin-bottom: 40px;
  }
  .pravila .container section article:first-child img {
    width: 100%;
  }
  .pravila .container section article:nth-child(2) {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .pravila .container section article:nth-child(2) img {
    width: 90%;
  }
  .pravila .container section article:nth-child(2) img:first-child {
    margin-bottom: 30px;
    align-self: flex-end;
  }
  .pravila .container section article:last-child {
    width: 100%;
  }
  .pravila .container section article:last-child img {
    width: 100%;
  }
  .nagrade .desktop {
    display: none;
  }
  .nagrade .mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .nagrade .mobile img:nth-child(2) {
    width: 70%;
    align-self: flex-end;
    margin-bottom: 40px;
  }
  .nagrade .mobile img:nth-child(3) {
    width: 70%;
    align-self: flex-start;
  }
  .nagrade .mobile img:last-child {
    width: 70%;
    align-self: flex-end;
  }
}
@media (max-width: 500px) {
  body {
    animation-duration: 5s;
    background-size: cover;
  }
  .pravilnikPage .container .right section:first-child {
    display: none;
  }
  .pravilnikPage .container .right section:last-child {
    flex: auto;
  }
  .pravilnikPage .container h3 {
    font-size: 24px;
  }
}
@keyframes move {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -30px) rotate(30deg);
  }
  50% {
    transform: translate(-15px, 40px) rotate(60deg);
  }
  75% {
    transform: translate(-20px, -20px) rotate(120deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes slideIn {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 80%;
    opacity: 1;
  }
}
@keyframes shotup {
  0% {
    transform: translateY(300%);
    opacity: 0;
  }
  90% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes zoom-in-out {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slide {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
@keyframes slide-bg {
  0% {
    background-position: top;
  }
  100% {
    background-position: bottom;
  }
}/*# sourceMappingURL=style.css.map */