* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(#ffffff, #ffffff);
    color: #000000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-size: 100%;
    background-size: contain;
    overflow-x: hidden;
  }
}

.font1 {
  font-weight: 500;
  color: rgb(255, 72, 0);
}

.font2 {
  font-weight: 500;
  color: #000000c7;
}

/* navbar */

header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  position: fixed;
  height: 5rem;
  min-width: 100%;
  z-index: 9999999999999999999999999999999999999999;
  background: #ffffff;
}

header .navigation .logo {
  display: flex;
  align-items: center;
  text-align: center;
  margin-left: 6rem;
}

header .navigation .logo img {
  display: inline-block;
  width: 16.25rem;
  height: 2.2rem;
}

header .navigation .menu-list {
  list-style: none;
  align-items: center;
  width: 48rem;
}

header .navigation .humbarger {
  margin-right: 3.125rem;
  display: none;
}

header .navigation .humbarger .bar {
  width: 1.875rem;
  height: 0.125rem;
  margin: 0.4375rem;
  background: #000;
}

header .navigation .menu-list li {
  display: inline-block;
  width: auto;
  margin-right: 1.125rem;
  margin-top: 1rem;
}

header .navigation .menu-list li a {
  width: auto;
  padding: 0px;
  color: rgb(76, 76, 76);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.5s ease, border 0.5 ease;
  text-decoration: none;
}

header .navigation .menu-list li a:hover {
  color: rgba(255, 72, 0);
}

/* Responsive Section */

@media only screen and (min-height: 1070px) {
  header .navigation .logo {
    margin-left: 6rem;
  }
  header .navigation .logo img {
    width: 260px;
    height: 35px;
  }
  header .navigation .menu-list {
    list-style: none;
    align-items: center;
    width: 700px;
  }
  header .navigation .humbarger {
    margin-right: 50px;
    display: none;
  }
  header .navigation .humbarger .bar {
    width: 30px;
    height: 2px;
    margin: 7px;
    background: #000;
  }
  header .navigation .menu-list li {
    display: inline-block;
    width: auto;
    margin-right: 20px;
    margin-top: 16px;
  }
  header .navigation .menu-list li a {
    width: auto;
    padding: 0px;
    color: #000;
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.5s ease, border 0.5 ease;
    text-decoration: none;
  }
  header .navigation .menu-list li a:hover {
    color: rgba(255, 72, 0);
  }
}

@media only screen and (max-width: 1130px) {
  header .navigation {
    position: sticky;
    min-height: 80px;
    width: 40%;
  }
  header .navigation .logo {
    display: block;
    margin-left: 6rem;
  }
  header .navigation .menu-list {
    position: absolute;
    top: 12vh;
    width: 100%;
    background: rgba(255, 255, 255, 0.99);
    text-align: center;
    display: none;
    margin-top: -40px;
    padding-bottom: 20px;
  }
  header .navigation .menu-list li {
    display: block;
  }
  header .navigation .menu-list li a {
    display: block;
    padding: 20px;
    transition: color 1s ease, padding 1s ease, background-color 1s ease;
  }
  header .navigation .menu-list li a:hover {
    color: #000;
    padding-left: 0px;
    padding-right: 10px;
    background-color: rgba(255, 72, 0);
  }
  header .navigation .humbarger {
    display: block;
  }
}

/* Tablet desktop :768px. */

@media only screen and (max-width: 991px) {
  header .navigation .menu-list li {
    display: block;
  }
  header .navigation .menu-list li a {
    display: block;
    padding: 20px;
    transition: color 1s ease, padding 1s ease, background-color 1s ease;
  }
  header .navigation .menu-list li a:hover {
    color: #000;
    background-color: rgba(255, 72, 0);
  }
}

/* Large Mobile :480px. */

@media only screen and (max-width: 769px) {
  header .navigation .logo {
    margin-left: 6rem;
  }
  header .navigation .menu-list {
    margin-top: -20px;
    display: none;
  }
  header .navigation .menu-list li {
    display: block;
  }
  header .navigation .menu-list li a {
    display: block;
    padding: 20px;
    transition: color 1s ease, padding 1s ease, background-color 1s ease;
  }
  header .navigation .menu-list li a:hover {
    color: #000;
    background-color: rgba(255, 72, 0);
  }
  header .navigation .humbarger {
    display: block;
  }
}

@media only screen and (max-width: 600px) {
  header .navigation .logo {
    margin-left: 4rem;
  }
}

/* small mobile :320px. */

