* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: "Inter", sans-serif;
  background-color: #e7e7e7;
  color: #333333;
  overflow-x: hidden;
}

:root {
  --content-padding: 160px;
  --source-cerif-pro: "Source Serif Pro", serif;
  --inter-sans: "Inter", sans-serif;
  --eb-garamond: "EB Garamond", serif;
  --header-padding: 30px 45px;
}

a {
  text-decoration: none;
}

.text-content {
  width: 100%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-family: "Inter", sans-serif !important;
  color: #333 !important;
}

.text-content a {
  text-decoration: underline;
  color: #333 !important;
}

.text-content ul {
  font-family: "Inter", sans-serif !important;
  margin-left: 20px;
  list-style-position: outside;
  color: #333 !important;
}

.text-content * {
  font-family: "Inter", sans-serif !important;
  color: #333 !important;
}

/* -------------------------------------------------------------------------- */
/*                                   GENERIC                                  */
/* -------------------------------------------------------------------------- */
.clip-path-100 {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.clip-path-200 {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 200%, 0% 200%);
          clip-path: polygon(0 0, 100% 0, 100% 200%, 0% 200%);
}

.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a {
  text-decoration: none;
  color: white;
  outline: none;
}

.heading,
.page-heading {
  font-size: 140px;
  font-family: var(--source-cerif-pro);
  font-weight: 300;
  color: #333333;
  text-align: left;
  line-height: 120px;
}

.page-heading {
  font-size: 80px;
  line-height: 80px;
}

.subheading {
  font-size: 30px;
  font-family: var(--eb-garamond);
  color: #bd9855;
  text-align: left;
  line-height: normal;
}

.heading-extra {
  font-size: 120px;
  font-family: var(--eb-garamond);
  color: #bd9855;
  text-align: left;
  line-height: 120px;
}

h1 {
  font-size: 50px;
  font-family: var(--source-cerif-pro);
  font-style: normal;
  font-weight: normal;
  color: #333;
  line-height: normal;
}

h2 {
  font-size: 32px;
  font-family: var(--inter-sans);
  font-weight: 500;
  color: #000000;
}

h3 {
  font-size: 24px;
  line-height: normal;
  font-family: var(--inter-sans);
  font-style: normal;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  line-height: normal;
  font-family: var(--inter-sans);
  font-style: normal;
  font-weight: 600;
}

p {
  font-family: "Inter", sans-serif;
  line-height: 24px;
  font-size: 16px;
  color: #333;
}

.primary-btn {
  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;
  background-color: #d9001b;
  padding: 8px 20px;
  cursor: pointer;
  color: white;
}

.primary-btn span {
  font-family: "Roboto Slab", sans-serif;
  text-align: center;
  font-size: 20px;
}

.primary-btn:hover {
  background-color: #910012;
}

.page-section {
  width: 100%;
  /*    max-width: 1920px; */
  padding: 0px var(--content-padding);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1920px) {
  .page-section {
    padding: 0px calc(50vw - 960px + var(--content-padding));
  }
}

.min-height {
  min-height: 80vh;
}

.text-vertical-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.text-vertical-wrapper p {
  margin-top: 55px;
  margin-bottom: 55px;
}

.text-vertical-wrapper.width-max-width {
  max-width: 474px;
}

.image-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.image-with-shadow {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: 10px 8px #797979ad;
          box-shadow: 10px 8px #797979ad;
}

.image-with-shadow.left {
  -webkit-box-shadow: -10px 8px #797979ad;
          box-shadow: -10px 8px #797979ad;
}

/* -------------------------------------------------------------------------- */
/*                                   HEADER                                   */
/* -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0px;
  left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: var(--header-padding);
  width: 100%;
  z-index: 12;
}

.header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.header .menu {
  color: white;
  padding: 0px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  font-size: 19px;
  font-family: var(--source-cerif-pro);
  font-weight: 300;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 420px);
}

.header .menu li a {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 51, 48, 0)), color-stop(100%, rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#bd9855), color-stop(100%, #bd9855), to(#bd9855));
  background: linear-gradient(0deg, rgba(51, 51, 48, 0) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #bd9855 0%, #bd9855 100%, #bd9855 100%);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 0.5em, 0 0.5em;
  background-repeat: no-repeat;
  -webkit-transition: background-size 600ms;
  transition: background-size 600ms;
  -webkit-transition: color 0.6s, background-size 600ms;
  transition: color 0.6s, background-size 600ms;
}

.header .menu li:hover a {
  color: #bd9855;
  background-size: 0 0.1em, 100% 0.1em;
}

.header .menu li.active a {
  color: #bd9855;
  background-size: 0 0.1em, 100% 0.1em;
}

.header.white {
  background-color: rgba(255, 255, 255, 0.7);
}

.header.white .header-lang-option {
  color: #333;
}

.header.white .logo path {
  fill: #333333;
}

.header.white .logo:hover path {
  fill: #bd9855;
}

.header.white nav .menu li a {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 51, 48, 0)), color-stop(100%, rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#bd9855), color-stop(100%, #bd9855), to(#bd9855));
  background: linear-gradient(0deg, rgba(51, 51, 48, 0) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #bd9855 0%, #bd9855 100%, #bd9855 100%);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 0.5em, 0 0.5em;
  background-repeat: no-repeat;
  -webkit-transition: background-size 600ms;
  transition: background-size 600ms;
  color: #333333;
  -webkit-transition: color 0.6s, background-size 600ms;
  transition: color 0.6s, background-size 600ms;
}

.header.white nav .menu li:hover a {
  color: #bd9855;
  background-size: 0 0.1em, 100% 0.1em;
}

.header.white nav .menu li.active a {
  color: #bd9855;
  background-size: 0 0.1em, 100% 0.1em;
}

.menu-open-btn {
  cursor: pointer;
  width: 52px;
  height: 52px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 14px 15px;
  background-color: #bd9855;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
  margin-left: auto;
}

.menu-open-btn .hamburger-box {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.menu-open-btn .hamburger-inner {
  display: block;
  top: 2px;
  -webkit-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}

.menu-open-btn .hamburger-inner,
.menu-open-btn .hamburger-inner::before,
.menu-open-btn .hamburger-inner::after {
  width: 23px;
  height: 1px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.menu-open-btn .hamburger-inner::before,
.menu-open-btn .hamburger-inner::after {
  content: "";
  display: block;
}

.menu-open-btn .hamburger-inner::before {
  top: 10px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), width 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), width 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), width 0.2s;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), width 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.menu-open-btn .hamburger-inner::after {
  top: 20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), width 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), width 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), width 0.2s;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), width 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.menu-open-btn.open .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent !important;
}

.menu-open-btn.open .hamburger-inner::before {
  top: 0;
  width: 30px;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), width 0.1s 0.2s, -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), width 0.1s 0.2s, -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.1s 0.2s;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.1s 0.2s, -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(-3.5px, 10px, 0) rotate(45deg);
          transform: translate3d(-3.5px, 10px, 0) rotate(45deg);
}

.menu-open-btn.open .hamburger-inner::after {
  top: 0;
  width: 30px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), width 0.1s 0.2s, -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), width 0.1s 0.2s, -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.1s 0.2s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.1s 0.2s, -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(-3.5px, 10px, 0) rotate(-45deg);
          transform: translate3d(-3.5px, 10px, 0) rotate(-45deg);
}

.lang-option {
  border: 1px solid #bd9855;
  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-family: var(--inter-sans);
  border-radius: 50%;
  text-align: center;
  padding: 2px;
  width: 50px;
  height: 50px;
  font-size: 16px;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.6s;
  transition: background-color 0.6s;
}

.lang-option:hover {
  background-color: #bd9855;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 370px;
  max-height: 76px;
  margin-right: 20px;
}

.logo:hover path {
  fill: #bd9855;
}

.menu-open .logo:hover path {
  fill: #333;
}

.header.menu-open {
  background-color: #bd9855;
  -webkit-transition: background-color 0.6s;
  transition: background-color 0.6s;
}

.header {
  -webkit-transition: background-color 0.6s 0.6s;
  transition: background-color 0.6s 0.6s;
}

.header .mobile-menu {
  height: calc(100vh - 82px);
  position: relative;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
}

.header .mobile-menu .line {
  position: absolute;
  height: calc(100% - 90px);
  width: 1px;
  background-color: white;
  left: 26px;
  top: 0px;
}

.header .mobile-menu .lang-option {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0px;
  border: 1px solid white;
  background-color: #bd9855;
  z-index: 2;
}

.header .mobile-menu .menu {
  width: 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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-height: 58vh;
  overflow-y: auto;
}

.header .mobile-menu .menu li + li {
  margin-top: 15px;
}

.header .mobile-menu .menu li {
  font-size: 32px;
}

.header .mobile-menu .menu li a {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 51, 48, 0)), color-stop(100%, rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(white), color-stop(100%, white), to(white));
  background: linear-gradient(0deg, rgba(51, 51, 48, 0) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, white 0%, white 100%, white 100%);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 0.5em, 0 0.5em;
  background-repeat: no-repeat;
  -webkit-transition: background-size 600ms;
  transition: background-size 600ms;
  -webkit-transition: color 0.6s, background-size 600ms;
  transition: color 0.6s, background-size 600ms;
}

.header .mobile-menu .menu li:hover a {
  color: white;
  background-size: 0 0.1em, 100% 0.1em;
}

.header .mobile-menu .menu li.active a {
  color: white;
  background-size: 0 0.1em, 100% 0.1em;
}

.menu-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 7px;
  margin-top: auto;
}

.menu-social .social-btn + .social-btn {
  margin-left: 20px;
}

@media (max-width: 1560px) {
  .logo {
    width: 250px;
    height: 52px;
  }
  .header .menu {
    width: calc(100% - 300px);
  }
}

@media (max-width: 1450px) {
  .header .menu {
    display: none;
  }
  .menu-open-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lang-option {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-padding: 12px;
  }
  .header .mobile-menu {
    height: calc(100vh - 76px);
  }
}

@media (max-width: 400px) {
  .header .mobile-menu .menu li {
    font-size: 26px;
  }
}

/* -------------------------------------------------------------------------- */
/*                                    INDEX                                   */
/* -------------------------------------------------------------------------- */
.head-slideshow {
  position: relative;
  width: 100%;
}

