@font-face {
  font-family: "Aktiv Grotesk Black Italic";
  src: url("font/OTF/AktivGrotesk-BlackItalic.otf");
}
@font-face {
  font-family: "Aktiv Grotesk Italic";
  src: url("font/OTF/AktivGrotesk-Italic.otf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

#no-scroll{
  overflow-x: hidden;
}

body {
  font-family: "Aktiv Grotesk Black Italic";
  font-size: 32px;
  margin: auto;
}

.container {
  max-width: 1056px;
  width: 95%;
  margin: auto;
}

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

h1, h2 {
  text-transform: uppercase;
  font-size: 40px;
  text-align: center;
  font-weight: 400;
}

/* HEADER */
header {
  padding: 30px 0;
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .container .brand a {
  display: block;
  width: 121px;
}
header .container .brand a img {
  width: 100%;
  height: auto;
}
header .container nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}
header .container nav ul li:not(:first-child) {
  margin-left: 50px;
}
header .container nav ul li a {
  text-decoration: none;
  color: rgb(51, 184, 197);
}
header .container .toggler {
  display: none;
}

/* BANNER */
.banner {
  background-color: rgb(225, 37, 27);
  padding: 70px 0;
}
.banner h1 {
  color: #fff;
  margin-bottom: 70px;
}
.banner section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.banner section article:first-child {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.banner section article:first-child img {
  width: 100%;
}
.banner section article:first-child .btn {
  display: flex;
  width: 232px;
  height: 69px;
  background-color: #fff;
  color: rgb(51, 184, 197);
  text-decoration: none;
  border-radius: 35px;
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  margin-top: 70px;
}
.banner section article:last-child {
  flex: 0 0 60%;
  position: relative;
}
.banner section article:last-child img {
  position: absolute;
  bottom: -200px;
  width: 120%;
  left: -10%;
}

/* EMPTY */
.empty {
  height: 250px;
}

/* MISIJA */
.misija h2 {
  color: rgb(51, 184, 197);
  margin-bottom: 30px;
}
.misija p {
  text-align: center;
  text-transform: uppercase;
  color: rgb(51, 184, 197);
  margin-bottom: 20px;
}
.siluete {
  width: auto;
  margin-left: auto;
}

/* FOOTER */
footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgb(51, 184, 197);
}
footer a {
  display: block;
  color: #fff;
  margin: 30px;
}

.prijava .container {
  min-height: 72vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}
.prijava .container section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 50px 0;
}
.prijava .container section article:first-child {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.prijava .container section article:first-child h2 {
  color: rgb(225, 37, 27);
  margin-bottom: 70px;
}
.prijava .container section article:last-child {
  flex: 0 0 48%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}
.prijava .container section article:last-child form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.prijava .container section article:last-child form .input {
  width: 85%;
  max-width: 400px;
  background-color: rgb(225, 37, 27);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 15px;
  border: none;
  border-radius: 35px;
  font-size: 19px;
  font-family: "Aktiv Grotesk Black Italic";
  font-weight: 400;
  outline: none;
  margin-bottom: 20px;
}
.prijava .container section article:last-child form .input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.prijava .container section article:last-child form .input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.prijava .container section article:last-child form input[type=file] {
  display: none;
}
.prijava .container section article:last-child form input[type=checkbox] {
  display: none;
}
.prijava .container section article:last-child form p {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.prijava .container section article:last-child form p .input {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 20px;
}
.prijava .container section article:last-child form .check {
  text-transform: uppercase;
  font-size: 19px;
  color: rgb(51, 184, 197);
}
.prijava .container section article:last-child form .check span {
  width: 40px;
  height: 40px;
  border: 2px solid rgb(51, 184, 197);
  margin-right: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.prijava .container section article:last-child form .check span img {
  transition: 0.2s;
  visibility: hidden;
}
.prijava .container section article:last-child form .check.active span img {
  visibility: visible;
}
.prijava .container section article:last-child form input:-internal-autofill-selected {
  -webkit-appearance: menulist-button;
     -moz-appearance: menulist-button;
          appearance: menulist-button;
  background-image: none !important;
  background-color: rgb(225, 37, 27) !important;
  color: #fff !important;
}
.prijava .container section article:last-child form input[type=submit] {
  cursor: pointer;
  transition: 0.2s;
  visibility: hidden;
}

.uploadPage {
  background-color: rgb(225, 37, 27);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}
.uploadPage .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 72vh;
}
.uploadPage .container h2 {
  text-align: center;
  color: #fff;
}

.pravilnik {
  background-color: rgb(51, 184, 197);
  padding: 50px;
  color: #fff;
  text-transform: uppercase;
  font-weight: light;
  font-family: "Aktiv Grotesk Italic";
}
.pravilnik h2 {
  color: #fff;
  font-family: "Aktiv Grotesk Black Italic";
}
.pravilnik h3 {
  font-size: 22px;
  margin-top: 30px;
}
.pravilnik p {
  font-size: 18px;
}
.pravilnik li {
  font-size: 18px;
}
.pravilnik a {
  text-decoration: none;
  color: #fff;
}

.kontakt {
  background-color: rgb(51, 184, 197);
  color: #fff;
  text-transform: uppercase;
  min-height: 72vh;
}
.kontakt .container {
  padding: 50px 0;
}
.kontakt .container h2 {
  margin-bottom: 50px;
  -moz-text-align-last: left;
       text-align-last: left;
}
.kontakt .container p {
  margin-bottom: 30px;
  font-size: 24px;
}
.kontakt .container ul {
  margin-left: 70px;
  font-size: 24px;
}
.kontakt .container ul a {
  color: #fff;
}

.prijava-page header {
  background-color: rgb(51, 184, 197);
}
.prijava-page header .container nav ul li a {
  color: #fff;
}

.pravilnik-page footer {
  background-color: #fff;
}

.kontakt-page footer {
  background-color: #fff;
}

#navbar {
  display: none;
}

.loginPage{
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(225, 37, 27);
}

.loginPage form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100px;
  max-width: 300px;
  width: 90%;
  margin: auto;
}

