@charset "UTF-8";
/*
0 - 390px:      Phone
391 - 744px:    Tablet portrait
745 - 1024px:   Tablet landscape
[1025 - 1599] is where our normal styles apply
1600 px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
html {
  box-sizing: border-box;
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

:root {
  --primaryColor: #000000;
  --primaryColor-100: #40374d;
  --primaryColor-200: #302048;
  --primaryColor-300: #261242;
  --primaryColor-400: #180a2e;
  --ligthGrayColor: #f3f4f6;
  --ligthGrayColor-100: #f3f3f3;
  --ligthGrayColor-200: #eaeaea;
  --ligthGrayColor-300: #d4d4d4;
  --ligthGrayColor-400: #bcbcbc;
}

/*
$highlight-yellow: #f6cd0e;

$highlight-green: #72bf44;
$highlight-green: #9aca3c;
$highlight-green: #bed747;
$highlight-green: #d5e055;

//Ljubičasta:
$highlight-pink: #903f98;
$highlight-pink: #b055a1;
$highlight-pink: #cf94c2;
$highlight-pink: #e4c6df;
*/
.wrapper {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 124rem;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.wrapper--medium {
  max-width: 106rem;
}

.u-full-width {
  width: 100% !important;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto-Regular.woff2") format("woff2"), url("/assets/fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto-Medium.woff2") format("woff2"), url("/assets/fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/*
@font-face {
  font-family: "Roboto SemiBold";
  src: url("/assets/fonts/Roboto-SemiBold.woff2") format("woff2"),
    url("/assets/fonts/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Bold";
  src: url("/assets/fonts/Roboto-Bold.woff2") format("woff2"),
    url("/assets/fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}*/
@font-face {
  font-family: "Coolvetica Rg";
  src: url("/assets/fonts/CoolveticaRg-Regular.woff2") format("woff2"), url("/assets/fonts/CoolveticaRg-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.coolvetica {
  font-family: "Coolvetica Rg", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: var(--primaryColor);
}

h1 {
  font-family: "Coolvetica Rg", sans-serif;
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 1.3;
}
@media only screen and (max-width: 57em) {
  h1 {
    font-size: 5.4rem;
  }
}
@media only screen and (max-width: 23.125em) {
  h1 {
    font-size: 4.8rem;
  }
}

h2 {
  font-size: 2rem;
  font-weight: 400;
}

h3 {
  font-family: "Coolvetica Rg", sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 1.3;
}

h4,
h5 {
  font-family: "Coolvetica Rg", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.3;
}

a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4;
}

p {
  margin-top: 0.5rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
}

.button-text {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
}

.u-semibold {
  font-weight: 500;
}

.u-bold {
  font-weight: 700;
}

.indent {
  list-style-type: disc;
  padding-left: 15px;
}
.indent__bullet {
  position: relative;
  padding-left: 8px;
  text-indent: 0px;
}

.heading-secondary__blog {
  color: #c07a19;
  margin-bottom: 3rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.8rem 8rem;
}
@media only screen and (max-width: 46.5em) {
  .header {
    padding: 2rem;
  }
}
.header__slogan {
  width: 25rem;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 33em) {
  .header__slogan {
    width: 100%;
    margin-right: 1rem;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
@media only screen and (max-width: 24.375em) {
  .logo-link {
    gap: 1rem;
  }
}
@media only screen and (max-width: 64em) {
  .logo-link {
    gap: 2rem;
  }
}
@media only screen and (min-width: 100em) {
  .logo-link {
    gap: 2rem;
  }
}
.logo-link p {
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  color: var(--primaryColor);
}
@media only screen and (max-width: 81.25em) {
  .logo-link p {
    display: none;
  }
}
@media only screen and (max-width: 64em) {
  .logo-link p {
    display: block;
  }
}
@media only screen and (max-width: 24.375em) {
  .logo-link p {
    font-size: 1.4rem;
  }
}

.logo-img {
  height: 7.2rem;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  /*Zbog Pavlovog dodatka*/
}
@media only screen and (max-width: 64em) {
  .main-nav {
    padding: 3.8rem;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: rgba(255, 255, 255, 0.6);
    z-index: 10;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in;
  }
}
@media only screen and (max-width: 46.5em) {
  .main-nav {
    width: 85%;
  }
}
@media only screen and (max-width: 24.375em) {
  .main-nav {
    width: 100%;
    align-items: start;
    gap: 3rem;
  }
}
@media only screen and (min-width: 100em) {
  .main-nav {
    gap: 5em;
  }
}

@media only screen and (max-width: 64em) {
  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }
}

.main-nav ul,
.header-lang-cta ul {
  list-style: none;
}

.main-nav-list,
.header-lang-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 64em) {
  .main-nav-list,
  .header-lang-cta {
    flex-direction: column;
    gap: 2rem;
  }
}
@media only screen and (max-width: 24.375em) {
  .main-nav-list,
  .header-lang-cta {
    align-items: start;
    gap: 3rem;
  }
}
@media only screen and (min-width: 100em) {
  .main-nav-list,
  .header-lang-cta {
    gap: 6rem;
  }
}

.main-nav-link {
  /* Start Pavlov dodatak */
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  /* End Pavlov dodatak */
}
@media only screen and (max-width: 64em) {
  .main-nav-link {
    padding: 1rem 2rem;
  }
}
@media only screen and (min-width: 100em) {
  .main-nav-link {
    padding: 1rem 2rem;
  }
}
.main-nav-link:link, .main-nav-link:visited {
  text-decoration: none;
  color: var(--primaryColor-200);
  background-color: red;
  /* Start Pavlov dodatak */
  background: hsla(0, 0%, 100%, 0.6);
  border: 2px solid rgba(248, 206, 0, 0.1);
  /* End Pavlov dodatak */
}
.main-nav-link:hover, .main-nav-link:active {
  /* Start Pavlov dodatak */
  background: linear-gradient(135deg, rgba(248, 206, 0, 0.15), rgba(215, 229, 82, 0.1));
  border: 2px solid rgba(248, 206, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(248, 206, 0, 0.15);
  /* End Pavlov dodatak */
}

.header-lang {
  position: relative;
  /* End Pavlov dodatak */
}
.header-lang__bar {
  display: flex;
  align-items: center;
  cursor: pointer;
  /* Start Pavlov dodatak */
  gap: 1rem;
  padding: 0.8rem 1.6rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(215, 229, 82, 0.1), rgba(248, 206, 0, 0.05));
  border: 2px solid rgba(215, 229, 82, 0.2);
  transition: all 0.3s ease;
}
.header-lang__bar:hover {
  background: linear-gradient(135deg, rgba(215, 229, 82, 0.2), rgba(248, 206, 0, 0.1));
  border: 2px solid rgba(215, 229, 82, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(215, 229, 82, 0.2);
}
.header-lang:hover .header-lang__icon {
  transform: rotate(90deg);
  color: var(--primaryColor);
}
.header-lang__label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primaryColor-200);
}
.header-lang__icon {
  /*width: 2.4rem;
  height: 2.4rem;*/
  width: 2rem;
  height: 2rem;
  transition: all 0.3s ease;
}

#language-options {
  position: absolute;
  top: 30px;
  left: -120%;
  background: white;
  border: 2px solid rgba(248, 206, 0, 0.1);
  border-radius: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1.6rem;
  width: 20rem;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (max-width: 24.375em) {
  #language-options {
    left: 0;
  }
}

