:root {
  --color-orange: #D97132;
  --color-red: #D84B35;
  --color-sand: #F4E0C0;
  --color-light-sand: #FFF6E4;

  --color-green: #1A5955;
  --color-light-green: #1F938A;
  --color-dark-green: #0B3B2F;
  --color-light-pink: #E4C9D6;
  --color-brown: #985229;

  --color-black: #000;
  --color-white: #fff;
  --color-grey-trans: rgba(217, 217, 217, 0.17);
}

/* commons start */

html {
  overflow-x: hidden;
}
.special-button{
  text-transform: uppercase;
  border-radius: 25px;
  border: 1px solid var(--color-dark-green);
  background-color: var(--color-light-green);
  color: var(--color-sand);
  padding: 7px 20px;
  text-decoration: none;
  transition: all 0.5s;
  margin:0 auto;
  max-width:320px;
  font-size:22px;
  text-align:center;
  cursor:pointer;
}
.special-button:hover
{
  opacity:0.7;
}
.special-button a
{
  color:white;
  text-decoration: none;
}
.map
{
  text-align:center;
  margin:0 auto;
  max-width:1200px;
}
.map-element
{
  width:100%;
  max-width:1200px;
  margin-top:20px;
}
body {
  margin: 0;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  background-color: var(--color-black);
  overflow-x: hidden;
}

main {
  /* padding-top: 80px; */
}

div,
input,
a {
  box-sizing: border-box;
}

section {
  display: block;
  overflow: hidden;
  clear: both;
  position: relative;
  padding: 50px 0;
}

section:not(.hero, .mikrofonas, .speakers) {
  border-bottom: 1px solid var(--color-dark-green);
}

img {
  display: block;
}

header {
  width: 100%;
  background-color: var(--color-orange);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid var(--color-dark-green);
  padding: 10px;
  box-sizing: border-box;
}

header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

header .content>div:nth-child(2) {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.deco-button {
  display:none;
  text-transform: uppercase;
  border-radius: 25px;
  border: 1px solid var(--color-dark-green);
  background-color: var(--color-light-green);
  color: var(--color-sand);
  padding: 7px 20px;
  text-decoration: none;
  transition: all 0.5s;
}

.deco-button:hover {
  color: var(--color-light-green);
  background-color: var(--color-sand);
  border: 1px solid var(--color-dark-green);

}

.content-holder {
  width: 100%;
}

.content {
  width: 100%;
  margin: 0 auto;
  max-width: 1300px;
  position: relative;
  overflow: hidden;
}

.custom-button {
  border-radius: 36px;
  background-color: var(--color-white);
  margin-top: 40px;
  font-size: 21px;
  padding: 20px 45px;
  cursor: pointer;
  transition: 0.5s;
  color: var(--color-black);
  font-weight: 300;
  width: fit-content;
  text-transform: uppercase;
  text-decoration: none;
  animation: pulseColor 2s infinite ease-in-out;
}

.custom-button:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
@keyframes pulseColor {
  0% {
    background-color: var(--color-white);
    color: var(--color-black);
  }
  50% {
    background-color: var(--color-black);
    color: var(--color-white);
  }
  100% {
    background-color: var(--color-white);
    color: var(--color-black);
  }
}

.bubble-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 15px;
  background-color: var(--color-sand);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/arrow-right-thin-dark.svg);
}

.b-back {
  left: -100px;
  top: 50%;
  background-color: var(--color-red);
  background-image: url(../img/arrow-right-thin.svg);
}

.section-title {
  font-size: 72px;
  font-family: "swear-text-cilati", sans-serif;
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
  width: 100%;
}

.section-title .lexend {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 62px;

}

.section-title.pink {
  color: var(--color-light-pink);
}

.section-title.sand {
  color: var(--color-sand);
}

.section-title.horizontal {
  flex-direction: row;
  gap: 20px;
}

.section-title>* {
  display: block;
}

.section-description {
  font-size: 14px;
  color: var(--color-sand);
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  padding: 20px 10px 10px 10px;
  margin-bottom: 20px;
}

.cl {
  clear: both;
}

.anchor-y {
  transform: translate(0, -50%);
}

.anchor-x {
  transform: translate(-50%, 5%);
}

.anchor-xy {
  transform: translate(-50%, -50%);
}

.flex {
  display: flex;
}

.flex.a-c {
  align-items: center;
}

.flex.j-c {
  justify-content: center;
}

.flex.fd-c {
  flex-direction: column;
}

.mb-2 {
  margin-bottom: 2%;
}

.mt-2 {
  top: 2%;
}

.image {
  max-width: 100%;
}
.ad > div > iframe {
  margin: 0 auto;
  margin-top: 20px;
  display: block;
}
.for-mobile {
  display: none;
}
/* comons end  */


/* menu start */
.main-menu nav ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px
}

.main-menu nav ul li {
  display: flex;
  align-items: center;
}

.main-menu nav ul li:after {
  content: "";
  border-right: 1px solid var(--color-dark-green);
  height: 15px;
  margin-left: 20px;
  display: inline-block;
}

.main-menu nav ul li:last-child:after {
  display: none;
}

.main-menu nav ul li a {
  text-decoration: none;
  color: var(--color-sand)
}
.main-menu nav ul li a.agenda {
    text-transform: uppercase;
    border-radius: 25px;
    border: 1px solid var(--color-dark-green);
    background-color: var(--color-red);
    color: var(--color-sand);
    padding: 7px 20px;
    text-decoration: none;
    transition: all 0.5s;
}

.main-menu nav ul li a.agenda:hover {
    color: var(--color-red);
    background-color: var(--color-sand);
}

