/*-- -------------------------- -->
<---          Root              -->
<--- -------------------------- -*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --black: #000;
  --green: #005355;
  --white: #fff;
}
/* body::-webkit-scrollbar,
main::-webkit-scrollbar {
  display: none;
} */
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
}
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--white);
}
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
}
p,
li,
a {
  margin: 0;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
a:hover,
button:hover {
  cursor: pointer;
}
li {
  list-style-type: none;
}
button {
  border: none;
}

/*-- -------------------------- -->
<---     Reused components      -->
<--- -------------------------- -*/

.h3 {
  text-align: center;
  font-size: 2.7vh;
  font-style: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .h3 {
    font-size: 1.6rem;
    letter-spacing: 1.6px;
  }
}
.h2 {
  text-align: center;
  font-size: 6rem;
  font-style: normal;
  font-weight: 300;
  text-transform: uppercase;
}
.desk {
  display: block;
}
@media screen and (max-width: 480px) {
  .desk {
    display: none;
  }
}
.mob {
  display: none;
}
@media screen and (max-width: 480px) {
  .mob {
    display: block;
    margin-bottom: 2.5vh;
  }
}
/*-- -------------------------- -->
<---            nav             -->
<--- -------------------------- -*/
.wrapper-nav {
  transform: translateY(-100%);
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease-in-out;
}
.transform {
  transform: translateY(0%);
}
.nav-ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.nav-li {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .nav-li {
    font-size: 2.8rem;
  }
}
.nav-li:hover {
  cursor: pointer;
}
.nav-logo {
  height: auto;
  max-width: 40rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 480px) {
  .nav-logo {
    max-width: 80%;
  }
}
/*-- -------------------------- -->
<---          Header            -->
<--- -------------------------- -*/
.header {
  z-index: 5;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 4.6vh 0 10vh 0;
}
@media screen and (max-width: 480px) {
  .header {
    justify-content: flex-end;
    padding: 7.3vh 0 15vh 0;
  }
}
.video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-height: 100%;
  z-index: -1;
}
.video {
  z-index: -1;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(
    180deg,
    rgba(0, 47, 48, 0.5) 0%,
    rgba(0, 83, 85, 0.5) 80%
  );
}
.nav-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 6.3vh;
}
@media screen and (max-width: 480px) {
  .nav-bars {
    gap: 1rem;
    margin: 0 3.7rem auto 0;
    align-self: flex-end;
    gap: 0.5rem;
  }
}
.nav-bars:hover {
  cursor: pointer;
}
.bar {
  display: block;
  width: 5.5rem;
  height: 0.7rem;
  background: var(--white);
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 2000;
}
@media screen and (max-width: 480px) {
  .bar {
    display: block;
    width: 3rem;
    height: 0.4rem;
  }
}
/*.change .bar1 {
  -webkit-transform: rotate(-45deg)
    translate(0.2604166666666667vw, 0.5208333333333333vw);
  transform: rotate(-45deg) translate(-0.5729166666666667vw, 0.625vw);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  -webkit-transform: rotate(45deg)
    translate(-0.2604166666666667vw, -0.5208333333333333vw);
  transform: rotate(45deg)
    translate(-0.5729166666666667vw, -0.6770833333333333vw);
}*/
.header-h1 {
  height: 40vh;
  width: 100%;
  margin: 5.5vh 0;
  padding: 0 2rem;
}
@media screen and (max-width: 480px) {
  .header-h1 {
    height: min-content;
    margin: 0 0 2.6vh 0;
  }
}
.button {
  position: relative;
  z-index: 100000;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 2rem 4rem;
  margin-top: 5vh;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out,
    border 0.3s ease-in-out;
}
@media screen and (max-width: 480px) {
  .button {
    font-size: 1.8rem;
    margin-top: 7.3vh;
  }
}
.button:hover {
  color: var(--green);
  background: rgba(255, 255, 255, 0.9);
}
.close {
  width: 5rem;
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 480px) {
  .close {
    width: 4rem;
  }
}
.close:hover {
  cursor: pointer;
}
.oblak {
  position: absolute;
  top: 0;
  left: 0;
}
.oblak2 {
  position: absolute;
  top: 15vh;
  right: 0;
}
.oblak3 {
  display: none;
}
.oblak4 {
  display: none;
}
@media screen and (max-width: 1400px) {
  .oblak {
    width: 20vw;
  }
  .oblak2 {
    width: 40vw;
  }
}
@media screen and (max-width: 980px) {
  .oblak {
    display: none;
  }
  .oblak2 {
    display: none;
  }
  .oblak3 {
    width: 35vw;
    display: block;
    position: absolute;
    left: 0;
    top: 10vh;
  }
  .oblak4 {
    display: block;
    position: absolute;
    right: 0;
    width: 55vw;
    top: 40vh;
  }
}
/*-- -------------------------- -->
<---        Section 2           -->
<--- -------------------------- -*/
.section-2 {
  width: 100%;
  padding: 8.3rem 0;
  background: var(--green);
}