#language-options.show {
  opacity: 1;
  pointer-events: auto;
}

#language-options li {
  padding: 0.8rem 1.6rem;
  cursor: pointer;
}
#language-options li a {
  text-decoration: none;
  color: var(--primaryColor-200);
}

#language-options li:hover {
  background: linear-gradient(135deg, rgba(248, 206, 0, 0.1), rgba(215, 229, 82, 0.1));
}

#language-options li.active-language a {
  color: #f6cd0e;
}

/*
.header-cta {
  &--link:link,
  &--link:visited {
    display: inline-block;
    border-bottom: none;
    text-decoration: none;
    color: var(--primaryColor-400);
    background-color: styles.$highlight-yellow;
    padding: 0.4rem 1.6rem;
    border-radius: 50px;
    transition: all 0.2s;
  }
  &--link:hover,
  &--link:active {
    background-color: var(--ligthGrayColor-200);
  }
}
*/
/* Start Pavlova verzija */
.header-cta--link:link, .header-cta--link:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--primaryColor-400);
  background: linear-gradient(135deg, #f6cd0e, #ffd700);
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.3px;
}
@media only screen and (max-width: 64em) {
  .header-cta--link:link, .header-cta--link:visited {
    padding: 1rem 2rem;
  }
}
@media only screen and (min-width: 100em) {
  .header-cta--link:link, .header-cta--link:visited {
    padding: 1rem 2rem;
  }
}
.header-cta--link:link::before, .header-cta--link:visited::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.header-cta--link:hover {
  background: linear-gradient(135deg, #ffd700, #f6cd0e);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(248, 206, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.header-cta--link:hover::before {
  left: 100%;
}
.header-cta--link:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(248, 206, 0, 0.4);
}