.meniu-holder {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.meniu-holder a {
  color: var(--color-sand);
  text-decoration: none;
}

.meniu-holder a.active-item {
  color: #95C6C1;
}

.logo-holder {
  display: flex;
  gap: 20px;
  color: var(--color-sand);
  font-size: 14px;
}

.logo-holder .logo-divider {
  border-right: 1px solid var(--color-dark-green);
}

.logo-holder>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-holder>div span {
  width: max-content;
}

body[data-lang="en"] .logo-holder a img {
  width: 100%;
  max-width: 300px;
}

.meniu-burger {
  width: 24px;
  height: 24px;
  background-image: url(../img/burger2.svg?c1);
  float: right;
  display: none;
}

.meniu-burger-close {
  background-image: url(../img/close2.svg?c1);
}

.expanded-meniu>div {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px;
}

.expanded-meniu>div a {
  width: calc(50% - 10px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: auto;
  text-decoration: none;
}

.meniu-item {
  width: 50%;
  margin-bottom: 30px;
  float: left;
  text-align: center;
  cursor: pointer;
  display: none;
  opacity: 0;
  font-size: 20px;

  font-family: "swear-text-cilati", sans-serif;
  color: var(--color-sand);
  width: 100px;
}

.meniu-item img {
  margin: 0 auto;
  max-height: 125px;
  max-width: 100%;
  margin-bottom: 10px;
}

.meniu-title {
  text-align: center;
}

.meniu-background {
  width: 100%;
  height: 125px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  max-width: 125px;
  margin: 0 auto;
}

.meniu-item .about-i {
  background-image: url(../img/about.svg);
}

.meniu-item .speakers-i {
  background-image: url(../img/speakers.svg);
}

.meniu-item .partners-i {
  background-image: url(../img/partners.svg);
}

.meniu-item .volunteer-i {
  background-image: url(../img/volunteer.svg);
}

.meniu-item .contacts-i {
  background-image: url(../img/contacts.svg);
}

.meniu-item .tickets-i {
  background-image: url(../img/tickets.svg);
}

.b7 {
  background-image: url(../img/meniu-items/programa.png);
}

.expanded-meniu {
  width: 100%;
  margin-top: 0;
  display: none;
  padding: 0;
  height: calc(100vh - 80px);
  overflow: scroll;
}

/* menu end*/


/* hero start */
.ticket-subtitle {
  margin-top: 20px;
}

.ticket-subtitle span {
  color: var(--color-sand);
  background-color: var(--color-red);
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}

.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  background: rgb(244, 224, 192);
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero .content {
  align-items: center;
  display: flex;
  justify-content: center;
}

.moon {
  position: absolute;
  top: 5%;
  left: 45%;
  width: 40%;
  opacity: 0;
  max-width: 344px;
}

.date-holder {
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
}

.hero-text-holder {
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: column;
}

.hero-text-holder img {
  margin-bottom: 40px;
}
.hero-text-holder h3 {
  font-size: 60px;
  font-weight: 400;
  margin: 0;
}
.hero-text-holder > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero-text-holder > div > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 30px;
  width: 100%;
}
.hero-text-holder > div .presale-price {
  font-size: 40px;
  margin-bottom: 40px;
  padding: 10px 40px;
  border-radius: 80px;
  background-color: var(--color-grey-trans);
  display: inline-block;
    width: fit-content;
}
.mountain-1 {
  position: absolute;
  bottom: -10%;
  left: 30%;
  width: 150%;
  max-width: 150%;
  opacity: 0;
}

.mountain-2 {
  position: absolute;
  bottom: 5%;
  left: 75%;
  width: 50%;
  max-width: 1800px;
  opacity: 0;
}

.mountain-3 {
  position: absolute;
  bottom: 20%;
  left: 25%;
  width: 50%;
  max-width: 1250px;
  opacity: 0;
}

.mountain-4 {
  position: absolute;
  bottom: 10%;
  left: 30%;
  width: 100%;
  max-width: 1100px;
  opacity: 0;
}

.castle {
  position: absolute;
  left: 30%;
  width: 60%;
  max-width: 800px;
  bottom: 10%;
  opacity: 0;
}

.drone {
  position: absolute;
  width: 100px;
  height: auto;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow-down {
  position: fixed;
  bottom: 10px;
  left: 50%;
  width: 40px;
  z-index: 2;
  animation: bounce 1s infinite;
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 10s linear infinite;
  -moz-animation: rotating 10s linear infinite;
  -ms-animation: rotating 10s linear infinite;
  -o-animation: rotating 10s linear infinite;
  animation: rotating 10s linear infinite;
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating-slow {
  -webkit-animation: rotating 40s linear infinite;
  -moz-animation: rotating 40s linear infinite;
  -ms-animation: rotating 40s linear infinite;
  -o-animation: rotating 40s linear infinite;
  animation: rotating 40s linear infinite;
}

@keyframes bounce {
  0% {
    bottom: 10px;
  }

  50% {
    bottom: 20px;
  }

  100% {
    bottom: 10px;
  }
}

/* hero end */

/* tags start */
#tags, #map {
  background-color: var(--color-green);
}

#tags h3 {
  color: var(--color-light-pink);
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  font-family: "swear-text-cilati", sans-serif;
}

#tags .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  max-width: 1020px;
}
.tags-cloud a {
  text-decoration: none;
}
.tags-cloud span {
  display: block;
  flex: 0 1 auto;
  padding: 7px 21px;
  border-radius: 25px;
  color: var(--color-light-pink);
  border: 1px solid var(--color-light-pink);
  font-weight: 400;
  transition: all ease 0.5s;
}

.tags-cloud span:hover {
  background-color: var(--color-light-pink);
  color: var(--color-green);
  border: 1px solid var(--color-green);
}

