@import url("/res/Avenir/font.css");
* {
  box-sizing: border-box;
  font-family: "Avenir-Medium", sans-serif;
}

html {
  scroll-behavior: smooth;
  background-color: whitesmoke;
  color: black;
  font-size: 20px;
}

body {
  display: grid;
  grid-template-columns: minmax(15px, 1fr) minmax(300px, 1300px) minmax(15px, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "header header header" ". main ." ". footer .";
}

header {
  grid-area: header;
}
header img:last-child {
  width: 100%;
  height: auto;
  max-height: 625px;
  object-fit: cover;
  object-position: 50% 12%;
}
@media (min-width: 1930px) {
  header img:last-child {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 1300px;
  }
}
header nav {
  margin: 0px;
  padding: 0px;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: black;
  position: relative;
}
header nav .nav-header {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  max-height: 80px;
}
header nav .nav-header a {
  height: 80px;
}
header nav .nav-header img {
  max-height: 80px;
  width: auto;
  padding: 10px;
}
@media (max-width: 900px) {
  header nav .nav-header img {
    max-height: 60px;
    padding: 5px;
  }
}
header nav .nav-btn {
  display: none;
}
header nav ul {
  width: 530px;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  font-size: 1rem;
  padding: 0px;
  margin: 0px;
  list-style: none;
}
header nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: solid 3px transparent;
  transition: all 0.15s ease-in;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: transparent;
  flex-grow: 2;
}
@media (max-width: 900px) {
  header nav ul li {
    border: solid 2px transparent;
  }
}
header nav ul li:hover {
  background-color: rgba(0, 0, 0, 0.3);
  flex-grow: 4;
  border: solid 3px #b8441b;
  text-decoration-color: #b8441b;
}
header nav ul li a {
  display: flex;
  padding: 0px 15px;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  color: #efefef;
}
@media (max-width: 900px) {
  header nav ul li a {
    padding: 0px 5px;
  }
}
header nav #nav-check {
  display: none;
}
header nav #langdrop {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 120px;
  height: 30px;
  vertical-align: top;
  box-shadow: black 0px 10px 10px;
}
header nav #langdrop:hover {
  height: 90px;
  margin-top: 40px;
  z-index: 1;
}
header nav #langdrop:hover input:not(:first-child) {
  display: block;
}
header nav #langdrop input {
  border: none;
  background: none;
  display: block;
  padding: 0px 10px;
  line-height: 30px;
  color: rgb(190, 181, 177);
  background-color: black;
  border: 1px solid transparent;
}
header nav #langdrop input:hover {
  cursor: pointer;
  border: 1px solid #b8441b;
  color: white;
}
header nav #langdrop input:not(:first-child) {
  display: none;
}

main {
  grid-area: main;
}

footer {
  grid-area: footer;
  text-align: center;
}

@media (max-width: 720px) {
  header nav .nav-btn {
    display: flex;
  }
  header nav .nav-btn label {
    display: inline-block;
    width: 80px;
    height: 80px;
    padding: 26px;
  }
  header nav .nav-btn label span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #eee;
  }
  header nav .nav-btn label:hover,
  header nav .nav-btn nav #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  header nav ul {
    position: absolute;
    width: 100%;
    justify-content: space-evenly;
    background-color: black;
    height: 100px;
    transition: all 0.3s ease-in;
    border-top: solid 1px #b8441b;
    top: 80px;
    left: 0px;
  }
  header nav #nav-check:not(:checked) ~ ul {
    height: 0px;
    display: none;
    transition: all 0.3s ease-in;
  }
  header nav #nav-check:checked ~ ul {
    height: 100px;
    overflow-y: auto;
    display: flex;
    transition: all 0.3s ease-in;
  }
  header nav #langdrop {
    margin-left: auto;
  }
}
.remhrefdeco {
  text-decoration: none;
  color: black;
}

#agenda #addEvent {
  margin-left: 10px;
}
#agenda .passed {
  filter: grayscale(100%);
}
#agenda div {
  display: flex;
  overflow-x: auto;
  overflow-y: scroll;
  list-style: none;
  padding: 0px;
  padding-right: 1200px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#agenda div::-webkit-scrollbar {
  display: none;
}
#agenda div a {
  text-decoration: none;
}
#agenda div figure {
  transition: all 0.1s ease-in;
  position: relative;
  margin: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 290px;
  height: 395px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.25), 0 2px 2px rgba(0, 0, 0, 0.22);
  margin-bottom: 15px;
  overflow: hidden;
}
#agenda div figure:before, #agenda div figure:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#agenda div figure:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 0;
}
#agenda div figure:hover {
  transform: scale(1.05);
  z-index: 1;
}
#agenda div figure:after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#agenda div figure .date {
  position: absolute;
  bottom: 0;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  background-color: rgba(184, 68, 27, 0.8);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.7);
}
#agenda div figure .date span {
  color: white;
  line-height: 1;
}
#agenda div figure .date span:first-child {
  font-size: 20px;
  font-weight: 900;
}
#agenda div figure .date span:last-child {
  font-size: 14px;
  font-weight: 400;
}
#agenda div figure figcaption {
  padding: 10px;
  color: white;
  text-shadow: 1px 1px black;
  background: linear-gradient(black, transparent);
  padding-bottom: 30px;
  width: 100%;
  z-index: 1;
}
#agenda div figure figcaption h4 {
  margin: 0 0 5px;
  font-size: 24px;
  line-height: 1.35;
}
#agenda div figure figcaption p {
  margin: 0;
  line-height: 1.5;
}
#agenda img {
  margin: 15px;
  width: 200px;
  height: 300px;
  object-fit: cover;
}

