/* CSS Reset */
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Quicksand:wght@300..700&display=swap');
@import url('https://p.typekit.net/p.css?s=1&k=keb3vnl&ht=tk&f=9785.9787.9791.9793&a=222064285&app=typekit&e=css');

:root {
  --black: #000000;
  --white: #ffffff;
  --orange: #f59204;
  --blue: #007eff;
  --yellow: #fff200;
  --orange2: #ed5709;
  --gray: #fefefe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--orange);
  color: var(--white);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
pre {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: 'Effra', sans-serif;
}

section {
  width: 100%;
}

/*----------------*/
/*-- ANIMATIONS --*/
/*----------------*/

@keyframes wiggleX {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(15deg);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes wiggleY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes clickAnim {
  0% {
    transform: scale(1) rotate(0deg);
  }
  10% {
    transform: scale(0.95) rotate(-3deg);
  }
  20% {
    transform: scale(1.2) rotate(0deg);
  }
  100% {
    transform: scale(1.2) rotate(0deg);
  }
}

/*------------*/
/*-- HEADER --*/
/*------------*/
.header {
  width: 100%;
  background: url(img/header.png) no-repeat center;
  background-size: cover;
  aspect-ratio: 1920 / 1080;
}
@media screen and (max-width: 681px) {
  .header {
    width: 100%;
    background: url(img/header-mob.png) no-repeat center;
    background-size: cover;
    aspect-ratio: 393 / 682;
  }
}
.nav {
  max-width: 144rem;
  padding: 4.7rem 2rem 0 2rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1201px) {
  .nav {
    padding: 2.7rem 2rem 0 2rem;
  }
}
@media screen and (max-width: 801px) {
  .nav {
    padding: 1.7rem 2rem 0 2rem;
  }
}
@media screen and (max-width: 681px) {
  .nav {
    align-items: flex-start;
    padding: 3.4rem 3.2rem 0 3.2rem;
  }
}
.logo {
  width: 20.3rem;
  aspect-ratio: 203 / 83;
}
@media screen and (max-width: 1201px) {
  .logo {
    width: 17rem;
  }
}
@media screen and (max-width: 681px) {
  .logo {
    width: 15.5rem;
  }
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.3rem;
}
@media screen and (max-width: 681px) {
  .menu {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: unset;
    margin-top: 1.1rem;
  }
}
.nav-item {
  font-family: 'Effra', sans-serif;
  font-weight: 400;
  font-size: 3.2rem;
}
@media screen and (max-width: 1201px) {
  .nav-item {
    font-size: 2.4rem;
  }
}
.nav-item-orange {
  color: var(--yellow);
}

/*------------*/
/*-- SECTION --*/
/*------------*/
.section {
  max-width: 144rem;
  padding: 0 2rem 19.2rem 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 681px) {
  .section {
    padding: 0 3rem 14.7rem 3rem;
  }
}
.p-orange {
  color: var(--white);
  font-family: 'Effra', sans-serif;
  text-align: center;
  font-size: 4rem;
  font-weight: 500;
}
@media screen and (max-width: 681px) {
  .p-orange {
    font-size: 3.2rem;
  }
}
.p-orange-1 {
  max-width: 106.4rem;
  margin: 5rem 0 3rem 0;
}
@media screen and (max-width: 1201px) {
  .p-orange-1 {
    margin: 3rem 0 3rem 0;
  }
}
@media screen and (max-width: 481px) {
  .p-orange-1 {
    max-width: 40rem;
  }
}
.p-white {
  text-align: center;
  font-size: 2.8rem;
  font-family: 'Effra', sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 681px) {
  .p-white {
    font-size: 2.4rem;
  }
}
.p-white-1 {
  max-width: 106.4rem;
}
@media screen and (max-width: 681px) {
  .p-white-1 {
    max-width: 30.9rem;
  }
}
.p-white-2 {
  max-width: 92.9rem;
  margin-top: 1rem;
}
@media screen and (max-width: 681px) {
  .p-white-2 {
    max-width: 30.9rem;
    margin-top: 2.3rem;
  }
}
.h2 {
  color: var(--white);
  text-align: center;
  font-size: 9.6rem;
  font-weight: 900;
}
@media screen and (max-width: 681px) {
  .h2 {
    font-size: 6.4rem;
  }
}
.h2-rotated {
  position: relative;
  transform: rotate(0.165deg);
  margin: 4rem 0 2rem 0;
}
@media screen and (max-width: 681px) {
  .h2-rotated {
    margin: 25.5rem 0 1.2rem 0;
    max-width: 34rem;
  }
}
.h3 {
  text-align: center;
  font-size: 6.4rem;
  font-style: normal;
  font-weight: 900;
}
@media screen and (max-width: 681px) {
  .h3 {
    font-size: 4.8rem;
  }
}
.h3-rotated {
  max-width: 80rem;
  text-shadow: 0px 4px 10.6px rgba(151, 88, 0, 0.6);
  transform: rotate(-0.068deg);
  margin: 2rem 0;
}
@media screen and (max-width: 681px) {
  .h3-rotated {
    max-width: 33.1rem;
    margin: 2rem 0;
  }
}
.h3-orange {
  position: relative;
  max-width: 92.5rem;
  transform: rotate(0.273deg);
  color: var(--white);
  margin-top: 2rem;
}
@media screen and (max-width: 681px) {
  .h3-orange {
    max-width: 31.5rem;
    margin-top: 1rem;
  }
}
.h3-orange::after {
  content: '';
  position: absolute;
  width: 100%;
  max-width: 39.4rem;
  aspect-ratio: 394 / 68;
  background: url(img/linije.svg) no-repeat center;
  background-size: contain;
  bottom: -58%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 681px) {
  .h3-orange::after {
    max-width: 27.2rem;
    bottom: -31%;
  }
}
.casa-1 {
  display: none;
}
.casa-2 {
  position: absolute;
  max-width: 25.5rem;
  aspect-ratio: 255 / 332;
  top: 16%;
  left: -19%;
  animation: wiggleX 4s ease-in-out infinite;
}
@media screen and (max-width: 1201px) {
  .casa-2 {
    max-width: 18.5rem;
    top: 16%;
    left: -3%;
  }
}
@media screen and (max-width: 681px) {
  .casa-1 {
    position: absolute;
    display: block;
    max-width: 15.2rem;
    aspect-ratio: 255 / 332;
    top: -156%;
    left: 23%;
    transform: translateX(-50%);
    animation: wiggleX 4s ease-in-out infinite;
  }
  .casa-2 {
    display: none;
  }
}
.sunce {
  position: absolute;
  max-width: 34.4rem;
  aspect-ratio: 344 / 330;
  bottom: -302%;
  right: -20%;
  animation: rotation 5s linear infinite;
}
@media screen and (max-width: 1201px) {
  .sunce {
    max-width: 20.4rem;
    bottom: -173%;
    right: -3%;
  }
}
@media screen and (max-width: 681px) {
  .sunce {
    max-width: 23.6rem;
    bottom: -206%;
    right: 13%;
    transform: translateX(-50%);
  }
}
.h2-left {
  position: relative;
  color: var(--white);
  margin-top: 23.3rem;
  align-self: flex-start;
  text-align: left;
  text-shadow: 0px 4px 10.6px rgba(151, 88, 0, 0.6);
}
@media screen and (max-width: 681px) {
  .h2-left {
    margin-top: 32.3rem;
    text-shadow: 0px 4px 10.6px rgba(151, 88, 0, 0.6);
    margin: 33rem 2rem 0 2rem;
  }
}
.h2-left-orange {
  text-align: left;
  color: var(--white);
  max-width: 73.4rem;
  align-self: flex-start;
}
@media screen and (max-width: 681px) {
  .h2-left-orange {
    margin: 2.5rem 0 0 2rem;
  }
}
.p-left {
  align-self: flex-start;
  max-width: 73.3rem;
  margin-top: 3.1rem;
  font-size: 2.8rem;
}
@media screen and (max-width: 681px) {
  .p-left {
    margin: 2.2rem 2rem 0 2rem;
    font-size: 2.4rem;
  }
}
.gradovi {
  position: relative;
  width: 100%;
  max-width: 119rem;
  /*aspect-ratio: 1191 / 1292;*/
  aspect-ratio: 1191 / 1168;
  background: url(img/gradovi.png) no-repeat center;
  background-size: contain;
  margin: -13rem auto 0 auto;
}
@media screen and (max-width: 1201px) {
  .gradovi {
    margin-top: 0;
  }
}
@media screen and (max-width: 881px) {
  .gradovi {
    display: none;
  }
}
.article-link {
  position: absolute;
  width: 35vw;
  max-width: 27.8rem;
  aspect-ratio: 308 / 96;
  /*top: 58.5%;*/
  top: 65%;
  right: 15.5%;
}
.article-link-2 {
  position: absolute;
  width: 35vw;
  max-width: 27.8rem;
  aspect-ratio: 308 / 96;
  bottom: 0.5%;
  left: 2%;
}
.gradovi-mob {
  display: none;
}
@media screen and (max-width: 881px) {
  .gradovi-mob {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 3.7rem;
  }
}
.gradovi-mob-1 {
  max-width: 34.4rem;
  aspect-ratio: 344 / 785;
  margin-inline-end: 0.3rem;
}
.gradovi-mob-2 {
  max-width: 35.4rem;
  aspect-ratio: 354 / 932;
  margin-left: 2.3rem;
}
.gradovi-mob-3 {
  max-width: 35.3rem;
  aspect-ratio: 395 / 700;
  margin-left: -2rem;
}
.gradovi-p {
  max-width: 30.3rem;
  font-size: 2.4rem;
  font-weight: 400;
}
.gradovi-mob-1-p {
  margin: 3.2rem 0 0 1.9rem;
}
.blue-link {
  font-family: 'Effra', sans-serif;
  color: var(--black);
  position: relative;
  max-width: 25rem;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2; /* 120% */
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 2rem 0;
  padding: 1rem 2rem 1rem 2rem;
  border-radius: 20px;
  background: var(--white);
  align-self: flex-start;
  margin-left: 1rem;
}
@media screen and (max-width: 881px) {
  .blue-link::after {
    position: absolute;
    content: '';
    bottom: 17%;
    left: 37%;
    background: url(img/arrow.svg) no-repeat center;
    background-size: contain;
    width: 1.2rem;
    aspect-ratio: 12 / 25;
  }
}
.h2-double {
  color: var(--white);
  text-align: center;
  font-size: 9.6rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 681px) {
  .h2-double {
    font-size: 6.4rem;
    margin-top: 5.3rem;
  }
}
.p-orange-bottom {
  max-width: 83.3rem;
  font-family: 'Effra', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  margin-top: 3rem;
}
@media screen and (max-width: 681px) {
  .p-orange-bottom {
    max-width: 33rem;
    font-size: 3.2rem;
    margin-top: 3.8rem;
  }
}
.p-bottom {
  max-width: 83.3rem;
  font-size: 2.8rem;
  font-family: 'Effra', sans-serif;
  font-weight: 400;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 681px) {
  .p-bottom {
    max-width: 33rem;
    font-size: 2.4rem;
  }
}
.h2-bottom {
  position: relative;
  max-width: 83.2rem;
  transform: rotate(-0.043deg);
  margin: 4rem 0;
}
@media screen and (max-width: 681px) {
  .h2-bottom {
    margin: 5rem 0 5.6rem 0;
  }
}
.link {
  position: relative;
  font-family: 'Effra', sans-serif;
  color: var(--black);
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  padding: 2.8rem 3.2rem;
  background: var(--white);
  border-radius: 40px;
}
.link::after {
  content: '';
  position: absolute;
  width: 6.2rem;
  aspect-ratio: 62 / 69;
  bottom: -48%;
  right: -4%;
  background: url(img/pokazivac.svg) no-repeat center;
  background-size: contain;
  animation: clickAnim 1s ease-in-out infinite;
}

/*------------*/
/*-- FOOTER --*/
/*------------*/
.footer {
  width: 100%;
  background: var(--orange2);
}
.footer-wrap {
  max-width: 148rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 7.5rem 2rem 8.8rem 2rem;
}
@media screen and (max-width: 981px) {
  .footer-wrap {
    padding: 5rem 5rem 7rem 5rem;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
  }
}
@media screen and (max-width: 481px) {
  .footer-wrap {
    align-items: flex-start;
    gap: unset;
  }
}
.footer-p {
  font-family: 'Effra', sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}
.logos {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5.2rem;
}
@media screen and (max-width: 681px) {
  .logos {
    flex-direction: column;
    gap: 3.9rem;
    margin-top: 3.9rem;
    align-self: center;
  }
}
.footer-logo {
  max-width: 20.3rem;
  aspect-ratio: 203 / 83.5;
}
.vl-logo {
  max-width: 18.4rem;
  aspect-ratio: 184 / 83;
}
@media screen and (max-width: 881px) {
  .p {
    font-size: 2.8rem;
  }
  .h2 {
    font-size: 6.4rem;
  }
  .h3 {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 481px) {
  .p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 681px) {
  .h2-left-orange {
    font-size: 4.8rem;
  }
}
