/************************
google font
************************/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/************************
variables
************************/
/************************
mixins
************************/
/************************
bacis styles
************************/
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Playfair Display', serif;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.container {
  width: 70%;
  margin: auto;
}

i {
  color: #af9562;
}

/************************
top bar
************************/
.topBar {
  background: #11243a;
  color: white;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .topBar {
    text-align: center;
  }
}

.topBar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  .topBar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 3;
  }
}

.topBar .container a {
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
}

@media (max-width: 767px) {
  .topBar .container a {
    font-size: 1rem;
  }
}

.topBar .container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.topBar .container ul li {
  padding: 0 10px;
}

.topBar .container ul li a {
  font-size: 2rem;
  color: red;
}

.topBar .container ul li:hover i {
  color: white;
}

.topBar .container span {
  color: white;
}

/************************
header
************************/
header {
  margin-bottom: 50px;
}

header nav {
  font-family: 'Playfair Display', serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 20px 0;
}

@media (max-width: 767px) {
  header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

header nav .logo a {
  color: #11243a;
  font-weight: 600;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  header nav .logo {
    margin-bottom: 20px;
  }
}

header nav ul {
  font-family: 'Playfair Display', serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

header nav ul li {
  display: inline-block;
  margin-left: 40px;
  font-family: 'Playfair Display', serif;
}

@media (max-width: 767px) {
  header nav ul li {
    margin-bottom: 20px;
    margin-left: 0px;
    display: none;
  }
}

header nav ul li a {
  color: #11243a;
  font-weight: 600;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  text-shadow: 0px 0px 1px #11243a;
}

header nav ul li a:hover {
  color: white;
  background: #11243a;
  padding: 15px 15px;
}

header nav #btnBars {
  font-size: 5rem;
  cursor: pointer;
  display: none;
}

@media (max-width: 767px) {
  header nav #btnBars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

header hgroup {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 36, 58, 0.6)), to(rgba(17, 36, 58, 0.6))), url(../img/header.jpg);
  background: linear-gradient(rgba(17, 36, 58, 0.6), rgba(17, 36, 58, 0.6)), url(../img/header.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 70vh;
  color: white;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header hgroup h1 {
  font-size: 4rem;
  font-weight: 900;
}

@media (max-width: 767px) {
  header hgroup h1 {
    font-size: 3rem;
  }
}

header hgroup p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  header hgroup p {
    font-size: 0.9rem;
  }
}

header hgroup button {
  padding: 10px 30px;
  border: 3px solid white;
  color: white;
  background: transparent;
  font-size: 1.3rem;
}

header hgroup button:hover {
  background: white;
  color: #11243a;
}

@media (max-width: 767px) {
  header hgroup button {
    margin-bottom: 20px;
  }
}

/************************
logg in success message
************************/
.logInSuccess {
  text-align: center;
  background: green;
  color: white;
  width: 100%;
}

/************************
logg in unsuccess message
************************/
.logInUnsuccess {
  text-align: center;
  background: red;
  color: white;
  max-width: 100%;
}

/************************
about us
************************/
.aboutUs {
  padding: 50px 0;
  color: #11243a;
}

.aboutUs h2 {
  text-align: center;
  font-size: 3rem;
  color: #11243a;
}

.aboutUs hr {
  background: #11243a;
  width: 150px;
  padding: 1px 0;
  margin: auto auto 20px auto;
  content: "";
}

.aboutUs .first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .aboutUs .first {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.aboutUs .first img {
  max-width: 25%;
}

@media (max-width: 767px) {
  .aboutUs .first img {
    float: none;
    position: relative;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

.aboutUs .first p {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  text-align: justify;
  line-height: 1.8;
  word-spacing: 3px;
  font-size: 1.1rem;
}

.aboutUs .first p a {
  font-weight: 800;
  color: #11243a;
}

.aboutUs .first p a:hover {
  text-decoration: underline;
}

.aboutUs .second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.aboutUs .second h3 {
  font-size: 2rem;
}

.aboutUs .second hr {
  background: #11243a;
  width: 150px;
  padding: 1px 0;
  margin: auto auto 20px auto;
  content: "";
}

.aboutUs .second p {
  text-align: justify;
  line-height: 1.8;
  word-spacing: 3px;
  font-size: 1.1rem;
}

.aboutUs .second p a {
  font-weight: 800;
  color: #11243a;
}

.aboutUs .second p a:hover {
  text-decoration: underline;
}

/************************
work fields
************************/
.workFields {
  padding: 50px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 36, 58, 0.8)), to(rgba(17, 36, 58, 0.8))), url(../img/work-info.jpg);
  background: linear-gradient(rgba(17, 36, 58, 0.8), rgba(17, 36, 58, 0.8)), url(../img/work-info.jpg);
  background-position: center;
  background-size: cover;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.workFields h2 {
  text-align: center;
  font-size: 3rem;
  color: white;
}

.workFields hr {
  background: white;
  width: 150px;
  padding: 1px 0;
  margin: auto auto 20px auto;
  content: "";
}

.workFields .container {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  .workFields .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.workFields .container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  margin-bottom: 30px;
  background: #11243a;
  padding: 80px;
  border: 1px solid white;
  -webkit-box-shadow: 0px 0px 10px white;
          box-shadow: 0px 0px 10px white;
}

@media (max-width: 767px) {
  .workFields .container a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 30px 50px;
  }
}