@media only screen and (max-width: 479px) {
  header .navigation .menu-list {
    position: absolute;
  }
  header .navigation .menu-list li {
    display: block;
  }
  header .navigation .menu-list li a {
    display: block;
    font-size: 0.7rem;
    padding: 20px;
    transition: color 1s ease, padding 1s ease, background-color 1s ease;
  }
  header .navigation .menu-list li a:hover {
    color: #000;
    background-color: rgba(255, 72, 0);
  }
  header .navigation .logo {
    margin-left: 4rem;
  }
  header .navigation .logo img {
    width: 240px;
    height: 32px;
  }
  header .navigation .humbarger {
    display: block;
    margin-right: 30px;
  }
}

@media only screen and (max-width: 420px) {
  header .navigation .logo {
    margin-left: 2rem;
  }
  header .navigation .menu-list {
    margin-top: -24px;
  }
  .slider {
    margin-bottom: -15rem;
  }
  .prvi {
    margin-bottom: -15rem;
  }
}

@media only screen and (max-width: 394px) {
  header .navigation .logo {
    margin-left: 1rem;
  }
  header .navigation .logo img {
    width: 210px;
    height: 31px;
  }
}

@media only screen and (max-width: 300px) {
  header .navigation .logo {
    margin-left: 0.5rem;
  }
}

/* navbar end */

/* carousel */

.slider {
  position: relative;
  width: 100vw;
  height: 80vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100vw;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.slide.current {
  opacity: 1;
}

.slide .content {
  position: absolute;
  bottom: -300px;
  left: 0;
  width: 100%;
  opacity: 0;
  background-color: rgba(229, 235, 243, 0.8);
  color: #495b73;
  padding: 1rem;
  line-height: 1.3;
}

.slide .content h1 {
  margin-bottom: 0.625rem;
  color: #362a2b;
  font-size: 1.5rem;
}

.slide .content h1 .broj {
  color: rgba(255, 72, 0);
}

.slide .content p {
  font-size: 14px;
  margin-left: 40px;
}

.slide.current .content {
  opacity: 1;
  transform: translateY(-300px);
  transition: all 0.7s ease-in-out;
}

.slide:first-child {
  background: url("images/17.jpg") no-repeat center top/cover;
}

.slide:nth-child(2) {
  background: url("images/3auta_nazad.jpg") no-repeat center top/cover;
}

.slide:nth-child(3) {
  background: url("images/instruktor.jpeg") no-repeat center top/cover;
}

.slide:nth-child(4) {
  background: url("images/15.jpg") no-repeat center top/cover;
}

.slide:nth-child(5) {
  background: url("images/3autica.jpg") no-repeat center bottom/cover;
}

.buttons button#prev {
  position: absolute;
  top: 50%;
  left: 1rem;
}

.buttons button#next {
  position: absolute;
  top: 50%;
  right: 1rem;
}

.buttons button {
  border: 2px solid #e5ebf3;
  background-color: transparent;
  color: #e5ebf3;
  cursor: pointer;
  padding: 13px 15px;
  border-radius: 50%;
  outline: none;
}

.buttons button:hover {
  background-color: #e5ebf3;
  color: #362a2b;
}

@media (min-width: 640px) and (min-height: 640px) {
  .slide .content {
    bottom: 70px;
    left: -600px;
    width: 600px;
    padding: 2rem;
    line-height: 1.6;
  }
  .slide .content h1 {
    font-size: 2rem;
  }
  .slide .content p {
    font-size: 16px;
    margin-left: 20px;
  }
  .slide.current .content {
    transform: translateX(600px);
  }
}

/* carousel end */

.card-body {
  margin: 0 auto;
  min-height: 100%;
}

.card {
  margin-left: 16%;
  -webkit-box-shadow: 0 8px 6px -6px black;
  -moz-box-shadow: 0 8px 6px -6px black;
  box-shadow: 0 2px 120px -55px black;
}

.card-title {
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  letter-spacing: 2px !important;
  line-height: 2em !important;
  color: rgba(255, 72, 0);
  /* margin-top: -1.5rem; */
}

.card-text {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4rem;
  color: #000000c7 !important;
  line-height: 1.4em;
  letter-spacing: -0.8px;
  text-align: center;
}

.card-body .btn {
  background: rgb(255, 72, 0);
  color: #ffffff !important;
  letter-spacing: 1px;
  font-size: 0.7rem;
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  padding-top: 3.2%;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 992px) {
  .slider {
    margin-bottom: -12rem;
  }
  .prvi {
    margin-bottom: -13rem;
  }
  .card {
    margin-left: 0%;
    margin-left: auto;
    margin-right: auto;
  }
  .card-body .btn {
    padding-top: 4.2%;
  }
}

