@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merienda:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spirax&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Alkatra&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  color: #1f4127;
}

/* HEADER */

header {
  height: 100vh;
  background-color: #e2e5d8;
  margin-bottom: 5rem;
  min-height: 50vw;
}
.menu-icon {
  display: none;
}
nav {
  background-color: transparent;
  border-bottom: 1px solid #ffffff48;
}

.nav-opacity .nav-links li a {
  color: #1f4127;
}
.nav-opacity .nav-links li a i {
  background-color: #1f4127;
}

@media screen and (max-width: 991px) {
  .menu-bars,
  .header-icons i {
    background-color: #1f4127;
    transition: background-color 0.3s ease;
  }

  nav.active .menu-bars,
  nav.active .header-icons i,
  .nav-opacity .menu-bars,
  .nav-opacity .header-icons i {
    background-color: #1f4127;
  }

  .nav-links li a {
    color: #1f4127;
  }
}
.nav-links .n-link:not(.cart-menu-item) a:after {
  background-color: #1f4127;
}
.nav-opacity .nav-links .n-link:not(.cart-menu-item) a:after {
  background-color: #1f4127;
}
.nav-links li a i {
  background-color: #1f4127;
  transition: background-color 1s ease;
}

.header-logo-wrapper {
  position: relative;
  display: flex;
}

nav:not(.nav-opacity):not(.active) .header-logo-wrapper:after {
  opacity: 1;
}

nav .header-logo-wrapper:after {
  opacity: 0;
  content: "";
  background-image: url(/img/logo/logo-linija.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 50px;
  margin: 0.2rem 0;
  width: 200px;
  /* filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(71deg) brightness(103%)
    contrast(101%); */
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-in-out;
}

/* HEADER HERO */

.header-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
/* .header-hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  z-index: 3;
} */
@media screen and (max-width: 786px) {
  .header-hero-container {
    flex-direction: column;
  }
}

.header-hero-text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100vh;
  margin-left: 3rem;
  position: relative;
  color: #fff;
}
.header-hero-text h2 {
  font-size: 4rem;
  font-family: "Merienda", cursive;
  color: #fff;
}
.header-hero-text span {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 3rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 5px;
  color: #fff;
}
.header-hero-text p {
  font-size: 1.6rem;
  font-weight: 200;
  margin-bottom: 3rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 1px;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .header-hero-text {
    margin-top: 17vh;
    justify-content: start;
  }
}
@media screen and (max-width: 991px) {
  .header-hero-text {
    margin: 0 auto;
    justify-content: start;
    margin-top: 17vh;
    align-items: center;
    text-align: center;
  }
  .header-hero-text h2 {
    font-size: 2.4rem;
  }
  .header-hero-text span {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  .header-hero-text p {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 600px) {
  .header-hero-text h2 {
    font-size: 2rem;
  }
  .header-hero-text span {
    font-size: 1.8rem;
  }
  .header-hero-text p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}

/* CAROUSEL */
.carousel {
  width: 100%;
  position: relative;
  height: 100vh;
  z-index: 1;
}
.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  /* display: none; */
  opacity: 0;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100vw;
  transition: opacity 0.6s ease-in-out;
}
.white-c {
  height: 1000px;
  width: 1000px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.206);
  position: absolute;
  right: -500px;
  bottom: -500px;
  z-index: 3;
}

.white-c-out {
  animation: carousel-rotation-out 1s ease;
  /* animation-delay: 0.1s, 480ms; */
}

@keyframes carousel-rotation-in {
  from {
    transform: rotateZ(90deg);
  }
  to {
    transform: rotateZ(0deg);
  }
}
@keyframes carousel-rotation-out {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(-90deg);
  }
}
.product-items-rotation {
  height: 1000px;
  width: 1000px;
  border-radius: 50%;
  position: absolute;
  right: -500px;
  bottom: -500px;
  transform-origin: center;
  z-index: 1;
}

