@charset "UTF-8";
header {
  position: relative;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
}
header .header__container {
  display: flex;
  height: 100%;
  justify-content: space-evenly;
  flex-direction: column;
  overflow: hidden;
}
header .header__shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 60%;
  z-index: -2;
}
header .header__video {
  position: absolute;
  width: auto;
  height: auto;
  min-height: 100%;
  min-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -3;
}
header .header__title {
  font-size: 2.1rem;
  text-align: center;
  letter-spacing: 1px;
}
header .header__subtitle {
  font-family: var(--main-font-family);
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 1px;
}
header .header__container-btn {
  position: relative;
  height: 100%;
  width: 100%;
}
header .header__btn {
  position: absolute;
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
  cursor: pointer;
  color: var(--light-font);
  text-decoration: none;
}
header .header__btn:before {
  display: block;
  font-family: var(--h1-font-family);
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}
header .header__btn--bottom {
  bottom: 0.5em;
  left: 50%;
  height: 60px;
  width: 35px;
  background-image: url("/img/svg/arrow-down.svg");
  transform: translate(-50%, 0);
}
header .header__btn--bottom:before {
  content: "Eventy";
  margin-top: -2em;
}
header .header__btn--left, header .header__btn--right {
  bottom: 50%;
  display: none;
  height: 25px;
  width: 75px;
}
header .header__btn--left:before, header .header__btn--right:before {
  margin-top: 2.5em;
}
header .header__btn--left {
  left: 0;
  background-image: url("/img/svg/arrow-left.svg");
  transform: translate(50%, 0);
}
header .header__btn--left:before {
  content: "O Nas";
  margin-left: 1em;
}
header .header__btn--right {
  right: 0;
  background-image: url("/img/svg/arrow-right.svg");
  transform: translate(-50%, 0);
}
header .header__btn--right:before {
  content: "Kontakt";
  margin-right: 1em;
}

.events {
  background-color: var(--main-color);
}
.events__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.events__item {
  position: relative;
  text-align: center;
  margin-top: 1em;
}
.events__item-img-container {
  width: 100%;
}
.events__item-img {
  width: 100%;
  height: auto;
}
.events__item-date {
  display: block;
  position: absolute;
  top: -0.6em;
  left: 1em;
  font-size: 1.6rem;
  font-family: var(--main-font-family);
  z-index: 2;
}
.events__item-title {
  position: absolute;
  bottom: 35%;
  right: 0.25em;
  text-align: right;
  font-size: 1.35rem;
  font-family: var(--main-font-family);
  text-decoration: underline;
  width: 70%;
  letter-spacing: 1px;
}
.events__item-btn {
  margin: 1em auto;
}
.events__btn {
  padding: 0.25em 0;
  text-align: center;
  font-size: 1.6rem;
  width: 50%;
  margin: 1em auto;
  font-family: var(--main-font-family);
}

.promoters__title {
  margin-bottom: 2em;
}
.promoters__img {
  max-width: 100%;
}
.promoters__img img {
  width: 100%;
  height: auto;
}
.promoters__text-container {
  margin-top: 2em;
  font-size: 1.57rem;
  text-align: center;
}
.promoters__container-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10rem;
  text-align: center;
}
.promoters__btn {
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  color: var(--light-font);
  text-decoration: none;
}
.promoters__btn:before {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 98vw;
  display: block;
  font-family: var(--h1-font-family);
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}
.promoters__btn--bottom {
  position: relative;
  height: 60px;
  width: 35px;
  background-image: url("/img/svg/arrow-down.svg");
}
.promoters__btn--bottom:before {
  content: "Dowiedz się więcej";
  font-size: 2.28rem;
}

.about {
  background-color: var(--main-color);
}
.about__title {
  margin-bottom: 0.5em;
}
.about__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin-left: -5%;
  width: 110%;
  aspect-ratio: 1;
}
.about__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  background-image: url("/img/webp/about-us-hero.webp");
  filter: opacity(1) contrast(1) brightness(1.5) grayscale(0.9);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about__text {
  position: relative;
  margin-top: 3em;
  font-size: 1.21rem;
  color: var(--main-color);
  width: 60%;
  text-align: center;
  line-height: 1.2;
  z-index: 1;
  text-shadow: #504f4f 1px 1px 1px;
}
.about__btn-container {
  margin-bottom: 1em;
  z-index: 1;
}
.about__btn {
  padding: 2em;
  position: relative;
  display: block;
  background-image: url("/img/svg/btn.svg");
  text-decoration: none;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  font-family: RubikGlitch-Regular;
  color: var(--main-color);
  font-size: 0.8rem;
}

.news__container {
  margin-top: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
  flex-direction: column;
}
.news__card {
  max-width: 240px;
}
.news__card img {
  width: 100%;
  height: auto;
}

.contact {
  background-color: var(--main-color);
  color: var(--light-font);
  text-align: center;
}
.contact a {
  text-decoration: none;
  color: var(--light-font);
  cursor: pointer;
}
.contact__title {
  font-size: 2rem;
  grid-area: title;
}
.contact__subsection-title {
  font-size: 3rem;
  margin: 0.5em auto;
}
.contact__subsection-subtitle {
  font-size: 2rem;
  margin: 0.25em auto;
}
.contact__subsection-map-container {
  width: 100%;
}
.contact__subsection-map-container img {
  width: 100%;
  height: auto;
}
.contact__subsection--colective {
  grid-area: colective;
}
.contact__subsection--company {
  grid-area: company;
}
.contact__subsection--some {
  grid-area: some;
}
.contact__subsection--map {
  grid-area: map;
}
.contact__subsection--map .contact__subsection-title {
  font-size: 2rem;
}