.workFields .container a article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 300px;
}

.workFields .container a article i {
  color: white;
  font-size: 90px;
  margin-bottom: 20px;
}

.workFields .container a article h4 {
  font-size: 1rem;
  color: white;
  word-spacing: 5px;
  letter-spacing: 1px;
  text-align: center;
}

.workFields .container a article p {
  font-size: 0.9rem;
  color: white;
  word-spacing: 5px;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .workFields .container a article {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 10px 10px;
    width: 100%;
    height: 700px;
  }
}

.workFields .container a article:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

/************************
contact form
************************/
.contactForm {
  padding: 50px 0;
  height: 100%;
}

@media (max-width: 767px) {
  .contactForm {
    padding: 10px 0;
  }
}

.contactForm h2 {
  text-align: center;
  font-size: 3rem;
  color: #11243a;
}

.contactForm hr {
  background: #11243a;
  width: 150px;
  padding: 1px 0;
  margin: auto auto 20px auto;
  content: "";
}

.contactForm p {
  font-size: 1rem;
  color: #11243a;
  margin-bottom: 10px;
  text-align: justify;
}

.contactForm form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contactForm form .input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  .contactForm form .input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contactForm form .input input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  margin-bottom: 20px;
  padding: 10px 0;
  padding-left: 10px;
  font-family: 'Playfair Display', serif;
  border: 3px solid #11243a;
}

@media (max-width: 767px) {
  .contactForm form .input input {
    width: 100%;
  }
}

.contactForm form textarea {
  width: 100%;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-top: 10px;
  font-family: 'Playfair Display', serif;
  border: 3px solid #11243a;
}

.contactForm form button {
  padding: 10px 30px;
  border: 3px solid #11243a;
  color: #11243a;
  background: transparent;
  font-size: 1.3rem;
}

.contactForm form button:hover {
  background: #11243a;
  color: white;
}

@media (max-width: 767px) {
  .contactForm form button {
    margin-bottom: 20px;
  }
}

/************************
recommendation
************************/
.recommendation {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.recommendation h2 {
  font-size: 3rem;
  color: #11243a;
}

.recommendation hr {
  background: #11243a;
  width: 150px;
  padding: 1px 0;
  margin: auto auto 20px auto;
  content: "";
  margin-bottom: 30px;
}

.recommendation article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  .recommendation article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recommendation article div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
}

@media (max-width: 767px) {
  .recommendation article div {
    margin-bottom: 20px;
  }
}

.recommendation article div img {
  width: 100%;
}

/************************
map
************************/
.map {
  padding-top: 50px;
}

.map iframe {
  display: block;
}

/************************
blog
************************/
.blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  .blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 1023px) {
  .blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.blog article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  height: 700px;
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .blog article {
    margin-bottom: 50px;
    height: 900px;
  }
}

@media (max-width: 1023px) {
  .blog article {
    margin-bottom: 50px;
    height: 900px;
  }
}

.blog article img {
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
}

.blog article h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #11243a;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog article p {
  color: #11243a;
  text-align: justify;
  margin-bottom: 10px;
}

.blog article p a {
  background-color: white;
  color: #11243a;
  font-weight: bold;
}

.blog article p a:hover {
  text-decoration: underline;
  color: #11243a;
  background-color: white;
  border: none;
}

.blog article a {
  width: 200px;
  height: 30px;
  background-color: #11243a;
  text-align: center;
  color: white;
}

.blog article a:hover {
  color: #11243a;
  background-color: white;
  border: 3px solid #af9562;
}