.product-items-rotation:not(.selected):not(.previous) {
  transform: rotateZ(90deg);
}

.product-items-rotation.selected {
  animation: carousel-rotation-in 1s ease;
  z-index: 2;
  opacity: 1;
}
.product-items-rotation.previous {
  animation: carousel-rotation-out 1s ease;
  opacity: 0;
  transition: opacity 0s ease 1s;
}
.product-wrapper {
  overflow: hidden;
  width: 700px;
  height: 700px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.carousel-product-img {
  height: 300px;
  width: 300px;
  /* border-radius: 50%; */
  position: absolute;
  /* overflow: hidden; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-product-img img {
  height: 300px;

  width: auto;
}
.carousel-1 {
  background-image: url(./top-ponuda/africki-tulipan.jpg);
}
.carousel-1::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(249, 86, 53, 0.904);
  position: absolute;
  top: 0;
  left: 0;
}
.carousel-2 {
  background-image: url(./top-ponuda/orah.jpg);
}
.carousel-2::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(106, 68, 40, 0.908);
  position: absolute;
  top: 0;
  left: 0;
}
.carousel-3 {
  background-image: url(./top-ponuda/mediteranska-pomorandza.jpg);
}
.carousel-3::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(244, 166, 64, 0.908);
  position: absolute;
  top: 0;
  left: 0;
}
.carousel-item-selected {
  display: block;
  opacity: 1;
  z-index: 1;
}
.carousel-nav {
  width: 100%;
  padding: 100px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  /* background-color: red; */
  text-align: start;
  z-index: 2;
}
.carousel-btn {
  height: 25px;
  width: 25px;
  display: inline-block;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 5rem;
  cursor: pointer;
  position: relative;
  color: #fff;
}
.carousel-btn-title {
  color: #fff;
  font-weight: 300;
}
.carousel-btn-selected {
  background-color: #1f4127;
}
.btn-wrapper {
  position: absolute;
  top: -100px;
  left: -23px;
}
.carousel-btn-img {
  height: 80px;
  width: 90px;
  overflow: hidden;
  filter: invert(100%);
}
.carousel-btn-img img {
  height: 100%;
  width: auto;
}

@media screen and (max-width: 991px) {
  .carousel-nav {
    display: flex;
    flex-direction: column;
    width: auto;
  }
  .carousel-btn {
    height: 15px;
    width: 15px;
    margin-bottom: 7rem;
  }
  .btn-wrapper {
    position: absolute;
    top: -35px;
    left: 40px;
  }
  .carousel-product-img {
    height: 350px;
    width: 350px;
  }
}

@media screen and (max-width: 768px) {
  .white-c {
    height: 800px;
    width: 800px;
    right: -400px;
    bottom: -400px;
  }

  .product-wrapper {
    width: 700px;
    height: 700px;
  }

  .carousel-product-img {
    height: 400px;
    width: 400px;
  }
  .carousel-product-img img {
    height: 300px;
    width: auto;
  }
  .product-items-rotation {
    height: 950px;
    width: 950px;
  }
}

@media only screen and (max-width: 600px) {
  .white-c {
    height: 500px;
    width: 500px;
    right: -250px;
    bottom: -250px;
  }

  .carousel-nav {
    padding: 0;
  }

  .carousel-btn {
    height: 10px;
    width: 10px;
    margin-left: 2rem;
    margin-bottom: 5rem;
  }
  .btn-wrapper {
    position: absolute;
    top: -30px;
    left: 20px;
  }
  .carousel-btn-img {
    height: 60px;
    width: 70px;
  }

  .product-wrapper {
    width: 700px;
    height: 700px;
  }

  .carousel-product-img {
    height: 600px;
    width: 600px;
  }
  .carousel-product-img img {
    height: 160px;
    width: auto;
  }
}

/* HEADER-HERO-MARAKUJA */
.header-hero-marakuja {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  min-height: 50vw;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.header-hero-marakuja::before {
  content: "";
  position: fixed;
  left: 0;
  width: 100%;
  min-height: 8vh;
  height: 8vh;
  background-image: url(img/marakuja-top.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  z-index: 1;
}
.header-hero-marakuja .header-marakuja-text {
  width: 50%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.header-hero-marakuja .header-marakuja-text .btn {
  margin-bottom: 20px;
  z-index: 3;
}
.header-hero-marakuja .header-marakuja-text::after {
  content: "";
  position: absolute;
  left: 5%;
  width: 90%;
  height: 100%;
  background-image: url(img/marakuja-text.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media only screen and (min-width: 769px) {
  .header-hero-marakuja .header-marakuja-left {
    width: 25%;
    height: 100%;
    background-image: url(img/marakuja-left.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    z-index: 2;
  }
  .header-hero-marakuja .header-marakuja-right {
    width: 25%;
    height: 100%;
    position: relative;
    z-index: 2;
  }
  .header-hero-marakuja .header-marakuja-right::after {
    content: "";
    position: absolute;
    left: -16.5vh;
    width: calc(100% + 16.5vh);
    height: 100%;
    background-image: url(img/marakuja-right.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
  }
}
@media only screen and (max-width: 768px) {
  .header-hero-marakuja {
    flex-direction: column;
  }
  .header-hero-marakuja .header-marakuja-left {
    height: 8vh;
  }
  .header-hero-marakuja .header-marakuja-text {
    width: 100%;
    height: 50vh;
    margin-bottom: 40px;
  }
  .header-hero-marakuja .header-marakuja-text {
    max-width: 250px;
  }
  .header-hero-marakuja .header-marakuja-text .btn {
    margin-bottom: -10px;
  }
  .header-hero-marakuja .header-marakuja-right {
    width: 100%;
    height: 42vh;
    position: relative;
    z-index: 2;
  }
  .header-hero-marakuja .header-marakuja-right::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/marakuja-mobile-bottom.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
}
/* HEADER-HERO-DAN-ZALJUBLJENIH */
.header-hero-DZ {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: rgb(121, 10, 10);
  /* background-image: url(img/megi.webp); */
  /* background-position: center;
  background-size: cover; */
}
.header-hero-DZ::after {
  content: "";

  background-image: url(img/dan-zaljubljenih/detelina-sa-4-lista.svg);
  width: 100%;
  height: 100%;

  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
}

.header-hero-DZ .header-hero-text {
  padding: 0.5rem;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100vh;
  margin-left: 3rem;
  position: relative;
  color: #fff;
  z-index: 1;
}
.detelina-slika {
  display: block;
  background-image: url(img/dan-zaljubljenih/detelina-4-lista.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 7rem;
  height: 9rem;
}

.header-hero-DZ .header-hero-img {
  margin: 0 auto;
  z-index: 2;
}
.heart {
  display: block;
  width: 40rem;
  height: 50rem;
  background-image: url(img/dan-zaljubljenih/ruke-u-srcu-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* .ruke-u-srcu {
  width: 40rem;
  height: 50rem;
  background-image: url(img/dan-zaljubljenih/ruke-u-ercu.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
} */

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .header-hero-DZ .header-hero-text {
    margin-top: 0vh;
    width: 50vw;
    max-width: 500px;
  }
}

@media only screen and (max-width: 991px) {
  header {
    height: auto;
    min-height: 100vh;
  }
  .header-hero-DZ {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
  }
  .header-hero-DZ .header-hero-text {
    margin: 0;
    margin-top: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: auto;
  }

  .header-hero-DZ .header-hero-text p {
    margin-bottom: 0.5rem;
  }
  .heart {
    width: 22rem;
    height: 19rem;
  }
}

/* HEADER-HERO-DNEVNIK */
.header-hero-dnevnik {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fdfae3;
}
.header-hero-img-wrapper {
  width: 60rem;
  height: 100%;
  position: relative;
}
.header-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(img/hero/SVG/dnevnik.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  z-index: 2;
  position: relative;
}
.header-hero-img-wrapper::after {
  content: "";
  background-color: #cbd4ad;
  position: absolute;
  width: 69%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 0;
}
.header-hero-text {
  margin: 1rem;
  margin-left: 5rem;
  text-align: start;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  position: relative;
  height: 30rem;
}
.header-hero-text h1,
.header-hero-text h2 {
  font-family: "Roboto", sans-serif;
  color: #15321c;
  font-size: 3rem;
}
.header-hero-text h1 {
  margin-bottom: 5rem;
}
.header-hero-text p {
  color: #15321c;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .hide-sm {
    display: none;
  }
  .header-hero-dnevnik {
    flex-direction: column;
  }
  .header-hero-text {
    height: 60vh;
    margin-top: 0;
    margin-bottom: 0;
  }
  .header-hero-img-wrapper {
    height: 40vh;
    width: 100vw;
    background-color: #cbd4ad;
    position: relative;
  }
  .header-hero-img-wrapper .header-btn {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 20px;
  }
  .header-hero-img {
    position: absolute;
    width: 90vw;
    left: 5vw;
    height: 110%;
    margin-top: -17vh;
    background-image: url(img/hero/SVG/dnevnik-mobile.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .header-hero-img-wrapper::after {
    content: none;
  }
}
@media screen and (min-width: 992px) {
  .hide-lg {
    display: none;
  }
}

@media (max-width: 576px) {
  .header-hero-text {
    margin: 16px;
  }
  .header-hero-text h1 {
    font-size: 28px;
    margin-bottom: 3rem;
  }
  .header-hero-text h2 {
    font-size: 32px;
  }
  .header-hero-text p {
    font-size: 16px;
  }
}
@media (min-width: 576px) {
  .header-hero-text {
    margin: 16px;
  }
  .header-hero-text h1 {
    font-size: 28px;
  }
  .header-hero-text h2 {
    font-size: 32px;
  }
  .header-hero-text p {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .header-hero-text {
    margin: 16px;
    margin-left: 5rem;
  }
  .header-hero-text h1 {
    font-size: 32px;
  }
  .header-hero-text h2 {
    font-size: 28px;
  }
  .header-hero-text p {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .header-hero-text h1 {
    font-size: 36px;
  }
  .header-hero-text h2 {
    font-size: 30px;
  }
  .header-hero-text p {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .header-hero-text h1 {
    font-size: 42px;
  }
  .header-hero-text h2 {
    font-size: 34px;
  }
  .header-hero-text p {
    font-size: 20px;
  }
}

@media (min-width: 1400px) {
  .header-hero-text h1 {
    font-size: 48px;
  }
  .header-hero-text h2 {
    font-size: 36px;
  }
  .header-hero-text p {
    font-size: 22px;
  }
}

/* NAJPOPULARNIJI PROIZVODI */

.najpopularniji-proizvodi,
.sadrzaj-kutije,
.kvalitet-dostava-podrska,
.follow-us {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 5rem auto;
}

.najpopularniji-proizvodi-container,
.sadrzaj-kutije-container,
.kvalitet-dostava-podrska-container,
.follow-us-container {
  max-width: min(1200px, 100vw);
  width: 98%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* background-color: aquamarine; */
}
.section-title {
  width: 100%;
  text-align: center;
}
.section-title h2 {
  font-size: 1.6rem;
  font-weight: 300;
  margin: 0.3rem;
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: 1px;
}

.flip-card {
  width: 350px;
  height: 500px;
  margin: 1rem;
  perspective: 1000px;
}

@media screen and (max-width: 786px) {
  .flip-card {
    width: 300px;
    height: 450px;
  }
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.flip-card.active .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

/* .flip-card-front {
  background-color: #e2e5d8;
} */

.flip-card-back {
  background-color: #ffffff;
  transform: rotateY(180deg);
}
.flip-card-img-back {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.flip-card-img-back img {
  position: fixed;
  height: 120%;
  top: -10%;
  filter: invert(95%);
  z-index: -1;
}

.flip-card-img {
  background-color: #1f4127;
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flip-card-img img {
  height: 100%;
  width: auto;
}
.flip-card-back {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.flip-card-title {
  margin: 0;
  padding: 5.4rem 0 1.4rem 0;
  letter-spacing: 2px;
  font-size: 1.4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6990589985994398) 50%,
    rgba(255, 255, 255, 1) 100%
  );
}
.flip-card-title h3 {
  font-family: "Alkatra", cursive;
}
.flip-card-title-back {
  padding: 1.4rem 0;
  letter-spacing: 2px;
  font-size: 0.8rem;
}
.flip-card-title-back h3 {
  font-size: 2.2rem;
  font-family: "Alkatra", cursive;
}

.flip-card-desc {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  line-height: 1.3rem;
  margin: 0 1rem;
}
.flip-card-text {
  margin: 1.2rem;
  letter-spacing: 0.3px;
}
.flip-card-text .btn {
  margin-bottom: 1rem;
}
/* SADRZAJ KUTIJE */

.sadrzaj-kutije-container picture {
  width: 100%;
}

.sadrzaj-kutije-container picture img {
  width: 100%;
}

/* MANIFEST */

.manifest-container {
  width: 100%;
  height: auto;
  /* background-color: #e2e5d8; */
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}
.manifest-container h2 {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: end;
  margin: 1rem;
}
.manifest-text {
  flex: 1 1 50%;
  background-color: #e2e5d844;
  /* background-image: url(/img/header.png); */

  background-position: center;
  background-size: cover;

  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 3rem;
  padding-top: 3rem;
}
.manifest-text p {
  font-size: 1.3rem;
  color: rgb(72, 72, 72);
  font-weight: 300;
  padding: 1rem;
  text-align: end;
  line-height: 1.4rem;
}
.manifest-text p span {
  font-size: 1.4rem;
  /* font-style: italic; */
  line-height: 3rem;
  background-color: #1f41278c;
  color: #e2e5d8;

  /* font-family: "Fredericka the Great", cursive; */
}
.manifest-text .manifest-btn {
  display: flex;
  justify-content: end;
  padding: 0 1rem;
}
.manifest-img {
  flex: 1 1 50%;
  width: 50%;
  display: flex;
}
.manifest-img img {
  display: none;
}
@media screen and (min-width: 992px) {
  .manifest-img {
    background: url(/img/home/kutija-home.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 991px) {
  .manifest-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .manifest-text {
    flex: 1 1 100%;
  }
  .manifest-text p {
    font-size: 1.2rem;
    text-align: center;
  }
  .manifest-text h2 {
    text-align: center;
  }
  .manifest-text .manifest-btn {
    justify-content: center;
  }
  .manifest-text p span {
    font-size: 1.4rem;
  }
  .manifest-img {
    flex: 1 1 100%;
    width: 100%;
  }
  .manifest-img img {
    display: flex;
    height: auto;
    width: 100%;
  }
}
.shop-btn-green {
  text-decoration: none;
  width: fit-content;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  background-color: #1f4127;
  color: #e2e5d8;
  margin: 1rem;
}

/* SADRZAJ KUTIJE */
.sadrzaj-img {
  width: 100%;
  height: auto;
}
.sadrzaj-img img {
  width: 100%;
}

/* KVALITET DOSTAVA i PODRSKA */

.kvalitet-dostava-podrska {
  background-color: #e2e5d8a9;
  background-image: url(/img/header.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
}

.kvalitet-dostava-podrska-container title {
  width: 100%;
  text-align: center;
}
.kdp-card {
  width: 350px;
  height: 350px;
  margin: 3rem 1rem;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.kdp-card div {
  margin-bottom: 1rem;
}

@media screen and (max-width: 786px) {
  .kvalitet-dostava-podrska {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }
  .kdp-card {
    width: 350px;
    min-height: 250px;
    margin: 1rem;
  }
  .kdp-card div {
    margin-bottom: 1rem;
  }
}
.fa-solid,
.fa-pagelines {
  font-size: 5rem;
  margin-bottom: 2rem;
  /*background: -moz-linear-gradient(top, #e72c83 0%, #a742c6 100%);
  background: -webkit-linear-gradient(top, #e72c83 0%, #a742c6 100%);
  background: linear-gradient(to bottom, #e72c83 0%, #a742c6 100%); */
  background-color: #1f4127b8;

  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kdp-card-title h2,
h2 {
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: 300;
}

.kdp-card-desc p {
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 1.4rem;
  text-align: center;
  font-weight: 300;
}

@media screen and (max-width: 786px) {
  .fa-solid {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  .kdp-card-title h2,
  h2 {
    font-size: 2rem;
  }

  .kdp-card-desc p {
    font-size: 1rem;
  }
}

/* KORPORATIVNA */

.pesonalizacija {
  width: 100%;
  height: auto;
  margin-bottom: 5rem;
  /* background-color: antiquewhite; */
}

.personalizacija-container {
  width: 100%;
  height: auto;
  /* background-color: #e2e5d8; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 5rem;
}
.personalizacija-container div {
  padding: 3rem;
  /* background-color: blueviolet; */
}
.personalizacija-video {
  flex: 1 1 50%;
  width: 50%;
  display: flex;
  align-items: center;
}
.personalizacija-video img {
  height: auto;
  width: 100%;
}
.personalizacija-text {
  flex: 1 1 50%;
  /* background-color: #e2e5d8; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.personalizacija-text h2 {
  font-size: 2.2rem;
  letter-spacing: 1px;
  font-weight: 300;
  margin: 1rem;
}
.personalizacija-text p {
  font-size: 1.3rem;
  color: gray;
  font-weight: 300;
  padding: 1rem;
  line-height: 1.6rem;
  text-align: justify;
  margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  .personalizacija-container {
    flex-direction: column;
    padding: 2.5rem 0;
  }
  .personalizacija-container div {
    padding: 0.5rem 0;
  }
  .personalizacija-video {
    flex: 1 1 100%;
    width: 100%;
  }
  .personalizacija-text {
    flex: 1 1 100%;
  }
  .personalizacija-text p {
    font-size: 1.3rem;
    /* text-align: center; */
    padding: 1rem;
    margin-bottom: 2rem;
  }
}

/* FOLLOW US */
.follow-us .section-title h2 a {
  text-decoration: none;
}
.follow-us-container {
  max-width: 1600px;
  width: 100%;
  height: auto;
  margin-bottom: 5rem;
}
.follow-us-container .section-title h2 {
  width: 100%;
  padding: 0;
  margin: 0;
  margin: 2.5rem 0;
  font-size: 2.2rem;
  box-sizing: border-box;
}

.insta-card {
  width: 300px;
  height: 300px;
  margin: 0.5rem;
  background-color: #000000;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.072);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.insta-card img {
  height: 100%;
  width: auto;
  opacity: 1;
  transition: scale ease-in-out 0.5s, opacity ease 0.5s;
}
.insta-card i {
  opacity: 0;
  position: absolute;
  color: #e2e5d8;
  padding: 1rem 0;
  background: transparent;
  font-size: 2rem;
  text-align: center;
  scale: 0;
  transition: opacity ease-in-out 0.5s;
}

.insta-card:hover img {
  scale: 1.1;
  opacity: 0.7;
}
.insta-card:hover i {
  opacity: 1;
  scale: 1.5;
}