@media only screen and (min-width: 760px) {
  header .header__container {
    justify-content: center;
  }
  header .header__title {
    letter-spacing: 5px;
    margin-bottom: 1em;
    font-size: 4rem;
    text-align: left;
  }
  header .header__subtitle {
    text-align: right;
    font-size: 1.7rem;
    width: 80%;
    margin-left: auto;
  }
  .promoters__title {
    text-align: left;
    grid-area: title;
    margin-bottom: 0em;
    font-size: 4.14rem;
  }
  .promoters__img {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    grid-area: img;
  }
  .promoters__text-container {
    text-align: left;
    font-size: 3rem;
    grid-area: text;
    margin-bottom: 1.5em;
    margin-top: 1em;
  }
  .promoters__container-btn {
    margin-top: 5rem;
    grid-area: btn;
  }
  .promoters .container {
    display: grid;
    grid-template-areas: "title" "text" "img" "btn";
  }
  .about__container {
    margin: 0 auto;
    width: 80%;
  }
  .about__text {
    position: absolute;
    bottom: 50%;
    left: 0.75em;
    transform: translateY(50%);
    width: 90%;
    text-align: left;
    font-size: 2.2rem;
  }
  .about__btn-container {
    position: absolute;
    bottom: 1em;
    right: 1em;
  }
  .about__btn {
    padding: 1em;
    font-size: 1.8rem;
  }
  .news__title {
    text-align: left;
  }
  .news__card {
    max-width: 290px;
  }
  .news__container {
    flex-direction: row;
  }
  .contact .section__separator {
    grid-area: separator;
    margin-bottom: 3em;
  }
  .contact__title {
    font-size: 4.15rem;
  }
  .contact .container {
    display: grid;
    grid-template-columns: 1fr 1.75fr;
    gap: 0.5em;
    grid-template-areas: "title title" "separator separator" "colective map " "company map" "some .";
  }
  .contact__subsection {
    text-align: left;
  }
  .contact__subsection-title {
    margin: 0 auto;
  }
  .contact__subsection-subtitle {
    margin: 0 auto;
  }
  .contact__subsection--map .contact__subsection-title {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 992px) {
  header .header__subtitle {
    width: 60%;
  }
}
@media only screen and (min-width: 1100px) {
  .carousel--active {
    position: relative;
    transform-origin: right;
    transform: scaleX(1);
  }
  .carousel--inactive {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: left;
    transform: scaleX(0);
  }
  .events__list {
    flex-direction: row;
    gap: 1.5em;
    transition: transform 1s;
  }
  .events__control-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2em;
  }
  .events__control-btn {
    position: relative;
    border: 1px solid transparent;
    background-size: 100%;
    width: 90px;
    height: 40px;
    margin-bottom: 20px;
    cursor: pointer;
  }
  .events__control-btn::after {
    position: absolute;
    top: 45px;
    display: block;
    font-family: var(--h1-font-family);
    font-size: 1.22rem;
    color: var(--light-font);
  }
  .events__control-btn--right {
    background: url("/img/svg/arrow-straight-right.svg") no-repeat center;
  }
  .events__control-btn--right::after {
    content: "Następne";
    right: 0;
  }
  .events__control-btn--left {
    background: url("/img/svg/arrow-straight-left.svg") no-repeat center;
  }
  .events__control-btn--left::after {
    content: "Poprzednie";
    left: 0;
  }
  .events__control-btn--more {
    display: block;
    padding: 0.5em 1.5em;
    font-size: 1.37rem;
    font-family: var(--main-font-family);
    border: 2px solid var(--light-font);
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
  }
  .events__control-btn--more:hover {
    background: var(--light-font);
    color: var(--main-color);
  }
  .about .container {
    overflow: hidden;
    margin: 10em 0;
  }
  .about__text-ornament {
    position: relative;
    font-family: var(--h1-font-family);
    letter-spacing: 2px;
    z-index: 1;
    font-size: 3.9rem;
    width: 100%;
    overflow: hidden;
  }
  .about__text-ornament-words {
    position: relative;
    display: block;
    width: 100%;
    animation: move-words 10s linear infinite;
  }
  .about__text-ornament--top {
    top: -1.2em;
  }
  .about__text-ornament--bottom {
    bottom: -1.2em;
    transform: rotate(180deg);
  }
  .about__text-ornament--left {
    transform-origin: left;
    transform: rotate(-90deg);
    left: -0.6em;
    bottom: -350px;
  }
  .about__text-ornament--right {
    transform-origin: right;
    transform: rotate(90deg);
    right: -0.6em;
    bottom: -192px;
  }
  .about__container {
    margin: 3em auto;
    width: 30%;
    max-width: 700px;
  }
  .news__title {
    text-align: left;
  }
  .news__card {
    max-width: 335px;
  }
  .news__container {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1200px) {
  header .header__title {
    margin-top: 5em;
    letter-spacing: 5px;
    margin-bottom: 0.75em;
  }
  header .header__subtitle {
    font-size: 2.2rem;
    width: 75%;
  }
  header .header__btn--left, header .header__btn--right {
    display: block;
  }
  .promoters__img {
    width: 100%;
  }
  .promoters__container-btn {
    margin-top: -1rem;
  }
  .promoters .container {
    grid-template-areas: "title title title title" ". img img img" "text img img img" ". img img img" "btn btn . .";
  }
  .contact .container {
    grid-template-areas: "title title" "separator separator" "map ." "colective . " "company ." "some .";
  }
}
@keyframes move-words {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/*# sourceMappingURL=mainpage.css-3b5ac1c86eb85b001a63008f606adabd.map */