h1 {
  display: flex;
  font-variant: small-caps;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
h1 span {
  font-family: "Avenir-Heavy", sans-serif;
  padding-left: 10px;
  background-image: linear-gradient(to left, #de5321, #b8441b);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0px 0px 2px rgba(220, 99, 83, 0.1490196078));
}
h1 a {
  height: 46px;
}
h1 img {
  background-color: #47bbe4;
  width: 46px;
  filter: invert(100%);
}
h1::before {
  content: " ";
  background-image: url("/res/icons/favicon.svg");
  background-size: 46px 46px;
  height: 46px;
  width: 46px;
}

textarea {
  width: 100%;
}

.wysiwygMode {
  text-align: center;
}

#social {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#social img {
  width: 50px;
  height: 50px;
  margin: 10px;
}
#social a {
  text-decoration: none;
  color: black;
}
#social a:hover {
  text-decoration: underline;
  text-decoration-color: #b8441b;
  text-decoration-thickness: 3px;
}
#social #tooltip #phones, #social #tooltip #email {
  visibility: hidden;
  list-style: none;
  margin: 0;
  position: absolute;
  z-index: 1;
  background-color: #efefef;
  padding: 10px;
  font-size: smaller;
  color: black;
  width: 320px;
  transform: translate(-72%, -180%);
}
#social #tooltip #phones:hover, #social #tooltip #email:hover {
  visibility: visible;
}
#social #tooltip #phones li, #social #tooltip #email li {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 5px;
}
#social #tooltip #phones li span, #social #tooltip #email li span {
  margin: 0 10px;
  width: 130px;
  text-align: right;
}
#social #tooltip #phones li div, #social #tooltip #email li div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: solid 3px #b8441b;
  padding-left: 5px;
}
#social #tooltip #email {
  transform: translate(-72%, -85%);
}
#social #tooltip:hover {
  cursor: pointer;
}
#social #tooltip:hover #phones, #social #tooltip:hover #email {
  visibility: visible;
}

#medias .container {
  padding: 40px 5%;
}
#medias .heading-text {
  margin-bottom: 2rem;
  font-size: 2rem;
}
#medias .heading-text span {
  font-weight: 100;
}
#medias .image-gallery li {
  list-style: none;
  width: 24%;
}
@media (max-width: 760px) {
  #medias .image-gallery li {
    width: 48%;
  }
}
#medias .image-gallery li img {
  transition: all 0.1s ease-in;
  width: 100%;
}
#medias .image-gallery li img:hover {
  scale: 1.03;
}

.makeButton {
  background-color: whitesmoke;
  color: black;
  border: solid 3px black;
  padding: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: transparent;
}
.makeButton:hover {
  border-color: #b8441b;
  text-decoration-color: #b8441b;
  transition: all 0.3s ease-in;
}

#insta .instagram-wrapper {
  border-radius: 11px;
  border: 1px solid rgb(219, 219, 219);
  overflow: hidden;
  width: 90%;
  margin: auto;
}
#insta .glide__arrow {
  position: absolute;
  display: block;
  padding: 10px;
  cursor: pointer;
  background: #fff;
  border-radius: 100%;
  border-style: solid;
  color: #262626;
  border-color: #dbdbdb;
}
#insta .glide__arrow:hover {
  background: #262626;
  border-style: solid;
  color: #fff;
  border-color: #dbdbdb;
}
#insta .glide__arrow--right {
  top: 300px;
  right: 0px;
}
#insta .glide__arrow--left {
  top: 300px;
  left: 0px;
}
#insta .instagram-media {
  border-radius: 3px !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block !important;
  min-width: 0 !important;
  margin: auto !important;
  margin-bottom: -54px !important;
  width: 100% !important;
  position: relative;
  top: -54px;
}

#more {
  margin: 10px;
}

#evtInfo {
  color: gray;
  font-weight: bolder;
}

#evtFlex {
  margin: 10px;
}
#evtFlex p {
  margin: 10px;
  text-align: justify;
}
#evtFlex img {
  max-width: 400px;
  float: right;
  margin: 0 10px;
}
@media (max-width: 900px) {
  #evtFlex img {
    display: block;
    max-width: 100%;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

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