@media (min-width: 920px) {
  .head-slide {
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
  }
  .head-slide.slick-active {
    -webkit-animation-name: leftToRight;
            animation-name: leftToRight;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    opacity: 1;
  }
}

@-webkit-keyframes leftToRight {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    /*   transform: scale(1.5); */
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    /*     transform: scale(1); */
  }
}

@keyframes leftToRight {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    /*   transform: scale(1.5); */
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    /*     transform: scale(1); */
  }
}

.slideshow-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: 160px;
  bottom: 320px;
  max-width: 474px;
}

.slideshow-text-wrapper p {
  color: white;
  text-align: right;
}

.slideshow-text-wrapper .arrow-btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 25px;
}

.scroll-down-btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0px;
  min-height: 88px;
  overflow: hidden;
  color: white;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.scroll-down-btn span {
  font-size: 24px;
  font-family: var(--eb-garamond);
}

.scroll-down-btn:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 60%;
  background-color: #bd9855;
  width: 1px;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.scroll-down-btn:hover {
  color: #bd9855;
}

.scroll-down-btn:hover:after {
  bottom: 0px;
}

.arrow-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--eb-garamond);
  font-size: 20px;
}

.arrow-btn path {
  fill: none;
  stroke: white;
}

.arrow-btn span {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 51, 48, 0)), color-stop(100%, rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(white), color-stop(100%, white), to(white));
  background: linear-gradient(0deg, rgba(51, 51, 48, 0) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, white 0%, white 100%, white 100%);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 1.1em, 0 1.1em;
  background-repeat: no-repeat;
  -webkit-transition: background-size 600ms;
  transition: background-size 600ms;
}

.arrow-btn .btn-arrow {
  margin-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.arrow-btn:hover path {
  fill: #bd9855;
}

.arrow-btn:hover span {
  background-size: 0 0.1em, 100% 0.1em;
}

.arrow-btn.yellow {
  color: #333;
}

.arrow-btn.yellow path {
  stroke: #bd9855;
}

.arrow-btn.yellow span {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 51, 48, 0)), color-stop(100%, rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#bd9855), color-stop(100%, #bd9855), to(#bd9855));
  background: linear-gradient(0deg, rgba(51, 51, 48, 0) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #bd9855 0%, #bd9855 100%, #bd9855 100%);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 1.1em, 0 1.1em;
  background-repeat: no-repeat;
  -webkit-transition: background-size 600ms;
  transition: background-size 600ms;
}

.arrow-btn.yellow:hover svg path:last-child {
  fill: white;
  stroke: white;
}

.arrow-btn.yellow:hover span {
  background-size: 0 0.1em, 100% 0.1em;
}

.head-slides-wrapper {
  background-color: #000000;
  position: relative;
}

.head-slides-wrapper .slider-scroll-animation:nth-last-child(2) {
  left: 33.33%;
}

.head-slides-wrapper .slider-scroll-animation:nth-last-child(1) {
  left: 66.66%;
}

.slider-scroll-animation {
  position: absolute;
  width: 33.333%;
  height: 0px;
  bottom: 0px;
  left: 0px;
  background-color: #e7e7e7;
}

.with-after-animation span {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 51, 48, 0)), color-stop(100%, rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#bd9855), color-stop(100%, #bd9855), to(#bd9855));
  background: linear-gradient(0deg, rgba(51, 51, 48, 0) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #bd9855 0%, #bd9855 100%, #bd9855 100%);
  background-size: 100% 0.05em, 0 0.05em;
  background-position: 100% 1.2em, 0 1.2em;
  background-repeat: no-repeat;
  -webkit-transition: background-size 600ms;
  transition: background-size 600ms;
  -webkit-transition: none;
  transition: none;
  background-size: 0 0.05em, 50% 0.05em;
}

.head-slide {
  width: 100%;
  height: 100vh;
  min-height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 160px;
}

.head-slide .head-slide-content {
  position: absolute;
  bottom: 280px;
  max-width: 850px;
  font-family: var(--source-cerif-pro);
  font-weight: 300;
  font-size: 120px;
  line-height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
}

.head-slide .head-slide-content .head-slide-title {
  color: white;
}

.head-slide .head-slide-content .head-slide-subtitle {
  margin-top: -20px;
  font-family: var(--eb-garamond);
  color: #bd9855;
  text-align: right;
  font-weight: normal;
  padding-right: 150px;
}

.head-slide iframe {
  position: absolute;
  top: 0px;
  left: 0px;
}

.slider-controls {
  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;
  position: absolute;
  bottom: 170px;
  left: 160px;
}

.slider-controls .arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.slider-controls .arrows .arrow + .arrow {
  margin-left: 25px;
}

.slider-controls .slide-number {
  color: white;
  font-size: 30px;
  font-family: var(--eb-garamond);
}

.slider-controls .slide-number .current {
  color: #bd9855;
}

.arrow {
  cursor: pointer;
}

.arrow:hover path {
  fill: #bd9855;
}

.history-top {
  padding-top: 270px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.history-top img {
  width: 100%;
  max-width: 474px;
  height: 640px;
}

.history-top .text-vertical-wrapper {
  padding-left: 20px;
}

.history-top .heading {
  text-align: center;
}

.history-top .heading-extra {
  text-align: right;
  margin-top: -40px;
}

.history-bottom {
  margin-top: 130px;
  margin-bottom: 320px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.history-bottom img {
  width: 100%;
  max-width: 790px;
  height: 595px;
  margin-left: auto;
}

.history-bottom .text-vertical-wrapper {
  margin-right: 30px;
}

.history-bottom .with-max-width {
  margin-left: 160px;
}

.with-max-width {
  max-width: 474px;
}

.history-section {
  position: relative;
}

.history-section-bg-img {
  width: 100%;
  height: 1428px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
}

.instruments-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.instruments-top h1 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.instruments-top .instrument-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 316px;
  height: 455px;
  -ms-flex-negative: 0.5;
      flex-shrink: 0.5;
  margin: 10px;
  margin-left: 0px;
}

.instruments-top .instrument-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 632px;
  height: 271px;
  -ms-flex-negative: 0.5;
      flex-shrink: 0.5;
  margin: 10px;
  margin-right: 0px;
}

.instruments-big-text {
  margin-top: 40px;
  margin-bottom: 75px;
  font-size: 10vw;
  width: calc(100% + var(--content-padding) + var(--content-padding));
  margin-left: calc(0px - var(--content-padding));
  padding: 0px 20px;
  line-height: 10vw;
  text-align: center;
  font-weight: 300;
  font-family: var(--source-cerif-pro);
  color: #333;
}

.instruments-bottom {
  margin-bottom: 140px;
}

.instruments-bottom img {
  margin-top: 60px;
  width: 100%;
  max-width: 950px;
  height: 455px;
  margin-right: 30px;
}

.instruments-bottom h1 {
  font-family: var(--eb-garamond);
  font-size: 30px;
  /*   color: #aaaaaa; */
  color: #333;
}

.instruments-bottom .with-max-width {
  max-width: 474px;
  margin-left: auto;
}

.artists-section {
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 1050px;
}

.artists-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.artists-content .heading {
  color: white;
}

.artists-content .heading-extra {
  font-weight: normal;
}

.artists-content .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: calc(100% - 474px);
}

