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

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

button,
form,
input,
textarea {
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.color-orange {
  color: #d13700 !important;
}

header {
  position: sticky;
  z-index: 2;
  top: 0;
  width: 100%;
  background: linear-gradient(180deg, rgb(16, 25, 35) 0%, rgba(16, 25, 35, 0.95) 40%, rgba(16, 25, 35, 0) 100%);
  padding: 1em 0;
  display: flex;
  justify-content: center;
  gap: 4em;
}
header nav {
  margin-top: 1em;
}
header nav ul li {
  list-style: none;
  display: inline-block;
}
header nav ul li:not(:last-child) {
  margin-right: 3em;
}
header nav ul li a {
  color: #fff;
  font-weight: 600;
  transition: 0.2s all;
}
header nav ul li a:hover {
  color: #d13700;
}
header .site-logo {
  animation: sway 2s ease-in-out infinite;
  transform-origin: center;
  display: inline-block;
}
header .site-logo img {
  width: 100%;
}

#hero-image {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background-color: #101923;
  margin-top: -12em;
}
#hero-image .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
#hero-image .hero-slide.active {
  opacity: 1; /* Visible when active */
}
#hero-image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-content {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 0 16px;
}
.main-content:not(.remove-margin) {
  margin: -15em auto 0;
}
.main-content.remove-margin {
  margin: 0 auto;
}
.main-content section {
  text-align: center;
  background-color: #101923;
  padding: 2em 4em;
  color: #fff;
}
.main-content section h2 {
  text-transform: uppercase;
  color: #fff;
  font-family: "Aerodome Wide";
}
.main-content section h2 .add-dot {
  position: relative;
}
.main-content section h2 .add-dot:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #ffffff;
}
.main-content section h2:after {
  content: "";
  position: relative;
  width: 150px;
  height: 4px;
  background-color: #d13700;
  display: block;
  margin: 0.3em auto 1em auto;
}
.main-content section h3 {
  font-family: "Aerodome OutlineWide";
  font-size: 40px;
  margin-bottom: 1em;
}
.main-content section#about span {
  display: block;
  margin-bottom: 1em;
}
.main-content section#timetable {
  background-color: #1c242d;
}
.main-content section#volunteering {
  background-color: #28211e;
  display: flex;
  flex-direction: column;
  gap: unset;
}
.main-content section#organizators .orgs-img {
  margin-bottom: 3em;
  width: 50%;
}
.main-content section#organizators .partneriai {
  display: flex;
  justify-content: space-between;
}
.main-content section#organizators .partneriai img {
  width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-content section#contacts {
  background-color: #28211e;
}
.main-content section#contacts .contact-emails {
  margin-top: 3em;
}
.main-content section#contacts .flex-contacts {
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
.main-content section#contacts .flex-contacts .map-container #map {
  margin-top: 2em;
  z-index: 1;
}
.main-content section#contacts .flex-contacts > div {
  width: 100%;
}
.main-content section#contacts .flex-contacts .contacts-container {
  display: flex;
  flex-direction: column;
}
.main-content section#contacts .flex-contacts .contacts-container form {
  color: #fff;
  margin-top: 1em;
}
.main-content section#contacts .flex-contacts .contacts-container .form-group {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
.main-content section#contacts .flex-contacts .contacts-container input,
.main-content section#contacts .flex-contacts .contacts-container textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  padding: 10px 0;
  font-size: 12px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s ease;
}
.main-content section#contacts .flex-contacts .contacts-container ::-moz-placeholder {
  color: #fff;
  font-weight: 500;
  opacity: 1;
}
.main-content section#contacts .flex-contacts .contacts-container ::placeholder {
  color: #fff;
  font-weight: 500;
  opacity: 1;
}
.main-content section#contacts .flex-contacts .contacts-container textarea {
  height: 150px;
  resize: none;
  margin-bottom: 30px;
}
.main-content section#contacts .flex-contacts .contacts-container button {
  float: right;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 40px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.main-content section#contacts .flex-contacts .contacts-container button:hover {
  background: #fff;
  color: #101923;
}
.main-content section#contacts .flex-contacts .contacts-container input:focus,
.main-content section#contacts .flex-contacts .contacts-container textarea:focus {
  border-bottom-color: #d13700;
}

#gallery {
  background-color: #1c242d;
  text-align: center;
  padding: 2em 0em;
  color: #fff;
}
#gallery h2 {
  text-transform: uppercase;
  color: #fff;
  font-family: "Aerodome Wide";
}
#gallery h2:after {
  content: "";
  position: relative;
  width: 150px;
  height: 4px;
  background-color: #d13700;
  display: block;
  margin: 0.3em auto 1em auto;
}
#gallery .year-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
#gallery .year-selector .year-link {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 17px;
}
#gallery .year-selector .year-link:hover {
  color: #d13700;
}
#gallery .year-selector .year-link.active {
  opacity: 1;
  color: #d13700;
  border-bottom: 1px solid #d13700;
}
#gallery .gallery-wrapper {
  transition: opacity 0.3s ease;
}
#gallery .swiper-navigation {
  display: flex;
  gap: 15px;
}
#gallery .nav-btn {
  color: white;
  font-size: 24px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.3s ease;
}
#gallery .nav-btn:hover {
  color: #d13700;
}
#gallery .swiper-button-disabled {
  opacity: 0.3;
  cursor: auto;
}
#gallery .gallery-container {
  width: 100%;
  padding-bottom: 50px;
}
#gallery .swiper-slide img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#gallery .swiper-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 5%;
  gap: 20px;
}
#gallery .swiper-pagination {
  position: static !important;
  width: auto !important;
}
#gallery .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1 !important;
  height: 4px;
  width: 4px;
}
#gallery .swiper-pagination-bullet-active {
  background: #d13700 !important;
}

@keyframes sway {
  0% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
@media (max-width: 992px) {
  .main-content section#contacts .flex-contacts {
    flex-direction: column;
  }
  .main-content section#organizators .partneriai {
    flex-direction: column;
    align-items: center;
  }
  .main-content section h2 {
    font-size: 1rem;
  }
  .main-content section {
    padding: 2em 1em;
  }
  .main-content section#contacts .contact-emails {
    font-size: 11px;
  }
  header {
    gap: 0.3em;
    justify-content: center;
    text-align: center;
  }
  header nav ul li:not(:last-child) {
    margin-right: 0;
  }
  header nav ul li {
    margin-bottom: 1em;
  }
}/*# sourceMappingURL=style.css.map */