:root {
  --clr-blue: #153142;
}

body {
  font-family: "Times New Roman", Times, serif;
  overflow-x: hidden !important;
  position: relative;
}

.clr-orange {
  color: #DEA01E;
}

.clr-white {
  color: white;
}

.clr-blue {
  color: #153142;
}

.uppercase {
  text-transform: uppercase;
}

.text-right {
  text-align: right;
}

.sticky-top {
  top: 120px;
}

.btn {
  border-radius: 0;
  font-weight: bold;
  border: none;
  transition: all 400ms ease;
}
.btn:hover {
  color: var(--clr-blue);
  background: transparent !important;
  transition: all 200ms ease;
}
.btn.btn-primary {
  background: var(--clr-blue);
  border: 2px solid var(--clr-blue);
}

.background-r {
  position: fixed;
  z-index: -10;
  max-width: 100%;
  min-width: 300px;
  height: 150vh;
  pointer-events: none;
}
.background-r.home {
  right: 0px;
  top: -30px;
}
.background-r.page {
  top: inherit;
  top: -30px;
  right: inherit;
  left: 0;
}

h1 {
  font-weight: bold;
  font-size: 60px;
  letter-spacing: 0.05em;
}
h1.pre-r {
  margin-bottom: 40px;
  position: relative;
}
h1.pre-r::before {
  content: "";
  background: url(/assets/media/logo-r-white.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 73px;
  height: 100px;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
}
h1.pre-r.text-right {
  transform: none;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (min-width: 780px) {
  h1.pre-r {
    transform: translateX(30px);
  }
  h1.pre-r::before {
    left: -20px;
    transform: translate(0, 50%);
  }
}

h2 {
  font-weight: bold;
  position: relative;
  font-size: 38px;
  letter-spacing: 1px;
}
h2.pre-r {
  transform: translateX(10px);
  margin-bottom: 40px;
}
h2.pre-r::before {
  content: "";
  background: url(/assets/media/logo-r.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 73px;
  height: 80px;
  display: block;
  position: absolute;
  left: -20px;
  top: -15px;
}
h2.pre-r.one-row.text-right {
  width: -moz-fit-content;
  width: fit-content;
}
h2.pre-r.text-right {
  transform: none;
  margin-left: auto;
  transform: translateX(-20px);
}
h2.pre-r.text-right::before {
  left: inherit;
  right: -30px;
}
h2.pre-r.text-center {
  transform: none;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
h2.pre-r.text-center::before {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 780px) {
  h2 {
    font-size: 44px;
  }
}

h3 {
  font-weight: 28px;
  font-weight: bold;
}

p {
  max-width: 90ch;
  text-align: justify;
}
@media screen and (min-width: 796px) {
  p {
    font-size: 18px;
  }
}

a {
  color: #1a303d;
  font-weight: bold;
  text-decoration: none;
}

/* 
    NAVIGACIJA 
*/
body.disabled {
  overflow: hidden;
}

.dugmence {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.25s;
  margin-right: -12.5px;
}

.dugmence_line {
  position: absolute;
  top: 50%;
  width: 50%;
  height: 3px;
  border-radius: 0.25em;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
}

.on .dugmence_line {
  background-color: var(--clr-blue);
}

.dugmence_line-a {
  --top: 33%;
  --deg: 45deg;
}

.dugmence_line-c {
  --top: 67%;
  --deg: -45deg;
}

.dugmence_line-a,
.dugmence_line-c {
  top: var(--top);
  transform: translate(-50%, -50%) rotate(0);
  transition: transform var(--speed), top var(--speed) var(--speed);
}

.on .dugmence_line-a,
.on .dugmence_line-c {
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--deg));
  transition: top var(--speed), transform var(--speed) var(--speed);
}

.dugmence_line-b {
  transition: opacity 0s var(--speed);
}

.on .dugmence_line-b {
  opacity: 0;
}

/*
    NAVIGACIJA  
*/
.navbar {
  position: fixed;
  width: 100%;
  max-width: 100%;
  z-index: 999;
  padding: 20px 5px;
  transition: all 0.3s ease;
  top: -1px;
}
.navbar.uvek-boja {
  background-color: var(--tamna-plava);
}
.navbar .logo a {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  text-decoration: none;
  font-family: "Russo One";
  letter-spacing: 4px;
}
.navbar .logo a img {
  max-width: 60px;
  margin-right: 12px;
  padding-bottom: 5px;
}
.navbar.sticky {
  background: var(--clr-blue);
  padding: 5px 0;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
}
.navbar .content {
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  padding: 0 25px;
}
.navbar .menu-list {
  position: fixed;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  padding: 40px 0;
  text-align: center;
  background: white;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navbar .menu-list li {
  list-style: none;
  padding: 10px 0;
  position: relative;
  transition: all 200ms ease;
  color: white;
}
.navbar .menu-list li a {
  color: var(--clr-blue);
  font-size: 22px;
  margin-left: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}
.navbar .menu-list li a.active-link {
  font-weight: bold;
}
.navbar .menu-list li a:hover:not(.active-link) {
  opacity: 0.6;
}
.navbar .menu-list li a.main-btn {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 10px;
}
.navbar .menu-list li a.dropdown {
  padding-right: 10px;
}
.navbar .menu-list li .dropdown-content {
  padding-top: 5px;
  position: relative;
}
.navbar .menu-list li .dropdown-content a {
  font-weight: normal;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.navbar.show {
  background: transparent;
}
.navbar.show .menu-list {
  opacity: 1;
  pointer-events: all;
}
.navbar.show .logo {
  z-index: 9999;
}

.icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: block;
}
.icon.hide {
  display: none;
}

@media (min-width: 780px) {
  .content {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) {
  .navbar {
    padding: 25px 5px;
    pointer-events: all;
  }
  .navbar.show .content .logo {
    opacity: 1;
  }
  .navbar .content {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
  .navbar .content .dugmence {
    display: none;
  }
  .navbar .content .logo {
    z-index: 99999;
  }
  .navbar .content .logo a {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    pointer-events: all;
  }
  .navbar .content .menu-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    opacity: 1;
    background: transparent;
    height: 100%;
    width: auto;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 25px;
    top: 0;
    pointer-events: all;
  }
  .navbar .content .menu-list li {
    list-style: none;
    padding: 0;
    position: relative;
  }
  .navbar .content .menu-list li.social-icons {
    display: flex;
  }
  .navbar .content .menu-list li a {
    color: #fff;
    font-size: 16px;
    margin-left: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .navbar .content .menu-list li a.icon {
    margin-left: 15px;
    font-size: 22px;
  }
  .navbar .content .menu-list li a.main-btn {
    margin: 6px 0 0 20px;
    padding: 8px 25px;
  }
  .navbar .content .menu-list li.dropdown-container:hover .dropdown-content {
    opacity: 1;
    transition: all 200ms ease-in-out;
    pointer-events: all;
  }
  .navbar .content .menu-list li.dropdown-container:hover {
    text-shadow: none;
    transform: scale(1);
  }
  .navbar .content .menu-list .dropdown-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    padding-top: 12px;
    width: 250px;
    opacity: 0;
    transition: all 200ms ease-in-out;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding-top: 32px;
  }
  .navbar .content .menu-list .dropdown-content::after {
    content: "";
    color: white;
    width: 0px;
    height: 0px;
    border: 16px solid black;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: rgba(4, 39, 67, 0.95);
    border-left-color: transparent;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
  .navbar .content .menu-list .dropdown-content a {
    margin: 0;
    padding: 0;
    background: rgba(4, 39, 67, 0.95);
    width: 250px;
    padding: 10px 0;
  }
  .navbar .content .menu-list .dropdown-content a:first-of-type {
    padding-top: 20px;
  }
  .navbar .content .menu-list .dropdown-content a:last-of-type {
    padding-bottom: 20px;
  }
  .navbar.sticky .content .menu-list .dropdown-container:hover .dropdown-content {
    padding-top: 35px;
  }
  .navbar.sticky .content .menu-list .dropdown-container:hover .dropdown-content::after {
    display: none;
    opacity: 0;
    border-bottom-color: rgba(0, 0, 0, 0);
  }
  .navbar.uvek-boja .content .menu-list .dropdown-container:hover .dropdown-content {
    padding-top: 22px;
  }
  .navbar.uvek-boja .content .menu-list .dropdown-container:hover .dropdown-content::after {
    display: none;
    opacity: 0;
    border-bottom-color: rgba(0, 0, 0, 0);
  }
}
@media (min-width: 1100px) {
  .content {
    padding: 0 40px;
  }
}
@media (min-width: 1230px) {
  .content {
    padding: 0 60px;
  }
}
.hero {
  width: 100%;
  height: 550px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero.hero-fs {
  height: calc(100vh + 101px);
}
.hero.hero-smaller {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero.hero-smaller h1 {
  text-transform: none;
  text-align: center;
  transform: translateY(30px);
}
.hero.hero-smaller .breadcrumb {
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
  justify-content: center;
  opacity: 0.8;
  margin-top: 10px;
}
.hero.hero-smaller .breadcrumb a {
  color: white;
}
.hero.hero-smaller .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: white;
  opacity: 0.8;
}
.hero.hero-smaller .breadcrumb .breadcrumb-item.active {
  color: white;
  font-weight: bold;
}
@media screen and (min-width: 780px) {
  .hero.hero-smaller {
    justify-content: flex-start;
    padding-left: 100px !important;
  }
  .hero.hero-smaller .wrap {
    width: 100%;
    display: flex;
    padding-left: 1em;
  }
  .hero.hero-smaller .wrap h1 {
    text-align: left;
  }
  .hero.hero-smaller .wrap .breadcrumb {
    justify-content: flex-start;
  }
  .hero.hero-smaller.hero-oblast .wrap h1::before {
    bottom: 35%;
  }
}
.hero.hero-home {
  background: url("/assets/media/background1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero.hero-o-nama {
  background: linear-gradient(0deg, rgba(4, 10, 16, 0.6), rgba(4, 10, 16, 0.6)), url("/assets/media/background2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero.hero-nas-tim {
  background: linear-gradient(0deg, rgba(4, 10, 16, 0.6), rgba(4, 10, 16, 0.6)), url("/assets/media/background10.jpg");
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero.hero-oblasti-rada {
  background: linear-gradient(0deg, rgba(4, 10, 16, 0.6), rgba(4, 10, 16, 0.6)), url("/assets/media/background4.jpg");
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero.hero-postani-clan {
  background: linear-gradient(0deg, rgba(4, 10, 16, 0.6), rgba(4, 10, 16, 0.6)), url("/assets/media/background5.jpg");
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero.hero-kontakt {
  background: linear-gradient(0deg, rgba(4, 10, 16, 0.6), rgba(4, 10, 16, 0.6)), url("/assets/media/background6.jpg");
  background-position: center 70%;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero.hero-oblast {
  background: linear-gradient(0deg, rgba(4, 10, 16, 0.6), rgba(4, 10, 16, 0.6)), url("/assets/media/background7.jpg");
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero .wrap .hero-logo {
  max-width: 100%;
  width: 100px;
}
.hero .wrap .row {
  transform: translateY(80px);
}
.hero .wrap .content {
  text-align: center;
}
.hero .wrap .content h1 {
  margin: 0;
  padding: 0;
}
.hero .wrap .content label {
  font-weight: bold;
  font-size: 18px;
}
.hero .wrap .content h2 {
  font-size: 30px;
  letter-spacing: 20px;
  font-weight: normal;
  padding-left: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .hero .wrap .hero-logo {
    width: 150px;
  }
  .hero .wrap .row {
    width: 685px;
  }
  .hero .wrap .content {
    text-align: left;
  }
  .hero .wrap .content h1 {
    font-size: 80px;
  }
  .hero .wrap .content h2 {
    transform: none;
    margin: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .hero .wrap .hero-logo {
    width: 170px;
  }
  .hero .wrap .row {
    width: 710px;
  }
  .hero .wrap .content h1 {
    font-size: 100px;
  }
  .hero .wrap .content label {
    font-size: 20px;
  }
  .hero .wrap .content h2 {
    font-size: 34px;
    letter-spacing: 24px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1200px) {
  .hero .wrap .hero-logo {
    width: 190px;
  }
  .hero .wrap .row {
    width: auto;
  }
  .hero .wrap .content h1 {
    font-size: 130px;
  }
  .hero .wrap .content label {
    font-size: 20px;
  }
  .hero .wrap .content h2 {
    font-size: 40px;
    letter-spacing: 26px;
  }
}
.hero .navbar-nav .nav-link {
  color: white;
  margin: 0 15px;
  letter-spacing: 1px;
  transition: all 400ms ease;
}
.hero .navbar-nav .nav-link.active {
  font-weight: bold;
}
.hero .navbar-nav .nav-link:hover:not(.active) {
  opacity: 0.6;
  transition: all 400ms ease;
}

.oblast-rada {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}
.oblast-rada .oblast-slika ~ div:first-of-type {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  display: block;
  z-index: 2;
}
.oblast-rada .oblast-slika {
  max-width: 100px;
  width: 100%;
  max-height: 100px;
  margin-bottom: 20px;
  position: relative;
  pointer-events: none;
}
.oblast-rada h3 {
  z-index: 3;
}
.oblast-rada.oblast-rada-full {
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 50px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .oblast-rada.oblast-rada-full {
    width: 46%;
    margin-right: 30px;
  }
}
.oblast-rada.oblast-rada-full .oblast-header .oblast-slika {
  height: 50px !important;
  max-width: 50px;
  margin-bottom: 0;
  margin-right: 20px;
}
.oblast-rada.oblast-rada-full a {
  z-index: 5;
  position: relative;
}

.person {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.person.right {
  flex-direction: column-reverse;
}
.person .pic {
  width: 200px;
  height: 200px;
  background: url("/assets/media/person.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  text-align: center;
  border-bottom: 2px solid var(--clr-blue);
  margin-bottom: 20px;
}
.person .info {
  text-align: center !important;
}
.person .info h3 {
  text-align: center !important;
}
.person .info p {
  text-align: center !important;
}
@media screen and (min-width: 769px) {
  .person.main-person {
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 2px solid var(--clr-blue);
  }
  .person.main-person.right {
    flex-direction: row;
  }
  .person.main-person.right .info {
    text-align: end !important;
  }
  .person.main-person.right .info h3, .person.main-person.right .info p {
    text-align: end !important;
  }
  .person.main-person .pic {
    width: 220px;
    height: 100%;
    border-bottom: none;
    margin-bottom: 0;
  }
  .person.main-person .info {
    text-align: left !important;
    margin-left: 2em;
    padding-bottom: 1.5rem;
  }
  .person.main-person .info h3, .person.main-person .info p {
    text-align: left !important;
  }
  .person.main-person .info h3 {
    font-size: 50px;
    margin-top: 10px;
    color: var(--clr-blue);
  }
  .person.main-person .info p {
    font-size: 30px;
    font-weight: bold;
    color: var(--clr-blue);
  }
  .person.main-person .info p.list {
    font-size: 18px;
    font-weight: normal;
    max-width: 45ch;
  }
}

.side-person-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-right: -12px !important;
  margin-left: 0;
  padding-right: 1.5em;
  padding-bottom: 1.5em;
}
.side-person-container .person {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 15px;
}

.stats h3 {
  font-size: 40px;
}
.stats p {
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  .stats h3 {
    font-size: 60px;
  }
  .stats p {
    font-size: 30px;
  }
}

form {
  background: white;
  border: 5px solid var(--clr-blue);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.22);
  max-width: 600px;
}
form label {
  font-size: 20px;
}
form input, form textarea {
  border-radius: 0 !important;
  border: 1px solid var(--clr-blue) !important;
}
form input:focus, form textarea:focus {
  box-shadow: none !important;
}
form textarea {
  height: 250px;
}

.ftco-section {
  padding: 12em 0;
}

.ftco-section h2 {
  margin-bottom: 0;
}

footer {
  padding: 0 0 1em 0;
}

.footer {
  background: #153142;
}

.footer a {
  color: white;
}

.footer p {
  color: rgba(255, 255, 255, 0.3);
}

.footer .footer-heading {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer .footer-heading .logo {
  color: #fff;
}

.footer .menu {
  margin-bottom: 30px;
  max-width: 100%;
}

.footer .menu a {
  color: white;
  margin: 0 10px;
  letter-spacing: 1px;
  text-decoration: none;
}
.footer .menu a.active {
  font-weight: bold;
}

.footer .copyright {
  max-width: 100%;
}/*# sourceMappingURL=main.css.map */