@media screen and (max-width: 578px) {
  .row {
    min-height: 100vh;
  }

  .card {
    margin-left: 3%;
  }
  .container .row {
    min-height: 50vh;
  }
}

/* ******* naš pristup ********* */

.section1 .row .span6 {
  padding: 3%;
}

.section1 .row img {
  min-height: 70%;
  -webkit-box-shadow: -46px 24px 0px 1px rgba(242, 242, 242, 1);
  -moz-box-shadow: -46px 24px 0px 1px rgba(242, 242, 242, 1);
  box-shadow: -46px 24px 0px 1px rgba(242, 242, 242, 1);
}

.section1 h5 {
  color: rgb(255, 72, 0);
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0px !important;
  line-height: 2em !important;
  text-align: left;
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap");
.section1 h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 2rem;
  color: #000000c7 !important;
  line-height: 1.2em;
  letter-spacing: -0.8px;
  margin-top: 3%;
}

.line1 {
  width: 13%;
  color: rgb(255, 72, 0);
  border-top: 1px solid rgb(255, 72, 0);
  overflow: hidden;
  opacity: 1;
}

.section1 p {
  line-height: 2em;
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2em;
  z-index: 2;
}

@media screen and (max-width: 578px) {
  .section1 .row .text {
    padding-left: 25%;
    padding-right: 25%;
  }
}

/* ******** 3 divs ******** */

.treci {
  position: relative;
  background-color: rgba(255, 255, 255, 0.64);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10%;
}

.treci::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40vh;
  min-height: 100%;
  z-index: 0;
  opacity: 0.5;
  background-blend-mode: color-burn;
  background: url("images/cesta.png") no-repeat center center;
  background-blend-mode: screen;
  background-size: cover;
}

.treci .row {
  align-items: center;
  text-align: center;
}

.treci .row .col {
  box-shadow: 0px 35px 35px 15px rgb(0 0 0 / 15%);
  padding-bottom: 1.4rem;
  padding-top: 2.2rem;
  font-size: 1.1rem;
  width: 21rem;
  height: 23rem;
}

.treci .col h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif !important;
  font-weight: 700 !important;
  font-size: 1.7rem !important;
  line-height: 1.4em !important;
}

.treci .col p {
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #fff;
  letter-spacing: 1px;
  line-height: 2em;
}

.treci .col .btn {
  padding-top: 0.75rem !important;
  padding-right: 1.25rem !important;
  padding-bottom: 0.625rem !important;
  padding-left: 1.25rem !important;
  color: rgba(255, 72, 0) !important;
  border-width: 0px !important;
  border-radius: 2px;
  letter-spacing: 0px;
  font-size: 0.8rem;
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  background-color: #ffffff;
}

.treci .col .btn:hover {
  border: none;
  color: #000;
  cursor: pointer;
  transition: color 0.5s ease;
}

#zaposlenici {
  background-color: rgba(255, 72, 0, 0.7);
  color: #fff;
  padding-top: 3rem;
}

#vozila {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding-top: 3.2rem;
  height: 26rem;
}

#kategorije {
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
  padding-top: 4rem;
}

#kategorije p {
  color: #000000c7;
}

@media screen and (max-width: 992px) {
  .row {
    height: 100%;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .treci {
    width: 100%;
    align-items: center;
  }
  #vozila {
    width: 100%;
    height: 100%;
    padding-top: 1rem;
  }
  #kategorije {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
  }
  #zaposlenici {
    width: 100%;
    height: 100%;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .treci {
    width: 100%;
    padding-left: 15%;
    padding-right: 15%;
  }
  .treci::before {
    width: 100%;
    padding-left: 15%;
    padding-right: 15%;
  }
  .row {
    width: 100%;
    height: 100%;
    align-items: center;
    padding-left: 15%;
    padding-right: 15%;
  }
  #vozila {
    padding-left: 15%;
    padding-right: 15%;
    width: 80%;
    height: 100%;
    padding-top: 1rem;
  }
  #kategorije {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
  }
  #zaposlenici {
    width: 100%;
    height: 100%;
    padding-top: 1rem;
  }
}

/* ******** najbolji u gradu ******** */

.section2 h5 {
  color: rgb(255, 72, 0);
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0px !important;
  line-height: 2em !important;
  text-align: left;
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap");
.section2 h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 2rem;
  color: #000000c7 !important;
  line-height: 1.2em;
  letter-spacing: -0.8px;
  margin-top: 3%;
}

.section2 p {
  line-height: 2em;
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2em;
  z-index: 2;
}

.section2 img {
  -webkit-box-shadow: 41px -22px 0px 1px rgba(245, 240, 245, 1);
  -moz-box-shadow: 41px -22px 0px 1px rgba(245, 240, 245, 1);
  box-shadow: 41px -22px 0px 1px rgba(245, 240, 245, 1);
}

@media screen and (max-width: 578px) {
  .section2 .row .span6 {
    margin-left: 20%;
    margin-right: 20%;
  }
}

@media screen and (max-width: 768px) {
  .section2 .row {
    padding: 0%;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }
  .section2 .row .text {
    padding-bottom: -5%;
  }
}

@media screen and (max-width: 960px) {
  .section2 .how-img img {
    height: 100%;
    margin-top: -20%;
  }
}

@media screen and (max-width: 1140px) {
  .section2 .how-img img {
    height: auto;
    margin-top: 80%;
  }
}

@media screen and (max-width: 1920px) {
  .section2 .how-img img {
    margin-top: 45%;
  }
}

/* ................ */

.drugi1 {
  position: relative;
  color: #000;
  opacity: 1;
}

.drugi1::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  z-index: 0;
  background-color: #000;
  opacity: 1;
  background-blend-mode: color-burn;
  background: url("images/mustang2.jpg") no-repeat center center;
  background-size: cover;
}

.top {
  position: relative;
  margin: 3rem 0;
  padding-left: 13%;
  width: 100%;
  min-width: 100%;
  padding-top: 0rem;
}

.top h5 {
  color: rgb(255, 72, 0);
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0px !important;
  line-height: 2em !important;
  text-align: left;
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap");
.top h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 2rem;
  color: #fff !important;
  line-height: 1.2em;
  letter-spacing: -0.8px;
  text-align: left;
}

.top .line {
  width: 2.5rem;
  color: rgb(255, 72, 0);
  border-top: 1px solid rgb(255, 72, 0);
  text-align: left;
  opacity: 1;
}

.map1 img {
  width: 100%;
  max-width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  margin-top: -1.875rem;
}

.map2 img {
  width: 100%;
  max-width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  margin-top: -1.875rem;
}

.imena {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  text-align: center;
  background: transparent;
}

.imena h4 {
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  color: #ffffff !important;
  letter-spacing: 0.4px;
  margin-top: 0.875rem;
}

.imena p {
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
  letter-spacing: 1px;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500 !important;
  line-height: 2em;
  margin-top: -0.625rem;
}

.imena .broj {
  color: rgb(255, 72, 0);
}

.map2 .map {
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .top {
    padding-left: 0%;
  }
}
@media screen and (max-width: 480px) {
  .map iframe {
    margin-left: -10%;
  }
}
@media screen and (max-width: 420px) {
  .map iframe {
    margin-left: -8%;
  }
}
@media screen and (max-width: 410px) {
  .map iframe {
    margin-left: -10%;
  }
}
@media screen and (max-width: 400px) {
  .map iframe {
    margin-left: -15%;
  }
}
@media screen and (max-width: 390px) {
  .map iframe {
    margin-left: -17%;
  }
}

/* informacije */

.sesti {
  position: relative;
}

.sesti::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  min-width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  background: url("images/rucna.jpg") no-repeat center center;
  background-size: cover;
}

.card-body1 {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  width: 100%;
  margin: auto;
  -webkit-box-shadow: 0 8px 6px -6px rgb(0, 0, 0);
  -moz-box-shadow: 0 8px 6px -6px black;
  box-shadow: 0 2px 120px -55px rgb(0, 0, 0);
  background: #000000;
  opacity: 0.85;
}

.card-title1 {
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 1rem !important;
  letter-spacing: 2px !important;
  line-height: 2em !important;
  color: rgba(255, 72, 0);
  opacity: 1;
  padding-top: 0.875rem;
  margin-top: 1.25rem;
  z-index: 2;
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500&display=swap");
.card-text1 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.875rem;
  color: #fff !important;
  line-height: 1.4em;
  letter-spacing: -0.8px;
  text-align: center;
  padding: 2px 0px;
  margin-bottom: 12px;
  z-index: 2;
  opacity: 1;
}

.card-body1 hr {
  justify-content: center;
  width: 13%;
  color: rgb(255, 72, 0);
  border-top: 1px solid rgb(255, 72, 0);
  margin-left: 17.25rem;
  margin-top: 0px;
  margin-bottom: 0px;
  overflow: hidden;
  opacity: 2;
}

@import url("fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
.card-text2 {
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 2em;
  max-width: 80%;
  padding: 1.25rem;
  z-index: 2;
}

.card-text2 a {
  color: rgb(255, 72, 0);
  font-size: 0.95rem;
  font-weight: bold;
}

.card-body1 .btn {
  background: rgb(255, 72, 0);
  opacity: 1;
  align-items: center;
  width: 8.4375rem;
  height: 3rem;
  border: none;
  color: #ffffff !important;
  letter-spacing: 0.06em;
  line-height: 1.3em;
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  padding-top: 1rem;
  margin-bottom: 2.25rem;
}

/* footer*/

.osmi {
  position: relative;
  text-align: center;
  flex-direction: column;
}

.osmi::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  opacity: 0.2;
  background-blend-mode: color-burn;
  background: url("images/footer-img.jpg") no-repeat center center;
  background-blend-mode: screen;
  background-size: cover;
}

.osmi .row .lokacije {
  line-height: 1.5;
  font-size: 0.9rem;
  font-weight: 500;
  padding-left: 8rem;
}

.osmi .row .lokacije div:first-child {
  font-weight: bold;
  font-size: 1rem;
  margin-left: 0px;
  padding-bottom: 0.625rem;
}

.osmi .row .lokacije a {
  font-size: 0.8rem;
  color: rgb(255, 72, 0);
  font-weight: bold;
}

.osmi .row .info .naslov {
  font-weight: bold;
  font-size: 1rem;
  padding-bottom: 0.625rem;
  padding-left: 10rem;
}

.osmi .row .info .ostaleInfo {
  line-height: 1.5;
  font-size: 1rem;
  color: #000;
  list-style: none;
  padding-left: 10rem;
}

.osmi .ostaleInfo a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  list-style: none;
}

.osmi .ostaleInfo a:hover {
  color: rgb(255, 72, 0);
  cursor: pointer;
  transition: color 0.3s;
}

.osmi .row .ostaleInfo {
  font-size: 1rem;
  color: #000;
  list-style: none;
  margin-left: 0.01rem;
}

.osmi .row .socNet {
  padding-left: 10rem;
}

.osmi .row .socNet p {
  font-weight: bold;
  color: #000;
  font-size: 0.935rem;
}

.footer p {
  font-size: 0.625rem;
  font-weight: 600;
  color: #000000 !important;
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
  font-size: 0.7rem;
  line-height: 1.8em;
}

.footer p a {
  font-size: 0.625rem;
  font-weight: 600;
  color: #000000 !important;
  font-family: "Poppins", Helvetica, Arial, Lucida, sans-serif;
  font-size: 0.7rem;
  line-height: 1.8em;
}

@media screen and (max-width: 1500px) {
  .osmi .row .lokacije {
    padding-left: 8rem;
  }
  .osmi .row .info .naslov {
    padding-left: 8rem;
  }
  .osmi .row .info .ostaleInfo {
    padding-left: 8rem;
  }
  .osmi .row .socNet {
    padding-left: 8rem;
  }
}

@media screen and (max-width: 1200px) {
  .osmi .row .lokacije {
    padding-left: 6rem;
  }
  .osmi .row .info .naslov {
    padding-left: 6rem;
  }
  .osmi .row .info .ostaleInfo {
    padding-left: 6rem;
  }
  .osmi .row .socNet {
    padding-left: 6rem;
  }
}

@media screen and (max-width: 992px) {
  .osmi .row {
    margin-left: -20%;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .osmi .row .lokacije {
    padding-left: 1rem;
  }
  .osmi .row .info .naslov {
    padding-left: 0rem;
  }
  .osmi .row .info .ostaleInfo {
    padding-left: 0rem;
  }
  .osmi .row .socNet {
    padding-left: 1rem;
  }
  .osmi .row .socNet p {
    padding-left: 0rem;
  }
}

@media screen and (max-width: 576px) {
  .sesti .row {
    width: 125%;
  }
  .card-body1 {
    margin-left: -10%;
  }
  .osmi .row {
    margin-left: 0%;
  }
}

@media screen and (max-width: 430px) {
  .footer img {
    width: 80%;
  }
  .osmi1 .row {
    margin-left: -5rem;
  }
}
