@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(#ffffff, #ffffff);
    color: #000000;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

/* 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;
  }
}

@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 */

.first {
  position: relative;
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 100%;
  height: 75vh;
  text-align: center;
}

.first::before {
  content: ' ';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  opacity: 0.9;
  background: url('images/abeceda.jpg') no-repeat center center fixed;
  background-size: cover;
}

.first h5 {
  width: 60%;
  color: rgb(255, 72, 0);
  float: left;
  margin-left: 300px;
  margin-top: 220px;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 1.4em;
  text-align: left;
  z-index: 2;
}

.first h2 {
  color: #f8f8f8;
  width: 50%;
  margin-top: 0px;
  margin-left: 300px;
  font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif !important;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.5em;
  text-align: left;
  z-index: 2;
}

@media only screen and (max-width: 1300px) {
  .first h5 {
    margin-left: 200px;
  }
  .first h2 {
    margin-left: 200px;
  }
}

@media only screen and (max-width: 1170px) {
  .first h5 {
    margin-left: 200px;
  }
}

@media only screen and (max-width: 1025px) {
  .first {
    height: 70vh;
  }
}

@media only screen and (max-width: 768px) {
  .first {
    display: none;
    position: relative;
    display: flex;
    flex-flow: column;
    width: 100%;
    max-width: 100%;
    height: 70vh;
    text-align: center;
  }
  .first::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    opacity: 0.9;
    background: url('images/abeceda.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  .first h5 {
    width: 80%;
    color: rgb(255, 72, 0);
    float: left;
    margin-left: 100px;
    margin-top: 180px;
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 3px;
    line-height: 1.4em;
    text-align: left;
    z-index: 2;
  }
  .first h2 {
    width: 70%;
    color: #ffffff;
    margin-left: 100px;
    margin-top: 0px;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5em;
    text-align: left;
    z-index: 2;
  }
}

@media only screen and (max-width: 600px) {
  .first h5 {
    margin-left: 80px;
  }
  .first h2 {
    margin-left: 80px;
  }
}

@media only screen and (max-width: 550px) {
  .first h5 {
    margin-left: 60px;
  }
  .first h2 {
    margin-left: 60px;
  }
}

@media only screen and (max-width: 450px) {
  .first {
    height: 55vh;
  }
  .first h5 {
    margin-top: 140px;
    margin-left: 40px;
  }
  .first h2 {
    margin-left: 40px;
    width: 90%;
  }
}

@media only screen and (max-width: 400px) {
  .first {
    height: 50vh;
  }
  .first h5 {
    margin-top: 140px;
    margin-left: 20px;
  }
  .first h2 {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 361px) {
  .first h5 {
    width: 100%;
    margin-top: 120px;
    margin-left: 30px;
  }
  .first h2 {
    margin-left: 30px;
  }
}

@media only screen and (max-width: 321px) {
  .first h5 {
    margin-top: 100px;
    margin-left: 30px;
  }
  .first h2 {
    margin-left: 30px;
  }
}

/* forma */

@media only screen and (max-width: 768px) {
  .contact100-form-title {
    margin-top: -4rem;
  }
}

.sedmi {
  position: relative;
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
  padding-left: 10%;
  margin-top: 5%;
  padding-bottom: 16%;
  margin-bottom: 0px;
  width: 100%;
  height: 70vh;
  z-index: 2;
}

.sedmi::before {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  background-blend-mode: color-burn;
  background: url('images/cura-ulazi-auto.jpg') no-repeat center center;
  background-size: cover;
}

.formular {
  color: #fff;
  margin-top: 50px;
  margin-bottom: 0px;
  width: 450px;
  max-width: auto;
  height: 160px;
  min-height: 100%;
  font-size: 14px;
  font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
  font-style: italic;
  letter-spacing: 2px;
  line-height: 2em;
  background-color: #3d3d3d;
  position: relative;
  border-top: 6px solid rgb(255, 72, 0);
  padding-top: 40px !important;
  padding-right: 30px !important;
  padding-bottom: 0px !important;
  padding-left: 30px !important;
  border-radius: 25px;
}

@media screen and (max-width: 800px) {
  .formular {
    width: auto;
    height: 80%;
  }
  .sedmi {
    height: 60vh;
    min-height: 80%;
  }
}

@media screen and (max-width: 996px) {
  .sedmi {
    height: 60vh;
    min-height: 80%;
  }
  .formular {
    width: auto;
    height: 80%;
  }
}

/* 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: 0%;
    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) {
  .osmi .row {
    margin-left: 0%;
  }
}

@media screen and (max-width: 430px) {
  .footer img {
    width: 80%;
  }
  .osmi1 .row {
    margin-left: -5rem;
  }
}