.images-group {
  display: flex;
  flex-direction: row;
  gap: 5%;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.images-group img {
  max-width: 30%;
}

/* tags end */


/* about start */
.about, .mikrofonas {
  position: relative;
  background-color: var(--color-light-pink);
  overflow-x: hidden;
}

.about .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.about .content .wrapper {
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-around;
}

.about p {
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  padding: 20px;
}

.photo-example {
  width: 100%;
  border-radius: 16px;
  background-image: url(../img/about.png);
  background-size: cover;
}

.flowers-1 {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 13%;
  max-width: 13%;
  opacity: 0;
}

.flowers-2 {
  position: absolute;
  bottom: 0;
  right: 0%;
  width: 13%;
  max-width: 13%;
  opacity: 0;
}

.about-login-box {
  background-color: var(--color-sand);
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--color-dark-green);
  color: var(--color-dark-green);
}

.about-login-box .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.about-login-box .wrapper>div {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  font-size: 22px;
}

.about-login-box .wrapper>div b {
  font-size: 46px;
  font-weight: 500;
}

.about-title.mobile {
  display: none;
}

.about-title img {
  height: 48px;
  margin-left: 10px;
}

.about-description.stripped {
  display: none;
}

.youtube-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 25px;
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#more-description {
  display: none;
}

/* about end */


/* news start */
.news {
  background: #95C6C1;
}

.swiper,
.swiper-button-next,
.swiper-button-prev {
  z-index: 0;
}

.swiper-wrapper {
  align-items: stretch;
}

.news .content {
  overflow: visible;
}

.swiper-button-next,
.swiper-button-prev {
  height: unset;
  width: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  border-radius: 50%;
  border: 1px solid #050F19;
  width: 42px;
  height: 42px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  color: var(--color-light-pink);
}

.swiper-button-next {
  right: -60px;
}

.swiper-button-prev {
  left: -60px;
}

.news-item {
  width: auto;
  overflow: hidden;
  background: var(--color-light-pink);
  border-radius: 22px;
  border: 1px solid var(--color-dark-green);
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  text-decoration: none !important;
}

.news-item a {
  text-decoration: none;
}

.news-item img {
  width: 100%;
  display: block;
}

.read {
  border-radius: 36px;
  background-color: var(--color-red);
  font-size: 18px;
  padding: 10px 30px 10px 30px;
  overflow: hidden;
  color: #F2E4CE;
  font-weight: 300;
  display: inline-block;
  border: 1px solid var(--color-dark-green);
}

.news-item .read:hover {
  opacity: 0.8;
}

.news-item .news-title {
  color: #050F19;
  font-size: 17px;
  font-weight: 600;
  padding: 20px;
}

/* news end */


/* tickets start */
.crowd {
  background-image: url(../img/crowd2.png);
  background-color: var(--color-light-pink);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  padding: 7% 0;
}

.tickets {
  display:none;
  background: var(--color-green);
}

.tickets .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tickets .images-group {
  gap: 10px;
  padding: 0;
}

.tickets .images-group img {
  max-width: 30%;
  margin-top: 30px;
}

.tickets .images-group img:nth-child(2) {
  max-width: 33%;
  margin-top: 0px;
}

.tickets p {
  font-size: 16px;
  color: var(--color-sand);
  font-weight: 300;
  text-align: center;
  max-width: 100%;
  margin: 0;
}

.tickets p a {
  text-decoration: none;
  font-weight: 500;
  color: var(--color-sand);
}

.tickets p.rules a {
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.tickets svg {
  display: inline;
  max-width: 10px;
  fill: var(--color-sand);
  transform: translate(0px);
  transition: all 1s;
}

.tickets p.rules a:hover svg {
  transform: translate(10px);

}

/* tickets end */


/* partners start*/
.partners {
  background-color: var(--color-light-pink);
}

.partners-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding-top: 40px;
}

.partners-holder {
  display: block;
}

.partners-holder ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 37px 48px;
  flex-wrap: wrap;
}

.partners-list__items {
  padding-left: 0;
  margin-right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 160px;
  width: 100%;
}

.partners-list__items img {
  max-height: 52px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* partners end */


/* volunteers start */
.volunteers {
  background-color: var(--color-sand);
}

.volunteers .content {
  width: 40%;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-direction: column;
  text-align: center
}

.volunteers .content img {
  width: 100%;
}

.volunteers p {
  text-align: center;
  color: var(--color-dark-green);
  margin: 0;
  margin-top: 20px;
  font-size: 20px;
}

.trees-1 {
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 25%;
  max-width: 25%;
  opacity: 0;
}

.trees-2 {
  position: absolute;
  bottom: -5%;
  right: 0%;
  width: 25%;
  max-width: 25%;
  opacity: 0;
}

#volunteers-modal p {
  margin: 30px 0;
}

/* volunteers end */


/* modal start */
.fancybox__content>.carousel__button.is-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  box-shadow: none;
  background: var(--color-light-green);
}

.carousel__button svg {
  filter: none;
}

.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.7);
}

.fancybox__content {
  border-radius: 40px;
  width: fit-content;
  padding: 40px;
  background-color: var(--color-sand);
}

/* modal end */


/* duk start */
.duk {
  background: var(--color-green);
}

.duk .section-title {
  align-items: flex-start;
}

.duk .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.duk .content>div {
  flex: 1;
}

.unicorn {
  width: 100%;
}

.duk-item,
.duk-static-item {
  background-image: url(../img/plus2.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding: 12px 50px 12px 20px;
  border: 1px solid var(--color-dark-green);
  background-color: var(--color-sand);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-dark-green);
  margin-bottom: 20px;
}

.duk-static-item {
  background-image: none;
  background-color: #5B57CF;
  color: var(--color-dark-green);
  margin-bottom: 0;
}