.section-2-h1 {
  color: var(--white);
  text-align: center;
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 7rem;
}

.section-2-wrap {
  max-width: 170rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

@media screen and (max-width: 480px) {
  .section-2-wrap {
    max-width: 100%;
    padding: 0;
  }
}

.people {
  display: block;
}

@media screen and (max-width: 480px) {
  .people {
    display: none;
  }
}

.section-2-grid {
  display: none;
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.425vw;
  row-gap: 8.25vw; */
}

@media screen and (max-width: 480px) {
  .section-2-grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 9rem;
  }
}

.section-2-items {
  display: block;
  position: relative;
  width: 100%;
  max-width: 40rem;
  height: 60rem;
}
@media screen and (max-width: 780px) {
  .section-2-items {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .section-2-items {
    max-width: 100%;
    height: 100%;
    aspect-ratio: 1/1.5;
  }
}

.section-2-item {
  width: 100%;
  max-width: 40rem;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
}
.section-2-items-1 {
  background: url(./img/govornici/josip_ninic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-2 {
  background: url(./img/govornici/julijan_salic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-3 {
  background: url(./img/govornici/walter_renner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-4 {
  background: url(./img/govornici/zoran_simunic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-5 {
  background: url(./img/govornici/marija_nahod.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-6 {
  background: url(./img/govornici/goran_krajacic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-7 {
  background: url(./img/govornici/maja_pokrovac.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-8 {
  background: url(./img/govornici/igor_duic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-9 {
  background: url(./img/govornici/petra_sentic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-10 {
  background: url(./img/govornici/zdravko_vladanovic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-11 {
  background: url(./img/govornici/nenad_ukropina.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.section-2-items-12 {
  background: url(./img/govornici/zoran_kordic.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.section-2-items-13 {
  background: url(./img/govornici/ivan_sego.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

@media screen and (max-width: 780px) {
  .section-2-items {
    background-position: center;
  }
}

.section-2-items-info {
  width: 100%;
  max-width: 40rem;
  margin-top: 7rem;
}
@media screen and (max-width: 480px) {
  .section-2-items-info {
    background: linear-gradient(
        0deg,
        rgba(0, 83, 85, 0.2) 0%,
        rgba(0, 83, 85, 0.2) 100%
      ),
      linear-gradient(0deg, rgba(0, 83, 85, 0.9) 0%, rgba(0, 83, 85, 0.9) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    margin-top: unset;
    padding: 1rem 1rem 3rem 1rem;
  }
}
.section-2-items-h2 {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 480px) {
  .section-2-items-h2 {
    /* min-height: 9rem; */
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.3;
    text-transform: uppercase;
  }
}
.section-2-items-p {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .section-2-items-p {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
  }
}
.swiper-wrapper {
  margin-bottom: 100px;
}

/*.swiper-slide {
  padding-left: 35px;
}*/

.items-mob-hide {
  display: none;
}

.button-load-more {
  display: none;
}

@media screen and (max-width: 480px) {
  .button-load-more {
    position: relative;
    z-index: 100000;
    display: block;
    margin: 0 auto;
    color: var(--white);
    background: none;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--white);
    margin-top: 9rem;
    padding: 2rem 5rem;
  }

  .button-load-more:hover {
    cursor: pointer;
  }
}
.swiper-pagination-bullet-active {
  background: var(--white) !important;
}

/*-- -------------------------- -->
<---        Section 3           -->
<--- -------------------------- -*/
.section-3 {
  width: 100%;
  height: 60vh;
  background: url(./img/kuca.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .section-3 {
    height: 90vh;
    background: url(./img/kuca-mob.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
/*-- -------------------------- -->
<---        Section 4           -->
<--- -------------------------- -*/
.section-4 {
  width: 100%;
  height: 100%;
  background: url(./img/section-4.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  padding: 8.3rem 0 12.5rem 0;
}
@media screen and (max-width: 980px) {
  .section-4 {
    padding: 5rem 0;
  }
}
.section-4-wrap {
  max-width: 101.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6rem;
  margin: 8.3rem auto 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 980px) {
  .section-4-wrap {
    max-width: 60rem;
  }
}
@media screen and (max-width: 600px) {
  .section-4-wrap {
    max-width: 100%;
  }
}
.section-4-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-4-item-right {
  max-width: 56.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}
.item-label {
  color: var(--green);
  text-align: center;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  background: var(--white);
  padding: 0.5rem 4rem 0.2rem 4rem;
}
.item-h4 {
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.14;
}
.item-p {
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
}
.section-4-img {
  display: block;
  height: auto;
  max-width: 300px;
}
@media screen and (max-width: 980px) {
  .section-4-img {
    display: none;
  }
}
/*-- -------------------------- -->
<---        Section 5           -->
<--- -------------------------- -*/
.section-5 {
  width: 100%;
  height: 60vh;
  background: url(./img/fingerprint.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .section-5 {
    height: 80vh;
  }
}
/*-- -------------------------- -->
<---        Section 6           -->
<--- -------------------------- -*/
.section-6 {
  width: 100%;
  height: 100%;
  background: var(--green);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 15.7rem 0 10.4rem 0;
}
@media screen and (max-width: 980px) {
  .section-6 {
    padding: 10rem 0;
  }
}
.form-wrap {
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}
@media screen and (max-width: 980px) {
  .form-wrap {
    max-width: 50rem;
    gap: 5rem;
    padding: 0 4rem;
    gap: 4.8rem;
  }
}
.form-1 {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .form-1 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4.8rem;
  }
}
.form-1-columns {
  width: 100%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 980px) {
  .form-1-columns {
    gap: 4.8rem;
  }
}
.frmblock {
  width: 100%;
}
.textbox {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--white);
  padding-bottom: 2rem;
  color: var(--white);
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
}
@media screen and (max-width: 980px) {
  .textbox {
    padding-bottom: 1.8rem;
  }
}
.textbox::placeholder {
  color: var(--white);
  opacity: 0.3;
  font-size: 3rem;
  font-weight: 300 !important;
  text-transform: uppercase;
}
@media screen and (max-width: 980px) {
  .textbox::placeholder {
    font-size: 1.8rem;
  }
}
input[type="text"]:focus {
  outline: none;
}
.form-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 7.5rem;
}
@media screen and (max-width: 980px) {
  .form-2 {
    gap: 2.7rem;
  }
}
.frmrules {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3.5rem;
}
@media screen and (max-width: 980px) {
  .frmrules {
    gap: 0.5rem;
  }
}
.rules {
  max-width: 76.8rem;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width: 980px) {
  .rules {
    max-width: 100%;
    font-size: 1.2rem;
  }
}
.buttonblock {
  width: max-content;
  align-self: center;
}
.sendbtn {
  margin-top: 2.3rem;
}
.error {
  color: rgb(255, 39, 39);
  margin-top: 1rem;
  text-align: center;
}
.success {
  border: none;
  font-size: 3rem;
  background: white;
  color: #005355;
  font-weight: bold;
}
.success:hover {
  background: none;
  color: var(--white);
}
/*-- -------------------------- -->
<---        Section 7           -->
<--- -------------------------- -*/
.section-7 {
  width: 100%;
  height: 60vh;
  background: url(./img/vjetrenjaca.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .section-7 {
    height: 90vh;
  }
}
/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/
.footer {
  width: 100%;
}
.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
  margin: 8rem 0 11rem 0;
}
.organizator {
  color: var(--black);
  font-size: 2.5rem;
  text-transform: uppercase;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 60vh;
  background: url(./img/auto.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .footer-bottom {
    height: 90vh;
    background: url(./img/auto-mob.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.footer-bottom-wrap {
  width: 100%;
  max-width: 120rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 7.6rem;
}
@media screen and (max-width: 480px) {
  .footer-bottom-wrap {
    max-width: 90vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 5rem;
  }
}
.be-logo {
  width: 35vw;
  max-width: 65rem;
}
@media screen and (max-width: 1300px) {
  .be-logo {
    width: 100%;
    max-width: 40rem;
    margin-left: 10vw;
  }
}
@media screen and (max-width: 480px) {
  .be-logo {
    width: 90%;
  }
}
.up {
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
}
.up:hover {
  cursor: pointer;
}
.policies {
  width: 100%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12rem;
  padding: 4rem 1rem;
}
@media screen and (max-width: 480px) {
  .policies {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}
.policies-a {
  font-size: 1.7rem;
  letter-spacing: 0.85px;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .policies-a {
    font-size: 1.4rem;
  }
}
.logo-partneri {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
}
.partneri {
  margin-top: 3.8rem;
}
/* custom checkbox */
.container {
  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 1rem;
}
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 35px;
  width: 35px;
  background: none;
  border: 1px solid var(--white);
}
@media screen and (max-width: 980px) {
  .checkmark {
    height: 17px;
    width: 17px;
  }
}
.container:hover input ~ .checkmark {
  background: none;
}
.container input:checked ~ .checkmark {
  background: var(--white);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.container input:checked ~ .checkmark:after {
  display: block;
}
.container .checkmark:after {
  left: 14px;
  top: 10px;
  width: 5px;
  height: 10px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 980px) {
  .container .checkmark:after {
    left: 5px;
    top: 3px;
    width: 4px;
    height: 7px;
    border: solid var(--green);
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/* PROGRAM */
.section-program {
  width: 100%;
  margin: 0 auto;
  margin: 10rem 0 15rem 0;
}

@media screen and (max-width: 760px) {
  .section-program {
    margin: 5rem 0;
  }
}

.section-program-wrap {
  width: 65vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4rem;
}

@media screen and (max-width: 760px) {
  .section-program-wrap {
    width: 100%;
  }
}

.section-program-h1 {
  color: var(--green);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  align-self: center;
}

@media screen and (max-width: 760px) {
  .section-program-h1 {
    font-size: 3rem;
  }
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}

@media screen and (max-width: 760px) {
  .program-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.program-left {
  max-width: 50.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4vh;
  padding: 1.1rem 3rem;
}

@media screen and (max-width: 760px) {
  .program-left {
    gap: 5vw;
    padding-bottom: 0;
  }
}

.program-stanice {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 760px) {
  .program-stanice {
    width: 90%;
  }
}

.sat-p {
  color: var(--green);
  font-size: 3rem;
  font-style: normal;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.predavac {
  color: var(--green);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.6;
}

.moderator {
  margin-top: 3rem;
}

.panel-block {
  width: max-content;
  color: var(--white);
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
  padding: 0.5rem 4rem;
  background: var(--green);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.naslov {
  color: var(--green);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.6;
}

.naslov-panela {
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.program-right {
  max-width: 50.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.083vw;
  padding: 1.1rem 3rem;
}

@media screen and (max-width: 760px) {
  .program-right {
    gap: 5vw;
    padding-top: 0;
  }
}