.btn-mobile-nav {
  /* border: none;
  background-color: transparent;
  cursor: pointer;
  display: none;*/
  background: linear-gradient(135deg, rgba(248, 206, 0, 0.1), rgba(215, 229, 82, 0.1));
  cursor: pointer;
  display: none;
  padding: 1.2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid rgba(248, 206, 0, 0.2);
  position: relative;
  z-index: 200;
  min-width: 6rem;
  min-height: 6rem;
  /* End Pavlova verzija */
}
@media only screen and (max-width: 64em) {
  .btn-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.btn-mobile-nav:hover {
  background: linear-gradient(135deg, rgba(248, 206, 0, 0.2), rgba(215, 229, 82, 0.2));
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(248, 206, 0, 0.2);
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
}
@media only screen and (max-width: 24.375em) {
  .icon-mobile-nav {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.icon-mobile-nav[name=close-outline] {
  display: none;
}

@media only screen and (max-width: 64em) {
  .nav-open .icon-mobile-nav[name=close-outline] {
    position: relative;
    display: block;
    z-index: 15;
  }
}

@media only screen and (max-width: 64em) {
  .nav-open .icon-mobile-nav[name=menu-outline] {
    display: none;
  }
}

/******************************************************
 **************** STICKY NAVIGATION *******************
 ******************************************************/
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

.section-squared {
  position: relative;
  background: var(--lightGrayColor-100) url("/assets/images/kocka.svg") repeat top left/auto;
  background: #f3f3f3 url("/assets/images/kocka.svg") repeat top left/auto;
}
@media only screen and (max-width: 46.5em) {
  .section-squared--none-squared {
    background: none;
  }
}

.hero-accidental__container {
  width: 80%;
  height: 40vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 46.5em) {
  .hero-accidental__container {
    gap: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 33em) {
  .hero-accidental__container {
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
  }
}
.hero-accidental__icon-square {
  align-self: flex-end;
  flex: 1 1 auto; /* Svi elementi se ravnomerno smanjuju */
  min-width: 0; /* Sprečava problem prevelikog skupljanja */
  max-width: 30rem;
}
@media only screen and (max-width: 46.5em) {
  .hero-accidental__icon-square {
    transform: translateX(-30%);
  }
}
@media only screen and (max-width: 33em) {
  .hero-accidental__icon-square {
    display: none;
  }
}
.hero-accidental__icon-arrow {
  flex: 1 1 auto; /* Svi elementi se ravnomerno smanjuju */
  min-width: 0; /* Sprečava problem prevelikog skupljanja */
  max-width: 30rem;
}
@media only screen and (max-width: 33em) {
  .hero-accidental__icon-arrow {
    display: none;
  }
}

.content-accidental {
  width: 90%;
  margin: 0 auto;
  padding: 4rem;
}
.content-accidental ul,
.content-accidental li,
.content-accidental p {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}
.content-accidental h2:not(:first-child) {
  margin-top: 2rem;
}

.hero-clouds {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.hero-clouds__left {
  position: relative;
  display: block;
}
@media only screen and (min-width: 100em) {
  .hero-clouds__left {
    width: 300%;
  }
}
@media only screen and (max-width: 64em) {
  .hero-clouds__left {
    transform: translateX(-45%);
  }
}
@media only screen and (max-width: 46.5em) {
  .hero-clouds__left {
    transform: translate(-60%, -35%);
    height: 70vh;
  }
}
@media only screen and (max-width: 33em) {
  .hero-clouds__left {
    transform: translate(-40%, -50%);
    height: 75vh;
  }
}
@media only screen and (max-width: 24.375em) {
  .hero-clouds__left {
    height: 100vh;
  }
}
.hero-clouds div {
  display: flex;
}
.hero-clouds__right {
  align-self: flex-end;
  position: relative;
  display: block;
  top: 20%;
}
@media only screen and (min-width: 100em) {
  .hero-clouds__right {
    width: 150%;
  }
}
@media only screen and (max-width: 64em) {
  .hero-clouds__right {
    transform: translateX(45%);
  }
}
@media only screen and (max-width: 46.5em) {
  .hero-clouds__right {
    transform: translateX(20%);
    top: 5%;
  }
}
@media only screen and (max-width: 33em) {
  .hero-clouds__right {
    transform: translateX(-15%);
  }
}
@media only screen and (max-width: 24.375em) {
  .hero-clouds__right {
    transform: translateX(-35%);
  }
}

.mobile-img-hero {
  position: absolute;
  height: 140%;
  top: 0;
  right: 5%;
  transform: rotate(5deg);
}
@media only screen and (max-width: 64em) {
  .mobile-img-hero {
    display: none;
  }
}

.icon-hero-square {
  display: none;
}
@media only screen and (max-width: 64em) {
  .icon-hero-square {
    display: block;
    position: absolute;
    bottom: 7%;
    left: -1rem;
  }
}
@media only screen and (max-width: 57em) {
  .icon-hero-square {
    width: 20%;
  }
}
@media only screen and (max-width: 46.5em) {
  .icon-hero-square {
    bottom: 60%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 33em) {
  .icon-hero-square {
    display: none;
  }
}

.icon-hero-arrow {
  display: none;
}
@media only screen and (max-width: 64em) {
  .icon-hero-arrow {
    display: block;
    position: absolute;
    bottom: 10%;
    right: 8%;
  }
}
@media only screen and (max-width: 46.5em) {
  .icon-hero-arrow {
    bottom: 5%;
    width: 20%;
  }
}
@media only screen and (max-width: 24.375em) {
  .icon-hero-arrow {
    display: none;
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 60%;
  padding: 1rem 0;
}
@media only screen and (min-width: 100em) {
  .hero-content {
    left: 40%;
    width: 50%;
  }
}
@media only screen and (max-width: 64em) {
  .hero-content {
    left: 50%;
  }
}
.hero-content h1 {
  margin-bottom: 1rem;
}
.hero-content__cta-part {
  gap: 3rem;
}
.hero-content__cta-part__text {
  font-size: 1.6rem;
  text-align: center;
}
.hero-content__cta-part__button {
  display: none;
}
@media only screen and (max-width: 64em) {
  .hero-content {
    width: 80%;
    gap: 2rem;
  }
}
.hero-content__picture-delete-account {
  display: none;
}
.hero-content__headline-delete-account {
  left: 50%;
}

.heading-primary {
  text-align: center;
}
.heading-primary .highlight-yellow {
  color: #f6cd0e;
}
.heading-primary .highlight-green {
  color: #77be38;
}

.heading-primary,
.hero-content__cta-part {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.soon {
  padding: 1.5rem 4rem;
  text-align: center;
  color: white;
  background-color: #261242;
  border-radius: 30px;
  cursor: pointer;
}
.soon p {
  font-weight: 500;
}

.body-delete-account {
  height: 100%;
  margin: 0;
}

.delete-account__container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.delete-account__main {
  flex-grow: 1;
}

.section-notifications {
  padding: 1rem 5rem 1rem 5rem;
  position: relative;
}
@media only screen and (max-width: 46.5em) {
  .section-notifications {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.section-notifications p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.notify-form {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 46.5em) {
  .notify-form {
    flex-direction: column;
    align-items: center;
  }
}
.notify-form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media only screen and (max-width: 46.5em) {
  .notify-form__input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.notify-form__email {
  width: 20rem;
  background-color: #f9f9f9;
  box-shadow: 0 0 0 0.1rem #f6cd0e;
}
.notify-form__email:focus {
  outline: none;
  box-shadow: 0 0 0 0.1rem #77be38;
}
.notify-form input {
  padding: 0.7rem 2rem;
  font-family: inherit;
  font-size: 1.2rem;
  color: inherit;
  border-radius: 30px;
  border: none;
}
@media only screen and (max-width: 46.5em) {
  .notify-form input {
    text-align: center;
  }
}
.notify-form label {
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 400;
}
.notify-form__response {
  position: absolute;
  display: none;
  color: #77be38;
  margin-top: 1rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 46.5em) {
  .notify-form__response {
    bottom: 0;
    margin-bottom: -2rem;
  }
}

.btn--notifications {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.5rem 1.6rem;
  background-color: #f6cd0e;
  color: var(--primaryColor-400);
  padding: 0.7rem 2rem;
}

.btn--notifications:hover {
  background-color: #fff;
  box-shadow: 0 0 0 0.1rem #f6cd0e;
}

.section-benefits {
  margin-top: 9rem;
  position: relative;
  padding: 6rem 15rem 15rem 5rem;
  overflow-x: hidden;
}
@media only screen and (max-width: 64em) {
  .section-benefits {
    padding: 6rem;
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .section-benefits {
    padding: 3rem;
  }
}
@media only screen and (max-width: 33em) {
  .section-benefits {
    margin-top: 0;
  }
}
.section-benefits__container {
  max-width: 106rem;
  margin: 0 auto;
  padding-right: 8rem;
}
@media only screen and (max-width: 64em) {
  .section-benefits__container {
    max-width: 90rem;
    padding-right: 0;
  }
}
@media only screen and (max-width: 46.5em) {
  .section-benefits__container {
    width: 100%;
    padding-right: 0;
  }
}

.benefits-content {
  display: flex;
  gap: 8rem;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 64em) {
  .benefits-content {
    gap: 12rem;
  }
}
@media only screen and (max-width: 57em) {
  .benefits-content {
    gap: 9rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .benefits-content {
    gap: 0rem;
  }
}
@media only screen and (max-width: 33em) {
  .benefits-content {
    flex-direction: column;
  }
}
.benefits-content--2 {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 64em) {
  .benefits-content--2 {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 57em) {
  .benefits-content--2 {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .benefits-content--2 {
    position: relative;
  }
}
@media only screen and (max-width: 33em) {
  .benefits-content--2 {
    margin-bottom: 12rem;
  }
}

@media only screen and (max-width: 64em) {
  .benefits-img__content-2 {
    position: relative;
  }
}
@media only screen and (max-width: 64em) {
  .benefits-img__1, .benefits-img__2, .benefits-img__3 {
    transform: scale(80%);
  }
}
@media only screen and (max-width: 46.5em) {
  .benefits-img__1, .benefits-img__2, .benefits-img__3 {
    transform: scale(50%);
  }
}
@media only screen and (max-width: 33em) {
  .benefits-img__1, .benefits-img__2, .benefits-img__3 {
    transform: scale(80%);
  }
}

@media only screen and (max-width: 33em) {
  .benefits-text {
    order: 2;
  }
}
@media only screen and (max-width: 46.5em) {
  .benefits-text h3 {
    font-size: 2.8rem;
  }
}

.arrows {
  text-align: center;
}
@media only screen and (max-width: 64em) {
  .arrows {
    display: none;
  }
}
.arrows img {
  width: 20%;
  position: relative;
  left: 5%;
  z-index: 100;
}

.cloud__left {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  z-index: -1;
}
@media only screen and (max-width: 64em) {
  .cloud__left {
    width: 60%;
  }
}
@media only screen and (max-width: 33em) {
  .cloud__left {
    width: 80%;
    top: 5%;
  }
}
.cloud__right {
  position: absolute;
  bottom: 0rem;
  right: 0;
  transform: translate(10%, -10%);
  width: 50%;
  height: auto;
}
@media only screen and (max-width: 64em) {
  .cloud__right {
    width: 180%;
    transform: translate(35%, 70%);
  }
}
@media only screen and (max-width: 46.5em) {
  .cloud__right {
    width: 150%;
    transform: translate(25%, 65%);
  }
}
@media only screen and (max-width: 33em) {
  .cloud__right {
    width: 140%;
    transform: translate(35%, 70%);
  }
}

.highlight-yellow {
  color: #f6cd0e;
}

.highlight-green {
  color: #77be38;
}

.highlight-pink {
  color: #903f98;
}

.highlight-blue {
  color: #0040bf;
}

.section-possibilities {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  text-align: center;
  padding: 5rem 6rem;
  overflow: hidden;
}
@media only screen and (max-width: 70em) {
  .section-possibilities {
    padding: 3rem 6rem;
  }
}
@media only screen and (max-width: 64em) {
  .section-possibilities {
    padding: 5rem 6rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .section-possibilities {
    padding: 0;
    gap: 3rem;
  }
}
@media only screen and (max-width: 33em) {
  .section-possibilities h3 {
    font-size: 2.4rem;
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .section-possibilities h3 {
    padding: 0 2rem;
  }
}

.possibilities-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 64em) {
  .possibilities-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 33em) {
  .possibilities-container {
    grid-template-columns: 1fr;
  }
}

.possibility {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  aspect-ratio: 1/1;
  padding: 3rem;
}
@media only screen and (max-width: 70em) {
  .possibility {
    padding: 2rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .possibility {
    padding: 1rem;
  }
}
@media only screen and (max-width: 33em) {
  .possibility {
    padding: 4rem;
  }
}
.possibility img {
  width: 25%;
  height: auto;
}
@media only screen and (max-width: 57em) {
  .possibility img {
    width: 15%;
  }
}
@media only screen and (max-width: 33em) {
  .possibility img {
    width: 25%;
  }
}
.possibility h5 {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 70em) {
  .possibility h5 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 33em) {
  .possibility h5 {
    font-size: 2.4rem;
  }
}

/* Prvi box sa slikom */
.possibility:first-child {
  padding: 0;
}
.possibility:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Održava proporcije slike i pokriva ceo kvadrat */
  background-color: #f6cd0e;
}

.possibility-1 {
  background-color: #f6cd0e;
}

.possibility-2 {
  background-color: #e4c6df;
}

/*
.possibility-3 {
  background-color: var(--primaryColor-200);
  color: white;
}
  */
.possibility-4 {
  background-color: #ffe97c;
}

.possibility-5 {
  background-color: #d7e552;
}

.section-slider {
  background-color: var(--ligthGrayColor-100);
  padding: 5rem 0;
  padding-bottom: 0;
  overflow: hidden;
}

.slide {
  justify-content: center;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 20rem 0;
  padding: 5rem;
  width: 90%;
  max-width: 150rem;
  min-height: 60vh;
}
@media only screen and (max-width: 70em) {
  .slide-content {
    min-height: 45vh;
    margin: 10rem 0;
  }
}
@media only screen and (max-width: 46.5em) {
  .slide-content {
    flex-direction: column;
    align-items: flex-start;
    margin: 5rem 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}
@media only screen and (max-width: 33em) {
  .slide-content {
    padding: 5rem 3rem;
  }
}
.slide-content__img {
  position: relative;
  width: 35%;
  flex-shrink: 0;
}
.slide-content__img img {
  width: 130%;
  display: block;
  position: absolute;
  left: -25%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 100em) {
  .slide-content__img img {
    left: -20%;
  }
}
@media only screen and (max-width: 70em) {
  .slide-content__img img {
    width: 160%;
  }
}
@media only screen and (max-width: 64em) {
  .slide-content__img img {
    width: 180%;
  }
}
@media only screen and (max-width: 46.5em) {
  .slide-content__img img {
    position: static;
    left: 0;
    transform: translateY(0);
    margin-bottom: 3rem;
    width: 250%;
    margin-top: -50%;
  }
}
@media only screen and (max-width: 33em) {
  .slide-content__img img {
    width: 300%;
  }
}
@media only screen and (max-width: 24.375em) {
  .slide-content__img img {
    margin-top: -100%;
  }
}
.slide-content__explanation {
  flex: 1;
  padding-left: 15%;
  padding-right: 5%;
}
@media only screen and (max-width: 64em) {
  .slide-content__explanation {
    padding-left: 20%;
  }
}
@media only screen and (max-width: 57em) {
  .slide-content__explanation {
    padding-left: 25%;
  }
}
@media only screen and (max-width: 46.5em) {
  .slide-content__explanation {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 46.5em) {
  .slide-content__explanation--text {
    max-width: 90%;
  }
}
@media only screen and (max-width: 24.375em) {
  .slide-content__explanation--text {
    max-width: 100%;
  }
}
.slide-content__explanation--text p {
  font-size: 2.4rem;
}
@media only screen and (max-width: 64em) {
  .slide-content__explanation--text p {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .slide-content__explanation--text p {
    font-size: 2.4rem;
  }
}
.slide-content__explanation--text h3 {
  text-align: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 64em) {
  .slide-content__explanation--text h3 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .slide-content__explanation--text h3 {
    font-size: 3.6rem;
  }
}

.hanging-indent {
  position: relative;
  padding-left: 25px;
}
.hanging-indent__number {
  position: absolute;
  left: 0;
  font-weight: bold;
}
.hanging-indent span {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.navigation {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.navigation button {
  width: 80px;
  height: 24px;
  background-color: var(--ligthGrayColor-400);
  color: white;
  border: none;
  border-radius: 100px;
  outline: none;
  font-size: 16px;
  margin: 0 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
@media only screen and (max-width: 46.5em) {
  .navigation button {
    width: 120px;
    height: 37px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 33em) {
  .navigation button {
    width: 80px;
    height: 24px;
    font-size: 14px;
  }
}

/* Hover efekat */
.navigation button:hover {
  box-shadow: 0 0 0 2px #f6cd0e;
  transform: scale(1.1);
  background-color: white !important;
  color: var(--ligthGrayColor-400);
}

.navigation .active {
  background-color: #f6cd0e !important;
}

.section-cta {
  background-color: var(--ligthGrayColor-100);
  position: relative;
  min-height: 50vh;
  overflow: hidden;
}
@media only screen and (max-width: 46.5em) {
  .section-cta {
    padding-top: 8rem;
  }
}
.section-cta__container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 100em) {
  .section-cta__container {
    padding: 0 5rem 10rem 10rem;
    width: 80%;
  }
}
@media only screen and (max-width: 70em) {
  .section-cta__container {
    padding: 0;
  }
}
@media only screen and (max-width: 64em) {
  .section-cta__container {
    width: 100%;
    padding-left: 5rem;
  }
}

.cloud-cta__left {
  position: absolute;
  top: 0;
  left: -10%;
  width: 55%;
}
@media only screen and (max-width: 57em) {
  .cloud-cta__left {
    width: 80%;
  }
}
.cloud-cta__right {
  position: absolute;
  right: -30%;
}
@media only screen and (min-width: 100em) {
  .cloud-cta__right {
    right: -20%;
  }
}
@media only screen and (max-width: 64em) {
  .cloud-cta__right {
    right: -10%;
    width: 55%;
  }
}
@media only screen and (max-width: 46.5em) {
  .cloud-cta__right {
    width: 85%;
  }
}
@media only screen and (max-width: 24.375em) {
  .cloud-cta__right {
    bottom: 30%;
    width: 100%;
  }
}

.arrows-cta {
  text-align: center;
  transform: translate(-5%, 150%);
}
.arrows-cta img {
  width: 15%;
}
@media only screen and (min-width: 100em) {
  .arrows-cta img {
    width: 18%;
  }
}
@media only screen and (max-width: 70em) {
  .arrows-cta img {
    width: 15%;
  }
}
@media only screen and (max-width: 46.5em) {
  .arrows-cta img {
    display: none;
  }
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  gap: 5rem;
}
@media only screen and (max-width: 46.5em) {
  .cta-content {
    flex-direction: column;
    order: 2;
    gap: 0;
  }
}
.cta-content__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 10rem;
  padding-right: 2rem;
  flex-basis: 55%;
}
@media only screen and (min-width: 100em) {
  .cta-content__text {
    flex-basis: 40%;
  }
}
@media only screen and (max-width: 64em) {
  .cta-content__text {
    flex-basis: 80%;
  }
}
@media only screen and (max-width: 57em) {
  .cta-content__text {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 46.5em) {
  .cta-content__text {
    order: 1;
    margin: 5rem 0 8rem 0;
    gap: 2.5rem;
  }
}
.cta-content__button {
  display: none;
  margin-top: -0.5rem;
}
@media only screen and (max-width: 46.5em) {
  .cta-content__button {
    margin-top: 0;
  }
  .cta-content__button img {
    width: 35%;
  }
}
@media only screen and (max-width: 46.5em) and (max-width: 33em) {
  .cta-content__button img {
    width: 45%;
  }
}
@media only screen and (max-width: 46.5em) and (max-width: 24.375em) {
  .cta-content__button img {
    width: 60%;
  }
}
.cta-content__images {
  display: grid; /* Postavlja slike u istu mrežu */
  transform: translateX(5%);
}
.cta-content__images img,
.cta-content__images picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
  grid-column: 1/-1; /* Obe slike zauzimaju istu kolonu */
  grid-row: 1/-1; /* Obe slike zauzimaju isti red */
}
@media only screen and (max-width: 64em) {
  .cta-content__images img,
  .cta-content__images picture {
    width: 90%;
    height: 90%;
    transform: translateX(15%);
  }
}
@media only screen and (max-width: 64em) {
  .cta-content__images img,
  .cta-content__images picture {
    width: 100%;
    height: 100%;
    transform: translateX(5%);
  }
}
@media only screen and (max-width: 33em) {
  .cta-content__images img,
  .cta-content__images picture {
    width: 110%;
    height: 110%;
    transform: translateX(0);
  }
}
.cta-content__images__phone {
  z-index: 2;
}
.cta-content__images__phone-back {
  z-index: 1;
  position: relative;
  width: 95% !important;
  height: 95% !important;
  top: -5rem;
  right: 3rem;
}
@media only screen and (max-width: 64em) {
  .cta-content__images__phone-back {
    width: 85% !important;
    height: 85% !important;
    top: -3rem;
    right: 3rem;
  }
}

.cta-button {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  margin-top: 5rem;
  display: none;
}
@media only screen and (min-width: 100em) {
  .cta-button {
    margin-top: 10rem;
  }
}
@media only screen and (max-width: 64em) {
  .cta-button {
    margin-top: 2rem;
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 57em) {
  .cta-button {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .cta-button {
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 33em) {
  .cta-button {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.cta-button__text {
  font-family: "Coolvetica Rg", sans-serif;
  font-size: 4.2rem;
  color: #903f98;
}
@media only screen and (max-width: 57em) {
  .cta-button__text {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .cta-button__text {
    font-size: 4.2rem;
  }
}
@media only screen and (max-width: 33em) {
  .cta-button__text {
    text-align: center;
  }
}
.cta-button__button-link {
  line-height: 0;
}
.cta-button__button-img {
  display: block;
}

.section-squared--yellow {
  background: rgba(255, 233, 124, 0.541) url("/assets/images/kocka.svg") repeat top left/auto;
  background: rgba(255, 233, 124, 0.541) url("/assets/images/kocka.svg") repeat top left/auto;
  overflow-x: hidden;
}

.section-mission {
  display: flex;
  gap: 5rem;
  padding: 8rem 5rem;
}
@media only screen and (min-width: 100em) {
  .section-mission {
    gap: 10rem;
    padding: 8rem 10rem;
  }
}
@media only screen and (max-width: 70em) {
  .section-mission {
    padding: 8rem 0rem;
  }
}
@media only screen and (max-width: 64em) {
  .section-mission {
    position: relative;
    gap: 0;
    padding-left: 15rem;
    padding-right: 15rem;
  }
}
@media only screen and (max-width: 57em) {
  .section-mission {
    flex-direction: column;
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .section-mission {
    padding: 18rem 5rem;
  }
}
.section-mission__text h3 {
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 5.8rem;
}
.section-mission__text p {
  margin-top: 3rem;
  line-height: 1.4;
  font-size: 2.4rem;
}
@media only screen and (max-width: 33em) {
  .section-mission__text p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 100em) {
  .section-mission img {
    width: 20rem;
    height: 20rem;
  }
}
@media only screen and (max-width: 70em) {
  .section-mission img {
    width: 15rem;
    height: 15rem;
  }
}
@media only screen and (max-width: 64em) {
  .section-mission img {
    position: absolute;
  }
}
@media only screen and (max-width: 46.5em) {
  .section-mission img {
    width: 20rem;
    height: 20rem;
  }
}

.icon-square {
  align-self: flex-start;
}
@media only screen and (max-width: 64em) {
  .icon-square {
    top: -1%;
    left: -3%;
    align-self: flex-start;
  }
}
@media only screen and (max-width: 46.5em) {
  .icon-square {
    top: -1.5%;
    left: -9%;
  }
}

.icon-circle {
  align-self: flex-end;
}
@media only screen and (max-width: 64em) {
  .icon-circle {
    bottom: 0;
    right: -1.5%;
  }
}
@media only screen and (max-width: 46.5em) {
  .icon-circle {
    bottom: 0;
    right: -3%;
  }
}

.section-form-cta {
  background-color: var(--ligthGrayColor-100);
  overflow-x: hidden;
  padding: 10rem 5rem;
}
@media only screen and (max-width: 33em) {
  .section-form-cta {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}

.form-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 124rem;
  margin: 0 auto;
  column-gap: 5rem;
}
@media only screen and (max-width: 64em) {
  .form-cta__grid {
    grid-template-columns: 1fr;
  }
}

.form-cta__form {
  display: grid;
  width: 100%;
  row-gap: 1.6rem;
  align-self: start;
  padding: 0 5rem;
  padding-bottom: 0;
}
@media only screen and (max-width: 64em) {
  .form-cta__form {
    width: 80%;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 46.5em) {
  .form-cta__form {
    padding: 2rem;
    width: 100%;
  }
}
@media only screen and (max-width: 33em) {
  .form-cta__form {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.form-cta__form select,
.form-cta__form input,
.form-cta__form textarea {
  width: 100%;
  padding: 1.2rem 2rem;
  font-family: inherit;
  font-size: 1.6rem;
  color: inherit;
  border-radius: 30px;
  border: none;
}

.form-cta__form select {
  overflow: hidden !important;
}

.form-cta__form select option {
  font-size: inherit;
  line-height: 10 !important;
}

.form-cta__form textarea {
  height: auto;
  min-height: 24rem;
}

.form-cta__form input::placeholder,
.form-cta__form textarea::placeholder {
  color: var(--ligthGrayColor-400);
}

.form-cta__form *:focus {
  outline: none;
  box-shadow: 0 0 0 0.1rem #f6cd0e;
}

.form-cta__logo img {
  border: 2rem solid rgba(57, 122, 171, 0.2);
}
@media only screen and (max-width: 57em) {
  .form-cta__logo img {
    display: none;
  }
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  border-radius: 50px;
  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.btn--form {
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.2rem 1.6rem;
  background-color: #f6cd0e;
  color: var(--primaryColor-400);
}

.btn--form:hover {
  background-color: #fff;
  box-shadow: 0 0 0 0.1rem #f6cd0e;
}

.section-form-delete-account {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem;
}

.form-delete-account__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.form-delete-account__form input {
  width: 100%;
  padding: 1.2rem 2rem;
  font-family: inherit;
  font-size: 1.6rem;
  color: inherit;
  border-radius: 30px;
  border: 1px solid var(--ligthGrayColor-300);
}

.section-footer {
  background-color: #e4c6df;
}

.footer-container {
  padding: 6rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 46.5em) {
  .footer-container {
    padding: 3rem;
  }
}
@media only screen and (max-width: 46.5em) and (max-width: 33em) {
  .footer-container {
    flex-direction: column;
    padding-bottom: 1rem;
  }
}
.footer-container a {
  text-decoration: none;
  color: var(--primaryColor);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  width: 50rem;
}
@media only screen and (max-width: 57em) {
  .footer-brand {
    width: 45rem;
  }
}
@media only screen and (max-width: 46.5em) {
  .footer-brand {
    width: 33rem;
  }
}
@media only screen and (max-width: 33em) {
  .footer-brand {
    width: 100%;
    align-items: center;
  }
}
.footer-brand p {
  font-weight: 500;
  line-height: 1.4;
}
@media only screen and (max-width: 33em) {
  .footer-brand p {
    text-align: center;
  }
}
.footer-brand__logo {
  width: 80%;
}
@media only screen and (max-width: 46.5em) {
  .footer-brand__logo {
    width: 70%;
  }
}
.footer-brand__logo-link {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 46.5em) {
  .footer-brand__logo-link {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 33em) {
  .footer-brand__logo-link {
    align-items: center;
  }
}
.footer-brand img {
  border: 4px solid white;
  width: 12rem;
  height: 12rem;
}
.footer-brand__styled-line {
  display: none;
}
@media only screen and (max-width: 46.5em) {
  .footer-brand__styled-line {
    display: block;
    border: none;
    border-top: 1px solid rgba(64, 55, 76, 0.4);
    margin: 1rem 0;
  }
}

.styled-line {
  border: none;
  border-top: 1px solid rgba(64, 55, 76, 0.4);
  margin: 1rem 6rem;
}

.footer-nav {
  align-self: center;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.footer-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 33em) {
  .footer-nav__list li a {
    justify-content: center;
  }
}

.footer-link:link,
.footer-link:visited {
  text-decorationq: none;
  font-size: 1.6rem;
  color: var(--primaryColor);
  transition: all 0.3s;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

.copyright {
  text-align: center;
  padding-bottom: 3rem;
  width: 80%;
  margin: 0 auto;
  font-size: 1.4rem;
}

#cookie-banner {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: white;
  color: var(--primaryColor);
  padding: 15px;
  text-align: center;
  border-radius: 5px;
  z-index: 1000;
}

.cookie-container {
  padding: 5rem 5rem;
}

.cookie-container button {
  margin-top: 2rem;
  margin-left: 2rem;
  padding: 1.2rem 1.6rem;
  border: none;
  border-radius: 50px;
  font-size: 1.6rem;
  color: var(--primaryColor);
  width: 13.5rem;
  cursor: pointer;
}

.cookie-container button:first-of-type {
  background: #f6cd0e;
}

.cookie-container button:last-of-type {
  background: var(--ligthGrayColor-400);
}

.section-hero__blog {
  background: var(--lightGrayColor-100) url(/assets/images/kocka.svg) repeat top left/auto;
  background: #f3f3f3 url(/assets/images/kocka.svg) repeat top left/auto;
}

.blog__heading {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
}
.blog__heading--title {
  color: #c07a19;
  font-size: 4.8rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 57em) {
  .blog__heading--title {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 23.125em) {
  .blog__heading--title {
    font-size: 2.8rem;
  }
}
.blog__heading--date {
  color: black;
  font-weight: 500;
}

.breadcrumb {
  color: #c07a19;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.breadcrumb a {
  color: #c07a19;
  text-decoration: none;
  transition: text-decoration 0.2s;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: #aaa;
  font-size: 1.6rem;
}

blockquote {
  font-style: italic;
  background: rgba(228, 198, 223, 0.3764705882);
  border-left: 4px solid #903f98;
  padding: 1.2rem 2rem;
  margin: 2rem 0;
  color: #333;
  border-radius: 8px;
  position: relative;
}
blockquote em {
  display: block;
  font-style: normal;
  font-size: 1.2rem;
  color: #7c6794;
  text-align: right;
  margin-top: 1rem;
}

@media only screen and (max-width: 64em) {
  .front-blog-list__container {
    order: -1;
  }
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.blog-list__link {
  display: flex;
  align-items: flex-start;
  gap: 1.7rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: box-shadow 0.2s;
  padding: 1.2rem;
  max-width: 100%;
}
@media only screen and (max-width: 46.5em) {
  .blog-list__link {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 1rem;
  }
}
.blog-list__item {
  margin-bottom: 2rem;
  list-style: none;
}
.blog-list__item:first-child .blog-list__content {
  width: 50%;
}
@media only screen and (max-width: 64em) {
  .blog-list__item:first-child .blog-list__content {
    width: 100%;
  }
}
.blog-list__item:nth-child(even) .blog-list__link {
  border: 2px solid #ffe8f4;
}
.blog-list .blog-list__link:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.blog-list__img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  background: #f7f7fc;
  margin: 0;
  display: block;
}
@media only screen and (max-width: 46.5em) {
  .blog-list__img {
    width: 100%;
    height: 180px;
    max-width: 100%;
  }
}
.blog-list__content {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 46.5em) {
  .blog-list__content {
    margin-top: 1rem;
  }
}
.blog-list__title {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 600;
  color: #c07a19;
  margin-bottom: 0.3rem;
  margin-top: 0;
}
.blog-list__desc {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  margin-top: 0;
  line-height: 1.6;
  color: black;
}
.blog-list__date {
  font-size: 0.93rem;
  color: #a39ab1;
  margin-top: auto;
  display: block;
}

.blog-post {
  padding: 2rem 0;
}
.blog-post article h2:first-of-type {
  margin-top: 6rem;
}
.blog-post article h2 {
  font-size: 3.6rem;
  line-height: 1.2;
}
@media only screen and (max-width: 57em) {
  .blog-post article h2 {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 23.125em) {
  .blog-post article h2 {
    font-size: 2.2;
  }
}
.blog-post article h3 {
  font-size: 2.8rem;
}
@media only screen and (max-width: 57em) {
  .blog-post article h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 23.125em) {
  .blog-post article h3 {
    font-size: 1.6;
  }
}
.blog-post article h2,
.blog-post h3,
.blog-post h4 {
  margin-top: 2rem;
  font-weight: 500;
  font-family: inherit;
}
.blog-post article > p:first-of-type {
  font-style: italic;
  font-size: 2rem;
}
.blog-post article img {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  border-radius: 12px;
}
.blog-post p {
  line-height: 1.5;
  margin-top: 1rem;
}
.blog-post ul {
  list-style-type: disc;
  padding-left: 25px;
  font-weight: 400;
}
.blog-post li {
  position: relative;
  padding-left: 8px;
  text-indent: 0px;
  font-size: 1.6rem;
}

.blog-cta__link {
  display: inline-block;
  text-decoration: none;
  color: var(--primaryColor-400);
  background: linear-gradient(135deg, #f6cd0e, #ffd700);
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(246, 205, 14, 0.1);
}
.blog-cta__link:hover, .blog-cta__link:focus {
  background: linear-gradient(135deg, #ffd700, #f6cd0e);
  color: #fff;
  box-shadow: 0 6px 24px rgba(246, 205, 14, 0.18);
  text-decoration: none;
  outline: none;
}
.blog-cta__link:active {
  background: linear-gradient(135deg, #ffd700 70%, #e7b800 100%);
  color: #fff;
}
.blog-cta__paragraph {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 46.5em) {
  .blog-cta__paragraph {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