/************************
tekstovi
************************/
.tekstovi article {
  color: #11243a;
  text-align: justify;
  line-height: 1.8;
  word-spacing: 3px;
}

.tekstovi article img {
  max-width: 500px;
  float: right;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .tekstovi article img {
    float: none;
    padding-left: 0px;
    width: 100%;
    margin-bottom: 20px;
  }
}

.tekstovi article h1 {
  text-align: center;
  font-size: 3rem;
  color: #11243a;
  text-transform: uppercase;
}

.tekstovi article hr {
  background: #11243a;
  width: 150px;
  padding: 1px 0;
  margin: auto auto 20px auto;
  content: "";
  margin-bottom: 50px;
}

.tekstovi article ul {
  list-style-type: square;
  margin-left: 50px;
}

@media (max-width: 767px) {
  .tekstovi article ul {
    margin-left: 20px;
  }
}

.tekstovi article a {
  font-weight: 800;
  color: #11243a;
}

.tekstovi article a:hover {
  text-decoration: underline;
}

/************************
footer
************************/
footer {
  background: #11243a;
  color: white;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .contactInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 30px;
  padding-top: 20px;
}

@media (max-width: 767px) {
  footer .contactInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .contactInfo article {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  footer .contactInfo article {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .contactInfo article h3 {
  font-size: 1.7rem;
  color: white;
}

@media (max-width: 767px) {
  footer .contactInfo article h3 {
    font-size: 1.4rem;
  }
}

footer .contactInfo article hr {
  background: white;
  width: 50px;
  padding: 1px 0;
  margin: auto auto 20px auto;
  content: "";
}

@media (max-width: 767px) {
  footer .contactInfo article hr {
    display: none;
  }
}

footer ul {
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

footer ul li {
  margin: 0 10px;
}

@media (max-width: 767px) {
  footer ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: space-between;
        -ms-flex-align: space-between;
            align-items: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 0;
  }
}

footer ul li a {
  font-size: 2rem;
  color: white;
}

footer ul li:hover i {
  color: white;
}

footer .navigacija {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  footer .navigacija {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .navigacija .meni {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  footer .navigacija .meni {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .navigacija .meni h3 {
  font-size: 1.7rem;
  color: white;
}

@media (max-width: 767px) {
  footer .navigacija .meni h3 {
    font-size: 1.4rem;
    margin: 0;
  }
}

footer .navigacija .meni hr {
  background: white;
  width: 50px;
  padding: 1px 0;
  margin: auto auto 20px auto;
  content: "";
}

@media (max-width: 767px) {
  footer .navigacija .meni hr {
    display: none;
  }
}

footer .navigacija .meni ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  footer .navigacija .meni ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}

@media (max-width: 767px) {
  footer .navigacija .meni ul li {
    margin: 0;
  }
}

footer .navigacija .meni ul li a {
  font-size: 0.8rem;
}

@media (max-width: 767px) {
  footer .navigacija .meni ul li a {
    margin: 0;
  }
}

footer .navigacija .oblastiRada {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 767px) {
  footer .navigacija .oblastiRada {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .navigacija .oblastiRada h3 {
  font-size: 1.7rem;
  color: white;
}

@media (max-width: 767px) {
  footer .navigacija .oblastiRada h3 {
    font-size: 1.4rem;
  }
}

footer .navigacija .oblastiRada hr {
  background: white;
  width: 50px;
  padding: 1px 0;
  margin: auto auto 20px auto;
  content: "";
}

@media (max-width: 767px) {
  footer .navigacija .oblastiRada hr {
    display: none;
  }
}

footer .navigacija .oblastiRada ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 767px) {
  footer .navigacija .oblastiRada ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}

footer .navigacija .oblastiRada ul li {
  font-size: 0.8rem;
}

@media (max-width: 767px) {
  footer .navigacija .oblastiRada ul li {
    margin: 0;
  }
}

footer .navigacija .oblastiRada ul li a {
  font-size: 0.8rem;
}

@media (max-width: 767px) {
  footer .navigacija .oblastiRada ul li a {
    margin: 0;
  }
}

footer p {
  font-size: .8rem;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 767px) {
  footer p {
    margin-left: 0;
    text-align: left;
  }
}

footer p a {
  color: white;
  margin-left: 10px;
}

@media (max-width: 767px) {
  footer p a {
    margin: 0;
  }
}
/*# sourceMappingURL=style.css.map */