.loginPage form input {
  width: 85%;
  max-width: 400px;
  background-color: rgb(225, 37, 27);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 15px;
  border: none;
  border-radius: 35px;
  font-size: 19px;
  font-family: "Aktiv Grotesk Black Italic";
  font-weight: 400;
  outline: none;
  margin-bottom: 20px;
  border: 1.5px solid #fff;
}

.loginPage form .input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.loginPage form .input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.loginPage form p {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.ploginPage form p .input {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 20px;
}
.loginPage form .check {
  text-transform: uppercase;
  font-size: 19px;
  color: rgb(51, 184, 197);
}
.loginPage form .check span {
  width: 40px;
  height: 40px;
  border: 2px solid rgb(51, 184, 197);
  margin-right: 20px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.loginPage form .check span img {
  transition: 0.2s;
  visibility: hidden;
}
.loginPage form .check.active span img {
  visibility: visible;
}
.loginPage form input:-internal-autofill-selected {
  -webkit-appearance: menulist-button;
     -moz-appearance: menulist-button;
          appearance: menulist-button;
  background-image: none !important;
  background-color: rgb(225, 37, 27) !important;
  color: #fff !important;
}
.loginPage form input[type=submit] {
  cursor: pointer;
  transition: 0.2s;
}

.urednikPage table{
  width: 100%;
  overflow-x: scroll;
}

.urednikPage{min-height: 70vh;}

.urednikPage thead{background-color: rgb(225, 37, 27); color: #fff;}
.urednikPage table td{padding: 5px 10px; text-align: center; font-size: 20px;}
.urednikPage tbody td{font-weight: 400; font-family: "Arial";}

.dobitnici{
  min-height: 80vh;
}

.dobitnici h1{
  text-align: center;
  margin: 50px 0;
  color: #33b8c5;
}

.dobitnici table{

  margin: auto;
  width: 100%;

}

.dobitnici table td{
  padding: 10px;
  border: 1px solid white;
  border-collapse: collapse;
    background-color: #33b8c5;
}

.dobitnici thead td{
  color: rgb(225, 37, 27)
}

.dobitnici tbody td{
  color: #fff;
}

@media (max-width: 1150px) {
  .banner section article:last-child img {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  #navbar {
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    top: 148px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 148px);
    background: #fff;
    z-index: 2;
    transition: 0.3s;
  }
  #navbar nav ul {
    list-style: none;
  }
  #navbar nav ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  #navbar nav ul li a {
    text-decoration: none;
    color: rgb(51, 184, 197);
  }
  header .container nav {
    display: none;
  }
  header .container .toggler {
    display: flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  header .container .toggler .bar {
    width: 40px;
    height: 5px;
    background-color: rgb(51, 184, 197);
    transition: 0.3s;
  }
  header .container .toggler.active .bar1 {
    transform: rotate(-45deg) translate(0px, 6px);
  }
  header .container .toggler.active .bar2 {
    transform: translateX(-500px);
    opacity: 0;
  }
  header .container .toggler.active .bar3 {
    transform: rotate(45deg) translate(0px, -6px);
  }
  .misija img {
    width: 100%;
  }
  .prijava .container section {
    flex-direction: column;
    align-items: center;
  }
  .prijava .container section article {
    flex: 0 0 0 !important;
  }
  .prijava .container section article:last-child {
    margin-top: 50px;
  }
  .prijava .container section article:last-child form .input {
    width: 100%;
    max-width: 100%;
  }
  .prijava .container section article:last-child form p span:last-child {
    display: none;
  }
  .prijava .container section article:last-child form p .input {
    margin-right: 0;
  }
  .prijava .container section article:last-child form .check {
    margin-bottom: 20px;
  }
  .prijava .container section article:last-child form .check span {
    display: block !important;
    width: auto;
  }
}
@media (max-width: 576px) {
  .container {
    width: 90%;
  }
  body {
    font-size: 28px;
  }
  h1, h2 {
    font-size: 28px;
  }
  .banner section {
    flex-direction: column;
  }
  .banner section article:first-child img {
    width: 60%;
    margin: auto;
  }
  .banner section article:first-child .btn {
    margin-top: 40px;
  }
  .banner section article:last-child img {
    top: 30px;
    left: 0;
  }
  footer a {
    width: 40px;
    height: 40px;
  }
  footer a img {
    height: 100%;
    width: auto;
  }
  .pravilnik {
    padding: 50px 0;
  }
  .kontakt .container p {
    font-size: 20px;
  }
  .kontakt .container ul {
    margin-left: 20px;
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */