@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 1200px;
  padding-bottom: 60px;
  width: 100%;
}

.header {
  width: 100%;
  height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  position: relative;
}

.header .logo {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .logo img {
  height: 90%;
  margin-bottom: 15px;
}

.header .logo a {
  padding: 10px;
  background: #e31313;
  color: white;
}

.header .socialWrapper {
  position: absolute;
  right: 0;
}

.header .socialWrapper a svg path {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .socialWrapper a:hover path {
  fill: black;
}

.header .socialWrapper svg {
  height: 27px;
  width: 27px;
}

.header .socialWrapper svg path {
  fill: #e31313;
}

.header img {
  height: 70%;
}

.postWrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.postWrapper .post-video,
.postWrapper .post-photo {
  width: 30%;
  border: 2px solid rgba(227, 19, 19, 0.5);
  padding: 10px;
  position: relative;
}

.postWrapper .post-video .mediaButton,
.postWrapper .post-photo .mediaButton {
  width: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 360px;
}

.postWrapper .post-video .mediaButton svg,
.postWrapper .post-photo .mediaButton svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.postWrapper .post-video img,
.postWrapper .post-video video,
.postWrapper .post-photo img,
.postWrapper .post-photo video {
  width: 100%;
  max-height: 360px;
}

.postWrapper .post-video h3,
.postWrapper .post-photo h3 {
  margin-top: 10px;
  line-height: 23px;
}

.postWrapper .post-photo:nth-child(n + 4),
.postWrapper .post-video:nth-child(n + 4) {
  margin-top: 20px;
}

.topFixed {
  width: 100vw;
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #e31313;
  z-index: 10;
  height: 30px;
}

.topFixed .location {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20%;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  cursor: pointer;
}

.topFixed .location svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.topFixed .location svg path {
  fill: white;
}

.topbar {
  padding: 30px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}

.topbar .infoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.topbar .infoBox a:first-child {
  background: #e31313;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 180px;
  padding: 10px;
  margin-right: 10px;
}

.topbar .infoBox a:first-child svg {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.topbar .infoBox a:first-child svg path {
  fill: white;
}

.topbar .infoBox a:last-child {
  color: #e31313;
  font-weight: 600;
  text-decoration: underline;
  font-size: 18px;
}

.topbar .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 25px;
}

.topbar .info h2 {
  margin-bottom: 10px;
}

.topbar .info a {
  color: #e31313;
  text-decoration: underline;
  font-weight: 600;
}

.topbar .info span {
  color: black;
  text-decoration: none;
  font-weight: 400;
}

.topbar .info span svg {
  height: 15px;
  width: 15px;
  margin-right: 5px;
}

.topbar .info span svg path {
  fill: black;
}

.topbar .tagLink {
  color: #e31313;
  text-decoration: underline;
  font-weight: 600;
}

.topbar .linkButton {
  width: 160px;
  height: 40px;
  background: #e31313;
  color: white;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
}

.instagram-link {
  text-decoration: underline;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-decoration-color: #0000ff;
}

.instagram-link:hover {
  background: black !important;
}

@media screen and (max-width: 600px) {
  .postWrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 90%;
  }
  .postWrapper .post-photo,
  .postWrapper .post-video {
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .postWrapper .post-photo:nth-child(n + 4),
  .postWrapper .post-video:nth-child(n + 4) {
    margin-top: 0;
  }
  .topFixed {
    position: static;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: unset;
  }
  .topFixed .location {
    width: 100%;
    height: 35px;
  }
  .header {
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 200px;
  }
  .header .logo {
    height: 100%;
  }
  .header .logo img {
    height: 60%;
  }
  .header .socialWrapper {
    position: relative;
    margin-top: 20px;
  }
  .topbar {
    width: 90%;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .topbar .info {
    margin-top: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.consentBox {
  position: fixed;
  background-color: #e31313;
  color: white;
  text-align: center;
  width: 100%;
  min-width: 100vw;
  padding: 14px 0;
  bottom: 0;
}

.consentBox > p {
  font-size: 95%;
}

.consentBox .consentLinks {
  padding-top: 8px;
}

.consentBox .consentLinks > a {
  color: white;
  font-weight: bold;
}

.consentBox .consentLinks > a:hover {
  background-color: white;
  color: #e31313;
  font-weight: bold;
}

.consentBox .consentLinks > a:first-child {
  padding-left: 12px;
}

.consentBox .consentLinks > a:nth-child(2) {
  border-right: white 1px solid;
  border-left: white 1px solid;
  padding: 0 12px;
  margin: 0 12px;
}
/*# sourceMappingURL=index.css.map */

.consentCloseButton {
  color: rgba(0, 0, 0, 0.3);
  font-size: 32px;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 10px;
  cursor: pointer;
}

.consentCloseButton:hover {
  color: #e31313;
  background-color: white;
}

@media screen and (max-width: 600px) {
  .main {
    padding-bottom: 0px;
  }

  .consentBox {
    position: sticky;
    padding: 20px 20px;
  }

  .consentBox > p {
    font-size: 90%;
    line-height: 20px;
  }

  .consentBox .consentLinks > a {
    margin: 8px 0;
  }

  .consentBox .consentLinks > a:nth-child(2) {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .consentBox .consentLinks > a::after {
    content: ", ";
  }

  .consentBox .consentLinks > a:last-child:after {
    content: " ";
  }

  .consentCloseButton {
    position: absolute;
    top: 0;
    margin-right: 16px;
    display: table;
    padding-top: 0px;
    padding-bottom: 12px;
    margin-left: auto;
  }
}
