@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=League+Gothic&display=swap");
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 769px) {
  .mobileonly {
    display: none !important;
  }
}

@media (max-width: 769px) {
  .desktoponly {
    display: none !important;
  }
}

.header svg {
  width: 20px;
  height: 20px;
}
.header {
  background-color: #151F3E;
}
.header__cols {
  display: grid;
  padding: 20px 0;
}
@media (min-width: 769px) {
  .header__cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 769px) {
  .header__cols {
    grid-template-columns: 2fr 1fr;
  }
}
.header__logo {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
  color: #fff !important;
}
.header__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.header__nav {
  height: 100%;
}
.header__link {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
}
.hero__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
.hero__descs {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(24, 24, 75, 0.631372549);
}
.hero__title {
  color: #fff !important;
  text-align: center;
}
@media (min-width: 769px) {
  .hero__title {
    font-size: 64px;
    font-weight: 700;
    color: #1b1b1b;
    font-family: "League Gothic", sans-serif;
    text-transform: uppercase;
  }
}
@media (max-width: 769px) {
  .hero__title {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b1b;
    font-family: "League Gothic", sans-serif;
    text-transform: uppercase;
  }
}

body, html {
  padding: 0;
  margin: 0;
}

.news {
  padding: 50px 0;
}
.news__inside {
  display: grid;
}
@media (min-width: 769px) {
  .news__inside {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 769px) {
  .news__inside {
    grid-template-columns: 1fr;
  }
}

.incommingevent__title, .incommingevent__item-title {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.incommingevent__title {
  margin-bottom: 10px !important;
}
.incommingevent__item {
  display: grid;
  gap: 20px;
}
@media (min-width: 769px) {
  .incommingevent__item {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 769px) {
  .incommingevent__item {
    grid-template-columns: 1fr;
  }
}
.incommingevent__date {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #8A8A8A;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
}
.incommingevent__shortdesc {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #1d1d1d;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
}
.incommingevent__readmore {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
}
.incommingevent__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.greatplaces {
  display: grid;
}
@media (min-width: 769px) {
  .greatplaces {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 769px) {
  .greatplaces {
    grid-template-columns: 1fr;
  }
}
.greatplaces {
  gap: 20px;
}
.greatplaces__img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.greatplaces__item {
  position: relative;
}
.greatplaces__desc {
  position: absolute;
  top: 10px;
  right: 5px;
  background-color: #fff;
  border-radius: 3px;
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
}
.greatplaces__desc img {
  width: 20px;
  margin-right: 5px;
}
.greatplaces__item-inside {
  padding: 0;
  margin: 0;
}
.greatplaces__item-desc {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
  text-decoration: none !important;
  font-weight: 700;
}

.faq {
  padding: 20px 0;
  margin-top: 40px;
  background-color: #f1f1f1;
}
.faq__inside {
  display: grid;
  gap: 20px;
}
@media (min-width: 769px) {
  .faq__inside {
    grid-template-columns: 1fr 300px;
  }
}
@media (max-width: 769px) {
  .faq__inside {
    grid-template-columns: 1fr;
  }
}
.faq__title {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.faq__col {
  display: flex;
  align-items: center;
}
.faq__readmore {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
  text-decoration: none;
  text-align: center;
  background: #151F3E;
  padding: 20px 20px;
  display: block;
  border-radius: 12px;
  width: 100%;
}

.mobilemenu:not(.active) {
  display: none;
}

.mobilemenu {
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #151F3E;
  color: #fff;
}
.mobilemenu__list {
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobilemenu__list {
  padding: 0;
  margin: 0;
}
.mobilemenu__close svg {
  width: 30px;
}
.mobilemenu__title {
  font-size: 24px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
  color: #fff !important;
  margin-left: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  display: block;
}
.mobilemenu a {
  stroke: #fff;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
  background: #1b274c;
  width: 100%;
  display: flex;
  height: 30px;
  align-items: center;
  padding-left: 10px;
}

.event__city {
  background: #F1BB30;
  display: block;
  width: max-content;
  padding: 5px 6px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
  font-weight: 600;
}
.event__info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.event__title {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 20px;
}
.event__img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.event__content {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
}

.place__title {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
  padding-bottom: 20px;
  padding-top: 20px;
}
.place__cols {
  display: grid;
  gap: 20px;
}
@media (min-width: 769px) {
  .place__cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 769px) {
  .place__cols {
    grid-template-columns: 1fr;
  }
}
.place__img {
  width: 100%;
}
.place__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
}
.place__content {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
}

.list {
  margin-top: 30px;
}
.list__item {
  display: grid;
  gap: 20px;
  text-decoration: none;
}
@media (min-width: 769px) {
  .list__item {
    grid-template-columns: 300px 1fr;
  }
}
@media (max-width: 769px) {
  .list__item {
    grid-template-columns: 150px 1fr;
  }
}
.list__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.list__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.list__date {
  font-size: 12px;
  font-weight: 400;
  color: rgb(79, 79, 79);
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
}
.list__title {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
}
.list__short {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
}
.list__main-title {
  font-size: 32px;
  font-weight: 700;
  color: #1b1b1b;
  font-family: "League Gothic", sans-serif;
  text-transform: uppercase;
}

footer {
  background-color: #1b274c;
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;
  margin-top: 30px;
  text-align: center;
}

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

.text {
  font-size: 16px;
  font-weight: 400;
  color: #0e0e0e;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.4px;

}
.container {
  font-family: "Lato", sans-serif;
}