.duk-active {
  background-color: var(--color-red);
  color: var(--color-sand);
  background-image: url(../img/minus2.svg);
  margin-bottom: 0;
}

.duk-explanation {
  font-size: 16px;
  line-height: 26px;
  padding: 12px 20px 12px 20px;
  font-weight: 300;
  color: var(--color-dark-green);
  display: none;
  border: 1px solid var(--color-dark-green);
  border-top: 0;
  background-color: var(--color-sand);
  margin-bottom: 20px;
}

.duk-opened {
  display: inherit;
}

/* duk end */


/* speakers start */
.speakers {
  background-color: var(--color-sand);
  padding: 40px 0;
}

.speakers.front {
background-color: var(--color-green);
}

.speakers.front .content {
  display: flex;
  flex-direction: row;
  background-color: var(--color-green);
}

.speakers.front .content>div {
  flex: 1;
  width: 50%;
  order: 1
}

.speakers.front .speakers-holder {
  padding-bottom: 80px;
  overflow: visible;
  align-items: flex-start;
  gap: 40px;

}
.speakers.front .speakers-holder .speaker-card{
  width: 36%;
}
.speakers.front .speakers-holder > div:nth-child(even){
  transform: translateY(80px);
}
.speaker-label-holder {
  margin: 40px 0;
}
.speaker-label {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 20px;
  border-radius: 36px;
  padding: 8px 20px;
  border: 1px solid var(--color-light-pink);
  font-size: 16px;
  color: var(--color-light-pink);
}
.speakers.front p {
  color: var(--color-sand);margin: 0;
font-size: 16px;
font-weight: 300;
line-height: 1.5;
margin-bottom: 40px;
}
.speakers.front .images { overflow: hidden; width: 100%; margin-top: 40px;}
.speakers.front .images img{ width: 50%; float: left; }

.speakers p,
.program p,
.registration p {
  max-width: 600px;

  color: var(--color-dark-green);
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}

