@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Miniver&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Quicksand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital@1&display=swap');

:root {
  --color: rgb(255, 255, 255);
  --colorText: #c9ab81;
  --gold: #715b3e;
  /* #956630;*/

  --BGmain: #2D0D0F
    /*#0b1315*/
  ;
  --BGsecond: #200406
    /*#111d22*/
  ;
  --BGthird: rgb(17, 17, 17);
  --BGblue: rgb(23, 23, 35);

  --shadow: #200406a6;

  --margin: 16%;
  --fontFamily: 'Lato', sans-serif;
  --fontFamily: "Miniver", sans-serif;
  --fontFamily: 'Quicksand', sans-serif;
  --fontFamily: 'Dancing Script';
  --fontFamily: "Josefin Sans";

}

* {
  color: var(--color);
  font-family: var(--fontFamily);
}

a,
body,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
label,
li,
ol,
p,
pre,
span,
table,
ul,
div {
  background: 0 0;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html,
body {
  margin: 0;
  padding: 0;
}

h1,
h2 {
  margin: 0px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  color: var(--color);
  font-family: var(--fontFamily);
  padding: 2px 0;
  font-size: 16px;
}

div {
  font-family: var(--fontFamily);
  color: var(--color);
}

i:hover {
  transform: none;
  box-shadow: none;
}

button {
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: var(--color);
}

a:focus-visible,
textarea:focus-visible {
  outline-offset: none;
  outline: none;
}

a:hover {
  transform: none;
}














.body {
  min-height: 100vh;
  width: 100%;
  background-color: var(--BGmain);
  overflow-x: hidden;
}

.lineTop .line {
  position: fixed;
  background-color: var(--colorText);
  height: 100%;
  width: 1px;
  z-index: 2;
}

.lineTop .line2 {
  position: fixed;
  background-color: var(--colorText);
  opacity: 0.1;
  height: 100%;
  width: 1px;
  z-index: 0;
}

#l1 {
  margin: 0 10vw;
}

#l2 {
  right: 0;
  margin: 0 10vw;
}

#l3 {
  margin: 0 calc(10vw + 1*16vw);
}

#l4 {
  margin: 0 calc(10vw + 2*16vw);
}

#l5 {
  margin: 0 calc(10vw + 3*16vw);
}

#l6 {
  margin: 0 calc(10vw + 4*16vw);
}
















.header {
  height: 100px;
  height: calc(60vh + 60px);
  width: 100%;
}

.nav {
  display: flex;
  justify-content: center;
  position: relative;
  height: 40px;
  padding: 12px 32px;
  z-index: 1;
  background-color: var(--BGsecond);
}

.navItems {
  display: flex;
  align-items: center;
}

.navItem {
  display: flex;
  position: relative;
  text-align: center;
  min-width: max-content;
  padding: 2px 6px;
  margin: 8px 12px 8px;
  cursor: pointer;
  color: var(--color);
  border-radius: 8px;
  transition: all 1s;
}

.navItem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.navItem:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}

.navItem::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  transform: scale(1.2, 1.2);
}

.navItem:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}

.item {
  font-size: 28px;
  color: var(--colorText);
}





.menuToggle {
  padding-left: 20px;
  position: fixed;
  z-index: 2;
  top: 6px;
  /*transition: all 1s;
  transform: translateY(-50px);*/
  color: #2a9fbc;
  text-align: center;
}

.lines {
  cursor: pointer;
}

.lines .line {
  width: 40px;
  height: 4px;
  padding: 0;
  background-color: var(--gold);
  display: block;
  margin: 9px auto;
  transition: all 0.3s ease-in-out;
}

.lines.is-active .line:nth-child(2) {
  opacity: 0;
}

.lines.is-active .line:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}

.lines.is-active .line:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}



.header .nav2 {
  display: none;
  position: fixed;
  z-index: 1;
  width: 100vw;
  height: 40px;
  background-color: var(--BGsecond);
  padding: 12px 12px;
}

.nav2Container {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: -1;
  top: 0px;
  left: 0px;
  opacity: 0;
  padding: 80px 24px 12px 8px;
  height: 100vh;
  min-width: 300px;
  background-color: rgba(0, 0, 0, 0.74);
  transition: all 1s;
  transform: translateX(-200px);
}

.nav2Container.active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
}


.active {
  transition: all 1s;
}

.active {
  display: flex;
}

.navCP {
  cursor: pointer;
  font-size: 24px;
  margin: 16px 0px 0 16px;
}











.navLogo {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 200px;
  padding: 18px 0;
  background-color: #111d224f;
  box-shadow: 0 40px 40px #111d224f, 0 -40px 40px #111d224f;
}

.navTitle {
  color: var(--colorText);
  font-size: 40px;
}

.navImg {
  position: absolute;
  top: 60px;
  opacity: 0.7;
  width: 100%;
  z-index: 0;
}








.swipe {
  width: 100%;
}

.swipe-cell {
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.swipePic {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.flickity-viewport {
  height: 60vh !important;
}

.flickity-page-dots {
  bottom: 25px !important;
}

.flickity-slider {
  object-fit: cover;
}

.flickity-button {
  background: none !important;
  border: none !important;
}


















section {
  background-color: var(--BGmain);
  padding: 62px var(--margin) 100px;
  text-align: center;
}

.head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 42px;
}

button {
  color: white;
  padding: 12px 40px;
  background: none;
  cursor: pointer;
  border: 2px solid var(--color);
  text-wrap: nowrap;
}

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.formH1 {
  padding-bottom: 16px;
  text-align: center;
}

input {
  padding: 12px 12px;
  background: none;
  border: 1px solid var(--gold);
}

textarea {
  width: calc(100% - 26px);
  height: 200px;
  background-color: var(--BGsecond);
  padding: 12px 12px;
  margin-bottom: 16px;
  border: 2px solid var(--BGmain);
}

.submit {
  padding: 6px 12px;
}

























.sIntro {
  margin: 0;
}

.para {
  font-size: 19px;
  font-weight: 300;
  line-height: 29px;
  max-width: 800px;
  margin: 0 auto 12px;
}

.aButton {
  position: relative;
  border: 2px solid var(--colorText);
  width: max-content;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: .36em;
  outline: 0;
  box-sizing: border-box;
  transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
  padding: 8px 42px;
  margin-top: 32px;
  cursor: pointer;
}

.aB1 {
  margin: 32px auto 0;
}


.aButton:hover .buttonBefore,
.aButton:hover .buttonAfter {
  -webkit-transform: rotate(72deg) scale(1, 1);
  -ms-transform: rotate(72deg) scale(1, 1);
  transform: rotate(72deg) scale(1, 1);
}

.buttonBefore,
.buttonAfter {
  width: 1px;
  background-color: #c9ab81;
  position: absolute;
  top: 0;
  -ms-transform: rotate(72deg) scale(1, 0);
  transform: rotate(72deg) scale(1, 0);
  transform-origin: top;
  -o-transition: transform .4s cubic-bezier(.63, .25, .25, 1);
  transition: transform .4s cubic-bezier(.63, .25, .25, 1), -webkit-transform .4s cubic-bezier(.63, .25, .25, 1);
}

.buttonAfter {
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  bottom: 0px;
  right: 44.15px !important;
}

.buttonBefore {
  height: 44px;
  top: 0;
  left: 44.15px !important;
}







select {
  display: block;
  border-color: #715b3e;
  position: relative;
  padding: 7px 23px 3px;
  font-family: inherit;
  font-size: 16px;
  font-weight: inherit;
  color: #fff;
  background-color: transparent;
  border: 1px solid #715b3e;
  border-radius: 0;
  outline: 0;
  cursor: pointer;
  --webkit-appearance: none;
  box-sizing: border-box;
  transition: border-color .2s ease-in-out;
}

select option {
  background: #0f1d22;
  font-size: inherit;
  font-weight: normal;
  display: block;
  white-space-collapse: collapse;
  text-wrap: nowrap;
  min-height: 1.6em;
  padding: 20px;
}








/*:root {
  --dark-body-bg: #232429;
  --light-body-bg: #F5F7FB;

  --dark-input: #323741;
  --light-input: #ffffff;

  --dark-border: #484D5A;
  --light-border: #B8BCCB;

  --dark-date-foreground: #FFFFFF;
  --dark-inactive-fg: #636A78;
  --dark-active-fg: #9CA0B1;
  --dark-current-year: #3B414A;
  --dark-current-year-fg: #B2B8C9;
  --dark-selected: #1D5EFF;
  --dark-hover: #2C437B;
  --dark-arrows-bg: #B0B8CC;
  --dark-arrows-fill: #333641;
}

html {
  box-sizing: border-box;
}*/


/*
body {
  height: 100vh;
  background: var(--dark-body-bg);
  font-family: Helvetica, sans-serif;
}*/

#date_picker_input {
  position: relative;
  height: 100%;
}

#date {
  color: var(--dark-date-foreground);
  font-size: 16px;
  padding: 12px 20px;
  height: calc(100% - 24px - 2px);
}

#date:hover {
  cursor: pointer;
}

#date.onFocus:focus {
  outline: none;
}

#date_picker_input:after {
  content: "▾";
  padding: 12px 15px;
  position: absolute;
  right: 10px;
  color: #8A8F9F;
}

#date_picker_input.showCal:after {
  transform: rotate(180deg);
}

#date_picker_calendar {
  margin-top: 16px;
  position: absolute;
  min-height: fit-content;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 12px;
  background-color: var(--BGsecond);
  border-radius: 8px;
}

/* 
* calendar body
*/

#calendar_header {
  width: 100%;
  min-height: 30px;
  /*   background: pink; */
  margin-bottom: 8px;
  color: var(--dark-date-foreground);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cal-btn {
  width: 20px;
  height: 20px;
  background: var(--dark-arrows-bg);
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 6px;
}

.cal-btn img {
  width: 42%;
  height: 42%;
}

.cal-btn.back img {
  transform: rotate(90deg);
}

.cal-btn.front img {
  transform: rotate(-90deg);
}

#cal_days,
#calendar_main {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 5px;
  column-gap: 5px;
  color: var(--dark-inactive-fg);
}

#cal_days {
  margin-top: 10px;
  margin-bottom: 10px;
}

#calendar_main {
  grid-template-rows: repeat(5, min(30px));
}

.cell_wrapper {
  /*   background: yellow; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  position: relative;
}

.current {
  background: var(--dark-current-year);
  color: var(--dark-current-year-fg);
}

.current:not(.active):hover {
  background: var(--dark-hover);
  color: var(--dark-date-foreground);
  border: 2px solid var(--dark-selected);
}

.cal-btn:hover,
.current:hover {
  cursor: pointer;
}

/*
.active {
  background: var(--dark-selected);
  color: var(--dark-date-foreground);
}*/

.inactive_indicator:after {
  /*   text-decoration: underline; */
  content: '';
  width: 3px;
  height: 3px;
  background: red;
  border-radius: 50%;
  position: absolute;
  left: 50%;
}

.hidden {
  visibility: hidden;
}
















.sImg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.sIimg {
  display: flex;
  width: 70%;
  height: 100%;
  object-fit: cover;
}

.pattern1 {
  transform: scale(0.9);
  display: block;
  margin: auto;
  height: 520px;
}

.patternPath1 {
  margin: 34px 0;
  transition: all 2s cubic-bezier(0.77, 0.14, 0.65, 0.77);
  stroke-dashoffset: 0;
  /*770;*/
  stroke-dasharray: 770;
}









.oppening {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: var(--BGsecond);
}

.oppeningCon {
  display: flex;
  justify-content: center;
}

.oppeningLeft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 30px 0px 0;
}

.oppeningRight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.oppeningLeftP,
.oppeningRightP {
  font-size: 22px;
  font-weight: 100;
  padding: 0 0 12px;
}











.s1Head {
  text-align: center;
  color: var(--colorText);
  font-size: 32px;
  margin-bottom: 40px;
}

.s1Cons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px 0;
}

.s1Con {
  text-align: center;
  padding: 32px;
  width: 260px;
}

.s1i {
  color: var(--colorText);
  font-size: x-large;
  padding-bottom: 16px;
}

.s1Para {
  color: var(--colorText);
  font-weight: bold;
  padding-bottom: 32px;
}

.s1ConLine {
  width: 2px;
  height: 200px;
  background-color: var(--colorText);
}

.s1maps {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.map {
  height: 300px;
  width: 100%;
}











.sBook {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  background-color: var(--BGsecond);
  margin: 32px 0;
  gap: 64px;
}

.sbook .head {
  color: var(--colorText);
}

.s21 .conLeft {
  margin: auto 0;
}





.s3 {
  display: flex;
}



/*default*/
.head1 {
  font-family: Miniver, sans-serif;
  padding: 8px 0;
}

.decoration {
  color: var(--colorText);
  align-self: center;
  padding: 0 20px;
  margin: auto 0;
}

.headP {
  font-size: 34px;
  color: var(--colorText);
  margin: 0;
  padding-top: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.s4Con {
  display: flex;
  justify-content: space-between;
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
}

.s4row {
  width: 33%;
}

.s4rowImg {
  width: 100%;
  height: 500px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
}

.s4rowHead {
  color: var(--colorText);
  font-family: "Josefin Sans", sans-serif;
  padding: 24px 0 16px;
  cursor: pointer;
  font-size: larger;
}

.s4rowPara {
  font-size: larger;
}



.organize {
  background-color: var(--BGsecond);
  position: relative;
  box-shadow: 0 2px 4px var(--shadow), 0 -2px 4px var(--shadow);
}

.eventsCon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.eventsImg {
  max-height: 600px;
  max-width: 100%;
}





.about {
  position: relative;
  background-color: var(--BGsecond);
  box-shadow: 0 2px 4px var(--shadow), 0 -2px 4px var(--shadow);
}

.aboutPara {
  width: 60%;
  margin: 0 auto;
}

.aboutImg {
  width: 100%;
  max-width: 600px;
  padding-top: 24px;
  border-radius: 4px;
  height: fit-content;
}











.s6con {
  display: flex;
  gap: 10%;
}

.s6row {
  width: 100%;
}

.s6element {
  margin: 0 0 24px 0;
}

.s6el {
  display: flex;
  align-items: center;
}

.s6elH {
  font-size: 17px;
  color: var(--colorText);
  text-wrap: nowrap;
  letter-spacing: .1em;
}

.s6elDeco {
  display: table-cell;
  width: 100% !important;
  margin: 0 12px;
  height: 2px;
  background-color: var(--colorText);
  width: max-content;
}

.s6elP {
  padding: 16px 0;
  text-align: start;
  line-height: 24px;
}











.footer {
  position: relative;
  z-index: 1;
  padding: 32px var(--margin) 0;
  text-align: center;
  background-color: var(--BGsecond);
  box-shadow: 0 2px 4px var(--shadow), 0 -2px 4px var(--shadow);
}

.footerImg {
  margin-bottom: 32px;
}

.footerP {
  line-height: 2em;
  font-family: var(--fontFamily);
  font-size: 19px;
  font-weight: 300;
}

.footerLinks {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  gap: 32px;
}

.footerLink {
  position: relative;
  padding: 8px 0;
  font-size: 20px;
}

.firstLine {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  right: 0;
  bottom: 0px;
  background-color: var(--colorText);
  padding: 0;
  transition: all 0.6s;
  transition-delay: 0.3s;
}

.footerLink:hover .firstLine {
  width: 0%;
  transition: all 0.4s;
  transition-delay: 0.1s;
}

.secondLine {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  right: 0;
  bottom: -4px;
  background-color: var(--colorText);
  padding: 0;
  transition: all 1s;
  transition: all 0.5s;
  transition-delay: 0.2s;
}

.footerLink:hover .secondLine {
  width: 0%;
  transition: all 0.5s;
  transition-delay: 0.2s;
}

.footerLink::before {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 1px;
  left: 0;
  bottom: 0px;
  background-color: var(--colorText);
  transition: all 0.5s;
  transition-delay: 0.2s;
}

.footerLink:hover::before {
  width: 100%;
  transition: all 0.5s;
  transition-delay: 0.2s;
}

.footerLink::after {
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  left: 0;
  height: 1px;
  bottom: -4px;
  background-color: var(--colorText);
  transition: all 0.4s;
  transition-delay: 0.1s;
}

.footerLink:hover::after {
  width: 100%;
  transition: all 0.6s;
  transition-delay: 0.3s;
}

.footerRights {
  padding: 56px 0 8px;
}

/*leaflet*/
.leaflet-bottom.leaflet-right {
  display: none;
}

.leaflet-popup-content {
  color: black;
  font-family: var(--fontFamily);
}

















.edit {
  position: relative;
  height: 0;
  z-index: 1;
}

.editButton {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  right: 0;
  z-index: 2;
  height: 59px;
  width: 59px;
  cursor: pointer;
}

.editB {
  font-size: larger;
}

.editB:hover {
  transform: none;
  box-shadow: none;
}












.profile {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 0%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.473);
  transition: all 1s;
  z-index: 3;
}

.profile.active {
  height: 100%;
}

.sign {
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 40px 36px;
  border-radius: 50px;
  border: 1px solid var(--BGborder);
  background-color: rgba(27, 27, 27, 0.4);
  box-shadow: 4px 4px 8px rgba(27, 27, 27, 0.2);
  ;
  backdrop-filter: blur(10px);
}

.profileAlert {
  color: red;
  padding: 0 0 16px 0;
}

.signHead {
  width: 100%;
}

.signHeadBackImg {
  margin-bottom: 16px;
  height: 140px;
  width: 100%;
}

.signUp {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 32px;
  width: 100%;
}

.signP {
  padding-right: 20px;
}

#signUpP,
#logInP {
  color: red;
  font-weight: 500;
  cursor: pointer;
}

.inputs {
  display: flex;
  flex-direction: column;
  margin: 16px 0;
}

.inputsCon {
  display: flex;
  align-items: center;
  border-radius: 50px;
  background-color: rgba(161, 161, 161, 0.185);
  margin-bottom: 16px;
}

.ICI {
  max-height: 50px;
  overflow: hidden;
  transition: all 0.8s;
}

.inputsP {
  font-size: small;
}

.inputI {
  padding: 12px 0 12px 24px;
}

.inputI:hover {
  transform: none;
}

.inputsInput {
  color: var(--color);
  background: none;
  border: 0;
  font-size: large;
  max-width: 85%;
  padding: 12px 16px 12px 24px;
}

.inputsInput::placeholder {
  color: var(--colorPlaceholder);
}

.inputsInput:focus-visible {
  outline: none;
}

.forgot {
  overflow: hidden;
  transition: all 0.6s;
}

.forgotP {
  font-size: smaller;
  cursor: pointer;
}

.signSecondButton {
  background-color: rgba(161, 161, 161, 0.185);
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 150%;
  width: max-content;
  color: var(--color);
  transition: all 0.2s;
}

.signSecondButton:hover {
  background-color: rgba(71, 71, 71, 0.329);
  cursor: pointer;
}









.editExit {
  margin: 0 0 32px auto;
  text-align: center;
  cursor: pointer;
  width: 100px;
  padding: 8px;
  font-size: 20px;
  background-color: var(--BGsecond);
}

.navigationEdit {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 8px;
}

.navEdit {
  cursor: pointer;
  padding: 12px 32px;
  background-color: var(--BGsecond);
}

.navEdit.active {
  background-color: var(--gold);
}

.upload {
  flex-direction: column;
  padding: 24px;
  margin: 32px 0 32px;
  background-color: rgba(78, 78, 78, 0.782);
  color: black;
  border-radius: 12px;
}

.uploadCon {
  padding: 32px 0 0;
}

.upInput {
  padding: 12px 0px;
  cursor: pointer;
  border-radius: 8px;
  border: none;
}

.upSubmit {
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  border: none;
}

.upMessage {
  padding: 12px 0 24px;
  color: white;
}




.upContainer {
  flex-direction: column;
  display: flex;
  padding: 24px;
  margin: 32px 0 32px;
  background-color: rgba(78, 78, 78, 0.782);
  color: black;
  border-radius: 12px;
}

.editingLabel {
  display: block;
  padding: 12px 0 4px;
  width: 100px;
  color: white;
}

.upImages {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px;
}

.upImage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.upName {
  text-align: start;
}

.upImg {
  max-height: 100%;
  max-width: 100%;
  width: 100px;
}

/*
.upImg:before {
  content: "X";
  position: relative;
  top: 0;
  right: 0;
  transition: all 0.5s;
}*/

.upImg:before:hover {
  transform: scale(1.05);
}

.elementDiv {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}






/*Gallerie*/
.sGImg {
  display: flex;
  flex-direction: column;
}

.sGImg .head {
  padding: 0r;
}

.masonryContainer {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
}

.masonryItem {
  width: 100%;
  margin: 0 0 12px;
}

.masonryI {
  max-width: 100%;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  border-radius: 4px;
}

.masonryI:hover {
  transform: scale(1.2);
  z-index: 2;
}


.masonry {
  -moz-column-count: 4;
  -webkit-column-count: 4;
  column-count: 4;
}










/*events*/
.event {
  padding: 32px 0 0;
}

.eventContent {
  display: flex;
  justify-content: center;
  gap: 8%;
  padding: 56px 0;
}

.eventFitting {
  text-align: start;
  max-width: 40%;
}

.eventImage {
  width: 60%;
  height: fit-content;
}

.eventHeader {
  font-size: 26px;
  font-weight: bold;
  padding: 0 0 12px;
}

.eventCount {
  font-size: 21px;
  padding: 2px 0 12px;
}

.eventPara {
  text-align: start;
  margin: 0;
  padding-bottom: 24px;
  font-size: 19px;
  font-weight: 300;
  line-height: 29px;
}




.insights {
  position: relative;
  background-color: var(--BGsecond);
  z-index: 0;

}

.insightsP {
  font-size: 24px;
  font-weight: bold;
  padding: 32px 0 0;
  color: var(--colorText);
}

.insightsLine {
  margin: 20px 0;
  height: 2px;
  width: 100%;
  background-color: var(--colorText);
}

.insightsDiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.insight {
  display: flex;
  object-fit: cover;
  max-width: 31%;
  flex-grow: 1 0 calc(50%);
  width: calc(25% - 32px);
}

.insightImg {
  padding: 32px 0 0;
  height: 600px;

}




.contact {
  width: 50%;
  min-width: 500px;
  max-width: calc(100% - 2 * var(--margin));
  margin: 0 auto;
}

.contactPara {
  text-align: start;
  font-size: 19px;
  font-weight: 300;
  line-height: 29px;
}

.contactForm {
  display: flex;
  flex-direction: column;
  padding: 34px 0
}

.formH1 {
  text-align: center;
  color: var(--colorText);
  font-size: 24px;
  font-weight: bold;
  padding: 32px 0 16px;
  color: var(--colorText);
}

