/* CSS Reset */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --dark: #08243c;
  --black: #000000;
  --white: #ffffff;
}

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

html {
  font-size: 62.5%;
}

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

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

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

ul,
ol {
  list-style: none;
}

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

a:hover {
  cursor: pointer;
}

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 {
  line-height: 1;
}

@media screen and (max-width: 960px) {
  h1,
  h2,
  h3 {
    line-height: 1.3;
  }
}
section {
  width: 100%;
}

/* -------------- */
/* --- HEADER --- */
/* -------------- */
.header {
  width: 100%;
  margin-top: 8rem;
  background: url(img/header-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 780px) {
  .header {
    width: 100%;
    margin-top: 8rem;
    background: url(img/header-background-mob.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }
}
.nav {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: var(--white);
  padding: 1.8rem 0 2.3rem 0;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 119.6rem;
  padding: 0 2rem;
  margin: 0 auto;
  position: relative;
  z-index: 1000;
}
.header-logo {
  max-width: 10.5rem;
  aspect-ratio: 105 / 39;
}
@media screen and (max-width: 780px) {
  .header-logo {
    max-width: 7.6rem;
  }
}
.nav-ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8.3rem;
}
@media screen and (max-width: 1024px) {
  .nav-ul {
    gap: 3rem;
  }
}
@media screen and (max-width: 780px) {
  .nav-ul {
    display: none;
  }
}
.nav-ul-mob {
  display: none;
}
@media screen and (max-width: 780px) {
  .nav-ul-mob {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translate(-50%, -150%);
    width: 100%;
    max-width: 80%;
    background: rgba(255, 255, 255, 0.97);
    padding: 2.9rem 0 2.4rem 0;
    transition: all 0.3s ease-in-out;
    z-index: 100;
  }
}
.nav-li {
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 1.2rem;
}
.barholder {
  display: none;
}
@media screen and (max-width: 780px) {
  .barholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }
}
.bar {
  width: 33px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease-in-out;
}
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(0px, 6px);
  transform: rotate(-45deg) translate(-5px, 16px);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(0px, -8px);
  transform: rotate(45deg) translate(1px, -10px);
}
.toggle {
  transform: translate(-50%, 0);
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 119.6rem;
  padding: 12rem 2rem 0 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 780px) {
  .hero {
    padding: 6rem 2rem 0 2rem;
  }
}
.hero-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 780px) {
  .hero-top {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.hero-logo {
  max-width: 49.2rem;
  aspect-ratio: 492 / 353;
}
@media screen and (max-width: 1280px) {
  .hero-logo {
    max-width: 48%;
  }
}
@media screen and (max-width: 780px) {
  .hero-logo {
    max-width: 27.5rem;
    aspect-ratio: 492 / 353;
    margin-top: 0;
  }
}
.hero-images {
  max-width: 59.6rem;
  aspect-ratio: 596 / 632;
  margin-right: -5rem;
}
@media screen and (max-width: 1200px) {
  .hero-images {
    max-width: 50%;
    margin-right: unset;
  }
}
.hero-images-mob {
  display: none;
}
@media screen and (max-width: 780px) {
  .hero-images-mob {
    display: block;
    max-width: 33.9rem;
    aspect-ratio: 596 / 632;
    margin-right: 0;
  }
  .hero-images {
    display: none;
  }
}
.hero-bottom {
  position: relative;
  max-width: 52.9rem;
  margin: -12rem 0 0 7.7rem;
  font-size: 1.1rem;
  font-weight: 500;
  padding-bottom: 30rem;
}
@media screen and (max-width: 1200px) {
  .hero-bottom {
    margin: 2rem 0 0 7.7rem;
  }
}
@media screen and (max-width: 780px) {
  .hero-bottom {
    max-width: 24.5rem;
    margin: 4.5rem auto 0 auto;
    padding-bottom: 0;
    text-align: center;
  }
}
.hero-bottom::before {
  position: absolute;
  content: '';
  left: -7rem;
  top: -5.8rem;
  background: url(img/icons/tekst-okvir-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 7.2rem;
  aspect-ratio: 72 / 286;
}
.hero-bottom::after {
  position: absolute;
  content: '';
  right: -7rem;
  top: -7rem;
  background: url(img/icons/tekst-okvir-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 8.6rem;
  aspect-ratio: 86 / 287;
}
@media screen and (max-width: 780px) {
  .hero-bottom::before {
    display: none;
  }
  .hero-bottom::after {
    display: none;
  }
}
.patrola-natpis-mob {
  display: none;
}
@media screen and (max-width: 780px) {
  .patrola-natpis-mob {
    display: block;
    max-width: 34.4rem;
    aspect-ratio: 419 / 99;
    margin: 8rem auto 21rem auto;
  }
}
/* ----------------- */
/* --- SECTION-2 --- */
/* ----------------- */
.section-2 {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 1362;
  background: url(img/planine.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin-top: -31rem;
  padding-top: 52.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 1300px) {
  .section-2 {
    margin-top: -23rem;
    padding-top: 40rem;
  }
}
@media screen and (max-width: 780px) {
  .section-2 {
    background: url(img/planine-mob.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    margin-top: -23rem;
    padding-top: 10rem;
  }
}
@media screen and (max-width: 520px) {
  .section-2 {
    background-size: contain;
  }
}
.patrola-natpis {
  position: absolute;
  top: 14%;
  right: 27%;
  max-width: 41.9rem;
  aspect-ratio: 419 / 99;
}
@media screen and (max-width: 780px) {
  .patrola-natpis {
    display: none;
  }
}
.section-2-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 0 0 2rem;
}
@media screen and (max-width: 1300px) {
  .section-2-wrap {
    flex-direction: column;
    align-items: center;
    gap: 10rem;
    padding: 0;
  }
}
.content-wrap {
  position: relative;
  width: 100%;
  max-width: 49rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  padding: 14rem 11rem 0 0;
}
@media screen and (max-width: 1300px) {
  .content-wrap {
    max-width: 30.7rem;
    gap: 2rem;
    padding: 0;
    text-align: center;
  }
}
.content-wrap::after {
  position: absolute;
  content: '';
  right: -6px;
  top: -13px;
  width: 65rem;
  aspect-ratio: 807 / 583;
  background: url(img/slider/okvir-veliki.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  pointer-events: none;
}
@media screen and (max-width: 1300px) {
  .content-wrap::after {
    display: none;
  }
}
.content-wrap-h2 {
  text-shadow: 0px 7px 14.1px #003964;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.content-wrap-p {
  font-size: 1.1rem;
  font-weight: 500;
}
/* ----------------- */
/* ---- SWIPER ----- */
/* ----------------- */
.swipers-desk {
  width: 100%;
  max-width: 100rem;
}
@media screen and (max-width: 1300px) {
  .swipers-desk {
    max-width: unset;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 780px) {
  .swipers-desk {
    display: none;
  }
}
.mySwiper {
  margin-bottom: 40px;
}
.mySwiper .swiper-slide {
  position: relative;
  width: 200px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  margin: 0 3.3rem;
}
.grad-wrap {
  border-radius: 50%;
  width: 165px !important;
  aspect-ratio: 1 / 1;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
.mySwiper .swiper-slide::after {
  position: absolute;
  content: '';
  background: url(img/krug.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  aspect-ratio: 1 / 1;
}
.mySwiper .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.mySwiper .swiper-wrapper {
  scrollbar-width: none;
}
/* -- modal -- */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background-color: white;
  color: #000000;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-naslov {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.modal-opis {
  font-size: 1.1rem;
  font-weight: 500;
}
.swipers-mob {
  display: none;
}
@media screen and (max-width: 780px) {
  .swipers-mob {
    display: block;
    margin: 4rem 0 8rem 0;
  }
  .swipers-mob .mySwiper {
    margin-bottom: 15px;
  }
  .swipers-mob .mySwiper .swiper-slide {
    width: 13.6rem !important;
    margin: 0 1.2rem;
  }
  .swipers-mob .grad-wrap {
    width: 11.8rem !important;
    font-size: 1.4rem;
  }
  .mySwiper .swiper-slide::after {
    position: absolute;
    content: '';
    background: url(img/krug.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 13.6rem;
    aspect-ratio: 1 / 1;
  }
}
/* ----------------- */
/* --- SECTION-3 --- */
/* ----------------- */
.section-3 {
  width: 100%;
  background: url(img/header-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin-top: -42rem;
}
@media screen and (max-width: 1600px) {
  .section-3 {
    margin-top: 0;
  }
}
.swiper {
  position: relative;
}
.swiper3 .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80.5rem;
  aspect-ratio: 805 / 583;
  margin-bottom: 3.5rem;
  opacity: 0.25;
  scale: 0.6;
}
@media screen and (max-width: 780px) {
  .swiper3 .swiper-slide {
    width: 100%;
    max-width: 32rem;
    margin-bottom: 2.5rem;
  }
}
.swiper3 .swiper-slide-active {
  opacity: 1;
  scale: 1;
}
.swiper3 .swiper-slide img {
  width: 78.75rem;
  aspect-ratio: 787.5 / 525;
}
@media screen and (max-width: 780px) {
  .swiper3 .swiper-slide img {
    width: 100%;
    max-width: 31rem;
  }
}
.swiper3::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 80rem;
  aspect-ratio: 807 / 583;
  background: url(img/slider/okvir-veliki.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 1000;
  pointer-events: none;
}
@media screen and (max-width: 780px) {
  .swiper3::after {
    width: 100%;
    max-width: 32rem;
  }
}
.swiper3::before {
  position: absolute;
  content: 'otkrijte Gradove s najviše nagrada';
  font-size: 2.4rem;
  text-transform: uppercase;
  left: 50%;
  top: 6%;
  transform: translateX(-46%);
  width: 80rem;
  aspect-ratio: 807 / 583;
  z-index: 1000;
  pointer-events: none;
}
@media screen and (max-width: 780px) {
  .swiper3::before {
    display: none;
  }
}
.swiper3 .swiper-slide .slide-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
.swiper3 .slider-img {
  margin-top: 1.86rem;
  max-width: 21.6rem;
  height: 100%;
}
.swiper3 .swiper-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    #157efb;
  margin-top: -0.15rem;
}
@media screen and (min-width: 760px) {
  .swiper3 .swiper-container {
    width: 26.865rem;
    margin-top: -0.15rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 760px) and (max-width: 1800px) {
  .swiper3 .swiper-container {
    width: 18rem;
    margin-top: -0.15rem;
    margin: 0 auto;
  }
}
.arrowgrid {
  width: 100%;
  max-width: 86rem;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
}
@media screen and (max-width: 780px) {
  .arrowgrid {
    max-width: 35rem;
  }
}
.swiper3 .swiper-button-prev {
  background: url(img/slider/left-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px !important;
  height: 35px !important;
  left: 0;
}
.swiper3 .swiper-button-next {
  background: url(img/slider/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px !important;
  height: 35px !important;
  right: 0;
}
@media screen and (max-width: 780px) {
  .swiper3 .swiper-button-prev {
    width: 8px !important;
    height: 14px !important;
  }
  .swiper3 .swiper-button-next {
    width: 8px !important;
    height: 14px !important;
  }
}
.swiper3 .swiper-button-next::after {
  display: none;
}
.swiper3 .swiper-button-prev::after {
  display: none;
}
.swiper3 .swiper-pagination-bullets {
  bottom: 0.5rem !important;
}
.swiper3 .swiper-pagination-bullet {
  width: 1.4rem;
  height: 1.4rem;
  border: 2.5px solid var(--white);
  opacity: 1;
  background: transparent;
}
@media screen and (max-width: 780px) {
  .swiper3 .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    border: 1px solid var(--white);
  }
}
.swiper3 .swiper-pagination-bullet-active {
  background: var(--white);
}
.clanci {
  position: relative;
  width: 100%;
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1120px) {
  .clanci {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 3.8rem;
  }
}
.clanci::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(img/okvir-veliki.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100.2rem;
  aspect-ratio: 1002 / 726;
}
@media screen and (max-width: 1120px) {
  .clanci::before {
    display: none;
  }
}
.veliki-clanak {
  position: relative;
  width: 100%;
  max-width: 54.5rem;
  display: flex;
  gap: 2.5rem;
  background: linear-gradient(
    to bottom,
    #00204590 0%,
    rgba(255, 255, 255, 0.15) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media screen and (max-width: 1120px) {
  .veliki-clanak {
    max-width: 32.3rem;
    flex-direction: column;
    align-items: center;
    gap: 2.6rem;
    min-height: 42rem;
    background: none;
  }
}
.veliki-clanak::before {
  position: absolute;
  content: '';
  left: -0.7rem;
  top: -0.5rem;
  background: url(img/okvir-veliki-clanak.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 55.9rem;
  aspect-ratio: 559 / 396;
}

@media screen and (max-width: 1120px) {
  .veliki-clanak::before {
    left: 0;
    top: 0;
    background: url(img/okvir-veliki-clanak-mob.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 32.2rem;
    aspect-ratio: 322 / 420;
  }
}
.veliki-clanak-img {
  max-width: 30.5rem;
  aspect-ratio: 305 / 365;
  object-fit: cover;
}

@media screen and (max-width: 1120px) {
  .veliki-clanak-img {
    max-height: unset;
    max-width: 31.3rem;
    aspect-ratio: 313 / 184;
  }
}
.veliki-clanak-tekst {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 12.9rem;
}
@media screen and (max-width: 1120px) {
  .veliki-clanak-tekst {
    width: 98%;
    gap: 2.4rem;
    margin-top: 0;
    padding: 0 2.8rem;
    background: linear-gradient(
      to top,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 15%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.1) 85%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}
.veliki-clanak-h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 20rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1120px) {
  .veliki-clanak-h2 {
    max-width: 100%;
  }
}
.veliki-clanak-p {
  font-size: 1.3rem;
  font-weight: 400;
  max-width: 18.7rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1120px) {
  .veliki-clanak-p {
    max-width: 100%;
  }
}
.mali-clanci {
  width: 100%;
  max-width: 49.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 1120px) {
  .mali-clanci {
    max-width: 32.3rem;
    gap: 3.8rem;
  }
}
.mali-clanak {
  position: relative;
  width: 100%;
  max-width: 49.5rem;
  display: flex;
  gap: 2.2rem;
  background: linear-gradient(
    to bottom,
    #00204590 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.25) 100%
  );
}
@media screen and (max-width: 1120px) {
  .mali-clanak {
    max-width: 31.3rem;
    gap: 1.3rem;
  }
}
.mali-clanak::before {
  position: absolute;
  content: '';
  left: -0.5rem;
  top: -0.5rem;
  background: url(img/okvir-mali-clanak.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 50.5rem;
  aspect-ratio: 505 / 190;
}
@media screen and (max-width: 1120px) {
  .mali-clanak::before {
    left: -6px;
    top: -1px;
    background: url(img/okvir-mali-clanak-mob.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 32.3rem;
    aspect-ratio: 313 / 118;
  }
}
.mali-clanak-img {
  max-width: 15.7rem;
  aspect-ratio: 157 / 173;
  object-fit: cover;
}
@media screen and (max-width: 1120px) {
  .mali-clanak-img {
    max-width: 9.7rem;
    aspect-ratio: 97 / 111;
  }
}
.mali-clanak-tekst {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  gap: 2.2rem;
  margin-top: 2.7rem;
}
@media screen and (max-width: 1120px) {
  .mali-clanak-tekst {
    gap: 0.8rem;
    margin-top: 1.6rem;
  }
}
.mali-clanak-h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 28rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1160px) {
  .mali-clanak-h2 {
    font-size: 1.5rem;
    max-width: 95%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.mali-clanak-p {
  font-size: 1.3rem;
  font-weight: 400;
  max-width: 28rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1160px) {
  .mali-clanak-p {
    font-size: 1.1rem;
    max-width: 95%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.partneri {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  gap: 5.8rem;
  margin-top: 26.2rem;
}
@media screen and (max-width: 1120px) {
  .partneri {
    gap: 3rem;
    margin-top: 9rem;
  }
}
.partneri-h3 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media screen and (max-width: 780px) {
  .partneri-h3 {
    max-width: 8.4rem;
  }
}
.logos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.2rem;
  padding: 0 2rem 7.5rem 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 780px) {
  .logos {
    gap: 5rem;
    padding-bottom: 5.9rem;
  }
}
.fresh-corner {
  max-width: 12.3rem;
  aspect-ratio: 123 /53;
}
@media screen and (max-width: 780px) {
  .fresh-corner {
    max-width: 7.7rem;
  }
}
.hpz {
  max-width: 12.3rem;
  aspect-ratio: 123 / 80;
}
@media screen and (max-width: 780px) {
  .hpz {
    max-width: 7.4rem;
  }
}
.stop-shop {
  max-width: 6.8rem;
  aspect-ratio: 68 / 87;
  margin-top: 2rem;
}
@media screen and (max-width: 780px) {
  .stop-shop {
    max-width: 4.8rem;
    margin-top: 1rem;
  }
}
.ina {
  max-width: 10.6rem;
  aspect-ratio: 106 / 29;
}
@media screen and (max-width: 780px) {
  .ina {
    max-width: 8rem;
  }
}
.studenac {
  max-width: 17.5rem;
  aspect-ratio: 175 / 24;
}
@media screen and (max-width: 780px) {
  .studenac {
    max-width: 12rem;
  }
}
#feed-widget {
  padding-top: 25rem;
}
@media screen and (max-width: 1120px) {
  #feed-widget {
    padding-top: 10.9rem;
  }
}
/* ----------------- */
/* ---- FOOTER ----- */
/* ----------------- */
.footer {
  width: 100%;
  background-color: var(--black);
  padding: 6rem 0;
}
@media screen and (max-width: 780px) {
  .footer {
    padding: 4.5rem 0;
  }
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 780px) {
  .footer-wrap {
    flex-direction: column;
    gap: 5.1rem;
    justify-content: center;
  }
}
.logo-bijeli {
  max-width: 10.5rem;
  aspect-ratio: 105 / 40;
}
@media screen and (max-width: 780px) {
  .logo-bijeli {
    max-width: 7.6rem;
  }
}
.vl-logo {
  max-width: 9.2rem;
  aspect-ratio: 92 / 42;
}
@media screen and (max-width: 780px) {
  .vl-logo {
    max-width: 6.6rem;
  }
}