.program p,
.registration p {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.speakers-holder a svg {
  width: 18px;
}

.speakers a {
  text-decoration: none;
}

.speaker-card {
  height: 300px;
  border-radius: 6px;
  border: 1px solid var(--color-dark-green);
  background-color: var(--color-sand);
  position: relative;
  float: left;
  cursor: pointer;
  overflow: hidden;
}

.speakers-holder {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.speakers-holder .speaker-card {
  display: inline-block;
  float: none;
  text-align: left;
  transition: all 0.5s;
  width: 18%;
}

.speakers-holder .speaker-card:hover {
  background-color: var(--color-light-green);
}

.ribbon {
  position: absolute;
  right: 20px;
  top: -1px;
  width: 36px;
  height: 42px;
  background-size: cover;
  background-image: url(../img/ribbon2.svg);
  pointer-events: none;
}

.speakers-holder .speaker-card:hover .ribbon {
  background-image: url(../img/ribbon-pink.svg);
}

.ribbon .wrapper {
  font-size: 16px;
  text-align: center;
  padding-top: 8px;
  color: var(--color-sand);
  transition: all 0.5s;
}

.speakers-holder .speaker-card:hover .ribbon .wrapper {
  color: var(--color-dark-green);
}

.speaker-image {
  width: 237px;
  height: 151px;
  background-size: cover;
  background-position: center top;
  position: absolute;
  top: 7px;
  left: 50%;
  pointer-events: none;
}

.speaker-description {
  position: absolute;
  bottom: 10px;
  width: 226px;
  height: 127px;
  left: 50%;
  pointer-events: none;
}
.front .speaker-description {
  padding: 0 10px;
  width: 100%;
}
.speaker-description.anchor-x,
.speaker-image.anchor-x {
  transform: translate(-50%, 0%);
}

.speaker-name {
  font-size: 21px;
  color: var(--color-dark-green);
  transition: all 0.5s;
}

.speakers-holder .speaker-card:hover .speaker-name {
  color: var(--color-sand);
}

.speaker-hashtags {
  position: absolute;
  bottom: 0;
  font-size: 14px;
  color: var(--color-light-green);
  transition: all 0.5s;
}

.speakers-holder .speaker-card:hover .speaker-hashtags {
  color: var(--color-light-pink);
}

.speaker-about {
  display: none;
  padding-top: 16px;
  font-size: 16px;
  color: var(--color-dark-green);
  line-height: 22px;
}

.speakers-holder .speaker-card:hover .speaker-about {
  transition: all 0.5s;
  color: var(--color-sand);
}

.speaker-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
}

.speaker-holder {
  position: relative;
}

.hashtag-select
{
    font-weight:500;
    color:var(--color-dark-green);
    font-size:18px;
}
#hashtag-select
{
    outline:none;
    width:calc(100% - 26px);
    padding:6px 12px 6px 12px;
    font-size:14px;
    border-radius:4px;
    border:1px solid var(--color-dark-green);
    background-color: var(--color-light-pink);
    color:var(--color-dark-green);
    font-family:Lexend, sans-serif;
    margin-top:6px;
}
.hashtag-item
{
    display:inline-block;
    padding:8px 15px 8px 15px;
    background-color:var(--color-light-pink);
    color:var(--color-dark-green);
    cursor:pointer;
    font-size:14px;
    border-radius:35px;
    cursor:pointer;
    transition: 0.2s;
}
.hashtag-item:hover
{
    opacity:0.8;
}
.active-hashtag
{
    background-color: var(--color-dark-green);
    color: var(--color-light-pink);
}
.filter-holder
{
    text-align:left;
    padding-bottom:30px;
}
.filter-holder .filter-overflow
{
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      gap: 13px;
}
.search-holder
{
    text-align:left;
    color:var(--color-dark-green);
    font-weight:300;
    max-width: 1060px;
    margin: 0 auto;
}
.search-input, .search-input-program {
  font-family: "Lexend", sans-serif;
  font-size: 22px;
  padding: 12px;
  border-radius: 35px;
  background-color: var(--color-light-pink);
  color: var(--color-dark-green);
  width: calc(100%);
  border: none;
  font-weight: 300;
  text-align: center;
  outline: none;
  max-width: 1200px;
  margin: 5px auto 20px;
}

/* speakers end */

/* agenda start */
section.program {
  background-color: var(--color-sand);
}
/* agenda end */

/* footer start */
footer {
  padding: 50px 10px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
  border-top: 1px solid #fff;
}

footer .divider {
  border-left: 1px solid var(--color-white);
}

footer .content {
  display: flex;
  gap: 40px;
  flex-direction: row;
}

footer .content.horizontal {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

footer .content.horizontal>div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

footer .content a {
  color: var(--color-white);
  text-decoration: none;
}

footer .content .rainbow {
  border-radius: 23px;
  padding: 20px;
  background: var(--color-grey-trans);
  height: fit-content;
  margin-top: 30px;
}


footer .content .rainbow .section-subtitle {
  margin-top: 0;
  margin-bottom: 10px;
}

.rainbow .contact-title {
  margin-bottom: 7px;
}

.rainbow .additional-info.phone {
  margin-bottom: 7px;
}

footer .section-title {
  align-items: flex-start;
}

footer .section-title .lexend {
  font-size: 30px;
}

.section-subtitle {
  font-size: 20px;
  font-family: "Lexend", sans-serif;
  display: inline-flex;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  width: 100%;
  margin-top: 20px;
}

footer .contacts-holder {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

footer .contacts-holder>div {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

footer .contacts-holder>div div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

footer .newsletter-description {
  font-weight: 200;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: x-large;
}

footer .content.horizontal>div.social-holder {
  display: flex;
  gap: 20px;
}

.social-holder a img {
  width: 20px;
  max-height: 20px;
  filter: brightness(4);
}

footer ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  gap: 40px;
}

footer ul li a {
  text-decoration: none;
  color: var(--color-sand);
  display: flex;
  gap: 10px;
  opacity: 0.6;
  transition: all 1s;
}

footer ul li a:hover {
  opacity: 1;
}

footer ul li a svg {
  fill: var(--color-sand);
  width: 10px;
  transform: translate(0px);
  transition: all 1s;
}

footer ul li a:hover svg {
  transform: translate(10px);
}

footer .delfi {
  font-size: 24px;
  font-weight: 600;
}

footer .content .newsletter-container {
  max-width: 33%;
}


footer h3 {
  color: var(--color-red);
  font-family: 'swear-text-cilati', sans-serif;
  font-size: 58px;
  line-height: 64px;
  font-weight: 500;
}

footer p {
  color: var(--color-sand);
  font-size: 20px;
}

footer {
  background-color: var(--color-black);
  padding-bottom: 40px;
  color: var(--color-white);
}

#ticket-scroller {
  width: 100%;
  background: var(--color-orange);
  border-top: 1px solid var(--color-dark-green);
  height: 60px;
  position: fixed;
  left: 0;
  bottom: -200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

#ticket-scroller.active {
  bottom: 0;
}

/* footer end */

.about-title {
  text-align: center;
  font-size: 72px;
  color: var(--color-dark-green);
  font-family: "swear-text-cilati", sans-serif;
  margin-bottom: 50px;
}

.custom-input,
.custom-textarea {
  width: 100%;
  max-width: 500px;
  padding: 20px;
  border-radius: 4px;
  background-color: var(--color-sand);
  font-family: "Lexend", sans-serif;
  color: #000;
  border: none;
  outline: none;
  margin-top: 20px;
}

.custom-textarea {
  height: 80px;
}

.additional-info {
  padding-left: 30px;
  font-weight: 200;
  font-size: 14px;
}

.email {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path fill="white" d="M119.9 128C89 128 64 153 64 183.9L64 448C64 483.3 92.7 512 128 512L512 512C547.3 512 576 483.3 576 448L576 183.9C576 153 551 128 520.1 128L119.9 128zM560 223L560 448C560 474.5 538.5 496 512 496L128 496C101.5 496 80 474.5 80 448L80 223C82 225.1 84.2 227 86.6 228.7L277.1 370.1C302.6 389 337.4 389 362.9 370.1L553.4 228.8C555.8 227 558 225.1 560 223.1zM80 183.9C80 161.9 97.9 144 119.9 144L520.1 144C542.1 144 560 161.9 560 183.9C560 196.5 554 208.4 543.9 215.9L353.4 357.3C333.6 372 306.5 372 286.7 357.3L96.1 215.9C86 208.4 80 196.5 80 183.9z"/></svg>');  
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: left center;
}

.phone {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path fill="white" d="M208.4 106.7C205 98.7 196.2 94.4 187.8 96.6L181.1 98.4C127.9 113 86.1 163.1 98.2 221.4C131.6 382 258.1 508.4 418.7 541.9C476.9 554 527.1 512.2 541.6 458.9L543.4 452.2C545.7 443.8 541.4 435 533.3 431.6L440 392.7C432.9 389.8 424.8 391.8 419.9 397.7L383.3 442.4C378.6 448.1 370.7 449.9 364.1 446.7C289.1 411.1 229.1 349.1 196 272.7C193.2 266.1 195 258.5 200.6 254L242.2 219.9C248.1 215.1 250.2 206.9 247.2 199.8L208.4 106.7zM179.4 65.8C203.3 59.3 228.4 71.5 237.9 94.4L276.8 187.7C285.2 207.8 279.4 231.1 262.5 244.9L230.4 271.2C259.4 331.7 307.5 381.4 366.7 412.5L395.2 377.6C409 360.7 432.2 354.9 452.4 363.3L545.7 402.2C568.6 411.7 580.8 436.8 574.3 460.7L572.5 467.4C554.8 532.3 491.2 589.6 412.2 573.2C239.1 537.2 102.9 401 66.9 227.9C50.4 148.8 107.7 85.3 172.7 67.6L179.4 65.8z"/></svg>');
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: left center;}


@media only screen and (max-width: 821px) {
  .content {
    padding: 0 10px;
  }

  section {
    padding: 30px 0;

  }

  main {
    padding-top: 60px;
    padding-top: 0px;
  }

  header {
    height: 60px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    justify-content: flex-start;
    gap: 20px;

  }

  header .content {
    padding: 0px;
    height: 60px;
  }

  header .content>div:nth-child(2) {
    width: unset;
  }

  .logo-holder {
    width: 60%;
    gap: 10px;
  }

  .main-menu.desktop,
  header .deco-button {
    display: none;
  }

  .logo-holder a {
    width: 100%;
    display: flex;
    overflow: hidden;
  }

  .logo-holder a img {
    max-width: 100%;
  }

  .logo-holder>div span {
    font-size: 9px;
  }

  .meniu-burger {
    display: block;
  }

  .hero .section-title {
    color: var(--color-sand) !important;
    align-items: center !important;
  }

  .hero .castle {
    z-index: 1;
    top: 0%;
    left: 50%;
    width: 90%;
  }

  .drone {
    position: absolute;
    width: 50px;
    height: auto;
    top: 10%;
    left: 80%;
    transform: translate(-50%, -50%);
  }

  .hero-content-holder {
    padding-top: 25%;
    position: relative;
    margin-top: 50%;
    top: auto;
    left: auto;
    background: var(--color-green);
    z-index: 0;
    padding-bottom: 30px;
  }

  body[data-lang="en"] .logo-holder a img {
    width: 100%;
    max-width: 150px;
  }

  .section-title {
    font-size: 52px;
  }

  .about-login-box .wrapper>div {
    width: 40%;
    font-size: 20px;
  }

  .about-login-box .wrapper>div b {
    font-size: 36px;
  }

  .about p {
    padding: 10px;
  }

  .section-title .lexend {
    font-size: 38px;
    text-align: center;
  }

  .hero {
    min-height: 100vh;
    padding: 0px;
  }

  .hero-text-holder {
    width: 100%;
  }

  .hero-text-holder img {
    margin-bottom: 40px;
  }
  .hero-text-holder h3 {
    font-size: 34px;
  }
  .hero-text-holder > div {
    gap: 20px;
  }
  .hero-text-holder > div > div {
    font-size: 18px;
  }
  .hero-text-holder > div .presale-price {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .ticket-subtitle {
    font-size: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
  }

  .ticket-subtitle span {
    font-size: 15px;
  }

  .mountain-1 {
    top: 20%;
    left: 50%;
    width: 140%;
    transform: translate(-50%, 0%);
  }

  #tags {
    display: none;
  }

  .tags-cloud {
    gap: 13px;
  }

  .hero-text-holder {
    align-items: center;
  }

  .tags-cloud span {
    font-size: 13px;
  }

  .images-group {
    padding: 0;
  }

  .images-group img {
    max-width: 33% !important;
  }

  .flowers-1,
  .flowers-2 {
    display: none;

  }

  .news-item .news-title {
    color: #050F19;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
  }

  .crowd {
    display: none;
  }

  .tickets .images-group {
    flex-direction: column;
    gap: 0;
  }

  .tickets .images-group img {
    max-width: 100% !important;
  }

  .tickets .images-group img:first-child {
    order: 2;
    max-width: calc(100% - 30px) !important;
  }

  .tickets .images-group img:nth-child(2) {
    order: 1;
  }

  .tickets .images-group img:last-child {
    order: 3;
    max-width: calc(100% - 30px) !important;

  }

  .partners-holder ul {
    flex-wrap: wrap;
  }

  .sc1 {
    top: auto;
  }

  .sc2 {
    left: auto;
    top: auto;
  }

  .speaker-overflow {
    width: 2500px;
  }

  .speaker-holder {
    margin: 0;
    overflow-x: scroll;
    padding-bottom: 10px;
  }
  .speakers.front .content {
    flex-direction: column;
  }
  
  .speakers.front .content>div {
    width: 100%;
  }

  .speakers.front .content>div:first-child {
    order: 2;
    display: flex;
    flex-direction: column;
  }
  .speakers.front .content>div:first-child * {order: 2}
  .speakers.front .content>div:first-child a {
    order: 1;
    margin-top: 30px;
    text-align: center;
  }
  .speaker-label-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  }
  .speakers.front .speakers-holder .speaker-card {
  width: 45%;
  }
  .speakers.front .speakers-holder .speaker-card .ribbon {
    top: -1px;
  }
  
  .speakers.front .speakers-holder {
    gap: 20px;
    padding-top: 40px;
  }
  .speakers.front .section-title {
    text-align: center;
  }

  .about .col-5 .wrapper {
    padding: 0;
  }

  .about .content {
    width: 100%;
    position: relative;
  }

  .about .content .col-5 {
    position: relative;
    z-index: 1;
    padding-top: 150px;
  }

  .about .content .col-5.image {
    position: absolute;
    z-index: 0;
    padding: 0;
    width: 100%;
    top: 0;
    left: 0;
  }

  .partners-holder ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .partners-list__items {
    width: 25%;
  }

  .volunteers .content {
    width: 100%;
  }

  .trees-1,
  .trees-2 {
    display: none;
  }

  .duk .content {
    flex-direction: column;
  }

  .speaker-holder {
    margin-top: 20px;
  }

  .speakers .main-title-2 {
    text-align: left;
    margin-top: 0;
  }

  footer .section-subtitle {
    margin-top: 20px;
  }

  footer .contacts-holder>div {
    gap: 20px;
  }

  footer ul {
    width: 100%;
    gap: 20px;
    font-size: 11px;
  }

  footer .content {
    flex-direction: column;
  }

  footer .contacts-holder>div {
    flex-direction: column;
  }

  footer .divider {
    display: none;
  }

  footer {
    padding-bottom: 90px !important;
  }

  .section-subtitle {
    margin-top: 0;
  }

  footer .newsletter-description {
    height: unset;
  }

  footer .content.horizontal {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  footer ul li {
    flex: 1;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  footer .content div.newsletter-container {
    max-width: 100%;
  }

  footer .content .rainbow {
    margin-top: 0;
  }

  .puzzle {
    width: 100%;
    margin-bottom: 30px;
  }

  .ticket-title {
    font-size: 38px;
    text-align: center;
  }

  .ticket-started {
    font-size: 55px;
    text-align: center;
  }

  .promotion .content-holder {
    position: inherit;
    top: auto;
    left: auto;
  }

  .promotion {
    height: auto;
  }


  .photo-example {
    border-radius: 0;
    padding-bottom: 57%;
    width: 100%;
    margin-top: -10px;
  }

  .about-title {
    font-size: 55px;
    text-align: center;
    padding: 10px 0;
  }

  .about-title.desktop {
    display: none;
  }

  .about-title.mobile {
    display: block;
  }

  .about-title.mobile {
    display: flex;
    font-size: 62px;
    margin: 0;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
  }

  .about-title.mobile svg {
    width: 160px;
    margin-top: 10px;
  }

  .about-title img {
    height: 32px;
    margin-left: 10px;
  }

  .about-title-spec {
    font-size: 44px;
  }

  .about-description.full {
    display: none;
  }

  .about-description.stripped {
    display: block;
  }

  #more-description {
    display: block;
    margin: 0 auto;
    width: fit-content;
  }

  .about-description-button.mobile {
    display: block;
    text-align: center;
    font-size: 21px;
    margin-bottom: 10px;
  }

  .sc3 {
    left: auto;
    top: auto;
  }

  .sc4 {
    top: auto;
    left: auto;
  }

  .line-bubble {
    display: none;
  }

  .speaker-holder {
    margin-top: 20px;
  }

  .col-5 {
    width: 100%;
  }

  .zmones-kioskas {
    margin-top: 0;
  }

  .speakers .main-title-2 {
    text-align: left;
    margin-top: 0;
  }


  .col-3,
  .col-7 {
    width: 100%;
  }

  .form-holder {
    margin: 0 auto;
  }

  .get-button {
    border-radius: 36px;
    padding: 16px 70px 16px 20px;
    background-color: #F661E6;
    color: black;
    font-size: 22px;
    max-width: 150px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;

  }

  .form-bt {
    float: left !important;
  }

  .text-holder .special-text {
    font-size: 27px;
  }

  .about-holder p {
    color: white;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
  }

  .partnership-navigation {
    margin-bottom: 30px;
  }

  .partnership-item {
    font-size: 19px;
    max-width: 220px;
    margin-bottom: 10px;
  }

  .swiper.news-items {
    margin: 0 50px;
  }

  .swiper-button-next {
    right: 10px;
  }

  .swiper-button-prev {
    left: 10px;
  }

  footer h3 {
    font-size: 30px;
  }

  footer ul li a {
    font-size: 13px;
  }

  .partnership {
    width: 100%;
    min-height: 500px;
    background-image: url(../img/gradient-background.svg);
    background-position: center top;
    background-size: cover;
    padding-top: 60px;
    position: relative;
    padding-bottom: 40px;
  }


  .about-image {
    width: 50%;
    max-width: 300px;
  }

  .text-holder .additional-text {
    font-size: 14px;
  }

  .login-example-image-holder {
    width: 100%;
  }

  .text-holder {
    padding-top: 0;
    margin-top: -8%;
  }

  .text-holder p {
    color: white;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 300;
  }

  .bottom-line .col-5 {
    width: 50%;
  }

  .arrow-down {
    display: none;
  }

  .about-holder {
    float: none;
    max-width: 620px;
    margin: 0 auto;
    padding-bottom: 30px;
    text-align: center;
  }

  .buy-tickets-bt {
    text-align: left;
  }

  .mountain-2 {
    left: 80%;
    bottom: auto;
  }

  .mountain-3 {
    bottom: auto;
  }

  .mountain-4 {
    bottom: auto;
  }

  .date-holder {
    font-size: 12px;
    text-align: center;
  }

  .main-title-1 {
    font-size: 38px;
    color: #ffffff;
    font-weight: 200;
    padding-top: 10px;
    text-align: center;
  }

  .not-mobile {
    display: none;
  }

  .for-mobile {
    display: inherit;
  }

  .main-title-2 {
    font-size: 55px;
    text-align: center;
    margin-top: -10px;
  }

  .subtitle {
    font-size: 15px;
    text-align: center;
  }

  .custom-button {
    margin: 0 auto;
    margin-top: 0px;
    font-size: 15px;
    padding: 20px;
  }

  .castle {
    bottom: auto;
    top: 12%;
    left: 40%;
    width: 70%;
  }

  .image-holder-background {
    margin-top: 0;
  }


  .moon {
    left: 55%;
    width: 40%;
  }



  .form-holder {
    width: 100%;
  }


  .m-special {
    width: 50%;
  }

  .promotion .organizer {
    font-size: 18px;
    position: relative;
    left: unset;
    bottom: unset;
    text-align: center;
    background: #c7c6ff;
    width: 100%;
    padding: 5px 0;
  }

  .promotion .figure-holder {
    width: 100%;
    margin-top: 100px;
    margin-bottom: -6px;
    position: relative;
  }

  .entry-mobile {
    width: 50%;
    position: absolute;
    top: 20%;
    left: 50%;
  }

  .promotion {
    min-height: auto;
    height: auto;
    padding-bottom: 0;

  }

  .col-4,
  .col-6 {
    width: 100%;
  }

  .commute .content {
    width: 100%;
  }

  .form-holder {
    padding: 0;
    padding-top: 20px;
  }

  .fancybox__content {
    padding: 40px 20px;
  }

  div[data-app="eapps-form-builder"]>div>div {
    padding: 0 !important;
  }



  .crown {
    display: none;
  }

  .navigation-placer {
    margin: 0 auto;
    float: none
  }

  .commute .title-holder {
    font-size: 44px;
    line-height: 50px;
  }

  .commute .title-holder-spec {
    display: block;
    font-size: 55px;
  }

  .commute {
    padding-bottom: 0;
  }

  .partners-holder {
    display: grid;
    text-align: center;
  }

  a {
    color: #ffffff;
  }

  .default-text {
    font-size: 17px;
  }

  ul {
    padding-left: 0;
  }

  .tickets-offer {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
    height: auto;
    padding-bottom: 20px;
  }

  .tickets-offer-holder {
    display: inherit;
  }

  .filter-overflow {
    gap: 7px
  }
  .hashtag-item {
    padding: 5px 10px 5px 10px;
    font-size: 12px;
  }

  .ticket-flyer {
    position: inherit;
    left: auto;
    bottom: auto;
    margin: 0 auto;
    width: 100%;
    transform: translate(0, 0);
  }
}

.disable-nav {
  overflow: hidden;
}
.program-overflow-navigation {
  display: flex;
  gap: 10px;
}
.program-navigation-item {
  flex: 1;
  float: left;
  height: 120px;
  border-radius: 6px;
  color: var(--color-dark-green);
  background-color: var(--color-sand);
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  border: 1px solid var(--color-dark-green);
}

.program-navigation-item:hover, .program-navigation-item.active-program-item {
  background-color: var(--color-light-green);
  color: var(--color-sand) !important;
}

.program-room-title {
  font-size: 14px;
  font-weight: 600;

  font-family: "Lexend", sans-serif;
  padding: 12px;
}

.clock-icon {
  width: 12px;
  margin-right: 4px;
}

.program-room {
  margin-bottom: 6px;
  font-style: italic;
}

.program-navigation-partner-holder {
  width: 70px;
  height: 50px;
  border-radius: 6px 0 6px 0;
  background-color: #fff;
  position: absolute;
  bottom: -1px;
  right: -1px;
  border: 1px solid var(--color-dark-green);
}

.partner-program {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-height: 100%;
}

.program-item {
  margin: 0 auto;
  background-color: var(--color-sand);
  border: 1px solid var(--color-dark-green);
  width: 100%;
  max-width: 880px;
  color: var(--color-dark-green);
  border-bottom: none;
}

.border-line {
  width: 100%;
  max-width: 880px;
  height: 1px;
  background-color: var(--color-dark-green);
  margin: 0 auto;
  border-left: 1px solid var(--color-dark-green);
  border-right: 1px solid var(--color-dark-green);
}

.program-date {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.program-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  max-width: 560px;
}

.program-elements-holder {
  margin-top: 30px;
  margin-bottom: 30px;
}

.program-speakers {
  font-size: 16px;
  margin-bottom: 10px;
  max-width: 560px;
  font-weight: 300;
}

.program-tags {
  font-size: 10px;
}

.program-item .wrapper {
  padding: 16px;
}

.tag-filter {
  font-family: "Lexend", sans-serif;
  font-size: 22px;
  padding: 12px;
  border-radius: 35px;
  background-color: var(--color-dark-green);
  color: #ffffff;
  width: calc(100% - 24px);
  border: none;
  margin-bottom: 20px;
  margin-top: 6px;
  font-weight: 300;
  text-align: center;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.small-text {
  font-size: 14px !important;
}

.program-navigation {
  position: relative;
  margin-top: 20px;
}

.empty-message {
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #ffffff;
  font-style: italic;
  display: none;
}

.front-button {
  display: inline-block;
}

.program-navigation::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  border-radius: 12px;
}

/* Track */
.program-navigation::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.program-navigation::-webkit-scrollbar-thumb {
  background: #ffffff;
}

/* Handle on hover */
.program-navigation::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

.program-label {
  font-size: 12px;
  color: #ffffff;
  position: absolute;
  top: -20px;
  left: 0;
}

@media only screen and (max-width: 821px) {

  .program-heading .main-title {
    float: none;
    width: 100%;
    font-size: 42px;
  }

  .program-days-navigation {
    float: none;
    width: max-content;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
    height: 60px;
  }

  .tag-filter {
    margin: 0 auto;
    width: 100%;
  }

  .program-navigation-item {
    width: 200px;
    margin: 5px;
    flex: unset
  }

  .program-overflow-navigation {
    width: max-content;
  }

  .program-navigation {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 10px;
  }

  .all-day-program {
    float: none;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .tag-filter,
  .search-input-program {
    font-size: 12px;
  }

  .all-day-program {
    margin: 0 auto;
    font-size: 14px;
    margin-top: 10px;
  }

  .for-desktop {
    display: none;
  }

  .popup-offer-title {
    font-size: 22px;
  }

  .offers .main-title {
    font-size: 42px;
    margin-top: 80px;
    margin-bottom: 30px;
  }

  .offer-item {
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .partner-logo {
    max-width: 80% !important;
  }
}