.input2 {
  padding: 12px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 18px;
  background: var(--BGsecond);
  border: none;
}

.textarea2 {
  width: calc(100% - 26px);
  height: 300px;
  background-color: var(--BGmain);
  padding: 12px 12px;
  font-size: 18px;
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: var(--BGsecond);
}

.textarea2:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

.submit {
  padding: 8px 12px;
  margin: 0 auto;
  width: 100px;
  border-radius: 4px;
  background-color: var(--colorText);
  border: none;
  cursor: pointer;
}










.elements {
  padding: 64px 0 0;
}

.element {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 0 32px;
  border-bottom: 1px solid var(--BGsecond);
}

.elementI {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0 32px;
  border-bottom: 1px solid var(--BGsecond);
}

.elementP {
  padding: 0 0 12px;
}

.elementImg {
  width: 60%;
  padding: 0 0 12px;
}

.elementPhidden {
  display: none;
}

.elementInput {
  width: calc(100% - 2 * 12px);
}

.elementInput:focus-visible {
  outline: none;
}

.elementSafe {
  margin: 12px 0;
  border: none;
  background-color: var(--BGsecond);
}

.sending {
  padding: 0 0 8px 0;
}

#imageSelect {
  width: 100%;
}


@media (max-width: 1400px) {
  .masonry {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }
}

@media (max-width: 800px) {
  .masonry {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}

.masornyH {
  font-size: 24px;
  padding-bottom: 24px;
  margin-top: 70px;
}











@media (orientation: portrait) {
  :root {
    --margin: 8%;
  }

  #l1 {
    margin-left: 10px;
  }

  #l2 {
    margin-right: 10px;
  }

  #l3 {
    margin: 0 calc(10px + 1*16vw);
  }

  #l4 {
    margin: 0 calc(10px + 2*16vw);
  }

  #l5 {
    margin: 0 calc(10px + 3*16vw);
  }

  #l6 {
    margin: 0 calc(10px + 4*16vw);
  }

  .header {
    height: calc(30vh + 60px);
  }

  .headP {
    font-size: 20px;
  }

  .nav {
    display: none;
  }

  .header .nav2 {
    display: flex;
  }

  .flickity-viewport {
    height: 30vh !important;
  }

  .sImg {
    flex-direction: column;
    justify-content: center;
  }

  .sIimg {
    width: 100%;
  }

  .pattern1 {
    max-width: 100%;
    height: 400px;
  }

  .s4Con {
    flex-direction: column;
  }

  .s4row {
    width: 100%;
  }

  .s1Cons {
    flex-direction: column;
  }

  .form2 {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .s1ConLine {
    height: 2px;
    width: 100%;
  }

  .s4rowImg {
    width: 100%;
    max-width: 300px;
    max-height: 400px;
  }

  .masonryItem {
    margin: 0 0 32px;
  }

  .sIntro {
    padding-bottom: 0;
  }

  .eventContent {
    flex-direction: column;
  }

  .eventFitting {
    max-width: 100%;
  }

  .eventImage {
    width: 100%;
    padding-top: 24px;
  }

  .insightsDiv {
    flex-direction: column;
  }

  .insight {
    max-width: 100%;
    width: 100%;
  }

  .contact {
    width: calc(100% - 2 * var(--margin));
    min-width: unset;
  }

  .upImages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .upImg {
    max-height: 200px;
    max-width: 200px;
  }

  .eventPara {
    font-size: 18px;
  }

  .eventHeader {
    font-size: 20px;
  }

  .eventCount {
    font-size: 19px;
  }

  .oppeningLeftP {
    font-size: 18px;
  }

  .oppeningRightP {
    font-size: 18px;
  }

  .oppeningLeft {
    padding: 0 12px 0px 0;
  }

  .footerRights p {
    font-size: 13px;
  }

  .editButton {
    margin-right: 10px;
  }

  .footerLink {
    font-size: 18px;
  }
}