.artists-content p {
  color: white;
  text-align: right;
  max-width: 494px;
  margin-top: 80px;
  padding-left: 20px;
  margin-left: auto;
}

.artists-bottom {
  background-color: #0c1d32;
}

.artists-btn {
  width: 100%;
  max-width: 844px;
  height: 216px;
  border: 2px solid #bd9855;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
}

.artists-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  height: calc(100% - 100px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% + 10px);
  left: -5px;
  background-color: #0c1d32;
  z-index: 0;
}

.artists-btn:before {
  content: "";
  position: absolute;
  top: -5px;
  width: calc(100% - 100px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: calc(100% + 10px);
  left: 50%;
  background-color: #0c1d32;
  z-index: 0;
}

.artists-btn .content {
  cursor: pointer;
  z-index: 1;
  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;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.artists-btn .content .top {
  opacity: 1;
  font-size: 30px;
  color: #bd9855;
  font-family: var(--eb-garamond);
  -webkit-transition: opacity 0.6s 0.2s;
  transition: opacity 0.6s 0.2s;
}

.artists-btn .content .bottom {
  opacity: 1;
  font-size: 140px;
  font-family: var(--source-cerif-pro);
  font-weight: 300;
  line-height: 120px;
  /*     text-shadow: 2px 2px rgba(255, 255, 255, 1);
            color: #0c1d32; */
  color: white;
  -webkit-transition: opacity 0.6s 0.2s;
  transition: opacity 0.6s 0.2s;
}

.artists-btn .content:hover .top {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0;
}

.artists-btn .content:hover .bottom {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0;
}

.artists-btn .content:hover .hover {
  -webkit-transition: opacity 0.6s 0.2s;
  transition: opacity 0.6s 0.2s;
  opacity: 1;
}

.artists-btn .hover {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  padding: 0px 20px;
}

.artists-btn .hover svg {
  margin-top: auto;
}

.artists-btn .hover span {
  margin-top: 20px;
  color: #bd9855;
  font-size: 18px;
}

.events-section {
  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;
  padding-top: 20px;
  padding-bottom: 20px;
}

.events-section .heading-extra {
  text-align: center;
  /*  color: #333; */
}

.events-section .arrow-btn {
  margin-top: 50px;
}

.coming-events-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.coming-events-list .slick-list,
.coming-events-list .slick-track {
  width: 100%;
}

.coming-event-item {
  position: relative;
  width: 30%;
  padding-top: 42%;
  max-width: 30%;
}

.coming-event-item + .coming-event-item {
  margin-left: 5%;
}

.coming-event-item img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-filter 0.6s;
  transition: -webkit-filter 0.6s;
  transition: filter 0.6s;
  transition: filter 0.6s, -webkit-filter 0.6s;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.coming-event-item:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.coming-event-item:hover .enter-arrow {
  opacity: 1;
}

.slick-initialized .coming-event-item {
  width: unset;
  padding-top: 0px;
  max-width: 100%;
  padding: 10px;
}

.slick-initialized .coming-event-item + .slick-initialized .coming-event-item {
  margin-left: 0px;
}

.slick-initialized .coming-event-item img {
  width: 100%;
  position: relative;
}

.slick-initialized .coming-event-item + .coming-event-item {
  margin-left: 0px;
}

.main-sponsors-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0px;
  margin-left: -45px;
}

.m-sponsor-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 45px;
}

.m-sponsor-item:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.m-sponsor-item img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  max-width: 190px;
  height: 120px;
  -webkit-transition: -webkit-filter 0.6s;
  transition: -webkit-filter 0.6s;
  transition: filter 0.6s;
  transition: filter 0.6s, -webkit-filter 0.6s;
}

.slick-initialized .m-sponsor-item img {
  max-width: 100%;
}

@media (max-width: 1650px) {
  .head-slide .head-slide-content {
    max-width: 600px;
    font-size: 80px;
    line-height: 80px;
  }
  .heading {
    font-size: 80px;
    line-height: 80px;
  }
  .page-heading {
    font-size: 80px;
    line-height: 80px;
  }
  .subheading {
    font-size: 28px;
  }
  .heading-extra {
    font-size: 72px;
    line-height: 72px;
  }
  .history-top .heading-extra {
    margin-top: -20px;
  }
  .history-bottom .with-max-width {
    margin-left: 0px;
  }
}

@media (max-width: 1550px) {
  .instruments-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .instruments-top .instrument-right {
    margin-left: auto;
  }
  .instruments-top h1 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media (max-width: 1400px) {
  .head-slideshow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slideshow-text-wrapper {
    position: relative;
    bottom: unset;
    right: unset;
    max-width: 100%;
    padding-top: 110px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 70px;
  }
  .slideshow-text-wrapper p {
    color: #333333;
    font-size: 18px;
  }
  .slideshow-text-wrapper .arrow-btn {
    color: #333;
  }
  .slideshow-text-wrapper .arrow-btn path {
    stroke: #bd9855;
  }
  .slideshow-text-wrapper .arrow-btn span {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 51, 48, 0)), color-stop(100%, rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#bd9855), color-stop(100%, #bd9855), to(#bd9855));
    background: linear-gradient(0deg, rgba(51, 51, 48, 0) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #bd9855 0%, #bd9855 100%, #bd9855 100%);
    background-size: 100% 0.1em, 0 0.1em;
    background-position: 100% 1.1em, 0 1.1em;
    background-repeat: no-repeat;
    -webkit-transition: background-size 600ms;
    transition: background-size 600ms;
  }
  .slideshow-text-wrapper .arrow-btn:hover svg path:last-child {
    fill: white;
    stroke: white;
  }
  .slideshow-text-wrapper .arrow-btn:hover span {
    background-size: 0 0.1em, 100% 0.1em;
  }
}

@media (max-width: 1350px) {
  .history-top {
    padding-top: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .history-top .text-vertical-wrapper {
    padding-left: 0px;
    padding-top: 20px;
  }
  .history-bottom {
    margin-top: 50px;
    -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;
  }
  .history-bottom img {
    margin: 35px 0px;
  }
  .history-bottom .text-vertical-wrapper {
    margin-right: 0px;
    margin-top: 48px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .history-bottom .text-vertical-wrapper h1 {
    text-align: center;
  }
  .instruments-bottom {
    margin-top: 50px;
    -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;
  }
  .instruments-bottom img {
    margin: 35px 0px;
  }
  .instruments-bottom .text-vertical-wrapper {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 48px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .instruments-bottom .text-vertical-wrapper h1 {
    text-align: center;
  }
  .instruments-top {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .instruments-top .instrument-right {
    margin-left: 0px;
  }
  .instruments-top .instrument-left {
    margin-right: auto;
  }
  .instruments-top h1 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    text-align: center;
  }
  .instruments-big-text {
    margin-bottom: 0px;
  }
  .instruments-bottom {
    margin-top: 35px;
  }
  .instruments-bottom img {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

@media (max-width: 1300px) {
  .artists-content p {
    display: none;
  }
  .artists-content .left {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .artists-btn .content .bottom {
    font-size: 120px;
    line-height: 100px;
  }
}

@media (max-width: 1024px) {
  :root {
    --content-padding: 40px;
  }
  .head-slide {
    padding: 35px;
  }
  .head-slide .head-slide-content {
    padding-left: 35px;
    padding-right: 35px;
    left: 50%;
    bottom: 180px;
    max-width: 80%;
    width: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .head-slide .head-slide-content .head-slide-subtitle,
  .head-slide .head-slide-content .head-slide-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
  }
  .slider-controls {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 38px;
  }
  .scroll-down-btn {
    display: none;
  }
  .instruments-big-text {
    font-size: 48px;
    line-height: 50px;
  }
  .text-vertical-wrapper p {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .artists-section {
    min-height: 770px;
  }
  .artists-section .heading {
    text-align: center;
  }
}

@media (max-width: 800px) {
  .coming-events-list {
    padding-top: 10px;
  }
  .artists-btn {
    height: 290px;
  }
  .artists-btn .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .artists-btn .content .bottom {
    font-size: 48px;
    line-height: 50px;
    text-shadow: none;
    color: white;
  }
  .artists-btn .content:hover .hover {
    opacity: 0;
  }
  .artists-btn .content:hover .top {
    opacity: 1;
  }
  .artists-btn .content:hover .bottom {
    opacity: 1;
  }
  h1 {
    font-size: 36px;
  }
  .head-slide .head-slide-content {
    max-width: 100%;
    font-size: 48px;
    line-height: 50px;
  }
  .heading {
    font-size: 48px;
    line-height: 50px;
  }
  .heading-extra {
    font-size: 48px;
    line-height: 50px;
  }
  .history-top {
    padding-top: 40px;
  }
  .history-top .heading-extra {
    text-align: center;
    margin-top: -10px;
  }
  .history-top img {
    max-width: 290px;
    height: 380px;
  }
}

@media (max-width: 600px) {
  .heading {
    font-size: 32px;
    line-height: 40px;
  }
  .heading-extra {
    font-size: 32px;
    line-height: 40px;
  }
  .history-bottom {
    margin-bottom: 0px;
  }
  .history-bottom img {
    max-width: 375px;
    width: calc(100% + 80px);
    height: 282px;
  }
  .instruments-bottom img {
    width: calc(100% + var(--content-padding) + var(--content-padding));
    height: 180px;
  }
  .instruments-top .instrument-left {
    max-width: 158px;
    height: 227px;
  }
  .instruments-top .instrument-right {
    max-width: 295px;
    height: 135px;
  }
}

@media (max-width: 400px) {
  .instruments-big-text {
    font-size: 28px;
    line-height: 40px;
  }
  .head-slide .head-slide-content {
    font-size: 38px;
    line-height: 40px;
  }
  .head-slide .head-slide-content .head-slide-subtitle {
    margin-top: 0px;
  }
  .artists-btn .content .bottom {
    font-size: 38px;
    line-height: 40px;
  }
}

/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-top {
  padding: 0px var(--content-padding);
  padding-top: 40px;
  padding-bottom: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #0e1f34;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-bottom {
  /* color: #333; */
  color: white;
  font-size: 13px;
  font-family: var(--inter-sans);
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #bd9855;
  padding: 25px var(--content-padding);
}

.footer-bottom .copyrights-terms {
  width: 33%;
}

.footer-bottom .terms-links a {
  /*      color: #333; */
}

.footer-bottom .terms-links a:hover {
  text-decoration: line-through;
}

.footer-bottom .terms-links a + a {
  margin-left: 20px;
}

.footer-bottom .developer {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer-bottom .developer .made-url {
  margin-left: 10px;
  margin-top: auto;
}

.footer-bottom .developer .made-url:hover {
  opacity: 0.6;
}

.footer-bottom .developer path {
  /*   fill: #333; */
}

.info-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-icon svg {
  margin-left: 10px;
}

.footer-menu {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-menu a {
  font-size: 14px;
  color: #bd9855;
  font-family: var(--source-cerif-pro);
}

.footer-menu a:hover {
  text-decoration: line-through;
}

.footer-menu a.active {
  text-decoration: line-through;
}

.footer-menu .left,
.footer-menu .right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer-menu .right {
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer-menu .footer-menu-link + .footer-menu-link,
.footer-menu .footer-menu-link + .info-icon,
.footer-menu .info-icon + .info-icon {
  margin-top: 15px;
}

.footer-center {
  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;
}

.footer-social {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-social .social-btn path {
  fill: #bd9855;
}

.footer-social .social-btn + .social-btn {
  margin-left: 20px;
}

.footer-social .social-btn:hover path {
  fill: white;
}

.footer-logo {
  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;
}

.footer-logo svg + svg {
  margin-top: 10px;
}

.footer-logo:hover path {
  fill: #bd9855;
}

.footer-newsletter {
  width: 33%;
}

.newsletter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.newsletter-wrapper .title {
  font-size: 14px;
  color: white;
  font-family: var(--source-cerif-pro);
}

.newsletter-wrapper .subtitle {
  margin-top: 5px;
  font-size: 13px;
  color: #aaaaaa;
  font-family: var(--inter-sans);
}

.newsletter-wrapper .input-wrapper {
  margin-top: 10px;
  background-color: white;
  padding: 5px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.newsletter-wrapper .input-wrapper button {
  background-color: #bd9855;
  font-family: var(--eb-garamond);
  font-size: 24px;
  font-style: italic;
  text-align: center;
  padding: 5px;
  min-width: 152px;
  /*    color: #333; */
  color: white;
  min-height: 40px;
}

.newsletter-wrapper .input-wrapper input {
  font-family: var(--inter-sans);
  font-size: 14px;
  width: 100%;
  height: 40px;
  padding: 5px;
}

@media (max-width: 1350px) {
  .footer-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-center {
    margin-top: 20px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .footer-menu {
    width: 50%;
    padding-right: 10px;
  }
  .footer-newsletter {
    padding-left: 10px;
    width: 50%;
  }
  .footer-bottom .terms-links {
    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;
  }
  .footer-bottom .terms-links a + a {
    margin-left: 0px;
    margin-top: 10px;
  }
}

@media (max-width: 1024px) {
  .footer-center {
    display: none;
  }
}

@media (max-width: 900px) {
  .footer-newsletter {
    display: none;
  }
  .footer-menu {
    width: 100%;
    padding-right: 10px;
  }
}

@media (max-width: 800px) {
  .footer-bottom {
    -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;
  }
  .footer-bottom .copyrights-terms {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-bottom .developer {
    margin-top: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 500px) {
  .page-heading {
    font-size: 52px;
    line-height: 52px;
  }
  .subheading {
    font-size: 22px;
  }
  .footer-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-menu .left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .footer-menu .right {
    margin-top: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}

/* -------------------------------------------------------------------------- */
/*                                   HISTORY                                  */
/* -------------------------------------------------------------------------- */
.dead-space {
  height: 135px;
  background-color: white;
}

.page-bottom-padding {
  padding-bottom: 280px;
}

.page-top {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  font-family: var(--inter-sans);
  margin-bottom: 60px;
}

.page-top a {
  color: #bd9855;
}

.page-top a:last-child {
  color: #333;
}

.history-page-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.history-page-top .background-image {
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 732px;
  height: 2237px;
  opacity: 0.55;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
}

.history-page-top .history-left {
  width: 100%;
  max-width: 790px;
}

.history-page-top .history-left p {
  margin-top: 90px;
}

.history-page-top .history-right {
  margin-left: auto;
  padding-left: 50px;
  -ms-flex-negative: 0.4;
      flex-shrink: 0.4;
}

.history-page-top .history-right img {
  width: 100%;
  max-width: 632px;
  height: 781px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.history-items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.history-items-list .history-item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.history-items-list .history-item:nth-child(2n) .history-image {
  -webkit-box-shadow: -10px 8px #797979ad;
          box-shadow: -10px 8px #797979ad;
  margin-right: 0px;
  margin-left: 80px;
}

.history-items-list .history-item:nth-child(2n) .history-item-title {
  text-align: left;
}

.history-items-list .history-item:nth-child(2n) .history-item-subtitle {
  text-align: left;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.history-items-list .history-item:nth-child(2n) .history-item-subtitle span {
  margin-right: auto;
  margin-left: 0px;
}

.history-items-list .history-item:nth-child(2n) .history-item-subtitle .line {
  margin-right: 0px;
  margin-left: 15px;
}

.history-items-list .history-item:nth-child(2n) .history-item-subtitle .line .circle {
  left: unset;
  right: 0px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.history-items-list .history-item:nth-child(2n) .history-item-text-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 0px;
  margin-right: auto;
}

.history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 145px;
}

.history-item .history-image {
  width: 50%;
  max-width: 632px;
  height: 632px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: 10px 8px #797979ad;
          box-shadow: 10px 8px #797979ad;
  margin-right: 80px;
}

.history-item .history-item-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
}

.history-item .history-item-title {
  margin-top: 65px;
  font-family: var(--inter-sans);
  color: #333;
  text-align: right;
  font-weight: 600;
  font-size: 24px;
}

.history-item .history-item-subtitle {
  letter-spacing: 5px;
  width: 100%;
  text-align: right;
  font-size: 16px;
  color: #bd9855;
  font-family: var(--inter-sans);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.history-item .history-item-subtitle span {
  margin-left: auto;
}

.history-item .history-item-subtitle .line {
  /*  width: 100%; */
  position: relative;
  height: 2px;
  background-color: #bd9855;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 15px;
}

.history-item .history-item-subtitle .line .circle {
  z-index: -1;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  position: absolute;
  background-color: white;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.history-item .history-item-subtitle .line .circle:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border-radius: 50%;
  border: 1px solid #bd9855;
}

.history-item .history-item-subtitle .line .circle:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 1px solid #bd9855;
}

.history-item .history-item-text {
  margin-top: 34px;
  max-width: 672px;
  width: 100%;
  max-height: 360px;
  height: 100%;
  overflow-y: auto;
}

.history-item .history-item-text .os-scrollbar-track {
  background-color: #aaaaaa;
}

.history-item .history-item-text .os-scrollbar {
  width: 20px;
  padding: 0px 7px;
}

.history-item .history-item-text .os-scrollbar-handle {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  max-width: 20px;
  min-height: 20px !important;
  max-height: 20px;
  background-color: white !important;
  left: -7px !important;
  border-radius: 50% !important;
}

.history-item .history-item-text .os-scrollbar-handle:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  background-color: #bd9855;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.history-item .history-item-text.left {
  padding-left: 40px;
}

.history-item .history-item-text.left .os-scrollbar-vertical {
  left: 0px;
  right: unset;
}

.history-item .history-item-text.right {
  padding-right: 40px;
}

@media (max-width: 1550px) {
  .dead-space {
    height: 112px;
  }
}

@media (max-width: 1200px) {
  .history-page-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .history-page-top .history-left p {
    margin-top: 40px;
  }
  .history-page-top .history-right {
    margin-top: 45px;
    margin-right: auto;
    padding-left: 0px;
  }
  .history-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .history-item .history-image {
    width: 100%;
    margin-right: auto;
  }
  .history-item .history-item-text-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .history-items-list .history-item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .history-items-list .history-item:nth-child(2n) .history-image {
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .dead-space {
    height: 76px;
  }
  .history-item .history-item-subtitle .line .circle {
    display: none;
  }
}

@media (max-width: 600px) {
  .history-page-top .history-right img {
    height: 480px;
  }
  .history-item .history-item-subtitle .line {
    display: none;
  }
  .history-item .history-item-text.left {
    padding-left: 20px;
  }
  .history-item .history-item-text.right {
    padding-right: 20px;
  }
}

@media (max-width: 500px) {
  .history-item .history-image {
    height: 380px;
  }
}

@media (max-width: 400px) {
  .history-page-top .history-right img {
    height: 380px;
  }
}

/* -------------------------------------------------------------------------- */
/*                                   ARTISTS                                  */
/* -------------------------------------------------------------------------- */
.artist-items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.artist-item:nth-child(1) {
  margin-top: 95px;
}

.artist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 50px;
  padding-bottom: 50px;
}

.artist-item .artist-item-top,
.artist-item .artist-item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.artist-item .artist-item-bottom {
  padding-left: 368px;
  margin-left: -20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.artist-item .artist-item-bottom span {
  margin-left: 20px;
  font-size: 18px;
  color: #333;
  font-weight: 600;
}

.artist-item .artist-social .social-btn {
  margin-left: 20px;
}

.artist-item .artist-social .social-btn path {
  fill: #0e1f34;
}

.artist-item .artist-social .social-btn:hover path {
  fill: #bd9855;
}

.artist-item .artist-image {
  width: 326px;
  height: 326px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: 10px 8px #797979ad;
          box-shadow: 10px 8px #797979ad;
  margin-right: 42px;
}

.artist-item .artist-item-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.artist-item .artist-item-title {
  font-family: var(--inter-sans);
  color: #333;
  font-weight: 600;
  font-size: 24px;
}

.artist-item .artist-item-subtitle {
  margin-top: 6px;
  letter-spacing: 5px;
  width: 100%;
  text-align: right;
  font-size: 16px;
  color: #bd9855;
  font-family: var(--inter-sans);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.artist-item .artist-item-text {
  margin-top: 34px;
}

@media (max-width: 1200px) {
  .artist-item:nth-child(1) {
    margin-top: 15px;
  }
}

@media (max-width: 800px) {
  .artist-item .artist-item-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .artist-item .artist-item-title {
    margin-top: 45px;
  }
  .artist-item .artist-item-bottom {
    padding-left: 0px;
  }
  .artist-item .artist-item-text-wrapper {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .artist-item .artist-image {
    width: 100%;
  }
}

/* -------------------------------------------------------------------------- */
/*                                   ARCHIVE                                  */
/* -------------------------------------------------------------------------- */
.filters-tabs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 90px;
  margin-bottom: 35px;
  margin-left: -45px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.filters-tabs-list .filter-tab {
  font-family: var(--source-cerif-pro);
  cursor: pointer;
  font-weight: 300;
  margin-top: 10px;
  margin-left: 45px;
  min-height: 46px;
  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: 19px;
  text-transform: uppercase;
  padding: 10px 20px;
}

.filters-tabs-list .filter-tab span {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 51, 48, 0)), color-stop(100%, rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#bd9855), color-stop(100%, #bd9855), to(#bd9855));
  background: linear-gradient(0deg, rgba(51, 51, 48, 0) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #bd9855 0%, #bd9855 100%, #bd9855 100%);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 0.5em, 0 0.5em;
  background-repeat: no-repeat;
  -webkit-transition: background-size 600ms;
  transition: background-size 600ms;
}

.filters-tabs-list .filter-tab:hover span {
  color: #bd9855;
  background-size: 0 0.1em, 100% 0.1em;
}

.filters-tabs-list .filter-tab.active {
  background-color: #333333;
  color: #bd9855;
}

.filters-tabs-list .filter-tab.active span {
  background-size: 0 0.1em, 100% 0.1em;
}

.archive-items-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(10%, 316px))[4];
      grid-template-columns: repeat(4, minmax(10%, 316px));
  -webkit-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
  min-height: 100vh;
}

.archive-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.archive-item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.archive-item a:hover .archive-item-image {
  -webkit-box-shadow: 0px 0px #79797900;
          box-shadow: 0px 0px #79797900;
}

.archive-item a:hover .zoom-btn {
  opacity: 1;
}

.archive-item .info-items-list {
  margin-top: 15px;
}

.archive-item .info-item .info-content {
  margin-top: 7px;
}

.archive-item .info-item + .info-item {
  margin-top: 23px;
}

.archive-item .archive-item-image {
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-box-shadow: 10px 8px #797979ad;
          box-shadow: 10px 8px #797979ad;
  -webkit-transition: -webkit-box-shadow 0.6s;
  transition: -webkit-box-shadow 0.6s;
  transition: box-shadow 0.6s;
  transition: box-shadow 0.6s, -webkit-box-shadow 0.6s;
}

.archive-item .archive-item-title {
  font-family: var(--inter-sans);
  color: #333;
  font-weight: 600;
  font-size: 24px;
  margin-top: 37px;
}

.archive-item .more-btn {
  margin-top: 25px;
}

.archive-item .archive-item-subtitle {
  letter-spacing: 5px;
  width: 100%;
  text-align: right;
  font-size: 16px;
  color: #bd9855;
  font-family: var(--inter-sans);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.archive-item .archive-item-text {
  margin-top: 20px;
}

@media (max-width: 1300px) {
  .archive-items-grid {
    -ms-grid-columns: (minmax(10%, 316px))[3];
        grid-template-columns: repeat(3, minmax(10%, 316px));
  }
}

@media (max-width: 1024px) {
  .archive-items-grid {
    -ms-grid-columns: (minmax(10%, 420px))[2];
        grid-template-columns: repeat(2, minmax(10%, 420px));
  }
}

@media (max-width: 550px) {
  .archive-item .archive-item-title {
    font-size: 20px;
  }
  .archive-items-grid {
    -ms-grid-columns: (minmax(10%, 100%))[1];
        grid-template-columns: repeat(1, minmax(10%, 100%));
  }
}

.zoom-btn {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  width: 80px;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
}

.more-btn {
  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;
  cursor: pointer;
  padding: 5px 20px;
  background-color: #bd9855;
  font-family: var(--eb-garamond);
  font-size: 24px;
  text-align: center;
  font-style: italic;
  color: #ffffff;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.more-btn:hover {
  background-color: #0c1d32;
}

.more-btn.disabled {
  opacity: 0.6;
}

.max-content-inside,
.max-content-list-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 120px;
  padding-right: 120px;
  margin-top: 90px;
}

.images-slider-wrapper {
  padding-left: 33px;
  padding-right: 33px;
  max-width: 700px;
  width: 100%;
  position: relative;
  -ms-flex-negative: 0.5;
      flex-shrink: 0.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  cursor: pointer;
}

.images-slider-wrapper:hover .zoom-btn {
  opacity: 1;
}

.slider-arrow {
  position: absolute;
  min-width: 66px;
  width: 66px;
  min-height: 66px;
  height: 66px;
  cursor: pointer;
  background-color: rgba(189, 153, 86, 0.5);
  border-radius: 50%;
  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;
  z-index: 2;
}

.slider-arrow:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slider-arrow.slick-disabled {
  background-color: rgba(51, 51, 51, 0.5);
}

.slider-arrow.left {
  left: 33px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slider-arrow.right {
  right: 33px;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.images-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-shadow: 10px 8px #797979ad;
          box-shadow: 10px 8px #797979ad;
}

.images-slider img {
  width: 100%;
}

.images-slider .slick-track,
.images-slider .slick-list {
  width: 100%;
}

.content-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-left: 50px;
}

.content-item-text h2 {
  margin-bottom: 30px;
}

.info-items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info-item + .info-item {
  margin-top: 25px;
}

.info-item .info-title {
  font-size: 16px;
  font-family: var(--inter-sans);
  color: #bd9855;
}

.info-item .info-content {
  font-size: 16px;
  font-family: var(--inter-sans);
  color: #333;
  margin-top: 16px;
}

.info-item.vertical {
  padding: 10px 0px;
  padding-top: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info-item.vertical .info-title {
  margin-right: 20px;
  margin-top: 10px;
}

.info-item.vertical .info-content {
  margin-top: 10px;
  margin-left: auto;
  text-align: right;
}

.info-divider {
  width: 100%;
  height: 1px;
  background-color: #797979;
}

@media (max-width: 1650px) {
  .max-content-inside,
  .max-content-list-inside {
    padding: 0px;
  }
}

@media (max-width: 1450px) {
  .images-slider-wrapper {
    max-width: 550px;
  }
}

@media (max-width: 1250px) {
  .images-slider-wrapper {
    max-width: 450px;
  }
}

@media (max-width: 1150px) {
  .images-slider-wrapper {
    max-width: 350px;
  }
}

@media (max-width: 1024px) {
  .max-content-inside {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .images-slider-wrapper {
    max-width: 550px;
    margin-bottom: 45px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .content-item-text {
    margin-left: 0px;
  }
}

@media (max-width: 600px) {
  .images-slider-wrapper {
    padding: 0px;
  }
  .images-slider-wrapper .slider-arrow {
    display: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/*                            INSTRUMENT CATEGORIES                           */
/* -------------------------------------------------------------------------- */
.insturment-categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.insturment-categories-list .instrument-category-item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.insturment-categories-list .instrument-category-item:nth-child(2n) .content-item-text {
  margin-left: 0px;
  margin-right: 50px;
}

.insturment-categories-list .instrument-category-item:nth-child(2n) .images-slider {
  -webkit-box-shadow: -10px 8px #797979ad;
          box-shadow: -10px 8px #797979ad;
}

.images-slider .slick-dots {
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: unset;
  width: auto;
  bottom: 55px;
}

.images-slider .slick-dots li + li {
  margin-top: 7px;
}

.images-slider .slick-dots li {
  margin: 0px;
  width: 50px;
  height: 32px;
  background-color: white;
  font-family: var(--eb-garamond);
  font-size: 24px;
  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;
}

.images-slider .slick-dots li.slick-active {
  background-color: #bd9855;
}

.instrument-category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.instrument-category-item + .instrument-category-item {
  margin-top: 95px;
}

.instrument-category-item .more-link {
  margin-top: 30px;
}

.instrument-category-item .more-btn {
  margin-top: 30px;
}

.instrument-category-item h2 {
  margin-bottom: 22px;
}

.more-link {
  color: #bd9855;
  font-family: var(--eb-garamond);
  font-size: 20px;
  font-style: italic;
  cursor: pointer;
}

.more-link span {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(51, 51, 48, 0)), color-stop(100%, rgba(0, 0, 0, 0)), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left bottom, left top, from(#bd9855), color-stop(100%, #bd9855), to(#bd9855));
  background: linear-gradient(0deg, rgba(51, 51, 48, 0) 0%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, #bd9855 0%, #bd9855 100%, #bd9855 100%);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 0.7em, 0 0.7em;
  background-repeat: no-repeat;
  -webkit-transition: background-size 600ms;
  transition: background-size 600ms;
}

.more-link:hover span {
  background-size: 0 0.1em, 100% 0.1em;
}

.instruments-grid {
  margin-top: 120px;
}

@media (max-width: 1024px) {
  .instrument-category-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .insturment-categories-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .insturment-categories-list .instrument-category-item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .insturment-categories-list .instrument-category-item:nth-child(2n) .content-item-text {
    margin-left: 0px;
    margin-right: 0px;
  }
}

@media (max-width: 600px) {
  .images-slider .slick-dots {
    display: none !important;
  }
}

.more-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.more-wrapper h1 {
  text-align: center;
}

.more-wrapper .archive-item {
  max-width: 316px;
}

.more-wrapper .more-slider-wrapper {
  margin-top: 70px;
  width: 100%;
}

.more-wrapper .more-slider {
  width: 100%;
}

.more-wrapper .more-slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* -------------------------------------------------------------------------- */
/*                                   EVENTS                                   */
/* -------------------------------------------------------------------------- */
.event-items-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(1%, 474px))[3];
      grid-template-columns: repeat(3, minmax(1%, 474px));
  -webkit-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
  margin-top: 25px;
}

.event-item {
  position: relative;
  width: 100%;
  padding-top: 140%;
}

.event-item img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-filter 0.6s;
  transition: -webkit-filter 0.6s;
  transition: filter 0.6s;
  transition: filter 0.6s, -webkit-filter 0.6s;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.event-item:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.event-item:hover .enter-arrow {
  opacity: 1;
}

.enter-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: white;
  border: 2px solid #bd9855;
  width: 110px;
  height: 110px;
  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;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

@media (max-width: 1300px) {
  .event-items-grid {
    -ms-grid-columns: (minmax(10%, 420px))[2];
        grid-template-columns: repeat(2, minmax(10%, 420px));
  }
}

@media (max-width: 550px) {
  .event-items-grid {
    -ms-grid-columns: (minmax(10%, 100%))[1];
        grid-template-columns: repeat(1, minmax(10%, 100%));
  }
}

/* -------------------------------------------------------------------------- */
/*                                    EVENT                                   */
/* -------------------------------------------------------------------------- */
.event-image-wrapper {
  max-width: 700px;
  width: 100%;
  position: relative;
  -ms-flex-negative: 0.5;
      flex-shrink: 0.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.event-image-wrapper:hover .zoom-btn {
  opacity: 1;
}

.event-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 120px;
  margin-top: 90px;
}

.other-events-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 95px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.other-events-section .heading-extra {
  text-align: center;
}

.share-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 45px;
  margin-top: auto;
}

.share-content span {
  font-size: 16px;
  font-weight: 500;
  color: #bd9855;
  letter-spacing: 5px;
  font-family: var(--inter-sans);
}

.share-btns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.share-btn {
  width: 39px;
  height: 39px;
}

.share-btn path {
  fill: #0e1f34;
}

.share-btn:hover path {
  fill: #bd9855;
}

.share-btn + .share-btn {
  margin-left: 30px;
}

@media (max-width: 1650px) {
  .event-content-wrapper {
    padding: 0px;
  }
}

@media (max-width: 1024px) {
  .event-image-wrapper {
    max-width: unset;
    margin-bottom: 45px;
  }
  .event-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* -------------------------------------------------------------------------- */
/*                                  SPONSORS                                  */
/* -------------------------------------------------------------------------- */
.sponsor-items-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(1%, 158px))[5];
      grid-template-columns: repeat(5, minmax(1%, 158px));
  -webkit-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 40px;
  margin-top: 90px;
}

.sponsor-item {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  /*   background-color: #333; */
  background-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;
}

.sponsor-item img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 1300px) {
  .sponsor-items-grid {
    -ms-grid-columns: (minmax(1%, 158px))[4];
        grid-template-columns: repeat(4, minmax(1%, 158px));
  }
}

@media (max-width: 1100px) {
  .sponsor-items-grid {
    -ms-grid-columns: (minmax(1%, 158px))[3];
        grid-template-columns: repeat(3, minmax(1%, 158px));
  }
}

@media (max-width: 620px) {
  .sponsor-items-grid {
    -ms-grid-columns: (minmax(5%, 158px))[2];
        grid-template-columns: repeat(2, minmax(5%, 158px));
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .sponsor-item {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

@media (max-width: 420px) {
  .sponsor-items-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 0px;
    -webkit-column-gap: 0px;
            column-gap: 0px;
  }
  .sponsor-item + .sponsor-item {
    margin-top: 25px;
  }
}

/* -------------------------------------------------------------------------- */
/*                                   CONTACT                                  */
/* -------------------------------------------------------------------------- */
.contact-form-wrapper {
  position: relative;
  display: -ms-grid;
  display: grid;
  margin-top: 75px;
  -webkit-column-gap: 35px;
          column-gap: 35px;
  -ms-grid-columns: (calc(25% - 26.5px))[4];
      grid-template-columns: repeat(4, calc(25% - 26.5px));
  width: 100%;
  row-gap: 40px;
}

.success-message-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  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;
  padding: 20px;
}

.success-message-container .success-message-text {
  font-size: 22px;
  margin-bottom: 60px;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-item label {
  color: #333;
  margin-bottom: 15px;
}

.contact-item label span {
  color: #bd9855;
  letter-spacing: 5px;
  font-weight: 500;
  font-family: var(--inter-sans);
}

.contact-item .more-btn {
  width: 100%;
}

.contact-item .required-text {
  margin-top: auto;
  margin-bottom: 30px;
}

input[type="text"],
input[type="email"],
input[type="phone"],
textarea {
  height: 50px;
  background-color: white;
  padding: 5px 20px;
  font-size: 14px;
  outline: none;
  font-family: var(--inter-sans);
}

input[type="text"] ::-webkit-input-placeholder,
input[type="email"] ::-webkit-input-placeholder,
input[type="phone"] ::-webkit-input-placeholder,
textarea ::-webkit-input-placeholder {
  /* Edge */
  color: #999999;
  font-size: 14px;
}

input[type="text"] :-ms-input-placeholder,
input[type="email"] :-ms-input-placeholder,
input[type="phone"] :-ms-input-placeholder,
textarea :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999999;
  font-size: 14px;
}

input[type="text"] ::-ms-input-placeholder,
input[type="email"] ::-ms-input-placeholder,
input[type="phone"] ::-ms-input-placeholder,
textarea ::-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999999;
  font-size: 14px;
}

input[type="text"] ::placeholder,
input[type="email"] ::placeholder,
input[type="phone"] ::placeholder,
textarea ::placeholder {
  color: #999999;
  font-size: 14px;
}

textarea {
  resize: none;
  height: 245px;
  padding: 15px 20px;
}

.text-area-item {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 4;
}

.contact-buttons .required-text {
  font-size: 14px;
  text-align: center;
}

.contact-info {
  margin-left: -5px;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 10px);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-info-item {
  padding: 5px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
}

.contact-info-item .icon {
  margin-right: 12px;
}

#contact-map {
  width: 100%;
  height: 914px;
  margin-top: 60px;
}

@media (max-width: 1350px) {
  .contact-form-wrapper {
    -ms-grid-columns: (calc(33% - 17.5px))[3];
        grid-template-columns: repeat(3, calc(33% - 17.5px));
  }
}

@media (max-width: 800px) {
  .contact-form-wrapper {
    -ms-grid-columns: (calc(50% - 17.5px))[2];
        grid-template-columns: repeat(2, calc(50% - 17.5px));
  }
  .text-area-item {
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 3;
  }
  #contact-map {
    width: 100%;
    height: 600px;
    margin-top: 60px;
  }
}

@media (max-width: 600px) {
  .contact-form-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: unset;
  }
  .contact-form-wrapper .contact-item + .contact-item {
    margin-top: 40px;
  }
  .text-area-item {
    -ms-grid-column: unset;
        grid-column-start: unset;
    grid-column-end: unset;
  }
  #contact-map {
    height: 420px;
  }
}

.no-dots .slick-dots {
  display: none !important;
}

.event-image-wrapper .event-item img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

/* -------------------------------------------------------------------------- */
/*                                  CALENDAR                                  */
/* -------------------------------------------------------------------------- */
.modal-content {
  margin: auto;
}

.calendar-section {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 320px;
  margin-bottom: 60px;
}

.calendar-section h1 {
  text-align: center;
  margin-bottom: 70px;
}

.calendar-container {
  margin: 0px auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f2f2f2;
  width: 100%;
  max-width: 1264px;
  border-right: 1px solid #797979;
  border-bottom: 1px solid #797979;
}

.calendar-container .calendar-top {
  background-color: rgba(12, 29, 50, 0.95);
  padding: 10px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 108px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.calendar-container .cal-arrow {
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--eb-garamond);
  font-size: 30px;
  color: #bd9855;
}

.calendar-container .cal-arrow path {
  fill: #bd9855;
}

.calendar-container .cal-arrow.left {
  text-align: left;
}

.calendar-container .cal-arrow.right {
  text-align: right;
}

.calendar-container .cal-arrow.disabled {
  opacity: 0.5;
  pointer-events: none;
  color: white;
}

.calendar-container .cal-arrow.disabled path {
  fill: white;
}

.calendar-container .month-wrapper {
  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;
  color: #ffffff;
  text-align: center;
  line-height: normal;
  font-family: var(--eb-garamond);
  font-size: 30px;
}

.calendar-container .month-wrapper .year {
  font-weight: 500;
  color: #bd9855;
  text-align: center;
  line-height: normal;
  letter-spacing: 5px;
  font-family: var(--inter-sans);
  font-size: 16px;
}

.calendar-container .calendar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.calendar-container .calendar-content .days-text,
.calendar-container .calendar-content .days {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
}

.calendar-container .calendar-content .weekday,
.calendar-container .calendar-content .day {
  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: 16px;
  color: #333;
  text-align: center;
  font-family: var(--inter-sans);
  border-top: 1px solid #797979;
  border-left: 1px solid #797979;
}

.calendar-container .calendar-content .weekday {
  height: 52px;
}

.calendar-container .calendar-content .day {
  position: relative;
  height: 85px;
  -webkit-transition: background-color 0.6s;
  transition: background-color 0.6s;
  cursor: pointer;
  /*   transition: all 0.3s; */
}

.calendar-container .calendar-content .day:not(.active):hover {
  background-color: #193d9933;
}

.calendar-container .calendar-content .day:not(.active).current {
  background-color: #bd99557a;
}

.calendar-container .calendar-content .day.active {
  background-color: #bd9855;
  font-size: 32px;
  font-family: var(--eb-garamond);
  /* color: white; */
}

.calendar-container .calendar-content .day.inactive {
  background-image: url("../img/calendar-empy.png");
  background-size: cover;
  color: #aaaaaa;
  pointer-events: none;
  cursor: initial;
}

.calendar-container .calendar-content .day.event {
  position: relative;
  font-weight: 700;
}

.calendar-container .calendar-content .day.event:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #193d99;
}

.calendar-container .calendar-content .day.active.event:after {
  background-color: white;
}

.events-indicator {
  position: absolute;
  top: 7px;
  right: 7px;
  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: 25px;
  height: 25px;
  font-size: 16px;
  color: #333;
  background-color: white;
  font-family: var(--inter-sans);
  border-radius: 50%;
  border: 1px solid #bd9855;
}

@media (max-width: 700px) {
  .calendar-section {
    padding: 0px;
  }
  .calendar-container .calendar-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 20px;
  }
  .calendar-container .cal-arrow.left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
  }
  .calendar-container .month-wrapper {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .calendar-container .cal-arrow.right {
    width: 50%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .events-indicator {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.modal-container {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 15;
  background-color: rgba(22, 39, 59, 0.5);
  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;
  overflow-y: auto;
}

.events-content {
  width: 100%;
  max-width: 474px;
  margin: auto;
}

.events-content-top {
  background-color: #bd9855;
  font-family: var(--eb-garamond);
  color: #fff;
  font-size: 32px;
  padding: 8px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.events-content-top .date {
  margin-right: 10px;
}

.events-content-top .close-btn {
  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-left: auto;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

.events-content-list {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 12px;
}

.events-content-list .divider {
  width: 100%;
  height: 1px;
  background-color: #d7d7d7;
}

.event-content-item {
  padding: 12px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.event-content-item .index {
  font-size: 46px;
  font-family: var(--eb-garamond);
  color: #aaa;
}

.event-content-item .title-time-wrapper {
  margin-left: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.event-content-item .title-time-wrapper .title {
  font-size: 16px;
  color: #333;
  font-weight: 900;
  line-height: 24px;
}

.event-content-item .title-time-wrapper .time {
  font-size: 13px;
  color: #bd9855;
  font-weight: 500;
  letter-spacing: 5px;
}

.event-content-item .event-link-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #bd9855;
  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;
  border-radius: 50%;
  margin-left: auto;
}

.calendar-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  margin-right: 0px;
}

.calendar-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 5px 20px;
  background-color: #bd9855;
  font-family: var(--inter-sans);
  font-size: 16px;
  text-align: center;
  height: 43px;
  color: #ffffff;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.calendar-btn span {
  margin-right: 18px;
}

.calendar-btn:hover {
  background-color: #0c1d32;
}

.calendar-btn.disabled {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .calendar-btn-wrapper {
    margin-top: 10px;
    margin-left: 45px;
    width: 100%;
  }
}

#calendar-modal {
  z-index: 13;
  background-color: rgba(189, 153, 85, 0.6);
  padding: 40px;
}

.calendar-modal-content {
  position: relative;
  width: 100%;
  max-width: 1322px;
  border: 30px solid white;
}

.calendar-modal-content .calendar-container {
  margin: 0px;
  max-width: 100%;
}

.modal-close-x {
  width: 76px;
  cursor: pointer;
  height: 76px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 26px;
  right: -30px;
  top: -30px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background-color: #bd9855;
  border-radius: 50%;
}

@media (max-width: 600px) {
  #calendar-modal {
    padding: 25px 0px;
  }
  .calendar-modal-content {
    border: 10px solid white;
  }
  .modal-close-x {
    width: 56px;
    cursor: pointer;
    height: 56px;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    right: 50%;
    top: -5px;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    background-color: #bd9855;
    border-radius: 50%;
  }
}

.contact-instrument {
  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;
  margin-top: 100px;
}

.contact-instrument h1 {
  text-align: center;
}

.contact-instrument .contact-form-wrapper {
  max-width: 772px;
  margin-top: 30px;
  -ms-grid-columns: (calc(50% - 17.5px))[2];
      grid-template-columns: repeat(2, calc(50% - 17.5px));
}

.contact-instrument .text-area-item {
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
}

.contact-instrument .contact-buttons {
  margin: 0px auto;
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 3;
  width: 100%;
  max-width: 368px;
}

.image-zoom-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #c8ac7a;
  top: 0px;
  left: 0px;
  z-index: 15;
  padding: 0px;
}

.image-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: white;
  padding: 20px;
}

.image-container .arrow-left {
  cursor: pointer;
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 15;
}

.image-container .arrow-left path {
  fill: #bd9855;
}

.image-container .arrow-left.slick-disabled {
  opacity: 0.5;
}

.image-container .modal-close-x {
  top: 12px;
  right: 12px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  z-index: 15;
}

.image-container .arrow-right {
  cursor: pointer;
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 15;
}

.image-container .arrow-right path {
  fill: #bd9855;
}

.image-container .arrow-right.slick-disabled {
  opacity: 0.5;
}

.image-container .images-wrapper,
.image-container .slick-track,
.image-container .slick-list {
  width: 100%;
  height: 100%;
}

.full-screen-image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 1024px) {
  .image-zoom-modal {
    padding: 0px;
  }
}

@media (max-width: 800px) {
  .arrow-right,
  .arrow-left {
    display: none !important;
  }
}

.newsletter-result {
  color: white;
  margin-top: 5px;
  font-size: 16px;
  color: #aaaaaa;
  font-family: var(--inter-sans);
}

.terms-text-container {
  padding-top: 120px;
  padding-bottom: 120px;
}

.terms-text-container h3 {
  margin-bottom: 25px;
}

.terms-text-container .text-content p {
  margin-top: 5px;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #bd9855;
  border-color: #bd9855 transparent #bd9855 transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
          animation: lds-dual-ring 1.2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* -------------------------------------------------------------------------- */
/*                                MUSIC PLAYER                                */
/* -------------------------------------------------------------------------- */
.music-player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  --seek-before-width: 0%;
  --volume-before-width: 100%;
  --buffered-width: 0%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #bd9855;
  color: #333;
  border-radius: 15px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 10px 10px;
}

.music-player button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  background-color: transparent;
}

.music-player .time {
  width: 30px;
}

#seek-slider {
  width: 50%;
  max-width: 120px;
}

#play-icon .pause-btn {
  display: none;
}

#play-icon.playing .play-btn {
  display: none;
}

#play-icon.playing .pause-btn {
  display: initial;
}

#mute-icon .sound-off {
  display: none;
}

#mute-icon.muted .sound-on {
  display: none;
}

#mute-icon.muted .sound-off {
  display: initial;
}

.audio-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.audio-volume {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#volume-slider {
  margin: 10px 2.5%;
  width: 58%;
}

#volume-slider::-webkit-slider-runnable-track {
  background: rgba(0, 125, 181, 0.6);
}

#volume-slider::-moz-range-track {
  background: rgba(0, 125, 181, 0.6);
}

#volume-slider::-ms-fill-upper {
  background: rgba(0, 125, 181, 0.6);
}

#volume-slider::before {
  width: var(--volume-before-width);
}

#mute-icon {
  margin: 0 2.5%;
  margin-right: 0px;
}

input[type="range"] {
  position: relative;
  -webkit-appearance: none;
  width: 48%;
  margin: 0;
  padding: 0;
  height: 19px;
  float: left;
  margin-left: 10px;
  margin-right: 0px;
  outline: none;
  background-color: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: -webkit-gradient(linear, left top, right top, from(rgba(189, 153, 85, 0.6)), to(rgba(189, 153, 85, 0.2)));
  background: linear-gradient(to right, rgba(189, 153, 85, 0.6) var(--buffered-width), rgba(189, 153, 85, 0.2) var(--buffered-width));
}

input[type="range"]::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: var(--seek-before-width);
  height: 3px;
  background-color: #bd9955;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border: 1px solid #bd9955;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  margin: -7px 0 0 0;
}

input[type="range"]:active::-webkit-slider-thumb {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  background: #bd9955;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: linear-gradient(to right, rgba(189, 153, 85, 0.6) var(--buffered-width), rgba(189, 153, 85, 0.2) var(--buffered-width));
}

input[type="range"]::-moz-range-progress {
  background-color: #bd9955;
}

input[type="range"]::-moz-focus-outer {
  border: 0;
}

input[type="range"]::-moz-range-thumb {
  box-sizing: content-box;
  border: 1px solid #bd9955;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
}

input[type="range"]:active::-moz-range-thumb {
  transform: scale(1.2);
  background: #bd9955;
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: transparent;
  border: solid transparent;
  color: transparent;
}

input[type="range"]::-ms-fill-lower {
  background-color: #007db5;
}

input[type="range"]::-ms-fill-upper {
  background: linear-gradient(to right, rgba(189, 153, 85, 0.6) var(--buffered-width), rgba(189, 153, 85, 0.2) var(--buffered-width));
}

input[type="range"]::-ms-thumb {
  box-sizing: content-box;
  border: 1px solid #bd9955;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
}

input[type="range"]:active::-ms-thumb {
  transform: scale(1.2);
  background: #bd9955;
}

.video-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: none;
  z-index: 9999;
  background-color: black;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.video-modal img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  left: 0px;
  top: 0px;
}

.video-close-btn {
  cursor: pointer;
  opacity: 0.5;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 80px;
  height: 80px;
  opacity: 0.8;
  -webkit-transition: opacity 1s 1s;
  transition: opacity 1s 1s;
  z-index: 99999;
}

.video-close-btn .filling-stroke {
  stroke-dashoffset: 2011.5951390923972px;
  stroke-dasharray: 2011.5951390923972px;
  -webkit-transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}

.video-close-btn:hover {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 1;
}

.video-close-btn:hover .filling-stroke {
  stroke-dashoffset: 0;
}
/*# sourceMappingURL=style.css.map */